[med-svn] [python-pbcommand] branch master updated (0c93df8 -> f1f07c3)

Afif Elghraoui afif at moszumanska.debian.org
Sun Apr 24 03:11:50 UTC 2016


This is an automated email from the git hooks/post-receive script.

afif pushed a change to branch master
in repository python-pbcommand.

      from  0c93df8   python-pbcommand (0.2.17-1) unstable; urgency=low
       new  3ad18d1   Imported Upstream version 0.3.22
       new  613721e   Merge tag 'upstream/0.3.22'
       new  301f415   Bump copyright years
       new  af08f91   Update email address
       new  8b66ee8   Bump standards version to 3.9.8
       new  769c7ab   Use encrypted protocols for VCS
       new  a90e8c9   Add new build-dependencies
       new  697f823   Use documentation page as homepage
       new  2129bf8   Add manpage for new CLI program
       new  f1f07c3   releasing package python-pbcommand version 0.3.22-1

The 10 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:
 Makefile                                           |   4 +-
 README.md                                          |  10 +-
 REQUIREMENTS.txt                                   |   2 +
 REQUIREMENTS_TEST.txt                              |  10 +-
 debian/changelog                                   |   9 +
 debian/control                                     |  12 +-
 debian/copyright                                   |   4 +-
 debian/manpages                                    |   1 +
 debian/pbservice.1                                 |  19 +
 docs/source/conf.py                                |   9 +-
 docs/source/index.rst                              |   9 +-
 docs/source/services.rst                           |   9 +
 pbcommand/__init__.py                              |   2 +-
 pbcommand/cli/__init__.py                          |   4 +-
 pbcommand/cli/core.py                              | 197 ++++---
 pbcommand/cli/examples/dev_app.py                  |   4 +-
 pbcommand/cli/examples/dev_gather_fasta_app.py     |   2 +-
 pbcommand/cli/examples/dev_mixed_app.py            |   4 +-
 pbcommand/cli/examples/dev_quick_hello_world.py    |  13 +-
 pbcommand/cli/examples/dev_scatter_fasta_app.py    |   2 +-
 pbcommand/cli/examples/dev_txt_app.py              |   4 +-
 pbcommand/cli/examples/template_simple.py          |  49 ++
 pbcommand/cli/quick.py                             | 119 +++--
 pbcommand/cli/utils.py                             | 139 +++++
 pbcommand/common_options.py                        |  90 +++-
 pbcommand/interactive_resolver.py                  |   2 +-
 pbcommand/models/__init__.py                       |   4 +-
 pbcommand/models/common.py                         | 102 +++-
 pbcommand/models/parser.py                         |  39 +-
 pbcommand/models/report.py                         |  49 +-
 pbcommand/models/tool_contract.py                  |  24 +-
 pbcommand/pb_io/report.py                          |  35 +-
 pbcommand/pb_io/tool_contract_io.py                |  21 +-
 pbcommand/resolver.py                              |  34 +-
 pbcommand/schemas/__init__.py                      |   2 +-
 pbcommand/schemas/resolved_tool_contract.avsc      |   6 +-
 pbcommand/services/__init__.py                     |   4 +
 pbcommand/services/cli.py                          | 505 ++++++++++++++++++
 pbcommand/services/models.py                       | 163 ++++++
 pbcommand/services/service_access_layer.py         | 585 +++++++++++++++++++++
 pbcommand/services/utils.py                        | 114 ++++
 pbcommand/testkit/core.py                          |  25 +-
 pbcommand/utils.py                                 | 345 +++++++++++-
 pbcommand/validators.py                            |  76 +--
 setup.py                                           |   3 +-
 .../dev_example_dev_txt_app_tool_contract.json     |   2 +-
 tests/data/dev_example_resolved_tool_contract.json |   3 +-
 tests/data/dev_example_tool_contract.json          |   2 +-
 tests/data/dev_gather_fasta_app_tool_contract.json |   2 +-
 .../data/dev_scatter_fasta_app_tool_contract.json  |   2 +-
 tests/data/example-reports/overview.json           |   4 +-
 ...ommand.tasks.dev_fastq2fasta_tool_contract.json |  55 +-
 ...mmand.tasks.dev_qhello_world_tool_contract.json |   4 +-
 ...nd.tasks.dev_txt_custom_outs_tool_contract.json |   6 +-
 ...bcommand.tasks.dev_txt_hello_tool_contract.json |   6 +-
 tests/data/resolved_contract_01.json               |   5 +-
 tests/data/resolved_tool_contract_dev_app.json     |   5 +-
 tests/test_common_cmdline_core.py                  |   2 +-
 tests/test_e2e_example_apps.py                     |   4 +
 tests/test_load_resolved_tool_contract.py          |   2 +-
 tests/test_models_report.py                        | 206 +++++++-
 tests/test_models_report_attribute.py              |  53 ++
 tests/test_models_report_column.py                 |  76 +++
 tests/test_models_report_plot.py                   |  43 ++
 tests/test_models_report_plotgroup.py              |  58 ++
 tests/test_models_report_table.py                  | 121 +++++
 tests/test_parsers.py                              |  20 +-
 tests/test_pb_io_report.py                         |   3 +
 tests/test_resolver.py                             |   6 +-
 tests/test_utils.py                                |  44 +-
 tox.ini                                            |   2 +
 71 files changed, 3227 insertions(+), 374 deletions(-)
 create mode 100644 debian/manpages
 create mode 100644 debian/pbservice.1
 create mode 100644 docs/source/services.rst
 create mode 100644 pbcommand/cli/examples/template_simple.py
 create mode 100755 pbcommand/cli/utils.py
 create mode 100644 pbcommand/services/__init__.py
 create mode 100644 pbcommand/services/cli.py
 create mode 100644 pbcommand/services/models.py
 create mode 100644 pbcommand/services/service_access_layer.py
 create mode 100644 pbcommand/services/utils.py
 create mode 100644 tests/test_models_report_attribute.py
 create mode 100644 tests/test_models_report_column.py
 create mode 100644 tests/test_models_report_plot.py
 create mode 100644 tests/test_models_report_plotgroup.py
 create mode 100644 tests/test_models_report_table.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-pbcommand.git



More information about the debian-med-commit mailing list