r40733 - in /branches/upstream/libppix-editortools-perl/current: ./ lib/PPIx/ lib/PPIx/EditorTools/ t/

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sat Jul 25 16:26:31 UTC 2009


Author: ryan52-guest
Date: Sat Jul 25 16:26:23 2009
New Revision: 40733

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

Modified:
    branches/upstream/libppix-editortools-perl/current/Changes
    branches/upstream/libppix-editortools-perl/current/META.yml
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindUnmatchedBrace.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindVariableDeclaration.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackage.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackageFromPath.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenameVariable.pm
    branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/ReturnObject.pm
    branches/upstream/libppix-editortools-perl/current/t/01-findunmatchedbrace.t
    branches/upstream/libppix-editortools-perl/current/t/02-findvariabledeclaration.t
    branches/upstream/libppix-editortools-perl/current/t/03-introducetemporaryvariable.t
    branches/upstream/libppix-editortools-perl/current/t/04-renamepackage.t
    branches/upstream/libppix-editortools-perl/current/t/05-renamepackagefrompath.t
    branches/upstream/libppix-editortools-perl/current/t/06-renamevariable.t

Modified: branches/upstream/libppix-editortools-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/Changes?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/Changes (original)
+++ branches/upstream/libppix-editortools-perl/current/Changes Sat Jul 25 16:26:23 2009
@@ -1,7 +1,10 @@
 Changes for Perl extension PPIx-EditorTools
 
+0.07 2009.07.21
+	- skip tests if PPI version includes an underscore _ (SZABGAB)
+
 0.06 2009.07.11
-       - fix MANIFEST.SKIP
+	- fix MANIFEST.SKIP
 
 0.05 2009.07.07
 	- Switch Changes to be more machine parsable (ADAMK)

Modified: branches/upstream/libppix-editortools-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/META.yml?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/META.yml (original)
+++ branches/upstream/libppix-editortools-perl/current/META.yml Sat Jul 25 16:26:23 2009
@@ -26,4 +26,4 @@
   perl: 5.8.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.06
+version: 0.07

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools.pm Sat Jul 25 16:26:23 2009
@@ -14,7 +14,7 @@
 use PPI 1.203;
 use PPIx::EditorTools::ReturnObject;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindUnmatchedBrace.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindUnmatchedBrace.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindUnmatchedBrace.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindUnmatchedBrace.pm Sat Jul 25 16:26:23 2009
@@ -10,7 +10,7 @@
 
 use PPI;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindVariableDeclaration.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindVariableDeclaration.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindVariableDeclaration.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/FindVariableDeclaration.pm Sat Jul 25 16:26:23 2009
@@ -8,7 +8,7 @@
 use base 'PPIx::EditorTools';
 use Class::XSAccessor accessors => { 'location' => 'location' };
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm Sat Jul 25 16:26:23 2009
@@ -13,7 +13,7 @@
     'location'       => 'location',
 };
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackage.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackage.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackage.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackage.pm Sat Jul 25 16:26:23 2009
@@ -11,7 +11,7 @@
 use PPI;
 use Carp;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackageFromPath.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackageFromPath.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackageFromPath.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenamePackageFromPath.pm Sat Jul 25 16:26:23 2009
@@ -16,7 +16,7 @@
 use File::Spec;
 use File::Basename;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenameVariable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenameVariable.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenameVariable.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/RenameVariable.pm Sat Jul 25 16:26:23 2009
@@ -8,7 +8,7 @@
 use base 'PPIx::EditorTools'; 
 use Class::XSAccessor;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =head1 NAME
 

Modified: branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/ReturnObject.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/ReturnObject.pm?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/ReturnObject.pm (original)
+++ branches/upstream/libppix-editortools-perl/current/lib/PPIx/EditorTools/ReturnObject.pm Sat Jul 25 16:26:23 2009
@@ -5,7 +5,7 @@
 use warnings;
 use Carp;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
 
 =pod
 

Modified: branches/upstream/libppix-editortools-perl/current/t/01-findunmatchedbrace.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/01-findunmatchedbrace.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/01-findunmatchedbrace.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/01-findunmatchedbrace.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,18 @@
 	$^W = 1;
 }
 
-use Test::More tests => 6;
+use Test::More;
 use Test::Differences;
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 6;
 
 use PPIx::EditorTools::FindUnmatchedBrace;
 

Modified: branches/upstream/libppix-editortools-perl/current/t/02-findvariabledeclaration.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/02-findvariabledeclaration.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/02-findvariabledeclaration.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/02-findvariabledeclaration.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,18 @@
 	$^W = 1;
 }
 
-use Test::More tests => 3;
+use Test::More;
 use Test::Differences;
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 3;
 
 use PPIx::EditorTools::FindVariableDeclaration;
 

Modified: branches/upstream/libppix-editortools-perl/current/t/03-introducetemporaryvariable.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/03-introducetemporaryvariable.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/03-introducetemporaryvariable.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/03-introducetemporaryvariable.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,18 @@
 	$^W = 1;
 }
 
-use Test::More tests => 6;
+use Test::More;
 use Test::Differences;
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 6;
 
 use PPIx::EditorTools::IntroduceTemporaryVariable;
 

Modified: branches/upstream/libppix-editortools-perl/current/t/04-renamepackage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/04-renamepackage.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/04-renamepackage.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/04-renamepackage.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,18 @@
 	$^W = 1;
 }
 
-use Test::More tests => 5;
+use Test::More;
 use Test::Differences;
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 5;
 
 use PPIx::EditorTools::RenamePackage;
 

Modified: branches/upstream/libppix-editortools-perl/current/t/05-renamepackagefrompath.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/05-renamepackagefrompath.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/05-renamepackagefrompath.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/05-renamepackagefrompath.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,18 @@
 	$^W = 1;
 }
 
-use Test::More tests => 4;
+use Test::More;
 use Test::Differences;
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 4;
 
 use PPIx::EditorTools::RenamePackageFromPath;
 

Modified: branches/upstream/libppix-editortools-perl/current/t/06-renamevariable.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libppix-editortools-perl/current/t/06-renamevariable.t?rev=40733&op=diff
==============================================================================
--- branches/upstream/libppix-editortools-perl/current/t/06-renamevariable.t (original)
+++ branches/upstream/libppix-editortools-perl/current/t/06-renamevariable.t Sat Jul 25 16:26:23 2009
@@ -5,8 +5,19 @@
 	$^W = 1;
 }
 
-use Test::More tests => 5;
+use Test::More;
 use Test::Differences;
+
+use PPI;
+
+BEGIN {
+	if ($PPI::VERSION =~ /_/) {
+		plan skip_all => "Need released version of PPI. You have $PPI::VERSION";
+		exit 0;
+	}
+}
+
+plan tests => 5;
 
 use PPIx::EditorTools::RenameVariable;
 




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