Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/sbsigntool/
Date: Fri, 29 Jun 2018 16:34:47
Message-Id: 1530290025.74bd7e0b64f04198413924ec70a5902c250454fd.tamiko@gentoo
1 commit: 74bd7e0b64f04198413924ec70a5902c250454fd
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 29 16:31:47 2018 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 29 16:33:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bd7e0b
7
8 app-crypt/sbsigntool: drop broken
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 app-crypt/sbsigntool/Manifest | 1 -
13 app-crypt/sbsigntool/sbsigntool-0.8.ebuild | 46 ------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-crypt/sbsigntool/Manifest b/app-crypt/sbsigntool/Manifest
17 index b6ff136f716..8df64ea7cc7 100644
18 --- a/app-crypt/sbsigntool/Manifest
19 +++ b/app-crypt/sbsigntool/Manifest
20 @@ -1,4 +1,3 @@
21 DIST sbsigntool-0.8-ccan.tar.gz 113537 BLAKE2B 8fbf27463d30c1895930628a145be2d521ae4f6adb7af3299bf2f5f4319fd643df0a07347ef6851bd41d233af4c3fc5f77002771af1c43aa0f20665aef2390b8 SHA512 6857096879f116f1802eb6b44789cbea7bb24440bc0f16503aeadf5f276fa45943f322f844dbb9abee717655205d82b830143be3a7f4424fd4146b9360674a09
22 -DIST sbsigntool-0.8.tar.gz 55537 BLAKE2B f81a530995b90f4030ae2bb36cdf4c5bab8fde5bbc4646029af008df9368968c1f1774317e8b0f94e6c75a33f0d79892f26d99c2987c92766f520a3b9a8e2e57 SHA512 ffc2661135dcdbdd218640f0a0657127c5519ade7ddaaa894898e382b4898829e5b877be51fce48bddd186667bf533f779cd5a323c79aad8b0e63b74f7a2c128
23 DIST sbsigntool-0.9.1.tar.gz 56497 BLAKE2B 22791bd4b490f36963a19e82da3ce7b93a56d948bf44d1ffdb62fa3291a3f815b2c19d68f9180b607c2b1438f656367ec1f9002f0b1225734d16a9aadc6d20ec SHA512 ae16232327c098bbc60a9701185d856d851cb7fa8f62be64d3c8f75c8b274b8521fcc4212226189def05db980690878ee6ac9a9b418166c92442aaf35e790d29
24 DIST sbsigntool_0.6.orig.tar.gz 212375 BLAKE2B fab9141c7fbfa01ec24f975503ac83be4ae0664251a1311afb3d95124fec3750ce20a5ffab35b6965d4ee4585ab4ee91f25ae49488214a983b6fc006071d0968 SHA512 ed314d1cb7278cf5f27d4c3cd17f2195678419a7f9e47770429b6f95df35f7df035331e60c45970183ddd9b150a9b752f876c777929598b0525872b3255af95c
25
26 diff --git a/app-crypt/sbsigntool/sbsigntool-0.8.ebuild b/app-crypt/sbsigntool/sbsigntool-0.8.ebuild
27 deleted file mode 100644
28 index 5ee27f8cf23..00000000000
29 --- a/app-crypt/sbsigntool/sbsigntool-0.8.ebuild
30 +++ /dev/null
31 @@ -1,46 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="5"
36 -
37 -inherit eutils toolchain-funcs autotools-utils
38 -
39 -DESCRIPTION="Utilities for signing and verifying files for UEFI Secure Boot"
40 -HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jejb/sbsigntools.git/"
41 -SRC_URI="https://dev.gentoo.org/~tamiko/distfiles/${P}.tar.gz
42 - https://dev.gentoo.org/~tamiko/distfiles/${P}-ccan.tar.gz"
43 -
44 -LICENSE="GPL-3 LGPL-3 LGPL-2.1 CC0-1.0"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm64 ~x86"
47 -IUSE="libressl"
48 -
49 -RDEPEND="
50 - !libressl? ( dev-libs/openssl:0= )
51 - libressl? ( dev-libs/libressl:0= )
52 - sys-apps/util-linux"
53 -DEPEND="${RDEPEND}
54 - sys-apps/help2man
55 - sys-boot/gnu-efi
56 - sys-libs/binutils-libs
57 - virtual/pkgconfig"
58 -
59 -S="${WORKDIR}"
60 -
61 -src_prepare() {
62 - local iarch
63 - case ${ARCH} in
64 - amd64) iarch=x86_64 ;;
65 - arm64) iarch=aarch64 ;;
66 - ia64) iarch=ia64 ;;
67 - x86) iarch=ia32 ;;
68 - *) die "unsupported architecture: ${ARCH}" ;;
69 - esac
70 - sed -i "/^EFI_ARCH=/s:=.*:=${iarch}:" configure.ac || die
71 - sed -i 's/-m64$/& -march=x86-64/' tests/Makefile.am || die
72 - sed -i "/^AR /s:=.*:= $(tc-getAR):" lib/ccan/Makefile.in || die #481480
73 -
74 - AUTOTOOLS_IN_SOURCE_BUILD=1
75 - AUTOTOOLS_AUTORECONF=true
76 - autotools-utils_src_prepare
77 -}