diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-08-30 08:07:07 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-08-30 08:07:07 +0000 |
commit | 4f1dfefd2266791e3453d44f289eadfd3f10c2c0 (patch) | |
tree | dbc8659ce42b17f359635ce8a07892a6f17d5e77 | |
parent | Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in bug... (diff) | |
download | gentoo-2-4f1dfefd2266791e3453d44f289eadfd3f10c2c0.tar.gz gentoo-2-4f1dfefd2266791e3453d44f289eadfd3f10c2c0.tar.bz2 gentoo-2-4f1dfefd2266791e3453d44f289eadfd3f10c2c0.zip |
Version bump subvertpy to 0.8.5.
(Portage version: 2.1.10.4/cvs/Linux x86_64)
-rw-r--r-- | dev-python/subvertpy/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/subvertpy/subvertpy-0.8.5.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-python/subvertpy/ChangeLog b/dev-python/subvertpy/ChangeLog index 642233a4e49c..a917dcb2447e 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.30 2011/04/17 13:18:32 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.31 2011/08/30 08:07:07 djc Exp $ + +*subvertpy-0.8.5 (30 Aug 2011) + + 30 Aug 2011; Dirkjan Ochtman <djc@gentoo.org> +subvertpy-0.8.5.ebuild: + Version bump to 0.8.5. 17 Apr 2011; Thomas Kahle <tomka@gentoo.org> subvertpy-0.8.0.ebuild: x86 stable per bug 361975 diff --git a/dev-python/subvertpy/subvertpy-0.8.5.ebuild b/dev-python/subvertpy/subvertpy-0.8.5.ebuild new file mode 100644 index 000000000000..e5bde9228c63 --- /dev/null +++ b/dev-python/subvertpy/subvertpy-0.8.5.ebuild @@ -0,0 +1,43 @@ +# 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.5.ebuild,v 1.1 2011/08/30 08:07:07 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 +} + +src_install() { + distutils_src_install + + delete_tests() { + rm -fr "${ED}$(python_get_sitedir)/subvertpy/tests" + } + python_execute_function -q delete_tests +} |