commit:     6570364335398fa77165e89b280ff2768ba70acc
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 30 19:43:37 2025 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Mar 31 06:44:23 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65703643

net-misc/wget2: drop 2.0.1-r5, 2.1.0-r1

Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 net-misc/wget2/Manifest                            |  2 -
 net-misc/wget2/files/wget2-2.0.1-stdint.patch      | 24 ------
 .../wget2-fix-build-issues-with-clang-16.patch     | 28 -------
 net-misc/wget2/wget2-2.0.1-r5.ebuild               | 96 ----------------------
 net-misc/wget2/wget2-2.1.0-r1.ebuild               | 91 --------------------
 5 files changed, 241 deletions(-)

diff --git a/net-misc/wget2/Manifest b/net-misc/wget2/Manifest
index 749c7db21049..571229e27db9 100644
--- a/net-misc/wget2/Manifest
+++ b/net-misc/wget2/Manifest
@@ -1,3 +1 @@
-DIST wget2-2.0.1.tar.gz 3780748 BLAKE2B 
cc28c58ab59c28540259545d60b19d6c513725e856fce02690e40ab0818d213bd656de704bd6310650af7190d7d3265fee859eebab326ad441f7351213fce6d3
 SHA512 
7a4afebf87ecda9e7e2d1fb2861c220875a96bab7c7ead6397c7ac11b6effae80d80f71b57a58d6b91a6c849b9a9fd974ce620d3050f677dd0fc4bc05358b27e
-DIST wget2-2.1.0.tar.gz 3867884 BLAKE2B 
4bde0b8d8d703f863db10dccdcafe9c93923a6861b973607f7ec2c06fa68921561b41eb049e59ccab4f0abafe5017e15d4131d684ad47b4fa4f6ac38c8772ed2
 SHA512 
ae1fc267b1c2ee182ee59f0fc34fef238326a20f1ea1c15be6db2c16b70d49e89f61ca937d3e64d214f73ef9646ba4318782ac4210db51bd3d89c55ce4406872
 DIST wget2-2.2.0.tar.gz 4094789 BLAKE2B 
20175a91cbddf5f7506d79ba481d7d983df27849fe5e3247f5981873795fbddc786326bd51646366e2bc1ebe64ea4535f19bcd558074c35aac7ee12e6c9996d5
 SHA512 
b39fb6f65b3be39c0f8f33a337c0417c8b31bf993cddbab1ef5e3dba66c6651ff8ec25d3a01ab5aa632072b14adab06adc4941bdb8e9cbf3b60bdd6f3f059cf1

diff --git a/net-misc/wget2/files/wget2-2.0.1-stdint.patch 
b/net-misc/wget2/files/wget2-2.0.1-stdint.patch
deleted file mode 100644
index 984cf52c1fc0..000000000000
--- a/net-misc/wget2/files/wget2-2.0.1-stdint.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 96fda91da2df356a7e0897187822e27125a3e40b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tim=20R=C3=BChsen?= <[email protected]>
-Date: Mon, 22 May 2023 19:56:35 +0200
-Subject: * libwget/decompressor.c: Explicitly include stdint.h before lzlib.h
-
----
- libwget/decompressor.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libwget/decompressor.c b/libwget/decompressor.c
-index 53ed884..69ce5dd 100644
---- a/libwget/decompressor.c
-+++ b/libwget/decompressor.c
-@@ -60,6 +60,7 @@
- #endif
- 
- #ifdef WITH_LZIP
-+#include <stdint.h>
- #include <lzlib.h>
- #endif
- 
--- 
-cgit v1.1
-

