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/rapidfuzz/
Date: Sun, 06 Nov 2022 06:11:54
Message-Id: 1667715107.b687348416a1acdb0c66b6d0a78fc32d4971f23c.mgorny@gentoo
1 commit: b687348416a1acdb0c66b6d0a78fc32d4971f23c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 05:52:21 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 06:11:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6873484
7
8 dev-python/rapidfuzz: Bump to 2.13.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/rapidfuzz/Manifest | 1 +
13 dev-python/rapidfuzz/rapidfuzz-2.13.2.ebuild | 47 ++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-python/rapidfuzz/Manifest b/dev-python/rapidfuzz/Manifest
17 index a62b2c8454eb..561a3e68291b 100644
18 --- a/dev-python/rapidfuzz/Manifest
19 +++ b/dev-python/rapidfuzz/Manifest
20 @@ -1,3 +1,4 @@
21 DIST rapidfuzz-2.12.0.tar.gz 836008 BLAKE2B 7d8cb6637247711f2f6fed63c9f26e2d3b8871b9a4926b86e37f6d42fed0f5ac2af727a1b350f4b55787b6fd5a393c3b90ee91d122731bb3f64acb4edb5126f0 SHA512 06c5e46332c98ea8feb83a89b879efc12a737f58312a862ab426e899bdfd3661601d4a417f7bc518e1006a2f05fa31ce1003ae9dd67c1e7d58f903e65f9eb6e7
22 DIST rapidfuzz-2.13.0.tar.gz 841650 BLAKE2B 53cdae975a46d68d6ec128a2633a1dd582643fe2564a6db1783c1b7d0917d1904238b9f67e68da788797f0c323b2c99df4fdf04615d8bd3d503cc3377876f197 SHA512 f700b5b926aa639434bb48df21d6320c9a289f7972a15cccb7020a2459eeea70476ed146866d13dce03b112c1512a8403d2d2ab729b91475d43eb775fab21560
23 DIST rapidfuzz-2.13.1.tar.gz 841623 BLAKE2B 0d1aca4cde5face35f31348d054d2d0194b1f5985bb87ec22a3759f0d03ecc91de64e483197ec7e230636f409f7766e4fc5d6896778f00fd22ae9457ee680b1f SHA512 6e19873981a69c5d80c9197739e3c9a4376d50e6fbfc12932327ff6eb9dabb2762926820f1f5dbdcd884fadfc3326d3f32e2d3c991007f60846165175f0e0b98
24 +DIST rapidfuzz-2.13.2.tar.gz 842042 BLAKE2B 35f3554a3a3cf3d02fc9e96b68e4e54bfd17d4df14befc9c17a3e3c3e078f41106bae2bdf5844ac8658af57dfcf6de90c9ccbadb45cb086a297b75d8c0de50fc SHA512 9cbc436f9259008dd911aac0884c222e444145554a6d8eab4761cff701397d62de26e1ac47393c3273fe99b0ee0a92b80cbc5d6683fe3aedd8582e8afc5d7828
25
26 diff --git a/dev-python/rapidfuzz/rapidfuzz-2.13.2.ebuild b/dev-python/rapidfuzz/rapidfuzz-2.13.2.ebuild
27 new file mode 100644
28 index 000000000000..e79a6b583150
29 --- /dev/null
30 +++ b/dev-python/rapidfuzz/rapidfuzz-2.13.2.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +# custom wrapper over setuptools
38 +DISTUTILS_USE_PEP517=standalone
39 +PYTHON_COMPAT=( python3_{8..11} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Rapid fuzzy string matching in Python using various string metrics"
44 +HOMEPAGE="
45 + https://github.com/maxbachmann/RapidFuzz/
46 + https://pypi.org/project/rapidfuzz/
47 +"
48 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~riscv"
53 +
54 +# all these are header-only libraries
55 +DEPEND="
56 + >=dev-cpp/taskflow-3.0.0
57 + >=dev-cpp/rapidfuzz-cpp-1.10.0
58 + dev-python/numpy[${PYTHON_USEDEP}]
59 +"
60 +BDEPEND="
61 + dev-python/rapidfuzz_capi[${PYTHON_USEDEP}]
62 + >=dev-python/scikit-build-0.16.2[${PYTHON_USEDEP}]
63 + dev-python/setuptools[${PYTHON_USEDEP}]
64 + test? (
65 + dev-python/hypothesis[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_tests pytest
70 +
71 +src_prepare() {
72 + # sterilize build flags
73 + sed -i -e '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die
74 +
75 + distutils-r1_src_prepare
76 +
77 + export RAPIDFUZZ_BUILD_EXTENSION=1
78 +}