r13286 - in /trunk/liblist-moreutils-perl: Changes META.yml MoreUtils.xs README debian/changelog debian/watch lib/List/MoreUtils.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Jan 23 12:57:25 UTC 2008


Author: dmn
Date: Wed Jan 23 12:57:25 2008
New Revision: 13286

URL: http://svn.debian.org/wsvn/?sc=1&rev=13286
Log:
* New upstream release

Modified:
    trunk/liblist-moreutils-perl/Changes
    trunk/liblist-moreutils-perl/META.yml
    trunk/liblist-moreutils-perl/MoreUtils.xs
    trunk/liblist-moreutils-perl/README
    trunk/liblist-moreutils-perl/debian/changelog
    trunk/liblist-moreutils-perl/debian/watch
    trunk/liblist-moreutils-perl/lib/List/MoreUtils.pm

Modified: trunk/liblist-moreutils-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/Changes?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/Changes (original)
+++ trunk/liblist-moreutils-perl/Changes Wed Jan 23 12:57:25 2008
@@ -1,4 +1,7 @@
 Revision history for Perl extension List::Any/List::MoreUtils.
+
+0.22  Sun Jul  2 11:25:39 EDT 2006
+        - SvPV_nolen doesn't exist on pre 5.6 perls
 
 0.21  Sun Jun 18 07:59:06 EDT 2006
         - propagate dies from inside the code-reference of pairwise to 

Modified: trunk/liblist-moreutils-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/META.yml?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/META.yml (original)
+++ trunk/liblist-moreutils-perl/META.yml Wed Jan 23 12:57:25 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         List-MoreUtils
-version:      0.21
+version:      0.22
 version_from: lib/List/MoreUtils.pm
 installdirs:  site
 requires:

Modified: trunk/liblist-moreutils-perl/MoreUtils.xs
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/MoreUtils.xs?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/MoreUtils.xs (original)
+++ trunk/liblist-moreutils-perl/MoreUtils.xs Wed Jan 23 12:57:25 2008
@@ -137,6 +137,11 @@
 #  define PTR2UV(ptr) (UV)(ptr)
 #endif
 
+#ifndef SvPV_nolen
+    STRLEN N_A;
+#   define SvPV_nolen(sv) SvPV(sv, N_A)
+#endif
+
 #ifndef call_sv
 #  define call_sv perl_call_sv
 #endif

Modified: trunk/liblist-moreutils-perl/README
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/README?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/README (original)
+++ trunk/liblist-moreutils-perl/README Wed Jan 23 12:57:25 2008
@@ -1,4 +1,4 @@
-List-MoreUtils version 0.21
+List-MoreUtils version 0.22
 ===========================
 
 Provide the missing functionality from List::Util (see "SUGGESTED ADDITIONS" in

Modified: trunk/liblist-moreutils-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/debian/changelog?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/debian/changelog (original)
+++ trunk/liblist-moreutils-perl/debian/changelog Wed Jan 23 12:57:25 2008
@@ -1,3 +1,9 @@
+liblist-moreutils-perl (0.22-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Damyan Ivanov <dmn at debian.org>  Wed, 23 Jan 2008 14:56:29 +0200
+
 liblist-moreutils-perl (0.21-2) UNRELEASED; urgency=low
 
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser

Modified: trunk/liblist-moreutils-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/debian/watch?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/debian/watch (original)
+++ trunk/liblist-moreutils-perl/debian/watch Wed Jan 23 12:57:25 2008
@@ -1,2 +1,2 @@
 version=3
-http://search.cpan.org/dist/List-MoreUtils/ .*/List-MoreUtils-([[:digit:]].*)\.tar\.gz
+http://search.cpan.org/dist/List-MoreUtils/ .*/List-MoreUtils-v?(\d[\d.]*)\.tar\.gz

Modified: trunk/liblist-moreutils-perl/lib/List/MoreUtils.pm
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/lib/List/MoreUtils.pm?rev=13286&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/lib/List/MoreUtils.pm (original)
+++ trunk/liblist-moreutils-perl/lib/List/MoreUtils.pm Wed Jan 23 12:57:25 2008
@@ -17,7 +17,7 @@
 
 @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
 
-$VERSION = '0.21';
+$VERSION = '0.22';
 
 eval {
     local $ENV{PERL_DL_NONLAZY} = 0 if $ENV{PERL_DL_NONLAZY};
@@ -685,7 +685,7 @@
 
 =head1 VERSION
 
-This is version 0.21.
+This is version 0.22.
 
 =head1 BUGS
 




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