From 8aebb228036d5e2863b7eaa6e319ab41c1669269 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 16 Apr 2018 16:47:37 +0100 Subject: gentoo resync : 16.04.2018 --- app-misc/notary/Manifest | 2 +- app-misc/notary/notary-0.6.1-r1.ebuild | 46 ++++++++++++++++++++++++++++++++++ app-misc/notary/notary-0.6.1.ebuild | 42 ------------------------------- 3 files changed, 47 insertions(+), 43 deletions(-) create mode 100644 app-misc/notary/notary-0.6.1-r1.ebuild delete mode 100644 app-misc/notary/notary-0.6.1.ebuild (limited to 'app-misc/notary') diff --git a/app-misc/notary/Manifest b/app-misc/notary/Manifest index 00a11d7b1f27..292257447e4f 100644 --- a/app-misc/notary/Manifest +++ b/app-misc/notary/Manifest @@ -3,5 +3,5 @@ AUX notary-server.initd 568 BLAKE2B a38ceeadc4d3bd663dced340da3040b352081dce6d27 AUX notary-signer.confd 103 BLAKE2B 461b38b6c8d97e7c8cedb88e48eca0342174434a819d99883496a9622fd04c19d097a498195c9e37246420f4f01fef07219bd4c9e76dc26cf8b70d9ce43ab1c7 SHA512 088bbd2eabf1e9be673b35a4a481c270ba2ccea479ef1164804ecead730a61465862888e7cbff53976056826d4ff066e1e2ab253cd6e3287109d03873c11777b AUX notary-signer.initd 568 BLAKE2B a0041a57049a1709ffb0906e4cef2e6cad32172c52bddc77917e7f6293a4deba79ae0d965db53fb537d66d91dc6b06230f91d14971c408f60182b350b6a672af SHA512 325614982f75f33a9fd59a6183255fa61158c4b2288f2d06e4d88c8f1f43dc5df83c85e8ecdf40cf19f9a00b51ba641fc024d863f220b6aac8e530e17e7eb3a2 DIST notary-0.6.1.tar.gz 5741924 BLAKE2B 125e1e09178f090de9d73bb97170737d03c8f43927cf070a2c78e0c5eff3cd56a58aaf703a4ba60aa3e1bd7e22d2ceb0921abaa98e6f871ed1131249e44c622d SHA512 76e223c0c5c59796db924f0e52ea59d2bdbb101a9a059cd70d336928dcac616943d75fc9b8d7703de8609b2f694d2fc5627deb341971dc9401c00974261d57c3 -EBUILD notary-0.6.1.ebuild 1422 BLAKE2B a824bb0a87981eb09efe3af14a1c8729174e525cf1049f659f74d6e53e1d1dd8017b9b4b9638247b611e6fe97527495ed040ed9a2a4d5022ef9125520fdc24bd SHA512 d1b94bf279eadebe172ac7f22079d230b244ee3718f75274f2054a4d0d65bb150148eb8c0b10c14ebede61013499fb0ef3a5fbbb90666c53699ea9d423534614 +EBUILD notary-0.6.1-r1.ebuild 1654 BLAKE2B e3d50255904169cd8c1bcc4142464a8c4eea30522e58be5fb38b7a90944a2cf72620e39d4600e8a9bdca8a96a276ce632ee812a67fb3edc1ab80d59681599a2f SHA512 bb6b3601e91bc912d0ca062832fdf067dd40eef167e102577fe4bafd560de76e4839cef92f0d207e1480a9e28c441165fad5f68157b588738c24dbf0af42f9b7 MISC metadata.xml 345 BLAKE2B d1f59c5babe626b5a04645c4ef693cad477fc053d0730464e4b48bee515555ded5a583ca2ae246b80af310e096c334e99717af8e1be3adf692a4c9cf8f97c430 SHA512 6a57f443fe0f4e857d41a7af2658e9eac580750e7eeeab5ea6ebd5cea154c3baf74c838095c0c97493c344525d3377e3559b7c05ca5d141bdb5efda85a13eb22 diff --git a/app-misc/notary/notary-0.6.1-r1.ebuild b/app-misc/notary/notary-0.6.1-r1.ebuild new file mode 100644 index 000000000000..00221646040f --- /dev/null +++ b/app-misc/notary/notary-0.6.1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit golang-vcs-snapshot golang-build user + +KEYWORDS="~amd64" +DESCRIPTION="A project that allows anyone to have trust over arbitrary collections of data" +EGO_PN="github.com/theupdateframework/notary" +GIT_COMMIT="d6e1431feb32348e0650bf7551ac5cffd01d857b" + +HOMEPAGE="https://github.com/theupdateframework/notary" +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} +} + +src_compile() { + pushd src/${EGO_PN} || die + GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ + ${EGO_PN}/cmd/notary-server || die + GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ + ${EGO_PN}/cmd/notary-signer || die + GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ + ${EGO_PN}/cmd/notary || die + popd || die +} + +src_install() { + dobin bin/${PN}{,-server,-signer} + pushd src/${EGO_PN} || die + insinto /var/lib/notary + doins -r migrations fixtures + fowners -R ${PN}:${PN} /var/lib/notary + fperms -R 0600 /var/lib/notary/fixtures/database/ + newinitd "${FILESDIR}"/notary-signer.initd notary-signer + newconfd "${FILESDIR}"/notary-signer.confd notary-signer + newinitd "${FILESDIR}"/notary-server.initd notary-server + newconfd "${FILESDIR}"/notary-server.confd notary-server +} diff --git a/app-misc/notary/notary-0.6.1.ebuild b/app-misc/notary/notary-0.6.1.ebuild deleted file mode 100644 index f0ee76af2337..000000000000 --- a/app-misc/notary/notary-0.6.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit golang-vcs-snapshot golang-build user - -KEYWORDS="~amd64" -DESCRIPTION="A project that allows anyone to have trust over arbitrary collections of data" -EGO_PN="github.com/theupdateframework/notary" -GIT_COMMIT="d6e1431feb32348e0650bf7551ac5cffd01d857b" - -HOMEPAGE="https://github.com/theupdateframework/notary" -SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - -src_compile() { - pushd src/${EGO_PN} || die - GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary-server || die - GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary-signer || die - GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary || die - popd || die -} - -src_install() { - dobin bin/${PN}{,-server,-signer} - pushd src/${EGO_PN} || die - insinto /var/lib/notary - doins -r migrations fixtures - fowners -R ${PN}:${PN} /var/lib/notary - fperms -R 0600 /var/lib/notary/fixtures/database/ -} -- cgit v1.2.3