commit:     8b13122fce6021d0f418926283ad0cdf3d697b47
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 20 12:13:43 2025 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sun Jul 20 12:13:43 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b13122f

dev-libs/libfilezilla: drop 0.48.1, 0.49.0

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 dev-libs/libfilezilla/Manifest                   |  2 -
 dev-libs/libfilezilla/libfilezilla-0.48.1.ebuild | 62 -----------------------
 dev-libs/libfilezilla/libfilezilla-0.49.0.ebuild | 63 ------------------------
 3 files changed, 127 deletions(-)

diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest
index 66955201cc2c..16757ce1fe3f 100644
--- a/dev-libs/libfilezilla/Manifest
+++ b/dev-libs/libfilezilla/Manifest
@@ -1,4 +1,2 @@
-DIST libfilezilla-0.48.1.tar.xz 552864 BLAKE2B 
fd08bbe3279cb1eec21c864e1b1547ee562d9fca970fed4dc3f78740bb9131b98410cc5ba317a05a5218b100dd498107dd2caed3ff3453b1516405c1075bbb62
 SHA512 
44881abbed985eabe0b5a19c6a2fc5f39c5258b49633eae79c7498c5c96583b24883ddce66b9ab7fafdaab7657092edc5da8e5d3b604897b76c02038fa4cd482
-DIST libfilezilla-0.49.0.tar.xz 554000 BLAKE2B 
92cf203f4b58199ddd153be99f128d1c29d1f202e1cfe1354a185201d7f3eb9cc00d344ba58fe245f0444106fdfbef5dd5589969e9558404607edb22b94ef09a
 SHA512 
5e77cf9371468f8760baa351108374187d89777244845386d4cc46d2bd03d52285379cd55902c91dad1167ac58892c9fd7c94d6596ef1710e8116dd1f9721eca
 DIST libfilezilla-0.50.0.tar.xz 559004 BLAKE2B 
27f060843eb3a92be0e350dd2ea8aae2f4cb7a4654ad61cb2296f0b8f0a107350b989fdb62ab63256bc1e7b902ed167ec756bd3963e9c56220a7740669ff1b2a
 SHA512 
ed12159d176da0019479fc3d2f129dbf959237340dbfe8fa6871ae2f1f038f64cf672eb25680e69304820f9003b03957a9ba7c2cdad1bd918dbf3ee630380608
 DIST libfilezilla-0.51.0.tar.xz 561100 BLAKE2B 
5d99dac0595fbd7c60e4e9c4b6d5992db9966151457f0d7fc93c51063144860adef14b5410c28192cd8ad5298e71f665217bfd418098d217318b52fda7f14383
 SHA512 
0864c1d6e93f077005223d7a2818ff8711bfed0812bc369b04d2d20c07c1b41908951e5a96d4402407287b350513bf037b4b522a7cdff850071c8e2b045e83b0

diff --git a/dev-libs/libfilezilla/libfilezilla-0.48.1.ebuild 
b/dev-libs/libfilezilla/libfilezilla-0.48.1.ebuild
deleted file mode 100644
index 8f5a05348648..000000000000
--- a/dev-libs/libfilezilla/libfilezilla-0.48.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="C++ library offering some basic functionality for 
platform-independent programs"
-HOMEPAGE="https://lib.filezilla-project.org/";
-SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0/45" # libfilezilla.so version
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-libs/nettle:0=
-       >=net-libs/gnutls-3.5.7:=
-       virtual/libcrypt:=
-"
-DEPEND="${RDEPEND}
-       test? ( dev-util/cppunit )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.37.1-pthread.patch
-       "${FILESDIR}"/${PN}-0.41.0-gcc13.patch
-)
-
-pkg_pretend() {
-       if [[ ${MERGE_TYPE} != binary ]]; then
-               if ! test-flag-CXX -std=c++14; then
-                       eerror "${P} requires C++14-capable C++ compiler. Your 
current compiler"
-                       eerror "does not seem to support -std=c++14 option. 
Please upgrade your compiler"
-                       eerror "to gcc-4.9 or an equivalent version supporting 
C++14."
-                       die "Currently active compiler does not support 
-std=c++14"
-               fi
-       fi
-}
-
-src_prepare() {
-       default
-       # we patch configure.ac
-       eautoreconf
-}
-
-src_configure() {
-       if use ppc || use arm || use hppa; then
-               # bug 727652
-               append-libs -latomic
-       fi
-
-       econf --disable-static
-}
-
-src_install() {
-       default
-       find "${ED}" -type f -name "*.la" -delete || die
-}

diff --git a/dev-libs/libfilezilla/libfilezilla-0.49.0.ebuild 
b/dev-libs/libfilezilla/libfilezilla-0.49.0.ebuild
deleted file mode 100644
index 0225319987ba..000000000000
--- a/dev-libs/libfilezilla/libfilezilla-0.49.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="C++ library offering some basic functionality for 
platform-independent programs"
-HOMEPAGE="https://lib.filezilla-project.org/";
-# Broken URL behind CDN
-SRC_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0/46" # libfilezilla.so version
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-libs/nettle:0=
-       >=net-libs/gnutls-3.5.7:=
-       virtual/libcrypt:=
-"
-DEPEND="${RDEPEND}
-       test? ( dev-util/cppunit )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.37.1-pthread.patch
-       "${FILESDIR}"/${PN}-0.41.0-gcc13.patch
-)
-
-pkg_pretend() {
-       if [[ ${MERGE_TYPE} != binary ]]; then
-               if ! test-flag-CXX -std=c++14; then
-                       eerror "${P} requires C++14-capable C++ compiler. Your 
current compiler"
-                       eerror "does not seem to support -std=c++14 option. 
Please upgrade your compiler"
-                       eerror "to gcc-4.9 or an equivalent version supporting 
C++14."
-                       die "Currently active compiler does not support 
-std=c++14"
-               fi
-       fi
-}
-
-src_prepare() {
-       default
-       # we patch configure.ac
-       eautoreconf
-}
-
-src_configure() {
-       if use ppc || use arm || use hppa; then
-               # bug 727652
-               append-libs -latomic
-       fi
-
-       econf --disable-static
-}
-
-src_install() {
-       default
-       find "${ED}" -type f -name "*.la" -delete || die
-}

Reply via email to