alunduil 15/05/02 15:52:50 Modified: ChangeLog Added: fleet-0.10.1.ebuild Log: add version 0.10.1 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.15 app-admin/fleet/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 25 Apr 2015 21:51:42 -0000 1.14 +++ ChangeLog 2 May 2015 15:52:50 -0000 1.15 @@ -1,6 +1,11 @@ # 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.14 2015/04/25 21:51:42 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/fleet/ChangeLog,v 1.15 2015/05/02 15:52:50 alunduil Exp $ + +*fleet-0.10.1 (02 May 2015) + + 02 May 2015; Alex Brandt <[email protected]> +fleet-0.10.1.ebuild: + add version 0.10.1 *fleet-0.10.0-r1 (25 Apr 2015) 1.1 app-admin/fleet/fleet-0.10.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-0.10.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/fleet/fleet-0.10.1.ebuild?rev=1.1&content-type=text/plain Index: fleet-0.10.1.ebuild =================================================================== # 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'." }
