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 28EEA138502 for ; Thu, 20 Oct 2016 06:44:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B015E07F4; Thu, 20 Oct 2016 06:44:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F29AE07F4 for ; Thu, 20 Oct 2016 06:44:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC69E341527 for ; Thu, 20 Oct 2016 06:44:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61AD07E1 for ; Thu, 20 Oct 2016 06:44:19 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1476945830.16a8fea741fce3669a5ef97d0395ae388c42b6c1.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/consul-template/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/consul-template/consul-template-9999.ebuild X-VCS-Directories: app-admin/consul-template/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 16a8fea741fce3669a5ef97d0395ae388c42b6c1 X-VCS-Branch: master Date: Thu, 20 Oct 2016 06:44: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-Archives-Salt: 580164f0-df1e-44aa-a443-43d0b5838e1a X-Archives-Hash: 13ad99aa50126ce934c1ae145f12b49a commit: 16a8fea741fce3669a5ef97d0395ae388c42b6c1 Author: Zac Medico gentoo org> AuthorDate: Thu Oct 20 06:43:50 2016 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Oct 20 06:43:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a8fea7 app-admin/consul-template: remove unmaintained 9999 ebuild Package-Manager: portage-2.3.2 .../consul-template/consul-template-9999.ebuild | 69 ---------------------- 1 file changed, 69 deletions(-) diff --git a/app-admin/consul-template/consul-template-9999.ebuild b/app-admin/consul-template/consul-template-9999.ebuild deleted file mode 100644 index 0dcf7f1..00000000 --- a/app-admin/consul-template/consul-template-9999.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit git-r3 golang-base systemd user - -KEYWORDS="" -DESCRIPTION="Generic template rendering and notifications with Consul" -GO_PN="github.com/hashicorp/${PN}" -HOMEPAGE="http://${GO_PN}" -EGIT_REPO_URI="git://${GO_PN}.git" -LICENSE="MPL-2.0" -SLOT="0" -IUSE="test" - -DEPEND=">=dev-lang/go-1.4:= - test? ( dev-go/go-tools ) - app-admin/consul - app-admin/vault" -RDEPEND="" - -SRC_URI="" -STRIP_MASK="*.a" -S="${WORKDIR}/src/${GO_PN}" -EGIT_CHECKOUT_DIR="${S}" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - -src_unpack() { - export GOPATH=${WORKDIR}:$(get_golibdir_gopath) - git-r3_src_unpack - go get -d -v ./... $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) || die -} - -src_prepare() { - sed -e 's|build: deps|build:|' -e 's|test: deps|test:|' \ - -i Makefile || die - - # Disable tests that fail under network-sandbox - sed -e 's:TestRun_onceFlag(:_\0:' -i cli_test.go || die - sed -e 's:TestRunner_quiescence(:_\0:' -i runner_test.go || die -} - -src_compile() { - emake build -} - -src_install() { - local x - - dobin bin/${PN} - dodoc README.md - - keepdir /var/log/${PN} - fowners ${PN}:${PN} /var/log/${PN} - - newinitd "${FILESDIR}/${PN}.initd" "${PN}" - newconfd "${FILESDIR}/${PN}.confd" "${PN}" - systemd_dounit "${FILESDIR}/${PN}.service" - - keepdir /etc/${PN}.d - insinto /etc/${PN}.d - doins "${FILESDIR}/"*.json.example -}