Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fuzzywuzzy/
Date: Mon, 23 Dec 2019 02:25:06
Message-Id: 1577067887.3211b572fca57d640d10ca68142d4b6a0fe13188.bman@gentoo
1 commit: 3211b572fca57d640d10ca68142d4b6a0fe13188
2 Author: Yury Martynov <email <AT> linxon <DOT> ru>
3 AuthorDate: Fri Dec 20 13:43:16 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 23 02:24:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3211b572
7
8 dev-python/fuzzywuzzy: bump to 0.17.0, add python3_{7,8} support
9
10 Closes: https://bugs.gentoo.org/703414
11 Closes: https://bugs.gentoo.org/656768
12 Closes: https://bugs.gentoo.org/639810
13 Package-Manager: Portage-2.3.79, Repoman-2.3.16
14 Signed-off-by: Yury Martynov <email <AT> linxon.ru>
15 Closes: https://github.com/gentoo/gentoo/pull/14057
16 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
17
18 dev-python/fuzzywuzzy/Manifest | 1 +
19 dev-python/fuzzywuzzy/fuzzywuzzy-0.17.0.ebuild | 27 ++++++++++++++++++++++++++
20 2 files changed, 28 insertions(+)
21
22 diff --git a/dev-python/fuzzywuzzy/Manifest b/dev-python/fuzzywuzzy/Manifest
23 index ebf52415ea3..73da489570d 100644
24 --- a/dev-python/fuzzywuzzy/Manifest
25 +++ b/dev-python/fuzzywuzzy/Manifest
26 @@ -1 +1,2 @@
27 DIST fuzzywuzzy-0.12.0.tar.gz 25792 BLAKE2B bb800d0ff020bf7b3b4b0374dbfdbd788da6cb3d72e5a8a63e331c1a1a38d6317c6f56563d36015d72b86c86755552644958cb84b99f27a6b739f372a3207ed7 SHA512 d4312342af9e3fc9383e1967e60b2856af73e8ad869f6b694d3f737d0280cd840dc42779b0407aefce2571d98c97ab780912943078c4d94dd77502c4e28bd2cc
28 +DIST fuzzywuzzy-0.17.0.tar.gz 27321 BLAKE2B 640f38954501a19cfabdb302faf93c57ca62f60e8aac576cd5098e947559cbedd2a769cd2e88f7bc71071ce61aca0a6c075ed9a8fcfdc57f5b90d4579895f346 SHA512 10fb91d85f2e612885543a442959f3c88bf9d3dc468718a1fb92bf443f1753abfc04a9b07935a0d523508b38fc1ba9a7ba391a17b5f01160c26cc2c98d1f6c1d
29
30 diff --git a/dev-python/fuzzywuzzy/fuzzywuzzy-0.17.0.ebuild b/dev-python/fuzzywuzzy/fuzzywuzzy-0.17.0.ebuild
31 new file mode 100644
32 index 00000000000..8ff35c55737
33 --- /dev/null
34 +++ b/dev-python/fuzzywuzzy/fuzzywuzzy-0.17.0.ebuild
35 @@ -0,0 +1,27 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} )
42 +
43 +inherit distutils-r1
44 +
45 +DESCRIPTION="Fuzzy string matching in python"
46 +HOMEPAGE="https://github.com/seatgeek/fuzzywuzzy"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 +
49 +KEYWORDS="~amd64 ~x86"
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +IUSE="test"
53 +
54 +RESTRICT="!test? ( test )"
55 +
56 +DEPEND="test? ( dev-python/pycodestyle[${PYTHON_USEDEP}] )"
57 +RDEPEND="${PYTHON_DEPS}
58 + dev-python/python-levenshtein[${PYTHON_USEDEP}]"
59 +
60 +python_test() {
61 + "${PYTHON}" test_fuzzywuzzy.py || die "tests failed under ${EPYTHON}"
62 +}