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

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Feb 15 22:42:54 UTC 2009


    Date: Sunday, February 15, 2009 @ 22:42:54
  Author: morph
Revision: 7559

* Uploading to unstable, since Lenny has been released
* debian/copyright
  - updated my email address
  - updated packaging copyright notice, extending years
  - clarified the packaging is licensed under the same terms as upstream code
  - clearly referring to LGPL-3 local file
* debian/rules
  - build and clean only for the default python version (it's arch:all)

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

Modified: packages/pprocess/trunk/debian/changelog
===================================================================
--- packages/pprocess/trunk/debian/changelog	2009-02-15 22:29:53 UTC (rev 7558)
+++ packages/pprocess/trunk/debian/changelog	2009-02-15 22:42:54 UTC (rev 7559)
@@ -1,11 +1,19 @@
-pprocess (0.4-2) UNRELEASED; urgency=low
+pprocess (0.4-2) unstable; urgency=low
 
+  * Uploading to unstable, since Lenny has been released
   * debian/control
     - switch Vcs-Browser field to viewsvn
     - updated my email address
     - remove DM-Upload-Allowed flag
+  * debian/copyright
+    - updated my email address
+    - updated packaging copyright notice, extending years
+    - clarified the packaging is licensed under the same terms as upstream code
+    - clearly referring to LGPL-3 local file
+  * debian/rules
+    - build and clean only for the default python version (it's arch:all)
 
- -- Sandro Tosi <morph at debian.org>  Tue, 23 Dec 2008 14:38:44 +0100
+ -- Sandro Tosi <morph at debian.org>  Sun, 15 Feb 2009 23:42:25 +0100
 
 pprocess (0.4-1) experimental; urgency=low
 

Modified: packages/pprocess/trunk/debian/copyright
===================================================================
--- packages/pprocess/trunk/debian/copyright	2009-02-15 22:29:53 UTC (rev 7558)
+++ packages/pprocess/trunk/debian/copyright	2009-02-15 22:42:54 UTC (rev 7559)
@@ -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, 18 Dec 2007 00:24:56 +0100, based on the good work done by Paul
 Boddie for Ubuntu
 
@@ -25,10 +25,10 @@
     Lesser General Public License for more details.
 
 In a Debian system the complete text of the GNU Lesser General Public
-License can be found in the file `/usr/share/common-licenses/LGPL'.
+License v3 can be found in the file `/usr/share/common-licenses/LGPL-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 terms as upstream code
 
 PyGmy has different copyright and licence notes, reported here below:
 

Modified: packages/pprocess/trunk/debian/rules
===================================================================
--- packages/pprocess/trunk/debian/rules	2009-02-15 22:29:53 UTC (rev 7558)
+++ packages/pprocess/trunk/debian/rules	2009-02-15 22:42:54 UTC (rev 7559)
@@ -12,9 +12,8 @@
 	dh_testdir
 
 	# Add here commands to compile the package.
-	for python in $(PYVERS) ; do \
-	    $$python setup.py build; \
-	done
+	python setup.py build
+
 	# generating api documentation
 	tools/apidocs.sh
 	touch $@
@@ -22,13 +21,15 @@
 clean: unpatch
 	dh_testdir
 	dh_testroot
+
 	# Add here commands to clean up after the build process.
-	for python in $(PYVERS) ; do \
-	    $$python setup.py clean; \
-	done
+	python setup.py clean
+
 	find . -name '*.py[co]' -delete
+	
 	[ ! -d build ] || rm -rf build
 	[ ! -d apidocs ] || rm -rf apidocs
+	
 	dh_clean build-stamp
 
 install: build




More information about the Python-modules-commits mailing list