From 19152f125123dd3ae49a877315c3cdb294975dcc Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 15 May 2013 12:02:08 +0000 Subject: Version bump to 0.9.1, convert to distutils-r1. (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB) --- dev-python/subvertpy/ChangeLog | 7 +++++- dev-python/subvertpy/subvertpy-0.9.1.ebuild | 38 +++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 dev-python/subvertpy/subvertpy-0.9.1.ebuild (limited to 'dev-python') diff --git a/dev-python/subvertpy/ChangeLog b/dev-python/subvertpy/ChangeLog index cfa6c836ad76..434e8a865228 100644 --- a/dev-python/subvertpy/ChangeLog +++ b/dev-python/subvertpy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/subvertpy # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.51 2013/05/15 10:23:51 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.52 2013/05/15 12:02:08 djc Exp $ + +*subvertpy-0.9.1 (15 May 2013) + + 15 May 2013; Dirkjan Ochtman +subvertpy-0.9.1.ebuild: + Version bump to 0.9.1, convert to distutils-r1. 15 May 2013; Dirkjan Ochtman -subvertpy-0.8.0.ebuild, -subvertpy-0.8.9.ebuild: diff --git a/dev-python/subvertpy/subvertpy-0.9.1.ebuild b/dev-python/subvertpy/subvertpy-0.9.1.ebuild new file mode 100644 index 000000000000..48897db4911e --- /dev/null +++ b/dev-python/subvertpy/subvertpy-0.9.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.9.1.ebuild,v 1.1 2013/05/15 12:02:08 djc Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +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="test" + +RDEPEND=">=dev-vcs/subversion-1.4" +DEPEND="${RDEPEND} + test? ( || ( + virtual/python-unittest2 + dev-python/testtools + ) )" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DOCS="NEWS AUTHORS" +S=${WORKDIR} + +python_test() { + distutils_install_for_testing + pushd man > /dev/null + # hack: the subvertpy in . has no compiled modules, so cd into any + # directory to give the installed version precedence on PYTHONPATH + ${PYTHON} -m unittest subvertpy.tests.test_suite + popd man > /dev/null +} -- cgit v1.2.3-65-gdbad