[med-svn] [python-schema-salad] branch master updated (48070b0 -> 2aa1712)
Andreas Tille
tille at debian.org
Wed Dec 6 15:57:37 UTC 2017
This is an automated email from the git hooks/post-receive script.
tille pushed a change to branch master
in repository python-schema-salad.
from 48070b0 fix broken manual pages
new ab8b103 New upstream version 2.6.20171201034858
new e2001a8 Updated version 2.6.20171201034858 from 'upstream/2.6.20171201034858'
new 976d661 New upstream version
new 40174f2 Standards-Version: 4.1.1
new 1d56e54 Recommends: cwltool (to enable running all test scripts)
new 92b86b4 Use locally installed bootstrap.min.css instead of risking privacy breach
new 2aa1712 Upload to unstable
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
MANIFEST.in | 1 +
Makefile | 5 +-
PKG-INFO | 12 +-
README.rst | 7 +
debian/changelog | 10 +
debian/control | 6 +-
debian/patches/avoid_privacy_breach.patch | 16 +
debian/patches/series | 1 +
schema_salad.egg-info/PKG-INFO | 12 +-
schema_salad.egg-info/SOURCES.txt | 33 +
schema_salad.egg-info/pbr.json | 1 +
schema_salad.egg-info/requires.txt | 23 +-
schema_salad/__init__.py | 22 +
schema_salad/codegen.py | 100 +
schema_salad/codegen_base.py | 78 +
schema_salad/java_codegen.py | 152 ++
schema_salad/main.py | 116 +-
schema_salad/makedoc.py | 13 +-
schema_salad/metaschema.py | 1447 ++++++++++++
schema_salad/metaschema/metaschema.html | 971 ++++++++
schema_salad/metaschema/metaschema.yml | 2 +-
.../metaschema/{metaschema.yml => metaschema2.yml} | 17 +-
schema_salad/python_codegen.py | 225 ++
schema_salad/python_codegen_support.py | 383 ++++
schema_salad/ref_resolver.py | 140 +-
schema_salad/schema.py | 5 +-
schema_salad/sourceline.py | 13 +-
schema_salad/tests/#cg_metaschema.py# | 1568 +++++++++++++
schema_salad/tests/.coverage | 1 +
schema_salad/tests/cwl-pre.yml | 2354 ++++++++++++++++++++
schema_salad/tests/df | 5 +
schema_salad/tests/df2 | 1 +
schema_salad/tests/docimp/d1.yml | 7 +
schema_salad/tests/docimp/d2.md | 1 +
schema_salad/tests/docimp/d3.yml | 3 +
schema_salad/tests/docimp/d4.yml | 3 +
schema_salad/tests/docimp/d5.md | 1 +
schema_salad/tests/docimp/dpre.json | 13 +
schema_salad/tests/hello.txt | 1 +
schema_salad/tests/hellofield.yml | 5 +
schema_salad/tests/matcher.py | 32 +
schema_salad/tests/metaschema-pre.yml | 628 ++++++
schema_salad/tests/pt.yml | 28 +
schema_salad/tests/test_cg.py | 177 ++
schema_salad/tests/test_errors.py | 3 +-
schema_salad/tests/test_examples.py | 49 +-
schema_salad/tests/test_fetch.py | 3 +-
schema_salad/tests/test_print_oneline.py | 120 +
schema_salad/tests/test_ref_resolver.py | 108 +
schema_salad/tests/test_schema/CommandLineTool.yml | 1 +
schema_salad/tests/test_schema/Workflow.yml | 1 +
schema_salad/tests/test_schema/test15.cwl | 13 +
schema_salad/tests/test_schema/test16.cwl | 15 +
schema_salad/tests/test_schema/test17.cwl | 13 +
schema_salad/tests/test_schema/test18.cwl | 13 +
schema_salad/tests/test_schema/test19.cwl | 15 +
schema_salad/tests/test_validate.pyx | 71 +
schema_salad/tests/util.py | 1 +
schema_salad/utils.py | 21 +-
schema_salad/validate.py | 3 +-
setup.cfg | 2 +-
setup.py | 7 +-
62 files changed, 8977 insertions(+), 121 deletions(-)
create mode 100644 debian/patches/avoid_privacy_breach.patch
create mode 100644 debian/patches/series
create mode 100644 schema_salad.egg-info/pbr.json
create mode 100644 schema_salad/codegen.py
create mode 100644 schema_salad/codegen_base.py
create mode 100644 schema_salad/java_codegen.py
create mode 100644 schema_salad/metaschema.py
create mode 100644 schema_salad/metaschema/metaschema.html
copy schema_salad/metaschema/{metaschema.yml => metaschema2.yml} (95%)
create mode 100644 schema_salad/python_codegen.py
create mode 100644 schema_salad/python_codegen_support.py
create mode 100644 schema_salad/tests/#cg_metaschema.py#
create mode 100644 schema_salad/tests/.coverage
create mode 100644 schema_salad/tests/cwl-pre.yml
create mode 100644 schema_salad/tests/df
create mode 100644 schema_salad/tests/df2
create mode 100644 schema_salad/tests/docimp/d1.yml
create mode 100644 schema_salad/tests/docimp/d2.md
create mode 100644 schema_salad/tests/docimp/d3.yml
create mode 100644 schema_salad/tests/docimp/d4.yml
create mode 100644 schema_salad/tests/docimp/d5.md
create mode 100644 schema_salad/tests/docimp/dpre.json
create mode 100644 schema_salad/tests/hello.txt
create mode 100644 schema_salad/tests/hellofield.yml
create mode 100644 schema_salad/tests/matcher.py
create mode 100644 schema_salad/tests/metaschema-pre.yml
create mode 100644 schema_salad/tests/pt.yml
create mode 100644 schema_salad/tests/test_cg.py
create mode 100644 schema_salad/tests/test_print_oneline.py
create mode 100755 schema_salad/tests/test_schema/test15.cwl
create mode 100644 schema_salad/tests/test_schema/test16.cwl
create mode 100644 schema_salad/tests/test_schema/test17.cwl
create mode 100644 schema_salad/tests/test_schema/test18.cwl
create mode 100644 schema_salad/tests/test_schema/test19.cwl
create mode 100644 schema_salad/tests/test_validate.pyx
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-schema-salad.git
More information about the debian-med-commit
mailing list