r29917 - in /trunk/libtest-without-module-perl: Changes META.yml Makefile.PL debian/changelog debian/copyright lib/Test/Without/Module.pm

rmayorga at users.alioth.debian.org rmayorga at users.alioth.debian.org
Wed Jan 21 20:47:40 UTC 2009


Author: rmayorga
Date: Wed Jan 21 20:47:37 2009
New Revision: 29917

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29917
Log:
* New upstream release
* debian/control: change my email address
* debian/copyright: 
  + update upstream copyright years
  + separate debian/* copyright per member using debian/changalog

Modified:
    trunk/libtest-without-module-perl/Changes
    trunk/libtest-without-module-perl/META.yml
    trunk/libtest-without-module-perl/Makefile.PL
    trunk/libtest-without-module-perl/debian/changelog
    trunk/libtest-without-module-perl/debian/copyright
    trunk/libtest-without-module-perl/lib/Test/Without/Module.pm

Modified: trunk/libtest-without-module-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/Changes?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/Changes (original)
+++ trunk/libtest-without-module-perl/Changes Wed Jan 21 20:47:37 2009
@@ -2,6 +2,13 @@
 
 Todo:
   - Add way to allow only core modules (suggested by SREZIC)
+
+0.17 xxxxxxxx
+  - Made license explicit in the metadata (for those versions
+    of EU:MM that support it)
+  ! Changed module comparison from using a regular expression
+    to string equality. That means that ugly actions at a distance
+    by matching substrings shouldn't happen.
 
 0.16 20081020
   - Add a test that exhibits the "redefined" warnings upon disallowing

Modified: trunk/libtest-without-module-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/META.yml?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/META.yml (original)
+++ trunk/libtest-without-module-perl/META.yml Wed Jan 21 20:47:37 2009
@@ -1,8 +1,8 @@
 --- #YAML:1.0
 name:                Test-Without-Module
-version:             0.16
+version:             0.17
 abstract:            Test fallback behaviour in absence of modules
-license:             ~
+license:             perl
 author:              
     - Max Maischein <corion at cpan.org>
 generated_by:        ExtUtils::MakeMaker version 6.42

Modified: trunk/libtest-without-module-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/Makefile.PL?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/Makefile.PL (original)
+++ trunk/libtest-without-module-perl/Makefile.PL Wed Jan 21 20:47:37 2009
@@ -11,5 +11,10 @@
     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
       (ABSTRACT_FROM => 'lib/Test/Without/Module.pm', # retrieve abstract from module
        AUTHOR     => 'Max Maischein <corion at cpan.org>') : ()),
+
+    # Make the version metadata explicit
+    ($ExtUtils::MakeMaker::VERSION >= 6.3002 ?
+      ('LICENSE' => 'perl', ) : ()),
+
 );
 

Modified: trunk/libtest-without-module-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/debian/changelog?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/debian/changelog (original)
+++ trunk/libtest-without-module-perl/debian/changelog Wed Jan 21 20:47:37 2009
@@ -1,13 +1,17 @@
-libtest-without-module-perl (0.16-2) UNRELEASED; urgency=low
+libtest-without-module-perl (0.17-1) unstable; urgency=low
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
 
   [ Rene Mayorga ]
-  * debian/control: update my email address.
+  * New upstream release
+  * debian/control: change my email address
+  * debian/copyright: 
+    + update upstream copyright years
+    + separate debian/* copyright per member using debian/changalog
 
- -- Rene Mayorga <rmayorga at debian.org>  Tue, 20 Jan 2009 01:29:07 -0600
+ -- Rene Mayorga <rmayorga at debian.org>  Wed, 21 Jan 2009 14:27:27 -0600
 
 libtest-without-module-perl (0.16-1) unstable; urgency=low
   

Modified: trunk/libtest-without-module-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/debian/copyright?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/debian/copyright (original)
+++ trunk/libtest-without-module-perl/debian/copyright Wed Jan 21 20:47:37 2009
@@ -5,13 +5,12 @@
 Upstream-Name: Test-Without-Module
 
 Files: *
-Copyright: 2003-2007 Max Maischein, <corion at cpan.org>
+Copyright: 2003-2009 Max Maischein, <corion at cpan.org>
 License-Alias: Perl
 License: Artistic | GPL-1+
 
 Files: debian/*
-Copyright: 2007-2008, various members of the Debian Perl Group, cf.
- debian/changelog
+Copyright: 2007 David Paleino <d.paleino at gmail.com>
 License: Artistic | GPL-1+
 
 License: Artistic

Modified: trunk/libtest-without-module-perl/lib/Test/Without/Module.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-without-module-perl/lib/Test/Without/Module.pm?rev=29917&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/lib/Test/Without/Module.pm (original)
+++ trunk/libtest-without-module-perl/lib/Test/Without/Module.pm Wed Jan 21 20:47:37 2009
@@ -3,7 +3,7 @@
 use Carp qw( croak );
 
 use vars qw( $VERSION );
-$VERSION = 0.16;
+$VERSION = '0.17';
 
 use vars qw( %forbidden );
 
@@ -79,7 +79,7 @@
   my ($module) = @_;
   for my $key (keys %INC) {
     my $fn = file2module($key);
-    if ($fn =~ /\Q$module\E$/) {
+    if ($fn eq $module) {
         delete $INC{$key};
     };
   };
@@ -130,7 +130,7 @@
 =head1 ONE LINER
 
 A neat trick for using this module from the command line
-was mentioned to me by NUFFIN:
+was mentioned to me by NUFFIN and by Jerrad Pierce:
 
   perl -MTest::Without::Module=Some::Module -w -Iblib/lib t/SomeModule.t
 
@@ -141,7 +141,9 @@
 
 =over 4
 
-=item * There is no lexicalic scoping
+=item *
+
+There is no lexical scoping
 
 =back
 
@@ -163,7 +165,7 @@
 
 =head1 AUTHOR
 
-Copyright (c) 2003-2007 Max Maischein, E<lt>corion at cpan.orgE<gt>
+Copyright (c) 2003-2009 Max Maischein, E<lt>corion at cpan.orgE<gt>
 
 =head1 LICENSE
 




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