r17986 - in /trunk/libparent-perl: Changes META.yml Makefile.PL debian/changelog 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:49:21 UTC 2008
Author: gregoa-guest
Date: Wed Mar 26 17:49:21 2008
New Revision: 17986
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17986
Log:
New upstream release.
Modified:
trunk/libparent-perl/Changes
trunk/libparent-perl/META.yml
trunk/libparent-perl/Makefile.PL
trunk/libparent-perl/debian/changelog
trunk/libparent-perl/lib/parent.pm
trunk/libparent-perl/t/compile-time-file.t
trunk/libparent-perl/t/parent-classfromclassfile.t
trunk/libparent-perl/t/parent-classfromfile.t
trunk/libparent-perl/t/parent-pmc.t
trunk/libparent-perl/t/parent-returns-false.t
trunk/libparent-perl/t/parent.t
Modified: trunk/libparent-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/Changes?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/Changes (original)
+++ trunk/libparent-perl/Changes Wed Mar 26 17:49:21 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: trunk/libparent-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/META.yml?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/META.yml (original)
+++ trunk/libparent-perl/META.yml Wed Mar 26 17:49:21 2008
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: parent
-version: 0.220
+version: 0.221
abstract: ~
license: ~
author: ~
Modified: trunk/libparent-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/Makefile.PL?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/Makefile.PL (original)
+++ trunk/libparent-perl/Makefile.PL Wed Mar 26 17:49:21 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: trunk/libparent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/debian/changelog?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/debian/changelog (original)
+++ trunk/libparent-perl/debian/changelog Wed Mar 26 17:49:21 2008
@@ -1,3 +1,9 @@
+libparent-perl (0.221-1) UNRELEASED; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at> Wed, 26 Mar 2008 18:48:10 +0100
+
libparent-perl (0.220-1) unstable; urgency=low
* New upstream release
Modified: trunk/libparent-perl/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/lib/parent.pm?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/lib/parent.pm (original)
+++ trunk/libparent-perl/lib/parent.pm Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/compile-time-file.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/compile-time-file.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/compile-time-file.t (original)
+++ trunk/libparent-perl/t/compile-time-file.t Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/parent-classfromclassfile.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/parent-classfromclassfile.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/parent-classfromclassfile.t (original)
+++ trunk/libparent-perl/t/parent-classfromclassfile.t Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/parent-classfromfile.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/parent-classfromfile.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/parent-classfromfile.t (original)
+++ trunk/libparent-perl/t/parent-classfromfile.t Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/parent-pmc.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/parent-pmc.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/parent-pmc.t (original)
+++ trunk/libparent-perl/t/parent-pmc.t Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/parent-returns-false.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/parent-returns-false.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/parent-returns-false.t (original)
+++ trunk/libparent-perl/t/parent-returns-false.t Wed Mar 26 17:49:21 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: trunk/libparent-perl/t/parent.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/t/parent.t?rev=17986&op=diff
==============================================================================
--- trunk/libparent-perl/t/parent.t (original)
+++ trunk/libparent-perl/t/parent.t Wed Mar 26 17:49:21 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