Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/sbsigntool/
Date: Mon, 22 Feb 2016 20:39:45
Message-Id: 1456173515.5569704ec689aa51a30a213850e13cf338c3faf3.vapier@gentoo
1 commit: 5569704ec689aa51a30a213850e13cf338c3faf3
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 22 15:39:21 2016 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 22 20:38:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5569704e
7
8 app-crypt/sbsigntool: drop old <0.6 versions
9
10 app-crypt/sbsigntool/sbsigntool-0.6.ebuild | 36 ------------------------------
11 1 file changed, 36 deletions(-)
12
13 diff --git a/app-crypt/sbsigntool/sbsigntool-0.6.ebuild b/app-crypt/sbsigntool/sbsigntool-0.6.ebuild
14 deleted file mode 100644
15 index 5810850..0000000
16 --- a/app-crypt/sbsigntool/sbsigntool-0.6.ebuild
17 +++ /dev/null
18 @@ -1,36 +0,0 @@
19 -# Copyright 1999-2013 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI="4"
24 -
25 -inherit toolchain-funcs
26 -
27 -DESCRIPTION="Utilities for signing and verifying files for UEFI Secure Boot"
28 -HOMEPAGE="https://launchpad.net/ubuntu/+source/sbsigntool"
29 -SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${PV}.orig.tar.gz"
30 -
31 -LICENSE="GPL-3"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -IUSE=""
35 -
36 -RDEPEND="dev-libs/openssl
37 - sys-apps/util-linux"
38 -DEPEND="${RDEPEND}
39 - sys-apps/help2man
40 - sys-boot/gnu-efi
41 - virtual/pkgconfig"
42 -
43 -src_prepare() {
44 - local iarch
45 - case ${ARCH} in
46 - ia64) iarch=ia64 ;;
47 - x86) iarch=ia32 ;;
48 - amd64) iarch=x86_64 ;;
49 - *) die "unsupported architecture: ${ARCH}" ;;
50 - esac
51 - sed -i "/^EFI_ARCH=/s:=.*:=${iarch}:" configure || die
52 - sed -i 's/-m64$/& -march=x86-64/' tests/Makefile.in || die
53 - sed -i "/^AR /s:=.*:= $(tc-getAR):" lib/ccan/Makefile.in || die #481480
54 -}