pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc py-fastjsonschema: added version 2.15.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/f5aa80ba5d12
branches: trunk
changeset: 376411:f5aa80ba5d12
user: adam <adam%pkgsrc.org@localhost>
date: Thu Apr 07 07:00:29 2022 +0000
description:
py-fastjsonschema: added version 2.15.3
fastjsonschema implements validation of JSON documents by JSON schema. The
library implements JSON schema drafts 04, 06 and 07. The main purpose is to
have a really fast implementation.
diffstat:
textproc/Makefile | 3 ++-
textproc/py-fastjsonschema/DESCR | 3 +++
textproc/py-fastjsonschema/Makefile | 18 ++++++++++++++++++
textproc/py-fastjsonschema/PLIST | 36 ++++++++++++++++++++++++++++++++++++
textproc/py-fastjsonschema/distinfo | 5 +++++
5 files changed, 64 insertions(+), 1 deletions(-)
diffs (95 lines):
diff -r d09bc4a3aa2f -r f5aa80ba5d12 textproc/Makefile
--- a/textproc/Makefile Thu Apr 07 06:54:09 2022 +0000
+++ b/textproc/Makefile Thu Apr 07 07:00:29 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1300 2022/04/06 06:00:30 wiz Exp $
+# $NetBSD: Makefile,v 1.1301 2022/04/07 07:00:29 adam Exp $
#
COMMENT= Text processing utilities (does not include desktop publishing)
@@ -1003,6 +1003,7 @@
SUBDIR+= py-epr-reader
SUBDIR+= py-eradicate
SUBDIR+= py-expat
+SUBDIR+= py-fastjsonschema
SUBDIR+= py-feedparser
SUBDIR+= py-feedparser5
SUBDIR+= py-ftfy
diff -r d09bc4a3aa2f -r f5aa80ba5d12 textproc/py-fastjsonschema/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-fastjsonschema/DESCR Thu Apr 07 07:00:29 2022 +0000
@@ -0,0 +1,3 @@
+fastjsonschema implements validation of JSON documents by JSON schema. The
+library implements JSON schema drafts 04, 06 and 07. The main purpose is to
+have a really fast implementation.
diff -r d09bc4a3aa2f -r f5aa80ba5d12 textproc/py-fastjsonschema/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-fastjsonschema/Makefile Thu Apr 07 07:00:29 2022 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2022/04/07 07:00:29 adam Exp $
+
+DISTNAME= fastjsonschema-2.15.3
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= textproc python
+MASTER_SITES= ${MASTER_SITE_PYPI:=f/fastjsonschema/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/seznam/python-fastjsonschema
+COMMENT= Fastest Python implementation of JSON schema
+LICENSE= modified-bsd
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE= 27
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r d09bc4a3aa2f -r f5aa80ba5d12 textproc/py-fastjsonschema/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-fastjsonschema/PLIST Thu Apr 07 07:00:29 2022 +0000
@@ -0,0 +1,36 @@
+@comment $NetBSD: PLIST,v 1.1 2022/04/07 07:00:29 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/fastjsonschema/__init__.py
+${PYSITELIB}/fastjsonschema/__init__.pyc
+${PYSITELIB}/fastjsonschema/__init__.pyo
+${PYSITELIB}/fastjsonschema/__main__.py
+${PYSITELIB}/fastjsonschema/__main__.pyc
+${PYSITELIB}/fastjsonschema/__main__.pyo
+${PYSITELIB}/fastjsonschema/draft04.py
+${PYSITELIB}/fastjsonschema/draft04.pyc
+${PYSITELIB}/fastjsonschema/draft04.pyo
+${PYSITELIB}/fastjsonschema/draft06.py
+${PYSITELIB}/fastjsonschema/draft06.pyc
+${PYSITELIB}/fastjsonschema/draft06.pyo
+${PYSITELIB}/fastjsonschema/draft07.py
+${PYSITELIB}/fastjsonschema/draft07.pyc
+${PYSITELIB}/fastjsonschema/draft07.pyo
+${PYSITELIB}/fastjsonschema/exceptions.py
+${PYSITELIB}/fastjsonschema/exceptions.pyc
+${PYSITELIB}/fastjsonschema/exceptions.pyo
+${PYSITELIB}/fastjsonschema/generator.py
+${PYSITELIB}/fastjsonschema/generator.pyc
+${PYSITELIB}/fastjsonschema/generator.pyo
+${PYSITELIB}/fastjsonschema/indent.py
+${PYSITELIB}/fastjsonschema/indent.pyc
+${PYSITELIB}/fastjsonschema/indent.pyo
+${PYSITELIB}/fastjsonschema/ref_resolver.py
+${PYSITELIB}/fastjsonschema/ref_resolver.pyc
+${PYSITELIB}/fastjsonschema/ref_resolver.pyo
+${PYSITELIB}/fastjsonschema/version.py
+${PYSITELIB}/fastjsonschema/version.pyc
+${PYSITELIB}/fastjsonschema/version.pyo
diff -r d09bc4a3aa2f -r f5aa80ba5d12 textproc/py-fastjsonschema/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-fastjsonschema/distinfo Thu Apr 07 07:00:29 2022 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/04/07 07:00:29 adam Exp $
+
+BLAKE2s (fastjsonschema-2.15.3.tar.gz) = 3b909ef956f776875ad20a987f38740d3cae8f1dc04de89af12d794498cd8073
+SHA512 (fastjsonschema-2.15.3.tar.gz) = f1c73ab8bbcb255f56c09259f61ff1436fdbcc77aa5aecf24b5d7ba2e654c0497c6bc5ac595b0fc0fa9045d071cab8744e7e02601a7b339968dc479f5f313d64
+Size (fastjsonschema-2.15.3.tar.gz) = 18469 bytes
Home |
Main Index |
Thread Index |
Old Index