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: Sat, 18 Sep 2021 19:44:03
Message-Id: 1631994222.891ce51acb53d8d9cf5ba6e8198fce32f91ef829.mgorny@gentoo
1 commit: 891ce51acb53d8d9cf5ba6e8198fce32f91ef829
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 18 17:53:41 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 19:43:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=891ce51a
7
8 dev-python/jellyfish: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jellyfish/Manifest | 1 -
13 dev-python/jellyfish/jellyfish-0.8.4.ebuild | 30 -----------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/jellyfish/Manifest b/dev-python/jellyfish/Manifest
17 index 3a7e5ca1023..351298c13df 100644
18 --- a/dev-python/jellyfish/Manifest
19 +++ b/dev-python/jellyfish/Manifest
20 @@ -1,2 +1 @@
21 -DIST jellyfish-0.8.4.tar.gz 137001 BLAKE2B 55ffa7b7b931bf5bd0a2bee9a378fac10212d757d0e28492aac989a836c14106d37591a63a048db16b22c11e3964ad08325fe759e9ac2841722ac491a075feea SHA512 301fed3d4ba7228738b85310272970d2c666dd120a92a61b9870918ca3778bfead2b83437aced7933459f60079efcde863425a4a86077e8a0182db7d6d6c92cf
22 DIST jellyfish-0.8.8.tar.gz 134461 BLAKE2B 29a4da13d248ab7916a4c9a6bd16da28bb9b4409bbc2e14660ac2a2bfad2563c7ddafb51c58968f5cac56c238de2786a5e1e64ee8d47cc668b0ab83e881b15f5 SHA512 d78f997a12ea2531e2621b3858f89a00c6c0620974a141fea6fdf6695860fa50ff4b5c21799de898944474563e6043e4d391448061501fbec078923dae21ae7c
23
24 diff --git a/dev-python/jellyfish/jellyfish-0.8.4.ebuild b/dev-python/jellyfish/jellyfish-0.8.4.ebuild
25 deleted file mode 100644
26 index b608fb0c487..00000000000
27 --- a/dev-python/jellyfish/jellyfish-0.8.4.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Python module for doing approximate and phonetic matching of strings"
39 -HOMEPAGE="https://github.com/jamesturk/jellyfish https://pypi.org/project/jellyfish/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -
46 -BDEPEND="
47 - test? (
48 - dev-python/unicodecsv[${PYTHON_USEDEP}]
49 - )
50 -"
51 -
52 -distutils_enable_sphinx docs --no-autodoc
53 -distutils_enable_tests pytest
54 -
55 -python_test() {
56 - cp -r testdata "${BUILD_DIR}" || die
57 - cd "${BUILD_DIR}" || die
58 - epytest lib/jellyfish/test.py
59 -}