Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/sbsigntool/
Date: Mon, 13 Feb 2017 22:52:10
Message-Id: 1487026313.d4e5e556b1ba34d17c93807d75e4ac6d8c3d1fe1.robbat2@gentoo
1 commit: d4e5e556b1ba34d17c93807d75e4ac6d8c3d1fe1
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 13 22:45:31 2017 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 13 22:51:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e5e556
7
8 app-crypt/sbsigntool: add ~arm64.
9
10 Runtime testing performed on Lenovo CaviumX thanks to Packet.net.
11
12 Package-Manager: portage-2.3.2
13 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
14
15 app-crypt/sbsigntool/sbsigntool-0.8.ebuild | 7 ++++---
16 1 file changed, 4 insertions(+), 3 deletions(-)
17
18 diff --git a/app-crypt/sbsigntool/sbsigntool-0.8.ebuild b/app-crypt/sbsigntool/sbsigntool-0.8.ebuild
19 index 6974d2bd52..312c139d36 100644
20 --- a/app-crypt/sbsigntool/sbsigntool-0.8.ebuild
21 +++ b/app-crypt/sbsigntool/sbsigntool-0.8.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2016 Gentoo Foundation
24 +# Copyright 1999-2017 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 @@ -13,7 +13,7 @@ SRC_URI="https://dev.gentoo.org/~tamiko/distfiles/${P}.tar.gz
29
30 LICENSE="GPL-3 LGPL-3 LGPL-2.1 CC0-1.0"
31 SLOT="0"
32 -KEYWORDS="~amd64 ~x86"
33 +KEYWORDS="~amd64 ~arm64 ~x86"
34 IUSE="libressl"
35
36 RDEPEND="
37 @@ -31,9 +31,10 @@ S="${WORKDIR}"
38 src_prepare() {
39 local iarch
40 case ${ARCH} in
41 + amd64) iarch=x86_64 ;;
42 + arm64) iarch=aarch64 ;;
43 ia64) iarch=ia64 ;;
44 x86) iarch=ia32 ;;
45 - amd64) iarch=x86_64 ;;
46 *) die "unsupported architecture: ${ARCH}" ;;
47 esac
48 sed -i "/^EFI_ARCH=/s:=.*:=${iarch}:" configure.ac || die