From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jq/
Date: Thu, 10 Feb 2022 21:10:43 +0000 (UTC) [thread overview]
Message-ID: <1644527407.74801f114a6cc4ab12bfc319c715ad012e06d7f7.arthurzam@gentoo> (raw)
commit: 74801f114a6cc4ab12bfc319c715ad012e06d7f7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 10 21:00:33 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 10 21:10:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74801f11
dev-python/jq: add 1.2.2
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/jq/Manifest | 1 +
dev-python/jq/jq-1.2.2.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-python/jq/Manifest b/dev-python/jq/Manifest
index 1163d690a0cd..e447b3e60385 100644
--- a/dev-python/jq/Manifest
+++ b/dev-python/jq/Manifest
@@ -1,3 +1,4 @@
DIST jq-1.2.1.gh.tar.gz 10321 BLAKE2B 8bc2c88ae553dd53137c11d4f599e01398d21811a02b4f33f81aeeafa9009f58a56074c0bcadcc6382d86d2c7ada792d442f9c660787e131d0e85c95fb7cab32 SHA512 0b6dda04c0b3c63a5bf41f8a73dedc3cd889683f3e89c99cbf258c839f35f66d19a6da5cf4096148cd17a3fb1a58ba0e10d052ce46a1a18af845910e00ff5d86
+DIST jq-1.2.2.gh.tar.gz 10436 BLAKE2B 09514ce3a9afa8df4e61b29fc17f0d875db046ddc98332f13d702defd443e4e2ac1c612042eab82e620298d236a548625f5578d04dbeb681858bc10243c878a1 SHA512 632c5ebaf2607cc609ee4cfbdc0d68dff96e6daff916d77381f1596f3b1ca494c962cc56127376ef21fb931ab1333b666b01a599b97eab8a94416d1caec65248
DIST jq-1.6.tar.gz 1750584 BLAKE2B c9be1314e9d027247de63492ee362e996ef85faf45a47ee421cad95ebde9188bff8d3fc7db64e717ab922e1052f3b1c1500f5589fc5b2199ab66effb000e442d SHA512 5da71f53c325257f1f546a2520fe47828b495c953270df25ea0e37741463fdda72f0ba4d5b05b25114ec30f27a559344c2b024bacabf610759f4e3e9efadb480
DIST onig-6.9.4.tar.gz 908702 BLAKE2B e6e9939f284569408ba01b8551960bc939bbfdca425f8470499f5bb83ead7b6b09898f6f6a09d5d8c26d74d5416f6e5e9e2f00fbe7aa9eb820edb8aa4a3050cc SHA512 ed8f42f6893966c0ee3c168b4fdbcb04b2286ad69ecab43a754c1dbc8fc4656e01319991d776d7144b6a3f90d050781b321432278d83c74c9565c2743851c85b
diff --git a/dev-python/jq/jq-1.2.2.ebuild b/dev-python/jq/jq-1.2.2.ebuild
new file mode 100644
index 000000000000..131c11194652
--- /dev/null
+++ b/dev-python/jq/jq-1.2.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for jq"
+HOMEPAGE="https://github.com/mwilliamson/jq.py"
+SRC_URI="
+ https://github.com/mwilliamson/jq.py/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+ https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz
+ https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz"
+S="${WORKDIR}/jq.py-${PV}"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed -e 's|import requests|#\0|' \
+ -e 's|urlretrieve(source_url, tarball_path)|shutil.copyfile(source_url, tarball_path)|' \
+ -e "s|source_url=.*kkos/oniguruma.*|source_url=\"${DISTDIR}/onig-6.9.4.tar.gz\",|" \
+ -e "s|source_url=.*stedolan/jq.*|source_url=\"${DISTDIR}/jq-1.6.tar.gz\",|" \
+ -i setup.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile() {
+ # 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
+}
next reply other threads:[~2022-02-10 21:10 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-10 21:10 Arthur Zamarin [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-07 13:06 [gentoo-commits] repo/gentoo:master commit in: dev-python/jq/ Michał Górny
2024-09-07 12:31 Jakov Smolić
2024-09-07 11:26 Jakov Smolić
2024-08-17 16:55 Michał Górny
2024-06-03 21:20 Louis Sautier
2024-05-18 5:05 Michał Górny
2024-04-18 5:34 Michał Górny
2024-04-18 5:23 Sam James
2024-04-18 5:23 Sam James
2024-03-17 16:24 Michał Górny
2023-10-06 19:57 Arthur Zamarin
2023-10-06 18:08 Sam James
2023-09-13 3:57 Sam James
2023-09-13 2:42 Michał Górny
2023-08-31 13:22 Michał Górny
2023-08-06 12:30 Michał Górny
2023-05-25 3:18 Sam James
2023-05-04 16:17 Michał Górny
2023-04-17 4:21 Michał Górny
2023-04-16 23:17 Sam James
2023-04-16 17:15 Arthur Zamarin
2023-03-17 5:32 Michał Górny
2023-02-16 14:18 Michał Górny
2023-02-16 10:01 Sam James
2023-02-16 5:24 Sam James
2023-01-07 4:54 Michał Górny
2022-10-10 20:22 Michał Górny
2022-10-10 18:34 Sam James
2022-10-10 18:34 Sam James
2022-09-22 21:06 Zac Medico
2022-09-09 7:23 Arthur Zamarin
2022-03-21 9:15 Jakov Smolić
2022-03-21 9:12 Jakov Smolić
2021-11-13 15:38 Louis Sautier
2021-10-17 8:58 Michał Górny
2021-09-12 15:35 Arthur Zamarin
2021-06-14 20:05 Zac Medico
2021-04-24 1:46 Zac Medico
2021-04-24 1:38 Zac Medico
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1644527407.74801f114a6cc4ab12bfc319c715ad012e06d7f7.arthurzam@gentoo \
--to=arthurzam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox