From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9355859CAF for ; Sun, 3 Apr 2016 23:27:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1234AE0806; Sun, 3 Apr 2016 23:27:24 +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 92E4DE0806 for ; Sun, 3 Apr 2016 23:27:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5CB3A340861 for ; Sun, 3 Apr 2016 23:27:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 427CF88 for ; Sun, 3 Apr 2016 23:27: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: <1459726031.5054a5e3d651e02f31e4571bac1dd0ad7fd64b7a.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/vault/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/vault/Manifest app-admin/vault/vault-0.5.2.ebuild X-VCS-Directories: app-admin/vault/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 5054a5e3d651e02f31e4571bac1dd0ad7fd64b7a X-VCS-Branch: master Date: Sun, 3 Apr 2016 23:27: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: 91b339fe-75bc-412b-94b6-2c1144563006 X-Archives-Hash: ac2ac2f891aa71807db8fc1c55a97e1e commit: 5054a5e3d651e02f31e4571bac1dd0ad7fd64b7a Author: Zac Medico gentoo org> AuthorDate: Sun Apr 3 23:26:37 2016 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Apr 3 23:27:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5054a5e3 app-admin/vault: version bump to 0.5.2 Package-Manager: portage-2.2.28 app-admin/vault/Manifest | 1 + app-admin/vault/vault-0.5.2.ebuild | 72 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest index cbbaea3..f76414b 100644 --- a/app-admin/vault/Manifest +++ b/app-admin/vault/Manifest @@ -1 +1,2 @@ DIST vault-0.4.1.tar.gz 2108269 SHA256 e986424d9bb0ace5450e8ed576d102f1d2d3a9d2d4c2046710aa55464a9fc296 SHA512 5b46e7f28e4b79f48bdc03ee65177a2cc3e10b71a05f34bb78f9c00ee6b4249447c39f3830ce5bfa7a8289fad5fa532420f769c21bfc33168cfed86bacc228f5 WHIRLPOOL 5b5d65931dcb381f659fa423765783a78f812420c4de29102a50da8d7215fb96e34de39f407917a12a7aa21c3bbc01c751df278676aaefdd620edf6910949dbc +DIST vault-0.5.2.tar.gz 3590947 SHA256 f68382963a339d8e078d2b5dae55f4ce45f5637903646d842e1c99dff0108c96 SHA512 38df443b3725ead5911960ab23bdc562d0b8adefb26db569d91c951f5e4e863c902a4fba6dcb56477df61754050c86bd8c252acbe2ba378a36ca87b6ef552e25 WHIRLPOOL 00eecc08eeeca090a327dd8d469e782503ff6864faf1ed493067b830422fb232fe832a7b4b7dcf4c711db104b149eb87700af0259327ba37822d7d875289c38b diff --git a/app-admin/vault/vault-0.5.2.ebuild b/app-admin/vault/vault-0.5.2.ebuild new file mode 100644 index 0000000..43475f7 --- /dev/null +++ b/app-admin/vault/vault-0.5.2.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit fcaps golang-vcs-snapshot systemd user + +EGO_PN="github.com/hashicorp/${PN}/..." +DESCRIPTION="A tool for managing secrets" +HOMEPAGE="https://vaultproject.io/" +SRC_URI="https://${EGO_PN%/*}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SLOT="0" +LICENSE="MPL-2.0" +KEYWORDS="~amd64" +IUSE="" + +RESTRICT="test" + +DEPEND="" +RDEPEND="" + +STRIP_MASK="*.a" + +S="${WORKDIR}/${P}" + +FILECAPS=( + -m 755 'cap_ipc_lock=+ei' usr/bin/${PN} +) + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} +} + +src_compile() { + GOPATH=${S} GO15VENDOREXPERIMENT=1 \ + go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" || die +} + +src_install() { + local x + + dodoc "${S}"/src/${EGO_PN%/*}/{CHANGELOG.md,CONTRIBUTING.md,README.md} + 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 + + keepdir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + + dobin "${S}/bin/${PN}" + + rm -rf "${S}"/{src,pkg/$(go env GOOS)_$(go env GOARCH)}/${EGO_PN%/*}/vendor + find "${S}"/src/${EGO_PN%/*} -mindepth 1 -maxdepth 1 -type f -delete || die + + while read -r -d '' x; do + x=${x#${S}/src} + [[ -d ${S}/pkg/$(go env GOOS)_$(go env GOARCH)/${x} || + -f ${S}/pkg/$(go env GOOS)_$(go env GOARCH)/${x}.a ]] && continue + rm -rf "${S}"/src/${x} + done < <(find "${S}"/src/${EGO_PN%/*} -mindepth 1 -maxdepth 1 -type d -print0) + insopts -m0644 -p # preserve timestamps for bug 551486 + insinto $(dirname "$(get_golibdir)/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}") + doins -r "${S}"/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*} + insinto $(dirname "$(get_golibdir)/src/${EGO_PN%/*}") + doins -r "${S}"/src/${EGO_PN%/*} +}