Date: Thursday, April 6, 2023 @ 03:30:35
  Author: felixonmars
Revision: 1438258

archrelease: copy trunk to community-staging-any

Added:
  python-jsonschema/repos/community-staging-any/
  python-jsonschema/repos/community-staging-any/PKGBUILD
    (from rev 1438257, python-jsonschema/trunk/PKGBUILD)

----------+
 PKGBUILD |   86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 86 insertions(+)

Copied: python-jsonschema/repos/community-staging-any/PKGBUILD (from rev 
1438257, python-jsonschema/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-06 03:30:35 UTC (rev 1438258)
@@ -0,0 +1,86 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred.com>
+# Contributor: Bogdan Szczurek <[email protected]>
+# Contributor: Ismo Toijala <[email protected]>
+
+pkgname=python-jsonschema
+pkgver=4.17.3
+pkgrel=2
+pkgdesc='An implementation of JSON Schema validation for Python'
+arch=('any')
+url='https://github.com/python-jsonschema/jsonschema'
+license=('MIT')
+depends=(
+  'python'
+  'python-attrs'
+  'python-pyrsistent'
+  'python-typing_extensions'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-installer'
+  'python-wheel'
+  'python-hatchling'
+  'python-hatch-vcs'
+  'python-hatch-fancy-pypi-readme'
+)
+checkdepends=(
+  'python-pip'
+  'python-twisted'
+  'python-isoduration'
+  'python-fqdn'
+  'python-idna'
+  'python-jsonpointer'
+  'python-rfc3339-validator'
+  'python-rfc3987'
+  'python-uri-template'
+  'python-webcolors'
+)
+optdepends=(
+  'python-isoduration: for duration format'
+  'python-fqdn: for hostname format'
+  'python-idna: for idn-hostname format'
+  'python-jsonpointer: for json-pointer & relative-json-pointer format'
+  'python-rfc3339-validator: for date-time format'
+  'python-rfc3987: for iri, iri-reference, uri & uri-reference format'
+  'python-uri-template: for uri-template format'
+  'python-webcolors: for color format'
+)
+_commit='dbc398245a583cb2366795dc529ae042d10c1577'
+source=("$pkgname::git+$url#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+
+  # install to temporary directory
+  python -m installer --destdir="$PWD/tmp_install" dist/*.whl
+
+  PYTHONPATH="$PWD/tmp_install$site_packages" \
+    JSON_SCHEMA_TEST_SUITE=json trial jsonschema
+}
+
+package() {
+  cd "$pkgname"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" json/LICENSE
+}

Reply via email to