public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/
Date: Fri, 27 Oct 2017 16:57:36 +0000 (UTC)	[thread overview]
Message-ID: <1509123431.242ea0fa3181b9ead4c03367cc124f6427f6d2e2.whissi@gentoo> (raw)

commit:     242ea0fa3181b9ead4c03367cc124f6427f6d2e2
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 27 16:56:36 2017 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Oct 27 16:57:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242ea0fa

net-misc/wget: Bump to v1.19.2

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-misc/wget/Manifest           |   1 +
 net-misc/wget/wget-1.19.2.ebuild | 107 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 108 insertions(+)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
index fb79385186c..b0bee83e879 100644
--- a/net-misc/wget/Manifest
+++ b/net-misc/wget/Manifest
@@ -1 +1,2 @@
 DIST wget-1.19.1.tar.xz 2111756 SHA256 0c950b9671881222a4d385b013c9604e98a8025d1988529dfca0e93617744cd2 SHA512 00864d225439bcb7c5af01d7ef19efa615427812d3320ab3f4c8f62c38191e837b1392397843f935d7dc5860a4d0ce89ee31f2730c4a729402f1f2bf3e5f64e5 WHIRLPOOL 2a4bd80f1e7134637227609f532ee3385472a6895ff22efeface42d082072a09abaa5dd2d8653bfdab015de801d31426b01d73ab5dd1a6864b84c29dc8e72462
+DIST wget-1.19.2.tar.gz 4349267 SHA256 4f4a673b6d466efa50fbfba796bd84a46ae24e370fa562ede5b21ab53c11a920 SHA512 a0f8afcc0767a8fd1acd64b1b1b27d177bc938e70cc3709c1b3faa6c1426ec926642cd8e49d292cec0268ee507683539b5152072110106de5a728a03efd8cedd WHIRLPOOL 64398a8fc132a21d81d6fd7c97335739525fb8b31eca4aa4aa7048f251691c05ad1f004c36d6e633abf02d174ffefcb2176213e68fefb76bce505d247940af3a

