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, 27 Jun 2019 15:03:17
Message-Id: 1561647395.476087e13f982f5249e1add438c7dd3422eb6b50.mgorny@gentoo
1 commit: 476087e13f982f5249e1add438c7dd3422eb6b50
2 Author: Graeme Lawes <graemelawes <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 25 02:54:52 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 27 14:56:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476087e1
7
8 sys-cluster/teleport: remove v4.0.0
9
10 Replaced by v4.0.1 - misc buxfixes
11
12 Signed-off-by: Graeme Lawes <graemelawes <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/12321
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 sys-cluster/teleport/Manifest | 1 -
17 sys-cluster/teleport/teleport-4.0.0.ebuild | 49 ------------------------------
18 2 files changed, 50 deletions(-)
19
20 diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
21 index 44fb4ed605e..a559443c10b 100644
22 --- a/sys-cluster/teleport/Manifest
23 +++ b/sys-cluster/teleport/Manifest
24 @@ -1,3 +1,2 @@
25 DIST teleport-3.2.6.tar.gz 22620079 BLAKE2B 07b4bcb5b53a511c25f0556fad33b461307b524554e993097f634b1751d7fd3c664de0478427efa18dc20e597fb73f3c5bd09ba961754456245e1306372ed0ee SHA512 20be34820f9b9f29c492f8dabe8914012b66ebfb9db51f3dff0e19b8a1f7b85b948cc1036861d03ca6de9e6f30ba0b43caf4760bc95c74e45a38f0cad080820c
26 -DIST teleport-4.0.0.tar.gz 34913323 BLAKE2B 2890d18fed82d9a2da18be6ce9c981ddc1a4ac374862d853f09001c88ed3f9092b9a006c98f6d489dcaae8a702827f98ee12e870708d6746f429f9457debbb33 SHA512 b59ee7e99808475d50e84feff160e2a3c71f04d67dc7d8caa9476251c3e1f51d057de7384f4750b60c121db630c49a8315f9903d8f7ae3e04469f4532ca7078c
27 DIST teleport-4.0.1.tar.gz 34914632 BLAKE2B 88861a36b4cea94d24ccbb03294202a88845f444df31642b2878d8e3c9c0f46f4ed70b4f713e32889895e59be3629c1e861446c051ea5a74aaa4b7b044f17f6b SHA512 db5d477e430fc7d439e352a2e6605f6662a206b0395268f19d52422994344e1b26bb89f4eae0dd0a453cc0e3d19549bd03959e37e29dccf2b8504994922eb946
28
29 diff --git a/sys-cluster/teleport/teleport-4.0.0.ebuild b/sys-cluster/teleport/teleport-4.0.0.ebuild
30 deleted file mode 100644
31 index 546c0f2921f..00000000000
32 --- a/sys-cluster/teleport/teleport-4.0.0.ebuild
33 +++ /dev/null
34 @@ -1,49 +0,0 @@
35 -# Copyright 2019 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -inherit golang-build systemd
40 -
41 -DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
42 -HOMEPAGE="https://gravitational.com/teleport"
43 -
44 -EGO_PN="github.com/gravitational/${PN}/..."
45 -
46 -if [[ ${PV} == "9999" ]] ; then
47 - inherit git-r3 golang-vcs
48 - EGIT_REPO_URI="https://github.com/gravitational/${PN}.git"
49 -else
50 - inherit golang-vcs-snapshot
51 - SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 - KEYWORDS="~amd64 ~arm"
53 -fi
54 -
55 -IUSE="pam"
56 -LICENSE="Apache-2.0"
57 -RESTRICT="test strip"
58 -SLOT="0"
59 -
60 -DEPEND="app-arch/zip"
61 -RDEPEND="pam? ( sys-libs/pam )"
62 -
63 -src_compile() {
64 - BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full
65 -}
66 -
67 -src_install() {
68 - keepdir /var/lib/${PN} /etc/${PN}
69 - dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
70 -
71 - insinto /etc/${PN}
72 - newins "${FILESDIR}"/${PN}.yaml ${PN}.yaml
73 -
74 - newinitd "${FILESDIR}"/${PN}.init.d ${PN}
75 - newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
76 -
77 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
78 - systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
79 -}
80 -
81 -src_test() {
82 - BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test
83 -}