r17984 - in /branches/upstream/libparent-perl/current: Changes META.yml Makefile.PL lib/parent.pm t/compile-time-file.t t/parent-classfromclassfile.t t/parent-classfromfile.t t/parent-pmc.t t/parent-returns-false.t t/parent.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Mar 26 17:47:47 UTC 2008


Author: gregoa-guest
Date: Wed Mar 26 17:47:47 2008
New Revision: 17984

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

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/compile-time-file.t
    branches/upstream/libparent-perl/current/t/parent-classfromclassfile.t
    branches/upstream/libparent-perl/current/t/parent-classfromfile.t
    branches/upstream/libparent-perl/current/t/parent-pmc.t
    branches/upstream/libparent-perl/current/t/parent-returns-false.t
    branches/upstream/libparent-perl/current/t/parent.t

Modified: branches/upstream/libparent-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/Changes?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Changes (original)
+++ branches/upstream/libparent-perl/current/Changes Wed Mar 26 17:47:47 2008
@@ -1,3 +1,7 @@
+0.221  20080306
+    . No functional changes, no need to upgrade
+    + Tests, INSTALLDIRS changed for bleadperl integration
+
 0.220  20080304
     . No functional changes, no need to upgrade
     + Removed beta status

Modified: branches/upstream/libparent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/META.yml?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/META.yml (original)
+++ branches/upstream/libparent-perl/current/META.yml Wed Mar 26 17:47:47 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                parent
-version:             0.220
+version:             0.221
 abstract:            ~
 license:             ~
 author:              ~

Modified: branches/upstream/libparent-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/Makefile.PL?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Makefile.PL (original)
+++ branches/upstream/libparent-perl/current/Makefile.PL Wed Mar 26 17:47:47 2008
@@ -11,7 +11,7 @@
     NAME            => 'parent',
     VERSION_FROM    => "lib/parent.pm", # finds $VERSION
     PREREQ_PM       => { Test::More => 0.40 },
-    #INSTALLDIRS     => 'perl', # well, that would be nice
+    INSTALLDIRS => ($] >= 5.011 ? 'perl' : 'site'),
 );
 
 # Leftover voodoo for testing various Perl distributions

Modified: branches/upstream/libparent-perl/current/lib/parent.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/lib/parent.pm?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/lib/parent.pm (original)
+++ branches/upstream/libparent-perl/current/lib/parent.pm Wed Mar 26 17:47:47 2008
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.220';
+$VERSION = '0.221';
 
 sub import {
     my $class = shift;

Modified: branches/upstream/libparent-perl/current/t/compile-time-file.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/compile-time-file.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/compile-time-file.t (original)
+++ branches/upstream/libparent-perl/current/t/compile-time-file.t Wed Mar 26 17:47:47 2008
@@ -1,8 +1,9 @@
 #!/usr/bin/perl -w
 BEGIN {
-   if( $ENV{PERL_CORE} ) {
+    if( $ENV{PERL_CORE} ) {
         chdir 't' if -d 't';
-        @INC = qw(../lib lib);
+        chdir '../lib/parent';
+        @INC = '..';
     }
 }
 

Modified: branches/upstream/libparent-perl/current/t/parent-classfromclassfile.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/parent-classfromclassfile.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent-classfromclassfile.t (original)
+++ branches/upstream/libparent-perl/current/t/parent-classfromclassfile.t Wed Mar 26 17:47:47 2008
@@ -1,16 +1,16 @@
 #!/usr/bin/perl -w
 
 BEGIN {
-   if( $ENV{PERL_CORE} ) {
+    if( $ENV{PERL_CORE} ) {
         chdir 't' if -d 't';
-        @INC = qw(../lib lib);
-    } else {
-        push @INC, 't/lib';
-    };
+        chdir '../lib/parent';
+        @INC = '..';
+    }
 }
 
 use strict;
 use Test::More tests => 3;
+use lib 't/lib';
 
 use_ok('parent');
 

Modified: branches/upstream/libparent-perl/current/t/parent-classfromfile.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/parent-classfromfile.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent-classfromfile.t (original)
+++ branches/upstream/libparent-perl/current/t/parent-classfromfile.t Wed Mar 26 17:47:47 2008
@@ -1,21 +1,20 @@
 #!/usr/bin/perl -w
 
-my $base;
 BEGIN {
-   if( $ENV{PERL_CORE} ) {
+    if( $ENV{PERL_CORE} ) {
         chdir 't' if -d 't';
-        @INC = qw(../lib lib);
-	$base = '.';
-    } else {
-        push @INC, 't/lib';
-	$base = './t';
-    };
+        chdir '../lib/parent';
+        @INC = '..';
+    }
 }
 
 use strict;
 use Test::More tests => 4;
+use lib 't/lib';
 
 use_ok('parent');
+
+my $base = './t';
 
 # Tests that a bare (non-double-colon) class still loads
 # and does not get treated as a file:

Modified: branches/upstream/libparent-perl/current/t/parent-pmc.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/parent-pmc.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent-pmc.t (original)
+++ branches/upstream/libparent-perl/current/t/parent-pmc.t Wed Mar 26 17:47:47 2008
@@ -1,4 +1,12 @@
 #!/usr/bin/perl -w
+BEGIN {
+    if( $ENV{PERL_CORE} ) {
+        chdir 't' if -d 't';
+        chdir '../lib/parent';
+        @INC = '..';
+    }
+}
+
 use strict;
 use Test::More;
 use lib 't/lib';

Modified: branches/upstream/libparent-perl/current/t/parent-returns-false.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/parent-returns-false.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent-returns-false.t (original)
+++ branches/upstream/libparent-perl/current/t/parent-returns-false.t Wed Mar 26 17:47:47 2008
@@ -1,4 +1,12 @@
 #!/usr/bin/perl -w
+BEGIN {
+    if( $ENV{PERL_CORE} ) {
+        chdir 't' if -d 't';
+        chdir '../lib/parent';
+        @INC = '..';
+    }
+}
+
 use strict;
 use Test::More tests => 2;
 use lib 't/lib';

Modified: branches/upstream/libparent-perl/current/t/parent.t
URL: http://svn.debian.org/wsvn/branches/upstream/libparent-perl/current/t/parent.t?rev=17984&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/t/parent.t (original)
+++ branches/upstream/libparent-perl/current/t/parent.t Wed Mar 26 17:47:47 2008
@@ -3,7 +3,8 @@
 BEGIN {
    if( $ENV{PERL_CORE} ) {
         chdir 't' if -d 't';
-        @INC = qw(../lib);
+        chdir '../lib/parent';
+        @INC = '..';
     }
 }
 




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