[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2024-05-09 Thread Michał Górny
commit: a4ae053e7dfbaf0162555c46f24b074f11ed025a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  9 17:25:02 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  9 17:32:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ae053e

dev-python/fastjsonschema: Enable py3.13

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

 dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
index 2308e701735e..cf18821f1b26 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/files/, dev-python/fastjsonschema/

2024-04-02 Thread Michał Górny
commit: 1cf80c25fdea65c399018f856f430fe208e95294
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr  2 14:06:22 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr  2 16:18:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cf80c25

dev-python/fastjsonschema: Backport pytest-8 fix

Closes: https://bugs.gentoo.org/928408
Signed-off-by: Michał Górny  gentoo.org>

 .../fastjsonschema/fastjsonschema-2.19.1.ebuild|  5 ++
 .../files/fastjsonschema-2.19.1-pytest-8.patch | 67 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
index 602928a877f2..2308e701735e 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
@@ -23,3 +23,8 @@ distutils_enable_tests pytest
 EPYTEST_IGNORE=(
tests/benchmarks
 )
+
+PATCHES=(
+   # https://github.com/horejsek/python-fastjsonschema/pull/180
+   "${FILESDIR}/${P}-pytest-8.patch"
+)

diff --git 
a/dev-python/fastjsonschema/files/fastjsonschema-2.19.1-pytest-8.patch 
b/dev-python/fastjsonschema/files/fastjsonschema-2.19.1-pytest-8.patch
new file mode 100644
index ..40cd057f6299
--- /dev/null
+++ b/dev-python/fastjsonschema/files/fastjsonschema-2.19.1-pytest-8.patch
@@ -0,0 +1,67 @@
+From 427a34e9ef409fefd8f1f7ae7e1c2a2bb7eb4496 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?=
+ 
+Date: Tue, 14 Nov 2023 18:05:17 -0600
+Subject: [PATCH] Use `warnings.catch_warnings` instead of `pytest.warns(None)`
+ in tests
+
+---
+ tests/test_pattern_properties.py | 7 ---
+ tests/test_string.py | 7 ---
+ 2 files changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/tests/test_pattern_properties.py 
b/tests/test_pattern_properties.py
+index ae86946..945315b 100644
+--- a/tests/test_pattern_properties.py
 b/tests/test_pattern_properties.py
+@@ -1,3 +1,5 @@
++import warnings
++
+ import pytest
+ 
+ 
+@@ -59,12 +61,11 @@ def test_pattern_with_escape_no_warnings(asserter):
+ 'bar': {}
+ }
+ 
+-with pytest.warns(None) as record:
++with warnings.catch_warnings():
++warnings.simplefilter("error")
+ asserter({
+ 'type': 'object',
+ 'patternProperties': {
+ '\\w+': {'type': 'object'}
+ }
+ }, value, value)
+-
+-assert len(record) == 0
+diff --git a/tests/test_string.py b/tests/test_string.py
+index a8e8318..12fc3c9 100644
+--- a/tests/test_string.py
 b/tests/test_string.py
