Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wget: wget-1.16.2.ebuild ChangeLog
Date: Sat, 28 Feb 2015 18:04:55
Message-Id: 20150228180447.3712B12C01@oystercatcher.gentoo.org
1 vapier 15/02/28 18:04:47
2
3 Modified: ChangeLog
4 Added: wget-1.16.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.201 net-misc/wget/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.201&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.201&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?r1=1.200&r2=1.201
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
20 retrieving revision 1.200
21 retrieving revision 1.201
22 diff -u -r1.200 -r1.201
23 --- ChangeLog 8 Dec 2014 17:55:39 -0000 1.200
24 +++ ChangeLog 28 Feb 2015 18:04:47 -0000 1.201
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/wget
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.200 2014/12/08 17:55:39 polynomial-c Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.201 2015/02/28 18:04:47 vapier Exp $
31 +
32 +*wget-1.16.2 (28 Feb 2015)
33 +
34 + 28 Feb 2015; Mike Frysinger <vapier@g.o> +wget-1.16.2.ebuild:
35 + Version bump.
36
37 08 Dec 2014; Lars Wendler <polynomial-c@g.o> wget-1.16.1.ebuild:
38 Disable progress bar assertion as recommended by upstream.
39
40
41
42 1.1 net-misc/wget/wget-1.16.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.16.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.16.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wget-1.16.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.16.2.ebuild,v 1.1 2015/02/28 18:04:47 vapier Exp $
52
53 EAPI="4"
54 PYTHON_COMPAT=( python{3_3,3_4} )
55
56 inherit flag-o-matic python-any-r1 toolchain-funcs autotools
57
58 DESCRIPTION="Network utility to retrieve files from the WWW"
59 HOMEPAGE="http://www.gnu.org/software/wget/"
60 SRC_URI="mirror://gnu/wget/${P}.tar.xz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 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"
65 IUSE="debug gnutls idn ipv6 nls ntlm pcre +ssl static test uuid zlib"
66
67 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
68 pcre? ( dev-libs/libpcre[static-libs(+)] )
69 ssl? (
70 gnutls? ( net-libs/gnutls[static-libs(+)] )
71 !gnutls? ( dev-libs/openssl:0[static-libs(+)] )
72 )
73 uuid? ( sys-apps/util-linux[static-libs(+)] )
74 zlib? ( sys-libs/zlib[static-libs(+)] )"
75 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
76 DEPEND="${RDEPEND}
77 app-arch/xz-utils
78 virtual/pkgconfig
79 static? ( ${LIB_DEPEND} )
80 test? (
81 ${PYTHON_DEPS}
82 dev-lang/perl
83 dev-perl/HTTP-Daemon
84 dev-perl/HTTP-Message
85 dev-perl/IO-Socket-SSL
86 )
87 nls? ( sys-devel/gettext )"
88
89 REQUIRED_USE="ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
90
91 DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
92
93 pkg_setup() {
94 use test && python-any-r1_pkg_setup
95 }
96
97 src_configure() {
98 # fix compilation on Solaris, we need filio.h for FIONBIO as used in
99 # the included gnutls -- force ioctl.h to include this header
100 [[ ${CHOST} == *-solaris* ]] && append-cppflags -DBSD_COMP=1
101
102 if use static ; then
103 append-ldflags -static
104 tc-export PKG_CONFIG
105 PKG_CONFIG+=" --static"
106 fi
107 econf \
108 --disable-assert \
109 --disable-rpath \
110 $(use_with ssl ssl $(usex gnutls gnutls openssl)) \
111 $(use_enable ssl opie) \
112 $(use_enable ssl digest) \
113 $(use_enable idn iri) \
114 $(use_enable ipv6) \
115 $(use_enable nls) \
116 $(use_enable ntlm) \
117 $(use_enable pcre) \
118 $(use_enable debug) \
119 $(use_with uuid libuuid) \
120 $(use_with zlib)
121 }
122
123 src_test() {
124 emake check
125 }
126
127 src_install() {
128 default
129
130 sed -i \
131 -e "s:/usr/local/etc:${EPREFIX}/etc:g" \
132 "${ED}"/etc/wgetrc \
133 "${ED}"/usr/share/man/man1/wget.1 \
134 "${ED}"/usr/share/info/wget.info
135 }