vapier 14/11/06 15:49:54 Modified: wget-1.16.ebuild ChangeLog Log: Fix by Mike Gilbert to require python-3 in order to run tests #528348#1 by Nikoli. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.12 net-misc/wget/wget-1.16.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.16.ebuild?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.16.ebuild?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.16.ebuild?r1=1.11&r2=1.12 Index: wget-1.16.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.16.ebuild,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- wget-1.16.ebuild 3 Nov 2014 05:57:52 -0000 1.11 +++ wget-1.16.ebuild 6 Nov 2014 15:49:54 -0000 1.12 @@ -1,10 +1,11 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.16.ebuild,v 1.11 2014/11/03 05:57:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.16.ebuild,v 1.12 2014/11/06 15:49:54 vapier Exp $ EAPI="4" +PYTHON_COMPAT=( python{3_3,3_4} ) -inherit flag-o-matic toolchain-funcs autotools +inherit flag-o-matic python-any-r1 toolchain-funcs autotools DESCRIPTION="Network utility to retrieve files from the WWW" HOMEPAGE="http://www.gnu.org/software/wget/" @@ -13,7 +14,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug gnutls idn ipv6 nls ntlm pcre +ssl static uuid zlib" +IUSE="debug gnutls idn ipv6 nls ntlm pcre +ssl static test uuid zlib" LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] ) pcre? ( dev-libs/libpcre[static-libs(+)] ) @@ -28,12 +29,17 @@ app-arch/xz-utils virtual/pkgconfig static? ( ${LIB_DEPEND} ) + test? ( ${PYTHON_DEPS} ) nls? ( sys-devel/gettext )" REQUIRED_USE="ntlm? ( !gnutls ssl ) gnutls? ( ssl )" DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc ) +pkg_setup() { + use test && python-any-r1_pkg_setup +} + src_prepare() { epatch "${FILESDIR}"/${PN}-1.16-pkg-config.patch epatch "${FILESDIR}"/${PN}-1.16-openssl-header.patch @@ -70,6 +76,10 @@ $(use_with zlib) } +src_test() { + emake check +} + src_install() { default 1.195 net-misc/wget/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.195&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.195&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?r1=1.194&r2=1.195 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v retrieving revision 1.194 retrieving revision 1.195 diff -u -r1.194 -r1.195 --- ChangeLog 3 Nov 2014 05:57:52 -0000 1.194 +++ ChangeLog 6 Nov 2014 15:49:54 -0000 1.195 @@ -1,6 +1,10 @@ # ChangeLog for net-misc/wget # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.194 2014/11/03 05:57:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.195 2014/11/06 15:49:54 vapier Exp $ + + 06 Nov 2014; Mike Frysinger <[email protected]> wget-1.16.ebuild: + Fix by Mike Gilbert to require python-3 in order to run tests #528348#1 by + Nikoli. 02 Nov 2014; Mike Frysinger <[email protected]> wget-1.16.ebuild: Mark arm64/m68k/s390/sh stable.
