Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jellyfish/
Date: Tue, 08 Feb 2022 09:58:54
Message-Id: 1644314325.f39bc85ea7f646ec38c123d3fea3a3b5d821283c.fordfrog@gentoo
1 commit: f39bc85ea7f646ec38c123d3fea3a3b5d821283c
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 09:58:45 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 09:58:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f39bc85e
7
8 dev-python/jellyfish: removed obsolete 0.8.9
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-python/jellyfish/Manifest | 1 -
14 dev-python/jellyfish/jellyfish-0.8.9.ebuild | 30 -----------------------------
15 2 files changed, 31 deletions(-)
16
17 diff --git a/dev-python/jellyfish/Manifest b/dev-python/jellyfish/Manifest
18 index 3ffcce5fa058..fa2d2b3cc630 100644
19 --- a/dev-python/jellyfish/Manifest
20 +++ b/dev-python/jellyfish/Manifest
21 @@ -1,2 +1 @@
22 -DIST jellyfish-0.8.9.tar.gz 137296 BLAKE2B 7f71f6e683021f3062c0ca529f3cd0488ab52cb9aea0d87766aa6b08d19d6b480f482a7385758ceba1a203247431d0362814f388f6a242f1ea928c32a385325f SHA512 d7d30573ebe552370a191eb755b4d27417e31eb66e7f57c2abb414e3d4075854a51f231c1d76001b7c0ff8b112a82dbe5e72be224425bd7a569a6b12455113d8
23 DIST jellyfish-0.9.0.tar.gz 132588 BLAKE2B e7490da91d1a53b775ef145151c6dba5b16c938f59773e205b5cf01e1a262d36bb07a49d8c5d823fa722e2d244fc8af1bf9a603911411461a97b155cfdd0ce83 SHA512 1faa3ea03ec8b26085b5db34339f0aea061d3e4897f29235eca56995bea36ae8c152ae0ab0c67279dab4844d92d89293e2de2126c1d449407652b77da258e9f0
24
25 diff --git a/dev-python/jellyfish/jellyfish-0.8.9.ebuild b/dev-python/jellyfish/jellyfish-0.8.9.ebuild
26 deleted file mode 100644
27 index b608fb0c4876..000000000000
28 --- a/dev-python/jellyfish/jellyfish-0.8.9.ebuild
29 +++ /dev/null
30 @@ -1,30 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python module for doing approximate and phonetic matching of strings"
40 -HOMEPAGE="https://github.com/jamesturk/jellyfish https://pypi.org/project/jellyfish/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -
47 -BDEPEND="
48 - test? (
49 - dev-python/unicodecsv[${PYTHON_USEDEP}]
50 - )
51 -"
52 -
53 -distutils_enable_sphinx docs --no-autodoc
54 -distutils_enable_tests pytest
55 -
56 -python_test() {
57 - cp -r testdata "${BUILD_DIR}" || die
58 - cd "${BUILD_DIR}" || die
59 - epytest lib/jellyfish/test.py
60 -}