+@@ -1,3 +1,5 @@
++import warnings
++
+ import pytest
+ 
+ from fastjsonschema import JsonSchemaValueException
+@@ -74,14 +76,13 @@ def test_pattern_with_space(asserter, pattern):
+ 
+ 
+ def test_pattern_with_escape_no_warnings(asserter):
+-with pytest.warns(None) as record:
++with warnings.catch_warnings():
++warnings.simplefilter("error")
+ asserter({
+ 'type': 'string',
+ 'pattern': '\\s'
+ }, ' ', ' ')
+ 
+-assert len(record) == 0
+-
+ 
+ exc = JsonSchemaValueException('data must be a valid regex', value='{data}', 
name='data', definition='{definition}', rule='format')
+ @pytest.mark.parametrize('value, expected', [
+-- 
+2.44.0
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2024-01-13 Thread Michał Górny
commit: 800d2b22fae9e7453e7f0512cb31a266f4627f46
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 13 09:51:56 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 13 10:04:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800d2b22

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.19.0.ebuild| 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 3b5ab4ef04f1..294e7ffd3d6f 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST fastjsonschema-2.19.0.tar.gz 371202 BLAKE2B 
56103ae94d52a337ceb830b7dfe68b3e1c3d5bdfbe46c8c042b5bc1a6d4e36201176a274135779cbf50a9ce939d95f5bd3c5bd88b7a6483db4cc438bff1d986a
 SHA512 
d26c7f44acfeb4210fad188e3fe5486231a516fb0a4fa7d756dd9d1378b22afd7b4acb6b34085cabcfe31dac44a605de6f90a158a3af69de97f8926d59b3a105
 DIST fastjsonschema-2.19.1.tar.gz 372732 BLAKE2B 
f028e027483e02969c4d750a888659add9dd7f661776ab42242f74492272267b93a2248cdc50b78389091cc1a1fd7661abbf377d81edf73df35ed1e222be7328
 SHA512 
b276788ebe1d3a6bc5d1463c2a4940fbe5c9e0a7919c813b78f385faa406527cac34d4042e6a69e0ca1631f3e5ed0bc351e13d9d1e245132a1607e010a5a2346

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
deleted file mode 100644
index a262d0691ff7..
--- a/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-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
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2024-01-13 Thread Arthur Zamarin
commit: 0090951f565ed3b1dea779ee521af7bc887ab851
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 13 09:36:05 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 13 09:36:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0090951f

dev-python/fastjsonschema: Stabilize 2.19.1 ALLARCHES, #922003

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
index e1529c815ca6..602928a877f2 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2023 Gentoo Authors
+# Copyright 2020-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-12-28 Thread Michał Górny
commit: 7df11bb8de116c3ba9917786974c4f98e6a5a165
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 29 04:17:50 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 29 04:35:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df11bb8

dev-python/fastjsonschema: Bump to 2.19.1

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.19.1.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 4da7cd5f9bc7..3b5ab4ef04f1 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST fastjsonschema-2.19.0.tar.gz 371202 BLAKE2B 
56103ae94d52a337ceb830b7dfe68b3e1c3d5bdfbe46c8c042b5bc1a6d4e36201176a274135779cbf50a9ce939d95f5bd3c5bd88b7a6483db4cc438bff1d986a
 SHA512 
d26c7f44acfeb4210fad188e3fe5486231a516fb0a4fa7d756dd9d1378b22afd7b4acb6b34085cabcfe31dac44a605de6f90a158a3af69de97f8926d59b3a105
+DIST fastjsonschema-2.19.1.tar.gz 372732 BLAKE2B 
f028e027483e02969c4d750a888659add9dd7f661776ab42242f74492272267b93a2248cdc50b78389091cc1a1fd7661abbf377d81edf73df35ed1e222be7328
 SHA512 
b276788ebe1d3a6bc5d1463c2a4940fbe5c9e0a7919c813b78f385faa406527cac34d4042e6a69e0ca1631f3e5ed0bc351e13d9d1e245132a1607e010a5a2346

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
new file mode 100644
index ..e1529c815ca6
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+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
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-11-29 Thread Michał Górny
commit: de27400c0889347d4befa6db34a1ff8cfeeace24
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 10:05:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 10:05:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de27400c

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.18.1.ebuild| 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 9c9755081444..4da7cd5f9bc7 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST fastjsonschema-2.18.1.tar.gz 371060 BLAKE2B 
fc77683215e9080d3a6f162336a7ed0a310c9921f0e669d90bfaea659dd77ad27ed0c623b0355d5efafa3ca2e83f72edf228c42cca0fc4fa16f4f474aa6b
 SHA512 
a08fce64a67c67a06a7c3c637047648e1b2cfa749291794b8accc6dcc1ccf744eb50c8db773734017b79612b2dc4e19730a5956807b2459928fb0b996b59711e
 DIST fastjsonschema-2.19.0.tar.gz 371202 BLAKE2B 
56103ae94d52a337ceb830b7dfe68b3e1c3d5bdfbe46c8c042b5bc1a6d4e36201176a274135779cbf50a9ce939d95f5bd3c5bd88b7a6483db4cc438bff1d986a
 SHA512 
d26c7f44acfeb4210fad188e3fe5486231a516fb0a4fa7d756dd9d1378b22afd7b4acb6b34085cabcfe31dac44a605de6f90a158a3af69de97f8926d59b3a105

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
deleted file mode 100644
index a262d0691ff7..
--- a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-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
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-11-29 Thread Michał Górny
commit: 8793892a547ab40a254d0f0a1767920b30023901
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 29 09:59:33 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 29 09:59:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8793892a

dev-python/fastjsonschema: Stabilize 2.19.0 ALLARCHES, #918742

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

 dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
index e1529c815ca6..a262d0691ff7 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-11-14 Thread Michał Górny
commit: 35d3e18e5295d9482efa8a8750829d343daa1397
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 15 05:40:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 15 05:55:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35d3e18e

dev-python/fastjsonschema: Bump to 2.19.0

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.19.0.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 4bf7308e00ef..9c9755081444 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST fastjsonschema-2.18.1.tar.gz 371060 BLAKE2B 
fc77683215e9080d3a6f162336a7ed0a310c9921f0e669d90bfaea659dd77ad27ed0c623b0355d5efafa3ca2e83f72edf228c42cca0fc4fa16f4f474aa6b
 SHA512 
a08fce64a67c67a06a7c3c637047648e1b2cfa749291794b8accc6dcc1ccf744eb50c8db773734017b79612b2dc4e19730a5956807b2459928fb0b996b59711e
+DIST fastjsonschema-2.19.0.tar.gz 371202 BLAKE2B 
56103ae94d52a337ceb830b7dfe68b3e1c3d5bdfbe46c8c042b5bc1a6d4e36201176a274135779cbf50a9ce939d95f5bd3c5bd88b7a6483db4cc438bff1d986a
 SHA512 
d26c7f44acfeb4210fad188e3fe5486231a516fb0a4fa7d756dd9d1378b22afd7b4acb6b34085cabcfe31dac44a605de6f90a158a3af69de97f8926d59b3a105

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
new file mode 100644
index ..e1529c815ca6
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.19.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+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
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-11-01 Thread Michał Górny
commit: 428b7b994992f827dedfa21f2f788f7f9eb0a81a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov  2 05:35:16 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov  2 05:37:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=428b7b99

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.18.0.ebuild| 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 0d09a3fa0c8a..4bf7308e00ef 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST fastjsonschema-2.18.0.tar.gz 371063 BLAKE2B 
d2b79eb442351487ffebc59ff48af1e8f07fb5e2ca97059cc98cc8f02eda3523fcf60b2aa6b46edc1d3d019ed04d65d2fc5c3eee58471ea9b2a0bd0bf7bf40ed
 SHA512 
848ea4587edb9d694d4f42cee35c8a6a785f601b3e84daae5a5b155ca61c0c7de1b9164e86c0a48166d429a4a737799480dfdeaad7e81eab28f68f71dd46988f
 DIST fastjsonschema-2.18.1.tar.gz 371060 BLAKE2B 
fc77683215e9080d3a6f162336a7ed0a310c9921f0e669d90bfaea659dd77ad27ed0c623b0355d5efafa3ca2e83f72edf228c42cca0fc4fa16f4f474aa6b
 SHA512 
a08fce64a67c67a06a7c3c637047648e1b2cfa749291794b8accc6dcc1ccf744eb50c8db773734017b79612b2dc4e19730a5956807b2459928fb0b996b59711e

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild
deleted file mode 100644
index 2b5fdee2e5a4..
--- a/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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..12} )
-
-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
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-11-01 Thread Arthur Zamarin
commit: 20d44dc75152871165781d6eaf0ba95a446d6e00
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov  1 20:36:28 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov  1 20:36:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d44dc7

dev-python/fastjsonschema: Stabilize 2.18.1 ALLARCHES, #916637

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
index e1529c815ca6..a262d0691ff7 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-10-31 Thread Michał Górny
commit: 1b0ac383a3406cfe60795bf0c907581ad9c91390
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 31 17:47:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 31 19:12:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0ac383

dev-python/fastjsonschema: Enable pypy3

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

 dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
index ec0f5cdb075d..e1529c815ca6 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-10-01 Thread Arthur Zamarin
commit: 90ff08f710e6048513297f72edd826c3c06d015d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Oct  1 17:59:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Oct  1 18:02:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ff08f7

