* [gentoo-commits] gentoo-x86 commit in app-admin/fleet: ChangeLog fleet-9999.ebuild fleet-0.8.3.ebuild
@ 2014-11-01 20:35 Alex Brandt (alunduil)
0 siblings, 0 replies; only message in thread
From: Alex Brandt (alunduil) @ 2014-11-01 20:35 UTC (permalink / raw
To: gentoo-commits
alunduil 14/11/01 20:35:53
Modified: ChangeLog fleet-9999.ebuild
Added: fleet-0.8.3.ebuild
Log:
add version 0.8.3—fixes #523178
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path
1.3 app-admin/fleet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?r1=1.2&r2=1.3
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 28 Aug 2014 15:28:18 -0000 1.2
+++ ChangeLog 1 Nov 2014 20:35:53 -0000 1.3
@@ -1,6 +1,12 @@
# ChangeLog for app-admin/fleet
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v 1.2 2014/08/28 15:28:18 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v 1.3 2014/11/01 20:35:53 alunduil Exp $
+
+*fleet-0.8.3 (01 Nov 2014)
+
+ 01 Nov 2014; Alex Brandt <alunduil@gentoo.org> +fleet-0.8.3.ebuild,
+ fleet-9999.ebuild:
+ add version 0.8.3
28 Aug 2014; Alex Brandt <alunduil@gentoo.org> fleet-9999.ebuild:
binary moved: fleet -> fleetd
1.3 app-admin/fleet/fleet-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-9999.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-9999.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-9999.ebuild?r1=1.2&r2=1.3
Index: fleet-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/fleet/fleet-9999.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fleet-9999.ebuild 28 Aug 2014 15:28:18 -0000 1.2
+++ fleet-9999.ebuild 1 Nov 2014 20:35:53 -0000 1.3
@@ -1,10 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/fleet-9999.ebuild,v 1.2 2014/08/28 15:28:18 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/fleet-9999.ebuild,v 1.3 2014/11/01 20:35:53 alunduil Exp $
EAPI=5
-inherit git-2 systemd
+inherit git-r3 systemd
EGIT_REPO_URI="git://github.com/coreos/fleet.git"
@@ -15,18 +15,38 @@
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
-IUSE=""
+IUSE="doc examples"
-DEPEND=">=dev-lang/go-1.2"
+DEPEND=">=dev-lang/go-1.3"
RDEPEND=""
src_compile() {
- ./build || die
+ ./build || die 'Build failed'
+}
+
+src_test() {
+ # Tests fail due to Gentoo bug #500452
+ ./test || die 'Tests failed'
}
src_install() {
dobin "${S}"/bin/fleetd
dobin "${S}"/bin/fleetctl
- systemd_dounit "${FILESDIR}"/${PN}.service
+ systemd_dounit "${FILESDIR}"/fleetd.service
+
+ 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 "If you're upgrading from a version less than 0.8.0, please read the messages!"
+ elog "The fleet binary name changed to fleetd."
+ elog "If you're using systemd, update your configuration:"
+ elog " systemctl disable fleet; systemctl enable fleetd"
}
1.1 app-admin/fleet/fleet-0.8.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-0.8.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-0.8.3.ebuild?rev=1.1&content-type=text/plain
Index: fleet-0.8.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/fleet-0.8.3.ebuild,v 1.1 2014/11/01 20:35:53 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'
}
src_test() {
# Tests fail due to Gentoo bug #500452
./test || die 'Tests failed'
}
src_install() {
dobin "${S}"/bin/fleetd
dobin "${S}"/bin/fleetctl
systemd_dounit "${FILESDIR}"/fleetd.service
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 "If you're upgrading from a version less than 0.8.0, please read the messages!"
elog "The fleet binary name changed to fleetd."
elog "If you're using systemd, update your configuration:"
elog " systemctl disable fleet && systemctl enable fleetd"
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-11-01 20:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-01 20:35 [gentoo-commits] gentoo-x86 commit in app-admin/fleet: ChangeLog fleet-9999.ebuild fleet-0.8.3.ebuild Alex Brandt (alunduil)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox