r70443 - in /branches/upstream/libtext-glob-perl/current: Changes MANIFEST META.yml Makefile.PL README lib/Text/Glob.pm

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Sat Mar 5 14:11:11 UTC 2011


Author: ansgar
Date: Sat Mar  5 14:10:33 2011
New Revision: 70443

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70443
Log:
[svn-upgrade] new version libtext-glob-perl (0.09)

Removed:
    branches/upstream/libtext-glob-perl/current/README
Modified:
    branches/upstream/libtext-glob-perl/current/Changes
    branches/upstream/libtext-glob-perl/current/MANIFEST
    branches/upstream/libtext-glob-perl/current/META.yml
    branches/upstream/libtext-glob-perl/current/Makefile.PL
    branches/upstream/libtext-glob-perl/current/lib/Text/Glob.pm

Modified: branches/upstream/libtext-glob-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-glob-perl/current/Changes?rev=70443&op=diff
==============================================================================
--- branches/upstream/libtext-glob-perl/current/Changes (original)
+++ branches/upstream/libtext-glob-perl/current/Changes Sat Mar  5 14:10:33 2011
@@ -1,3 +1,6 @@
+0.09    Tuesday 22nd February, 2010
+        Compiled documentation fixes (collected by Tom Hukins from fixes on rt.cpan)
+
 0.08	Wednesday 2nd May, 2007
 	Expose glob_to_regex_string (Joshua Hoblitt)
 

Modified: branches/upstream/libtext-glob-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-glob-perl/current/MANIFEST?rev=70443&op=diff
==============================================================================
--- branches/upstream/libtext-glob-perl/current/MANIFEST (original)
+++ branches/upstream/libtext-glob-perl/current/MANIFEST Sat Mar  5 14:10:33 2011
@@ -1,5 +1,4 @@
 Changes
-README
 MANIFEST
 lib/Text/Glob.pm
 Makefile.PL

Modified: branches/upstream/libtext-glob-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-glob-perl/current/META.yml?rev=70443&op=diff
==============================================================================
--- branches/upstream/libtext-glob-perl/current/META.yml (original)
+++ branches/upstream/libtext-glob-perl/current/META.yml Sat Mar  5 14:10:33 2011
@@ -1,14 +1,21 @@
 ---
-name: Text-Glob
-version: 0.08
+abstract: 'match globbing patterns against text'
 author:
-  - Richard Clamp <richardc at unixbeard.net>
-abstract: match globbing patterns against text
-license: perl
+  - 'Richard Clamp <richardc at unixbeard.net>'
 build_requires:
   Test::More: 0
+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: Text-Glob
 provides:
   Text::Glob:
     file: lib/Text/Glob.pm
-    version: 0.08
-generated_by: Module::Build version 0.25
+    version: 0.09
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.09

Modified: branches/upstream/libtext-glob-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-glob-perl/current/Makefile.PL?rev=70443&op=diff
==============================================================================
--- branches/upstream/libtext-glob-perl/current/Makefile.PL (original)
+++ branches/upstream/libtext-glob-perl/current/Makefile.PL Sat Mar  5 14:10:33 2011
@@ -1,13 +1,14 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.3603
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
+          'PL_FILES' => {},
+          'INSTALLDIRS' => 'site',
           'NAME' => 'Text::Glob',
+          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/Text/Glob.pm',
           'PREREQ_PM' => {
-                           'Test::More' => '0'
-                         },
-          'INSTALLDIRS' => 'site',
-          'PL_FILES' => {}
+                           'Test::More' => 0
+                         }
         )
 ;

Modified: branches/upstream/libtext-glob-perl/current/lib/Text/Glob.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtext-glob-perl/current/lib/Text/Glob.pm?rev=70443&op=diff
==============================================================================
--- branches/upstream/libtext-glob-perl/current/lib/Text/Glob.pm (original)
+++ branches/upstream/libtext-glob-perl/current/lib/Text/Glob.pm Sat Mar  5 14:10:33 2011
@@ -3,7 +3,7 @@
 use Exporter;
 use vars qw/$VERSION @ISA @EXPORT_OK
             $strict_leading_dot $strict_wildcard_slash/;
-$VERSION = '0.08';
+$VERSION = '0.09';
 @ISA = 'Exporter';
 @EXPORT_OK = qw( glob_to_regex glob_to_regex_string match_glob );
 
@@ -121,12 +121,12 @@
 
 =item glob_to_regex( $glob )
 
-Returns a compiled regex which is the equiavlent of the globbing
+Returns a compiled regex which is the equivalent of the globbing
 pattern.
 
 =item glob_to_regex_string( $glob )
 
-Returns a regex string which is the equiavlent of the globbing
+Returns a regex string which is the equivalent of the globbing
 pattern.
 
 =back
@@ -143,7 +143,7 @@
 
 =item C<?> - match exactly one character
 
-C<a?> matches C<aa>, but not C<a>, or C<aa>
+C<a?> matches C<aa>, but not C<a>, or C<aaa>
 
 =item Character sets/ranges
 




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