dev-python/fastjsonschema: add 2.18.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.18.1.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 47a5ec364df9..0d09a3fa0c8a 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST fastjsonschema-2.18.0.tar.gz 371063 BLAKE2B 
d2b79eb442351487ffebc59ff48af1e8f07fb5e2ca97059cc98cc8f02eda3523fcf60b2aa6b46edc1d3d019ed04d65d2fc5c3eee58471ea9b2a0bd0bf7bf40ed
 SHA512 
848ea4587edb9d694d4f42cee35c8a6a785f601b3e84daae5a5b155ca61c0c7de1b9164e86c0a48166d429a4a737799480dfdeaad7e81eab28f68f71dd46988f
+DIST fastjsonschema-2.18.1.tar.gz 371060 BLAKE2B 
fc77683215e9080d3a6f162336a7ed0a310c9921f0e669d90bfaea659dd77ad27ed0c623b0355d5efafa3ca2e83f72edf228c42cca0fc4fa16f4f474aa6b
 SHA512 
a08fce64a67c67a06a7c3c637047648e1b2cfa749291794b8accc6dcc1ccf744eb50c8db773734017b79612b2dc4e19730a5956807b2459928fb0b996b59711e

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
new file mode 100644
index ..ec0f5cdb075d
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.18.1.ebuild
@@ -0,0 +1,25 @@
+# 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..12} )
+
+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
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-08-24 Thread Michał Górny
commit: 84d7929470709062362d19b4df455e556fede798
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 24 12:44:37 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 24 12:44:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84d79294

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.17.1.ebuild| 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index a3c65d5e1444..47a5ec364df9 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST fastjsonschema-2.17.1.tar.gz 370651 BLAKE2B 
670e3b911200573ac129938834f9c072702e3f3d62e4ac95c7b77694d9cda54e4430601955c13998ff5abfe1db66a3d3e2bba9561292cb5c9d1df2470194eaee
 SHA512 
482b13ee6735f5bb21528ec76a423c8c1dff2604af83121d82db45ce0cf514401b25cf6a1406c74f579671fe425ef1535d28c8b0b7fc24d32fcf50f2be1e28bf
 DIST fastjsonschema-2.18.0.tar.gz 371063 BLAKE2B 
d2b79eb442351487ffebc59ff48af1e8f07fb5e2ca97059cc98cc8f02eda3523fcf60b2aa6b46edc1d3d019ed04d65d2fc5c3eee58471ea9b2a0bd0bf7bf40ed
 SHA512 
848ea4587edb9d694d4f42cee35c8a6a785f601b3e84daae5a5b155ca61c0c7de1b9164e86c0a48166d429a4a737799480dfdeaad7e81eab28f68f71dd46988f

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
deleted file mode 100644
index 2b5fdee2e5a4..
--- a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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..12} )
-
-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
-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-07-23 Thread Michał Górny
commit: 042d348905709de9c98c76ca3bd970443b05a017
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 23 06:25:33 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 23 06:53:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042d3489

dev-python/fastjsonschema: Bump to 2.18.0

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.18.0.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 12eefad698c5..a3c65d5e1444 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST fastjsonschema-2.17.1.tar.gz 370651 BLAKE2B 
670e3b911200573ac129938834f9c072702e3f3d62e4ac95c7b77694d9cda54e4430601955c13998ff5abfe1db66a3d3e2bba9561292cb5c9d1df2470194eaee
 SHA512 
482b13ee6735f5bb21528ec76a423c8c1dff2604af83121d82db45ce0cf514401b25cf6a1406c74f579671fe425ef1535d28c8b0b7fc24d32fcf50f2be1e28bf
+DIST fastjsonschema-2.18.0.tar.gz 371063 BLAKE2B 
d2b79eb442351487ffebc59ff48af1e8f07fb5e2ca97059cc98cc8f02eda3523fcf60b2aa6b46edc1d3d019ed04d65d2fc5c3eee58471ea9b2a0bd0bf7bf40ed
 SHA512 
848ea4587edb9d694d4f42cee35c8a6a785f601b3e84daae5a5b155ca61c0c7de1b9164e86c0a48166d429a4a737799480dfdeaad7e81eab28f68f71dd46988f

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild
new file mode 100644
index ..ec0f5cdb075d
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.18.0.ebuild
@@ -0,0 +1,25 @@
+# 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..12} )
+
+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
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-06-27 Thread Michał Górny
commit: 062f068c881209354aaa870595e582bb3166dacb
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 27 11:50:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 27 11:50:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=062f068c

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  2 --
 .../fastjsonschema/fastjsonschema-2.16.3.ebuild| 32 --
 .../fastjsonschema/fastjsonschema-2.17.0.ebuild| 32 --
 3 files changed, 66 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index aea0051645b4..12eefad698c5 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,3 +1 @@
-DIST fastjsonschema-2.17.0.tar.gz 370871 BLAKE2B 
9d5f16dba7c8519d5bb4853188ba982e06b39a2c1689963ef3aec39e2d48cccbba7ba9ab93cf1b54a06f4e8107917acdb31b076f44b7baf9e9a432256a2f2844
 SHA512 
ee19945c489b9d4fd23a0a348ec13f321705e93e1367c04003c41b86abd92da2ac73ca6dcd46a9eba0b8b72e8ba899a00939d8a56059fd04eac4300e20589551
 DIST fastjsonschema-2.17.1.tar.gz 370651 BLAKE2B 
670e3b911200573ac129938834f9c072702e3f3d62e4ac95c7b77694d9cda54e4430601955c13998ff5abfe1db66a3d3e2bba9561292cb5c9d1df2470194eaee
 SHA512 
482b13ee6735f5bb21528ec76a423c8c1dff2604af83121d82db45ce0cf514401b25cf6a1406c74f579671fe425ef1535d28c8b0b7fc24d32fcf50f2be1e28bf
-DIST python-fastjsonschema-2.16.3.gh.tar.gz 392011 BLAKE2B 
04990592a2bf6e1309bf725361ef7c2e253c4765c5b9d60805c5e6189f14885a3b0bae98945c2fe228adc335ca8c8c0a243b283b24fa447238d6415d439288e2
 SHA512 
