[Python-modules-commits] r5784 - in packages/beaker/trunk/debian (4 files)

malex at users.alioth.debian.org malex at users.alioth.debian.org
Tue Jul 1 19:55:57 UTC 2008


    Date: Tuesday, July 1, 2008 @ 19:55:56
  Author: malex
Revision: 5784

Update for 0.9.5 and try to remove ext/google.py from python2.4

Modified:
  packages/beaker/trunk/debian/changelog
  packages/beaker/trunk/debian/control
  packages/beaker/trunk/debian/copyright
  packages/beaker/trunk/debian/rules

Modified: packages/beaker/trunk/debian/changelog
===================================================================
--- packages/beaker/trunk/debian/changelog	2008-07-01 19:19:04 UTC (rev 5783)
+++ packages/beaker/trunk/debian/changelog	2008-07-01 19:55:56 UTC (rev 5784)
@@ -1,3 +1,14 @@
+beaker (0.9.5-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/rules: Do not put google.py into python2.'s dirs (Closes: #479484).
+  * debian/control:
+    - Updated Standarts-Version to 3.8.0 per lintian warning.
+    - Changed Build-Depends python-setuptools from 0.6b3-1 to 0.6b3 per
+      lintian warning.
+
+ -- Oleksandr Moskalenko <malex at debian.org>  Tue, 01 Jul 2008 12:22:13 -0600
+
 beaker (0.9.4-1) unstable; urgency=low
 
   * New upstream release.

Modified: packages/beaker/trunk/debian/control
===================================================================
--- packages/beaker/trunk/debian/control	2008-07-01 19:19:04 UTC (rev 5783)
+++ packages/beaker/trunk/debian/control	2008-07-01 19:55:56 UTC (rev 5784)
@@ -3,8 +3,8 @@
 Priority: optional
 Maintainer: Oleksandr Moskalenko <malex at debian.org>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5), python (>= 2.3.3), python-all-dev, python-support (>= 0.6.4), python-setuptools (>= 0.6b3-1)
-Standards-Version: 3.7.3
+Build-Depends: debhelper (>= 5), python (>= 2.3.3), python-all-dev, python-support (>= 0.6.4), python-setuptools (>= 0.6b3)
+Standards-Version: 3.8.0
 XS-Python-Version: all
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/beaker/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/beaker/trunk/?op=log

Modified: packages/beaker/trunk/debian/copyright
===================================================================
--- packages/beaker/trunk/debian/copyright	2008-07-01 19:19:04 UTC (rev 5783)
+++ packages/beaker/trunk/debian/copyright	2008-07-01 19:55:56 UTC (rev 5784)
@@ -5,7 +5,7 @@
 
 Upstream Authors: Julian Krause and Ben Bangart.
 
-Copyright: Julian Krause and Ben Bangart - <thecrypto at thecrypto.org>.
+Copyright 2006, 2007, 2008 Julian Krause and Ben Bangart <thecrypto at thecrypto.org>.
 
 License:
 

Modified: packages/beaker/trunk/debian/rules
===================================================================
--- packages/beaker/trunk/debian/rules	2008-07-01 19:19:04 UTC (rev 5783)
+++ packages/beaker/trunk/debian/rules	2008-07-01 19:55:56 UTC (rev 5784)
@@ -1,14 +1,14 @@
 #!/usr/bin/make -f
 # -*- makefile -*-
 # Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+export DH_VERBOSE=1
 package=python-beaker
+PYVERS=$(shell pyversions -vr)
 
 clean:
 	rm -f build-*
 	dh_testdir
 	dh_testroot
-	python setup.py clean
 	rm -rf build
 	find . -name *\.py[co] -exec rm -f {} \;
 	dh_clean
@@ -18,38 +18,38 @@
 build-indep:
 	touch $@
 
-build-stamp: 
+build-stamp:
 	dh_testdir
 	python setup.py build
 	touch $@
 
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-	python setup.py install \
+install: $(PYVERS:%=install-python%)
+install-python%:
+	python$* setup.py install \
 		--no-compile \
 		--single-version-externally-managed \
 		--root $(CURDIR)/debian/$(package)
+ifeq ($*,2.4)
+	rm -f $(CURDIR)/debian/$(package)/usr/lib/python$*/site-packages/beaker/ext/google.py
+endif
 
 binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs
-	dh_installdocs
-	dh_installexamples
-	dh_strip
+	dh_testdir -i
+	dh_testroot -i
+	dh_installdirs
+	dh_installchangelogs -i
+	dh_installdocs -i
+	dh_installexamples -i
+#	dh_pysupport -i
 	dh_compress -X.py
-	dh_fixperms
-	dh_pysupport
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i -- -Z bzip2
 
 binary-arch:
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+
+.PHONY: build clean binary-indep binary-arch binary install




More information about the Python-modules-commits mailing list