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/python-lzo/
Date: Sun, 12 Sep 2021 07:49:15
Message-Id: 1631432870.dd78a6241f61ba1c27a79de134ce1aad33c07023.mgorny@gentoo
1 commit: dd78a6241f61ba1c27a79de134ce1aad33c07023
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 12 07:47:50 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 12 07:47:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd78a624
7
8 dev-python/python-lzo: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-lzo/python-lzo-1.12-r1.ebuild | 32 -------------------------
13 1 file changed, 32 deletions(-)
14
15 diff --git a/dev-python/python-lzo/python-lzo-1.12-r1.ebuild b/dev-python/python-lzo/python-lzo-1.12-r1.ebuild
16 deleted file mode 100644
17 index d865cda083f..00000000000
18 --- a/dev-python/python-lzo/python-lzo-1.12-r1.ebuild
19 +++ /dev/null
20 @@ -1,32 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -DISTUTILS_USE_SETUPTOOLS=no
27 -PYTHON_COMPAT=( python3_{7..9} )
28 -
29 -inherit distutils-r1 prefix
30 -
31 -DESCRIPTION="Python interface to lzo"
32 -HOMEPAGE="https://github.com/jd-boyd/python-lzo"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
38 -
39 -RDEPEND="dev-libs/lzo:2"
40 -DEPEND="${RDEPEND}"
41 -
42 -distutils_enable_tests pytest
43 -
44 -src_prepare() {
45 - sed -i -e 's:test_version:_&:' tests/test.py || die
46 - hprefixify setup.py
47 - distutils-r1_src_prepare
48 -}
49 -
50 -python_test() {
51 - pytest -vv tests/test.py || die "Tests failed with ${EPYTHON}"
52 -}