Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/subvertpy/
Date: Sun, 29 Mar 2020 09:50:26
Message-Id: 1585475399.8d52ffd6c6f45c11389d9cd69392c54f7834fd5d.mgorny@gentoo
1 commit: 8d52ffd6c6f45c11389d9cd69392c54f7834fd5d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 09:25:38 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 09:49:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d52ffd6
7
8 dev-python/subvertpy: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/subvertpy/Manifest | 1 -
13 dev-python/subvertpy/subvertpy-0.9.1.ebuild | 40 -----------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/subvertpy/Manifest b/dev-python/subvertpy/Manifest
17 index 946d0a8c0ae..7e2ba249948 100644
18 --- a/dev-python/subvertpy/Manifest
19 +++ b/dev-python/subvertpy/Manifest
20 @@ -1,2 +1 @@
21 DIST subvertpy-0.10.1.tar.gz 116661 BLAKE2B 81fdc21352f168c1a8d31398be21ad83ed72adc824dbbca7764fb1836cba4a7d7f03e4a96636ab29f4804682658ce834eea3fd433b5f161e61a702dfc6790e22 SHA512 083174ca6516541c48474673e6d601ff3098f19d204f311101f4de81bcd70d73bdb1e73dffe43fc584f35d286020cab1381dc1c44b514442735a139d2a9cd356
22 -DIST subvertpy-0.9.1.tar.gz 110972 BLAKE2B 1f11b55b81705b6b144e0c4ac53f2e0e5a847b96bb43589894c8c910492b443d61bfc5bdcbdba1e2bb757fbd587b029d0be113084a45c17aec8c0befdff0e12a SHA512 977e291c011e680cff9e26312b4235c0479374076964c7c4a4c3c7ec75bcc44ff7c458513ab89f1aa2b599d3bd8f94cbc6d1000afcf725a9f937a90b39456148
23
24 diff --git a/dev-python/subvertpy/subvertpy-0.9.1.ebuild b/dev-python/subvertpy/subvertpy-0.9.1.ebuild
25 deleted file mode 100644
26 index 9802235b08b..00000000000
27 --- a/dev-python/subvertpy/subvertpy-0.9.1.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python2_7 )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Alternative Python bindings for Subversion"
39 -HOMEPAGE="https://www.samba.org/~jelmer/subvertpy/ https://pypi.org/project/subvertpy/"
40 -SRC_URI="https://www.samba.org/~jelmer/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="|| ( LGPL-2.1 LGPL-3 )"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND=">=dev-vcs/subversion-1.4"
49 -DEPEND="${RDEPEND}
50 - test? ( || (
51 - dev-python/testtools
52 - ) )"
53 -
54 -DOCS=( NEWS AUTHORS )
55 -S=${WORKDIR}
56 -
57 -python_compile() {
58 - python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
59 - distutils-r1_python_compile
60 -}
61 -
62 -python_test() {
63 - distutils_install_for_testing
64 - pushd man > /dev/null
65 - # hack: the subvertpy in . has no compiled modules, so cd into any
66 - # directory to give the installed version precedence on PYTHONPATH
67 - ${PYTHON} -m unittest subvertpy.tests.test_suite
68 - popd man > /dev/null
69 -}