r61892 - in /branches/upstream/libfile-countlines-perl/current: Changes META.yml Makefile.PL README lib/File/CountLines.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Aug 22 18:14:55 UTC 2010


Author: gregoa
Date: Sun Aug 22 18:14:44 2010
New Revision: 61892

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=61892
Log:
[svn-upgrade] new version libfile-countlines-perl (0.0.3)

Modified:
    branches/upstream/libfile-countlines-perl/current/Changes
    branches/upstream/libfile-countlines-perl/current/META.yml
    branches/upstream/libfile-countlines-perl/current/Makefile.PL
    branches/upstream/libfile-countlines-perl/current/README
    branches/upstream/libfile-countlines-perl/current/lib/File/CountLines.pm

Modified: branches/upstream/libfile-countlines-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-countlines-perl/current/Changes?rev=61892&op=diff
==============================================================================
--- branches/upstream/libfile-countlines-perl/current/Changes (original)
+++ branches/upstream/libfile-countlines-perl/current/Changes Sun Aug 22 18:14:44 2010
@@ -1,4 +1,7 @@
 Revision History for Perl module File::CountLines
+
+0.0.3 Thu Aug 19 14:24:04 CEST 2010
+- documentation fixes
 
 0.0.2 Wed Nov 12 20:01:34 CET 2008
 - require a sufficiently new version of `charnames'

Modified: branches/upstream/libfile-countlines-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-countlines-perl/current/META.yml?rev=61892&op=diff
==============================================================================
--- branches/upstream/libfile-countlines-perl/current/META.yml (original)
+++ branches/upstream/libfile-countlines-perl/current/META.yml Sun Aug 22 18:14:44 2010
@@ -1,23 +1,25 @@
 ---
+abstract: 'Efficiently count the number of line breaks in a file'
+author:
+  - 'Moritz Lenz'
+configure_requires:
+  Module::Build: 0.36
+generated_by: 'Module::Build version 0.3603'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
 name: File-CountLines
-version: 0.0.2
-author:
-  - Moritz Lenz
-abstract: Efficiently count the number of line breaks in a file
-license: perl
-resources:
-  license: http://dev.perl.org/licenses/
+provides:
+  File::CountLines:
+    file: lib/File/CountLines.pm
+    version: v0.0.3
 requires:
   Carp: 0
   Exporter: 5.57
   charnames: 1.01
   strict: 0
   warnings: 0
-provides:
-  File::CountLines:
-    file: lib/File/CountLines.pm
-    version: 0.0.2
-generated_by: Module::Build version 0.280801
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
+resources:
+  license: http://dev.perl.org/licenses/
+version: v0.0.3

Modified: branches/upstream/libfile-countlines-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-countlines-perl/current/Makefile.PL?rev=61892&op=diff
==============================================================================
--- branches/upstream/libfile-countlines-perl/current/Makefile.PL (original)
+++ branches/upstream/libfile-countlines-perl/current/Makefile.PL Sun Aug 22 18:14:44 2010
@@ -1,18 +1,18 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
+# Note: this file was auto-generated by Module::Build::Compat version 0.3603
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
           'NAME' => 'File::CountLines',
-          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/File/CountLines.pm',
           'PREREQ_PM' => {
-                           'warnings' => 0,
+                           'Carp' => 0,
+                           'Exporter' => '5.57',
+                           'charnames' => '1.01',
                            'strict' => 0,
-                           'charnames' => '1.01',
-                           'Exporter' => '5.57',
-                           'Carp' => 0
-                         }
+                           'warnings' => 0
+                         },
+          'INSTALLDIRS' => 'site',
+          'EXE_FILES' => [],
+          'PL_FILES' => {}
         )
 ;

Modified: branches/upstream/libfile-countlines-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-countlines-perl/current/README?rev=61892&op=diff
==============================================================================
--- branches/upstream/libfile-countlines-perl/current/README (original)
+++ branches/upstream/libfile-countlines-perl/current/README Sun Aug 22 18:14:44 2010
@@ -80,7 +80,7 @@
 Extending
     You can add your own EOL styles by adding them to the
     %File::CountLines::StyleMap hash, with the name of the style as hash key
-    and the seperator as the value.
+    and the separator as the value.
 
 AUTHOR
     Moritz Lenz <http://perlgeek.de>, <mailto:moritz at faui2k3.org>
@@ -93,7 +93,8 @@
     Public Domain.
 
 DEVELOPMENT
-    You can obtain the latest development version via subversion:
+    You can obtain the latest development version from
+    <http://github.com/moritz/File-CountLines>:
 
-        svn co https://faui2k3.org/svn/moritz/cpan/File-CountLines/
+        git clone git://github.com/moritz/File-CountLines.git
 

Modified: branches/upstream/libfile-countlines-perl/current/lib/File/CountLines.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libfile-countlines-perl/current/lib/File/CountLines.pm?rev=61892&op=diff
==============================================================================
--- branches/upstream/libfile-countlines-perl/current/lib/File/CountLines.pm (original)
+++ branches/upstream/libfile-countlines-perl/current/lib/File/CountLines.pm Sun Aug 22 18:14:44 2010
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.0.2';
+our $VERSION = '0.0.3';
 our @EXPORT_OK = qw(count_lines);
 
 use Exporter 5.057;
@@ -185,7 +185,7 @@
 
 You can add your own EOL styles by adding them to the
 C<%File::CountLines::StyleMap> hash, with the name of the style as hash key
-and the seperator as the value.
+and the separator as the value.
 
 =head1 AUTHOR
 
@@ -201,9 +201,9 @@
 
 =head1 DEVELOPMENT
 
-You can obtain the latest development version via subversion:
-
-    svn co https://faui2k3.org/svn/moritz/cpan/File-CountLines/
+You can obtain the latest development version from L<http://github.com/moritz/File-CountLines>:
+
+    git clone git://github.com/moritz/File-CountLines.git
 
 =cut
 




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