Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libfilezilla/
Date: Fri, 09 Jul 2021 22:23:02
Message-Id: 1625869059.64e7a7a8d6e3771372c7422990c768c97584e1de.voyageur@gentoo
1 commit: 64e7a7a8d6e3771372c7422990c768c97584e1de
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 9 22:17:39 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 9 22:17:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e7a7a8
7
8 dev-libs/libfilezilla: 0.30.0 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 dev-libs/libfilezilla/Manifest | 1 +
14 dev-libs/libfilezilla/libfilezilla-0.30.0.ebuild | 48 ++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest
18 index 6ea13153c27..bd38d81ab31 100644
19 --- a/dev-libs/libfilezilla/Manifest
20 +++ b/dev-libs/libfilezilla/Manifest
21 @@ -1,2 +1,3 @@
22 DIST libfilezilla-0.27.1.tar.bz2 568252 BLAKE2B 5ab11e60a3df1e56275b0a1eeb94a91a5e036306c8d65c95ecdf26737ad5c73782d69e50f81749864293bc827b2502988b45a2268bb8020e685a4c864168af5e SHA512 30db720a8fbc806f498aa94ca9bdbbfa6ef04b4b4853e2c38744c2ba26dc8e34d3b006a057dcb527f6d745bf594ccffbb424f9b59dca6d1cb028b0f13bdd466a
23 DIST libfilezilla-0.28.0.tar.bz2 572028 BLAKE2B 579881b1bf127f709cdfda61efb71cce3df741152124b74a2f7d718e43d7d71ce678ec6ba10ff61926b275d5b9e69f8df0f9741a0ba1e9b5ff2c51d35472d10a SHA512 e14bc3d5d20c62f0910ab55aa6466590a0d55aedf534e7eb67481a65b372c62fd0015506a1acdc476811aa2c0ce7561f30e79a10f994dfd98014e4ed4b4f471e
24 +DIST libfilezilla-0.30.0.tar.bz2 578592 BLAKE2B abfef274989b0ba31d9237394aa1e88012e9fe9d071c11e7350e0ada8d5da54d7cdc93f46f65b38fa9a811a638210238f42de99fdd6832f97ede3808723e5d4f SHA512 f05a1ef2be7a6d32a6c5adf8e02f2b17e83deb67bf7c67b1bc1fec539a7235903d91dd3e98412aa1b90f1fcb322cb9ab54d3a1ff4ec44889b4dcdda6984300c9
25
26 diff --git a/dev-libs/libfilezilla/libfilezilla-0.30.0.ebuild b/dev-libs/libfilezilla/libfilezilla-0.30.0.ebuild
27 new file mode 100644
28 index 00000000000..f0d6428c3e3
29 --- /dev/null
30 +++ b/dev-libs/libfilezilla/libfilezilla-0.30.0.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit flag-o-matic
37 +
38 +DESCRIPTION="C++ library offering some basic functionality for platform-independent programs"
39 +HOMEPAGE="https://lib.filezilla-project.org/"
40 +SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0/15" # libfilezilla.so version
44 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
45 +IUSE="test"
46 +
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + dev-libs/nettle:0=
51 + >=net-libs/gnutls-3.5.7:=
52 +"
53 +DEPEND="${RDEPEND}
54 + test? ( dev-util/cppunit )"
55 +
56 +pkg_pretend() {
57 + if [[ ${MERGE_TYPE} != binary ]]; then
58 + if ! test-flag-CXX -std=c++14; then
59 + eerror "${P} requires C++14-capable C++ compiler. Your current compiler"
60 + eerror "does not seem to support -std=c++14 option. Please upgrade your compiler"
61 + eerror "to gcc-4.9 or an equivalent version supporting C++14."
62 + die "Currently active compiler does not support -std=c++14"
63 + fi
64 + fi
65 +}
66 +
67 +src_configure() {
68 + if use ppc || use arm || use hppa; then
69 + # bug 727652
70 + append-libs -latomic
71 + fi
72 +
73 + econf --disable-static
74 +}
75 +
76 +src_install() {
77 + default
78 + find "${ED}" -type f -name "*.la" -delete || die
79 +}