From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 54990139345 for ; Thu, 15 Jul 2021 19:52:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DD59E0B23; Thu, 15 Jul 2021 19:52:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64966E0B23 for ; Thu, 15 Jul 2021 19:52:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14669342CB9 for ; Thu, 15 Jul 2021 19:52:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 765807D3 for ; Thu, 15 Jul 2021 19:52:19 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626378713.bcc8a557d26298d6d2b38d36bc8672dd3c644ea5.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/zetcd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/zetcd/zetcd-0.0.4-r1.ebuild X-VCS-Directories: sys-cluster/zetcd/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: bcc8a557d26298d6d2b38d36bc8672dd3c644ea5 X-VCS-Branch: master Date: Thu, 15 Jul 2021 19:52:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9f0a6de3-f749-4381-82d3-8afbe7788791 X-Archives-Hash: e057b9d7e994446a2a6c14fa4e7719ef commit: bcc8a557d26298d6d2b38d36bc8672dd3c644ea5 Author: Conrad Kostecki gentoo org> AuthorDate: Thu Jul 15 19:51:53 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Jul 15 19:51:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcc8a557 sys-cluster/zetcd: drop old version Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> sys-cluster/zetcd/zetcd-0.0.4-r1.ebuild | 51 --------------------------------- 1 file changed, 51 deletions(-) diff --git a/sys-cluster/zetcd/zetcd-0.0.4-r1.ebuild b/sys-cluster/zetcd/zetcd-0.0.4-r1.ebuild deleted file mode 100644 index 4d1396390a6..00000000000 --- a/sys-cluster/zetcd/zetcd-0.0.4-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -EGO_PN="github.com/coreos/zetcd" - -EGO_VENDOR=( "github.com/coreos/etcd 714e7ec8db7f8398880197be10771fe89c480ee5" - "google.golang.org/grpc 777daa17ff9b5daef1cfdf915088a2ada3332bf0 github.com/grpc/grpc-go" - "github.com/golang/protobuf 4bd1920723d7b7c925de087aa32e2187708897f7" - "google.golang.org/genproto ee236bd376b077c7a89f260c026c4735b195e459 github.com/google/go-genproto" -) - -ZETCD_COMMIT="e4352ce3cc940bc5b60bb3dd69c14f16dac2980a" - -inherit golang-build golang-vcs-snapshot - -ARCHIVE_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -DESCRIPTION="A ZooKeeper personality for etcd" -HOMEPAGE="https://github.com/coreos/zetcd" -SRC_URI=" - ${ARCHIVE_URI} - ${EGO_VENDOR_URI} -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -RESTRICT="test" - -DEPEND="acct-group/zetcd" -RDEPEND="${DEPEND}" - -src_compile() { - pushd src || die - GOPATH="${WORKDIR}/${P}" go build -o ${EGO_PN}/bin/zetcd -v \ - -ldflags "-X ${EGO_PN}/version.Version=${PV} -X ${EGO_PN}/version.SHA=$ZETCD_COMMIT" \ - ${EGO_PN}/cmd/zetcd || die - popd || die -} - -src_install() { - dobin src/${EGO_PN}/bin/* - dodoc src/${EGO_PN}/README.md - keepdir /var/log/zetcd - fowners -R ${PN}:${PN} /var/log/${PN} - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} -}