[Python-modules-commits] r21237 - in packages/pytest/trunk/debian (changelog py.test.sh)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Sun Apr 15 19:56:37 UTC 2012


    Date: Sunday, April 15, 2012 @ 19:56:36
  Author: laarmen-guest
Revision: 21237

Fix version detection in the wrapper

Modified:
  packages/pytest/trunk/debian/changelog
  packages/pytest/trunk/debian/py.test.sh

Modified: packages/pytest/trunk/debian/changelog
===================================================================
--- packages/pytest/trunk/debian/changelog	2012-04-15 14:42:08 UTC (rev 21236)
+++ packages/pytest/trunk/debian/changelog	2012-04-15 19:56:36 UTC (rev 21237)
@@ -1,3 +1,9 @@
+pytest (2.2.3-3) UNRELEASED; urgency=low
+
+  * Fix the version detection in the wrapper (Closes: #668691) 
+
+ -- Simon Chopin <chopin.simon at gmail.com>  Sat, 14 Apr 2012 11:38:42 +0200
+
 pytest (2.2.3-2) unstable; urgency=low
 
   * Fix the shell wrapper (Closes: #668519)

Modified: packages/pytest/trunk/debian/py.test.sh
===================================================================
--- packages/pytest/trunk/debian/py.test.sh	2012-04-15 14:42:08 UTC (rev 21236)
+++ packages/pytest/trunk/debian/py.test.sh	2012-04-15 19:56:36 UTC (rev 21237)
@@ -2,7 +2,7 @@
 
 PYVERSION="${0##*py.test-}"
 case $PYVERSION in
-    "[0-9].[0-9]"|"[0-9]") ;;
+    [0-9].[0-9]|[0-9]) ;;
     *) PYVERSION='';; #If ill-formed version, use the default.
 esac
 UPSTREAMVERSION=#PYTEST#




More information about the Python-modules-commits mailing list