Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/teleport/
Date: Tue, 09 Apr 2019 12:06:25
Message-Id: 1554811562.9d3641b3e0bac117acca8ceaf6e5ecc2bd5572fd.monsieurp@gentoo
1 commit: 9d3641b3e0bac117acca8ceaf6e5ecc2bd5572fd
2 Author: Graeme Lawes <graemelawes <AT> gmail <DOT> com>
3 AuthorDate: Thu Mar 7 00:41:36 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 12:06:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3641b3
7
8 sys-cluster/teleport: remove v2.6.7.
9
10 Signed-off-by: Graeme Lawes <graemelawes <AT> gmail.com>
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 sys-cluster/teleport/Manifest | 1 -
14 sys-cluster/teleport/teleport-2.6.7.ebuild | 49 ------------------------------
15 2 files changed, 50 deletions(-)
16
17 diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
18 index f933f87e972..dfd4ed553fa 100644
19 --- a/sys-cluster/teleport/Manifest
20 +++ b/sys-cluster/teleport/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402 SHA512 45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3
23 DIST teleport-2.7.9.tar.gz 18221805 BLAKE2B c634f97008310c4cabf4020bc8a600de7eb92406e22082aee24b030a5cd8d6bff44b0e0e3ddf405013315064d3342544d0e6f43e120047991e7889e4b1a74f9c SHA512 b609f94f9432c8b205a4cda625c68318343a3472218cd883f003a30587a00963163258c53c25f3fe36a951fc0bd40fdf141fe955b6d36d49435cfd4eff106b59
24 DIST teleport-3.1.8.tar.gz 22605752 BLAKE2B 2ddebb0b0c8c42d36d113e409ce04f194e5ed77a7d88dd3e0a5982e303b8db8e013b156693c5fcd038d9d81f2907d17fdb65f82b34bdc84379bb0c46498e53a5 SHA512 de834309f96c327b54470deec043a498da969c5f3a872777a44143fceb070bd1c9ee837f218f46dc5b82ee1b40fb869a422b8cf9c22d26618f07a069de165f6e
25 DIST teleport-3.2.0.tar.gz 22613098 BLAKE2B 0ff9675a071f5fb660ad4a7b0e085b9bec01c3d0967bdd206ce29a51addae545c4b2621854cbffdc0f76d0cbc6e5ec8f39e082b80b26ba13d352b1add199c965 SHA512 a3fdb520a62361f78632ac1680f86f183a533e47696791586b3c5ff7d505eb167a881c438c6a3dd72395140c521c065c8d8e4b93b5b8c9cbf134688dd8c1f8da
26
27 diff --git a/sys-cluster/teleport/teleport-2.6.7.ebuild b/sys-cluster/teleport/teleport-2.6.7.ebuild
28 deleted file mode 100644
29 index e7bfb7ce040..00000000000
30 --- a/sys-cluster/teleport/teleport-2.6.7.ebuild
31 +++ /dev/null
32 @@ -1,49 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -inherit golang-build systemd
38 -
39 -DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
40 -HOMEPAGE="https://gravitational.com/teleport"
41 -
42 -EGO_PN="github.com/gravitational/${PN}/..."
43 -
44 -if [[ ${PV} == "9999" ]] ; then
45 - inherit git-r3 golang-vcs
46 - EGIT_REPO_URI="https://github.com/gravitational/${PN}.git"
47 -else
48 - inherit golang-vcs-snapshot
49 - SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 - KEYWORDS="~amd64 ~arm"
51 -fi
52 -
53 -IUSE="pam"
54 -LICENSE="Apache-2.0"
55 -RESTRICT="test strip"
56 -SLOT="0"
57 -
58 -DEPEND="app-arch/zip"
59 -RDEPEND="pam? ( sys-libs/pam )"
60 -
61 -src_compile() {
62 - BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
63 -}
64 -
65 -src_install() {
66 - keepdir /var/lib/${PN} /etc/${PN}
67 - dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
68 -
69 - insinto /etc/${PN}
70 - newins "${FILESDIR}"/${PN}-2.yaml ${PN}.yaml
71 -
72 - newinitd "${FILESDIR}"/${PN}.init.d ${PN}
73 - newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
74 -
75 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
76 - systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
77 -}
78 -
79 -src_test() {
80 - BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
81 -}