r70138 - in /branches/upstream/libmodule-metadata-perl/current: Changes META.yml lib/Module/Metadata.pm t/metadata.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Mar 1 03:04:50 UTC 2011


Author: jawnsy-guest
Date: Tue Mar  1 03:04:05 2011
New Revision: 70138

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70138
Log:
[svn-upgrade] new version libmodule-metadata-perl (1.000004)

Modified:
    branches/upstream/libmodule-metadata-perl/current/Changes
    branches/upstream/libmodule-metadata-perl/current/META.yml
    branches/upstream/libmodule-metadata-perl/current/lib/Module/Metadata.pm
    branches/upstream/libmodule-metadata-perl/current/t/metadata.t

Modified: branches/upstream/libmodule-metadata-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-metadata-perl/current/Changes?rev=70138&op=diff
==============================================================================
--- branches/upstream/libmodule-metadata-perl/current/Changes (original)
+++ branches/upstream/libmodule-metadata-perl/current/Changes Tue Mar  1 03:04:05 2011
@@ -1,3 +1,6 @@
+1.0.4 2011-02-03 07:55:00
+  - Fix broken metadata.t when @INC has relative paths (JJORE)
+
 1.0.3 2011-01-06 21:35:00
   - Pod cleanup (DAGOLDEN)
 

Modified: branches/upstream/libmodule-metadata-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-metadata-perl/current/META.yml?rev=70138&op=diff
==============================================================================
--- branches/upstream/libmodule-metadata-perl/current/META.yml (original)
+++ branches/upstream/libmodule-metadata-perl/current/META.yml Tue Mar  1 03:04:05 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Module-Metadata
-version:            1.000003
+version:            1.000004
 abstract:           Gather package and POD information from perl module files
 author:
     - Ken Williams <kwilliams at cpan.org>, Randy W. Sims <RandyS at ThePierianSpring.org>

Modified: branches/upstream/libmodule-metadata-perl/current/lib/Module/Metadata.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-metadata-perl/current/lib/Module/Metadata.pm?rev=70138&op=diff
==============================================================================
--- branches/upstream/libmodule-metadata-perl/current/lib/Module/Metadata.pm (original)
+++ branches/upstream/libmodule-metadata-perl/current/lib/Module/Metadata.pm Tue Mar  1 03:04:05 2011
@@ -11,7 +11,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '1.000003';
+$VERSION = '1.000004';
 $VERSION = eval $VERSION;
 
 use File::Spec;

Modified: branches/upstream/libmodule-metadata-perl/current/t/metadata.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-metadata-perl/current/t/metadata.t?rev=70138&op=diff
==============================================================================
--- branches/upstream/libmodule-metadata-perl/current/t/metadata.t (original)
+++ branches/upstream/libmodule-metadata-perl/current/t/metadata.t Tue Mar  1 03:04:05 2011
@@ -177,20 +177,20 @@
 
 require_ok('Module::Metadata');
 
-my $tmp = MBTest->tmpdir;
-
-use DistGen;
-my $dist = DistGen->new( dir => $tmp );
-$dist->regen;
-
-$dist->chdir_in;
-
-#########################
-
 # class method C<find_module_by_name>
 my $module = Module::Metadata->find_module_by_name(
                'Module::Metadata' );
 ok( -e $module, 'find_module_by_name() succeeds' );
+
+#########################
+
+my $tmp = MBTest->tmpdir;
+
+use DistGen;
+my $dist = DistGen->new( dir => $tmp );
+$dist->regen;
+
+$dist->chdir_in;
 
 
 # fail on invalid module name




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