[Python-modules-commits] r7529 - in packages/pygooglechart/trunk/debian (3 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Feb 15 18:50:27 UTC 2009


    Date: Sunday, February 15, 2009 @ 18:50:26
  Author: morph
Revision: 7529

  - updated my email address
  - updated packaging copyright notice, extending years
  - clarified upstream code is GPLv3+ referring to GPL-3 license
* debian/rules
  - install and clean only for default python version (it's arch:all)
  - moved removal of 'build' dir after python clean
  - merged 'rm' call into 'dh_clean' one
  - removed 'dh_shlibdeps' call since not needed

Modified:
  packages/pygooglechart/trunk/debian/changelog
  packages/pygooglechart/trunk/debian/copyright
  packages/pygooglechart/trunk/debian/rules

Modified: packages/pygooglechart/trunk/debian/changelog
===================================================================
--- packages/pygooglechart/trunk/debian/changelog	2009-02-15 15:15:15 UTC (rev 7528)
+++ packages/pygooglechart/trunk/debian/changelog	2009-02-15 18:50:26 UTC (rev 7529)
@@ -1,14 +1,22 @@
-pygooglechart (0.2.1-2) UNRELEASED; urgency=low
+pygooglechart (0.2.1-2) unstable; urgency=low
 
   * debian/copyright
     - updated copyright years
+    - updated my email address
+    - updated packaging copyright notice, extending years
+    - clarified upstream code is GPLv3+ referring to GPL-3 license
   * debian/control
     - switch Vcs-Browser field to viewsvn
     - updated my email address
     - removed XS-DM-Upload-Allowed field
     - uncapitalize short description
+  * debian/rules
+    - install and clean only for default python version (it's arch:all)
+    - moved removal of 'build' dir after python clean
+    - merged 'rm' call into 'dh_clean' one
+    - removed 'dh_shlibdeps' call since not needed
 
- -- Sandro Tosi <morph at debian.org>  Tue, 23 Dec 2008 11:39:39 +0100
+ -- Sandro Tosi <morph at debian.org>  Sun, 15 Feb 2009 19:49:57 +0100
 
 pygooglechart (0.2.1-1) experimental; urgency=low
 

Modified: packages/pygooglechart/trunk/debian/copyright
===================================================================
--- packages/pygooglechart/trunk/debian/copyright	2009-02-15 15:15:15 UTC (rev 7528)
+++ packages/pygooglechart/trunk/debian/copyright	2009-02-15 18:50:26 UTC (rev 7529)
@@ -1,4 +1,4 @@
-This package was debianized by Sandro Tosi <matrixhasu at gmail.com> on
+This package was debianized by Sandro Tosi <morph at debian.org> on
 Thu, 13 Dec 2007 23:55:35 +0100.
 
 It was downloaded from http://pygooglechart.slowchop.com/
@@ -23,8 +23,8 @@
     MERCHANTABILITY or FITNESS FOR  A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.
 
-In a Debian system the complete text of the GNU General Public License
-can be found in the file `/usr/share/common-licenses/GPL'.
+In a Debian system the complete text of the GNU General Public License v3
+can be found in the file `/usr/share/common-licenses/GPL-3'.
 
-The Debian packaging is (C) 2007, Sandro Tosi <matrixhasu at gmail.com> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+The Debian packaging is Copyright (C) 2007-2009, Sandro Tosi <morph at debian.org>
+and is licensed under the same license as upstream code.

Modified: packages/pygooglechart/trunk/debian/rules
===================================================================
--- packages/pygooglechart/trunk/debian/rules	2009-02-15 15:15:15 UTC (rev 7528)
+++ packages/pygooglechart/trunk/debian/rules	2009-02-15 18:50:26 UTC (rev 7529)
@@ -8,17 +8,15 @@
 clean:
 	dh_testdir
 	dh_testroot
-	[ ! -d build ] || rm -rf build
-	rm -f build-stamp
 	
 	# Add here commands to clean up after the build process.
-	for python in $(PYVERS); do \
-	    $$python setup.py clean; \
-	done
+	python setup.py clean
 	
+	[ ! -d build ] || rm -rf build
+	
 	find . -name '*.py[co]' -delete
 	
-	dh_clean
+	dh_clean build-stamp
 
 build:
 
@@ -28,9 +26,7 @@
 	dh_installdirs
 	
 	# Add here commands to install the package into debian/pygooglechart.
-	for python in $(PYVERS); do \
-		$$python setup.py install --root=$(CURDIR)/debian/python-pygooglechart; \
-	done
+	python setup.py install --root=$(CURDIR)/debian/python-pygooglechart
 
 binary-arch:
 
@@ -45,7 +41,6 @@
 	dh_compress		-X.py
 	dh_fixperms
 	dh_installdeb
-	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb




More information about the Python-modules-commits mailing list