2e26f31f9c6966e77f70b8ca584e672d554219b6bbb4811e3ac8dff1c693b2638ef08b8b9011e0db6f739be02e2f41a35d15bcfc42a9cb06ddb4521e51f37d8a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
deleted file mode 100644
index 3f001b904f00..
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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_{9..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="
-   https://github.com/horejsek/python-fastjsonschema/
-   https://pypi.org/project/fastjsonschema/
-"
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild
deleted file mode 100644
index 9a16ce7b1b94..
--- a/dev-python/fastjsonschema/fastjsonschema-2.17.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-06-26 Thread Jakov Smolić
commit: 2aea0c034b1624266eb6c3403084db98644ae133
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Jun 27 05:18:24 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Jun 27 05:18:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aea0c03

dev-python/fastjsonschema: Stabilize 2.17.1 ALLARCHES, #909222

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
index ec0f5cdb075d..2b5fdee2e5a4 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-05-31 Thread Michał Górny
commit: 09995952d0e5b8c5a61e73c53b08a02f8afb6747
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 31 15:48:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 31 16:05:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09995952

dev-python/fastjsonschema: Enable py3.12

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

 dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
index 22afe129bc9e..ec0f5cdb075d 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-05-22 Thread Michał Górny
commit: 42e78f78db702d7455a63ad2856b77c28aedd2ae
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 22 18:28:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 22 18:36:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e78f78

dev-python/fastjsonschema: Bump to 2.17.1

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.17.1.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 0052e0e8a78f..aea0051645b4 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1,3 @@
 DIST fastjsonschema-2.17.0.tar.gz 370871 BLAKE2B 
9d5f16dba7c8519d5bb4853188ba982e06b39a2c1689963ef3aec39e2d48cccbba7ba9ab93cf1b54a06f4e8107917acdb31b076f44b7baf9e9a432256a2f2844
 SHA512 
ee19945c489b9d4fd23a0a348ec13f321705e93e1367c04003c41b86abd92da2ac73ca6dcd46a9eba0b8b72e8ba899a00939d8a56059fd04eac4300e20589551
+DIST fastjsonschema-2.17.1.tar.gz 370651 BLAKE2B 
670e3b911200573ac129938834f9c072702e3f3d62e4ac95c7b77694d9cda54e4430601955c13998ff5abfe1db66a3d3e2bba9561292cb5c9d1df2470194eaee
 SHA512 
482b13ee6735f5bb21528ec76a423c8c1dff2604af83121d82db45ce0cf514401b25cf6a1406c74f579671fe425ef1535d28c8b0b7fc24d32fcf50f2be1e28bf
 DIST python-fastjsonschema-2.16.3.gh.tar.gz 392011 BLAKE2B 
04990592a2bf6e1309bf725361ef7c2e253c4765c5b9d60805c5e6189f14885a3b0bae98945c2fe228adc335ca8c8c0a243b283b24fa447238d6415d439288e2
 SHA512 
2e26f31f9c6966e77f70b8ca584e672d554219b6bbb4811e3ac8dff1c693b2638ef08b8b9011e0db6f739be02e2f41a35d15bcfc42a9cb06ddb4521e51f37d8a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
new file mode 100644
index ..22afe129bc9e
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.17.1.ebuild
@@ -0,0 +1,25 @@
+# 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
+)



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-05-21 Thread Michał Górny
commit: c07023e1aad917682caeffaa2ea06c7bd88c78ed
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 22 04:12:02 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 22 05:53:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c07023e1

dev-python/fastjsonschema: Bump to 2.17.0

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.17.0.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 1d41f24ea5cf..0052e0e8a78f 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
+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

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 ..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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-03-30 Thread Michał Górny
commit: d4e65ad618d8dbd52734950526a2190b423c7378
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 30 15:47:21 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 30 15:48:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e65ad6

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.16.2.ebuild| 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 1819519283b3..1d41f24ea5cf 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.16.2.gh.tar.gz 391619 BLAKE2B 
ea8da31d16ec7c9a897de0b2a91832ce26798d2dc048e70e862ce7a4e75787cd25ee4b9e14fac9f85599e050338b6306a2549a0a8bab9abcbfbd12c246d10697
 SHA512 
17fce033e6d334e82813af7366006ade29433efe291a1567ae494c2273b9ab87b8fa4ccf1bae0b7062f9f70fe492449c87a5d07075d79037ac2c755ed9278a23
 DIST python-fastjsonschema-2.16.3.gh.tar.gz 392011 BLAKE2B 
04990592a2bf6e1309bf725361ef7c2e253c4765c5b9d60805c5e6189f14885a3b0bae98945c2fe228adc335ca8c8c0a243b283b24fa447238d6415d439288e2
 SHA512 
2e26f31f9c6966e77f70b8ca584e672d554219b6bbb4811e3ac8dff1c693b2638ef08b8b9011e0db6f739be02e2f41a35d15bcfc42a9cb06ddb4521e51f37d8a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
deleted file mode 100644
index 3f001b904f00..
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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_{9..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="
-   https://github.com/horejsek/python-fastjsonschema/
-   https://pypi.org/project/fastjsonschema/
-"
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-03-30 Thread Arthur Zamarin
commit: 7c429dabc66b96dfce20689646c033d0a173eeb1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 30 15:33:55 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 30 15:33:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c429dab

dev-python/fastjsonschema: Stabilize 2.16.3 ALLARCHES, #903588

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
index 453a2cbc2332..3f001b904f00 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-02-25 Thread Michał Górny
commit: ffd860b2f58bfa0538bcc250c4de7df22648c01f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 26 04:37:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 26 04:37:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd860b2

dev-python/fastjsonschema: Bump to 2.16.3

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.16.3.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 4511d43f6afb..1819519283b3 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.16.2.gh.tar.gz 391619 BLAKE2B 
ea8da31d16ec7c9a897de0b2a91832ce26798d2dc048e70e862ce7a4e75787cd25ee4b9e14fac9f85599e050338b6306a2549a0a8bab9abcbfbd12c246d10697
 SHA512 
17fce033e6d334e82813af7366006ade29433efe291a1567ae494c2273b9ab87b8fa4ccf1bae0b7062f9f70fe492449c87a5d07075d79037ac2c755ed9278a23
+DIST python-fastjsonschema-2.16.3.gh.tar.gz 392011 BLAKE2B 
04990592a2bf6e1309bf725361ef7c2e253c4765c5b9d60805c5e6189f14885a3b0bae98945c2fe228adc335ca8c8c0a243b283b24fa447238d6415d439288e2
 SHA512 
2e26f31f9c6966e77f70b8ca584e672d554219b6bbb4811e3ac8dff1c693b2638ef08b8b9011e0db6f739be02e2f41a35d15bcfc42a9cb06ddb4521e51f37d8a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.3.ebuild
new file mode 100644
index ..453a2cbc2332
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.3.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_{9..11} )
+
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="
+   https://github.com/horejsek/python-fastjsonschema/
+   https://pypi.org/project/fastjsonschema/
+"
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2023-02-25 Thread Michał Górny
commit: b1a91a64a9395a6de2949157343c701e84db7e8b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 26 04:51:34 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 26 04:56:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a91a64

