From 51536d2fe4697ba9114d611178bb9e20d3d5b729 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 23 Dec 2017 20:48:53 +0000 Subject: gentoo resync : 23.12.2017 --- app-crypt/cfssl/Manifest | 4 ++-- app-crypt/cfssl/cfssl-1.2.0_p20170601.ebuild | 36 ---------------------------- app-crypt/cfssl/cfssl-1.2.0_p20171207.ebuild | 34 ++++++++++++++++++++++++++ 3 files changed, 36 insertions(+), 38 deletions(-) delete mode 100644 app-crypt/cfssl/cfssl-1.2.0_p20170601.ebuild create mode 100644 app-crypt/cfssl/cfssl-1.2.0_p20171207.ebuild (limited to 'app-crypt/cfssl') diff --git a/app-crypt/cfssl/Manifest b/app-crypt/cfssl/Manifest index 9023e1948fc8..cbbba0e788b5 100644 --- a/app-crypt/cfssl/Manifest +++ b/app-crypt/cfssl/Manifest @@ -1,5 +1,5 @@ -DIST cfssl-1.2.0_p20170601.tar.gz 8025105 BLAKE2B cc87451f23e5a495816980d65bd32f270f6982940368afed7d13591dd8c0d56665e666bc555abc4e0b2f5a5cfd997a18b8a6a9f757c9ea6ec62c82448de1b72d SHA512 f89d6b142eb5286b720c9d94534c474b15738c6a856999588392b37ffa753e0f0c9d663debee9cc216be765d8f39a71872401173a56293cdca2f2d1791c3d758 DIST cfssl-1.2.0_p20170915.tar.gz 8027590 BLAKE2B 5361a9ba7f08d3940aa5e27f65b55359871d85dcf8e4f21b6e59a9f3c9741490b16898e2001133742dfa1294927b0b322ffd5bdf836754851bed0c176bc710da SHA512 247ee892f7785ae11e8b2d38c1fdad0a3bcea9d9e410ce1bc985d15fad65b981c46e317cbb0fe0cacf190dfbbad7b9f8685f6ddd2a24056dd61e621b2cccd232 -EBUILD cfssl-1.2.0_p20170601.ebuild 853 BLAKE2B 9f2244e352c0f02a3cc40bb6e3e455892be6b3d30a8ebf824e66345847e2fcbd953dca466058600d5d8f2ec0969d9c66ce72bc3f4352a23063a40629403aa4d7 SHA512 629df8b18734def976f92fd14002edc98d1633cbcf7ad1884f5cdee0c80d30f14879bb1e8689ab05db31a19dffd8d7fd682b72065ae3666cef4efa339ccd69da +DIST cfssl-1.2.0_p20171207.tar.gz 8028127 BLAKE2B 35bb2b6fa08345dd6042742891cc0ad87ffac3cd24e8f16551e7e4e36b7f11caf4baafee961666ed95cf14e77cf4e24e11f7d8d85503abfc42a8fe3fbc2fe758 SHA512 d94f27bcc5f59fb2882f6db802baff9706461f1a823706810f7ab5911fcdd3abc9150060df0aa756478774cf3b5e06aec0b11cefce32ff3c6ff85948b8624356 EBUILD cfssl-1.2.0_p20170915.ebuild 815 BLAKE2B a6614c4a40fe991765dd68152636ff25755e9b0563f9ac09e62470423b4c7cac507702218fe28c91dc6f7e5c142e30536220c88b21a92423146c210bea8488c0 SHA512 8501dc18bb7796834fd17dec4387c33b3c94dcc9f3a24d55d990c8cab994c64db0831474d7ddac2030c39a3649953d998f0f32b506b86aab4cc06804da2a38d7 +EBUILD cfssl-1.2.0_p20171207.ebuild 815 BLAKE2B e6c8bacf23c21205030b323817b741ddac611935205e33d6eca62643325e1bb7b7969f9629461d80a35f9c72a2326d89db9166d31115d3c559c06301cacfddfa SHA512 068ed8bb974107a1f921207e9e4a136adc0fc6375f12932c1398465796387a8bbc58c9dcfa2fffb19ca161616d2a1cbcaa1a07fc8bf609c40176d46e08112f51 MISC metadata.xml 326 BLAKE2B 519dd19dc05c50ee2b35580a1ca47b6be4438fcd5737775b098f2bf7cebd7ec3ff88a3d5c9c27a256cedaaddac4b6eeb20f1dfb442d651a7ec31453c309c7c52 SHA512 11be8680812e220202583bd324d756909056b58b9fdc74c769bd1beacc97292c9dc0d7a396bc6018c77d050081654726dfc659b43efc957175d2e2fc57039ffa diff --git a/app-crypt/cfssl/cfssl-1.2.0_p20170601.ebuild b/app-crypt/cfssl/cfssl-1.2.0_p20170601.ebuild deleted file mode 100644 index 7b35026cf94e..000000000000 --- a/app-crypt/cfssl/cfssl-1.2.0_p20170601.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGO_PN="github.com/cloudflare/${PN}" -EGIT_COMMIT="9c06c53d4dfb9c0272c983a26ea10a6a2da12392" -inherit golang-build golang-vcs-snapshot - -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64" - -DESCRIPTION="Cloudflare's PKI and TLS toolkit" -HOMEPAGE="https://github.com/cloudflare/cfssl" -SRC_URI="${ARCHIVE_URI}" -LICENSE="BSD-2" -SLOT="0" -IUSE="hardened" - -RDEPEND="!!dev-lang/mono" #File collision (bug 614364) - -RESTRICT="test" - -src_compile() { - export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" - pushd src || die - GOPATH="${S}" go install github.com/cloudflare/cfssl/cmd/... || die - popd || die -} - -src_install() { - dobin bin/* - pushd src/${EGO_PN} || die - dodoc CHANGELOG README.md - popd || die -} diff --git a/app-crypt/cfssl/cfssl-1.2.0_p20171207.ebuild b/app-crypt/cfssl/cfssl-1.2.0_p20171207.ebuild new file mode 100644 index 000000000000..265e24503661 --- /dev/null +++ b/app-crypt/cfssl/cfssl-1.2.0_p20171207.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +EGO_PN="github.com/cloudflare/${PN}" +EGIT_COMMIT="d2393674072314fda47d2c7c16cb7fd4cdc16821" +inherit golang-build golang-vcs-snapshot + +SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="Cloudflare's PKI and TLS toolkit" +HOMEPAGE="https://github.com/cloudflare/cfssl" +LICENSE="BSD-2" +SLOT="0" +IUSE="hardened" + +RDEPEND="!!dev-lang/mono" #File collision (bug 614364) + +RESTRICT="test" + +src_compile() { + pushd src || die + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${S}" go install github.com/cloudflare/cfssl/cmd/... || die + popd || die +} + +src_install() { + dobin bin/* + pushd src/${EGO_PN} || die + dodoc CHANGELOG README.md + popd || die +} -- cgit v1.2.3