diff options
-rw-r--r-- | dev-perl/libwww-perl/ChangeLog | 17 | ||||
-rw-r--r-- | dev-perl/libwww-perl/files/digest-libwww-perl-5.79 | 1 | ||||
-rw-r--r-- | dev-perl/libwww-perl/libwww-perl-5.79.ebuild | 29 |
3 files changed, 44 insertions, 3 deletions
diff --git a/dev-perl/libwww-perl/ChangeLog b/dev-perl/libwww-perl/ChangeLog index 43b3f0d87af5..f4c363ddf23a 100644 --- a/dev-perl/libwww-perl/ChangeLog +++ b/dev-perl/libwww-perl/ChangeLog @@ -1,7 +1,18 @@ # ChangeLog for dev-perl/libwww-perl # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/ChangeLog,v 1.28 2004/04/16 11:40:06 mcummings Exp $ - +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/ChangeLog,v 1.29 2004/05/02 13:23:51 mcummings Exp $ + +*libwww-perl-5.79 (02 May 2004) + + 02 May 2004; Michael Cummings <mcummings@gentoo.org> + libwww-perl-5.69-r2.ebuild, libwww-perl-5.79.ebuild: + New version from cpan. After all of the debates on how to handle the tests, I + have opted for the exclusion from this ebuild. Although the fall back scenario + does work in practice, it introduces a phenomenal delay in the building of the + package. On a 2.8ghz laptop running dhcp (and therefore no local name + resolution) the wait time for the pieces that we expect to fail took over an + hour. That is unacceptable. Please contact me if you have questions on this + decision. 16 Apr 2004; Michael Cummings <mcummings@gentoo.org> libwww-perl-5.69-r2.ebuild, libwww-perl-5.76.ebuild: Syntax fix for newdepend, bug 29064 @@ -14,7 +25,7 @@ Because test failures for libwww-perl are 99% due to external factors, I've added a block to allow the merge to continue but to display a warning to the user so that they are aware that the tests didn't pass, and to list some - factors involved. + factors involved. Should address bugs 36341 44259 27 Feb 2004; Michael Cummings <mcummings@gentoo.org> libwww-perl-5.76.ebuild: diff --git a/dev-perl/libwww-perl/files/digest-libwww-perl-5.79 b/dev-perl/libwww-perl/files/digest-libwww-perl-5.79 new file mode 100644 index 000000000000..f9a37872ce93 --- /dev/null +++ b/dev-perl/libwww-perl/files/digest-libwww-perl-5.79 @@ -0,0 +1 @@ +MD5 6682a0a532bf0b2cf76259c94d0d8dc4 libwww-perl-5.79.tar.gz 224889 diff --git a/dev-perl/libwww-perl/libwww-perl-5.79.ebuild b/dev-perl/libwww-perl/libwww-perl-5.79.ebuild new file mode 100644 index 000000000000..598ab49b6201 --- /dev/null +++ b/dev-perl/libwww-perl/libwww-perl-5.79.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/libwww-perl/libwww-perl-5.79.ebuild,v 1.1 2004/05/02 13:23:51 mcummings Exp $ + +inherit perl-module + +DESCRIPTION="A collection of Perl Modules for the WWW" +SRC_URI="http://cpan.org/modules/by-module/WWW/${P}.tar.gz" +HOMEPAGE="http://cpan.org/modules/by-module/WWW/${P}.readme" +IUSE="ssl" +SLOT="0" +LICENSE="Artistic | GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha ~hppa ia64" + +DEPEND=">=dev-perl/libnet-1.0703 + >=dev-perl/HTML-Parser-3.34 + >=dev-perl/URI-1.0.9 + >=dev-perl/Digest-MD5-2.12 + >=dev-perl/MIME-Base64-2.12 + ssl? ( dev-perl/Crypt-SSLeay )" + +src_compile() { + yes "" | perl Makefile.PL ${myconf} \ + PREFIX=${D}/usr INSTALLDIRS=vendor +} + +pkg_postinst() { + perl-module_pkg_postinst +} |