[Python-modules-commits] [pymodbus] branch master updated (0fe674b -> 93a96f2)

Wolfgang Borgert debacle at moszumanska.debian.org
Sat Jun 24 23:36:37 UTC 2017


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

debacle pushed a change to branch master
in repository pymodbus.

      from  0fe674b   Fixed VCS URL (https)
      adds  58ca1d3   import new upstream version 1.3.0~rc1
      adds  da35cfb   Merge branch 'upstream/latest' 1.3.0~rc1 into debian/experimental
      adds  6770d99   switch to new upstream and add python3 and doc package ugly mega-commit, sorry
      adds  6f7c08e   prepare 1.3.0~rc1-1 for experimental
      adds  80e1124   import new upstream version 1.3.0~rc2
      adds  c65552b   Merge tag 'upstream/1.3.0_rc2' into debian/experimental
      adds  cbdb0e9   update patches for new version: add "rm-humanfriendly", remove "tmp-disable-test"
      adds  179b1f9   update watch file to use new upstream
      adds  2afa4c5   prepare 1.3.0~rc2-1
       new  703a379   import new upstream version 1.3.1
       new  9a8fbb3   Merge tag 'upstream/1.3.1'
       new  935821f   add build-dependency on humanfriendly, remove related patch
       new  ca59bfd   remove debian/.git-dpm
       new  32b9427   bump Standards-Version to 4.0.0
       new  60a4d12   add rudimentary autopkgtest
       new  93a96f2   prepare 1.3.1-1

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:
 .coveragerc                                        |   2 +
 .gitignore                                         |  16 ++
 .travis.yml                                        |  32 +++
 CHANGELOG.rst                                      |  25 +-
 Makefile                                           |  64 +++++
 README.rst                                         |  44 +++-
 debian/.git-dpm                                    |  11 -
 debian/changelog                                   |  34 ++-
 debian/compat                                      |   2 +-
 debian/control                                     |  78 +++++-
 debian/copyright                                   |   5 +-
 debian/python-pymodbus-doc.docs                    |   1 +
 debian/python-pymodbus-doc.examples                |   1 +
 debian/python-pymodbus.docs                        |   1 -
 debian/rules                                       |  20 +-
 debian/tests/control                               |   5 +
 debian/watch                                       |   2 +-
 doc/pymodbus.pdf                                   | Bin 509208 -> 0 bytes
 doc/sphinx/conf.py                                 | 203 +++++-----------
 doc/sphinx/examples/bottle-frontend.rst            |   2 +-
 doc/sphinx/examples/index.rst                      |   2 +
 doc/sphinx/examples/modbus-payload-server.rst      |   6 +
 doc/sphinx/library/sync-client.rst                 |   3 -
 examples/common/asynchronous-client.py             |   5 +-
 examples/common/asynchronous-server.py             |   2 +-
 examples/common/custom-datablock.py                |  11 +-
 ...ustom-datablock.py => modbus-payload-server.py} |  71 +++---
 examples/common/modbus-payload.py                  |  16 +-
 examples/common/performance.py                     |  22 +-
 examples/common/synchronous-client-ext.py          |  63 ++---
 examples/common/synchronous-client.py              |  62 +++--
 examples/common/synchronous-server.py              |   6 +-
 examples/contrib/message-generator.py              |  11 +-
 examples/contrib/message-parser.py                 |  42 ++--
 examples/contrib/modicon-payload.py                |   5 +-
 examples/contrib/remote_server_context.py          |   6 +-
 examples/gui/bottle/frontend.py                    |   9 +-
 ez_setup.py                                        |  53 +++--
 pymodbus/__init__.py                               |   8 +-
 pymodbus/bit_read_message.py                       |  19 +-
 pymodbus/bit_write_message.py                      |  15 +-
 pymodbus/client/async.py                           |   2 +-
 pymodbus/client/sync.py                            |  54 ++++-
 pymodbus/compat.py                                 |  96 ++++++++
 pymodbus/datastore/context.py                      |  18 +-
 pymodbus/datastore/store.py                        |  11 +-
 pymodbus/device.py                                 |  47 ++--
 pymodbus/diag_message.py                           |  18 +-
 pymodbus/events.py                                 |   4 +-
 pymodbus/exceptions.py                             |  18 +-
 pymodbus/factory.py                                |  11 +-
 pymodbus/file_message.py                           | 110 +--------
 pymodbus/internal/ptwisted.py                      |  10 +-
 pymodbus/mei_message.py                            |  18 +-
 pymodbus/other_message.py                          |  52 ++--
 pymodbus/payload.py                                |  49 +++-
 pymodbus/pdu.py                                    |   7 +-
 pymodbus/register_read_message.py                  |  23 +-
 pymodbus/register_write_message.py                 | 120 +++++++++-
 pymodbus/server/async.py                           |  22 +-
 pymodbus/server/sync.py                            |  76 ++++--
 pymodbus/transaction.py                            | 265 ++++++++++++++++-----
 pymodbus/utilities.py                              |  31 ++-
 pymodbus/version.py                                |  16 +-
 requirements-checks.txt                            |   4 +
 requirements-tests.txt                             |  12 +
 requirements.txt                                   |  30 ++-
 scripts/travis.sh                                  |  11 +
 setup.cfg                                          |   3 +
 setup.py                                           |   8 +-
 test/test_bit_read_messages.py                     |  32 ++-
 test/test_bit_write_messages.py                    |  35 ++-
 test/test_client_async.py                          |  11 +-
 test/test_client_sync.py                           |  40 +++-
 test/test_device.py                                |  15 +-
 test/test_diag_messages.py                         | 102 ++++----
 test/test_events.py                                |  20 +-
 test/test_exceptions.py                            |   2 +-
 test/test_factory.py                               | 110 ++++-----
 test/test_file_message.py                          | 120 +++-------
 test/test_interfaces.py                            |   2 +-
 test/test_mei_messages.py                          |  27 ++-
 test/test_other_messages.py                        |  54 ++---
 test/test_payload.py                               |  54 +++--
 test/test_pdu.py                                   |  17 +-
 test/test_register_read_messages.py                |  36 +--
 test/test_register_write_messages.py               |  94 +++++++-
 test/test_remote_datastore.py                      |   2 +-
 test/test_server_async.py                          |  28 ++-
 test/test_server_context.py                        |  15 +-
 test/test_server_sync.py                           |  58 +++--
 test/test_transaction.py                           |  93 ++++----
 test/test_utilities.py                             |   6 +-
 test/test_version.py                               |   7 +-
 tox.ini                                            |  16 ++
 95 files changed, 1985 insertions(+), 1142 deletions(-)
 create mode 100644 .coveragerc
 create mode 100644 .travis.yml
 create mode 100644 Makefile
 delete mode 100644 debian/.git-dpm
 create mode 100644 debian/python-pymodbus-doc.docs
 create mode 100644 debian/python-pymodbus-doc.examples
 delete mode 100644 debian/python-pymodbus.docs
 create mode 100644 debian/tests/control
 delete mode 100644 doc/pymodbus.pdf
 create mode 100644 doc/sphinx/examples/modbus-payload-server.rst
 copy examples/common/{custom-datablock.py => modbus-payload-server.py} (53%)
 create mode 100644 pymodbus/compat.py
 create mode 100644 requirements-checks.txt
 create mode 100644 requirements-tests.txt
 create mode 100755 scripts/travis.sh
 create mode 100644 tox.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pymodbus.git



More information about the Python-modules-commits mailing list