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: Sun, 05 Aug 2018 21:48:10
Message-Id: 1533505642.c1791841c117a9e53d54dc74d731abe8d806b3eb.monsieurp@gentoo
1 commit: c1791841c117a9e53d54dc74d731abe8d806b3eb
2 Author: Graeme Lawes <graemelawes <AT> gmail <DOT> com>
3 AuthorDate: Sun Aug 5 03:40:33 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 5 21:47:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1791841
7
8 sys-cluster/teleport: remove v2.5.8.
9
10 Closes: https://github.com/gentoo/gentoo/pull/9452
11
12 sys-cluster/teleport/Manifest | 1 -
13 sys-cluster/teleport/teleport-2.5.8.ebuild | 55 ------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
17 index f5bc0866c78..2137c4cdac5 100644
18 --- a/sys-cluster/teleport/Manifest
19 +++ b/sys-cluster/teleport/Manifest
20 @@ -1,2 +1 @@
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.8.ebuild b/sys-cluster/teleport/teleport-2.5.8.ebuild
25 deleted file mode 100644
26 index 597ac0e391f..00000000000
27 --- a/sys-cluster/teleport/teleport-2.5.8.ebuild
28 +++ /dev/null
29 @@ -1,55 +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 golang-build systemd
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="app-arch/zip"
56 -RDEPEND=""
57 -
58 -src_prepare() {
59 - default
60 -
61 - sed -i -e 's/-j 3/-j 1/g' src/${EGO_PN%/*}/Makefile || die
62 -}
63 -
64 -src_compile() {
65 - BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
66 -}
67 -
68 -src_install() {
69 - keepdir /var/lib/${PN} /etc/${PN}
70 - dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
71 -
72 - insinto /etc/${PN}
73 - doins "${FILESDIR}"/${PN}.yaml
74 -
75 - newinitd "${FILESDIR}"/${PN}.init.d ${PN}
76 - newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
77 -
78 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
79 - systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
80 -}
81 -
82 -src_test() {
83 - BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
84 -}