r59998 - in /branches/upstream/libcommon-sense-perl/current: Changes META.json META.yml README sense.pm.PL

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jul 3 11:27:20 UTC 2010


Author: ansgar-guest
Date: Sat Jul  3 11:27:12 2010
New Revision: 59998

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=59998
Log:
[svn-upgrade] new version libcommon-sense-perl (3.3)

Modified:
    branches/upstream/libcommon-sense-perl/current/Changes
    branches/upstream/libcommon-sense-perl/current/META.json
    branches/upstream/libcommon-sense-perl/current/META.yml
    branches/upstream/libcommon-sense-perl/current/README
    branches/upstream/libcommon-sense-perl/current/sense.pm.PL

Modified: branches/upstream/libcommon-sense-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcommon-sense-perl/current/Changes?rev=59998&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/Changes (original)
+++ branches/upstream/libcommon-sense-perl/current/Changes Sat Jul  3 11:27:12 2010
@@ -1,4 +1,11 @@
 Revision history for perl pragma common::sense.
+
+3.3  Fri Jul  2 22:40:14 CEST 2010
+        - removed "exiting" category - this is too useful to create new
+          control statements, and fails utterly with eval, as eval will
+          catch the (fatal) warning itself. Kind of hurts, but this is
+          just another warning category which is too broad and has to be
+          disabled fully because of a minority of issues.
 
 3.2  Fri Apr 16 01:46:02 CEST 2010
 	- removed "substr" warning - while it overall is a good category,

Modified: branches/upstream/libcommon-sense-perl/current/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcommon-sense-perl/current/META.json?rev=59998&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/META.json (original)
+++ branches/upstream/libcommon-sense-perl/current/META.json Sat Jul  3 11:27:12 2010
@@ -1,1 +1,1 @@
-{"no_index":{"directory":["t","inc"]},"meta-spec":{"version":1.4,"url":"http://module-build.sourceforge.net/META-spec-v1.4.html"},"generated_by":"ExtUtils::MakeMaker version 6.54","distribution_type":"module","version":"3.2","name":"common-sense","author":[],"license":"unknown","build_requires":{"ExtUtils::MakeMaker":0},"requires":{},"abstract":null,"configure_requires":{"ExtUtils::MakeMaker":0}}
+{"no_index":{"directory":["t","inc"]},"meta-spec":{"version":1.4,"url":"http://module-build.sourceforge.net/META-spec-v1.4.html"},"generated_by":"ExtUtils::MakeMaker version 6.56","distribution_type":"module","version":"3.3","name":"common-sense","author":[],"license":"unknown","build_requires":{"ExtUtils::MakeMaker":0},"requires":{},"abstract":null,"configure_requires":{"ExtUtils::MakeMaker":0}}

Modified: branches/upstream/libcommon-sense-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcommon-sense-perl/current/META.yml?rev=59998&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/META.yml (original)
+++ branches/upstream/libcommon-sense-perl/current/META.yml Sat Jul  3 11:27:12 2010
@@ -9,9 +9,9 @@
       "version" : 1.4,
       "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html"
    },
-   "generated_by" : "ExtUtils::MakeMaker version 6.54",
+   "generated_by" : "ExtUtils::MakeMaker version 6.56",
    "distribution_type" : "module",
-   "version" : "3.2",
+   "version" : "3.3",
    "name" : "common-sense",
    "author" : [],
    "license" : "unknown",

Modified: branches/upstream/libcommon-sense-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcommon-sense-perl/current/README?rev=59998&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/README (original)
+++ branches/upstream/libcommon-sense-perl/current/README Sat Jul  3 11:27:12 2010
@@ -12,11 +12,16 @@
      # no warnings;
      # use warnings qw(FATAL closed threads internal debugging pack malloc
      #                 portable prototype inplace io pipe unpack regexp
-     #                 deprecated exiting glob digit printf layer
+     #                 deprecated glob digit printf layer
      #                 reserved taint closure semicolon);
      # no warnings qw(exec newline unopened);
 
 DESCRIPTION
+       “Nothing is more fairly distributed than common sense: no one thinks
+       he needs more of it than he already has.”
+
+       – René Descartes
+
     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. In fact, after working out details on which warnings and

Modified: branches/upstream/libcommon-sense-perl/current/sense.pm.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcommon-sense-perl/current/sense.pm.PL?rev=59998&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/sense.pm.PL (original)
+++ branches/upstream/libcommon-sense-perl/current/sense.pm.PL Sat Jul  3 11:27:12 2010
@@ -16,7 +16,7 @@
 
 no warnings;
 use warnings qw(FATAL closed threads internal debugging pack malloc portable prototype
-                inplace io pipe unpack regexp deprecated exiting glob digit printf
+                inplace io pipe unpack regexp deprecated glob digit printf
                 layer reserved taint closure semicolon);
 no warnings qw(exec newline unopened);
 
@@ -58,11 +58,17 @@
  # no warnings;
  # use warnings qw(FATAL closed threads internal debugging pack malloc
  #                 portable prototype inplace io pipe unpack regexp
- #                 deprecated exiting glob digit printf layer
+ #                 deprecated glob digit printf layer
  #                 reserved taint closure semicolon);
  # no warnings qw(exec newline unopened);
 
+
 =head1 DESCRIPTION
+
+   “Nothing is more fairly distributed than common sense: no one thinks
+   he needs more of it than he already has.”
+
+   – René Descartes
 
 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
@@ -259,7 +265,7 @@
 
 package common::sense;
 
-our $VERSION = '3.2';
+our $VERSION = '3.3';
 
 # overload should be included
 




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