Diff jq-1.5.0-r1 with a jq-1.6.0-r1
/usr/portage/dev-python/jq/jq-1.6.0-r1.ebuild 2023-10-09 14:52:30.296368370 +0300 | ||
---|---|---|
25 | 25 |
SLOT="0" |
26 | 26 |
KEYWORDS="~amd64 ~x86" |
27 | 27 | |
28 |
# Minimum versions of jq + onigurama are from setup.py's bundled versions |
|
29 |
RDEPEND=" |
|
30 |
>=app-misc/jq-1.7:= |
|
31 |
>=dev-libs/oniguruma-6.9.8:= |
|
32 |
" |
|
33 |
DEPEND="${RDEPEND}" |
|
28 | 34 |
BDEPEND=" |
29 | 35 |
dev-python/cython[${PYTHON_USEDEP}] |
30 | 36 |
" |
31 | 37 | |
32 |
PATCHES=( |
|
33 |
"${FILESDIR}"/${P}-cython3.patch |
|
34 |
) |
|
35 | ||
36 | 38 |
distutils_enable_tests pytest |
37 | 39 | |
38 | 40 |
python_compile() { |
39 |
# TODO: export JQPY_USE_SYSTEM_LIBS=1 on next release |
|
41 |
local -x JQPY_USE_SYSTEM_LIBS=1 |
|
40 | 42 | |
41 | 43 |
# Cython compilation isn't part of setup.py, so do it manually |
42 | 44 |
"${EPYTHON}" -m cython -3 jq.pyx -o jq.c || die |