From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4931158094 for ; Sun, 17 Jul 2022 09:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8C35E0EC0; Sun, 17 Jul 2022 09:23:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A185BE0EC0 for ; Sun, 17 Jul 2022 09:23:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74AB4340D31 for ; Sun, 17 Jul 2022 09:23:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0760326 for ; Sun, 17 Jul 2022 09:23:14 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1658049792.3030fc80777b9245d3e0c5b27c42d6f755bb4fb6.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wget2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/wget2/metadata.xml net-misc/wget2/wget2-2.0.1.ebuild net-misc/wget2/wget2-9999.ebuild X-VCS-Directories: net-misc/wget2/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 3030fc80777b9245d3e0c5b27c42d6f755bb4fb6 X-VCS-Branch: master Date: Sun, 17 Jul 2022 09:23:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fda9c685-9f6a-4e29-97a3-bb6cd299e38a X-Archives-Hash: 30f0336dbe73bd9d81a3d9353025e5fd commit: 3030fc80777b9245d3e0c5b27c42d6f755bb4fb6 Author: Bernard Cafarelli gentoo org> AuthorDate: Sun Jul 17 09:22:02 2022 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sun Jul 17 09:23:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3030fc80 net-misc/wget2: restore USE=lzip to fix automagic detection This feature still exists in current versions and when enabled can fail compilation in some cases Bug: https://bugs.gentoo.org/822057 Signed-off-by: Bernard Cafarelli gentoo.org> net-misc/wget2/metadata.xml | 2 +- net-misc/wget2/wget2-2.0.1.ebuild | 4 +++- net-misc/wget2/wget2-9999.ebuild | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/net-misc/wget2/metadata.xml b/net-misc/wget2/metadata.xml index 64fc07a8328e..b9d9ab8fa92e 100644 --- a/net-misc/wget2/metadata.xml +++ b/net-misc/wget2/metadata.xml @@ -9,7 +9,7 @@ Enable support for brotli compression Build app-crypt/gpgme backend Enable HTTP/2.0 support via net-libs/nghttp2 - Enable app-arch/lzip support + Enable app-arch/lzip support via app-arch/lzlib Enable crypto support via dev-libs/openssl Use public suffix list via net-libs/libpsl Depend on dev-util/valgrind for test suite diff --git a/net-misc/wget2/wget2-2.0.1.ebuild b/net-misc/wget2/wget2-2.0.1.ebuild index 57cdc0a2f977..0640899212dd 100644 --- a/net-misc/wget2/wget2-2.0.1.ebuild +++ b/net-misc/wget2/wget2-2.0.1.ebuild @@ -14,7 +14,7 @@ else fi LICENSE="GPL-3" SLOT="0/0" # subslot = libwget.so version -IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzma openssl pcre psl +ssl test valgrind xattr zlib" +IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzip lzma openssl pcre psl +ssl test valgrind xattr zlib" REQUIRED_USE="valgrind? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ RDEPEND=" ) http2? ( net-libs/nghttp2 ) idn? ( net-dns/libidn2:= ) + lzip? ( app-arch/lzlib ) lzma? ( app-arch/xz-utils ) pcre? ( dev-libs/libpcre2 ) psl? ( net-libs/libpsl ) @@ -94,6 +95,7 @@ src_configure() { $(use_with gpgme) $(use_with http2 libnghttp2) $(use_with idn libidn2) + $(use_with lzip lz) $(use_with lzma) $(use_with pcre libpcre2) $(use_with psl libpsl) diff --git a/net-misc/wget2/wget2-9999.ebuild b/net-misc/wget2/wget2-9999.ebuild index 57cdc0a2f977..0640899212dd 100644 --- a/net-misc/wget2/wget2-9999.ebuild +++ b/net-misc/wget2/wget2-9999.ebuild @@ -14,7 +14,7 @@ else fi LICENSE="GPL-3" SLOT="0/0" # subslot = libwget.so version -IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzma openssl pcre psl +ssl test valgrind xattr zlib" +IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzip lzma openssl pcre psl +ssl test valgrind xattr zlib" REQUIRED_USE="valgrind? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ RDEPEND=" ) http2? ( net-libs/nghttp2 ) idn? ( net-dns/libidn2:= ) + lzip? ( app-arch/lzlib ) lzma? ( app-arch/xz-utils ) pcre? ( dev-libs/libpcre2 ) psl? ( net-libs/libpsl ) @@ -94,6 +95,7 @@ src_configure() { $(use_with gpgme) $(use_with http2 libnghttp2) $(use_with idn libidn2) + $(use_with lzip lz) $(use_with lzma) $(use_with pcre libpcre2) $(use_with psl libpsl)