Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/encfs/
Date: Tue, 07 Dec 2021 07:07:18
Message-Id: 1638860817.ce1702840be1c3cb5fdb8adc28c0804f42df2f8d.sam@gentoo
1 commit: ce1702840be1c3cb5fdb8adc28c0804f42df2f8d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 07:06:53 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 07:06:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce170284
7
8 sys-fs/encfs: drop 1.9.5 (cmake-utils--, EAPI 6--)
9
10 Bug: https://bugs.gentoo.org/701698
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sys-fs/encfs/encfs-1.9.5.ebuild | 39 ---------------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/sys-fs/encfs/encfs-1.9.5.ebuild b/sys-fs/encfs/encfs-1.9.5.ebuild
17 deleted file mode 100644
18 index 70d05c10d13e..000000000000
19 --- a/sys-fs/encfs/encfs-1.9.5.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -inherit cmake-utils
27 -
28 -DESCRIPTION="An implementation of encrypted filesystem in user-space using FUSE"
29 -HOMEPAGE="https://vgough.github.io/encfs/"
30 -SRC_URI="https://github.com/vgough/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 -
32 -LICENSE="GPL-3 LGPL-3"
33 -SLOT="0"
34 -KEYWORDS="amd64 arm ~ppc64 ~sparc x86"
35 -IUSE="nls"
36 -
37 -RDEPEND="
38 - dev-libs/openssl:0=
39 - dev-libs/tinyxml2:0=
40 - sys-fs/fuse:=
41 - sys-libs/zlib"
42 -DEPEND="
43 - ${RDEPEND}
44 - dev-lang/perl
45 - sys-devel/gettext
46 - virtual/pkgconfig"
47 -
48 -# Build dir is hardcoded in test suite, but we restrict them
49 -# because they can lead to false negatives, bug #630486
50 -RESTRICT="test"
51 -BUILD_DIR="${S}/build"
52 -
53 -src_configure() {
54 - local mycmakeargs=(
55 - -DENABLE_NLS="$(usex nls)"
56 - -DUSE_INTERNAL_TINYXML=OFF
57 - -DBUILD_UNIT_TESTS=OFF
58 - )
59 - cmake-utils_src_configure
60 -}