[Python-modules-commits] r20101 - in packages/nose/trunk/debian (6 files)

cjsmo-guest at users.alioth.debian.org cjsmo-guest at users.alioth.debian.org
Wed Jan 25 12:24:07 UTC 2012


    Date: Wednesday, January 25, 2012 @ 12:24:04
  Author: cjsmo-guest
Revision: 20101

minor changes per tumbleweeds review

Modified:
  packages/nose/trunk/debian/changelog
  packages/nose/trunk/debian/copyright
  packages/nose/trunk/debian/patches/01_setup.py_fix.patch
  packages/nose/trunk/debian/patches/02_manpage_fix.patch
  packages/nose/trunk/debian/python-nose.prerm
  packages/nose/trunk/debian/python3-nose.prerm

Modified: packages/nose/trunk/debian/changelog
===================================================================
--- packages/nose/trunk/debian/changelog	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/changelog	2012-01-25 12:24:04 UTC (rev 20101)
@@ -5,7 +5,7 @@
   * Switched to source format 3.0 (quilt).
   * Package builds twice in a row now. Closes: #608678
   * Increased debian/compat to 7.
-  * Removed debian/pyversions, moving to debian/rules.
+  * Removed debian/pyversions, check for pyversions in debian/rules.
   * Updated debian/copyright to DEP5.
   * Updated debian/watch so it now works.
   * debian/control

Modified: packages/nose/trunk/debian/copyright
===================================================================
--- packages/nose/trunk/debian/copyright	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/copyright	2012-01-25 12:24:04 UTC (rev 20101)
@@ -15,7 +15,7 @@
 Files: patch.py
 Copyright: 2008-2010 Anatoly Techtonik
            2010 Alex Stewart <alex at foogod.com>
-License: EXPAT
+License: Expat
 
 Files: doc/manpage.py
 Copyright: Engelbert Gruber <grubert at users.sourceforge.net>
@@ -44,7 +44,7 @@
 Comment: On Debian systems, the LGPL version 2 license can be found at
  /usr/share/common-licenses/LGPL-2.
 
-License: EXPAT
+License: Expat
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights

Modified: packages/nose/trunk/debian/patches/01_setup.py_fix.patch
===================================================================
--- packages/nose/trunk/debian/patches/01_setup.py_fix.patch	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/patches/01_setup.py_fix.patch	2012-01-25 12:24:04 UTC (rev 20101)
@@ -1,5 +1,6 @@
-Description: Not install manpage with setup.py, we do this with debhelper so
- we can use update-alternatives to manage the manpages.
+Description: Not install manpage with setup.py.
+ Use debhelper to install manpage so we can use update-alternatives to
+ manage the manpages.
 Author: Charlie Smotherman <cjsmo at cableone.net>
 
 Index: nose-1.1.2/setup.py

Modified: packages/nose/trunk/debian/patches/02_manpage_fix.patch
===================================================================
--- packages/nose/trunk/debian/patches/02_manpage_fix.patch	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/patches/02_manpage_fix.patch	2012-01-25 12:24:04 UTC (rev 20101)
@@ -1,4 +1,4 @@
-Description: Fixes formatting errors, this quiets lintian.
+Description: Fixes manpage formatting errors.
 Author: Charlie Smotherman <cjsmo at cableone.net>
 
 Index: nose-1.1.2/nosetests.1

Modified: packages/nose/trunk/debian/python-nose.prerm
===================================================================
--- packages/nose/trunk/debian/python-nose.prerm	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/python-nose.prerm	2012-01-25 12:24:04 UTC (rev 20101)
@@ -3,17 +3,17 @@
 set -e
 
 case "$1" in
-    remove|deconfigure)
-        update-alternatives --remove nosetests /usr/bin/nosetests_py2
-    ;;
+	remove|deconfigure)
+		update-alternatives --remove nosetests /usr/bin/nosetests_py2
+	;;
 
-    upgrade|failed-upgrade)
-    ;;
+	upgrade|failed-upgrade)
+	;;
 
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
+	*)
+		echo "prerm called with unknown argument \`$1'" >&2
+		exit 1
+	;;
 esac
 
 #DEBHELPER#

Modified: packages/nose/trunk/debian/python3-nose.prerm
===================================================================
--- packages/nose/trunk/debian/python3-nose.prerm	2012-01-25 10:07:21 UTC (rev 20100)
+++ packages/nose/trunk/debian/python3-nose.prerm	2012-01-25 12:24:04 UTC (rev 20101)
@@ -3,17 +3,17 @@
 set -e
 
 case "$1" in
-    remove|deconfigure)
-        update-alternatives --remove nosetests /usr/bin/nosetests_py3
-    ;;
+	remove|deconfigure)
+		update-alternatives --remove nosetests /usr/bin/nosetests_py3
+	;;
 
-    upgrade|failed-upgrade)
-    ;;
+	upgrade|failed-upgrade)
+	;;
 
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
+	*)
+		echo "prerm called with unknown argument \`$1'" >&2
+		exit 1
+	;;
 esac
 
 #DEBHELPER#




More information about the Python-modules-commits mailing list