summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2016-10-28 21:21:48 +0200
committerManuel Rüger <mrueg@gentoo.org>2016-10-28 21:22:20 +0200
commit08c2cb5d6327bf2127e65d91c5acc8251d524b87 (patch)
tree6320a8bb3b2085df393ce529b00a7e9fade74b0d /app-admin/fleet/fleet-0.11.1.ebuild
parentsys-kernel/gentoo-sources: Linux patch 4.4.28 (diff)
downloadgentoo-08c2cb5d6327bf2127e65d91c5acc8251d524b87.tar.gz
gentoo-08c2cb5d6327bf2127e65d91c5acc8251d524b87.tar.bz2
gentoo-08c2cb5d6327bf2127e65d91c5acc8251d524b87.zip
app-admin/fleet: Remove old
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-admin/fleet/fleet-0.11.1.ebuild')
-rw-r--r--app-admin/fleet/fleet-0.11.1.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-admin/fleet/fleet-0.11.1.ebuild b/app-admin/fleet/fleet-0.11.1.ebuild
deleted file mode 100644
index 77c80c4c1497..000000000000
--- a/app-admin/fleet/fleet-0.11.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit systemd vcs-snapshot
-
-DESCRIPTION="A Distributed init System"
-HOMEPAGE="https://github.com/coreos/fleet"
-SRC_URI="https://github.com/coreos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc examples test"
-
-DEPEND="
- >=dev-lang/go-1.3:=
- test? ( dev-go/go-tools )
-"
-RDEPEND=""
-
-src_compile() {
- ./build || die 'Build failed'
-}
-
-src_test() {
- ./test || die 'Tests failed'
-}
-
-src_install() {
- dobin "${S}"/bin/fleetd
- dobin "${S}"/bin/fleetctl
-
- systemd_dounit "${FILESDIR}"/fleet.service
- systemd_dounit "${FILESDIR}"/fleet.socket
-
- dodoc README.md
- use doc && dodoc -r Documentation
- use examples && dodoc -r examples
-
- insinto /etc/${PN}
- newins "${PN}".conf.sample "${PN}".conf
-}