Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/sarama/
Date: Tue, 11 Dec 2018 20:20:41
Message-Id: 1544559534.530302f364797101e9742fe6377c6b542a67dcee.zmedico@gentoo
1 commit: 530302f364797101e9742fe6377c6b542a67dcee
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 11 20:18:54 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 20:18:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=530302f3
7
8 dev-go/sarama: remove umaintained 9999 ebuild
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 dev-go/sarama/sarama-9999.ebuild | 38 --------------------------------------
14 1 file changed, 38 deletions(-)
15
16 diff --git a/dev-go/sarama/sarama-9999.ebuild b/dev-go/sarama/sarama-9999.ebuild
17 deleted file mode 100644
18 index 337080136cb..00000000000
19 --- a/dev-go/sarama/sarama-9999.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -EGO_SRC=github.com/Shopify/${PN}
28 -EGO_PN=${EGO_SRC}/...
29 -
30 -if [[ ${PV} = *9999* ]]; then
31 - inherit golang-vcs
32 -else
33 - KEYWORDS="~amd64"
34 - SRC_URI="https://${EGO_SRC}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 - inherit golang-vcs-snapshot
36 -fi
37 -inherit golang-build
38 -
39 -DESCRIPTION="Sarama is a Go library for Apache Kafka"
40 -HOMEPAGE="https://github.com/Shopify/sarama"
41 -LICENSE="MIT"
42 -SLOT="0/${PV}"
43 -IUSE="test"
44 -DEPEND="dev-go/go-eapache-queue
45 - dev-go/go-resiliency
46 - dev-go/go-snappy
47 - test? ( dev-go/go-spew )"
48 -RDEPEND=""
49 -
50 -src_prepare() {
51 - # avoid toxiproxy dependency
52 - rm src/${EGO_SRC}/functional*_test.go || die
53 -}
54 -
55 -src_install() {
56 - golang-build_src_install
57 - rm bin/http_server || die
58 - dobin bin/*
59 -}