[Python-modules-commits] r3945 - in packages/python-openid/trunk/debian (3 files)
dottedmag-guest at users.alioth.debian.org
dottedmag-guest at users.alioth.debian.org
Fri Dec 14 16:41:31 UTC 2007
Date: Friday, December 14, 2007 @ 16:40:35
Author: dottedmag-guest
Revision: 3945
python-openid updated to 2.1.0
Modified:
packages/python-openid/trunk/debian/changelog
packages/python-openid/trunk/debian/control
packages/python-openid/trunk/debian/rules
Modified: packages/python-openid/trunk/debian/changelog
===================================================================
--- packages/python-openid/trunk/debian/changelog 2007-12-14 00:06:27 UTC (rev 3944)
+++ packages/python-openid/trunk/debian/changelog 2007-12-14 16:40:35 UTC (rev 3945)
@@ -1,9 +1,21 @@
-python-openid (2.0.2-2) UNRELEASED; urgency=low
+python-openid (2.1.0-1) unstable; urgency=low
+
+ [Mikhail Gusarov]
+ * New upstream release.
+
+ * Get rid of CDBS and use debhelper directly.
+ - cdbs dependency removed.
+
+ * Remove empty /usr/lib from the package manually until pycentral bug
+ #452227 is closed.
+
+ [Sandro Tosi]
+
* debian/watch
- fixed version regexp to consider only numerical versions
- -- Sandro Tosi <matrixhasu at gmail.com> Wed, 21 Nov 2007 20:48:03 +0100
+ -- Mikhail Gusarov <dottedmag at dottedmag.net> Fri, 14 Dec 2007 22:09:22 +0600
python-openid (2.0.2-1) unstable; urgency=low
Modified: packages/python-openid/trunk/debian/control
===================================================================
--- packages/python-openid/trunk/debian/control 2007-12-14 00:06:27 UTC (rev 3944)
+++ packages/python-openid/trunk/debian/control 2007-12-14 16:40:35 UTC (rev 3945)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5.0.38), cdbs (>= 0.4.41), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), quilt
+Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), quilt
Standards-Version: 3.7.2
XS-Python-Version: all
Modified: packages/python-openid/trunk/debian/rules
===================================================================
--- packages/python-openid/trunk/debian/rules 2007-12-14 00:06:27 UTC (rev 3944)
+++ packages/python-openid/trunk/debian/rules 2007-12-14 16:40:35 UTC (rev 3945)
@@ -1,11 +1,48 @@
#!/usr/bin/make -f
+# -*- makefile -*-
-DEB_DH_INSTALLCHANGELOGS_ARGS=NEWS
-DEB_DH_INSTALL_ARGS="doc/*" usr/share/doc/python-openid/html
-DEB_COMPRESS_EXCLUDE=examples
+include /usr/share/quilt/quilt.make
-DEB_PYTHON_SYSTEM=pycentral
+PACKAGE_NAME=python-openid
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
-include /usr/share/cdbs/1/class/python-distutils.mk
+build: patch
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ python setup.py clean
+ rm -rf build
+ rm -f build-stapm
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ python setup.py install --no-compile --root $(CURDIR)/debian/$(PACKAGE_NAME)
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs NEWS
+ dh_installdocs
+ dh_installexamples
+ dh_install "doc/*" usr/share/doc/$(PACKAGE_NAME)/html
+ dh_pycentral
+ # Remove empty /usr/lib left after dh_pycentral
+ rmdir $(CURDIR)/debian/$(PACKAGE_NAME)/usr/lib
+ dh_compress -X.py -Xexamples
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch: build install
+
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
More information about the Python-modules-commits
mailing list