[Python-modules-commits] r9159 - in packages/python-gasp/trunk/debian (control pycompat rules)

ffm-guest at users.alioth.debian.org ffm-guest at users.alioth.debian.org
Sun Jul 26 17:54:52 UTC 2009


    Date: Sunday, July 26, 2009 @ 17:54:50
  Author: ffm-guest
Revision: 9159

Switched to pysupport, fixed get-orig-source

Modified:
  packages/python-gasp/trunk/debian/control
  packages/python-gasp/trunk/debian/rules
Deleted:
  packages/python-gasp/trunk/debian/pycompat

Modified: packages/python-gasp/trunk/debian/control
===================================================================
--- packages/python-gasp/trunk/debian/control	2009-07-26 16:14:47 UTC (rev 9158)
+++ packages/python-gasp/trunk/debian/control	2009-07-26 17:54:50 UTC (rev 9159)
@@ -3,19 +3,17 @@
 Priority: optional
 Maintainer: Luke Faraone <luke at faraone.cc>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: python (>= 2.5), debhelper (>= 5), cdbs (>= 0.4.43),  python-setuptools, 
-Build-Depends-indep: python-central (>= 0.5.0), patchutils, bzr
+Build-Depends: python (>= 2.4), debhelper (>= 5), cdbs (>= 0.4.49),  python-setuptools, 
+Build-Depends-indep: python-support (>= 0.5.3), patchutils, bzr
 Standards-Version: 3.8.2
 Homepage: https://launchpad.net/gasp
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-gasp/trunk
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-gasp/trunk/
-XS-Python-Version: all
 
 Package: python-gasp
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}, python-cairo (>= 1.4)
 Provides: ${python:Provides}
-XB-Python-Version: ${python:Versions}
 Description: procedural Python graphics library for beginning programmers
  GASP is a wrapper around the Python Cairo Graphics library which makes writing 
  graphical applications in Python easy for beginners, requiring little prior 

Deleted: packages/python-gasp/trunk/debian/pycompat
===================================================================
--- packages/python-gasp/trunk/debian/pycompat	2009-07-26 16:14:47 UTC (rev 9158)
+++ packages/python-gasp/trunk/debian/pycompat	2009-07-26 17:54:50 UTC (rev 9159)
@@ -1 +0,0 @@
-2

Modified: packages/python-gasp/trunk/debian/rules
===================================================================
--- packages/python-gasp/trunk/debian/rules	2009-07-26 16:14:47 UTC (rev 9158)
+++ packages/python-gasp/trunk/debian/rules	2009-07-26 17:54:50 UTC (rev 9159)
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 
-DEB_PYTHON_SYSTEM=pycentral
+DEB_PYTHON_SYSTEM=pysupport
 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
@@ -15,5 +15,14 @@
 TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
 .PHONY: get-orig-source
 get-orig-source:
-	rm -rf $(TARBALL) $(TARBALL).cdbs-config_list
-	bzr export -r $(SVN_REVISION) $(TARBALL) $(BRANCH_LOC) 
+	REV=$(shell dpkg-parsechangelog | sed -rne 's,^Version: .*bzr([^-]+).*,\1,p'); \
+        VER=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p'); \
+        if [ x$$REV = x ]; then \
+         uscan --force-download --rename --download-version=$$VER --destdir=.; \
+        else \
+         bzr  export -r $$REV http://wavelets.scipy.org/svn/multiresolution/pywt/trunk pywavelets-r$$REV && \
+         tar -zcf ./pywavelets_$$VER.orig.tar.gz pywavelets-r$$REV; \
+         rm -rf pywavelets-r$$REV; \
+        fi
+
+




More information about the Python-modules-commits mailing list