r16491 - in /trunk/libsvn-notify-mirror-perl/debian: changelog watch

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Tue Mar 4 17:59:11 UTC 2008


Author: gregoa-guest
Date: Tue Mar  4 17:59:10 2008
New Revision: 16491

URL: http://svn.debian.org/wsvn/?sc=1&rev=16491
Log:
Simplify version mangling to cope with older perl versions.

Modified:
    trunk/libsvn-notify-mirror-perl/debian/changelog
    trunk/libsvn-notify-mirror-perl/debian/watch

Modified: trunk/libsvn-notify-mirror-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libsvn-notify-mirror-perl/debian/changelog?rev=16491&op=diff
==============================================================================
--- trunk/libsvn-notify-mirror-perl/debian/changelog (original)
+++ trunk/libsvn-notify-mirror-perl/debian/changelog Tue Mar  4 17:59:10 2008
@@ -1,9 +1,13 @@
 libsvn-notify-mirror-perl (0.03603-3) UNRELEASED; urgency=low
 
+  [ Damyan Ivanov ]
   * debian/watch: add upstream version mangling to cope with 0.037 released
     after 0.03603
 
- -- Damyan Ivanov <dmn at debian.org>  Mon, 03 Mar 2008 18:41:46 +0200
+  [ gregor herrmann ]
+  * Simplify version mangling to cope with older perl versions.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 04 Mar 2008 18:58:45 +0100
 
 libsvn-notify-mirror-perl (0.03603-2) unstable; urgency=medium
 

Modified: trunk/libsvn-notify-mirror-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libsvn-notify-mirror-perl/debian/watch?rev=16491&op=diff
==============================================================================
--- trunk/libsvn-notify-mirror-perl/debian/watch (original)
+++ trunk/libsvn-notify-mirror-perl/debian/watch Tue Mar  4 17:59:10 2008
@@ -1,4 +1,9 @@
 version=3
 # convert 3-digit minir versions to 5-digits to cope with the fact
 # that upstream released 0.037 after 0.03603
-opts="uversionmangle=s/(?<=^\d+\.\d\d\d)$/00/" http://search.cpan.org/dist/SVN-Notify-Mirror/   .*/SVN-Notify-Mirror-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
+
+# variable look behind doesn't work with older perl versions
+# opts="uversionmangle=s/(?<=^\d+\.\d\d\d)$/00/" http://search.cpan.org/dist/SVN-Notify-Mirror/   .*/SVN-Notify-Mirror-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
+
+opts="uversionmangle=s/^(\d+\.\d\d\d)$/${1}00/" \
+http://search.cpan.org/dist/SVN-Notify-Mirror/   .*/SVN-Notify-Mirror-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




More information about the Pkg-perl-cvs-commits mailing list