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

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Apr 16 19:20:51 UTC 2010


Author: gregoa
Date: Fri Apr 16 19:20:45 2010
New Revision: 56200

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

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=56200&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/Changes (original)
+++ branches/upstream/libcommon-sense-perl/current/Changes Fri Apr 16 19:20:45 2010
@@ -1,4 +1,8 @@
 Revision history for perl pragma common::sense.
+
+3.2  Fri Apr 16 01:46:02 CEST 2010
+	- removed "substr" warning - while it overall is a good category,
+          "substr '', 2" is entirely sensible.
 
 3.1  Sat Apr  3 04:56:36 CEST 2010
         - removed "parenthesis" warning:

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=56200&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/META.json (original)
+++ branches/upstream/libcommon-sense-perl/current/META.json Fri Apr 16 19:20:45 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.1","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.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}}

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=56200&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/META.yml (original)
+++ branches/upstream/libcommon-sense-perl/current/META.yml Fri Apr 16 19:20:45 2010
@@ -11,7 +11,7 @@
    },
    "generated_by" : "ExtUtils::MakeMaker version 6.54",
    "distribution_type" : "module",
-   "version" : "3.1",
+   "version" : "3.2",
    "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=56200&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/README (original)
+++ branches/upstream/libcommon-sense-perl/current/README Fri Apr 16 19:20:45 2010
@@ -10,7 +10,7 @@
      # use strict qw(vars subs);
      # use feature qw(say state switch);
      # no warnings;
-     # use warnings qw(FATAL closed threads internal debugging pack substr malloc
+     # use warnings qw(FATAL closed threads internal debugging pack malloc
      #                 portable prototype inplace io pipe unpack regexp
      #                 deprecated exiting glob digit printf layer
      #                 reserved taint closure semicolon);
@@ -346,7 +346,7 @@
         number of warning categories and the difficulty in getting exactly
         the set of warnings you wish (i.e. look at the SYNOPSIS in how
         complicated it is to get a specific set of warnings - it is not
-        reasonable to put this into every module, the maintainance effort
+        reasonable to put this into every module, the maintenance effort
         would be enourmous).
 
     But many modules "use strict" or "use warnings", so the memory savings

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=56200&op=diff
==============================================================================
--- branches/upstream/libcommon-sense-perl/current/sense.pm.PL (original)
+++ branches/upstream/libcommon-sense-perl/current/sense.pm.PL Fri Apr 16 19:20:45 2010
@@ -15,7 +15,7 @@
 use strict qw(subs vars);
 
 no warnings;
-use warnings qw(FATAL closed threads internal debugging pack substr malloc portable prototype
+use warnings qw(FATAL closed threads internal debugging pack malloc portable prototype
                 inplace io pipe unpack regexp deprecated exiting glob digit printf
                 layer reserved taint closure semicolon);
 no warnings qw(exec newline unopened);
@@ -56,7 +56,7 @@
  # use strict qw(vars subs);
  # use feature qw(say state switch);
  # no warnings;
- # use warnings qw(FATAL closed threads internal debugging pack substr malloc
+ # use warnings qw(FATAL closed threads internal debugging pack malloc
  #                 portable prototype inplace io pipe unpack regexp
  #                 deprecated exiting glob digit printf layer
  #                 reserved taint closure semicolon);
@@ -259,7 +259,7 @@
 
 package common::sense;
 
-our $VERSION = '3.1';
+our $VERSION = '3.2';
 
 # overload should be included
 
@@ -438,7 +438,7 @@
 of warning categories and the difficulty in getting exactly the set of
 warnings you wish (i.e. look at the SYNOPSIS in how complicated it is to
 get a specific set of warnings - it is not reasonable to put this into
-every module, the maintainance effort would be enourmous).
+every module, the maintenance effort would be enourmous).
 
 =item But many modules C<use strict> or C<use warnings>, so the memory
 savings do not apply?




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