[perl-common-sense] Update to 3.6

Paul Howarth pghmcfc at fedoraproject.org
Sun Jun 17 22:49:22 UTC 2012


commit d8c12d2e9dc310b49117dcb9677c90057417a8d4
Author: Paul Howarth <paul at city-fan.org>
Date:   Sun Jun 17 23:48:31 2012 +0100

    Update to 3.6
    
    - New upstream release 3.6:
      - Work around more 5.16 breakage - $^H doesn't work as nicely as P5P make
        you believe
      - Add features: unicode_strings current_sub fc evalbytes
      - Disable features: array_base

 perl-common-sense.spec |   27 ++++++++++++++++++++++-----
 sources                |    2 +-
 2 files changed, 23 insertions(+), 6 deletions(-)
---
diff --git a/perl-common-sense.spec b/perl-common-sense.spec
index 214b2a5..c16997e 100644
--- a/perl-common-sense.spec
+++ b/perl-common-sense.spec
@@ -1,7 +1,7 @@
 Name:		perl-common-sense
 Summary:	"Common sense" Perl defaults 
-Version:	3.5
-Release:	2%{?dist}
+Version:	3.6
+Release:	1%{?dist}
 License:	GPL+ or Artistic
 Group:		Development/Libraries
 URL:		http://search.cpan.org/dist/common-sense
@@ -20,9 +20,19 @@ This module implements some sane defaults for Perl programs, as defined
 by two typical (or not so typical - use your common sense) specimens of
 Perl coders:
 
-  use strict qw(vars subs);
-  use feature qw(say state switch);
-  no warnings;
+It's supposed to be mostly the same, with much lower memory usage, as:
+ 
+	use utf8;
+	use strict qw(vars subs);
+	use feature qw(say state switch);
+	use feature qw(unicode_strings unicode_eval current_sub fc evalbytes);
+	no feature qw(array_base);
+	no warnings;
+	use warnings qw(FATAL closed threads internal debugging pack
+			portable prototype inplace io pipe unpack malloc
+			deprecated glob digit printf layer
+			reserved taint closure semicolon);
+	no warnings qw(exec newline unopened);
 
 %prep
 %setup -q -n common-sense-%{version}
@@ -49,6 +59,13 @@ rm -rf %{buildroot}
 %{_mandir}/man3/common::sense.3pm*
 
 %changelog
+* Sun Jun 17 2012 Paul Howarth <paul at city-fan.org> - 3.6-1
+- Update to 3.6:
+  - Work around more 5.16 breakage - $^H doesn't work as nicely as P5P make
+    you believe
+  - Add features: unicode_strings current_sub fc evalbytes
+  - Disable features: array_base
+
 * Mon Jun 11 2012 Petr Pisar <ppisar at redhat.com> - 3.5-2
 - Perl 5.16 rebuild
 
diff --git a/sources b/sources
index d36767d..60ca6d3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-af2182e3bd91f7300d2caa5edd988bfb  common-sense-3.5.tar.gz
+9332e9fe85b0bce8c287a0429d164809  common-sense-3.6.tar.gz


More information about the scm-commits mailing list