[Python-modules-commits] r7579 - in packages/pygpu/trunk/debian (changelog copyright rules)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Mon Feb 16 17:09:27 UTC 2009


    Date: Monday, February 16, 2009 @ 17:09:26
  Author: morph
Revision: 7579

* debian/copyright
  - updated my email address
  - fixed packaging copyright notice, extending copyright years
  - clarify packaging is licensed under the same terms as upstream code
* debian/rules
  - merged 'rm' call into 'dh_clean' one
  - moved 'build' dir removal after "python setup.py clean"

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

Modified: packages/pygpu/trunk/debian/changelog
===================================================================
--- packages/pygpu/trunk/debian/changelog	2009-02-16 10:41:35 UTC (rev 7578)
+++ packages/pygpu/trunk/debian/changelog	2009-02-16 17:09:26 UTC (rev 7579)
@@ -1,10 +1,17 @@
-pygpu (0.2.0a-629-2) UNRELEASED; urgency=low
+pygpu (0.2.0a-629-2) unstable; urgency=low
 
   * debian/control
     - switch Vcs-Browser field to viewsvn
     - updated my email address
+  * debian/copyright
+    - updated my email address
+    - fixed packaging copyright notice, extending copyright years
+    - clarify packaging is licensed under the same terms as upstream code
+  * debian/rules
+    - merged 'rm' call into 'dh_clean' one
+    - moved 'build' dir removal after "python setup.py clean"
 
- -- Sandro Tosi <morph at debian.org>  Wed, 24 Dec 2008 16:22:19 +0100
+ -- Sandro Tosi <morph at debian.org>  Mon, 16 Feb 2009 18:08:42 +0100
 
 pygpu (0.2.0a-629-1) unstable; urgency=low
 

Modified: packages/pygpu/trunk/debian/copyright
===================================================================
--- packages/pygpu/trunk/debian/copyright	2009-02-16 10:41:35 UTC (rev 7578)
+++ packages/pygpu/trunk/debian/copyright	2009-02-16 17:09:26 UTC (rev 7579)
@@ -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
 Tue, 20 Nov 2007 00:02:46 +0100.
 
 It was downloaded from http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/
@@ -31,5 +31,5 @@
 In a Debian system the complete text of the GNU General Public License
 can be found in the file `/usr/share/common-licenses/GPL-2'.
 
-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 terms of upstream code.

Modified: packages/pygpu/trunk/debian/rules
===================================================================
--- packages/pygpu/trunk/debian/rules	2009-02-16 10:41:35 UTC (rev 7578)
+++ packages/pygpu/trunk/debian/rules	2009-02-16 17:09:26 UTC (rev 7579)
@@ -9,14 +9,14 @@
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp
-	[ ! -d build ] || rm -rf build
 
 	python debian/setup.py clean
 
+	[ ! -d build ] || rm -rf build
+
 	find . -name '*\.py[co]' -delete
 
-	dh_clean 
+	dh_clean build-stamp
 
 install: build
 	dh_testdir




More information about the Python-modules-commits mailing list