r43280 - in /branches/upstream/libparent-perl/current: Changes META.yml Makefile.PL lib/parent.pm t/parent-pmc.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Aug 30 03:22:46 UTC 2009


Author: jawnsy-guest
Date: Sun Aug 30 03:22:40 2009
New Revision: 43280

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

Modified:
    branches/upstream/libparent-perl/current/Changes
    branches/upstream/libparent-perl/current/META.yml
    branches/upstream/libparent-perl/current/Makefile.PL
    branches/upstream/libparent-perl/current/lib/parent.pm
    branches/upstream/libparent-perl/current/t/parent-pmc.t

Modified: branches/upstream/libparent-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Changes?rev=43280&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Changes (original)
+++ branches/upstream/libparent-perl/current/Changes Sun Aug 30 03:22:40 2009
@@ -1,3 +1,10 @@
+0.222  20090828
+    . No functional changes, no need to upgrade
+    + Documentation fix suggested by Clinton Gormley
+    + Test fix for Perl compiled without PMC support,
+      spotted and fixed by Nicholas Clark
+    + Distribution changes to placate Module::Release
+
 0.221  20080306
     . No functional changes, no need to upgrade
     + Tests, INSTALLDIRS changed for bleadperl integration

Modified: branches/upstream/libparent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/META.yml?rev=43280&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/META.yml (original)
+++ branches/upstream/libparent-perl/current/META.yml Sun Aug 30 03:22:40 2009
@@ -1,13 +1,21 @@
 --- #YAML:1.0
-name:                parent
-version:             0.221
-abstract:            ~
-license:             ~
-author:              ~
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Test::More:                    0.4
+name:               parent
+version:            0.222
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Test::More:  0.4
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libparent-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Makefile.PL?rev=43280&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Makefile.PL (original)
+++ branches/upstream/libparent-perl/current/Makefile.PL Sun Aug 30 03:22:40 2009
@@ -39,3 +39,5 @@
         return $out;
     }
 }
+
+1; # so you can require this Makefile.PL

Modified: branches/upstream/libparent-perl/current/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/lib/parent.pm?rev=43280&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/lib/parent.pm (original)
+++ branches/upstream/libparent-perl/current/lib/parent.pm Sun Aug 30 03:22:40 2009
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.221';
+$VERSION = '0.222';
 
 sub import {
     my $class = shift;
@@ -71,7 +71,7 @@
   sub exclaim { "I CAN HAS PERL" }
 
   package DoesNotLoadFooBar;
-  push @DoesNotLoadFooBar::ISA, 'Foo';
+  push @DoesNotLoadFooBar::ISA, 'Foo', 'Bar';
 
 This is also helpful for the case where a package lives within
 a differently named file:

Modified: branches/upstream/libparent-perl/current/t/parent-pmc.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/t/parent-pmc.t?rev=43280&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent-pmc.t (original)
+++ branches/upstream/libparent-perl/current/t/parent-pmc.t Sun Aug 30 03:22:40 2009
@@ -9,9 +9,12 @@
 
 use strict;
 use Test::More;
+use Config;
 use lib 't/lib';
 
 plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
+plan skip_all => ".pmc are disabled in this perl"
+    if $Config{ccflags} =~ /(?<!\w)-DPERL_DISABLE_PMC\b/;
 plan tests => 3;
 
 use vars qw($got_here);




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