[arch-commits] Commit in python-jsonschema/repos (2 files)

Felix Yan felixonmars at archlinux.org
Tue May 28 15:10:19 UTC 2019


    Date: Tuesday, May 28, 2019 @ 15:10:18
  Author: felixonmars
Revision: 472756

archrelease: copy trunk to community-testing-any

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

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

Copied: python-jsonschema/repos/community-testing-any/PKGBUILD (from rev 472755, python-jsonschema/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2019-05-28 15:10:18 UTC (rev 472756)
@@ -0,0 +1,66 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred.com>
+# Contributor: Bogdan Szczurek <thebodzio at gmail.com>
+# Contributor: Ismo Toijala <ismo.toijala at gmail.com>
+
+pkgbase=python-jsonschema
+pkgname=('python-jsonschema' 'python2-jsonschema')
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="An implementation of JSON Schema validation for Python"
+arch=('any')
+url="http://pypi.python.org/pypi/jsonschema"
+license=('MIT')
+makedepends=('python-attrs' 'python2-attrs' 'python-pyrsistent' 'python2-pyrsistent'
+             'python2-functools32' 'python-setuptools-scm' 'python2-setuptools-scm')
+checkdepends=('python-twisted' 'python2-twisted' 'python-idna' 'python2-idna' 'python-jsonpointer'
+              'python2-jsonpointer' 'python-strict-rfc3339' 'python2-strict-rfc3339'
+              'python-rfc3987' 'python2-rfc3987' 'python-webcolors' 'python2-webcolors')
+source=("$pkgbase-$pkgver.tar.bz2::https://github.com/Julian/jsonschema/archive/v$pkgver.tar.gz")
+sha512sums=('9673b4c04730f9949155d30a616fff4b7696467078bc10a1b77de675366bdf64ec0e23e9ca8235041ec4b1128d162fc01c1aa8c43dd814ada2811c2c04e5a51e')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+prepare() {
+  cp -a jsonschema-$pkgver{,-py2}
+  find jsonschema-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+  cd "$srcdir"/jsonschema-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/jsonschema-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/jsonschema-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages" JSON_SCHEMA_TEST_SUITE=json trial3 jsonschema
+  python -m doctest README.rst
+
+  cd "$srcdir"/jsonschema-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages" JSON_SCHEMA_TEST_SUITE=json trial jsonschema
+  python2 -m doctest README.rst
+}
+
+package_python-jsonschema() {
+  depends=('python-attrs' 'python-pyrsistent' 'python-setuptools')
+
+  cd jsonschema-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 json/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-jsonschema() {
+  depends=('python2-attrs' 'python2-pyrsistent' 'python2-setuptools' 'python2-functools32')
+
+  cd jsonschema-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 json/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/jsonschema{,2}
+}
+



More information about the arch-commits mailing list