r76644 - in /branches/upstream/libuniversal-can-perl/current: Changes META.yml Makefile.PL README lib/UNIVERSAL/can.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Mon Jun 27 18:11:40 UTC 2011


Author: ghedo-guest
Date: Mon Jun 27 18:11:31 2011
New Revision: 76644

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76644
Log:
[svn-upgrade] new version libuniversal-can-perl (1.20110617)

Modified:
    branches/upstream/libuniversal-can-perl/current/Changes
    branches/upstream/libuniversal-can-perl/current/META.yml
    branches/upstream/libuniversal-can-perl/current/Makefile.PL
    branches/upstream/libuniversal-can-perl/current/README
    branches/upstream/libuniversal-can-perl/current/lib/UNIVERSAL/can.pm

Modified: branches/upstream/libuniversal-can-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libuniversal-can-perl/current/Changes?rev=76644&op=diff
==============================================================================
--- branches/upstream/libuniversal-can-perl/current/Changes (original)
+++ branches/upstream/libuniversal-can-perl/current/Changes Mon Jun 27 18:11:31 2011
@@ -1,4 +1,10 @@
 Revision history for UNIVERSAL::can
+
+1.20110617 2011-06-17 11:45:11 America/Los_Angeles
+    - bumped minimum Perl version to 5.8, as working around 5.6 bugs is not
+      worth the trouble
+
+1.20110614 2011-06-14 15:32:23 America/Los_Angeles
 
 1.20110613 2011-06-12 18:31:27 America/Los_Angeles
     - fixed RT #63771, buggy triggering of overloading for blessed invocants

Modified: branches/upstream/libuniversal-can-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libuniversal-can-perl/current/META.yml?rev=76644&op=diff
==============================================================================
--- branches/upstream/libuniversal-can-perl/current/META.yml (original)
+++ branches/upstream/libuniversal-can-perl/current/META.yml Mon Jun 27 18:11:31 2011
@@ -16,9 +16,10 @@
 name: UNIVERSAL-can
 requires:
   Scalar::Util: 0
+  perl: 5.008
   vars: 0
   warnings::register: 0
 resources:
   homepage: https://github.com/chromatic/UNIVERSAL-can
   repository: https://github.com/chromatic/UNIVERSAL-can.git
-version: 1.20110613
+version: 1.20110617

Modified: branches/upstream/libuniversal-can-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libuniversal-can-perl/current/Makefile.PL?rev=76644&op=diff
==============================================================================
--- branches/upstream/libuniversal-can-perl/current/Makefile.PL (original)
+++ branches/upstream/libuniversal-can-perl/current/Makefile.PL Mon Jun 27 18:11:31 2011
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-
+use 5.008;
 
 use ExtUtils::MakeMaker 6.30;
 
@@ -27,7 +27,7 @@
     'vars' => '0',
     'warnings::register' => '0'
   },
-  'VERSION' => '1.20110613',
+  'VERSION' => '1.20110617',
   'test' => {
     'TESTS' => 't/*.t'
   }

Modified: branches/upstream/libuniversal-can-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libuniversal-can-perl/current/README?rev=76644&op=diff
==============================================================================
--- branches/upstream/libuniversal-can-perl/current/README (original)
+++ branches/upstream/libuniversal-can-perl/current/README Mon Jun 27 18:11:31 2011
@@ -6,4 +6,5 @@
 
 COPYRIGHT AND LICENCE
 
-Artistic License 2.0, Copyright (c) chromatic 2005 - 2010.
+Copyright (c) 2005 - 2011, chromatic. This module is made available under the
+same terms as Perl 5.12.

Modified: branches/upstream/libuniversal-can-perl/current/lib/UNIVERSAL/can.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libuniversal-can-perl/current/lib/UNIVERSAL/can.pm?rev=76644&op=diff
==============================================================================
--- branches/upstream/libuniversal-can-perl/current/lib/UNIVERSAL/can.pm (original)
+++ branches/upstream/libuniversal-can-perl/current/lib/UNIVERSAL/can.pm Mon Jun 27 18:11:31 2011
@@ -1,11 +1,12 @@
 package UNIVERSAL::can;
 BEGIN {
-  $UNIVERSAL::can::VERSION = '1.20110613';
+  $UNIVERSAL::can::VERSION = '1.20110617';
 }
 # ABSTRACT: work around buggy code calling UNIVERSAL::can() as a function
 
 use strict;
 use warnings;
+use 5.008;
 
 use vars qw( $recursing $always_warn );
 
@@ -149,7 +150,7 @@
 
 =head1 COPYRIGHT & LICENSE
 
-Artistic License 2.0, copyright (c) 2005 - 2011 chromatic. Some rights
-reserved.
+Copyright (c) 2005 - 2011, chromatic. This module is made available under the
+same terms as Perl 5.12.
 
 =cut




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