Upstream changes: 20140709 Wed Jul 9 16:28:37 PDT 2014 New Features * The "git" scheme is supported. (Schwern) * svn, ssh and svn+ssh schemes are supported. [rt.cpan.org 57490] (Schwern) * Added a --schemeless option to urifind. (Schwern) Bug Fixes * http:// is no longer matched [rt.cpan.org 63283] (Schwern) Backwards Incompatibilities * Previously, URIs stringified to their canonical version. Now they stringify as written. This results in less loss of information. For example. "Blah HTTP:://FOO.COM" previously would stringify as "http://foo.com/" and now it will stringify as "HTTP://FOO.COM". To restore the old behavior you can call $uri->canonical. (Schwern) Distribution Changes * No longer using URI::URL. (Schwern) * Now requires URI 1.60 for Unicode support. (Schwern) 20140702 Wed Jul 2 13:41:47 PDT 2014 New Features * IDNA (aka Unicode) domains are now supported. [github 3] (GwenDragon) * The list of TLDs for schemeless matching has been updated. [github 3] (GwenDragon) Bug Fixes * Handle balanced [], {} and quotes in addition to (). [rt.cpan.org 85053] (Schwern) * Don't mangle IPv6 URLs. [rt.cpan.org 85053] (Schwern) * Schemeless is more accurate about two letter TLDs. [github 3] (GwenDragon) Distribution Changes * Switched the issue tracker to Github. (Schwern)
25 lines
799 B
Makefile
25 lines
799 B
Makefile
# $NetBSD: Makefile,v 1.13 2014/08/14 13:45:44 wen Exp $
|
|
|
|
DISTNAME= URI-Find-20140709
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=URI/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/URI-Find/
|
|
COMMENT= Perl5 module to find URIs in arbitrary text
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
# requires URI::URL 5.00 - oldest available URI on CPAN contains 5.03
|
|
DEPENDS+= p5-URI>=1.60:../../www/p5-URI
|
|
BUILD_DEPENDS+= {perl>=5.10.1,p5-Test-Simple>=0.82}:../../devel/p5-Test-Simple
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
PERL5_PACKLIST= auto/URI/Find/.packlist
|
|
PERL5_MODULE_TYPE= Module::Build
|
|
|
|
#BUILD_DEPENDS+= {perl>=5.13.11,p5-Module-Build>=0.30000}:../../devel/p5-Module-Build
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|