Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssss/
Date: Sun, 10 May 2020 16:22:47
Message-Id: 1589127730.bc795bce28ad719c5773bfc9c0746322e079dd9e.conikost@gentoo
1 commit: bc795bce28ad719c5773bfc9c0746322e079dd9e
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 14:38:39 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 16:22:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc795bce
7
8 app-crypt/ssss: drop old version
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 app-crypt/ssss/ssss-0.5.ebuild | 39 ---------------------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild
17 deleted file mode 100644
18 index f9d6d9eb8ce..00000000000
19 --- a/app-crypt/ssss/ssss-0.5.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Shamir's Secret Sharing Scheme"
30 -HOMEPAGE="http://point-at-infinity.org/ssss/"
31 -SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
32 -
33 -KEYWORDS="amd64 x86"
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -
37 -RDEPEND="dev-libs/gmp:0="
38 -DEPEND="${RDEPEND}"
39 -BDEPEND="app-doc/xmltoman"
40 -
41 -DOCS=( "HISTORY" "THANKS" )
42 -HTML_DOCS=( "doc.html" "ssss.1.html" )
43 -
44 -src_prepare() {
45 - default
46 -
47 - tc-export CC
48 -
49 - # Respect users CFLAGS and don't strip, as portage does this part.
50 - sed -e 's/-O2/$(CFLAGS)/g' -e '/strip/d' -i Makefile || die
51 -}
52 -
53 -src_install() {
54 - dobin ssss-split
55 - dosym ssss-split /usr/bin/ssss-combine
56 -
57 - doman ssss.1
58 -
59 - einstalldocs
60 -}