diff options
author | Torsten Veller <tove@gentoo.org> | 2008-12-17 09:21:21 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-12-17 09:21:21 +0000 |
commit | 88efd42fc25de71031294c3c2121b400e4e27333 (patch) | |
tree | dfd39957d39be66c57dbd0272c605883f14491c0 /dev-perl/WWW-Mechanize | |
parent | Fix compilation with gcc 4.1, clean warning on gcc version in 0.10.3 (works w... (diff) | |
download | gentoo-2-88efd42fc25de71031294c3c2121b400e4e27333.tar.gz gentoo-2-88efd42fc25de71031294c3c2121b400e4e27333.tar.bz2 gentoo-2-88efd42fc25de71031294c3c2121b400e4e27333.zip |
Adjust DEPEND, remove test and fix #251212.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-tuxonice i686)
Diffstat (limited to 'dev-perl/WWW-Mechanize')
-rw-r--r-- | dev-perl/WWW-Mechanize/ChangeLog | 5 | ||||
-rw-r--r-- | dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild | 17 |
2 files changed, 17 insertions, 5 deletions
diff --git a/dev-perl/WWW-Mechanize/ChangeLog b/dev-perl/WWW-Mechanize/ChangeLog index e4e2ee96207d..8a02fd97cbff 100644 --- a/dev-perl/WWW-Mechanize/ChangeLog +++ b/dev-perl/WWW-Mechanize/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-perl/WWW-Mechanize # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/WWW-Mechanize/ChangeLog,v 1.54 2008/12/08 02:43:05 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/WWW-Mechanize/ChangeLog,v 1.55 2008/12/17 09:21:21 tove Exp $ + + 17 Dec 2008; Torsten Veller <tove@gentoo.org> WWW-Mechanize-1.52.ebuild: + Adjust DEPEND, remove test and fix #251212. *WWW-Mechanize-1.52 (08 Dec 2008) diff --git a/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild b/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild index a4bfb57dded7..94504f3bcc02 100644 --- a/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild +++ b/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild,v 1.1 2008/12/08 02:43:05 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/WWW-Mechanize/WWW-Mechanize-1.52.ebuild,v 1.2 2008/12/17 09:21:21 tove Exp $ MODULE_AUTHOR=PETDANCE inherit perl-module @@ -20,13 +20,22 @@ myconf="--local --nolive" RDEPEND="dev-lang/perl dev-perl/IO-Socket-SSL - >=dev-perl/libwww-perl-5.815 + >=dev-perl/libwww-perl-5.819 dev-perl/HTTP-Response-Encoding - >=dev-perl/URI-1.25 + >=dev-perl/URI-1.36 >=dev-perl/HTML-Parser-3.34 dev-perl/Test-LongString" DEPEND="${RDEPEND} test? ( dev-perl/Test-Pod dev-perl/Test-Taint - dev-perl/Test-Warn + >=dev-perl/Test-Warn-0.11 dev-perl/Test-Memory-Cycle )" +# dev-perl/HTTP-Server-Simple )" + +# Remove test until the bug is fixed: +# http://rt.cpan.org/Public/Bug/Display.html?id=41673 +src_unpack() { + perl-module_src_unpack + mv "${S}"/t/cookies.t{,.disable} || die + sed -i "/cookies.t/d" "${S}/MANIFEST" || die +} |