diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2014-04-20 22:32:24 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2014-04-20 22:32:24 +0000 |
commit | 22e72463bc7a3e5306919e0ade08dccb5c6c8014 (patch) | |
tree | eda2706c70dfdc0fe7c10271af15f660c6a7cb77 | |
parent | bump, but see bug 508282 (needs rekeywording) (diff) | |
download | gentoo-2-22e72463bc7a3e5306919e0ade08dccb5c6c8014.tar.gz gentoo-2-22e72463bc7a3e5306919e0ade08dccb5c6c8014.tar.bz2 gentoo-2-22e72463bc7a3e5306919e0ade08dccb5c6c8014.zip |
Version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D7DFA8D318FA9AEF!)
-rw-r--r-- | dev-python/libvirt-python/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/libvirt-python/libvirt-python-1.2.3.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-python/libvirt-python/ChangeLog b/dev-python/libvirt-python/ChangeLog index 0efe57d23855..fd5f0960d5d1 100644 --- a/dev-python/libvirt-python/ChangeLog +++ b/dev-python/libvirt-python/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/libvirt-python # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/ChangeLog,v 1.6 2014/01/25 18:17:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/ChangeLog,v 1.7 2014/04/20 22:32:24 cardoe Exp $ + +*libvirt-python-1.2.3 (20 Apr 2014) + + 20 Apr 2014; Doug Goldstein <cardoe@gentoo.org> +libvirt-python-1.2.3.ebuild: + Version bump 25 Jan 2014; Agostino Sarubbo <ago@gentoo.org> libvirt-python-1.2.1.ebuild: Stable for amd64, wrt bug #498534 diff --git a/dev-python/libvirt-python/libvirt-python-1.2.3.ebuild b/dev-python/libvirt-python/libvirt-python-1.2.3.ebuild new file mode 100644 index 000000000000..25c0bd2d2aed --- /dev/null +++ b/dev-python/libvirt-python/libvirt-python-1.2.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/libvirt-python/libvirt-python-1.2.3.ebuild,v 1.1 2014/04/20 22:32:24 cardoe Exp $ + +EAPI=5 + +#BACKPORTS=062ad8b2 + +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) + +MY_P="${P/_rc/-rc}" + +inherit distutils-r1 + +DESCRIPTION="libvirt Python bindings" +HOMEPAGE="http://www.libvirt.org" +SRC_URI="http://libvirt.org/sources/python/${MY_P}.tar.gz + ${BACKPORTS:+ + http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=app-emulation/libvirt-0.9.6:=[-python(-)]" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( dev-python/lxml )" + +S="${WORKDIR}/${P%_rc*}" + +src_prepare() { + [[ -n ${BACKPORTS} ]] && \ + EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ + epatch + + distutils-r1_src_prepare +} + +python_test() { + esetup.py test +} |