[Python-modules-commits] r15837 - in packages/graphy/trunk/debian (7 files)

nomadium-guest at users.alioth.debian.org nomadium-guest at users.alioth.debian.org
Tue Feb 22 02:31:40 UTC 2011


    Date: Tuesday, February 22, 2011 @ 02:31:39
  Author: nomadium-guest
Revision: 15837

* Bumped Standards-Version to 3.9.1. No changes were needed.
* Fixed some binary-control-field-duplicates-source lintian warnings.
* Update watch file.
* Remove hardcoded /usr/lib/python2.5/ paths. (Closes: #614496).
* Remove unneeded Provides: ${python:Provides}.
* Replace dh_pysupport with dh_python2.
* Fix version for Build-Depends on debhelper.
* Switched source package format to 3.0 (quilt).
* Remove deprecated XS-Python-Version and XB-Python-Version fields.
* Update copyright dates.

Modified:
  packages/graphy/trunk/debian/changelog
  packages/graphy/trunk/debian/control
  packages/graphy/trunk/debian/copyright
  packages/graphy/trunk/debian/rules
  packages/graphy/trunk/debian/source/format
  packages/graphy/trunk/debian/watch
Deleted:
  packages/graphy/trunk/debian/python-graphy.install

Modified: packages/graphy/trunk/debian/changelog
===================================================================
--- packages/graphy/trunk/debian/changelog	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/changelog	2011-02-22 02:31:39 UTC (rev 15837)
@@ -1,15 +1,18 @@
 graphy (1.0+dfsg-2) UNRELEASED; urgency=low
 
-  [ Miguel Landaeta ]
-  * Added watch file.
-  * Bumped Standards-Version to 3.8.4. No changes were needed.
+  * Bumped Standards-Version to 3.9.1. No changes were needed.
   * Fixed some binary-control-field-duplicates-source lintian warnings.
+  * Update watch file.
+  * Remove hardcoded /usr/lib/python2.5/ paths. (Closes: #614496).
+  * Remove unneeded Provides: ${python:Provides}.
+  * Replace dh_pysupport with dh_python2.
+  * Fix version for Build-Depends on debhelper.
+  * Switched source package format to 3.0 (quilt).
+  * Remove deprecated XS-Python-Version and XB-Python-Version fields.
+  * Update copyright dates.
 
-  [ Sameer Rahmani ]
-  * watch file fixed.
+ -- Miguel Landaeta <miguel at miguel.cc>  Mon, 21 Feb 2011 22:00:26 -0430
 
- -- Miguel Landaeta <miguel at miguel.cc>  Sun, 28 Feb 2010 17:15:33 -0430
-
 graphy (1.0+dfsg-1) unstable; urgency=low
 
   * Initial release. (Closes: #563849).

Modified: packages/graphy/trunk/debian/control
===================================================================
--- packages/graphy/trunk/debian/control	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/control	2011-02-22 02:31:39 UTC (rev 15837)
@@ -3,19 +3,16 @@
 Uploaders: Miguel Landaeta <miguel at miguel.cc>
 Section: python
 Priority: optional
-Build-Depends: debhelper (>> 7.0.50), python-support (>= 0.8), python (>= 2.4)
-Standards-Version: 3.8.4
-XS-Python-Version: all
+Build-Depends: debhelper (>= 7.0.50~), python (>= 2.4)
+Standards-Version: 3.9.1
+X-Python-Version: >= 2.4
 Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/graphy/trunk
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/graphy/trunk/
 Homepage: http://graphy.googlecode.com/
 
 Package: python-graphy
 Architecture: all
-Depends: python (>= 2.4), python-support (>= 0.8), ${python:Depends},
-         ${misc:Depends}
-Provides: ${python:Provides}
-XB-Python-Version: ${python:Versions}
+Depends: python (>= 2.4), ${python:Depends}, ${misc:Depends}
 Description: chart generation library for Python
  Graphy is a simple Python library for generating charts. It tries to get out
  of the way and let you just work with your data. It produces charts using the

Modified: packages/graphy/trunk/debian/copyright
===================================================================
--- packages/graphy/trunk/debian/copyright	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/copyright	2011-02-22 02:31:39 UTC (rev 15837)
@@ -9,7 +9,7 @@
  systems.
 
 Files: debian/*
-Copyright: © 2010 Miguel Landaeta <miguel at miguel.cc>
+Copyright: © 2010-2011, Miguel Landaeta <miguel at miguel.cc>
 License: GPL-2+
  The full text of the GPL is distributed in /usr/share/common-licenses/GPL-2
  on Debian systems.

Deleted: packages/graphy/trunk/debian/python-graphy.install
===================================================================
--- packages/graphy/trunk/debian/python-graphy.install	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/python-graphy.install	2011-02-22 02:31:39 UTC (rev 15837)
@@ -1 +0,0 @@
-graphy	usr/lib/python2.5/site-packages

Modified: packages/graphy/trunk/debian/rules
===================================================================
--- packages/graphy/trunk/debian/rules	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/rules	2011-02-22 02:31:39 UTC (rev 15837)
@@ -1,3 +1,12 @@
 #!/usr/bin/make -f
 %:
-	dh --with python-support $@
+	dh --with python2 $@
+
+override_dh_install:
+	for python in $(shell pyversions -s); do \
+		case $$python in \
+			python2.4|python2.5) dh_install graphy usr/lib/$$python/site-packages ;; \
+			python2.6|python2.7) dh_install graphy usr/lib/$$python/dist-packages ;; \
+			*)                   echo "$$python is not supported" ; exit 1 ;; \
+		esac \
+	done

Modified: packages/graphy/trunk/debian/source/format
===================================================================
--- packages/graphy/trunk/debian/source/format	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/source/format	2011-02-22 02:31:39 UTC (rev 15837)
@@ -1 +1 @@
-1.0
+3.0 (quilt)

Modified: packages/graphy/trunk/debian/watch
===================================================================
--- packages/graphy/trunk/debian/watch	2011-02-21 22:18:59 UTC (rev 15836)
+++ packages/graphy/trunk/debian/watch	2011-02-22 02:31:39 UTC (rev 15837)
@@ -1,6 +1,4 @@
 version=3
-opts=\
-downloadurlmangle=s|.*[?]name=(.*?)&.*|http://graphy.googlecode.com/files/$1|,\
-filenamemangle=s|[^/]+[?]name=(.*?)&.*|$1| \
-http://code.google.com/p/graphy/downloads/detail[?]name=graphy_([0-9.]+).tar.bz2&.*
-
+opts=dversionmangle=s/\+dfsg$// \
+http://code.google.com/p/graphy/downloads/list \
+http://graphy.googlecode.com/files/graphy_(.+)\.tar\.bz2




More information about the Python-modules-commits mailing list