diff options
author | wiz <wiz> | 2006-02-26 09:09:05 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-02-26 09:09:05 +0000 |
commit | 6a9a52b80ddddbf8de7ddbbc83cdec1f371e168f (patch) | |
tree | 6626702dbc095d9ebc823e1c0269cc7ab2c3a7e5 /www/p5-WWW-Mechanize | |
parent | 1a9476b21a855d5784069eeb36fb37e5dbdf89ff (diff) | |
download | pkgsrc-6a9a52b80ddddbf8de7ddbbc83cdec1f371e168f.tar.gz |
Update to 1.18:
1.18 Thu Feb 2 00:11:26 CST 2006
[TESTS]
* Makefile.PL now takes four new parms:
* --live/nolive turns on/off the live tests
* --local/nolocal turns on/off the local tests
* --mech-dump/nomech-dump installs/doesn't the mech-dump program
* --all turns on all tests and installs mech-dump
* Fixed some failures in tests. Non-existent URLs now have a
"." postpended to them, so if someone's got a search domain
with a wildcard (i.e. ignore.us) it'll ignore that. Also,
Google's second link is now a https:// link, which some Mechs
can't handle. Added a 'url_regex' which now makes it look at
the second non-https link. Thanks to Pete Krawczyk.
Diffstat (limited to 'www/p5-WWW-Mechanize')
-rw-r--r-- | www/p5-WWW-Mechanize/Makefile | 9 | ||||
-rw-r--r-- | www/p5-WWW-Mechanize/distinfo | 9 | ||||
-rw-r--r-- | www/p5-WWW-Mechanize/patches/patch-aa | 16 |
3 files changed, 11 insertions, 23 deletions
diff --git a/www/p5-WWW-Mechanize/Makefile b/www/p5-WWW-Mechanize/Makefile index f510bdbe895..fb22ece7522 100644 --- a/www/p5-WWW-Mechanize/Makefile +++ b/www/p5-WWW-Mechanize/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2005/11/23 22:18:22 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2006/02/26 09:09:05 wiz Exp $ # -DISTNAME= WWW-Mechanize-1.16 +DISTNAME= WWW-Mechanize-1.18 PKGNAME= p5-${DISTNAME} CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=WWW/} @@ -13,6 +13,11 @@ COMMENT= Automates web page form & link interaction DEPENDS+= p5-libwww>=5.76:../../www/p5-libwww DEPENDS+= p5-HTML-Parser>=3.35:../../www/p5-HTML-Parser DEPENDS+= p5-URI>=1.30:../../www/p5-URI +DEPENDS+= p5-Test-LongString>=0:../../devel/p5-Test-LongString + +# use defaults from Makefile.PL, to avoid user interaction +# if not set explicitly +MAKE_PARAMS+= --mech-dump --nolive PKG_INSTALLATION_TYPES= overwrite pkgviews diff --git a/www/p5-WWW-Mechanize/distinfo b/www/p5-WWW-Mechanize/distinfo index b7883ddccf1..63a401f449a 100644 --- a/www/p5-WWW-Mechanize/distinfo +++ b/www/p5-WWW-Mechanize/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.6 2005/11/23 22:18:22 wiz Exp $ +$NetBSD: distinfo,v 1.7 2006/02/26 09:09:05 wiz Exp $ -SHA1 (WWW-Mechanize-1.16.tar.gz) = 1493f0d42b49de61d318c57d1d52bab85db49d17 -RMD160 (WWW-Mechanize-1.16.tar.gz) = eeb30a3df6ee48deea5260e7f55059cbd89a38f9 -Size (WWW-Mechanize-1.16.tar.gz) = 105422 bytes -SHA1 (patch-aa) = 1c72f07c8796b7f8593e7222dfd00f5c93a1c863 +SHA1 (WWW-Mechanize-1.18.tar.gz) = f03855c83ce5f1b1ec157530ce8408ac2bb4f835 +RMD160 (WWW-Mechanize-1.18.tar.gz) = 705532222aebc0e50796ac9b48f0252e979a718b +Size (WWW-Mechanize-1.18.tar.gz) = 107253 bytes diff --git a/www/p5-WWW-Mechanize/patches/patch-aa b/www/p5-WWW-Mechanize/patches/patch-aa deleted file mode 100644 index 3052e67fa15..00000000000 --- a/www/p5-WWW-Mechanize/patches/patch-aa +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/04/16 21:37:30 minskim Exp $ - ---- Makefile.PL.orig 2004-03-28 06:51:10.000000000 +0200 -+++ Makefile.PL -@@ -6,6 +6,11 @@ use strict; - - use constant FLAG_SKIPMECHDUMP => File::Spec->catfile( "t", "SKIP-MECH-DUMP" ); - -+sub prompt ($;$) { -+ my($mess,$def)=@_; -+ return $def; -+} -+ - # Much logic stolen fromm libwww-perl's Makefile.PL - my $skiplive = grep /--nolive/i, @ARGV; - my $skiplocal = grep /--nolocal/i, @ARGV; |