diff --git a/net-misc/wget2/files/wget2-fix-build-issues-with-clang-16.patch 
b/net-misc/wget2/files/wget2-fix-build-issues-with-clang-16.patch
deleted file mode 100644
index ca671879a1e3..000000000000
--- a/net-misc/wget2/files/wget2-fix-build-issues-with-clang-16.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://gitlab.com/gnuwget/wget2/-/merge_requests/523
-From: Brahmajit Das <[email protected]>
-Date: Mon, 29 May 2023 08:34:33 +0000
-Subject: [PATCH] libwget/thread.c: Fix build issues with clang-16
-
-With clang 16, specially on with musl libc, it would result in an
-incompatible pointer to integer conversion error. As clang 16 has made a
-few options default, including -Wincompatible-function-pointer-types.
-This patch fixes that error.
-
-First discovered on Gentoo's musl llvm profile. Please refer
-https://bugs.gentoo.org/898058.
-
-Signed-off-by: Brahmajit Das <[email protected]>
---- a/libwget/thread.c
-+++ b/libwget/thread.c
-@@ -289,7 +289,7 @@ int wget_thread_join(wget_thread *thread)
-  */
- wget_thread_id wget_thread_self(void)
- {
--      return gl_thread_self();
-+      return (wget_thread_id) gl_thread_self();
- }
- 
- /**
--- 
-2.40.1
-

diff --git a/net-misc/wget2/wget2-2.0.1-r5.ebuild 
b/net-misc/wget2/wget2-2.0.1-r5.ebuild
deleted file mode 100644
index 9d777020a981..000000000000
--- a/net-misc/wget2/wget2-2.0.1-r5.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="GNU Wget2 is a file and recursive website downloader"
-HOMEPAGE="https://gitlab.com/gnuwget/wget2";
-SRC_URI="mirror://gnu/wget/${P}.tar.gz"
-
-# LGPL for libwget
-LICENSE="GPL-3+ LGPL-3+"
-SLOT="0/0" # subslot = libwget.so version
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzip lzma openssl pcre psl 
+ssl test xattr zlib"
-
-RDEPEND="
-       brotli? ( app-arch/brotli )
-       bzip2? ( app-arch/bzip2 )
-       !gnutls? ( dev-libs/libgcrypt:= )
-       ssl? (
-               gnutls? ( net-libs/gnutls:= )
-               !gnutls? (
-                       dev-libs/openssl:0=
-               )
-       )
-       gpgme? (
-               app-crypt/gpgme:=
-               dev-libs/libassuan:=
-               dev-libs/libgpg-error
-       )
-       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 )
-       xattr? ( sys-apps/attr )
-       zlib? ( sys-libs/zlib )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-text/doxygen[dot] )
-"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-fix-build-issues-with-clang-16.patch
-       "${FILESDIR}"/${P}-stdint.patch
-)
-
-src_configure() {
-       local myeconfargs=(
-               --disable-static
-               --disable-valgrind-tests
-               --with-plugin-support
-               --with-ssl="$(usex ssl $(usex gnutls gnutls openssl) none)"
-               --without-libidn
-               --without-libmicrohttpd
-               $(use_enable doc)
-               $(use_enable xattr)
-               $(use_with brotli brotlidec)
-               $(use_with bzip2)
-               $(use_with gpgme)
-               $(use_with http2 libnghttp2)
-               $(use_with idn libidn2)
-               $(use_with lzip)
-               $(use_with lzma)
-               $(use_with pcre libpcre2)
-               $(use_with psl libpsl)
-               $(use_with zlib)
-
-               # Avoid calling ldconfig
-               LDCONFIG=:
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       if [[ ${PV} == *9999 ]] ; then
-               if use doc ; then
-                       local mpage
-                       for mpage in $(find docs/man -type f -regextype grep 
-regex ".*\.[[:digit:]]$") ; do
-                               doman ${mpage}
-                       done
-               fi
-       else
-               doman docs/man/man{1/*.1,3/*.3}
-       fi
-
-       find "${D}" -type f -name '*.la' -delete || die
-       rm "${ED}"/usr/bin/${PN}_noinstall || die
-}

diff --git a/net-misc/wget2/wget2-2.1.0-r1.ebuild 
b/net-misc/wget2/wget2-2.1.0-r1.ebuild
deleted file mode 100644
index adf3183d13a5..000000000000
--- a/net-misc/wget2/wget2-2.1.0-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="GNU Wget2 is a file and recursive website downloader"
-HOMEPAGE="https://gitlab.com/gnuwget/wget2";
-SRC_URI="mirror://gnu/wget/${P}.tar.gz"
-
-# LGPL for libwget
-LICENSE="GPL-3+ LGPL-3+"
-SLOT="0/0" # subslot = libwget.so version
-KEYWORDS="~amd64 ~arm64 ~loong ~x86"
-IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzip lzma openssl pcre psl 
+ssl test xattr zlib"
-
-RDEPEND="
-       brotli? ( app-arch/brotli )
-       bzip2? ( app-arch/bzip2 )
-       !gnutls? ( dev-libs/libgcrypt:= )
-       ssl? (
-               gnutls? ( net-libs/gnutls:= )
-               !gnutls? (
-                       dev-libs/openssl:0=
-               )
-       )
-       gpgme? (
-               app-crypt/gpgme:=
-               dev-libs/libassuan:=
-               dev-libs/libgpg-error
-       )
-       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 )
-       xattr? ( sys-apps/attr )
-       zlib? ( sys-libs/zlib )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-text/doxygen[dot] )
-"
-
-RESTRICT="!test? ( test )"
-
-src_configure() {
-       local myeconfargs=(
-               --disable-static
-               --disable-valgrind-tests
-               --with-plugin-support
-               --with-ssl="$(usex ssl $(usex gnutls gnutls openssl) none)"
-               --without-libidn
-               --without-libmicrohttpd
-               $(use_enable doc)
-               $(use_enable xattr)
-               $(use_with brotli brotlidec)
-               $(use_with bzip2)
-               $(use_with gpgme)
-               $(use_with http2 libnghttp2)
-               $(use_with idn libidn2)
-               $(use_with lzip)
-               $(use_with lzma)
-               $(use_with pcre libpcre2)
-               $(use_with psl libpsl)
-               $(use_with zlib)
-
-               # Avoid calling ldconfig
-               LDCONFIG=:
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       if [[ ${PV} == *9999 ]] ; then
-               if use doc ; then
-                       local mpage
-                       for mpage in $(find docs/man -type f -regextype grep 
-regex ".*\.[[:digit:]]$") ; do
-                               doman ${mpage}
-                       done
-               fi
-       else
-               doman docs/man/man{1/*.1,3/*.3}
-       fi
-
-       find "${D}" -type f -name '*.la' -delete || die
-       rm "${ED}"/usr/bin/${PN}_noinstall || die
-}

Reply via email to