Author: smoe-guest Date: 2008-07-31 23:56:24 +0000 (Thu, 31 Jul 2008) New Revision: 2374
Added: trunk/packages/mgltools/autodocktools/trunk/debian/patches/ trunk/packages/mgltools/autodocktools/trunk/debian/patches/bootTraceback.patch trunk/packages/mgltools/autodocktools/trunk/debian/patches/series Modified: trunk/packages/mgltools/autodocktools/trunk/debian/changelog trunk/packages/mgltools/autodocktools/trunk/debian/control trunk/packages/mgltools/autodocktools/trunk/debian/copyright trunk/packages/mgltools/autodocktools/trunk/debian/rules trunk/packages/mgltools/bhtree/trunk/debian/changelog trunk/packages/mgltools/cmolkit/trunk/debian/changelog trunk/packages/mgltools/dejavu/trunk/debian/changelog trunk/packages/mgltools/geomutils/trunk/debian/changelog trunk/packages/mgltools/gle/trunk/debian/changelog trunk/packages/mgltools/mglutil/trunk/debian/changelog trunk/packages/mgltools/molkit/trunk/debian/changelog trunk/packages/mgltools/mslib/trunk/debian/changelog trunk/packages/mgltools/networkeditor/trunk/debian/changelog trunk/packages/mgltools/opengltk/trunk/debian/changelog trunk/packages/mgltools/packging_helpers/cvs_updates_all trunk/packages/mgltools/pmv/trunk/debian/changelog trunk/packages/mgltools/pyautodock/trunk/debian/changelog trunk/packages/mgltools/pybabel/trunk/debian/changelog trunk/packages/mgltools/pyglf/trunk/debian/changelog trunk/packages/mgltools/pyglf/trunk/debian/copyright trunk/packages/mgltools/qslimlib/trunk/debian/changelog trunk/packages/mgltools/scenario/trunk/debian/changelog trunk/packages/mgltools/sff/trunk/debian/changelog trunk/packages/mgltools/support/trunk/debian/changelog trunk/packages/mgltools/symserv/trunk/debian/changelog trunk/packages/mgltools/utpackages/trunk/debian/changelog trunk/packages/mgltools/viewerframework/trunk/debian/changelog trunk/packages/mgltools/vision/trunk/debian/changelog trunk/packages/mgltools/volume/trunk/debian/changelog Log: Another series of updates. Modified: trunk/packages/mgltools/autodocktools/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/autodocktools/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -autodocktools (5.2.cvs.20080726-1) unstable; urgency=low +autodocktools (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release (Closes: #458811). - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:24 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:54 +0200 Modified: trunk/packages/mgltools/autodocktools/trunk/debian/control =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/control 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/autodocktools/trunk/debian/control 2008-07-31 23:56:24 UTC (rev 2374) @@ -5,7 +5,7 @@ DM-Upload-Allowed: yes XS-Autobuild: yes Uploaders: Steffen Moeller <[EMAIL PROTECTED]>, Sargis Dallakyan <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python2.5-dev +Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python2.5-dev, quilt Standards-Version: 3.8.0 XS-Python-Version: 2.5 Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/mgltools/autodocktools/trunk/?rev=0&sc=0 Modified: trunk/packages/mgltools/autodocktools/trunk/debian/copyright =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/copyright 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/autodocktools/trunk/debian/copyright 2008-07-31 23:56:24 UTC (rev 2374) @@ -64,9 +64,9 @@ research in an academic environment and teaching are considered NON COMMERCIAL. - 3. Copying Restrictions. You will not sell or otherwise distribute commercially - these programs or derivatives to any other party, whether with or without - consideration. + 3. Copying Restrictions. You will not sell or otherwise distribute + commercially these programs or derivatives to any other party, + whether with or without consideration. 4. Ownership of Software. You will not obtain, and will not attempt to obtain copyright coverage thereon without the express purpose written Added: trunk/packages/mgltools/autodocktools/trunk/debian/patches/bootTraceback.patch =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/patches/bootTraceback.patch (rev 0) +++ trunk/packages/mgltools/autodocktools/trunk/debian/patches/bootTraceback.patch 2008-07-31 23:56:24 UTC (rev 2374) @@ -0,0 +1,107 @@ +--- autodocktools_1.5.2.cvs.20080731.orig/AutoDockTools/autotorsCommands.py ++++ autodocktools_1.5.2.cvs.20080731/AutoDockTools/autotorsCommands.py +@@ -7,9 +7,9 @@ + ############################################################################# + + # +-# $Header: /opt/cvs/python/packages/share1.5/AutoDockTools/autotorsCommands.py,v 1.96 2008/07/08 23:50:27 rhuey Exp $ ++# $Header: /opt/cvs/python/packages/share1.5/AutoDockTools/autotorsCommands.py,v 1.98 2008/07/31 17:37:09 sargis Exp $ + # +-# $Id: autotorsCommands.py,v 1.96 2008/07/08 23:50:27 rhuey Exp $ ++# $Id: autotorsCommands.py,v 1.98 2008/07/31 17:37:09 sargis Exp $ + # + # + # +@@ -344,10 +344,10 @@ + + if self.vf.hasGui: + import Tkinter +- self.modeVar = Tkinter.StringVar() ++ self.modeVar = Tkinter.StringVar(master=self.vf.GUI.ROOT) + #for the moment, the default should be 4.0 + self.modeVar.set(self.levels[1]) +- self.oldModeVar = Tkinter.StringVar() ++ self.oldModeVar = Tkinter.StringVar(master=self.vf.GUI.ROOT) + if 'AutoTools4Bar' in self.vf.GUI.menuBars.keys(): + self.oldModeVar.set('AD4.0') + elif 'AutoTools41Bar' in self.vf.GUI.menuBars.keys(): +@@ -444,7 +444,8 @@ + self.vf.ADgpf_setGrid = self.vf.AD41gpf_setGrid + self.vf.ADdpf4_initLigand = self.vf.AD41dpf_initLigand + self.vf.ADflex_setResidues = self.vf.AD41flex_setResidues +- self.vf.ADanalyze_showGridIsocontours = self.vf.AD41analyze_showGridIsocontours ++ if hasattr(self.vf, 'AD41analyze_showGridIsocontours'): ++ self.vf.ADanalyze_showGridIsocontours = self.vf.AD41analyze_showGridIsocontours + self.vf.ADanalyze_showHistogram = self.vf.AD41analyze_showHistogram + self.vf.ADanalyze_showDockingsAsSpheres = self.vf.AD41analyze_showDockingsAsSpheres + self.vf.ADanalyze_showBindingSite = self.vf.AD41analyze_showBindingSite +@@ -457,7 +458,8 @@ + self.vf.ADtors_markRoot = self.vf.AD3tors_markRoot + self.vf.ADtors_setCarbonNames = self.vf.AD3tors_setCarbonNames + self.vf.ADgpf_setGrid = self.vf.AD3gpf_setGrid +- self.vf.ADanalyze_showGridIsocontours = self.vf.AD3analyze_showGridIsocontours ++ if hasattr(self.vf, 'AD3analyze_showGridIsocontours'): ++ self.vf.ADanalyze_showGridIsocontours = self.vf.AD3analyze_showGridIsocontours + self.vf.ADanalyze_showHistogram = self.vf.AD3analyze_showHistogram + self.vf.ADanalyze_showDockingsAsSpheres = self.vf.AD3analyze_showDockingsAsSpheres + self.vf.ADanalyze_showBindingSite = self.vf.AD3analyze_showBindingSite +@@ -476,7 +478,8 @@ + self.vf.ADgpf_setGrid = self.vf.AD4gpf_setGrid + self.vf.ADdpf4_initLigand = self.vf.AD4dpf_initLigand + self.vf.ADflex_setResidues = self.vf.AD4flex_setResidues +- self.vf.ADanalyze_showGridIsocontours = self.vf.AD4analyze_showGridIsocontours ++ if hasattr(self.vf, 'AD4analyze_showGridIsocontours'): ++ self.vf.ADanalyze_showGridIsocontours = self.vf.AD4analyze_showGridIsocontours + self.vf.ADanalyze_showHistogram = self.vf.AD4analyze_showHistogram + self.vf.ADanalyze_showDockingsAsSpheres = self.vf.AD4analyze_showDockingsAsSpheres + self.vf.ADanalyze_showBindingSite = self.vf.AD4analyze_showBindingSite +@@ -1401,7 +1404,7 @@ + self.vf.atorsDict={} + self.markonoff = 0 + if self.vf.hasGui: +- self.markOn_Off = Tkinter.IntVar() ++ self.markOn_Off = Tkinter.IntVar(master=self.vf.GUI.ROOT) + self.markOn_Off.set(0) + #initialize the geometries here: + +@@ -1639,9 +1642,9 @@ + if not hasattr(self.vf, 'atorsDict'): + self.vf.atorsDict={} + if self.vf.hasGui: +- self.typeVar = Tkinter.StringVar() ++ self.typeVar = Tkinter.StringVar(master=self.vf.GUI.ROOT) + self.typeVar.set('fewest') +- self.numTorsions = Tkinter.IntVar() ++ self.numTorsions = Tkinter.IntVar(master=self.vf.GUI.ROOT) + + + def __call__(self, numTors, type='fewest',**kw): +@@ -2010,7 +2013,7 @@ + if not hasattr(self.vf, 'setICOM'): + self.vf.loadCommand('interactiveCommands', 'setICOM', 'Pmv') + if not self.torsStr: +- SetRotatableBonds.torsStr = Tkinter.StringVar() ++ SetRotatableBonds.torsStr = Tkinter.StringVar(master=self.vf.GUI.ROOT) + if not hasattr(self.vf,'labelByProperty'): + self.vf.loadCommand('labelCommands', 'labelByProperty', 'Pmv', + topCommand=0) +@@ -2798,7 +2801,7 @@ + if not hasattr(self.vf, 'atorsDict'): + self.vf.atorsDict={} + if self.vf.hasGui: +- self.cutVal = Tkinter.StringVar() ++ self.cutVal = Tkinter.StringVar(master=self.vf.GUI.ROOT) + + + def __call__(self, val, **kw): +@@ -2904,8 +2907,8 @@ + self.vf.atorsDict={} + self.ligand = None + if self.vf.hasGui: +- self.inviewer = Tkinter.IntVar() +- self.outfileVar = Tkinter.StringVar() ++ self.inviewer = Tkinter.IntVar(master=self.vf.GUI.ROOT) ++ self.outfileVar = Tkinter.StringVar(master=self.vf.GUI.ROOT) + + + def onRemoveObjectFromViewer(self, obj): Added: trunk/packages/mgltools/autodocktools/trunk/debian/patches/series =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/patches/series (rev 0) +++ trunk/packages/mgltools/autodocktools/trunk/debian/patches/series 2008-07-31 23:56:24 UTC (rev 2374) @@ -0,0 +1 @@ +bootTraceback.patch Modified: trunk/packages/mgltools/autodocktools/trunk/debian/rules =================================================================== --- trunk/packages/mgltools/autodocktools/trunk/debian/rules 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/autodocktools/trunk/debian/rules 2008-07-31 23:56:24 UTC (rev 2374) @@ -13,6 +13,8 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk +#include /usr/share/quilt/quilt.make +include /usr/share/cdbs/1/rules/patchsys-quilt.mk #include /usr/share/cdbs/1/rules/simple-patchsys.mk clean:: Modified: trunk/packages/mgltools/bhtree/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/bhtree/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/bhtree/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-bhtree (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-bhtree (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:24 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:55 +0200 Modified: trunk/packages/mgltools/cmolkit/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/cmolkit/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/cmolkit/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-cmolkit (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-cmolkit (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:27 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:56 +0200 Modified: trunk/packages/mgltools/dejavu/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/dejavu/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/dejavu/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-dejavu (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-dejavu (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:25 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:56 +0200 Modified: trunk/packages/mgltools/geomutils/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/geomutils/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/geomutils/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-geomutils (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-geomutils (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:26 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:57 +0200 Modified: trunk/packages/mgltools/gle/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/gle/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/gle/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-gle (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-gle (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:26 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:58 +0200 Modified: trunk/packages/mgltools/mglutil/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/mglutil/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/mglutil/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-mglutil (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-mglutil (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:27 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:58 +0200 Modified: trunk/packages/mgltools/molkit/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/molkit/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/molkit/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-molkit (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-molkit (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:27 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:59 +0200 Modified: trunk/packages/mgltools/mslib/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/mslib/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/mslib/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-mslib (5.2.cvs.20080726-1) UNRELEASED; urgency=low +mgltools-mslib (1.5.2.cvs.20080731-1) UNRELEASED; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:28 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 21:59:59 +0200 Modified: trunk/packages/mgltools/networkeditor/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/networkeditor/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/networkeditor/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-networkeditor (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-networkeditor (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:29 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:00 +0200 Modified: trunk/packages/mgltools/opengltk/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/opengltk/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-opengltk (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-opengltk (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:29 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:01 +0200 Modified: trunk/packages/mgltools/packging_helpers/cvs_updates_all =================================================================== --- trunk/packages/mgltools/packging_helpers/cvs_updates_all 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/packging_helpers/cvs_updates_all 2008-07-31 23:56:24 UTC (rev 2374) @@ -4,6 +4,7 @@ CVSCHECKOUTDIR=mgltools-cvs TARBALLDIR=tarballs +UPSTREAMVERSION=1.5.2 if [ "--help" == "$1" -o "-h" == "$1" ]; then cat <<EOHELP @@ -42,7 +43,7 @@ echo "Current version is apparently '$currentVersion'.'" fi -VERSIONNAME=`date +"5.2.cvs.%Y%m%d"` +VERSIONNAME=`date +"$UPSTREAMVERSION.cvs.%Y%m%d"` # To prepare the tar files Modified: trunk/packages/mgltools/pmv/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/pmv/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/pmv/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-pmv (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-pmv (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:30 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:01 +0200 Modified: trunk/packages/mgltools/pyautodock/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/pyautodock/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/pyautodock/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-pyautodock (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-pyautodock (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:24 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:02 +0200 Modified: trunk/packages/mgltools/pybabel/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/pybabel/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/pybabel/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-pybabel (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-pybabel (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:31 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:02 +0200 Modified: trunk/packages/mgltools/pyglf/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/pyglf/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/pyglf/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-pyglf (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-pyglf (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:32 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:03 +0200 Modified: trunk/packages/mgltools/pyglf/trunk/debian/copyright =================================================================== --- trunk/packages/mgltools/pyglf/trunk/debian/copyright 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/pyglf/trunk/debian/copyright 2008-07-31 23:56:24 UTC (rev 2374) @@ -57,9 +57,9 @@ research in an academic environment and teaching are considered NON COMMERCIAL. - 3. Copying Restrictions. You will not sell or otherwise distribute commercially - these programs or derivatives to any other party, whether with or without - consideration. + 3. Copying Restrictions. You will not sell or otherwise distribute + commercially these programs or derivatives to any other party, + whether with or without consideration. 4. Ownership of Software. You will not obtain, and will not attempt to obtain copyright coverage thereon without the express purpose written Modified: trunk/packages/mgltools/qslimlib/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/qslimlib/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/qslimlib/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-qslimlib (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-qslimlib (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:32 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:03 +0200 Modified: trunk/packages/mgltools/scenario/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/scenario/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/scenario/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-scenario (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-scenario (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:33 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:04 +0200 Modified: trunk/packages/mgltools/sff/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/sff/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/sff/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-sff (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-sff (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:33 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:05 +0200 Modified: trunk/packages/mgltools/support/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/support/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/support/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-support (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-support (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:34 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:05 +0200 Modified: trunk/packages/mgltools/symserv/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/symserv/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/symserv/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-symserv (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-symserv (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:35 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:06 +0200 Modified: trunk/packages/mgltools/utpackages/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/utpackages/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/utpackages/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-utpackages (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-utpackages (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:36 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:07 +0200 Modified: trunk/packages/mgltools/viewerframework/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/viewerframework/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/viewerframework/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-viewerframework (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-viewerframework (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:36 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:07 +0200 Modified: trunk/packages/mgltools/vision/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/vision/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/vision/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-vision (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-vision (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:37 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:08 +0200 Modified: trunk/packages/mgltools/volume/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/volume/trunk/debian/changelog 2008-07-31 19:47:56 UTC (rev 2373) +++ trunk/packages/mgltools/volume/trunk/debian/changelog 2008-07-31 23:56:24 UTC (rev 2374) @@ -1,5 +1,5 @@ -mgltools-volume (5.2.cvs.20080726-1) unstable; urgency=low +mgltools-volume (1.5.2.cvs.20080731-1) unstable; urgency=low * Initial release, contributes to closing ITP #458811. - -- Steffen Moeller <[EMAIL PROTECTED]> Sat, 26 Jul 2008 01:14:38 +0200 + -- Steffen Moeller <[EMAIL PROTECTED]> Thu, 31 Jul 2008 22:00:08 +0200 _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
