r66182 - in /branches/upstream/libversion-perl/current: META.yml Makefile.PL README lib/version.pm t/01base.t t/02derived.t t/03require.t vperl/vpp.pm vutil/lib/version/vxs.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Dec 24 06:03:04 UTC 2010


Author: jawnsy-guest
Date: Fri Dec 24 06:02:04 2010
New Revision: 66182

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=66182
Log:
[svn-upgrade] new version libversion-perl (0.8800)

Modified:
    branches/upstream/libversion-perl/current/META.yml
    branches/upstream/libversion-perl/current/Makefile.PL
    branches/upstream/libversion-perl/current/README
    branches/upstream/libversion-perl/current/lib/version.pm
    branches/upstream/libversion-perl/current/t/01base.t
    branches/upstream/libversion-perl/current/t/02derived.t
    branches/upstream/libversion-perl/current/t/03require.t
    branches/upstream/libversion-perl/current/vperl/vpp.pm
    branches/upstream/libversion-perl/current/vutil/lib/version/vxs.pm

Modified: branches/upstream/libversion-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/META.yml?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/META.yml (original)
+++ branches/upstream/libversion-perl/current/META.yml Fri Dec 24 06:02:04 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               version
-version:            0.87
+version:            0.88
 abstract:           Structured version objects
 author:
     - John Peacock <jpeacock at cpan.org>

Modified: branches/upstream/libversion-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/Makefile.PL?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/Makefile.PL (original)
+++ branches/upstream/libversion-perl/current/Makefile.PL Fri Dec 24 06:02:04 2010
@@ -56,7 +56,7 @@
                         'lib/version/Internals.pod' =>
 			    '$(INST_LIBDIR)/version/Internals.pod'},
                    PL_FILES        => {},
-
+                   C               => [],
                    clean           => { FILES => 'vutil/Makefile.PL' },
                    dist            => {
                        COMPRESS => 'gzip -9f', 

Modified: branches/upstream/libversion-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/README?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/README (original)
+++ branches/upstream/libversion-perl/current/README Fri Dec 24 06:02:04 2010
@@ -1,4 +1,4 @@
-version 0.87
+version 0.88
 ==================================
 
 Full version object support, with patch for bug in Perl 5.10.0 core
@@ -8,6 +8,12 @@
 There was a bug caused by objects serialized by YAML that will cause Perl
 5.10.0 to segfault.  As long as some module calls 'use version', then the
 replacement code will take effect and Perl will not crash.
+
+Major Changes in 0.88 - 2010-12-19
+=====================================
+Fix Makefile.PL to make Strawberry Perl happy.  Resolves:
+
+  https://rt.cpan.org/Public/Bug/Display.html?id=63991
 
 Major Changes in 0.87 - 2010-12-09
 =====================================

Modified: branches/upstream/libversion-perl/current/lib/version.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/lib/version.pm?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/lib/version.pm (original)
+++ branches/upstream/libversion-perl/current/lib/version.pm Fri Dec 24 06:02:04 2010
@@ -6,7 +6,7 @@
 
 use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
 
-$VERSION = 0.87;
+$VERSION = 0.88;
 
 $CLASS = 'version';
 

Modified: branches/upstream/libversion-perl/current/t/01base.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/t/01base.t?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/t/01base.t (original)
+++ branches/upstream/libversion-perl/current/t/01base.t Fri Dec 24 06:02:04 2010
@@ -9,7 +9,7 @@
 
 BEGIN {
     require "t/coretests.pm";
-    use_ok('version', 0.87);
+    use_ok('version', 0.88);
 }
 
 diag "Tests with base class" if $Verbose;

Modified: branches/upstream/libversion-perl/current/t/02derived.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/t/02derived.t?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/t/02derived.t (original)
+++ branches/upstream/libversion-perl/current/t/02derived.t Fri Dec 24 06:02:04 2010
@@ -10,7 +10,7 @@
 
 BEGIN {
     require "t/coretests.pm";
-    use_ok("version", 0.87);
+    use_ok("version", 0.88);
     # If we made it this far, we are ok.
 }
 

Modified: branches/upstream/libversion-perl/current/t/03require.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/t/03require.t?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/t/03require.t (original)
+++ branches/upstream/libversion-perl/current/t/03require.t Fri Dec 24 06:02:04 2010
@@ -13,7 +13,7 @@
 # Don't want to use, because we need to make sure that the import doesn't
 # fire just yet (some code does this to avoid importing qv() and delare()).
 require_ok("version");
-is $version::VERSION, 0.87, "Make sure we have the correct class";
+is $version::VERSION, 0.88, "Make sure we have the correct class";
 ok(!"main"->can("qv"), "We don't have the imported qv()");
 ok(!"main"->can("declare"), "We don't have the imported declare()");
 

Modified: branches/upstream/libversion-perl/current/vperl/vpp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/vperl/vpp.pm?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/vperl/vpp.pm (original)
+++ branches/upstream/libversion-perl/current/vperl/vpp.pm Fri Dec 24 06:02:04 2010
@@ -121,7 +121,7 @@
 use POSIX qw/locale_h/;
 use locale;
 use vars qw ($VERSION @ISA @REGEXS);
-$VERSION = 0.87;
+$VERSION = 0.88;
 
 use overload (
     '""'       => \&stringify,

Modified: branches/upstream/libversion-perl/current/vutil/lib/version/vxs.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libversion-perl/current/vutil/lib/version/vxs.pm?rev=66182&op=diff
==============================================================================
--- branches/upstream/libversion-perl/current/vutil/lib/version/vxs.pm (original)
+++ branches/upstream/libversion-perl/current/vutil/lib/version/vxs.pm Fri Dec 24 06:02:04 2010
@@ -6,7 +6,7 @@
 
 use vars qw(@ISA $VERSION $CLASS );
 
-$VERSION = 0.87;
+$VERSION = 0.88;
 
 $CLASS = 'version::vxs';
 




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