r60934 - in /trunk/libproc-invokeeditor-perl: Changes META.yml debian/changelog lib/Proc/InvokeEditor.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jul 31 05:42:58 UTC 2010


Author: ansgar-guest
Date: Sat Jul 31 05:42:51 2010
New Revision: 60934

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60934
Log:
IGNORE-VERSION: 1.04-1
1.03: Adds names of dependencies and location of upstream repository to README.
1.04: Adds "use warnings";

Modified:
    trunk/libproc-invokeeditor-perl/Changes
    trunk/libproc-invokeeditor-perl/META.yml
    trunk/libproc-invokeeditor-perl/debian/changelog
    trunk/libproc-invokeeditor-perl/lib/Proc/InvokeEditor.pm

Modified: trunk/libproc-invokeeditor-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-invokeeditor-perl/Changes?rev=60934&op=diff
==============================================================================
--- trunk/libproc-invokeeditor-perl/Changes (original)
+++ trunk/libproc-invokeeditor-perl/Changes Sat Jul 31 05:42:51 2010
@@ -15,3 +15,7 @@
 1.02 16 Dec 2007
   - Patches from Tim Booth tbooth at ceh.ac.uk to provide optional filename
 	suffix option.
+
+1.04 30 Jul 2010
+  - Add a "use warnings" to keep CPANTS happy.
+

Modified: trunk/libproc-invokeeditor-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-invokeeditor-perl/META.yml?rev=60934&op=diff
==============================================================================
--- trunk/libproc-invokeeditor-perl/META.yml (original)
+++ trunk/libproc-invokeeditor-perl/META.yml Sat Jul 31 05:42:51 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Proc-InvokeEditor
-version:            1.03
+version:            1.04
 abstract:           Interface to external editor from perl
 author:
     - Michael Stevens <mstevens at etla.org>

Modified: trunk/libproc-invokeeditor-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-invokeeditor-perl/debian/changelog?rev=60934&op=diff
==============================================================================
--- trunk/libproc-invokeeditor-perl/debian/changelog (original)
+++ trunk/libproc-invokeeditor-perl/debian/changelog Sat Jul 31 05:42:51 2010
@@ -1,7 +1,8 @@
-libproc-invokeeditor-perl (1.03-1) UNRELEASED; urgency=low
+libproc-invokeeditor-perl (1.04-1) UNRELEASED; urgency=low
 
-  IGNORE-VERSION: 1.03-1
-  Adds names of dependencies and location of upstream repository to README.
+  IGNORE-VERSION: 1.04-1
+  1.03: Adds names of dependencies and location of upstream repository to README.
+  1.04: Adds "use warnings";
 
   [ gregor herrmann ]
   * debian/rules: delete /usr/lib/perl5 only if it exists.
@@ -15,7 +16,7 @@
     perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
     permitted by Debian Policy 3.8.3).
 
- -- Ansgar Burchardt <ansgar at 43-1.org>  Fri, 02 Jul 2010 22:50:34 +0900
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Sat, 31 Jul 2010 14:41:45 +0900
 
 libproc-invokeeditor-perl (1.02-1) unstable; urgency=low
 

Modified: trunk/libproc-invokeeditor-perl/lib/Proc/InvokeEditor.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-invokeeditor-perl/lib/Proc/InvokeEditor.pm?rev=60934&op=diff
==============================================================================
--- trunk/libproc-invokeeditor-perl/lib/Proc/InvokeEditor.pm (original)
+++ trunk/libproc-invokeeditor-perl/lib/Proc/InvokeEditor.pm Sat Jul 31 05:42:51 2010
@@ -1,6 +1,8 @@
 package Proc::InvokeEditor;
 
 use strict;
+use warnings;
+
 use File::Temp qw(tempfile);
 use File::Spec;
 use Carp::Assert;
@@ -30,7 +32,7 @@
 @EXPORT = qw(
 	
 );
-$VERSION = '1.03';
+$VERSION = '1.04';
 
 @DEFAULT_EDITORS = ( $ENV{'VISUAL'}, $ENV{'EDITOR'}, '/usr/bin/vi',
                      '/bin/vi', '/bin/ed'




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