py-xmlschema: updated to 1.5.0
v1.5.0 * Add DataElement class for creating objects with schema bindings * Add DataElementConverter for decode to structured objects * Add an experimental abstract base class for building jinja2 based code generators (jinja2 as an optional dependency)
This commit is contained in:
parent
5a939d44b4
commit
0c5a3cbfb6
3 changed files with 47 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.18 2021/01/26 14:45:32 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2021/02/05 18:58:37 adam Exp $
|
||||
|
||||
DISTNAME= xmlschema-1.4.2
|
||||
DISTNAME= xmlschema-1.5.0
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= textproc python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=x/xmlschema/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.9 2021/01/03 10:03:33 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.10 2021/02/05 18:58:37 adam Exp $
|
||||
bin/xmlschema-json2xml-${PYVERSSUFFIX}
|
||||
bin/xmlschema-validate-${PYVERSSUFFIX}
|
||||
bin/xmlschema-xml2json-${PYVERSSUFFIX}
|
||||
|
@ -14,9 +14,36 @@ ${PYSITELIB}/xmlschema/__init__.pyo
|
|||
${PYSITELIB}/xmlschema/cli.py
|
||||
${PYSITELIB}/xmlschema/cli.pyc
|
||||
${PYSITELIB}/xmlschema/cli.pyo
|
||||
${PYSITELIB}/xmlschema/converters.py
|
||||
${PYSITELIB}/xmlschema/converters.pyc
|
||||
${PYSITELIB}/xmlschema/converters.pyo
|
||||
${PYSITELIB}/xmlschema/converters/__init__.py
|
||||
${PYSITELIB}/xmlschema/converters/__init__.pyc
|
||||
${PYSITELIB}/xmlschema/converters/__init__.pyo
|
||||
${PYSITELIB}/xmlschema/converters/abdera.py
|
||||
${PYSITELIB}/xmlschema/converters/abdera.pyc
|
||||
${PYSITELIB}/xmlschema/converters/abdera.pyo
|
||||
${PYSITELIB}/xmlschema/converters/badgerfish.py
|
||||
${PYSITELIB}/xmlschema/converters/badgerfish.pyc
|
||||
${PYSITELIB}/xmlschema/converters/badgerfish.pyo
|
||||
${PYSITELIB}/xmlschema/converters/columnar.py
|
||||
${PYSITELIB}/xmlschema/converters/columnar.pyc
|
||||
${PYSITELIB}/xmlschema/converters/columnar.pyo
|
||||
${PYSITELIB}/xmlschema/converters/dataelement.py
|
||||
${PYSITELIB}/xmlschema/converters/dataelement.pyc
|
||||
${PYSITELIB}/xmlschema/converters/dataelement.pyo
|
||||
${PYSITELIB}/xmlschema/converters/default.py
|
||||
${PYSITELIB}/xmlschema/converters/default.pyc
|
||||
${PYSITELIB}/xmlschema/converters/default.pyo
|
||||
${PYSITELIB}/xmlschema/converters/jsonml.py
|
||||
${PYSITELIB}/xmlschema/converters/jsonml.pyc
|
||||
${PYSITELIB}/xmlschema/converters/jsonml.pyo
|
||||
${PYSITELIB}/xmlschema/converters/parker.py
|
||||
${PYSITELIB}/xmlschema/converters/parker.pyc
|
||||
${PYSITELIB}/xmlschema/converters/parker.pyo
|
||||
${PYSITELIB}/xmlschema/converters/unordered.py
|
||||
${PYSITELIB}/xmlschema/converters/unordered.pyc
|
||||
${PYSITELIB}/xmlschema/converters/unordered.pyo
|
||||
${PYSITELIB}/xmlschema/dataobjects.py
|
||||
${PYSITELIB}/xmlschema/dataobjects.pyc
|
||||
${PYSITELIB}/xmlschema/dataobjects.pyo
|
||||
${PYSITELIB}/xmlschema/documents.py
|
||||
${PYSITELIB}/xmlschema/documents.pyc
|
||||
${PYSITELIB}/xmlschema/documents.pyo
|
||||
|
@ -26,6 +53,15 @@ ${PYSITELIB}/xmlschema/etree.pyo
|
|||
${PYSITELIB}/xmlschema/exceptions.py
|
||||
${PYSITELIB}/xmlschema/exceptions.pyc
|
||||
${PYSITELIB}/xmlschema/exceptions.pyo
|
||||
${PYSITELIB}/xmlschema/extras/__init__.py
|
||||
${PYSITELIB}/xmlschema/extras/__init__.pyc
|
||||
${PYSITELIB}/xmlschema/extras/__init__.pyo
|
||||
${PYSITELIB}/xmlschema/extras/codegen.py
|
||||
${PYSITELIB}/xmlschema/extras/codegen.pyc
|
||||
${PYSITELIB}/xmlschema/extras/codegen.pyo
|
||||
${PYSITELIB}/xmlschema/extras/wsdl.py
|
||||
${PYSITELIB}/xmlschema/extras/wsdl.pyc
|
||||
${PYSITELIB}/xmlschema/extras/wsdl.pyo
|
||||
${PYSITELIB}/xmlschema/helpers.py
|
||||
${PYSITELIB}/xmlschema/helpers.pyc
|
||||
${PYSITELIB}/xmlschema/helpers.pyo
|
||||
|
@ -131,9 +167,6 @@ ${PYSITELIB}/xmlschema/validators/wildcards.pyo
|
|||
${PYSITELIB}/xmlschema/validators/xsdbase.py
|
||||
${PYSITELIB}/xmlschema/validators/xsdbase.pyc
|
||||
${PYSITELIB}/xmlschema/validators/xsdbase.pyo
|
||||
${PYSITELIB}/xmlschema/wsdl.py
|
||||
${PYSITELIB}/xmlschema/wsdl.pyc
|
||||
${PYSITELIB}/xmlschema/wsdl.pyo
|
||||
${PYSITELIB}/xmlschema/xpath.py
|
||||
${PYSITELIB}/xmlschema/xpath.pyc
|
||||
${PYSITELIB}/xmlschema/xpath.pyo
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.17 2021/01/26 14:45:32 adam Exp $
|
||||
$NetBSD: distinfo,v 1.18 2021/02/05 18:58:37 adam Exp $
|
||||
|
||||
SHA1 (xmlschema-1.4.2.tar.gz) = e779f04dd270943e19c712ab92c1eea1268ca6a7
|
||||
RMD160 (xmlschema-1.4.2.tar.gz) = cb805b179c90c285685311e574922a4044c9e59e
|
||||
SHA512 (xmlschema-1.4.2.tar.gz) = a490d1686f3e8cc7fd45bcb51f00ddf8b734e0c928f8690f9988232f8781fa070f7f03be7473ed5e8b3d1ab67bb08e123c79b408c3daaebfd2df0e94c8827888
|
||||
Size (xmlschema-1.4.2.tar.gz) = 331747 bytes
|
||||
SHA1 (xmlschema-1.5.0.tar.gz) = 51aa2b44cf31c2bbe35c4f2bf8701b40ce6fac0c
|
||||
RMD160 (xmlschema-1.5.0.tar.gz) = bed888326ae1dff8b8671370b2a16f14a7552e9f
|
||||
SHA512 (xmlschema-1.5.0.tar.gz) = 07943e6de04cc7f4de4963a1d2d7ef85d4eaf3bb4bb52d3f632df4569f359481ca97f1cc7bca7fd59e14988795e4675c84e5a2d80f22514fb6499ff52d40a0c2
|
||||
Size (xmlschema-1.5.0.tar.gz) = 345946 bytes
|
||||
SHA1 (patch-setup.py) = 33f441c48a538fde5156588c17cc6e8af1d692e6
|
||||
|
|
Loading…
Reference in a new issue