dev-python/fastjsonschema: Add GH remote-id

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

 dev-python/fastjsonschema/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/fastjsonschema/metadata.xml 
b/dev-python/fastjsonschema/metadata.xml
index 7e60f3e6248a..1a957a0ba04f 100644
--- a/dev-python/fastjsonschema/metadata.xml
+++ b/dev-python/fastjsonschema/metadata.xml
@@ -6,6 +6,7 @@



+   horejsek/python-fastjsonschema
fastjsonschema

 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-10-22 Thread Michał Górny
commit: 030b7a020f0c285bc10eea4b897f6284bade2541
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct 22 15:50:35 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Oct 22 15:53:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=030b7a02

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.16.1.ebuild| 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 6f2d2916bc13..4511d43f6afb 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.16.1.gh.tar.gz 391733 BLAKE2B 
7d53b51ad88fb6e11226510f3dc7f7ef8ca2d6e22825e31f32fe7b9343c2d7bf946c0d528ecdb9550abd5e5dd01f2bf52d6670fa644eb4b453f2a45080cd9318
 SHA512 
b3ef41926ec6a54d527f68f6c198fdc61fc6528449137557a3f2130c5d01914a6ea3300bc6efb90f9b8fefbb98464760378108ef221dcb021414b2e0ffb1eb73
 DIST python-fastjsonschema-2.16.2.gh.tar.gz 391619 BLAKE2B 
ea8da31d16ec7c9a897de0b2a91832ce26798d2dc048e70e862ce7a4e75787cd25ee4b9e14fac9f85599e050338b6306a2549a0a8bab9abcbfbd12c246d10697
 SHA512 
17fce033e6d334e82813af7366006ade29433efe291a1567ae494c2273b9ab87b8fa4ccf1bae0b7062f9f70fe492449c87a5d07075d79037ac2c755ed9278a23

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
deleted file mode 100644
index 7cd0dceacab7..
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="
-   https://github.com/horejsek/python-fastjsonschema/
-   https://pypi.org/project/fastjsonschema/
-"
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-10-22 Thread Arthur Zamarin
commit: 160dd53f1ab67a727cb0cc0f50b32d711cb1947a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Oct 22 15:49:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Oct 22 15:49:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160dd53f

dev-python/fastjsonschema: Stabilize 2.16.2 ALLARCHES, #877921

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
index 30d3fd50572e..353b9c610978 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-09-22 Thread Michał Górny
commit: e41ecfe1347288d8df1cd29b8c5bde7e71a24de6
Author: matoro  users  noreply  github  com>
AuthorDate: Wed Sep 21 21:56:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 22 07:45:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41ecfe1

dev-python/fastjsonschema: Keyword 2.16.2 mips, #831222

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

 dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
index 4d2f3bd44cd4..30d3fd50572e 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-09-19 Thread Arthur Zamarin
commit: 7ff46cb73373a885de963fd87b28e08296522616
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 17:48:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 18:28:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff46cb7

dev-python/fastjsonschema: add 2.16.2

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.16.2.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 52fd8651ee26..6f2d2916bc13 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.16.1.gh.tar.gz 391733 BLAKE2B 
7d53b51ad88fb6e11226510f3dc7f7ef8ca2d6e22825e31f32fe7b9343c2d7bf946c0d528ecdb9550abd5e5dd01f2bf52d6670fa644eb4b453f2a45080cd9318
 SHA512 
b3ef41926ec6a54d527f68f6c198fdc61fc6528449137557a3f2130c5d01914a6ea3300bc6efb90f9b8fefbb98464760378108ef221dcb021414b2e0ffb1eb73
+DIST python-fastjsonschema-2.16.2.gh.tar.gz 391619 BLAKE2B 
ea8da31d16ec7c9a897de0b2a91832ce26798d2dc048e70e862ce7a4e75787cd25ee4b9e14fac9f85599e050338b6306a2549a0a8bab9abcbfbd12c246d10697
 SHA512 
17fce033e6d334e82813af7366006ade29433efe291a1567ae494c2273b9ab87b8fa4ccf1bae0b7062f9f70fe492449c87a5d07075d79037ac2c755ed9278a23

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
new file mode 100644
index ..4d2f3bd44cd4
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="
+   https://github.com/horejsek/python-fastjsonschema/
+   https://pypi.org/project/fastjsonschema/
+"
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-08-17 Thread Arthur Zamarin
commit: abc3e7364226ffeb139c9a3157c2c4680da82251
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 17 19:35:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 17 19:35:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc3e736

dev-python/fastjsonschema: drop 2.15.3-r1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.15.3-r1.ebuild | 29 --
 2 files changed, 30 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 979f56e24621..52fd8651ee26 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.15.3.tar.gz 389350 BLAKE2B 
f9ab32666fce1ba44a11cb981f4f301d7d55260767ec71aefa54ad6bcdd5b8c3d246656908dcd50e909257b35bb9ee24eb34d5ce7fe0f91501127cad412a7e1d
 SHA512 
59dfc513de46e9df790edaa1abc994decdf98d65bec8eb8a6ac7211d2277f4e15d521a308e45c6532a232321d8a4655f87b7a01f2d57b9de20246a4d6deeeb9b
 DIST python-fastjsonschema-2.16.1.gh.tar.gz 391733 BLAKE2B 
7d53b51ad88fb6e11226510f3dc7f7ef8ca2d6e22825e31f32fe7b9343c2d7bf946c0d528ecdb9550abd5e5dd01f2bf52d6670fa644eb4b453f2a45080cd9318
 SHA512 
b3ef41926ec6a54d527f68f6c198fdc61fc6528449137557a3f2130c5d01914a6ea3300bc6efb90f9b8fefbb98464760378108ef221dcb021414b2e0ffb1eb73

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
deleted file mode 100644
index 8998ccbecf1d..
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-08-17 Thread Sam James
commit: 1dce9c25590d68075c0e350776afa7724654e5fa
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 17 18:45:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 17 18:47:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dce9c25

