diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-10-11 14:56:10 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-10-11 14:56:10 +0000 |
commit | fbc4c09a9166ae15236b4e2f7c3f103419506592 (patch) | |
tree | 81ed36c90fa016694d2d01b387c49952eb26f9a1 /dev-python/subvertpy | |
parent | Remove old versions of mercurial. (diff) | |
download | gentoo-2-fbc4c09a9166ae15236b4e2f7c3f103419506592.tar.gz gentoo-2-fbc4c09a9166ae15236b4e2f7c3f103419506592.tar.bz2 gentoo-2-fbc4c09a9166ae15236b4e2f7c3f103419506592.zip |
Version bump subvertpy to 0.8.8.
(Portage version: 2.1.10.24/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/subvertpy')
-rw-r--r-- | dev-python/subvertpy/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/subvertpy/subvertpy-0.8.8.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-python/subvertpy/ChangeLog b/dev-python/subvertpy/ChangeLog index a896c581928b..b3aa337361ee 100644 --- a/dev-python/subvertpy/ChangeLog +++ b/dev-python/subvertpy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/subvertpy # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.32 2011/09/07 16:18:10 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.33 2011/10/11 14:56:10 djc Exp $ + +*subvertpy-0.8.8 (11 Oct 2011) + + 11 Oct 2011; Dirkjan Ochtman <djc@gentoo.org> +subvertpy-0.8.8.ebuild: + Version bump to 0.8.8. *subvertpy-0.8.5-r1 (07 Sep 2011) diff --git a/dev-python/subvertpy/subvertpy-0.8.8.ebuild b/dev-python/subvertpy/subvertpy-0.8.8.ebuild new file mode 100644 index 000000000000..59ef7f1dae16 --- /dev/null +++ b/dev-python/subvertpy/subvertpy-0.8.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.8.ebuild,v 1.1 2011/10/11 14:56:10 djc Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="Alternative Python bindings for Subversion" +HOMEPAGE="http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy" +SRC_URI="http://samba.org/~jelmer/${PN}/${P}.tar.gz" + +LICENSE="|| ( LGPL-2.1 LGPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=dev-vcs/subversion-1.4" +RDEPEND="${DEPEND}" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DOCS="NEWS AUTHORS" + +distutils_src_test_pre_hook() { + local module + for module in _ra client repos wc; do + ln -fs "../$(ls -d build-${PYTHON_ABI}/lib.*)/subvertpy/${module}.so" "subvertpy/${module}.so" || die "Symlinking subvertpy/${module}.so failed with $(python_get_implementation) $(python_get_version)" + done +} |