Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/cfssl/
Date: Wed, 14 Feb 2018 21:48:49
Message-Id: 1518644914.ef7bcf59e264712fa3b19ad83fc85a136530fb1e.mrueg@gentoo
1 commit: ef7bcf59e264712fa3b19ad83fc85a136530fb1e
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 14 21:48:34 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 14 21:48:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7bcf59
7
8 app-crypt/cfssl: Remove old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-crypt/cfssl/Manifest | 1 -
13 app-crypt/cfssl/cfssl-1.2.0_p20170915.ebuild | 34 ----------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/app-crypt/cfssl/Manifest b/app-crypt/cfssl/Manifest
17 index b9ca40cd9e6..125fa745a9b 100644
18 --- a/app-crypt/cfssl/Manifest
19 +++ b/app-crypt/cfssl/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST cfssl-1.2.0_p20170915.tar.gz 8027590 BLAKE2B 5361a9ba7f08d3940aa5e27f65b55359871d85dcf8e4f21b6e59a9f3c9741490b16898e2001133742dfa1294927b0b322ffd5bdf836754851bed0c176bc710da SHA512 247ee892f7785ae11e8b2d38c1fdad0a3bcea9d9e410ce1bc985d15fad65b981c46e317cbb0fe0cacf190dfbbad7b9f8685f6ddd2a24056dd61e621b2cccd232
22 DIST cfssl-1.2.0_p20171207.tar.gz 8028127 BLAKE2B 35bb2b6fa08345dd6042742891cc0ad87ffac3cd24e8f16551e7e4e36b7f11caf4baafee961666ed95cf14e77cf4e24e11f7d8d85503abfc42a8fe3fbc2fe758 SHA512 d94f27bcc5f59fb2882f6db802baff9706461f1a823706810f7ab5911fcdd3abc9150060df0aa756478774cf3b5e06aec0b11cefce32ff3c6ff85948b8624356
23 DIST cfssl-1.3.0.tar.gz 4378109 BLAKE2B 4bc77b3aa8b47e0e5a434ff50e99cde44b750743dc58c18736acfd0115f6cb03533c0d4ff6e54111cdfc2a8c7d6d83539d07de5fddb03eda8a8a95b8b573e767 SHA512 0db85e82e10982f0c0c03fcae20fbc1936018f7252517cbd9a6150ff5d8f41c5e4719814a8a64a424065e4813b7da073e4ebb50306e1d673f0de7706a0c0e2fd
24
25 diff --git a/app-crypt/cfssl/cfssl-1.2.0_p20170915.ebuild b/app-crypt/cfssl/cfssl-1.2.0_p20170915.ebuild
26 deleted file mode 100644
27 index 17742ad0c2c..00000000000
28 --- a/app-crypt/cfssl/cfssl-1.2.0_p20170915.ebuild
29 +++ /dev/null
30 @@ -1,34 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -EGO_PN="github.com/cloudflare/${PN}"
37 -EGIT_COMMIT="7d88da830aad9d533c2fb8532da23f6a75331b52"
38 -inherit golang-build golang-vcs-snapshot
39 -
40 -SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
41 -KEYWORDS="~amd64"
42 -
43 -DESCRIPTION="Cloudflare's PKI and TLS toolkit"
44 -HOMEPAGE="https://github.com/cloudflare/cfssl"
45 -LICENSE="BSD-2"
46 -SLOT="0"
47 -IUSE="hardened"
48 -
49 -RDEPEND="!!dev-lang/mono" #File collision (bug 614364)
50 -
51 -RESTRICT="test"
52 -
53 -src_compile() {
54 - pushd src || die
55 - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${S}" go install github.com/cloudflare/cfssl/cmd/... || die
56 - popd || die
57 -}
58 -
59 -src_install() {
60 - dobin bin/*
61 - pushd src/${EGO_PN} || die
62 - dodoc CHANGELOG README.md
63 - popd || die
64 -}