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/reedsolomon/
Date: Wed, 29 Jun 2022 13:05:10
Message-Id: 1656507901.703a60d5ca84566d12fc44e0765e5a79092ccaef.mgorny@gentoo
1 commit: 703a60d5ca84566d12fc44e0765e5a79092ccaef
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 11:06:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 13:05:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703a60d5
7
8 dev-python/reedsolomon: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild | 31 ----------------------
13 1 file changed, 31 deletions(-)
14
15 diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
16 deleted file mode 100644
17 index f2ff6d41a05f..000000000000
18 --- a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
19 +++ /dev/null
20 @@ -1,31 +0,0 @@
21 -# Copyright 2021-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
30 -HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
31 -SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="public-domain"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~arm64 x86"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38 -
39 -BDEPEND="
40 - dev-python/cython[${PYTHON_USEDEP}]
41 -"
42 -
43 -src_prepare() {
44 - default
45 - rm creedsolo.c || die
46 -}
47 -
48 -python_test() {
49 - "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
50 - "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
51 -}