r13284 - in /branches/upstream/liblist-moreutils-perl/current: Changes META.yml MoreUtils.xs README lib/List/MoreUtils.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Jan 23 12:56:21 UTC 2008


Author: dmn
Date: Wed Jan 23 12:56:21 2008
New Revision: 13284

URL: http://svn.debian.org/wsvn/?sc=1&rev=13284
Log:
[svn-upgrade] Integrating new upstream version, liblist-moreutils-perl (0.22)

Modified:
    branches/upstream/liblist-moreutils-perl/current/Changes
    branches/upstream/liblist-moreutils-perl/current/META.yml
    branches/upstream/liblist-moreutils-perl/current/MoreUtils.xs
    branches/upstream/liblist-moreutils-perl/current/README
    branches/upstream/liblist-moreutils-perl/current/lib/List/MoreUtils.pm

Modified: branches/upstream/liblist-moreutils-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/liblist-moreutils-perl/current/Changes?rev=13284&op=diff
==============================================================================
--- branches/upstream/liblist-moreutils-perl/current/Changes (original)
+++ branches/upstream/liblist-moreutils-perl/current/Changes Wed Jan 23 12:56:21 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: branches/upstream/liblist-moreutils-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/liblist-moreutils-perl/current/META.yml?rev=13284&op=diff
==============================================================================
--- branches/upstream/liblist-moreutils-perl/current/META.yml (original)
+++ branches/upstream/liblist-moreutils-perl/current/META.yml Wed Jan 23 12:56:21 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: branches/upstream/liblist-moreutils-perl/current/MoreUtils.xs
URL: http://svn.debian.org/wsvn/branches/upstream/liblist-moreutils-perl/current/MoreUtils.xs?rev=13284&op=diff
==============================================================================
--- branches/upstream/liblist-moreutils-perl/current/MoreUtils.xs (original)
+++ branches/upstream/liblist-moreutils-perl/current/MoreUtils.xs Wed Jan 23 12:56:21 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: branches/upstream/liblist-moreutils-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/liblist-moreutils-perl/current/README?rev=13284&op=diff
==============================================================================
--- branches/upstream/liblist-moreutils-perl/current/README (original)
+++ branches/upstream/liblist-moreutils-perl/current/README Wed Jan 23 12:56:21 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: branches/upstream/liblist-moreutils-perl/current/lib/List/MoreUtils.pm
URL: http://svn.debian.org/wsvn/branches/upstream/liblist-moreutils-perl/current/lib/List/MoreUtils.pm?rev=13284&op=diff
==============================================================================
--- branches/upstream/liblist-moreutils-perl/current/lib/List/MoreUtils.pm (original)
+++ branches/upstream/liblist-moreutils-perl/current/lib/List/MoreUtils.pm Wed Jan 23 12:56:21 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