diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-12-08 22:51:47 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-12-08 22:58:47 +0100 |
commit | 8c950f67f93118e70e2babbdc272b02bf426450b (patch) | |
tree | ccea91cbd5b23cdabae4581116b8586b05371c77 /dev-python/ukkonen | |
parent | dev-python/uvicorn: Bump to 0.16.0 (diff) | |
download | gentoo-8c950f67f93118e70e2babbdc272b02bf426450b.tar.gz gentoo-8c950f67f93118e70e2babbdc272b02bf426450b.tar.bz2 gentoo-8c950f67f93118e70e2babbdc272b02bf426450b.zip |
dev-python/ukkonen: Bump to 1.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/ukkonen')
-rw-r--r-- | dev-python/ukkonen/Manifest | 1 | ||||
-rw-r--r-- | dev-python/ukkonen/ukkonen-1.0.1.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/ukkonen/Manifest b/dev-python/ukkonen/Manifest index dbc7baf73229..558642c6de75 100644 --- a/dev-python/ukkonen/Manifest +++ b/dev-python/ukkonen/Manifest @@ -1 +1,2 @@ DIST ukkonen-1.0.0.gh.tar.gz 4541 BLAKE2B c93623523fc57b27bb68a2bb41fca51a967910c4936140bee628b4270e343e7902b9e7a6fb85bc89c197e2b0c6897c2d3f788886541bc8b6b7758a6f158a5c6c SHA512 87e3078e8cd4807af3f91c1be7766454705b077cb093eadac34d1af4d56b458813c1062eb086232bffa43b5ca7aa07ed88192e56dacce96c6781f16129111d79 +DIST ukkonen-1.0.1.gh.tar.gz 4547 BLAKE2B e574f21c0e26751e48d16409747b1979ae903c0cd812d52b1715eaa2025cf21c9d24aa3963de61c6ef4126eb4ace8fe974966e768d05c5db8372e0ae96941123 SHA512 23978b8e22454155e7d8a0d2dbb963f4aa5a6be6cdd75a74e8ec5e06fe32a96b6fc14f0f6d03089726bf761ad6d833dc68ea3fb6cad1ad2ee5b259043072875a diff --git a/dev-python/ukkonen/ukkonen-1.0.1.ebuild b/dev-python/ukkonen/ukkonen-1.0.1.ebuild new file mode 100644 index 000000000000..a4cc21241192 --- /dev/null +++ b/dev-python/ukkonen/ukkonen-1.0.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Implementation of bounded Levenshtein distance (Ukkonen)" +HOMEPAGE=" + https://pypi.org/project/ukkonen/ + https://github.com/asottile/ukkonen/" +SRC_URI=" + https://github.com/asottile/ukkonen/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~riscv ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/cffi[${PYTHON_USEDEP}] + ' 'python*')" +BDEPEND=${RDEPEND} + +distutils_enable_tests pytest |