[kernel] r22538 - dists/trunk/linux/debian/lib/python/debian_linux

Ben Hutchings benh at moszumanska.debian.org
Mon Apr 27 19:33:39 UTC 2015


Author: benh
Date: Mon Apr 27 19:33:39 2015
New Revision: 22538

Log:
Fix regex for the bpo version suffix

The Debian release is now identified by only the major version so
there need not be 2 digits directly after ~bpo.  Eventually the
major version will grow to 2 digits itself, so allow 1 or more
digits after the ~bpo.

Modified:
   dists/trunk/linux/debian/lib/python/debian_linux/debian.py

Modified: dists/trunk/linux/debian/lib/python/debian_linux/debian.py
==============================================================================
--- dists/trunk/linux/debian/lib/python/debian_linux/debian.py	Mon Apr 27 19:11:17 2015	(r22537)
+++ dists/trunk/linux/debian/lib/python/debian_linux/debian.py	Mon Apr 27 19:33:39 2015	(r22538)
@@ -140,7 +140,7 @@
     )
     |
     (?P<revision_backports>
-        ~bpo\d\d\+\d+
+        ~bpo\d+\+\d+
     )
     |
     (?P<revision_other>



More information about the Kernel-svn-changes mailing list