r43308 - in /trunk/libdevel-findref-perl: Changes FindRef.pm FindRef.xs META.yml Makefile.PL debian/changelog

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Sun Aug 30 23:49:04 UTC 2009


Author: nhandler-guest
Date: Sun Aug 30 23:48:58 2009
New Revision: 43308

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=43308
Log:
Update for 1.422-1

Modified:
    trunk/libdevel-findref-perl/Changes
    trunk/libdevel-findref-perl/FindRef.pm
    trunk/libdevel-findref-perl/FindRef.xs
    trunk/libdevel-findref-perl/META.yml
    trunk/libdevel-findref-perl/Makefile.PL
    trunk/libdevel-findref-perl/debian/changelog

Modified: trunk/libdevel-findref-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/Changes?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/Changes (original)
+++ trunk/libdevel-findref-perl/Changes Sun Aug 30 23:48:58 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.422 Sun Aug 30 16:33:24 CEST 2009
+	- more of the same changes as in 1.422.
+        - rely on common::sense.
 
 1.421 Fri Aug 28 22:25:57 CEST 2009
 	- tweaked lexical messages a bit (the HASH "is the lexical %var",

Modified: trunk/libdevel-findref-perl/FindRef.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/FindRef.pm?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/FindRef.pm (original)
+++ trunk/libdevel-findref-perl/FindRef.pm Sun Aug 30 23:48:58 2009
@@ -1,13 +1,12 @@
 package Devel::FindRef;
 
-no warnings; # I hate warning nazis
-use strict;
+use common::sense;
 
 use XSLoader;
 use Scalar::Util;
 
 BEGIN {
-   our $VERSION = '1.421';
+   our $VERSION = '1.422';
    XSLoader::load __PACKAGE__, $VERSION;
 }
 

Modified: trunk/libdevel-findref-perl/FindRef.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/FindRef.xs?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/FindRef.xs (original)
+++ trunk/libdevel-findref-perl/FindRef.xs Sun Aug 30 23:48:58 2009
@@ -39,7 +39,7 @@
   } while (0)
 
 #define res_gv(sigil)						\
-  res_text (form ("in the global %c%s::%.*s", sigil,		\
+  res_text (form ("the global %c%s::%.*s", sigil,		\
                   HvNAME (GvSTASH (sv)),			\
                   GvNAME_HEK (sv) ? GvNAMELEN (sv) : 11,	\
                   GvNAME_HEK (sv) ? GvNAME    (sv) : "<anonymous>"))
@@ -134,7 +134,7 @@
                             if (AvREAL (sv))
                               for (i = AvFILLp (sv) + 1; i--; )
                                 if (AvARRAY (sv)[i] == targ)
-                                  res_pair (form ("in array element %d of", i));
+                                  res_pair (form ("the array element %d of", i));
 
                             break;
 
@@ -145,7 +145,7 @@
 
                                 while ((he = hv_iternext ((HV *)sv)))
                                   if (HeVAL (he) == targ)
-                                    res_pair (form ("in the member '%.*s' of", HeKLEN (he), HeKEY (he)));
+                                    res_pair (form ("the member '%.*s' of", HeKLEN (he), HeKEY (he)));
                               }
 
                             break;

Modified: trunk/libdevel-findref-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/META.yml?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/META.yml (original)
+++ trunk/libdevel-findref-perl/META.yml Sun Aug 30 23:48:58 2009
@@ -11,14 +11,16 @@
    },
    "generated_by" : "ExtUtils::MakeMaker version 6.50",
    "distribution_type" : "module",
-   "version" : "1.421",
+   "version" : "1.422",
    "name" : "Devel-FindRef",
    "author" : [],
    "license" : "unknown",
    "build_requires" : {
       "ExtUtils::MakeMaker" : 0
    },
-   "requires" : {},
+   "requires" : {
+      "common::sense" : 0
+   },
    "abstract" : null,
    "configure_requires" : {
       "ExtUtils::MakeMaker" : 0

Modified: trunk/libdevel-findref-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/Makefile.PL?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/Makefile.PL (original)
+++ trunk/libdevel-findref-perl/Makefile.PL Sun Aug 30 23:48:58 2009
@@ -8,6 +8,9 @@
 	            COMPRESS	=> 'gzip -9v',
 	            SUFFIX	=> '.gz',
 	           },
+    PREREQ_PM    => {
+       common::sense    => 0,
+    },
     NAME => "Devel::FindRef",
     VERSION_FROM => "FindRef.pm",
 );

Modified: trunk/libdevel-findref-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/changelog?rev=43308&op=diff
==============================================================================
--- trunk/libdevel-findref-perl/debian/changelog (original)
+++ trunk/libdevel-findref-perl/debian/changelog Sun Aug 30 23:48:58 2009
@@ -1,3 +1,9 @@
+libdevel-findref-perl (1.422-1) UNRELEASED; urgency=low
+
+  * (NOT RELEASED YET) New upstream release
+
+ -- Live session user <ubuntu at ubuntu>  Sun, 30 Aug 2009 23:47:50 +0000
+
 libdevel-findref-perl (1.421-1) UNRELEASED; urgency=low
 
   IGNORE-VERSION: 1.421-1




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