dev-python/fastjsonschema: Stabilize 2.16.1 ALLARCHES, #865605

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
index 4d2f3bd44cd4..7cd0dceacab7 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-07-18 Thread Michał Górny
commit: 73463742fa5033aa6dda64204ab8e792c536be57
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul 18 06:50:58 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 18 07:54:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73463742

dev-python/fastjsonschema: Bump to 2.16.1

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.16.1.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 3de513fa8101..979f56e24621 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.15.3.tar.gz 389350 BLAKE2B 
f9ab32666fce1ba44a11cb981f4f301d7d55260767ec71aefa54ad6bcdd5b8c3d246656908dcd50e909257b35bb9ee24eb34d5ce7fe0f91501127cad412a7e1d
 SHA512 
59dfc513de46e9df790edaa1abc994decdf98d65bec8eb8a6ac7211d2277f4e15d521a308e45c6532a232321d8a4655f87b7a01f2d57b9de20246a4d6deeeb9b
+DIST python-fastjsonschema-2.16.1.gh.tar.gz 391733 BLAKE2B 
7d53b51ad88fb6e11226510f3dc7f7ef8ca2d6e22825e31f32fe7b9343c2d7bf946c0d528ecdb9550abd5e5dd01f2bf52d6670fa644eb4b453f2a45080cd9318
 SHA512 
b3ef41926ec6a54d527f68f6c198fdc61fc6528449137557a3f2130c5d01914a6ea3300bc6efb90f9b8fefbb98464760378108ef221dcb021414b2e0ffb1eb73

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
new file mode 100644
index ..4d2f3bd44cd4
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.16.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="
+   https://github.com/horejsek/python-fastjsonschema/
+   https://pypi.org/project/fastjsonschema/
+"
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-05-25 Thread Andrew Ammerlaan
commit: 2d9c936a7701c9ec416c626fa168d47b3a783d78
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Wed May 25 08:48:51 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Wed May 25 09:07:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9c936a

dev-python/fastjsonschema: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
index cb3ee11974f3..8998ccbecf1d 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-03-15 Thread Michał Górny
commit: 190afbbd5df844e986d530e3d68a759938705cf7
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 14:04:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 14:04:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190afbbd

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.15.1.ebuild| 26 --
 .../fastjsonschema/fastjsonschema-2.15.3.ebuild| 26 --
 3 files changed, 53 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index d0d649f8e7a2..3de513fa8101 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.15.1.tar.gz 35384 BLAKE2B 
89b9be7a9dcb8b22634dcfb54abec7b5709805b7087558af93b4cbca3c71a0b876956060aac0d0e7f4467db1bb38e6a587025c1c219613a661fb0d9e656b81e0
 SHA512 
7eb4d512eac03e258d670f6d448c5aeb74e20f892a08fa84a0412fd9c99cdc6412d4daa74bc09f9fe933a973a81227dae36125766e64f3c5b01106435ca5d70f
 DIST python-fastjsonschema-2.15.3.tar.gz 389350 BLAKE2B 
f9ab32666fce1ba44a11cb981f4f301d7d55260767ec71aefa54ad6bcdd5b8c3d246656908dcd50e909257b35bb9ee24eb34d5ce7fe0f91501127cad412a7e1d
 SHA512 
59dfc513de46e9df790edaa1abc994decdf98d65bec8eb8a6ac7211d2277f4e15d521a308e45c6532a232321d8a4655f87b7a01f2d57b9de20246a4d6deeeb9b

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
deleted file mode 100644
index 527d7d2bfa9c..
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
deleted file mode 100644
index b018c199e77e..
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-03-15 Thread Jakov Smolić
commit: ee9d022ed1a6d88f5781015c9ae6ca3e69533dad
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Mar 15 11:26:06 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Mar 15 11:26:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9d022e

dev-python/fastjsonschema: Stabilize 2.15.3-r1 ALLARCHES, #835198

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
index b6d60681afad..cb3ee11974f3 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-02-26 Thread Michał Górny
commit: 2aee556741c0ff201d0d11c8972c56cd7382b701
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb 26 17:52:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 26 17:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aee5567

dev-python/fastjsonschema: EAPI 8, PEP517

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

 .../fastjsonschema/fastjsonschema-2.15.3-r1.ebuild | 29 ++
 1 file changed, 29 insertions(+)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
new file mode 100644
index ..b6d60681afad
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2020-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
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-02-14 Thread Matt Turner
commit: e169c6b45a1bf535541f56e0724f39d5612c380d
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb 14 08:27:14 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb 14 08:35:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e169c6b4

dev-python/fastjsonschema: Keyword 2.15.3 alpha, #831222

Signed-off-by: Matt Turner  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
index 99a67e8f8a4e..b018c199e77e 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-01-30 Thread James Le Cuirot
commit: c66b99839131de7e67127f7a867b85d41e02d6b6
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Jan 30 11:31:58 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Jan 30 11:31:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66b9983

dev-python/fastjsonschema: Keyword 2.15.3 for ~m68k

The tests pass.

Signed-off-by: James Le Cuirot  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
index 5a3028e4da43..99a67e8f8a4e 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2022-01-09 Thread Michał Górny
commit: 465062177c66cc8fd629caa557fbaa5cd46ea5fd
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 10 04:52:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 10 04:58:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46506217

dev-python/fastjsonschema: Bump to 2.15.3

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.15.3.ebuild| 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 9cb5a91bd84a..d0d649f8e7a2 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.15.1.tar.gz 35384 BLAKE2B 
89b9be7a9dcb8b22634dcfb54abec7b5709805b7087558af93b4cbca3c71a0b876956060aac0d0e7f4467db1bb38e6a587025c1c219613a661fb0d9e656b81e0
 SHA512 
7eb4d512eac03e258d670f6d448c5aeb74e20f892a08fa84a0412fd9c99cdc6412d4daa74bc09f9fe933a973a81227dae36125766e64f3c5b01106435ca5d70f
+DIST python-fastjsonschema-2.15.3.tar.gz 389350 BLAKE2B 
f9ab32666fce1ba44a11cb981f4f301d7d55260767ec71aefa54ad6bcdd5b8c3d246656908dcd50e909257b35bb9ee24eb34d5ce7fe0f91501127cad412a7e1d
 SHA512 
