Author: tille Date: 2011-04-26 11:50:51 +0000 (Tue, 26 Apr 2011) New Revision: 6621
Added: trunk/packages/mgltools/opengltk/trunk/debian/source/ trunk/packages/mgltools/opengltk/trunk/debian/source/format Modified: trunk/packages/mgltools/opengltk/trunk/debian/README.Debian trunk/packages/mgltools/opengltk/trunk/debian/changelog trunk/packages/mgltools/opengltk/trunk/debian/compat trunk/packages/mgltools/opengltk/trunk/debian/control trunk/packages/mgltools/opengltk/trunk/debian/rules Log: Use dh_python2, general packaging updates Modified: trunk/packages/mgltools/opengltk/trunk/debian/README.Debian =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/README.Debian 2011-04-26 11:24:21 UTC (rev 6620) +++ trunk/packages/mgltools/opengltk/trunk/debian/README.Debian 2011-04-26 11:50:51 UTC (rev 6621) @@ -11,7 +11,7 @@ patches and providing more himself. Also, the leader of the Molecular Graphics Labs, Prof. Michael Sanner, is thanked for his support. -Please be continously reminded that that closer a software gets towards +Please be continuously reminded that that closer a software gets towards identifying or further describing functional compounds in medicine, the harder it is to get access to free (as in beer) solutions. And it certainly does not get much closer than with the AutoDockToolkit. To Modified: trunk/packages/mgltools/opengltk/trunk/debian/changelog =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/changelog 2011-04-26 11:24:21 UTC (rev 6620) +++ trunk/packages/mgltools/opengltk/trunk/debian/changelog 2011-04-26 11:50:51 UTC (rev 6621) @@ -1,3 +1,17 @@ +mgltools-opengltk (1.5.4.cvs.20100912-2) unstable; urgency=low + + * Debhelper 8 (control+compat) + * debian/source/format: 3.0 (quilt) + * debian/control: + - Build-Depends: python-all-dev (>= 2.6) to enable python-support2 + Closes: #616894 + - XS-Python-Version: >= 2.6 + Closes: #623905 + * debian/rules: switch to short dh syntax which makes + dh_python2 easy + + -- Andreas Tille <[email protected]> Tue, 26 Apr 2011 11:52:41 +0200 + mgltools-opengltk (1.5.4.cvs.20100912-1) unstable; urgency=low * New upstream version. Modified: trunk/packages/mgltools/opengltk/trunk/debian/compat =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/compat 2011-04-26 11:24:21 UTC (rev 6620) +++ trunk/packages/mgltools/opengltk/trunk/debian/compat 2011-04-26 11:50:51 UTC (rev 6621) @@ -1 +1 @@ -7 +8 Modified: trunk/packages/mgltools/opengltk/trunk/debian/control =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/control 2011-04-26 11:24:21 UTC (rev 6620) +++ trunk/packages/mgltools/opengltk/trunk/debian/control 2011-04-26 11:50:51 UTC (rev 6621) @@ -6,9 +6,9 @@ XS-Autobuild: yes Uploaders: Steffen Moeller <[email protected]>, Sargis Dallakyan <[email protected]>, Andreas Tille <[email protected]> -Build-Depends: debhelper (>= 7), python-central (>= 0.5.6), cdbs (>= 0.4), python-all-dev, swig (>= 1.3.20), libglu1-mesa-dev, mesa-common-dev, tk8.4-dev|tk8.5-dev|tk-dev, libxmu-dev, python-numpy -Standards-Version: 3.9.1.0 -XS-Python-Version: >= 2.5 +Build-Depends: debhelper (>= 8), python-all-dev (>= 2.6), swig (>= 1.3.20), libglu1-mesa-dev, mesa-common-dev, tk8.4-dev|tk8.5-dev|tk-dev, libxmu-dev, python-numpy +Standards-Version: 3.9.2 +XS-Python-Version: >= 2.6 Homepage: http://mgltools.scripps.edu/ Package: mgltools-opengltk Modified: trunk/packages/mgltools/opengltk/trunk/debian/rules =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/rules 2011-04-26 11:24:21 UTC (rev 6620) +++ trunk/packages/mgltools/opengltk/trunk/debian/rules 2011-04-26 11:50:51 UTC (rev 6621) @@ -1,23 +1,21 @@ #!/usr/bin/make -f # -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. +# debian/rules for mgltools-opengltk # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -export DEB_PYTHON_SYSTEM=pycentral +%: + dh $@ --with python2 -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/python-distutils.mk -#include /usr/share/cdbs/1/rules/simple-patchsys.mk - DEB_PYTHON_INSTALL_ARGS += --single-version-externally-managed -clean:: +override_dh_clean: + dh_clean find . -name CVS -a -type d| xargs -r rm -rf rm -rf build build-stamp debian/Pmv - cd opengltk/extent/ && rm -f gl_i.h.diff glext_mgltools_i.h.diff glextlib.py.diff glextlib_wrap.c.diff gllib.py.diff gllib_wrap.c.diff glu_i.h.diff glulib.py.diff glulib_wrap.c.diff glx_i.h.diff glxlib.py.diff glxlib_wrap.c.diff utillib.py.diff utillib_wrap.c.diff + cd opengltk/extent/ && \ + rm -f gl_i.h.diff glext_mgltools_i.h.diff glextlib.py.diff \ + glextlib_wrap.c.diff gllib.py.diff gllib_wrap.c.diff \ + glu_i.h.diff glulib.py.diff glulib_wrap.c.diff glx_i.h.diff \ + glxlib.py.diff glxlib_wrap.c.diff utillib.py.diff utillib_wrap.c.diff Added: trunk/packages/mgltools/opengltk/trunk/debian/source/format =================================================================== --- trunk/packages/mgltools/opengltk/trunk/debian/source/format (rev 0) +++ trunk/packages/mgltools/opengltk/trunk/debian/source/format 2011-04-26 11:50:51 UTC (rev 6621) @@ -0,0 +1 @@ +3.0 (quilt) _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
