From def1d9264911de9f80db5165882084b0d66c9208 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 18 Jun 2023 07:47:30 +0100 Subject: gentoo auto-resync : 18:06:2023 - 07:47:30 --- dev-libs/libfilezilla/Manifest | 2 +- .../libfilezilla/libfilezilla-0.42.2-r1.ebuild | 54 ++++++++++++++++++++++ dev-libs/libfilezilla/libfilezilla-0.42.2.ebuild | 54 ---------------------- 3 files changed, 55 insertions(+), 55 deletions(-) create mode 100644 dev-libs/libfilezilla/libfilezilla-0.42.2-r1.ebuild delete mode 100644 dev-libs/libfilezilla/libfilezilla-0.42.2.ebuild (limited to 'dev-libs/libfilezilla') diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest index 112bd5553a33..bf6b6012d2c7 100644 --- a/dev-libs/libfilezilla/Manifest +++ b/dev-libs/libfilezilla/Manifest @@ -9,5 +9,5 @@ EBUILD libfilezilla-0.39.1-r1.ebuild 1279 BLAKE2B fdea7f03452e4dd301e1e44c355611 EBUILD libfilezilla-0.39.2.ebuild 1283 BLAKE2B a035da3ed2331f22470d989d9b582087ec7f1dbcc73a69fec37bfd94d94f5b6804c499e6867fded465b564c319b2f462d030eae16513a4c45bb95ef86afed522 SHA512 24484380ffb8ca6e59417a5825e4e9970c8a92a823ba72c6eec7a168d84c7789cfc223ddc06fcaf4a53386324439c5e23b6f9c68f1a840354a7af706774cf47c EBUILD libfilezilla-0.41.0.ebuild 1324 BLAKE2B 29fc9eb33e9403ba6ff9e623edbc4d4dc174ac6ff231c647114fe24b6c71347cb8c1eeb678f9ec52a946440d1aa9c08eadc5045e0af8d94edcc6f29ddb74142b SHA512 c4773e3026b49c24390719d3604dd0280080812b9ebdb5786620870cf611554a26ba19a30238617a26e30b4ee409ec25480237e3645de7bda9275470b4e4ad77 EBUILD libfilezilla-0.41.1.ebuild 1324 BLAKE2B 4656bd666e81deccba4992a4ad9d315aee1bdb3cb726852d01e5c200d1d06dbedfb7a2462b4898c9d71520acca8de746f95a60dfa7167742ef73f8fde72abf09 SHA512 5ad6171dc18c1a7ded6377d63fe013287a2e4b93e90b84653c3ff13901b2bd9bbaf9e3679c87c39ddebdf9d8dfc7012680e2450982cc25eb88f38b7d1426483d -EBUILD libfilezilla-0.42.2.ebuild 1323 BLAKE2B 8a7247ceb974a48485da1502782d41977b54ffe3bca017447b6daa644500e74772da85e4948dffc456914c3fd391887ea202bb3fa6fec7017f93bbefe0d4f20d SHA512 d3c4932a1d2d7710a80912ea3c86cbc724135f6bd277b8f2f1e312f47071b373d07dfa7276f88cd41df9f9a64d7b3c62b53afaa50bebdfd16e1a34c219d55bd1 +EBUILD libfilezilla-0.42.2-r1.ebuild 1323 BLAKE2B cc3bed88dedc425f0088c12f9429ec0eb053b749e4b279550e9c418d3ac6e380477350d73c7ed4b01a5cb176d9f7052acd6c9d897238187b91e5f397351e0ce6 SHA512 c0be080e702d542ed1d426bcf8d9af97f8c350ee88fd3f9c0e7aee624870def63859f39db660a0ce6edf137e12e7b968482fe835a89fb0cbe958c30ccd034931 MISC metadata.xml 1125 BLAKE2B eddf5dd9e7af700c9cdfd68918acef8a6064a8f26e4531f047315df70a4c2d1e2d2a4b3257062e5af1973fef5490606f08a0c6460e220d25b3d615c7d4626e57 SHA512 6038a9eb07bf8c4adaf9bd3abaa3abc283ba8d8c432aa193fcc1932071afdbd6a6bb50a16e5e7f4f0cce4afbc341bb26b1b265b8f0da12728f8db06103d73ba5 diff --git a/dev-libs/libfilezilla/libfilezilla-0.42.2-r1.ebuild b/dev-libs/libfilezilla/libfilezilla-0.42.2-r1.ebuild new file mode 100644 index 000000000000..e911fbcc2dc5 --- /dev/null +++ b/dev-libs/libfilezilla/libfilezilla-0.42.2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit 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/36" # libfilezilla.so version +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~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 )" + +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_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.42.2.ebuild b/dev-libs/libfilezilla/libfilezilla-0.42.2.ebuild deleted file mode 100644 index 6b7067b11e01..000000000000 --- a/dev-libs/libfilezilla/libfilezilla-0.42.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit 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/35" # libfilezilla.so version -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~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 )" - -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_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 -} -- cgit v1.2.3