summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2021-09-04 17:10:34 -0500
committerWilliam Hubbs <williamh@gentoo.org>2021-09-04 17:10:34 -0500
commit2719f5f9108d1d662cfc4dc5dfc8b26a7bc600ae (patch)
treee32d54c99445eeb02e93f6a01843222e938fc9ba /app-misc/notary
parentapp-misc/notary: 0.7.0 bump (diff)
downloadgentoo-2719f5f9108d1d662cfc4dc5dfc8b26a7bc600ae.tar.gz
gentoo-2719f5f9108d1d662cfc4dc5dfc8b26a7bc600ae.tar.bz2
gentoo-2719f5f9108d1d662cfc4dc5dfc8b26a7bc600ae.zip
app-misc/notary: remove old
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'app-misc/notary')
-rw-r--r--app-misc/notary/Manifest1
-rw-r--r--app-misc/notary/notary-0.6.1-r2.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/app-misc/notary/Manifest b/app-misc/notary/Manifest
index 93321a20bbdf..d9d54ecd62f3 100644
--- a/app-misc/notary/Manifest
+++ b/app-misc/notary/Manifest
@@ -1,2 +1 @@
-DIST notary-0.6.1.tar.gz 5741924 BLAKE2B 125e1e09178f090de9d73bb97170737d03c8f43927cf070a2c78e0c5eff3cd56a58aaf703a4ba60aa3e1bd7e22d2ceb0921abaa98e6f871ed1131249e44c622d SHA512 76e223c0c5c59796db924f0e52ea59d2bdbb101a9a059cd70d336928dcac616943d75fc9b8d7703de8609b2f694d2fc5627deb341971dc9401c00974261d57c3
DIST notary-0.7.0.tar.gz 7146025 BLAKE2B 2aafa82e27eb498d21d09781b54f9a40df57ba23fd4386b5d8fdc0eb09a74b761a1bc3c618ad2403b21e049c4dfb9e75281e949cc8f29474da6903d5fc06ede3 SHA512 8996f4d64fda5db54d460ae8168360fdde86986752b30255ab9cf9cf12d475f88d7ac4f2b0e15d6cb9ee8eff2709306fd0b3d38708ee41caa94862d795ca6a75
diff --git a/app-misc/notary/notary-0.6.1-r2.ebuild b/app-misc/notary/notary-0.6.1-r2.ebuild
deleted file mode 100644
index 840f089bb574..000000000000
--- a/app-misc/notary/notary-0.6.1-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit golang-vcs-snapshot golang-build
-
-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"
-
-RDEPEND="
- acct-group/notary
- acct-user/notary
-"
-BDEPEND="${RDEPEND}"
-
-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
-}