public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2023-02-01 18:44 Patrick McLean
  0 siblings, 0 replies; 11+ messages in thread
From: Patrick McLean @ 2023-02-01 18:44 UTC (permalink / raw
  To: gentoo-commits

commit:     c66083abfa820c0208f15a068c55dca4a23a54b6
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  1 18:43:16 2023 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Feb  1 18:44:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66083ab

app-misc/check-jsonschema: new package, add 0.21.0

Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/check-jsonschema/Manifest                 |  1 +
 .../check-jsonschema-0.21.0.ebuild                 | 50 ++++++++++++++++++++++
 app-misc/check-jsonschema/metadata.xml             | 12 ++++++
 3 files changed, 63 insertions(+)

diff --git a/app-misc/check-jsonschema/Manifest b/app-misc/check-jsonschema/Manifest
new file mode 100644
index 000000000000..9e241f8226ce
--- /dev/null
+++ b/app-misc/check-jsonschema/Manifest
@@ -0,0 +1 @@
+DIST check-jsonschema-0.21.0.gh.tar.gz 214872 BLAKE2B 0ee013e379523e5a957e745d550c2014872eab9fc3281aad575f92abfada30b7e0853177bd06147b69a81100bf6b987b485342a087830845c32648efc1c7a9a0 SHA512 dd839a9bb104e1fc68e4a7507077dc991dfc9e840f785c4b7024f2838488eb8b8c6a8f7718f0f821981f5b6b23b1d67745948f48db55a0c589395cf43bfdd2a7

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild
new file mode 100644
index 000000000000..26d7ad3e1777
--- /dev/null
+++ b/app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="A CLI and set of pre-commit hooks for jsonschema validation"
+HOMEPAGE="
+	https://pypi.org/project/check-jsonschema/
+	https://github.com/python-jsonschema/check-jsonschema
+"
+SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+	dev-python/jsonschema[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/click[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		${RDEPEND}
+		dev-python/responses[${PYTHON_USEDEP}]
+		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+	)
+"
+
+DOCS=(
+	README.md
+	CONTRIBUTING.md
+	CHANGELOG.rst
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+		dev-python/furo
+
+python_prepare_all() {
+	# relax deps in setup.cfg
+	sed -r -e 's:([a-zA-Z.-]+)([<>]|==|[<>]=)+.+:\1: ; /importlib-resources/ d' -i setup.cfg || die
+
+	distutils-r1_python_prepare_all
+}

diff --git a/app-misc/check-jsonschema/metadata.xml b/app-misc/check-jsonschema/metadata.xml
new file mode 100644
index 000000000000..0b93e3e929e1
--- /dev/null
+++ b/app-misc/check-jsonschema/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>chutzpah@gentoo.org</email>
+		<name>Patrick McLean</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">python-jsonschema/check-jsonschema</remote-id>
+		<remote-id type="pypi">check-jsonschema</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2023-02-01 22:17 Patrick McLean
  0 siblings, 0 replies; 11+ messages in thread
From: Patrick McLean @ 2023-02-01 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     33852a3437afe1c0c617c0931ad892ab12eb7390
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  1 22:17:26 2023 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Wed Feb  1 22:17:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33852a34

app-misc/check-jsonschema: Add dep on sphinx-issues

Bug: https://bugs.gentoo.org/892858
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 ...{check-jsonschema-0.21.0.ebuild => check-jsonschema-0.21.0-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
similarity index 97%
rename from app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild
rename to app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
index 26d7ad3e1777..f7caec002ba3 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.21.0.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
@@ -40,6 +40,7 @@ DOCS=(
 
 distutils_enable_tests pytest
 distutils_enable_sphinx docs \
+		dev-python/sphinx-issues \
 		dev-python/furo
 
 python_prepare_all() {


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2023-05-11  9:17 Marek Szuba
  0 siblings, 0 replies; 11+ messages in thread
From: Marek Szuba @ 2023-05-11  9:17 UTC (permalink / raw
  To: gentoo-commits

commit:     1572b88bfdafb713735fd6ab7e943dbdda1c94a6
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 21:13:27 2023 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu May 11 09:17:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1572b88b

app-misc/check-jsonschema: keyword 0.21.0-r1 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
index f7caec002ba3..76210a0e1221 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 RDEPEND="
 	dev-python/ruamel-yaml[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2023-07-11 22:32 Patrick McLean
  0 siblings, 0 replies; 11+ messages in thread
From: Patrick McLean @ 2023-07-11 22:32 UTC (permalink / raw
  To: gentoo-commits

commit:     37ae4ef00c2c5b5eb50ee28b74915f760bdd9e0d
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 11 22:32:26 2023 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jul 11 22:32:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ae4ef0

app-misc/check-jsonschema: add 0.23.3

Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/check-jsonschema/Manifest                 |  1 +
 .../check-jsonschema-0.23.3.ebuild                 | 51 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-misc/check-jsonschema/Manifest b/app-misc/check-jsonschema/Manifest
index 9e241f8226ce..d76976b7fc45 100644
--- a/app-misc/check-jsonschema/Manifest
+++ b/app-misc/check-jsonschema/Manifest
@@ -1 +1,2 @@
 DIST check-jsonschema-0.21.0.gh.tar.gz 214872 BLAKE2B 0ee013e379523e5a957e745d550c2014872eab9fc3281aad575f92abfada30b7e0853177bd06147b69a81100bf6b987b485342a087830845c32648efc1c7a9a0 SHA512 dd839a9bb104e1fc68e4a7507077dc991dfc9e840f785c4b7024f2838488eb8b8c6a8f7718f0f821981f5b6b23b1d67745948f48db55a0c589395cf43bfdd2a7
+DIST check-jsonschema-0.23.3.gh.tar.gz 229537 BLAKE2B a8a40ddc383f38096693a2079b73a8a8fe2ceed5d1e118e539957c205c500807518c0380aa18cae2524efdeda33987f057350ba73b7a699240706ff4e276eafc SHA512 14f9eb6b203e3aec6ca35f75304bd24fd5a09c2b89bcbbf69c22e0c0f44c587972015677498fef1a378683c77f94d9319450daccadddf5fecbe7c738dd16c726

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
new file mode 100644
index 000000000000..abb7e9e0c6b3
--- /dev/null
+++ b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="A CLI and set of pre-commit hooks for jsonschema validation"
+HOMEPAGE="
+	https://pypi.org/project/check-jsonschema/
+	https://github.com/python-jsonschema/check-jsonschema
+"
+SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+
+RDEPEND="
+	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+	>=dev-python/jsonschema-4.5.1[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/click[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		${RDEPEND}
+		dev-python/responses[${PYTHON_USEDEP}]
+		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+	)
+"
+
+DOCS=(
+	README.md
+	CONTRIBUTING.md
+	CHANGELOG.rst
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+		dev-python/sphinx-issues \
+		dev-python/furo
+
+python_prepare_all() {
+	# relax deps in setup.cfg
+	sed -r -e 's:([a-zA-Z.-]+)([<>]|==|[<>]=)+.+:\1: ; /importlib-resources/ d' -i setup.cfg || die
+
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2023-08-21 13:46 Marek Szuba
  0 siblings, 0 replies; 11+ messages in thread
From: Marek Szuba @ 2023-08-21 13:46 UTC (permalink / raw
  To: gentoo-commits

commit:     98024d6db2a3ec67768a86f4c2f41e3e0889b39f
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 21 13:33:52 2023 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Aug 21 13:46:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98024d6d

app-misc/check-jsonschema: stabilize 0.23.3 for amd64

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
index abb7e9e0c6b3..af17ade92157 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="amd64 ~riscv"
 
 RDEPEND="
 	dev-python/ruamel-yaml[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-03-05 13:27 Marek Szuba
  0 siblings, 0 replies; 11+ messages in thread
From: Marek Szuba @ 2024-03-05 13:27 UTC (permalink / raw
  To: gentoo-commits

commit:     b96c227c01731cb24a8de2125668b560805f3978
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  4 14:16:44 2024 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Tue Mar  5 13:27:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b96c227c

app-misc/check-jsonschema: enable py3.12

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
index 81e3a4f9007e..da0d8374f863 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.23.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-05-24 18:26 Patrick McLean
  0 siblings, 0 replies; 11+ messages in thread
From: Patrick McLean @ 2024-05-24 18:26 UTC (permalink / raw
  To: gentoo-commits

commit:     8611c860bc3b33f55611d61f30e8cbd052a563bb
Author:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 18:26:19 2024 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Fri May 24 18:26:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8611c860

app-misc/check-jsonschema: add 0.28.4

Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 app-misc/check-jsonschema/Manifest                 |  1 +
 .../check-jsonschema-0.28.4.ebuild                 | 58 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-misc/check-jsonschema/Manifest b/app-misc/check-jsonschema/Manifest
index d76976b7fc45..d5f1c7620cba 100644
--- a/app-misc/check-jsonschema/Manifest
+++ b/app-misc/check-jsonschema/Manifest
@@ -1,2 +1,3 @@
 DIST check-jsonschema-0.21.0.gh.tar.gz 214872 BLAKE2B 0ee013e379523e5a957e745d550c2014872eab9fc3281aad575f92abfada30b7e0853177bd06147b69a81100bf6b987b485342a087830845c32648efc1c7a9a0 SHA512 dd839a9bb104e1fc68e4a7507077dc991dfc9e840f785c4b7024f2838488eb8b8c6a8f7718f0f821981f5b6b23b1d67745948f48db55a0c589395cf43bfdd2a7
 DIST check-jsonschema-0.23.3.gh.tar.gz 229537 BLAKE2B a8a40ddc383f38096693a2079b73a8a8fe2ceed5d1e118e539957c205c500807518c0380aa18cae2524efdeda33987f057350ba73b7a699240706ff4e276eafc SHA512 14f9eb6b203e3aec6ca35f75304bd24fd5a09c2b89bcbbf69c22e0c0f44c587972015677498fef1a378683c77f94d9319450daccadddf5fecbe7c738dd16c726
+DIST check-jsonschema-0.28.4.gh.tar.gz 270302 BLAKE2B a5355ed124d6e3bd076403448c3d7fa7c62524c6da49eb5a61d226485639812bdea28b53c570b084e976749b92c1ee586b0285111a543b1a3e8a734ea8d6cc67 SHA512 f4c693ea0951c246814775f26d5c3e5de8020484a92ae15e2a13e284ccb2c58f2bdf7dbdb66612661304f5ff9e6ba88eb3f89e7f0ad23a3f6fc8fcc61372ceea

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
new file mode 100644
index 000000000000..82adc69ea0e5
--- /dev/null
+++ b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit optfeature distutils-r1
+
+DESCRIPTION="A CLI and set of pre-commit hooks for jsonschema validation"
+HOMEPAGE="
+	https://pypi.org/project/check-jsonschema/
+	https://github.com/python-jsonschema/check-jsonschema
+"
+SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=dev-python/ruamel-yaml-0.18.6[${PYTHON_USEDEP}]
+	>=dev-python/jsonschema-4.5.1[${PYTHON_USEDEP}]
+	dev-python/regress[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/click[${PYTHON_USEDEP}]
+	dev-python/tomli[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		${RDEPEND}
+		dev-python/json5[${PYTHON_USEDEP}]
+		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+		>=dev-python/responses-0.25.0[${PYTHON_USEDEP}]
+	)
+"
+
+DOCS=(
+	README.md
+	CONTRIBUTING.md
+	CHANGELOG.rst
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+		dev-python/sphinx-issues \
+		dev-python/furo
+
+python_prepare_all() {
+	# relax deps in setup.cfg
+	sed -r -e 's:([a-zA-Z.-]+)([<>]|==|[<>]=)+.+:\1: ; /importlib-resources/ d' -i setup.cfg || die
+
+	distutils-r1_python_prepare_all
+}
+
+pkg_postinst() {
+	optfeature "json5 support" dev-python/json5
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-05-25  2:03 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-05-25  2:03 UTC (permalink / raw
  To: gentoo-commits

commit:     95da5032bbcd96baf3888fe5cb809de8d655e9de
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 25 02:01:24 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 25 02:01:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95da5032

app-misc/check-jsonschema: Keyword 0.28.4 arm64, #932647

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
index 82adc69ea0e5..9a6f760345ab 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 RDEPEND="
 	>=dev-python/ruamel-yaml-0.18.6[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-05-25 22:19 Yixun Lan
  0 siblings, 0 replies; 11+ messages in thread
From: Yixun Lan @ 2024-05-25 22:19 UTC (permalink / raw
  To: gentoo-commits

commit:     b335fd95e9d55c197e72704cf4b4a90c968de628
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat May 25 09:47:20 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat May 25 22:15:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b335fd95

app-misc/check-jsonschema: Keyword 0.28.4 riscv, #932647

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
index 9a6f760345ab..6a978782fceb 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~riscv"
 
 RDEPEND="
 	>=dev-python/ruamel-yaml-0.18.6[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-06-26  9:05 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-06-26  9:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d01709f3a9ac2649a5267fa06274b1535ef936eb
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Wed Jun 26 03:30:05 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 26 09:03:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d01709f3

app-misc/check-jsonschema: fix overdependency on tomli

Since version 0.19.2, it has supported using the stdlib tomllib when
available:

https://github.com/python-jsonschema/check-jsonschema/commit/615ff8a11cfb2e00a42ab7d13350ddf82d474841

Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 ...eck-jsonschema-0.28.4.ebuild => check-jsonschema-0.28.4-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.28.4-r1.ebuild
similarity index 95%
rename from app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
rename to app-misc/check-jsonschema/check-jsonschema-0.28.4-r1.ebuild
index 6a978782fceb..7bd7ebde5d74 100644
--- a/app-misc/check-jsonschema/check-jsonschema-0.28.4.ebuild
+++ b/app-misc/check-jsonschema/check-jsonschema-0.28.4-r1.ebuild
@@ -24,7 +24,9 @@ RDEPEND="
 	dev-python/regress[${PYTHON_USEDEP}]
 	dev-python/requests[${PYTHON_USEDEP}]
 	dev-python/click[${PYTHON_USEDEP}]
-	dev-python/tomli[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/tomli[${PYTHON_USEDEP}]
+	' 3.10)
 "
 BDEPEND="
 	test? (


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/
@ 2024-06-26  9:05 Sam James
  0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-06-26  9:05 UTC (permalink / raw
  To: gentoo-commits

commit:     4772c7fbbbd4e589929366669b72ff73445d059c
Author:     Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Wed Jun 26 03:29:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 26 09:03:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4772c7fb

app-misc/check-jsonschema: drop old

Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/check-jsonschema/Manifest                 |  1 -
 .../check-jsonschema-0.21.0-r1.ebuild              | 51 ----------------------
 2 files changed, 52 deletions(-)

diff --git a/app-misc/check-jsonschema/Manifest b/app-misc/check-jsonschema/Manifest
index d5f1c7620cba..6da98dfb89f6 100644
--- a/app-misc/check-jsonschema/Manifest
+++ b/app-misc/check-jsonschema/Manifest
@@ -1,3 +1,2 @@
-DIST check-jsonschema-0.21.0.gh.tar.gz 214872 BLAKE2B 0ee013e379523e5a957e745d550c2014872eab9fc3281aad575f92abfada30b7e0853177bd06147b69a81100bf6b987b485342a087830845c32648efc1c7a9a0 SHA512 dd839a9bb104e1fc68e4a7507077dc991dfc9e840f785c4b7024f2838488eb8b8c6a8f7718f0f821981f5b6b23b1d67745948f48db55a0c589395cf43bfdd2a7
 DIST check-jsonschema-0.23.3.gh.tar.gz 229537 BLAKE2B a8a40ddc383f38096693a2079b73a8a8fe2ceed5d1e118e539957c205c500807518c0380aa18cae2524efdeda33987f057350ba73b7a699240706ff4e276eafc SHA512 14f9eb6b203e3aec6ca35f75304bd24fd5a09c2b89bcbbf69c22e0c0f44c587972015677498fef1a378683c77f94d9319450daccadddf5fecbe7c738dd16c726
 DIST check-jsonschema-0.28.4.gh.tar.gz 270302 BLAKE2B a5355ed124d6e3bd076403448c3d7fa7c62524c6da49eb5a61d226485639812bdea28b53c570b084e976749b92c1ee586b0285111a543b1a3e8a734ea8d6cc67 SHA512 f4c693ea0951c246814775f26d5c3e5de8020484a92ae15e2a13e284ccb2c58f2bdf7dbdb66612661304f5ff9e6ba88eb3f89e7f0ad23a3f6fc8fcc61372ceea

diff --git a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
deleted file mode 100644
index 76210a0e1221..000000000000
--- a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="A CLI and set of pre-commit hooks for jsonschema validation"
-HOMEPAGE="
-	https://pypi.org/project/check-jsonschema/
-	https://github.com/python-jsonschema/check-jsonschema
-"
-SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="
-	dev-python/ruamel-yaml[${PYTHON_USEDEP}]
-	dev-python/jsonschema[${PYTHON_USEDEP}]
-	dev-python/requests[${PYTHON_USEDEP}]
-	dev-python/click[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		${RDEPEND}
-		dev-python/responses[${PYTHON_USEDEP}]
-		dev-python/pytest-xdist[${PYTHON_USEDEP}]
-	)
-"
-
-DOCS=(
-	README.md
-	CONTRIBUTING.md
-	CHANGELOG.rst
-)
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-		dev-python/sphinx-issues \
-		dev-python/furo
-
-python_prepare_all() {
-	# relax deps in setup.cfg
-	sed -r -e 's:([a-zA-Z.-]+)([<>]|==|[<>]=)+.+:\1: ; /importlib-resources/ d' -i setup.cfg || die
-
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-06-26  9:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-25  2:03 [gentoo-commits] repo/gentoo:master commit in: app-misc/check-jsonschema/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-06-26  9:05 Sam James
2024-06-26  9:05 Sam James
2024-05-25 22:19 Yixun Lan
2024-05-24 18:26 Patrick McLean
2024-03-05 13:27 Marek Szuba
2023-08-21 13:46 Marek Szuba
2023-07-11 22:32 Patrick McLean
2023-05-11  9:17 Marek Szuba
2023-02-01 22:17 Patrick McLean
2023-02-01 18:44 Patrick McLean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox