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: 1532637574.077e5400247e1f33a76fc287bc63dc4dbbe196a6.mgorny@gentoo
1 commit: 077e5400247e1f33a76fc287bc63dc4dbbe196a6
2 Author: Graeme Lawes <graemelawes <AT> gmail <DOT> com>
3 AuthorDate: Sun Jul 8 16:26:47 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 20:39:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077e5400
7
8 sys-cluster/teleport: remove v2.5.2
9
10 sys-cluster/teleport/Manifest | 1 -
11 sys-cluster/teleport/teleport-2.5.2.ebuild | 57 ------------------------------
12 2 files changed, 58 deletions(-)
13
14 diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
15 index 9960bd15c1b..64550674d1d 100644
16 --- a/sys-cluster/teleport/Manifest
17 +++ b/sys-cluster/teleport/Manifest
18 @@ -1,4 +1,3 @@
19 -DIST teleport-2.5.2.tar.gz 16211219 BLAKE2B 28d0d1bb8d01fba39e79a262744b69a9df27438b9dbb0a25cd23acd57b6004a7f2309e432c0db4188c2e023a0b0299fd64723acfd57c1328d2345bba08fff4a9 SHA512 58fad4015824b9077bbd13cc3c6a994e5a54ed367264477854da7b129eea04c4cba44a580650a259b01f390a9f2028d7501df2ac4ab4821d085bbfe1cd887ec5
20 DIST teleport-2.5.6.tar.gz 16216649 BLAKE2B e5ae8645d59df2684601dab5c222399d89b356592774365ffbca4e3f2d9ed745f2839902ee1e244c7b7eb300230d771daa754bbbbe29fc8e79f833715094d4f2 SHA512 fae1eb53ff45115551c5002745303cd0e9a044557e6e56cda870a57531700bb68e23b59d2930ac2dd654b200732edc3ed9432e1bc0e9dbf0e7529e980599a323
21 DIST teleport-2.5.8.tar.gz 16219666 BLAKE2B dd64ef4ca5b26e025e46c88d58e7ec226810b583c4b740416f6cc0caec5ea7d050c732368917ec34c5f8a36c7670d2903baa6c32203a2c5cac972e3a2b4bcbbb SHA512 070eebc889adde017641a833ee0e414c5f56848ac36fa96fb66e83062212307904e8264da758042765ba13d6a0c1b4f5314c1b0e90a2c37723ef1c0aa22889be
22 DIST teleport-2.6.7.tar.gz 16655508 BLAKE2B a020ab999b7503cb7aec54ed81532baf9d08b98000f2c659f63859d89f7f2b5fb311c41d6fcafb7d9bf72ea1c97eecfc6ac621b7c90d74f5afe2717edb8b0402 SHA512 45002dcf7b99108ca6fffae94d6608188eb9b0bea05cd14068618bfb11c496cad5546e261f349fee70f2acb574e7fc44093683dd991001e01406da6982c5c4c3
23
24 diff --git a/sys-cluster/teleport/teleport-2.5.2.ebuild b/sys-cluster/teleport/teleport-2.5.2.ebuild
25 deleted file mode 100644
26 index 4b4aeb53e58..00000000000
27 --- a/sys-cluster/teleport/teleport-2.5.2.ebuild
28 +++ /dev/null
29 @@ -1,57 +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.9.2"
58 -RDEPEND=""
59 -
60 -src_prepare() {
61 - default
62 -
63 - sed -i -e 's/-j 3/-j 1/g' src/${EGO_PN%/*}/Makefile
64 -}
65 -
66 -src_compile() {
67 - GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
68 -}
69 -
70 -src_install() {
71 - keepdir /var/lib/${PN} /etc/${PN}
72 - dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
73 -
74 - insinto /etc/${PN}
75 - doins "${FILESDIR}"/${PN}.yaml
76 -
77 - newinitd "${FILESDIR}"/${PN}-2.5.init.d ${PN}
78 - newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
79 -
80 - systemd_newunit "${FILESDIR}"/${PN}-2.5.service ${PN}.service
81 - systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
82 -}
83 -
84 -src_test() {
85 - BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
86 -}