mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
79 lines
1.5 KiB
Bash
79 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=maturin
|
|
PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 )
|
|
|
|
CRATES="
|
|
ahash@0.8.11
|
|
autocfg@1.4.0
|
|
cfg-if@1.0.0
|
|
csv-core@0.1.12
|
|
csv@1.3.1
|
|
getrandom@0.2.15
|
|
heck@0.5.0
|
|
indoc@2.0.6
|
|
itoa@1.0.15
|
|
libc@0.2.171
|
|
memchr@2.7.4
|
|
memoffset@0.9.1
|
|
num-traits@0.2.19
|
|
once_cell@1.21.3
|
|
portable-atomic@1.11.0
|
|
proc-macro2@1.0.94
|
|
pyo3-build-config@0.24.0
|
|
pyo3-ffi@0.24.0
|
|
pyo3-macros-backend@0.24.0
|
|
pyo3-macros@0.24.0
|
|
pyo3@0.24.0
|
|
quote@1.0.40
|
|
ryu@1.0.20
|
|
serde@1.0.219
|
|
serde_derive@1.0.219
|
|
smallvec@1.14.0
|
|
syn@2.0.100
|
|
target-lexicon@0.13.2
|
|
tinyvec@1.9.0
|
|
tinyvec_macros@0.1.1
|
|
unicode-ident@1.0.18
|
|
unicode-normalization@0.1.24
|
|
unicode-segmentation@1.12.0
|
|
unindent@0.2.4
|
|
version_check@0.9.5
|
|
wasi@0.11.0+wasi-snapshot-preview1
|
|
zerocopy-derive@0.7.35
|
|
zerocopy@0.7.35
|
|
"
|
|
|
|
inherit cargo distutils-r1 pypi
|
|
|
|
DESCRIPTION="Python module for doing approximate and phonetic matching of strings"
|
|
HOMEPAGE="
|
|
https://github.com/jamesturk/jellyfish/
|
|
https://pypi.org/project/jellyfish/
|
|
"
|
|
SRC_URI+="
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0-with-LLVM-exceptions MIT Unicode-3.0
|
|
|| ( Apache-2.0 Boost-1.0 )
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
|
|
|
|
QA_FLAGS_IGNORED="usr/lib.*/py.*/site-packages/jellyfish/_rustyfish.*.so"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
export UNSAFE_PYO3_SKIP_VERSION_CHECK=1
|
|
|
|
python_test_all() {
|
|
cargo_src_test
|
|
}
|