public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/
Date: Thu, 31 Dec 2020 20:10:22 +0000 (UTC)	[thread overview]
Message-ID: <1609445357.0a614c0dc270484b05fa5bc28c51e825fc17b66a.polynomial-c@gentoo> (raw)

commit:     0a614c0dc270484b05fa5bc28c51e825fc17b66a
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 31 20:09:17 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Dec 31 20:09:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a614c0d

net-misc/wget: Bump to version 1.21

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-misc/wget/Manifest         |   1 +
 net-misc/wget/wget-1.21.ebuild | 125 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 126 insertions(+)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
index b2c217e1f19..45212c9f20d 100644
--- a/net-misc/wget/Manifest
+++ b/net-misc/wget/Manifest
@@ -1 +1,2 @@
 DIST wget-1.20.3.tar.gz 4489249 BLAKE2B 89fa7997a02be6fb1a869d1bf359ce4e43b41f8069d1520e6d0b48739b9b6030b1dec7b7e8cbe833ea1070b30f551b1a9d72c6f4a43bb58df20b680b42a68805 SHA512 e8b82b40e270296228094a78d47f81580bdbdea9e6b93fd61b37dccb39430aeb9bda5397dc53a31c952a61629383c7e2a8c8abf414c8a4dd369af6ecf2717e6c
+DIST wget-1.21.tar.gz 4866788 BLAKE2B e019df0ba0eefb0d6de0e73a73e7dc0ecd46048831ef3b4719ab47ce6895de7da3163902ff19881eb60eb4f67568a7de70092f62a8f8397a5ac9583fb689ad3a SHA512 13313a98f91ef34ad90103f076285549eb4887d77953e9f192d3b0667642b5ceb9e2e30091f766cbf1d6ed423499c497ed85d826f3f3e92f0711aa06d8303c5a

diff --git a/net-misc/wget/wget-1.21.ebuild b/net-misc/wget/wget-1.21.ebuild
new file mode 100644
index 00000000000..6034e4a301c
--- /dev/null
+++ b/net-misc/wget/wget-1.21.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+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 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="cookie_check debug gnutls idn ipv6 libressl metalink nls ntlm pcre +ssl static test uuid zlib"
+REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
+RESTRICT="!test? ( test )"
+
+# Force a newer libidn2 to avoid libunistring deps. #612498
+LIB_DEPEND="
+	cookie_check? ( net-libs/libpsl )
+	idn? ( >=net-dns/libidn2-0.14:=[static-libs(+)] )
+	metalink? ( media-libs/libmetalink )
+	pcre? ( dev-libs/libpcre2[static-libs(+)] )
+	ssl? (
+		gnutls? ( net-libs/gnutls:0=[static-libs(+)] )
+		!gnutls? (
+			!libressl? ( dev-libs/openssl:0=[static-libs(+)] )
+			libressl? ( dev-libs/libressl:0=[static-libs(+)] )
+		)
+	)
+	uuid? ( sys-apps/util-linux[static-libs(+)] )
+	zlib? ( sys-libs/zlib[static-libs(+)] )
+"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="
+	${RDEPEND}
+	static? ( ${LIB_DEPEND} )
+	test? (
+		${PYTHON_DEPS}
+		dev-lang/perl
+		dev-perl/HTTP-Daemon
+		dev-perl/HTTP-Message
+		dev-perl/IO-Socket-SSL
+	)
+"
+BDEPEND="
+	app-arch/xz-utils
+	virtual/pkgconfig
+	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* ]] \
+	|| [[ ${CHOST} == *-cygwin* ]] \
+	; 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
+	local myeconfargs=(
+		--disable-assert
+		--disable-pcre
+		--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 pcre2)
+		$(use_enable ssl digest)
+		$(use_enable ssl opie)
+		$(use_with cookie_check libpsl)
+		$(use_with idn libidn)
+		$(use_with metalink)
+		$(use_with ssl ssl $(usex gnutls gnutls openssl))
+		$(use_with uuid libuuid)
+		$(use_with zlib)
+	)
+	ac_cv_libunistring=no \
+	econf "${myeconfargs[@]}"
+}
+
+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:[~2020-12-31 20:10 UTC|newest]

Thread overview: 192+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-31 20:10 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07  7:28 [gentoo-commits] repo/gentoo:master commit in: net-misc/wget/ Sam James
2024-06-16 19:11 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-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-27 16:57 Thomas Deutschmann
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=1609445357.0a614c0dc270484b05fa5bc28c51e825fc17b66a.polynomial-c@gentoo \
    --to=polynomial-c@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