summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@gentoo.org>2015-07-19 16:17:12 +0000
committerAlex Brandt <alunduil@gentoo.org>2015-07-19 16:17:12 +0000
commit441e1b8c37e4f9724f5f955bf0101fe736cbf639 (patch)
treeee76d7c8c7336ba6e7c473ce3b70a561d41f3972 /app-admin/fleet
parentadd version 0.11.1 (diff)
downloadgentoo-2-441e1b8c37e4f9724f5f955bf0101fe736cbf639.tar.gz
gentoo-2-441e1b8c37e4f9724f5f955bf0101fe736cbf639.tar.bz2
gentoo-2-441e1b8c37e4f9724f5f955bf0101fe736cbf639.zip
remove version 0.10.1
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'app-admin/fleet')
-rw-r--r--app-admin/fleet/ChangeLog5
-rw-r--r--app-admin/fleet/fleet-0.10.1.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/app-admin/fleet/ChangeLog b/app-admin/fleet/ChangeLog
index 5a360d3e259d..3adda5d2d5e3 100644
--- a/app-admin/fleet/ChangeLog
+++ b/app-admin/fleet/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/fleet
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v 1.26 2015/07/19 16:11:59 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v 1.27 2015/07/19 16:17:12 alunduil Exp $
+
+ 19 Jul 2015; Alex Brandt <alunduil@gentoo.org> -fleet-0.10.1.ebuild:
+ remove version 0.10.1
*fleet-0.11.1 (19 Jul 2015)
diff --git a/app-admin/fleet/fleet-0.10.1.ebuild b/app-admin/fleet/fleet-0.10.1.ebuild
deleted file mode 100644
index 5a10e5ba6198..000000000000
--- a/app-admin/fleet/fleet-0.10.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/fleet-0.10.1.ebuild,v 1.1 2015/05/02 15:52:50 alunduil Exp $
-
-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"
-
-DEPEND=">=dev-lang/go-1.3"
-RDEPEND=""
-
-src_compile() {
- ./build || die 'Build failed'
-}
-
-RESTRICT="test" # Tests fail due to Gentoo bug #500452
-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
-
- keepdir /etc/${PN}
- insinto /etc/${PN}
- newins "${PN}".conf.sample "${PN}".conf
-}
-
-pkg_postinst() {
- ewarn "Please read this if you are upgrading from a version <0.10.0-r1."
- ewarn ""
- ewarn "Starting with fleet 0.10 the fleetctl utility has"
- ewarn "'--endpoint=unix:///var/run/fleet.sock' as default argument, which is"
- ewarn "why we have introduced the fleet.socket unit and renamed the service"
- ewarn "from fleetd.service to fleet.service. If you run fleet on system"
- ewarn "startup, please re-enable it via 'systemctl enable fleet'."
-}