summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-03-29 11:25:38 +0200
committerMichał Górny <mgorny@gentoo.org>2020-03-29 11:49:59 +0200
commit8d52ffd6c6f45c11389d9cd69392c54f7834fd5d (patch)
treea2c7b34a09affab55eadcd341bf875480ad52572 /dev-python/subvertpy/subvertpy-0.9.1.ebuild
parentdev-python/stripe: Remove redundant versions (diff)
downloadgentoo-8d52ffd6c6f45c11389d9cd69392c54f7834fd5d.tar.gz
gentoo-8d52ffd6c6f45c11389d9cd69392c54f7834fd5d.tar.bz2
gentoo-8d52ffd6c6f45c11389d9cd69392c54f7834fd5d.zip
dev-python/subvertpy: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/subvertpy/subvertpy-0.9.1.ebuild')
-rw-r--r--dev-python/subvertpy/subvertpy-0.9.1.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/subvertpy/subvertpy-0.9.1.ebuild b/dev-python/subvertpy/subvertpy-0.9.1.ebuild
deleted file mode 100644
index 9802235b08b1..000000000000
--- a/dev-python/subvertpy/subvertpy-0.9.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Alternative Python bindings for Subversion"
-HOMEPAGE="https://www.samba.org/~jelmer/subvertpy/ https://pypi.org/project/subvertpy/"
-SRC_URI="https://www.samba.org/~jelmer/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( LGPL-2.1 LGPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-vcs/subversion-1.4"
-DEPEND="${RDEPEND}
- test? ( || (
- dev-python/testtools
- ) )"
-
-DOCS=( NEWS AUTHORS )
-S=${WORKDIR}
-
-python_compile() {
- python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
- distutils-r1_python_compile
-}
-
-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
-}