[med-svn] r1194 - in trunk/packages/mgltools: . autodocktools/trunk/debian bhtree/trunk/debian dejavu/trunk/debian geomutils/trunk/debian gle/trunk/debian mglutil/trunk/debian molkit/trunk/debian mslib/trunk/debian networkeditor/trunk/debian opengltk/trunk/debian pmv/trunk/debian pybabel/trunk/debian pyglf/trunk/debian qslimlib/trunk/debian scenario/trunk/debian sff/trunk/debian support/trunk/debian symserv/trunk/debian utpackages/trunk/debian viewerframework/trunk/debian vision/trunk/debian volume/trunk/debian
smoe-guest at alioth.debian.org
smoe-guest at alioth.debian.org
Thu Jan 24 11:22:53 UTC 2008
Author: smoe-guest
Date: 2008-01-24 11:22:53 +0000 (Thu, 24 Jan 2008)
New Revision: 1194
Added:
trunk/packages/mgltools/BUILD
Modified:
trunk/packages/mgltools/autodocktools/trunk/debian/changelog
trunk/packages/mgltools/autodocktools/trunk/debian/control
trunk/packages/mgltools/bhtree/trunk/debian/changelog
trunk/packages/mgltools/dejavu/trunk/debian/changelog
trunk/packages/mgltools/dejavu/trunk/debian/control
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/opengltk/trunk/debian/control
trunk/packages/mgltools/opengltk/trunk/debian/rules
trunk/packages/mgltools/pmv/trunk/debian/changelog
trunk/packages/mgltools/pmv/trunk/debian/control
trunk/packages/mgltools/pybabel/trunk/debian/changelog
trunk/packages/mgltools/pyglf/trunk/debian/changelog
trunk/packages/mgltools/pyglf/trunk/debian/control
trunk/packages/mgltools/qslimlib/trunk/debian/changelog
trunk/packages/mgltools/scenario/trunk/debian/changelog
trunk/packages/mgltools/sff/trunk/debian/changelog
trunk/packages/mgltools/sff/trunk/debian/control
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/viewerframework/trunk/debian/rules
trunk/packages/mgltools/vision/trunk/debian/changelog
trunk/packages/mgltools/volume/trunk/debian/changelog
Log:
Gave another shot at the AutoDockTools. BUILD instructions were added.
Added: trunk/packages/mgltools/BUILD
===================================================================
--- trunk/packages/mgltools/BUILD (rev 0)
+++ trunk/packages/mgltools/BUILD 2008-01-24 11:22:53 UTC (rev 1194)
@@ -0,0 +1,66 @@
+
+The sources are made available on mgltools.scripps.edu. When deciding to download the latest from CVS, then perform as described here.
+Create a new directory, I used "mgltools-cvs" and cd to it.
+
+ cvs -d:pserver:anonymous at mgl1.scripps.edu:/opt/cvs login
+ cvs -z3 -d:pserver:anonymous at mgl1.scripps.edu:/opt/cvs co MGLPACKSDIST
+
+missing is the following package
+
+ cvs -z3 -d:pserver:anonymous at mgl1.scripps.edu:/opt/cvs co Support
+
+Sadly, the names of the directories are invariantly set to a name that does not appeal too much to us since they all end on "DIST". These should be renamed.
+
+ PREVDIST=DIST
+ VERSIONNAME=1.5.0.cvs.`date +"%Y%m%d" | tr -d '\n'`
+ NEWDIST=-$VERSIONNAME
+ for i in `find . -name "*$PREVDIST" -a -type d | sort -r`; do b=`echo $i| sed -e "s/$PREVDIST/$NEWDIST/"`; echo renaming $i to $b; mv $i $b; done
+ mv Support Support$NEWDIST
+
+To prepare the tar files
+
+ for d in *; do
+ if [ -d $d ]; then
+ tfn=`echo $d | sed -e "s/-$VERSIONNAME/_$VERSIONNAME.orig.tar.gz/ | tr 'A-Z' 'a-z'"`
+ echo taring $d to $tfn
+ GZIP=-9 tar --exclude CVS -czvf $tfn $d
+ fi
+ done
+
+The removal of the CVS directories is slightly unfortunate since for upstream these are thought to ensure a closer communication with their user base.
+
+The tarballs should be made accessible for svn-buildpackage to be found. The file .svn/deb-layout may be used to specify that location with the origDir variable. Alternatively, one can
+
+ [ -d ../tarballs ] && mkdir ../tarballs
+ ln *.tar.gz ../tarballs
+
+Now, to have these tarballs found, the version in the 'debian/changelog' files need to match. From debian-med/trunk/packages/mgltools execute the following lines to add the new version to the changelogs
+
+ for i in */trunk/debian; do
+ d=`dirname $i`
+ (cd $d && DEBEMAIL=moeller at debian.org debchange --preserve --newversion $VERSIONNAME "New upstream version.")
+ done
+
+Now, there is a build-order to get all the packages built and installed without broken dependencies. Try the following:
+
+ #support \
+
+ for p in \
+ symserv \
+ pybabel \
+ sff \
+ mglutil \
+ geomutils \
+ volume \
+ qslimlib \
+ utpackages \
+ bhtree \
+ opengltk \
+ dejavu \
+ pmv \
+ gle \
+ ; do
+ (cd $p/trunk; svn-b; sudo dpkg -i ../../build-area/mgltools-$p*.deb)
+ done
+
+The relative path of the build-area may differ on your system. It can be set in .svn/deb-layout as buildArea=../../build-area
Modified: trunk/packages/mgltools/autodocktools/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/autodocktools/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/autodocktools/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+autodocktools (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:32 +0100
+
autodocktools (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/autodocktools/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/autodocktools/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/autodocktools/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -10,7 +10,7 @@
Package: mgltools-autodocktools
XB-Python-Version: ${python:Versions}
Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-support, mgltools-pmv, mgltools-molkit, mgltools-volume
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-pmv, mgltools-molkit, mgltools-volume, mgltools-support, python-imaging-tk, mgltools-viewerframework
Suggests: autodock
Description: GUI to help set up, launch and analyze AutoDock dockings
AutoDock is a well established package for the automated screening of
Modified: trunk/packages/mgltools/bhtree/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/bhtree/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/bhtree/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+bhtree (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:33 +0100
+
bhtree (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/dejavu/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/dejavu/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/dejavu/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+dejavu (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:33 +0100
+
dejavu (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/dejavu/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/dejavu/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/dejavu/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -10,6 +10,6 @@
Package: mgltools-dejavu
XB-Python-Version: ${python:Versions}
Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-opengltk, mgltools-qslimlib
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-opengltk, mgltools-qslimlib, mgltools-pyglf
Description: OpenGL based 3D geometry viewer python package
The library is needed by mgltools-autodocktools at runtime.
Modified: trunk/packages/mgltools/geomutils/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/geomutils/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/geomutils/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+geomutils (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:33 +0100
+
geomutils (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/gle/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/gle/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/gle/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+gle (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:34 +0100
+
gle (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/mglutil/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/mglutil/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/mglutil/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+mglutil (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:34 +0100
+
mglutil (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/molkit/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/molkit/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/molkit/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+molkit (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:34 +0100
+
molkit (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/mslib/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/mslib/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/mslib/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+mslib (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:35 +0100
+
mslib (1.5.0-1) unstable; urgency=low
* Initial release as part of the AutoDockToolkit (Closes: #458811).
Modified: trunk/packages/mgltools/networkeditor/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/networkeditor/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/networkeditor/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+networkeditor (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:35 +0100
+
networkeditor (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/opengltk/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/opengltk/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/opengltk/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+opengltk (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:36 +0100
+
opengltk (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/opengltk/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/opengltk/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/opengltk/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -2,7 +2,7 @@
Section: non-free/science
Priority: optional
Maintainer: Steffen Moeller <moeller at debian.org>
-Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.4), swig (>= 1.3.20), libglu1-mesa-dev, mesa-common-dev, tk-dev
+Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.4), swig (>= 1.3.20), libglu1-mesa-dev, mesa-common-dev, tk-dev, libxmu-dev
Standards-Version: 3.7.2
XS-Python-Version: all
Homepage: http://mgltools.scripps.edu/
Modified: trunk/packages/mgltools/opengltk/trunk/debian/rules
===================================================================
--- trunk/packages/mgltools/opengltk/trunk/debian/rules 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/opengltk/trunk/debian/rules 2008-01-24 11:22:53 UTC (rev 1194)
@@ -20,5 +20,5 @@
export DH_PYCENTRAL="nomove"
clean::
- find . -name CVS -a -type d| xargs -r rm -r
+ find . -name CVS -a -type d| xargs -r rm -rf
rm -rf build build-stamp debian/Pmv
Modified: trunk/packages/mgltools/pmv/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/pmv/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/pmv/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+pmv (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:36 +0100
+
pmv (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/pmv/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/pmv/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/pmv/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -10,6 +10,6 @@
Package: mgltools-pmv
XB-Python-Version: ${python:Versions}
Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-qslimlib
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mgltools-qslimlib, mgltools-support
Description: Python-based Molecular Viewer
The library is needed by mgltools-autodocktools at runtime.
Modified: trunk/packages/mgltools/pybabel/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/pybabel/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/pybabel/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+pybabel (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:36 +0100
+
pybabel (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/pyglf/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/pyglf/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/pyglf/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+pyglf (1.5.0.cvs.20080124) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:36 +0100
+
pyglf (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/pyglf/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/pyglf/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/pyglf/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -2,7 +2,7 @@
Section: non-free/science
Priority: optional
Maintainer: Steffen Moeller <moeller at debian.org>
-Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.3.5-11)
+Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.3.5-11), libxi-dev
Standards-Version: 3.7.2
XS-Python-Version: 2.4,2.5
Homepage: http://mgltools.scripps.edu/
@@ -10,6 +10,6 @@
Package: mgltools-pyglf
XB-Python-Version: ${python:Versions}
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, libxi6
Description: GLF library Python extension to write text in OpenGL
The library is needed by mgltools-autodocktools at runtime.
Modified: trunk/packages/mgltools/qslimlib/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/qslimlib/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/qslimlib/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+qslimlib (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:37 +0100
+
qslimlib (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/scenario/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/scenario/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/scenario/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+scenario (1.5.0.cvs.20080124) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <moeller at debian.org> Wed, 23 Jan 2008 13:26:37 +0100
+
scenario (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/sff/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/sff/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/sff/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+sff (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:38 +0100
+
sff (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/sff/trunk/debian/control
===================================================================
--- trunk/packages/mgltools/sff/trunk/debian/control 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/sff/trunk/debian/control 2008-01-24 11:22:53 UTC (rev 1194)
@@ -2,8 +2,8 @@
Section: non-free/science
Priority: optional
Maintainer: Steffen Moeller <moeller at debian.org>
-Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.3.5-11), swig (>= 1.3.20)
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.5.6), cdbs (>= 0.4.49), python-all-dev (>= 2.3.5-11), swig (>= 1.3.20), python-numpy
+Standards-Version: 3.7.3
XS-Python-Version: 2.4,2.5
Homepage: http://mgltools.scripps.edu/
Modified: trunk/packages/mgltools/support/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/support/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/support/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+support (1.5.0.cvs.20080124) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <moeller at debian.org> Wed, 23 Jan 2008 13:26:38 +0100
+
support (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/symserv/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/symserv/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/symserv/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+symserv (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:38 +0100
+
symserv (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/utpackages/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/utpackages/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/utpackages/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+utpackages (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:39 +0100
+
utpackages (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/viewerframework/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/viewerframework/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/viewerframework/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+viewerframework (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:26:39 +0100
+
viewerframework (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/viewerframework/trunk/debian/rules
===================================================================
--- trunk/packages/mgltools/viewerframework/trunk/debian/rules 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/viewerframework/trunk/debian/rules 2008-01-24 11:22:53 UTC (rev 1194)
@@ -18,4 +18,4 @@
clean::
find . -name CVS -a -type d| xargs -r rm -r
rm -rf build build-stamp debian/Pmv
- find . -name *.png -o -name *.pdb -o -name *.gif -exec file chmod 644 '{}' \;
+ find . -name *.png -o -name *.pdb -o -name *.gif -exec chmod 644 '{}' \;
Modified: trunk/packages/mgltools/vision/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/vision/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/vision/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+vision (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:25:38 +0100
+
vision (1.5.0-1) unstable; urgency=low
* Initial release.
Modified: trunk/packages/mgltools/volume/trunk/debian/changelog
===================================================================
--- trunk/packages/mgltools/volume/trunk/debian/changelog 2008-01-23 21:14:05 UTC (rev 1193)
+++ trunk/packages/mgltools/volume/trunk/debian/changelog 2008-01-24 11:22:53 UTC (rev 1194)
@@ -1,3 +1,9 @@
+volume (1.5.0.cvs.20080122) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Steffen Moeller <steffen_moeller at gmx.de> Wed, 23 Jan 2008 13:23:15 +0100
+
volume (1.5.0-1) unstable; urgency=low
* Initial release.
More information about the debian-med-commit
mailing list