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/jellyfish/
Date: Wed, 30 Mar 2022 22:27:06
Message-Id: 1648679219.89f79886d90ccb5628b511b4e309b007072473de.mgorny@gentoo
1 commit: 89f79886d90ccb5628b511b4e309b007072473de
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 30 21:09:42 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 30 22:26:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f79886
7
8 dev-python/jellyfish: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jellyfish/jellyfish-0.9.0.ebuild | 29 -----------------------------
13 1 file changed, 29 deletions(-)
14
15 diff --git a/dev-python/jellyfish/jellyfish-0.9.0.ebuild b/dev-python/jellyfish/jellyfish-0.9.0.ebuild
16 deleted file mode 100644
17 index 8f92bc86d14a..000000000000
18 --- a/dev-python/jellyfish/jellyfish-0.9.0.ebuild
19 +++ /dev/null
20 @@ -1,29 +0,0 @@
21 -# Copyright 1999-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="Python module for doing approximate and phonetic matching of strings"
30 -HOMEPAGE="https://github.com/jamesturk/jellyfish https://pypi.org/project/jellyfish/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="BSD-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -
37 -BDEPEND="
38 - test? (
39 - dev-python/unicodecsv[${PYTHON_USEDEP}]
40 - )
41 -"
42 -
43 -distutils_enable_tests pytest
44 -
45 -python_test() {
46 - cp -r testdata "${BUILD_DIR}" || die
47 - cd "${BUILD_DIR}" || die
48 - epytest lib/jellyfish/test.py
49 -}