59dfc513de46e9df790edaa1abc994decdf98d65bec8eb8a6ac7211d2277f4e15d521a308e45c6532a232321d8a4655f87b7a01f2d57b9de20246a4d6deeeb9b

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
new file mode 100644
index ..5a3028e4da43
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-11-18 Thread Sam James
commit: 6e88005ad11d887e762f7ff7caab48affaa75bf5
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 18 08:09:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 18 08:09:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e88005a

dev-python/fastjsonschema: Stabilize 2.15.1 ppc, #811939

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 8f79e871c067..527d7d2bfa9c 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-11-14 Thread Sam James
commit: 81fbe9c4e709e3f9b11a064cba366626e6defb12
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 14 20:35:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 14 20:35:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fbe9c4

dev-python/fastjsonschema: Keyword 2.15.1 hppa, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index beaf6ed60013..9a17d5e1c6a7 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-11-13 Thread Sam James
commit: 5af648050ccbc8a27d7a54a5822ed2202b4baa78
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 14 03:43:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 14 03:43:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af64805

dev-python/fastjsonschema: Keyword 2.15.1 ia64, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 7536e754b01d..beaf6ed60013 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-09-26 Thread Sam James
commit: 53aa9ecb85229e6ab0dba151bce977b7e516db61
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 26 17:49:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 26 17:49:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53aa9ecb

dev-python/fastjsonschema: Stabilize 2.15.1 arm, #811939

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 445f00c328d..7536e754b01 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-09-08 Thread Sam James
commit: ea27f48f4107c1a834c2092b4e18505bd6fc6d98
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Sep  8 14:38:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  8 16:18:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea27f48f

dev-python/fastjsonschema: stable 2.15.1 for sparc, bug #811939

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 772d97eb8e8..445f00c328d 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~s390 sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-09-05 Thread Sam James
commit: cce9aad465bc3e71c72e536e7ea0b50873956813
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  6 00:17:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  6 00:17:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce9aad4

dev-python/fastjsonschema: Keyword 2.15.1 s390, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 1c8b44a..772d97eb8e8 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-08-09 Thread Sam James
commit: 780829c4910fd8594763296f6d272a69b7a0db2f
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug 10 05:00:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug 10 05:00:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780829c4

dev-python/fastjsonschema: Stabilize 2.15.1 ppc64, #803725

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 2c68be83b98..1c8b44a 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-07-12 Thread Sam James
commit: 616ba45cdd7f86b67249974d0177bb8b15779214
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 12 06:39:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 12 06:40:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616ba45c

dev-python/fastjsonschema: Keyword 2.15.1 ppc, #796365

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index c234f9fc871..2c68be83b98 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-07-11 Thread Georgy Yakovlev
commit: 52faf09ce3466c6d6067badea07664718f98e9e3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Jul 11 09:15:07 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Jul 11 10:13:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52faf09c

dev-python/fastjsonschema: ppc64 keyworded

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 8f56a8be0c2..c234f9fc871 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv ~sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-06-19 Thread Sam James
commit: 72f8bce585d8f1c5ad8dd943c5365e9c84089257
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 01:54:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 01:54:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f8bce5

dev-python/fastjsonschema: Keyword 2.15.1 sparc, #796365

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 7e80f411a41..1d50bcea73b 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
+KEYWORDS="amd64 ~arm arm64 ~sparc x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-06-19 Thread Sam James
commit: 565c66d8c81620b5086451e60a2bd34aface4117
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 20 01:44:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 20 01:44:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=565c66d8

dev-python/fastjsonschema: Keyword 2.15.1 arm, #796365

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
index 375ee9426e3..7e80f411a41 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm64 x86"
+KEYWORDS="amd64 ~arm arm64 x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-06-05 Thread Michał Górny
commit: 5ae4fcb8b0af2e98f1824bf6e4c8d23b90701dd6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  5 21:01:53 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  5 21:08:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae4fcb8

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.15.0.ebuild| 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 6ce7bcdbe12..9cb5a91bd84 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 
43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17
 SHA512 
3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a
 DIST python-fastjsonschema-2.15.1.tar.gz 35384 BLAKE2B 
89b9be7a9dcb8b22634dcfb54abec7b5709805b7087558af93b4cbca3c71a0b876956060aac0d0e7f4467db1bb38e6a587025c1c219613a661fb0d9e656b81e0
 SHA512 
7eb4d512eac03e258d670f6d448c5aeb74e20f892a08fa84a0412fd9c99cdc6412d4daa74bc09f9fe933a973a81227dae36125766e64f3c5b01106435ca5d70f

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
deleted file mode 100644
index 375ee9426e3..000
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-05-06 Thread Michał Górny
commit: c756115e6687f4895ea14b4078178afa3eabb843
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  6 08:06:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  6 08:21:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c756115e

dev-python/fastjsonschema: Bump to 2.15.1

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.15.1.ebuild| 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 2ee6693707d..6ce7bcdbe12 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 
43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17
 SHA512 
3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a
+DIST python-fastjsonschema-2.15.1.tar.gz 35384 BLAKE2B 
89b9be7a9dcb8b22634dcfb54abec7b5709805b7087558af93b4cbca3c71a0b876956060aac0d0e7f4467db1bb38e6a587025c1c219613a661fb0d9e656b81e0
 SHA512 
7eb4d512eac03e258d670f6d448c5aeb74e20f892a08fa84a0412fd9c99cdc6412d4daa74bc09f9fe933a973a81227dae36125766e64f3c5b01106435ca5d70f

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
new file mode 100644
index 000..a14b649f59d
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-05-06 Thread Michał Górny
commit: c85e96f360c0d42aa26798bcffef9e3c5f28e677
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  6 08:06:09 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  6 08:21:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c85e96f3

dev-python/fastjsonschema: Enable python3.10

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

 dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
index d7a02824024..375ee9426e3 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7..10} )
 inherit distutils-r1
 
 MY_P=python-${P}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-03-07 Thread Michał Górny
commit: 2a993879a5c63fc87486bdc5ef1413934842e1bf
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 20:25:26 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 22:38:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a993879

dev-python/fastjsonschema: Remove old

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

 dev-python/fastjsonschema/Manifest |  1 -
 .../fastjsonschema/fastjsonschema-2.14.5.ebuild| 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 8a68092dc88..2ee6693707d 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1,2 +1 @@
