[liburi-find-delimited-perl] 01/03: Imported Upstream version 0.03

dom at earth.li dom at earth.li
Sun Aug 16 18:55:22 UTC 2015


This is an automated email from the git hooks/post-receive script.

dom pushed a commit to branch master
in repository liburi-find-delimited-perl.

commit 9e4802bde96a2164914042f99acd0b676fc08e39
Author: Dominic Hargreaves <dom at earth.li>
Date:   Sun Aug 16 20:52:07 2015 +0200

    Imported Upstream version 0.03
---
 Changes                   |  4 ++++
 MANIFEST                  |  1 +
 META.yml                  | 23 +++++++++++++++++++++++
 Makefile.PL               |  1 +
 README                    |  4 ++--
 lib/URI/Find/Delimited.pm |  5 +++--
 6 files changed, 34 insertions(+), 4 deletions(-)

diff --git a/Changes b/Changes
index c74c0af..48f507d 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.03    21 September 2014
+        Add URI::URL as a prereq and use it since URI::Find removed it
+        as one. (CPAN RT #99003)
+
 0.02    24 March 2003
         Bugfix (CPAN RT #2245) - turned on URI::URL::strict to stop it
           assuming that any old thing followed by a colon is a scheme.
diff --git a/MANIFEST b/MANIFEST
index bcf040c..9ed2cd4 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4,3 +4,4 @@ Makefile.PL
 README
 lib/URI/Find/Delimited.pm
 t/delimited.t
+META.yml                                 Module meta-data (added by MakeMaker)
diff --git a/META.yml b/META.yml
new file mode 100644
index 0000000..9642e94
--- /dev/null
+++ b/META.yml
@@ -0,0 +1,23 @@
+--- #YAML:1.0
+name:               URI-Find-Delimited
+version:            0.03
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Test::More:  0
+    URI::Find:   0
+    URI::URL:    0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.57_05
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
diff --git a/Makefile.PL b/Makefile.PL
index a9f686f..76c28f0 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,6 +3,7 @@ use ExtUtils::MakeMaker;
 WriteMakefile( NAME         => "URI::Find::Delimited",
                VERSION_FROM => "lib/URI/Find/Delimited.pm",
                PREREQ_PM    => { 'Test::More'       => 0,
+                                 'URI::URL'         => 0,
                                  'URI::Find'        => 0
                                }
              );
diff --git a/README b/README
index 13e1f6c..6fec34e 100644
--- a/README
+++ b/README
@@ -79,8 +79,8 @@ METHODS
             character will not be matched, ie your callback will not be
             executed for them and they'll be treated just as normal text.
 
-            This is kinda lame but it's in here because I need to be able to
-            ignore things like
+            This is a bit of a hack but it's in here because I need to be
+            able to ignore things like
 
               <img src="http://foo.com/bar.gif">
 
diff --git a/lib/URI/Find/Delimited.pm b/lib/URI/Find/Delimited.pm
index 07853b2..6fbabe3 100644
--- a/lib/URI/Find/Delimited.pm
+++ b/lib/URI/Find/Delimited.pm
@@ -3,12 +3,13 @@ package URI::Find::Delimited;
 use strict;
 
 use vars qw( $VERSION );
-$VERSION = '0.02';
+$VERSION = '0.03';
 
 use base qw(URI::Find);
 
 # For 5.005_03 compatibility (copied from URI::Find::Schemeless)
 use URI::Find ();
+use URI::URL;
 
 =head1 NAME
 
@@ -107,7 +108,7 @@ then any URIs immediately preceded with a double-quote character will
 not be matched, ie your callback will not be executed for them and
 they'll be treated just as normal text.
 
-This is kinda lame but it's in here because I need to be able to
+This is a bit of a hack but it's in here because I need to be able to
 ignore things like
 
   <img src="http://foo.com/bar.gif">

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/liburi-find-delimited-perl.git



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