summaryrefslogtreecommitdiff
path: root/dev-python/ijson
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/ijson')
-rw-r--r--dev-python/ijson/Manifest2
-rw-r--r--dev-python/ijson/ijson-3.4.0.ebuild36
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/ijson/Manifest b/dev-python/ijson/Manifest
index 159213a651c7..9b2e9eab2061 100644
--- a/dev-python/ijson/Manifest
+++ b/dev-python/ijson/Manifest
@@ -1,3 +1,5 @@
DIST ijson-3.3.0.tar.gz 60079 BLAKE2B 53c92015c30ed285acec1f9e811521eeb9d22b2011b0398b23e44c1b0fff2b97e87b48b9058733db6002222913ebeb1a304763e7c5f8fe6c2d872f791d80ce39 SHA512 9517919b98904608f81ee0292968e9c8951e3e96cdec286d945eebcd94ae6322c08a878ebfabce3e226646bf04488710274563b1f48048707bc78e51941b5d23
+DIST ijson-3.4.0.tar.gz 65782 BLAKE2B 133cedb643d9021511094f6799a1e39c6e5c301bb7a89ddf389006bd56136cf76736ef1187073fb8d10bafd8bc4250b9d3777c19ec681308a2ae8a891908340c SHA512 2d473adaf31c84b601e1499aadd9086201b29c02c1abd432a8ed9464e42010d9a5a29f1be7d0a186eca4bb8a3b3482d27651583c020dc688257fd41b4b9729f7
EBUILD ijson-3.3.0.ebuild 600 BLAKE2B b6d8d305e116a968d7ef833a0f0e26df24ab202f1e9296b01fc081e59e8f508c83b4610b42282b99129e5fcbe553e0a095d3df96c4018aff89d92faa341a8ff4 SHA512 8254492bb8ee881e8827fabc1681b619c5ae6ed39d0675848328012ab768725af004cf18071d39a1bb58fafe04d303468c1f4c0979cc3eb5ec02058603948296
+EBUILD ijson-3.4.0.ebuild 596 BLAKE2B fb6a711fcbd0c87aa2a0b8fc2f93dfc2859e7769f3e666282c5882de649c4a409a9dd26634683371a2cb34102a1c848c04ae335b8505cfabb32d7a7f68282da4 SHA512 24e4342d177d718a94c54e1baaee429c847f7f6c7bf42bdad631f611d7b7d76b1efdd09218e58de8561ff439ad719f5f2242cc16997d9f72b36abc5540b17184
MISC metadata.xml 372 BLAKE2B 9fd70113a6731ca09979bacb2153df2c26db31ef9cb2a95cc2de2201aeb5348a6344fa6dab27a0880a9d70cb4498d39a4ef9cbcff6127932d5af3c534e21b5c2 SHA512 5f3747561e4c802300860b9d2f27b08acea3979e8cac48bf6145c4cbeeb3ec0b3d765399d0ed8fe01947860d78dea0faa0839cb393e066ec0aaffa2ab2661398
diff --git a/dev-python/ijson/ijson-3.4.0.ebuild b/dev-python/ijson/ijson-3.4.0.ebuild
new file mode 100644
index 000000000000..ebf39bfaab08
--- /dev/null
+++ b/dev-python/ijson/ijson-3.4.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2025 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_{11..13} pypy3_11 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Iterative JSON parser with a Pythonic interface"
+HOMEPAGE="
+ https://github.com/ICRAR/ijson/
+ https://pypi.org/project/ijson/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+DEPEND="
+ dev-libs/yajl:=
+"
+RDEPEND="
+ ${DEPEND}
+"
+
+distutils_enable_tests pytest
+
+export IJSON_BUILD_YAJL2C=1
+
+python_test() {
+ rm -rf ijson || die
+ epytest
+}