diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-11-23 13:30:44 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-11-23 13:30:44 +0000 |
commit | 41a5749e391dedc82bd48f1ef621989086e5fc6f (patch) | |
tree | 91f99183803d915273096c42320f32db00efea13 /dev-libs/libmacaroons | |
parent | x86 stable wrt bug #527842 (diff) | |
download | historical-41a5749e391dedc82bd48f1ef621989086e5fc6f.tar.gz historical-41a5749e391dedc82bd48f1ef621989086e5fc6f.tar.bz2 historical-41a5749e391dedc82bd48f1ef621989086e5fc6f.zip |
Add python bindings and test phase
Package-Manager: portage-2.2.14/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/libmacaroons')
-rw-r--r-- | dev-libs/libmacaroons/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild | 15 |
2 files changed, 14 insertions, 6 deletions
diff --git a/dev-libs/libmacaroons/ChangeLog b/dev-libs/libmacaroons/ChangeLog index 452cfcc31a3b..203694cc33e2 100644 --- a/dev-libs/libmacaroons/ChangeLog +++ b/dev-libs/libmacaroons/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libmacaroons # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/ChangeLog,v 1.1 2014/11/23 13:10:21 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/ChangeLog,v 1.2 2014/11/23 13:30:44 patrick Exp $ + + 23 Nov 2014; Patrick Lauer <patrick@gentoo.org> libmacaroons-0.2.0.ebuild: + Add python bindings and test phase *libmacaroons-0.2.0 (23 Nov 2014) diff --git a/dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild b/dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild index 421083f61599..0e0783dea2e7 100644 --- a/dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild +++ b/dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild @@ -1,13 +1,12 @@ # Copyright 1999-2014 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.ebuild,v 1.1 2014/11/23 13:10:21 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmacaroons/libmacaroons-0.2.0.ebuild,v 1.2 2014/11/23 13:30:44 patrick Exp $ EAPI=5 -# depends on python bindings -RESTRICT="test" +PYTHON_COMPAT="python2_7" -inherit eutils +inherit eutils python-r1 DESCRIPTION="Hyperdex macaroons support library" @@ -17,9 +16,15 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" -IUSE="" +IUSE="test +python" RDEPEND="dev-libs/libsodium dev-libs/json-c" DEPEND="${RDEPEND} virtual/pkgconfig" + +REQUIRED_USE="test? ( python )" + +src_configure() { + econf $(use_enable python python-bindings) +} |