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/textdistance/
Date: Thu, 28 Oct 2021 07:00:50
Message-Id: 1635404435.6fd84f5a82a993a714724ffb334d1f441911fdd0.mgorny@gentoo
1 commit: 6fd84f5a82a993a714724ffb334d1f441911fdd0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 28 06:42:56 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 28 07:00:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fd84f5a
7
8 dev-python/textdistance: Bump to 4.2.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/textdistance/Manifest | 1 +
13 dev-python/textdistance/textdistance-4.2.2.ebuild | 34 +++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/textdistance/Manifest b/dev-python/textdistance/Manifest
17 index 4a3aedf1027..811e9e22887 100644
18 --- a/dev-python/textdistance/Manifest
19 +++ b/dev-python/textdistance/Manifest
20 @@ -1 +1,2 @@
21 DIST textdistance-4.2.1.tar.gz 45095 BLAKE2B c0b7fec8adb3a90fc2f3c939a39492887a4989e16d6bd9c548fceb1d5020323d2782dabdb69ae17dc4c3cd795425b3fbdf9bb6041b1ef7df840c2b3a9e2a7e05 SHA512 daff22077800e42ae266edd8614a1300f3f2d080868dbd38e14d035f19853e555485d27ab0392401318e0c4ddc81fbf1b537dd3aa1ba25d7a89e5f0edde8ce46
22 +DIST textdistance-4.2.2.tar.gz 45089 BLAKE2B 8b08db743a56c289cc10a9ceb606612acb2a13d12cd12f9627870a4748c415804bde7c3f1aee54d59a49053731727827dbbd5f4ed6c2cfcc302166575ba382ca SHA512 f181686153e6e8f1541a15ac752e6a86698445713732858e63b6465c96dfeb582d2ea6cad1f7c526a3dc60796d58064355480bc6ced7dc69268a5c0abbfabdb7
23
24 diff --git a/dev-python/textdistance/textdistance-4.2.2.ebuild b/dev-python/textdistance/textdistance-4.2.2.ebuild
25 new file mode 100644
26 index 00000000000..bb2161da9c2
27 --- /dev/null
28 +++ b/dev-python/textdistance/textdistance-4.2.2.ebuild
29 @@ -0,0 +1,34 @@
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="Compute distance between the two texts"
39 +HOMEPAGE="https://github.com/life4/textdistance"
40 +SRC_URI="
41 + https://github.com/life4/textdistance/archive/${PV}.tar.gz
42 + -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +BDEPEND="
49 + test? (
50 + dev-python/abydos[${PYTHON_USEDEP}]
51 + dev-python/hypothesis[${PYTHON_USEDEP}]
52 + dev-python/isort[${PYTHON_USEDEP}]
53 + dev-python/jellyfish[${PYTHON_USEDEP}]
54 + dev-python/numpy[${PYTHON_USEDEP}]
55 + dev-python/python-levenshtein[${PYTHON_USEDEP}]
56 + dev-python/pyxDamerauLevenshtein[${PYTHON_USEDEP}]
57 + )"
58 +
59 +distutils_enable_tests --install pytest
60 +
61 +EPYTEST_DESELECT=(
62 + tests/test_external.py
63 +)