commit:     9f4a9b37e0b019b38544e7cfc18ea81b21cbcfd7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 02:35:16 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 02:35:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4a9b37

dev-python/jq: Bump to 1.6.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/jq/Manifest        |  1 +
 dev-python/jq/jq-1.6.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/jq/Manifest b/dev-python/jq/Manifest
index 48c91cd4bf5f..beaf41c2f223 100644
--- a/dev-python/jq/Manifest
+++ b/dev-python/jq/Manifest
@@ -1,2 +1,3 @@
 DIST jq.py-1.4.1.gh.tar.gz 2648592 BLAKE2B 
b1413a07ba03f61d3b2e8cfa3f2c646408e24139f76fb9637d23968d953fa78f82b1dd04c355d5a6e6c6761095a4814d8cfd1f012382ca810ad5a44e007c7878
 SHA512 
03924793e8cab8041b4b2ecb8ef45bafdf31f14b4502170358ddecc027ead7cc17eda37fc04743eeef073e29144d2f7e6c4428e2a92f1bb8aa859100dce4521b
 DIST jq.py-1.5.0.gh.tar.gz 2649404 BLAKE2B 
9dfe8f17e061eaea44de31be17cbb18607dc118d526a652a80e2d69b30fa532f412b9b20b1c72418f4d6904b43126611344b2257bc9cb3441086ef3e8f131a6e
 SHA512 
826771ced7d707111b7bc6d1f7a408944690daa8bfb6ec135627a15c3fcfba95a525b8ee3005f8a6e5d23afbeaacc06ad7464e3c3a0a15cf5582d97121c64248
+DIST jq.py-1.6.0.gh.tar.gz 2842673 BLAKE2B 
5ef2d2c6641483123b030c508b04e8f1574a5ca3168a2bacfd7c5a4ad01344d677f723cc3317677275496bd56412c5ab64370ed87b70dcb91dd1d8328daf65a8
 SHA512 
91e2c0890cece4f09e362c0ae691c768be64ba0d8e0d7441c9a459be37ff70ee816d179c21759ee053b2b434fc0a6998d90b660ae1f1456d4f506474cb80d88e

diff --git a/dev-python/jq/jq-1.6.0.ebuild b/dev-python/jq/jq-1.6.0.ebuild
new file mode 100644
index 000000000000..bd2c24ecf040
--- /dev/null
+++ b/dev-python/jq/jq-1.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P="jq.py-${PV}"
+DESCRIPTION="Python bindings for jq"
+HOMEPAGE="
+       https://github.com/mwilliamson/jq.py/
+       https://pypi.org/project/jq/
+"
+SRC_URI="
+       https://github.com/mwilliamson/jq.py/archive/${PV}.tar.gz
+               -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+       app-misc/jq:=
+       dev-libs/oniguruma:=
+"
+BDEPEND="
+       dev-python/cython[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+       local -x JQPY_USE_SYSTEM_LIBS=1
+
+       # Cython compilation isn't part of setup.py, so do it manually
+       "${EPYTHON}" -m cython -3 jq.pyx -o jq.c || die
+       distutils-r1_python_compile
+}

Reply via email to