Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/fleet/
Date: Sun, 30 Aug 2015 18:23:04
Message-Id: 1440958948.ac9100a9926c20e1f1c45b0ec69a5e8bac1ba716.alunduil@gentoo
1 commit: ac9100a9926c20e1f1c45b0ec69a5e8bac1ba716
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 18:18:56 2015 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 18:22:28 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac9100a9
7
8 app-admin/fleet: remove version 0.11.0
9
10 Package-Manager: portage-2.2.20.1
11
12 app-admin/fleet/fleet-0.11.0.ebuild | 56 -------------------------------------
13 1 file changed, 56 deletions(-)
14
15 diff --git a/app-admin/fleet/fleet-0.11.0.ebuild b/app-admin/fleet/fleet-0.11.0.ebuild
16 deleted file mode 100644
17 index be46552..0000000
18 --- a/app-admin/fleet/fleet-0.11.0.ebuild
19 +++ /dev/null
20 @@ -1,56 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -inherit systemd vcs-snapshot
28 -
29 -DESCRIPTION="A Distributed init System"
30 -HOMEPAGE="https://github.com/coreos/fleet"
31 -SRC_URI="https://github.com/coreos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="~amd64"
36 -IUSE="doc examples test"
37 -
38 -DEPEND="
39 - >=dev-lang/go-1.3
40 - test? ( dev-go/go-tools )
41 -"
42 -RDEPEND=""
43 -
44 -src_compile() {
45 - ./build || die 'Build failed'
46 -}
47 -
48 -src_test() {
49 - ./test || die 'Tests failed'
50 -}
51 -
52 -src_install() {
53 - dobin "${S}"/bin/fleetd
54 - dobin "${S}"/bin/fleetctl
55 -
56 - systemd_dounit "${FILESDIR}"/fleet.service
57 - systemd_dounit "${FILESDIR}"/fleet.socket
58 -
59 - dodoc README.md
60 - use doc && dodoc -r Documentation
61 - use examples && dodoc -r examples
62 -
63 - keepdir /etc/${PN}
64 - insinto /etc/${PN}
65 - newins "${PN}".conf.sample "${PN}".conf
66 -}
67 -
68 -pkg_postinst() {
69 - ewarn "Please read this if you are upgrading from a version <0.10.0-r1."
70 - ewarn ""
71 - ewarn "Starting with fleet 0.10 the fleetctl utility has"
72 - ewarn "'--endpoint=unix:///var/run/fleet.sock' as default argument, which is"
73 - ewarn "why we have introduced the fleet.socket unit and renamed the service"
74 - ewarn "from fleetd.service to fleet.service. If you run fleet on system"
75 - ewarn "startup, please re-enable it via 'systemctl enable fleet'."
76 -}