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: Thu, 04 Jan 2018 18:34:21
Message-Id: 1515090306.e613b1a31e5fde9762f18ea92e04a30039047593.voyageur@gentoo
1 commit: e613b1a31e5fde9762f18ea92e04a30039047593
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 18:06:11 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 18:25:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e613b1a3
7
8 dev-libs/libfilezilla: drop old 0.11
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-libs/libfilezilla/Manifest | 1 -
13 dev-libs/libfilezilla/libfilezilla-0.11.0.ebuild | 30 ------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest
17 index c5e28bcdbf9..9107a7af1ad 100644
18 --- a/dev-libs/libfilezilla/Manifest
19 +++ b/dev-libs/libfilezilla/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST libfilezilla-0.11.0.tar.bz2 395727 BLAKE2B 7a2854f39462041ccd2fa0ad7ac0b15cb3169bb268b2f9ce68abea69490fd509742bfe22de064aed0ec92777b516cb42d23ca899997979713ebb5d9e3f73d7c2 SHA512 aa5356a8fbb9488072c9d32c7ab2de51de426a97cb30ec8b07c9e55bca351f82d8c4879f413aae05d5a2602bb153c0832f6bd7a71b8510a4957bafe9926d1d19
22 DIST libfilezilla-0.11.1.tar.bz2 395868 BLAKE2B d7d0004ca2b64fcfb8ba8121fefffb416bca2c4575c7a47ac9f890e352c88d3b35a5b881a3d7ca476a5b202a01a0d8094a1377f31b4b0b46b064c335781884b7 SHA512 a41ad8b2b0de25cba3283a55344a147383860d6ae7df7a0c634b48c07319bcb8057f84611e5cb98696e1f94856f5901f948c2e376fffe7151e145bf18ab82cc4
23 DIST libfilezilla-0.9.1.tar.bz2 383315 BLAKE2B 0cade4316662d64b9a0eb6abd586355236bc2c3d73f3d2ad84fe857a25e593027bbb090f57c8656b8c06ae40d126d93b8310fb0642e2e73d3cace7e560c86837 SHA512 bbcd826675e9c3e2f8cf1cea4da01434a66359ae816efdc5c981fbfebde0b73ce44a6d37546196fc00cb118d9b4d7772b73e30f8d5a78294f97b9899e9ba3393
24 DIST libfilezilla-0.9.2.tar.bz2 383522 BLAKE2B e70d23a67a8c365d06692dc27cf76543db75200ebb808e9ad91be95dafb8df2c7603c23e249405b056b7c44bffc527fd84d5a4052e704db63135fb93876d916f SHA512 f825d116e252786801115189f9966ba7ab8663863d921cce530569a172ab33dbc31234d6286b0b3e6edc19ec0a5ba009788382ec5d5359f97a9cb10f30715f88
25
26 diff --git a/dev-libs/libfilezilla/libfilezilla-0.11.0.ebuild b/dev-libs/libfilezilla/libfilezilla-0.11.0.ebuild
27 deleted file mode 100644
28 index 31545f46bee..00000000000
29 --- a/dev-libs/libfilezilla/libfilezilla-0.11.0.ebuild
30 +++ /dev/null
31 @@ -1,30 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
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="mirror://sourceforge/filezilla/${P}.tar.bz2
41 - http://download.filezilla-project.org/${PN}/${P}.tar.bz2"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
46 -IUSE="test"
47 -
48 -RDEPEND=""
49 -DEPEND="${RDEPEND}
50 - test? ( dev-util/cppunit )"
51 -
52 -pkg_pretend() {
53 - if [[ ${MERGE_TYPE} != binary ]]; then
54 - if ! test-flag-CXX -std=c++14; then
55 - eerror "${P} requires C++14-capable C++ compiler. Your current compiler"
56 - eerror "does not seem to support -std=c++14 option. Please upgrade your compiler"
57 - eerror "to gcc-4.9 or an equivalent version supporting C++14."
58 - die "Currently active compiler does not support -std=c++14"
59 - fi
60 - fi
61 -}