diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-05-22 08:56:17 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-05-22 08:56:17 +0100 |
commit | 07a79a268edfbac4dba8c66eff20cbdc2aac0f6a (patch) | |
tree | bc6688a3cc8c802970aa5e29936310ae9b76ccda /dev-python/fastjsonschema | |
parent | 470949042cc90856adb62f2671e04e3165fc8063 (diff) |
gentoo auto-resync : 22:05:2023 - 08:56:17
Diffstat (limited to 'dev-python/fastjsonschema')
-rw-r--r-- | dev-python/fastjsonschema/Manifest | 2 | ||||
-rw-r--r-- | dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild | 32 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/fastjsonschema/Manifest b/dev-python/fastjsonschema/Manifest index 4f4ae3b2d1dd..81fd4f6f635c 100644 --- a/dev-python/fastjsonschema/Manifest +++ b/dev-python/fastjsonschema/Manifest @@ -1,3 +1,5 @@ +DIST fastjsonschema-2.17.0.tar.gz 370871 BLAKE2B 9d5f16dba7c8519d5bb4853188ba982e06b39a2c1689963ef3aec39e2d48cccbba7ba9ab93cf1b54a06f4e8107917acdb31b076f44b7baf9e9a432256a2f2844 SHA512 ee19945c489b9d4fd23a0a348ec13f321705e93e1367c04003c41b86abd92da2ac73ca6dcd46a9eba0b8b72e8ba899a00939d8a56059fd04eac4300e20589551 DIST python-fastjsonschema-2.16.3.gh.tar.gz 392011 BLAKE2B 04990592a2bf6e1309bf725361ef7c2e253c4765c5b9d60805c5e6189f14885a3b0bae98945c2fe228adc335ca8c8c0a243b283b24fa447238d6415d439288e2 SHA512 2e26f31f9c6966e77f70b8ca584e672d554219b6bbb4811e3ac8dff1c693b2638ef08b8b9011e0db6f739be02e2f41a35d15bcfc42a9cb06ddb4521e51f37d8a EBUILD fastjsonschema-2.16.3.ebuild 735 BLAKE2B 94bcee2f1a4811ab16315197b74e60bcc5232848006a58e442f4105441c1e1552a8d4b8904b605762e32e22717cdb0620b53ea5ab3d1cc13734324dbd8de0d55 SHA512 1eb0f21c326f933c4a61fa576036e81b0ee8b37c2a81eaaba59b282bf3aada26f11e1b16a814bcd195631ad65117b780404e249c4698359e039a54a0298b912f +EBUILD fastjsonschema-2.17.0.ebuild 731 BLAKE2B dac3bc41fefaf9810d9dca3aeea2e2fbbccd919bb58abc7a7e4dbd1f1544ce5fa1d3f4e74fe2e66adb00a8fdfd5943e8e3333264abe0cf23e0a77a5e3d70fff1 SHA512 33bb631f534909bc482e4c7f4fbdda6be0405cc6c93dc843f0e212e09efb8d2660fbb920fde0910265f1c08c98609d3b2b2ee01557371a2202d4f2515d1de0f5 MISC metadata.xml 390 BLAKE2B d29071ddcb0aea8db343c2924de51e8fdbf9295898c687ca0f474e007007407c9a402cd2fa74f0f2142dfb2f14a2cfd0c51c05f5fad6891734328a003283821f SHA512 db3339aaba0218ebea0ea4cd5b950dbf74572b18341f595fbbbe1f67c0c9c23413f4a98aeec5b49b036533cfea46e8f2a74f5f999c3b4c472a66297346139b05 diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild b/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild new file mode 100644 index 000000000000..9a16ce7b1b94 --- /dev/null +++ b/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Fast JSON schema validator for Python" +HOMEPAGE=" + https://github.com/horejsek/python-fastjsonschema/ + https://pypi.org/project/fastjsonschema/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + tests/benchmarks +) + +src_prepare() { + distutils-r1_src_prepare + # stray directory? + # https://github.com/horejsek/python-fastjsonschema/issues/173 + rm -r tests/examples/lengths || die +} |