r43227 - in /branches/upstream/libdevel-findref-perl/current: Changes FindRef.pm FindRef.xs META.yml Makefile.PL

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Aug 29 13:00:58 UTC 2009


Author: jawnsy-guest
Date: Sat Aug 29 13:00:36 2009
New Revision: 43227

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=43227
Log:
[svn-upgrade] Integrating new upstream version, libdevel-findref-perl (1.421)

Modified:
    branches/upstream/libdevel-findref-perl/current/Changes
    branches/upstream/libdevel-findref-perl/current/FindRef.pm
    branches/upstream/libdevel-findref-perl/current/FindRef.xs
    branches/upstream/libdevel-findref-perl/current/META.yml
    branches/upstream/libdevel-findref-perl/current/Makefile.PL

Modified: branches/upstream/libdevel-findref-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-findref-perl/current/Changes?rev=43227&op=diff
==============================================================================
--- branches/upstream/libdevel-findref-perl/current/Changes (original)
+++ branches/upstream/libdevel-findref-perl/current/Changes Sat Aug 29 13:00:36 2009
@@ -3,6 +3,10 @@
 TODO: unwrap the save stack to find mortalised scalars (too version dependent).
 TODO: hash keys containing \x00 do not display properly.
 TODO: get the stack of non-running coroutines?
+
+1.421 Fri Aug 28 22:25:57 CEST 2009
+	- tweaked lexical messages a bit (the HASH "is the lexical %var",
+          not "is in the lexical %var".
 
 1.42 Wed Jul  1 10:24:42 CEST 2009
 	- allow possible anonymous gv's without crashing in 5.10

Modified: branches/upstream/libdevel-findref-perl/current/FindRef.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-findref-perl/current/FindRef.pm?rev=43227&op=diff
==============================================================================
--- branches/upstream/libdevel-findref-perl/current/FindRef.pm (original)
+++ branches/upstream/libdevel-findref-perl/current/FindRef.pm Sat Aug 29 13:00:36 2009
@@ -7,7 +7,7 @@
 use Scalar::Util;
 
 BEGIN {
-   our $VERSION = '1.42';
+   our $VERSION = '1.421';
    XSLoader::load __PACKAGE__, $VERSION;
 }
 

Modified: branches/upstream/libdevel-findref-perl/current/FindRef.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-findref-perl/current/FindRef.xs?rev=43227&op=diff
==============================================================================
--- branches/upstream/libdevel-findref-perl/current/FindRef.xs (original)
+++ branches/upstream/libdevel-findref-perl/current/FindRef.xs Sat Aug 29 13:00:36 2009
@@ -179,9 +179,9 @@
                                             SV *name_sv = AvARRAY (AvARRAY (padlist)[0])[i];
 
                                             if (name_sv && SvPOK (name_sv))
-                                              res_pair (form ("in the lexical '%s' in", SvPVX (name_sv)));
+                                              res_pair (form ("the lexical '%s' in", SvPVX (name_sv)));
                                             else
-                                              res_pair ("in an unnamed lexical in");
+                                              res_pair ("an unnamed lexical in");
                                           }
 
                                       --depth;

Modified: branches/upstream/libdevel-findref-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-findref-perl/current/META.yml?rev=43227&op=diff
==============================================================================
--- branches/upstream/libdevel-findref-perl/current/META.yml (original)
+++ branches/upstream/libdevel-findref-perl/current/META.yml Sat Aug 29 13:00:36 2009
@@ -1,20 +1,26 @@
---- #YAML:1.0
-name:               Devel-FindRef
-version:            1.42
-abstract:           ~
-author:  []
-license:            unknown
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
-build_requires:
-    ExtUtils::MakeMaker:  0
-requires:  {}
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
-meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+{
+   "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.50",
+   "distribution_type" : "module",
+   "version" : "1.421",
+   "name" : "Devel-FindRef",
+   "author" : [],
+   "license" : "unknown",
+   "build_requires" : {
+      "ExtUtils::MakeMaker" : 0
+   },
+   "requires" : {},
+   "abstract" : null,
+   "configure_requires" : {
+      "ExtUtils::MakeMaker" : 0
+   }
+}

Modified: branches/upstream/libdevel-findref-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-findref-perl/current/Makefile.PL?rev=43227&op=diff
==============================================================================
--- branches/upstream/libdevel-findref-perl/current/Makefile.PL (original)
+++ branches/upstream/libdevel-findref-perl/current/Makefile.PL Sat Aug 29 13:00:36 2009
@@ -1,6 +1,6 @@
 use ExtUtils::MakeMaker;
 
-use 5.008;
+use 5.008001;
 
 WriteMakefile(
     dist	=> {




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