Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/tc-play/
Date: Mon, 01 Aug 2022 03:15:44
Message-Id: 1659323663.42c11dcac7716d6b0566fd9b9bd63026d956b696.sam@gentoo
1 commit: 42c11dcac7716d6b0566fd9b9bd63026d956b696
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 1 03:06:10 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 1 03:14:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c11dca
7
8 app-crypt/tc-play: [QA] EAPI 8, fix useless multilib
9
10 Multilib is only ever used here in src_configure because
11 it's exported. The program isn't even built for multilib
12 (which is a good thing, or it'd be even more of a waste,
13 as it's not like it'd get installed anyway).
14
15 Signed-off-by: Sam James <sam <AT> gentoo.org>
16
17 .../{tc-play-2.0-r1.ebuild => tc-play-2.0-r2.ebuild} | 19 +++++++++----------
18 1 file changed, 9 insertions(+), 10 deletions(-)
19
20 diff --git a/app-crypt/tc-play/tc-play-2.0-r1.ebuild b/app-crypt/tc-play/tc-play-2.0-r2.ebuild
21 similarity index 83%
22 rename from app-crypt/tc-play/tc-play-2.0-r1.ebuild
23 rename to app-crypt/tc-play/tc-play-2.0-r2.ebuild
24 index 401465c26b69..244696e5f144 100644
25 --- a/app-crypt/tc-play/tc-play-2.0-r1.ebuild
26 +++ b/app-crypt/tc-play/tc-play-2.0-r2.ebuild
27 @@ -1,11 +1,11 @@
28 # Copyright 1999-2022 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 -EAPI=7
32 +EAPI=8
33
34 -inherit toolchain-funcs multilib-minimal
35 +inherit toolchain-funcs
36
37 -DESCRIPTION="a free, pretty much fully featured and stable TrueCrypt implementation"
38 +DESCRIPTION="A free, pretty much fully featured and stable TrueCrypt implementation"
39 HOMEPAGE="https://github.com/bwalex/tc-play"
40 SRC_URI="https://github.com/bwalex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41
42 @@ -15,19 +15,18 @@ KEYWORDS="~amd64"
43 IUSE="gnutls"
44
45 DEPEND="
46 + dev-libs/libgcrypt:=
47 dev-libs/libgpg-error
48 - sys-fs/lvm2
49 sys-apps/util-linux
50 - dev-libs/libgcrypt:0
51 + sys-fs/lvm2
52 gnutls? ( net-libs/gnutls )
53 !gnutls? (
54 - dev-libs/openssl:0=
55 - )"
56 + dev-libs/openssl:=
57 + )
58 +"
59 RDEPEND="${DEPEND}"
60
61 -DOCS=(
62 - README.md
63 -)
64 +DOCS=( README.md )
65
66 PATCHES=(
67 "${FILESDIR}/${P}-build.patch"