[liburi-find-perl] 25/31: Merge branch 'upstream'

gregor herrmann gregoa at debian.org
Sat Jul 25 17:41:51 UTC 2015


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

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

commit ef24ef696633b3f7cc903298fa613ea2718e3606
Merge: 27acaa0 61f9e40
Author: Dominic Hargreaves <dom at earth.li>
Date:   Sun Apr 8 11:41:31 2012 +0100

    Merge branch 'upstream'

 Build.PL                   |  2 +-
 Changes                    | 78 +++++++++++++++++++++++++++++++++++++++++++++-
 MANIFEST                   |  2 ++
 MANIFEST.SKIP              | 34 +++++++++++++++++---
 META.json                  | 60 +++++++++++++++++++++++++++++++++++
 META.yml                   | 11 ++++---
 SIGNATURE                  | 32 ++++++++++---------
 bin/urifind                |  2 +-
 lib/URI/Find.pm            | 29 ++++++++++++-----
 lib/URI/Find/Schemeless.pm |  2 +-
 t/Find.t                   |  1 +
 t/filter.t                 | 10 +++++-
 t/strict_leak.t            | 35 +++++++++++++++++++++
 13 files changed, 261 insertions(+), 37 deletions(-)

diff --cc Changes
index 494050e,58598cd..aa52e88
--- a/Changes
+++ b/Changes
@@@ -1,21 -1,35 +1,97 @@@
- Revision history for Perl module URI::Find.
+ 20111103  Thu Nov  3 12:14:21 PDT 2011
+     Bug Fixes
+     * URI::URL::strict will no longer leak out of find() if the callback
+       or filter fails. [rt.cpan.org 71153] (Carl Chambers)
+ 
+ 
+ 20111020  Thu Oct 20 17:31:56 PDT 2011
+     Bug Fixes
+     * Things which look like URIs, but aren't, are now properly escaped like
+       other text.  [rt.cpan.org 71658]
+ 
+     New Features
+     * Balanced parens in URIs are no longer stripped.  Example:
+       "http://example.com/foo(bar)"  (Merten Falk)
+ 
+ 
+ 20100505  Wed May  5 18:48:44 PDT 2010
+     Test Fixes
+     * Fixed t/urifind/find.t on Windows
+ 
+ 
+ 20100504.1039  Tue May  4 10:39:23 PDT 2010
+     Doc Fixes
+     * Forgot to mention that we ship with urifind now.
+ 
+ 
+ 20100504  Tue May  4 10:29:52 PDT 2010
+     New Features
+     * Added a urifind program. (Darren Chamberlain)
+     Bug Fixes
+     * The final semi-colon was being strippped form URLs found in HTML
+       that ended with HTML entities. (Michael Peters)
++      Example: http://google.com/search?q=<html>
++    * URLs with leading dots, pluses and minuses are now found.
++      [rt.cpan.org 57032]
++      Example: stuff...http://example.com
++
++
++20100211  Thu Feb 11 04:02:26 PST 2010
++    Bug Fixes
++    * Finding URIs inside brackets was pretty badly broken by
++      the last release.  (Michael Peters)
++
++
++20090319  Thu Mar 19 12:17:53 PDT 2009
++    Bug Fixes
++    * Schemeless now ignores the case of the TLD.
++
++    New Features
++    * Updated the list of accepted domains for finding schemeless URIs
++      from the latest ICANN list.
++
++    Docs
++    * Add LICENSE section
++    * Remove wildly out of date CAVEATS
++    * Added an example of how to get a list of all URIs.
++    * Updated INSTALL section to reflect new dependencies and Module::Build
++      installation process
++    * Regenerated the README file
++
++
++20090316  Mon Mar 16 16:18:10 PDT 2009
++    New Features
++    * Added optional replacement function to find(). Now you 
++      can not only replace URLs found, but also the rest of the text around
++      them in one fell swoop. (Mike Schilli) [rt.cpan.org 20486]
++    * Whitespace inside <...> is now ignored as per the suggestion of
++      RFC 3986 appendix C. [rt.cpan.org 20483]
++
++    Other
++    * Michael G Schwern is now primary maintainer again.  Thanks for all your
++      work, Roderick!
++    * Repository moved to http://github.com/schwern/uri-find
++    * Now requires Test::More
++    * Verisoning scheme changed to ISO date integers
++    * Minimum Perl version is now 5.6.0.
++
 +
 +20100505  Wed May  5 18:48:44 PDT 2010
 +    Test Fixes
 +    * Fixed t/urifind/find.t on Windows
 +
 +
 +20100504.1039  Tue May  4 10:39:23 PDT 2010
 +    Doc Fixes
 +    * Forgot to mention that we ship with urifind now.
 +
 +
 +20100504  Tue May  4 10:29:52 PDT 2010
 +    New Features
 +    * Added a urifind program. (Darren Chamberlain)
 +    Bug Fixes
 +    * The final semi-colon was being strippped form URLs found in HTML
 +      that ended with HTML entities. (Michael Peters)
        Example: http://google.com/search?q=<html>
      * URLs with leading dots, pluses and minuses are now found.
        [rt.cpan.org 57032]
diff --cc MANIFEST.SKIP
index bf2fbf0,1464c30..e1dc26e
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@@ -29,9 -39,25 +39,25 @@@
  \#$
  \b\.#
  \.bak$
+ \.tmp$
+ \.#
+ \.rej$
+ 
+ # Avoid OS-specific files/dirs
+ # Mac OSX metadata
+ \B\.DS_Store
+ # Mac OSX SMB mount metadata files
+ \B\._
  
- # Avoid Devel::Cover files.
+ # Avoid Devel::Cover and Devel::CoverX::Covered files.
  \bcover_db\b
- #!end included /usr/local/perl/5.10.0/lib/5.10.0/ExtUtils/MANIFEST.SKIP
+ \bcovered\b
+ 
+ # Avoid MYMETA files
+ ^MYMETA\.
+ #!end included /Users/schwern/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/ExtUtils/MANIFEST.SKIP
+ 
  
- ^MYMETA.yml$
+ # Avoid patches and diff files lying around
+ \.patch$
 -\.diff$
++\.diff$

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



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