diff -u python-pyglew-0.1.2/debian/control python-pyglew-0.1.2/debian/control --- python-pyglew-0.1.2/debian/control +++ python-pyglew-0.1.2/debian/control @@ -1,7 +1,8 @@ Source: python-pyglew Section: python Priority: optional -Maintainer: Debian Python Modules Team +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian Python Modules Team Uploaders: Sandro Tosi Build-Depends: debhelper (>= 5), libglew-dev, python-central (>= 0.5.6), python, dpatch, python-all-dev Standards-Version: 3.8.0 diff -u python-pyglew-0.1.2/debian/changelog python-pyglew-0.1.2/debian/changelog --- python-pyglew-0.1.2/debian/changelog +++ python-pyglew-0.1.2/debian/changelog @@ -1,3 +1,18 @@ +python-pyglew (0.1.2-3ubuntu1) jaunty; urgency=low + + * Merge from debian unstable, Ubuntu remaining changes: + - debian/rules: + + Include /usr/share/python/python.mk. + + Append $(py_setup_install_args) macro to setup.py options to install + all python stuffs in the right places. + + Use $(call py_sitename, $*) macro to install the modules into the + appropriate path (/usr/share/python*/*-packages). + * debian/rules: + - Use DH_PYCENTRAL=nomove, installed modules differ between python versions + and they can't be shared. + + -- Alessio Treglia Sun, 29 Mar 2009 13:50:21 +0200 + python-pyglew (0.1.2-3) unstable; urgency=low * debian/control @@ -14,6 +29,25 @@ -- Sandro Tosi Wed, 18 Feb 2009 21:51:52 +0100 +python-pyglew (0.1.2-2ubuntu2) jaunty; urgency=low + + * No-change rebuild to fix lpia shared library dependencies. + + -- Matthias Klose Sun, 22 Mar 2009 16:50:22 +0100 + +python-pyglew (0.1.2-2ubuntu1) jaunty; urgency=low + + * Python 2.6 transition: + - debian/rules: + + Include /usr/share/python/python.mk. + + Append $(py_setup_install_args) macro to setup.py options to install + all python stuffs in the right places. + + Use $(call py_sitename, $*) macro to install the modules into the + appropriate path (/usr/share/python*/*-packages). + * Update Maintainer field as per spec. + + -- Alessio Treglia Thu, 12 Mar 2009 15:08:32 +0000 + python-pyglew (0.1.2-2) unstable; urgency=low * debian/control diff -u python-pyglew-0.1.2/debian/rules python-pyglew-0.1.2/debian/rules --- python-pyglew-0.1.2/debian/rules +++ python-pyglew-0.1.2/debian/rules @@ -2,6 +2,9 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +export DH_PYCENTRAL=nomove + +include /usr/share/python/python.mk include /usr/share/dpatch/dpatch.make PYVERS=$(shell pyversions -vr) @@ -23,10 +26,10 @@ build-ext-%: dh_testdir [ ! -d build ] || rm -rf build - mkdir -p debian/python-pyglew/usr/lib/python$*/site-packages/ + mkdir -p debian/python-pyglew/usr/lib/python$*/$(call py_sitename, $*) $(MAKE) PYTHON=python$* - dh_install build/pyglew.so /usr/lib/python$*/site-packages/ + dh_install build/pyglew.so /usr/lib/python$*/$(call py_sitename, $*) # workaround to let think libpython is local, so that dh_shlibdebs does not generate # dependencies on them, but only ${python:Depends} will @@ -42,7 +45,7 @@ dh_testdir dh_testroot dh_installdirs - python setup.py install --root=$(CURDIR)/debian/python-pyglew + python setup.py install --root=$(CURDIR)/debian/python-pyglew $(py_setup_install_args) # Build architecture-independent files here. binary-indep: build install