r5745 - in /packages/libfile-touch-perl/trunk: Changes MANIFEST META.yml Touch.pm debian/changelog debian/control

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Wed Jul 11 15:25:36 UTC 2007


Author: eloy
Date: Wed Jul 11 15:25:35 2007
New Revision: 5745

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=5745
Log:
new upstream version

Added:
    packages/libfile-touch-perl/trunk/META.yml
      - copied unchanged from r5744, packages/libfile-touch-perl/branches/upstream/current/META.yml
Modified:
    packages/libfile-touch-perl/trunk/Changes
    packages/libfile-touch-perl/trunk/MANIFEST
    packages/libfile-touch-perl/trunk/Touch.pm
    packages/libfile-touch-perl/trunk/debian/changelog
    packages/libfile-touch-perl/trunk/debian/control

Modified: packages/libfile-touch-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/Changes?rev=5745&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/Changes (original)
+++ packages/libfile-touch-perl/trunk/Changes Wed Jul 11 15:25:35 2007
@@ -1,5 +1,8 @@
 Revision history for Perl extension File::Touch.
 
+0.02  Thu Jun  1 08:48:56 2007
+	- fixed bareword filehandle (thanks Tolga Ceylan)
+	- I changed my name
 0.01  Thu Jul  5 09:35:24 2001
 	- original version; created by Nigel Wetters
 

Modified: packages/libfile-touch-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/MANIFEST?rev=5745&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/MANIFEST (original)
+++ packages/libfile-touch-perl/trunk/MANIFEST Wed Jul 11 15:25:35 2007
@@ -3,3 +3,4 @@
 MANIFEST
 test.pl
 Touch.pm
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: packages/libfile-touch-perl/trunk/Touch.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/Touch.pm?rev=5745&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/Touch.pm (original)
+++ packages/libfile-touch-perl/trunk/Touch.pm Wed Jul 11 15:25:35 2007
@@ -3,8 +3,8 @@
 require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(touch);
-$VERSION = "0.01";
-
+$VERSION = "0.02";
+use warnings;
 use strict;
 
 use Carp;
@@ -89,8 +89,8 @@
 	    $mtime = $sb->mtime;
 	} else {
 	    unless ($self->{_no_create}){
-		sysopen(FH,$file,O_WRONLY|O_CREAT|O_NONBLOCK|O_NOCTTY) or croak("Can't create $file : $!");
-		close FH or croak("Can't close $file : $!");
+		sysopen my $fh,$file,O_WRONLY|O_CREAT|O_NONBLOCK|O_NOCTTY or croak("Can't create $file : $!");
+		close $fh or croak("Can't close $file : $!");
 		$atime = $time;
 		$mtime = $time;
 	    }
@@ -195,11 +195,11 @@
 
 =head1 AUTHOR
 
-Nigel Wetters (nigel at wetters.net)
+Nigel Wetters Gourlay (nwetters at cpan.org)
 
 =head1 COPYRIGHT
 
-Copyright (c) 2001, Nigel Wetters. All Rights Reserved.
+Copyright (c) 2001,2007 Nigel Wetters Gourlay. All Rights Reserved.
 This module is free software. It may be used, redistributed
 and/or modified under the same terms as Perl itself.
 

Modified: packages/libfile-touch-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/changelog?rev=5745&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/changelog (original)
+++ packages/libfile-touch-perl/trunk/debian/changelog Wed Jul 11 15:25:35 2007
@@ -1,3 +1,10 @@
+libfile-touch-perl (0.02-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * debian/control: added me to Uploaders
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 11 Jul 2007 17:24:04 +0200
+
 libfile-touch-perl (0.01-6) unstable; urgency=low
 
   * Move debhelper to Build-Depends, as it's required by the 'clean' target.

Modified: packages/libfile-touch-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/control?rev=5745&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/control (original)
+++ packages/libfile-touch-perl/trunk/debian/control Wed Jul 11 15:25:35 2007
@@ -1,6 +1,6 @@
 Source: libfile-touch-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Allard Hoeve <allard at byte.nl>, Gunnar Wolf <gwolf at debian.org>, Joachim Breitner <nomeata at debian.org>, Niko Tyni <ntyni at iki.fi>, Carlo Segre <segre at debian.org>
+Uploaders: Allard Hoeve <allard at byte.nl>, Gunnar Wolf <gwolf at debian.org>, Joachim Breitner <nomeata at debian.org>, Niko Tyni <ntyni at iki.fi>, Carlo Segre <segre at debian.org>, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
 Section: perl
 Priority: optional
 Standards-Version: 3.7.2




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