Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/teleport/
Date: Thu, 26 Jul 2018 20:39:46
Message-Id: 1532637573.9e83b486cf2231bc67d9307304fd137d7a52829b.mgorny@gentoo
1 commit: 9e83b486cf2231bc67d9307304fd137d7a52829b
2 Author: Graeme Lawes <graemelawes <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 8 16:07:05 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 20:39:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e83b486
7
8 sys-cluster/teleport: remove v2.4.2
9
10 sys-cluster/teleport/Manifest | 1 -
11 sys-cluster/teleport/teleport-2.4.2.ebuild | 51 ------------------------------
12 2 files changed, 52 deletions(-)
13
14 diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
15 index ec5a8a5af89..36956f77158 100644
16 --- a/sys-cluster/teleport/Manifest
17 +++ b/sys-cluster/teleport/Manifest
18 @@ -1,4 +1,3 @@
19 -DIST teleport-2.4.2.tar.gz 9975909 BLAKE2B 68916e1d15f49448e918b39b2a760f90eca292b07f61e51cfe125eb99c6b36d95a528cfec40b62cd61893ce81edbf5f26066eb59063214369402e2a62d07bd5e SHA512 f9c2f923e05c8fa0b82708955c944e1bd35da2e6bf8b673832e76c91b918a4bc6d6666797faf0f7572cfaa7341991ef8937cd9b374cdc273271aff45f96b2960
20 DIST teleport-2.4.5.tar.gz 9975753 BLAKE2B cdb6e577cd565cf6760d73c92cac674571e9b1257d23b280bd96428cca4e7c593738a925d3632a80fed3e0868c5f3aac79800db19bbf2a2b92d495600bf014cc SHA512 15e7e3c52c058625eb525c7c9cda00186eba037edbed89d21fb090b87c05570a1636f328260d4c7445253b0f5b81f321ce0da7d2b7fc316a0a9938ed22cc6c9c
21 DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9 SHA512 58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
22 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754bbbbe29fc8e79f833715094d4f2 SHA512 fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
23
24 diff --git a/sys-cluster/teleport/teleport-2.4.2.ebuild b/sys-cluster/teleport/teleport-2.4.2.ebuild
25 deleted file mode 100644
26 index dc7173e18dc..00000000000
27 --- a/sys-cluster/teleport/teleport-2.4.2.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -inherit eutils golang-build systemd user
35 -
36 -DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
37 -HOMEPAGE="https://gravitational.com/teleport"
38 -
39 -EGO_PN="github.com/gravitational/${PN}/..."
40 -
41 -if [[ ${PV} == "9999" ]] ; then
42 - inherit git-r3 golang-vcs
43 - EGIT_REPO_URI="https://github.com/gravitational/${PN}.git"
44 -else
45 - inherit golang-vcs-snapshot
46 - SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 - KEYWORDS="~amd64 ~arm"
48 -fi
49 -
50 -IUSE=""
51 -LICENSE="Apache-2.0"
52 -RESTRICT="test strip"
53 -SLOT="0"
54 -
55 -DEPEND="
56 - app-arch/zip
57 - >=dev-lang/go-1.8.3"
58 -RDEPEND=""
59 -
60 -src_compile() {
61 - GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
62 -}
63 -
64 -src_install() {
65 - keepdir /var/lib/${PN} /etc/${PN}
66 - dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
67 -
68 - insinto /etc/${PN}
69 - doins "${FILESDIR}"/${PN}.yaml
70 -
71 - newinitd "${FILESDIR}"/${PN}.init.d ${PN}
72 - newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
73 -
74 - systemd_dounit "${FILESDIR}"/${PN}.service
75 - systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
76 -}
77 -
78 -src_test() {
79 - BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
80 -}