-DIST python-fastjsonschema-2.14.5.tar.gz 33488 BLAKE2B 
4604ebd46851c8fe856909fa3943e053ac7359a9f360c189add2a46780fe045ca1952033174d008db7696bfc861a504c3aaa7389c33a2edbccd10cb14de8a097
 SHA512 
255db86d1d62845e512ca5669f3200360847d974710050ac53fe88536d6d9f943ccf41a8414702dad70fa1a38defe9859f2b608e13a54af11199c90d63cdf1d0
 DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 
43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17
 SHA512 
3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
deleted file mode 100644
index eb92e2dc92d..000
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Fast JSON schema validator for Python"
-HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
-SRC_URI="
-   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   distutils-r1_src_prepare
-   rm -r tests/benchmarks || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-03-07 Thread Sam James
commit: bccde1a663b70bc91f312eb6932a6528128d9fd8
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 19:44:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 19:44:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bccde1a6

dev-python/fastjsonschema: Stabilize 2.15.0 ALLARCHES, #774579

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
index 3669e189ca8..d7a02824024 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-03-07 Thread Michał Górny
commit: a16fce9e4196d0e2051ceace115b0cb2a7ca3519
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar  7 08:19:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar  7 08:30:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16fce9e

dev-python/fastjsonschema: Mark ALLARCHES

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

 dev-python/fastjsonschema/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/fastjsonschema/metadata.xml 
b/dev-python/fastjsonschema/metadata.xml
index b22752a6895..2ef6489eb77 100644
--- a/dev-python/fastjsonschema/metadata.xml
+++ b/dev-python/fastjsonschema/metadata.xml
@@ -4,6 +4,7 @@

pyt...@gentoo.org

+   

fastjsonschema




[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2021-02-02 Thread Michał Górny
commit: 0c950d4e36b28a09e055c33f511345cbf6e1c091
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Feb  2 08:31:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Feb  2 08:31:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c950d4e

dev-python/fastjsonschema: Bump to 2.15.0

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.15.0.ebuild| 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
index 8835172bcb4..8a68092dc88 100644
--- a/dev-python/fastjsonschema/Manifest
+++ b/dev-python/fastjsonschema/Manifest
@@ -1 +1,2 @@
 DIST python-fastjsonschema-2.14.5.tar.gz 33488 BLAKE2B 
4604ebd46851c8fe856909fa3943e053ac7359a9f360c189add2a46780fe045ca1952033174d008db7696bfc861a504c3aaa7389c33a2edbccd10cb14de8a097
 SHA512 
255db86d1d62845e512ca5669f3200360847d974710050ac53fe88536d6d9f943ccf41a8414702dad70fa1a38defe9859f2b608e13a54af11199c90d63cdf1d0
+DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 
43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17
 SHA512 
3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
new file mode 100644
index 000..3669e189ca8
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2020-11-17 Thread Agostino Sarubbo
commit: c02c89b583a5cf519d9e1ae216fd295990e0efdd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 18 06:51:23 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 18 06:51:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02c89b5

dev-python/fastjsonschema: amd64 stable wrt bug #754468

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
index 86d470b8336..eb92e2dc92d 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2020-11-17 Thread Agostino Sarubbo
commit: 0e89472431d30289eda948535642405f05be43d8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 17 19:17:21 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 17 19:17:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e894724

dev-python/fastjsonschema: x86 stable wrt bug #754468

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
index dc0986d6219..86d470b8336 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~x86"
+KEYWORDS="~amd64 arm64 x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2020-11-14 Thread Sam James
commit: 2763c94eb0f4d8fcc68bbbc5370401b2eb98a639
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 15 05:13:18 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 15 05:13:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2763c94e

dev-python/fastjsonschema: Stabilize 2.14.5 arm64, #754468

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
index b6cd18b90ba..dc0986d6219 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 arm64 ~x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2020-10-11 Thread Sam James
commit: b9d027b54ec9b2e8e02ba6c405dec7a55937cd24
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 11 17:47:35 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 11 17:47:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d027b5

dev-python/fastjsonschema: Keyword 2.14.5 arm64, #747820

Signed-off-by: Sam James  gentoo.org>

 dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
index cb687ee9c33..b6cd18b90ba 100644
--- a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
+++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
@@ -16,7 +16,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/fastjsonschema/

2020-10-11 Thread Michał Górny
commit: 9b70f573cdc659e9112e677edb37320dbbea7f86
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 11 14:22:48 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 11 14:49:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b70f573

dev-python/fastjsonschema: New package, dep of nbformat

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

 dev-python/fastjsonschema/Manifest |  1 +
 .../fastjsonschema/fastjsonschema-2.14.5.ebuild| 26 ++
 dev-python/fastjsonschema/metadata.xml |  7 ++
 3 files changed, 34 insertions(+)

diff --git a/dev-python/fastjsonschema/Manifest 
b/dev-python/fastjsonschema/Manifest
new file mode 100644
index 000..8835172bcb4
--- /dev/null
+++ b/dev-python/fastjsonschema/Manifest
@@ -0,0 +1 @@
+DIST python-fastjsonschema-2.14.5.tar.gz 33488 BLAKE2B 
4604ebd46851c8fe856909fa3943e053ac7359a9f360c189add2a46780fe045ca1952033174d008db7696bfc861a504c3aaa7389c33a2edbccd10cb14de8a097
 SHA512 
255db86d1d62845e512ca5669f3200360847d974710050ac53fe88536d6d9f943ccf41a8414702dad70fa1a38defe9859f2b608e13a54af11199c90d63cdf1d0

diff --git a/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild 
b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
new file mode 100644
index 000..cb687ee9c33
--- /dev/null
+++ b/dev-python/fastjsonschema/fastjsonschema-2.14.5.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+inherit distutils-r1
+
+MY_P=python-${P}
+DESCRIPTION="Fast JSON schema validator for Python"
+HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/;
+SRC_URI="
+   https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm -r tests/benchmarks || die
+}

diff --git a/dev-python/fastjsonschema/metadata.xml 
b/dev-python/fastjsonschema/metadata.xml
new file mode 100644
index 000..266e3f19ca5
--- /dev/null
+++ b/dev-python/fastjsonschema/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   
+