r76646 - in /trunk/libuniversal-can-perl: Changes META.yml Makefile.PL README debian/changelog lib/UNIVERSAL/can.pm

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


Author: ghedo-guest
Date: Mon Jun 27 18:14:00 2011
New Revision: 76646

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76646
Log:
IGNORE-VERSION: 1.20110617-1
Bumps required perl version to 5.8 + changes the license
* New upstream release

Modified:
    trunk/libuniversal-can-perl/Changes
    trunk/libuniversal-can-perl/META.yml
    trunk/libuniversal-can-perl/Makefile.PL
    trunk/libuniversal-can-perl/README
    trunk/libuniversal-can-perl/debian/changelog
    trunk/libuniversal-can-perl/lib/UNIVERSAL/can.pm

Modified: trunk/libuniversal-can-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/Changes?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/Changes (original)
+++ trunk/libuniversal-can-perl/Changes Mon Jun 27 18:14:00 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: trunk/libuniversal-can-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/META.yml?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/META.yml (original)
+++ trunk/libuniversal-can-perl/META.yml Mon Jun 27 18:14:00 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: trunk/libuniversal-can-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/Makefile.PL?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/Makefile.PL (original)
+++ trunk/libuniversal-can-perl/Makefile.PL Mon Jun 27 18:14:00 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: trunk/libuniversal-can-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/README?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/README (original)
+++ trunk/libuniversal-can-perl/README Mon Jun 27 18:14:00 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: trunk/libuniversal-can-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/debian/changelog?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/debian/changelog (original)
+++ trunk/libuniversal-can-perl/debian/changelog Mon Jun 27 18:14:00 2011
@@ -1,3 +1,12 @@
+libuniversal-can-perl (1.20110617-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 1.20110617-1
+  Bumps required perl version to 5.8 + changes the license
+
+  * New upstream release
+
+ -- Alessandro Ghedini <al3xbio at gmail.com>  Mon, 27 Jun 2011 20:12:08 +0200
+
 libuniversal-can-perl (1.20110613-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libuniversal-can-perl/lib/UNIVERSAL/can.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libuniversal-can-perl/lib/UNIVERSAL/can.pm?rev=76646&op=diff
==============================================================================
--- trunk/libuniversal-can-perl/lib/UNIVERSAL/can.pm (original)
+++ trunk/libuniversal-can-perl/lib/UNIVERSAL/can.pm Mon Jun 27 18:14:00 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