David Runge pushed to branch main at Arch Linux / Packaging / Packages / check-jsonschema
Commits: 95870567 by David Runge at 2024-03-07T11:40:11+01:00 Add nvchecker integration Signed-off-by: David Runge <[email protected]> - - - - - 84906c0a by David Runge at 2024-03-07T11:51:22+01:00 Consolidate dependencies Add directly depended upon packages (also those implicitly pulled in). Add python-orjson to optdepends as it can be used as JSON parser. Signed-off-by: David Runge <[email protected]> - - - - - f9844b56 by David Runge at 2024-03-07T11:53:24+01:00 upgpkg: 0.28.0-2 Rebuild to consolidate and fix dependencies. - - - - - 3 changed files: - .SRCINFO - + .nvchecker.toml - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -1,14 +1,14 @@ pkgbase = check-jsonschema pkgdesc = A JSON Schema CLI and pre-commit hook built on jsonschema pkgver = 0.28.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/python-jsonschema/check-jsonschema arch = any license = Apache-2.0 checkdepends = python-json5 + checkdepends = python-orjson checkdepends = python-pytest checkdepends = python-pytest-xdist - checkdepends = python-regress checkdepends = python-responses makedepends = python-build makedepends = python-installer @@ -19,9 +19,12 @@ pkgbase = check-jsonschema depends = python-importlib-resources depends = python-jsonschema depends = python-referencing + depends = python-regress depends = python-requests depends = python-ruamel-yaml + depends = python-typing_extensions optdepends = python-json5: for JSON5 support + optdepends = python-orjson: for using orjson as JSON parser source = https://github.com/python-jsonschema/check-jsonschema/archive/0.28.0/check-jsonschema-0.28.0.tar.gz sha512sums = cb3ed8039558c42349b51b88c03b38d7b73c20cdcae927b71731a0d0f60ddde916034ccdc901a159f7b92d9363e904e8eadc3d0db2e3b306e202414ad335ab43 b2sums = 5a34bee9245fb0360fbcb12401389d64280c97b20ca11c3ab080d264ebdd721474a05363c1d170a4e58df5f509be301e11f0df1da484a6db057dffa82f4ede85 ===================================== .nvchecker.toml ===================================== @@ -0,0 +1,3 @@ +[check-jsonschema] +source = "pypi" +pypi = "check-jsonschema" ===================================== PKGBUILD ===================================== @@ -2,7 +2,7 @@ pkgname=check-jsonschema pkgver=0.28.0 -pkgrel=1 +pkgrel=2 pkgdesc="A JSON Schema CLI and pre-commit hook built on jsonschema" arch=(any) url="https://github.com/python-jsonschema/check-jsonschema" @@ -12,9 +12,11 @@ depends=( python-click python-importlib-resources python-jsonschema - python-referencing + python-referencing # implicitly pulled in via python-jsonschema + python-regress python-requests python-ruamel-yaml + python-typing_extensions # implicitly pulled in via python-jsonschema ) makedepends=( python-build @@ -24,13 +26,14 @@ makedepends=( ) checkdepends=( python-json5 + python-orjson python-pytest python-pytest-xdist - python-regress python-responses ) optdepends=( 'python-json5: for JSON5 support' + 'python-orjson: for using orjson as JSON parser' ) source=($url/archive/$pkgver/$pkgname-$pkgver.tar.gz) sha512sums=('cb3ed8039558c42349b51b88c03b38d7b73c20cdcae927b71731a0d0f60ddde916034ccdc901a159f7b92d9363e904e8eadc3d0db2e3b306e202414ad335ab43') View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/check-jsonschema/-/compare/1bb7f5eb781edccccd22d2496edf38156e380447...f9844b5644defd8cc6b8379d9d32757d441ee9fd -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/check-jsonschema/-/compare/1bb7f5eb781edccccd22d2496edf38156e380447...f9844b5644defd8cc6b8379d9d32757d441ee9fd You're receiving this email because of your account on gitlab.archlinux.org.
