r8455 - in /trunk/libtest-without-module-perl: Changes META.yml debian/changelog lib/Test/Without/Module.pm t/99-todo.t

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Oct 22 09:22:41 UTC 2007


Author: dmn
Date: Mon Oct 22 09:22:41 2007
New Revision: 8455

URL: http://svn.debian.org/wsvn/?sc=1&rev=8455
Log:
New upstream release -- 0.15

Modified:
    trunk/libtest-without-module-perl/Changes
    trunk/libtest-without-module-perl/META.yml
    trunk/libtest-without-module-perl/debian/changelog
    trunk/libtest-without-module-perl/lib/Test/Without/Module.pm
    trunk/libtest-without-module-perl/t/99-todo.t

Modified: trunk/libtest-without-module-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libtest-without-module-perl/Changes?rev=8455&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/Changes (original)
+++ trunk/libtest-without-module-perl/Changes Mon Oct 22 09:22:41 2007
@@ -2,6 +2,11 @@
 
 Todo:
   - Add way to allow only core modules (suggested by SREZIC)
+
+0.15 20071021
+  - Now really restored compatibility of the tests with Perl 5.005,
+    using lexical filehandles does not work under 5.005...
+  . No functional changes, no upgrade is necessary
 
 0.14 20071020
   - Hopefully restored compatibility of the tests with Perl 5.005 this time, reported by SREZIC

Modified: trunk/libtest-without-module-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libtest-without-module-perl/META.yml?rev=8455&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/META.yml (original)
+++ trunk/libtest-without-module-perl/META.yml Mon Oct 22 09:22:41 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Test-Without-Module
-version:             0.14
+version:             0.15
 abstract:            Test fallback behaviour in absence of modules
 license:             ~
 generated_by:        ExtUtils::MakeMaker version 6.36_01

Modified: trunk/libtest-without-module-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtest-without-module-perl/debian/changelog?rev=8455&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/debian/changelog (original)
+++ trunk/libtest-without-module-perl/debian/changelog Mon Oct 22 09:22:41 2007
@@ -1,5 +1,5 @@
-libtest-without-module-perl (0.14-1) unstable; urgency=low
+libtest-without-module-perl (0.15-1) unstable; urgency=low
 
   * Initial Release.
 
- -- David Paleino <d.paleino at gmail.com>  Sun, 21 Oct 2007 11:20:57 +0200
+ -- David Paleino <d.paleino at gmail.com>  Mon, 22 Oct 2007 12:21:20 +0300

Modified: trunk/libtest-without-module-perl/lib/Test/Without/Module.pm
URL: http://svn.debian.org/wsvn/trunk/libtest-without-module-perl/lib/Test/Without/Module.pm?rev=8455&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/lib/Test/Without/Module.pm (original)
+++ trunk/libtest-without-module-perl/lib/Test/Without/Module.pm Mon Oct 22 09:22:41 2007
@@ -3,7 +3,7 @@
 use Carp qw( croak );
 
 use vars qw( $VERSION );
-$VERSION = 0.14;
+$VERSION = 0.15;
 
 use vars qw( %forbidden );
 

Modified: trunk/libtest-without-module-perl/t/99-todo.t
URL: http://svn.debian.org/wsvn/trunk/libtest-without-module-perl/t/99-todo.t?rev=8455&op=diff
==============================================================================
--- trunk/libtest-without-module-perl/t/99-todo.t (original)
+++ trunk/libtest-without-module-perl/t/99-todo.t Mon Oct 22 09:22:41 2007
@@ -24,10 +24,11 @@
 sub source_file_ok {
     my $file = shift;
 
-    my $fh;
-    open( $fh, "<$file" ) or die "Can't open $file: $!";
-    my @lines = <$fh>;
-    close $fh;
+    local *FILE;
+    open FILE, $file
+        or die "Can't open $file: $!";
+    my @lines = <FILE>;
+    close FILE;
 
     my $n = 0;
     for ( @lines ) {




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