[Python-modules-commits] [python-protobix] branch master updated (9c56bc7 -> d156097)

Jean Baptiste Favre jbfavre-guest at moszumanska.debian.org
Tue Nov 22 12:43:46 UTC 2016


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

jbfavre-guest pushed a change to branch master
in repository python-protobix.

      from  9c56bc7   Update d/changelog for 0.1.2-1
       new  e0571f7   Import python-protobix_1.0.0.orig.tar.gz
       new  34941e9   record new upstream branch created by importing python-protobix_1.0.0.orig.tar.gz and merge it
       new  d156097   Update d/changelog for 1.0.0

The 3 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:
 .gitignore                                         |   5 +
 .travis.yml                                        |   4 +-
 README.md                                          | 311 +++++++----
 conftest.py                                        |  18 -
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   6 +
 protobix/__init__.py                               |   5 +
 protobix/datacontainer.py                          | 372 +++++++------
 protobix/sampleprobe.py                            | 419 ++++++++++----
 protobix/senderprotocol.py                         | 542 ++++++++++--------
 protobix/zabbixagentconfig.py                      | 335 +++++++++++
 pytest.ini                                         |   2 +
 requirements-test.txt                              |   3 +
 requirements.txt                                   |   3 -
 setup.py                                           |  33 +-
 tests/ZabbixServerTrapper.py                       | 240 --------
 tests/__init__.py                                  |  20 +
 tests/docker-tests.sh                              |  47 ++
 tests/test_01Params.py                             | 190 -------
 tests/test_01Params_Deprecated.py                  |  74 ---
 tests/test_02Items.py                              | 152 -----
 tests/test_02Items_Deprecated.py                   | 116 ----
 tests/test_03LLD.py                                | 159 ------
 tests/test_03LLD_Deprecated.py                     |  75 ---
 tests/test_04ReadZabbixFile.py                     | 100 ----
 tests/test_datacontainer.py                        | 269 +++++++++
 tests/test_memory_leak.py                          | 127 +++++
 tests/test_sampleprobe.py                          | 615 +++++++++++++++++++++
 tests/test_senderprotocol.py                       | 324 +++++++++++
 tests/test_zabbixagentconfig.py                    | 576 +++++++++++++++++++
 tests/tls_ca/protobix-ca.cert.pem                  |  29 +
 tests/tls_ca/protobix-client.cert.pem              |  32 ++
 tests/tls_ca/protobix-client.key.pem               |  52 ++
 .../tls_ca/protobix-client.not-yet-valid.cert.pem  |  33 ++
 tests/tls_ca/protobix-client.not-yet-valid.key.pem |  52 ++
 tests/tls_ca/protobix-client.revoked.cert.pem      |  32 ++
 tests/tls_ca/protobix-client.revoked.key.pem       |  52 ++
 tests/tls_ca/protobix-zabbix-server.cert.pem       |  32 ++
 tests/tls_ca/protobix-zabbix-server.key.pem        |  52 ++
 tests/tls_ca/protobix.crl                          |  16 +
 tests/tls_ca/rogue-protobix-ca.cert.pem            |  36 ++
 tests/tls_ca/rogue-protobix-client.cert.pem        |  36 ++
 tests/tls_ca/rogue-protobix-client.key.pem         |  52 ++
 .../rogue-protobix-client.not-yet-valid.cert.pem   |  33 ++
 .../rogue-protobix-client.not-yet-valid.key.pem    |  52 ++
 .../tls_ca/rogue-protobix-client.revoked.cert.pem  |  32 ++
 tests/tls_ca/rogue-protobix-client.revoked.key.pem |  52 ++
 tests/tls_ca/rogue-protobix.crl                    |  20 +
 tests/tls_ca/rogue-zabbix-server.cert.pem          |  32 ++
 tests/tls_ca/rogue-zabbix-server.key.pem           |  52 ++
 tests/zabbix/zabbix_server.conf                    |  31 ++
 tests/zabbix/zabbix_server_mysql.sql               |  49 ++
 tests/zabbix/zabbix_server_sqlite3.sql             |   3 +
 tests/zabbix_agentd.conf                           | 240 --------
 54 files changed, 4243 insertions(+), 2015 deletions(-)
 delete mode 100644 conftest.py
 mode change 100644 => 100755 protobix/sampleprobe.py
 create mode 100644 protobix/zabbixagentconfig.py
 create mode 100644 pytest.ini
 create mode 100644 requirements-test.txt
 delete mode 100644 tests/ZabbixServerTrapper.py
 create mode 100644 tests/__init__.py
 create mode 100755 tests/docker-tests.sh
 delete mode 100644 tests/test_01Params.py
 delete mode 100644 tests/test_01Params_Deprecated.py
 delete mode 100644 tests/test_02Items.py
 delete mode 100644 tests/test_02Items_Deprecated.py
 delete mode 100644 tests/test_03LLD.py
 delete mode 100644 tests/test_03LLD_Deprecated.py
 delete mode 100644 tests/test_04ReadZabbixFile.py
 create mode 100644 tests/test_datacontainer.py
 create mode 100644 tests/test_memory_leak.py
 create mode 100644 tests/test_sampleprobe.py
 create mode 100644 tests/test_senderprotocol.py
 create mode 100644 tests/test_zabbixagentconfig.py
 create mode 100644 tests/tls_ca/protobix-ca.cert.pem
 create mode 100644 tests/tls_ca/protobix-client.cert.pem
 create mode 100644 tests/tls_ca/protobix-client.key.pem
 create mode 100644 tests/tls_ca/protobix-client.not-yet-valid.cert.pem
 create mode 100644 tests/tls_ca/protobix-client.not-yet-valid.key.pem
 create mode 100644 tests/tls_ca/protobix-client.revoked.cert.pem
 create mode 100644 tests/tls_ca/protobix-client.revoked.key.pem
 create mode 100644 tests/tls_ca/protobix-zabbix-server.cert.pem
 create mode 100644 tests/tls_ca/protobix-zabbix-server.key.pem
 create mode 100644 tests/tls_ca/protobix.crl
 create mode 100644 tests/tls_ca/rogue-protobix-ca.cert.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.cert.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.key.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.not-yet-valid.cert.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.not-yet-valid.key.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.revoked.cert.pem
 create mode 100644 tests/tls_ca/rogue-protobix-client.revoked.key.pem
 create mode 100644 tests/tls_ca/rogue-protobix.crl
 create mode 100644 tests/tls_ca/rogue-zabbix-server.cert.pem
 create mode 100644 tests/tls_ca/rogue-zabbix-server.key.pem
 create mode 100644 tests/zabbix/zabbix_server.conf
 create mode 100644 tests/zabbix/zabbix_server_mysql.sql
 create mode 100644 tests/zabbix/zabbix_server_sqlite3.sql
 delete mode 100644 tests/zabbix_agentd.conf

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



More information about the Python-modules-commits mailing list