r66543 - in /trunk/libpath-dispatcher-perl/debian: NEWS changelog control patches/ patches/fix-version-cmp.patch patches/series
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Tue Dec 28 02:42:48 UTC 2010
Author: jawnsy-guest
Date: Tue Dec 28 02:42:40 2010
New Revision: 66543
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66543
Log:
looks good, builds clean, dch -r
Added:
trunk/libpath-dispatcher-perl/debian/patches/
trunk/libpath-dispatcher-perl/debian/patches/fix-version-cmp.patch
trunk/libpath-dispatcher-perl/debian/patches/series
Modified:
trunk/libpath-dispatcher-perl/debian/NEWS
trunk/libpath-dispatcher-perl/debian/changelog
trunk/libpath-dispatcher-perl/debian/control
Modified: trunk/libpath-dispatcher-perl/debian/NEWS
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-dispatcher-perl/debian/NEWS?rev=66543&op=diff
==============================================================================
--- trunk/libpath-dispatcher-perl/debian/NEWS (original)
+++ trunk/libpath-dispatcher-perl/debian/NEWS Tue Dec 28 02:42:40 2010
@@ -1,10 +1,10 @@
-libpath-dispatcher-perl (1.02-1.1) UNRELEASED; urgency=low
+libpath-dispatcher-perl (1.02-1) unstable; urgency=low
INCOMPATIBLE CHANGE: the match object must be passed into rule
blocks instead of assigning $1, $2, $3. Use ->pos(1), (2), (3),
etc. instead.
- -- Jonathan Yu <jawnsy at cpan.org> Mon, 27 Dec 2010 21:28:54 -0500
+ -- Jonathan Yu <jawnsy at cpan.org> Mon, 27 Dec 2010 21:55:00 -0500
libpath-dispatcher-perl (0.15-2) unstable; urgency=low
Modified: trunk/libpath-dispatcher-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-dispatcher-perl/debian/changelog?rev=66543&op=diff
==============================================================================
--- trunk/libpath-dispatcher-perl/debian/changelog (original)
+++ trunk/libpath-dispatcher-perl/debian/changelog Tue Dec 28 02:42:40 2010
@@ -1,4 +1,4 @@
-libpath-dispatcher-perl (1.02-1) UNRELEASED; urgency=low
+libpath-dispatcher-perl (1.02-1) unstable; urgency=low
* New upstream release
* Refresh copyright information
@@ -6,7 +6,7 @@
* Standards-Version 3.9.1 (no changes)
* Update build/runtime dependencies
- -- Jonathan Yu <jawnsy at cpan.org> Mon, 27 Dec 2010 21:33:38 -0500
+ -- Jonathan Yu <jawnsy at cpan.org> Mon, 27 Dec 2010 21:54:56 -0500
libpath-dispatcher-perl (0.15-2) unstable; urgency=low
Modified: trunk/libpath-dispatcher-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-dispatcher-perl/debian/control?rev=66543&op=diff
==============================================================================
--- trunk/libpath-dispatcher-perl/debian/control (original)
+++ trunk/libpath-dispatcher-perl/debian/control Tue Dec 28 02:42:40 2010
@@ -9,6 +9,7 @@
libany-moose-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
Uploaders: Christine Spang <christine at debian.org>,
+ Jonathan Yu <jawnsy at cpan.org>,
Nathan Handler <nhandler at ubuntu.com>, gregor herrmann <gregoa at debian.org>
Standards-Version: 3.9.1
Homepage: http://search.cpan.org/dist/Path-Dispatcher/
Added: trunk/libpath-dispatcher-perl/debian/patches/fix-version-cmp.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-dispatcher-perl/debian/patches/fix-version-cmp.patch?rev=66543&op=file
==============================================================================
--- trunk/libpath-dispatcher-perl/debian/patches/fix-version-cmp.patch (added)
+++ trunk/libpath-dispatcher-perl/debian/patches/fix-version-cmp.patch Tue Dec 28 02:42:40 2010
@@ -1,0 +1,18 @@
+Description: fix version comparison in test script
+ The minimum version required for the 026-named-captures.t
+ test is 5.10.1, but the comparison was skipping even when
+ that version is running.
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/t/026-named-captures.t
++++ b/t/026-named-captures.t
+@@ -2,7 +2,7 @@
+ use warnings;
+ use Test::More;
+ BEGIN {
+- if ($] <= 5.010001) {
++ if ($] < 5.010001) {
+ plan skip_all => 'This test requires Perl 5.10.1';
+ }
+ }
Added: trunk/libpath-dispatcher-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpath-dispatcher-perl/debian/patches/series?rev=66543&op=file
==============================================================================
--- trunk/libpath-dispatcher-perl/debian/patches/series (added)
+++ trunk/libpath-dispatcher-perl/debian/patches/series Tue Dec 28 02:42:40 2010
@@ -1,0 +1,1 @@
+fix-version-cmp.patch
More information about the Pkg-perl-cvs-commits
mailing list