patrick 15/01/15 05:47:45 Modified: ChangeLog Added: libmacaroons-0.2.0-r1.ebuild Removed: libmacaroons-0.2.0.ebuild Log: Disable broken tests, fix python handling #536552 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.4 dev-libs/libmacaroons/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmacaroons/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmacaroons/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmacaroons/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 13 Jan 2015 02:45:19 -0000 1.3 +++ ChangeLog 15 Jan 2015 05:47:45 -0000 1.4 @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libmacaroons # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/ChangeLog,v 1.3 2015/01/13 02:45:19 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/ChangeLog,v 1.4 2015/01/15 05:47:45 patrick Exp $ + +*libmacaroons-0.2.0-r1 (15 Jan 2015) + + 15 Jan 2015; Patrick Lauer <patr...@gentoo.org> +libmacaroons-0.2.0-r1.ebuild, + -libmacaroons-0.2.0.ebuild: + Disable broken tests, fix python handling #536552 13 Jan 2015; Patrick Lauer <patr...@gentoo.org> libmacaroons-0.2.0.ebuild: Fix parallel test failure 1.1 dev-libs/libmacaroons/libmacaroons-0.2.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmacaroons/libmacaroons-0.2.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmacaroons/libmacaroons-0.2.0-r1.ebuild?rev=1.1&content-type=text/plain Index: libmacaroons-0.2.0-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/libmacaroons-0.2.0-r1.ebuild,v 1.1 2015/01/15 05:47:45 patrick Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit eutils python-single-r1 # Tests can't function after 2014-12-31 ... RESTRICT="test" DESCRIPTION="Hyperdex macaroons support library" HOMEPAGE="http://hyperdex.org" SRC_URI="http://hyperdex.org/src/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" IUSE="test +python" RDEPEND="dev-libs/libsodium dev-libs/json-c" DEPEND="${RDEPEND} virtual/pkgconfig" REQUIRED_USE="test? ( python )" src_prepare() { use python && python-single-r1_pkg_setup } src_configure() { econf $(use_enable python python-bindings) } src_test() { emake -j1 check || die }