r41701 - in /branches/upstream/libmodule-extract-use-perl/current: Changes META.yml Makefile.PL lib/Use.pm t/get_modules.t

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Wed Aug 12 00:22:09 UTC 2009


Author: ryan52-guest
Date: Wed Aug 12 00:22:03 2009
New Revision: 41701

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41701
Log:
[svn-upgrade] Integrating new upstream version, libmodule-extract-use-perl (0.17)

Modified:
    branches/upstream/libmodule-extract-use-perl/current/Changes
    branches/upstream/libmodule-extract-use-perl/current/META.yml
    branches/upstream/libmodule-extract-use-perl/current/Makefile.PL
    branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm
    branches/upstream/libmodule-extract-use-perl/current/t/get_modules.t

Modified: branches/upstream/libmodule-extract-use-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/Changes?rev=41701&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/Changes (original)
+++ branches/upstream/libmodule-extract-use-perl/current/Changes Wed Aug 12 00:22:03 2009
@@ -1,4 +1,8 @@
 # Changes for Module::Extract::Use
+
+0.17 - Sat Aug  8 04:18:30 2009
+	* Removed failing test checking for empty files. PPI now 
+	handles those. :(
 
 0.16 - Wed Jun 10 00:21:12 2009
 	* Small distro cleanups and new META_MERGE hotness. No need

Modified: branches/upstream/libmodule-extract-use-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/META.yml?rev=41701&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/META.yml (original)
+++ branches/upstream/libmodule-extract-use-perl/current/META.yml Wed Aug 12 00:22:03 2009
@@ -1,14 +1,12 @@
 --- #YAML:1.0
 name:               Module-Extract-Use
-version:            0.16
+version:            0.17
 abstract:           Extract the modules that a modules uses
 author:
     - brian d foy <bdfoy at cpan.org>
 license:            perl
 distribution_type:  module
 configure_requires:
-    ExtUtils::MakeMaker:  0
-build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     perl:          5.006
@@ -21,11 +19,12 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
+generated_by:       ExtUtils::MakeMaker version 6.48
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
 keywords:
-    - testing
-    - STDOUT
-    - STDERR
+    - ppi
+    - parsing
+    - static-analysis
+    - modules

Modified: branches/upstream/libmodule-extract-use-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/Makefile.PL?rev=41701&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/Makefile.PL (original)
+++ branches/upstream/libmodule-extract-use-perl/current/Makefile.PL Wed Aug 12 00:22:03 2009
@@ -30,7 +30,7 @@
 			resources => {
 		  		repository => 'git://github.com/briandfoy/module--extract--use.git',
 				},
-			keywords => ['testing','STDOUT','STDERR'],
+			keywords => ['ppi', 'parsing', 'static-analysis', 'modules'],
 	  		},
 	 	) 
 	 	: 

Modified: branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm?rev=41701&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm (original)
+++ branches/upstream/libmodule-extract-use-perl/current/lib/Use.pm Wed Aug 12 00:22:03 2009
@@ -7,7 +7,7 @@
 use subs qw();
 use vars qw($VERSION);
 
-$VERSION = '0.16';
+$VERSION = '0.17';
 
 =head1 NAME
 

Modified: branches/upstream/libmodule-extract-use-perl/current/t/get_modules.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-extract-use-perl/current/t/get_modules.t?rev=41701&op=diff
==============================================================================
--- branches/upstream/libmodule-extract-use-perl/current/t/get_modules.t (original)
+++ branches/upstream/libmodule-extract-use-perl/current/t/get_modules.t Wed Aug 12 00:22:03 2009
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 use strict;
 
-use Test::More 'no_plan';
+use Test::More tests => 13;
 use File::Basename;
 use File::Spec::Functions qw(catfile);
 
@@ -21,20 +21,6 @@
 
 $extor->get_modules( $not_there );
 like( $extor->error, qr/does not exist/, "Missing file give right error" );
-}
-
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-# Try it with a file PPI can't parse, should fail
-{
-open my($fh), ">", "empty";
-close $fh;
-END{ unlink 'empty' }
-
-my $unparseable = 'empty';
-ok( -e $unparseable, "Unparseable file is there" );
-
-$extor->get_modules( $unparseable );
-like( $extor->error, qr/not parse/, "Unparseable file gives right error" );
 }
 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
@@ -64,5 +50,4 @@
 is( scalar @modules, 3 );
 
 is_deeply( \@modules, [qw(constant strict warnings)] );
-
-}
+}




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