diff --git a/net-misc/wget/wget-1.19.2.ebuild b/net-misc/wget/wget-1.19.2.ebuild
new file mode 100644
index 00000000000..454b396597e
--- /dev/null
+++ b/net-misc/wget/wget-1.19.2.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit flag-o-matic python-any-r1 toolchain-funcs
+
+DESCRIPTION="Network utility to retrieve files from the WWW"
+HOMEPAGE="https://www.gnu.org/software/wget/"
+SRC_URI="mirror://gnu/wget/${P}.tar.gz"
+
+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 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
+REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
+
+# Force a newer libidn2 to avoid libunistring deps. #612498
+LIB_DEPEND="idn? ( >=net-dns/libidn2-0.14[static-libs(+)] )
+	pcre? ( dev-libs/libpcre[static-libs(+)] )
+	ssl? (
+		gnutls? ( net-libs/gnutls:0=[static-libs(+)] )
+		!gnutls? (
+			!libressl? ( dev-libs/openssl:0=[static-libs(+)] )
+			libressl? ( dev-libs/libressl[static-libs(+)] )
+		)
+	)
+	uuid? ( sys-apps/util-linux[static-libs(+)] )
+	zlib? ( sys-libs/zlib[static-libs(+)] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="${RDEPEND}
+	app-arch/xz-utils
+	virtual/pkgconfig
+	static? ( ${LIB_DEPEND} )
+	test? (
+		${PYTHON_DEPS}
+		dev-lang/perl
+		dev-perl/HTTP-Daemon
+		dev-perl/HTTP-Message
+		dev-perl/IO-Socket-SSL
+	)
+	nls? ( sys-devel/gettext )"
+
+DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
+
+pkg_setup() {
+	use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+	default
+
+	# revert some hack that breaks linking, bug #585924
+	if [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-solaris* ]] || [[ ${CHOST} == *-uclibc* ]]; then
+		sed -i \
+			-e 's/^  LIBICONV=$/:/' \
+			configure || die
+	fi
+}
+
+src_configure() {
+	# fix compilation on Solaris, we need filio.h for FIONBIO as used in
+	# the included gnutls -- force ioctl.h to include this header
+	[[ ${CHOST} == *-solaris* ]] && append-cppflags -DBSD_COMP=1
+
+	if use static ; then
+		append-ldflags -static
+		tc-export PKG_CONFIG
+		PKG_CONFIG+=" --static"
+	fi
+
+	# There is no flag that controls this.  libunistring-prefix only
+	# controls the search path (which is why we turn it off below).
+	# Further, libunistring is only needed w/older libidn2 installs,
+	# and since we force the latest, we can force off libunistring. #612498
+	ac_cv_libunistring=no \
+	econf \
+		--disable-assert \
+		--disable-rpath \
+		--without-included-libunistring \
+		--without-libunistring-prefix \
+		$(use_enable debug) \
+		$(use_enable idn iri) \
+		$(use_enable ipv6) \
+		$(use_enable nls) \
+		$(use_enable ntlm) \
+		$(use_enable pcre) \
+		$(use_enable ssl digest) \
+		$(use_enable ssl opie) \
+		$(use_with idn libidn) \
+		$(use_with ssl ssl $(usex gnutls gnutls openssl)) \
+		$(use_with uuid libuuid) \
+		$(use_with zlib)
+}
+
+src_install() {
+	default
+
+	sed -i \
+		-e "s:/usr/local/etc:${EPREFIX}/etc:g" \
+		"${ED}"/etc/wgetrc \
+		"${ED}"/usr/share/man/man1/wget.1 \
+		"${ED}"/usr/share/info/wget.info \
+		|| die
+}


             reply	other threads:[~2017-10-27 16:57 UTC|newest]

