python3-fastjsonschema: initial commit, version 2.19.1

This commit is contained in:
Tim Biermann 2024-02-23 21:56:49 +01:00
parent 13cbb94dfa
commit b113bbb2e4
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,32 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/PKG-INFO
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/SOURCES.txt
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/dependency_links.txt
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/requires.txt
-rwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema-2.19.1-py3.10.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__init__.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__main__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/__init__.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/__main__.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/draft04.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/draft06.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/draft07.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/exceptions.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/generator.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/indent.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/ref_resolver.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/__pycache__/version.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/draft04.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/draft06.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/draft07.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/exceptions.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/generator.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/indent.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/ref_resolver.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/fastjsonschema/version.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39VOm5G0ASgmJn42pzqsGA+CqUt10J9Gr+4Y00hxhvwSQTQpg9mCZK8cVYyJRW0BawpREGMR1hlNI0MdEnH6AQQ=
SHA256 (Pkgfile) = c96eeba167d988c320189677f6c1ec0c8778ca2bd9a81110d7b0ac359420d1a0
SHA256 (.footprint) = eff8891aa291ef932d1004a635b61287d950d6449d3bf2a9da162faa66e6767a
SHA256 (fastjsonschema-2.19.1.tar.gz) = e3126a94bdc4623d3de4485f8d468a12f02a67921315ddc87836d6e456dc789d

View File

@ -0,0 +1,18 @@
# Description: Fastest Python implementation of JSON schema
# URL: https://github.com/horejsek/python-fastjsonschema
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-fastjsonschema
version=2.19.1
release=1
source=(https://pypi.org/packages/source/f/fastjsonschema/fastjsonschema-$version.tar.gz)
build() {
cd fastjsonschema-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}