Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/
Date: Mon, 11 Oct 2021 19:18:04
Message-Id: 1633979634.3d8972647a9f6998fa124a3323d6367ed4757829.gyakovlev@gentoo
1 commit: 3d8972647a9f6998fa124a3323d6367ed4757829
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 11 19:11:10 2021 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 11 19:13:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d897264
7
8 app-crypt/minisign: sync live ebuild
9
10 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
11
12 app-crypt/minisign/minisign-9999.ebuild | 11 ++++++-----
13 1 file changed, 6 insertions(+), 5 deletions(-)
14
15 diff --git a/app-crypt/minisign/minisign-9999.ebuild b/app-crypt/minisign/minisign-9999.ebuild
16 index 6b1c1c8ca14..154ff1cfe79 100644
17 --- a/app-crypt/minisign/minisign-9999.ebuild
18 +++ b/app-crypt/minisign/minisign-9999.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 2019-2020 Gentoo Authors
21 +# Copyright 2019-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=7
25 +EAPI=8
26
27 inherit cmake
28
29 @@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then
30 EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git"
31 else
32 SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 - KEYWORDS="~amd64 ~ppc64"
34 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
35 fi
36
37 LICENSE="ISC"
38 @@ -21,10 +21,11 @@ SLOT="0"
39
40 IUSE=""
41
42 -DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]"
43 +BDEPEND="virtual/pkgconfig"
44 +DEPEND="dev-libs/libsodium:=[-minimal]"
45 RDEPEND="${DEPEND}"
46
47 src_configure() {
48 - local mycmakeargs=( -DCMAKE_STRIP="${EPREFIX}/bin/true" )
49 + local mycmakeargs=( -DCMAKE_STRIP=OFF )
50 cmake_src_configure
51 }