Thread overview: 191+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-27 16:57 Thomas Deutschmann [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-16 19:11 [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/ Arthur Zamarin
2024-06-15 18:58 Mike Gilbert
2024-06-03  1:05 Sam James
2024-05-29  6:26 Jakov Smolić
2024-05-28 22:01 Sam James
2024-04-15  6:12 Sam James
2023-06-18 16:51 Arthur Zamarin
2023-06-18 16:50 Arthur Zamarin
2023-06-18 14:47 Sam James
2023-06-17 21:03 Sam James
2023-06-17 10:42 Arthur Zamarin
2023-06-17  8:42 Arthur Zamarin
2023-06-17  7:43 Arthur Zamarin
2023-05-11  1:54 Sam James
2023-03-13 20:50 Sam James
2023-02-24 18:36 Sam James
2022-11-18  7:23 Arthur Zamarin
2022-09-23  2:09 Sam James
2022-09-19  3:28 Sam James
2022-07-30  3:14 Sam James
2022-07-29 20:40 Sam James
2022-07-16  8:59 Agostino Sarubbo
2022-07-16  8:58 Agostino Sarubbo
2022-07-16  8:57 Agostino Sarubbo
2022-07-16  8:56 Agostino Sarubbo
2022-07-16  7:41 Agostino Sarubbo
2022-07-15 10:59 Arthur Zamarin
2022-07-15  9:41 Arthur Zamarin
2022-06-24 11:28 Arthur Zamarin
2022-06-09  1:20 Sam James
2022-06-09  1:20 Sam James
2022-05-22  6:22 Agostino Sarubbo
2022-05-22  6:20 Agostino Sarubbo
2022-05-22  6:19 Agostino Sarubbo
2022-05-22  6:17 Agostino Sarubbo
2022-05-22  3:21 Sam James
2022-05-22  3:20 Sam James
2022-05-22  3:18 Sam James
2022-04-07  4:07 Sam James
2022-02-27  2:07 Sam James
2022-01-17  3:46 Mike Gilbert
2022-01-16 17:37 Mike Gilbert
2022-01-16 17:37 Mike Gilbert
2022-01-16 17:37 Mike Gilbert
2022-01-16 17:04 Mike Gilbert
2022-01-16 17:04 Mike Gilbert
2022-01-16 17:04 Mike Gilbert
2022-01-16 17:04 Mike Gilbert
2022-01-16 12:20 Fabian Groffen
2022-01-14 11:26 Arthur Zamarin
2022-01-13 20:42 Arthur Zamarin
2022-01-13 20:10 Arthur Zamarin
2022-01-13 18:42 Arthur Zamarin
2022-01-13 10:19 Sam James
2022-01-13 10:10 Sam James
2022-01-13  8:33 Jakov Smolić
2022-01-13  8:33 Jakov Smolić
2022-01-02  7:11 Sam James
2022-01-01 20:08 David Seifert
2021-10-16 12:38 Fabian Groffen
2021-08-22 12:00 Fabian Groffen
2021-08-15 22:45 James Le Cuirot
2021-06-10 18:28 Sam James
2021-06-06 22:10 Sam James
2021-06-02 14:33 Sergei Trofimovich
2021-06-02 10:39 Sam James
2021-06-01 17:58 Sam James
2021-06-01  6:59 Agostino Sarubbo
2021-06-01  6:57 Agostino Sarubbo
2021-06-01  6:32 Agostino Sarubbo
2021-04-30 14:00 Mikle Kolyada
2021-01-09 12:07 Lars Wendler
2021-01-06 15:06 Fabian Groffen
2021-01-02 19:46 Lars Wendler
2020-12-31 20:10 Lars Wendler
2020-12-31 20:10 Lars Wendler
2020-12-27 17:57 Fabian Groffen
2020-07-24 18:58 Fabian Groffen
2020-07-23 11:11 Kent Fredric
2020-05-13 11:28 Agostino Sarubbo
2020-05-13 10:19 Agostino Sarubbo
2020-05-13 10:08 Agostino Sarubbo
2020-05-12 12:41 Mikle Kolyada
2020-05-06 17:34 Sergei Trofimovich
2020-05-06  7:18 Sergei Trofimovich
2020-05-06  7:01 Sergei Trofimovich
2020-05-04  6:16 Mart Raudsepp
2020-05-03 16:25 Sergei Trofimovich
2020-05-02 18:12 Thomas Deutschmann
2019-12-02  9:59 Lars Wendler
2019-12-02  9:13 Lars Wendler
2019-06-12 11:23 Lars Wendler
2019-06-12 11:21 Lars Wendler
2019-05-04 11:30 Mikle Kolyada
2019-04-26 20:54 Mikle Kolyada
2019-04-20 17:57 Mikle Kolyada
2019-04-17 20:01 Sergei Trofimovich
2019-04-14 16:18 Mikle Kolyada
2019-04-10 22:03 Sergei Trofimovich
2019-04-10 17:04 Thomas Deutschmann
2019-04-10  4:13 Aaron Bauman
2019-04-10  4:04 Aaron Bauman
2019-04-05 12:02 Lars Wendler
2019-04-02  7:32 Lars Wendler
2019-01-10 10:20 Mikle Kolyada
2019-01-10 10:20 Mikle Kolyada
2019-01-10 10:20 Mikle Kolyada
2019-01-10 10:20 Mikle Kolyada
2019-01-10 10:20 Mikle Kolyada
2019-01-07 18:48 Mart Raudsepp
2019-01-07  0:33 Thomas Deutschmann
2019-01-02  9:59 Mikle Kolyada
2019-01-01 12:36 Sergei Trofimovich
2019-01-01 12:17 Sergei Trofimovich
2019-01-01 12:17 Sergei Trofimovich
2019-01-01 10:52 Sergei Trofimovich
2018-12-31 17:00 Jeroen Roovers
2018-12-31 16:43 Thomas Deutschmann
2018-12-27 15:07 Lars Wendler
2018-11-30  8:00 Lars Wendler
2018-05-15 14:35 Mikle Kolyada
2018-05-14 19:21 Tobias Klausmann
2018-05-11 21:59 Sergei Trofimovich
2018-05-08 21:16 Sergei Trofimovich
2018-05-08 15:36 Jeroen Roovers
2018-05-07 23:55 Thomas Deutschmann
2018-05-07 21:40 Mikle Kolyada
2018-05-07 21:26 Mart Raudsepp
2018-05-07  8:12 Lars Wendler
2018-05-07  8:12 Lars Wendler
2018-04-23 17:09 Aaron Bauman
2018-01-21 20:08 Lars Wendler
2018-01-19 20:13 Lars Wendler
2018-01-19 20:13 Lars Wendler
2018-01-08  1:40 Mikle Kolyada
2018-01-08  1:37 Mikle Kolyada
2017-11-19 15:14 Markus Meier
2017-11-15 15:51 Fabian Groffen
2017-11-08 12:51 Tobias Klausmann
2017-10-30  1:12 Thomas Deutschmann
2017-10-28 20:53 Sergei Trofimovich
2017-10-28 20:47 Sergei Trofimovich
2017-10-28 20:25 Sergei Trofimovich
2017-10-28 10:11 Sergei Trofimovich
2017-10-26 15:04 Thomas Deutschmann
2017-10-26 15:04 Thomas Deutschmann
2017-05-15 17:10 Manuel Rüger
2017-03-20  7:00 Mike Frysinger
2017-03-20  6:54 Mike Frysinger
2017-03-20  6:54 Mike Frysinger
2017-03-20  6:17 Matt Turner
2017-03-20  1:05 Matt Turner
2017-03-18 15:44 Matt Turner
2017-03-14 16:22 Jeroen Roovers
2017-03-13 12:58 Agostino Sarubbo
2017-03-11 23:44 Michael Weber
2017-03-11 22:58 Michael Weber
2017-02-12 16:10 Lars Wendler
2017-02-03 18:24 Lars Wendler
2016-07-22 12:51 Mike Frysinger
2016-07-18  9:14 Anthony G. Basile
2016-06-27  8:47 Agostino Sarubbo
2016-06-27  8:23 Agostino Sarubbo
2016-06-22 18:55 Fabian Groffen
2016-06-21 18:32 Markus Meier
2016-06-21 11:37 Jeroen Roovers
2016-06-15 15:41 Jeroen Roovers
2016-06-14 16:32 Tobias Klausmann
2016-06-10  3:50 Mike Frysinger
2016-06-10  3:50 Mike Frysinger
2016-06-04  4:59 Markus Meier
2016-05-27 12:46 Lars Wendler
2016-05-26 20:37 Lars Wendler
2016-05-25  6:52 Jeroen Roovers
2016-05-25  6:29 Matt Turner
2015-12-12 21:04 Mike Frysinger
2015-11-17 13:08 Lars Wendler
2015-10-22 13:03 Julian Ospald
2015-10-19  0:17 Mike Frysinger
2015-10-10 15:15 Mikle Kolyada
2015-09-25  6:02 Markus Meier
2015-09-23  2:39 Mike Frysinger
2015-09-23  2:39 Mike Frysinger
2015-09-23  2:39 Mike Frysinger
2015-09-22  8:57 Agostino Sarubbo
2015-09-20 13:44 Julian Ospald
2015-09-16 11:06 Tobias Klausmann
2015-09-16  5:31 Jeroen Roovers
2015-09-15 12:28 Agostino Sarubbo
2015-09-15 12:28 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1509123431.242ea0fa3181b9ead4c03367cc124f6427f6d2e2.whissi@gentoo \
    --to=whissi@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox