[Python-modules-commits] [python-keepkey] branch master updated (96c8f15 -> da2bb20)

Tristan Seligmann mithrandi at moszumanska.debian.org
Sun Jul 3 22:36:13 UTC 2016


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

mithrandi pushed a change to branch master
in repository python-keepkey.

      from  96c8f15   Fix tag format.
       new  3dbf29c   Import python-keepkey_0.7.3.orig.tar.gz
       new  42da8a1   record new upstream branch created by importing python-keepkey_0.7.3.orig.tar.gz and merge it
       new  da2bb20   New upstream release.

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:
 MANIFEST.in                             |   1 +
 PKG-INFO                                |   2 +-
 README.rst                              |   6 +-
 debian/.git-dpm                         |  14 +-
 debian/changelog                        |   6 +
 keepkey.egg-info/PKG-INFO               |   2 +-
 keepkey.egg-info/SOURCES.txt            |  40 ++-
 keepkey.egg-info/requires.txt           |   4 +-
 keepkeyctl                              |  73 ++--
 keepkeylib/ckd_public.py                |  10 +-
 keepkeylib/client.py                    |  81 ++---
 keepkeylib/debuglink.py                 |  28 +-
 keepkeylib/mapping.py                   |   4 +-
 keepkeylib/qt/pinmatrix.py              |  11 +-
 keepkeylib/tools.py                     |  10 +-
 keepkeylib/transport.py                 |  43 ++-
 keepkeylib/transport_fake.py            |  12 +-
 keepkeylib/transport_hid.py             |  74 ++--
 keepkeylib/transport_pipe.py            |  39 ++-
 keepkeylib/transport_serial.py          |  19 +-
 keepkeylib/transport_socket.py          |  44 +--
 keepkeylib/tx_api.py                    |  64 +++-
 keepkeylib/types_pb2.py                 | 170 +++++++--
 setup.py                                |   4 +-
 tests/common.py                         |  71 ++++
 tests/config.py                         |  51 +++
 tests/run-jenkins.sh                    |  55 +++
 tests/run-separate.sh                   |   5 +
 tests/run.sh                            |   3 +
 tests/test_basic.py                     |  36 ++
 tests/test_bip32_speed.py               |  57 +++
 tests/test_bootloader.py                | 140 ++++++++
 tests/test_debuglink.py                 |  40 +++
 tests/test_ecies.py                     | 134 +++++++
 tests/test_msg_applysettings.py         |  63 ++++
 tests/test_msg_changepin.py             | 212 +++++++++++
 tests/test_msg_cipherkeyvalue.py        |  74 ++++
 tests/test_msg_clearsession.py          |  39 +++
 tests/test_msg_estimatetxsize.py        |  34 ++
 tests/test_msg_getaddress.py            |  44 +++
 tests/test_msg_getaddress_show.py       |  49 +++
 tests/test_msg_getentropy.py            |  34 ++
 tests/test_msg_getpublickey.py          |  28 ++
 tests/test_msg_loaddevice.py            |  88 +++++
 tests/test_msg_ping.py                  |  50 +++
 tests/test_msg_recoverydevice.py        | 158 +++++++++
 tests/test_msg_recoverydevice_cipher.py | 272 +++++++++++++++
 tests/test_msg_resetdevice.py           | 188 ++++++++++
 tests/test_msg_signidentity.py          |  73 ++++
 tests/test_msg_signmessage.py           |  45 +++
 tests/test_msg_signtx.py                | 598 ++++++++++++++++++++++++++++++++
 tests/test_msg_signtx_xfer.py           | 326 +++++++++++++++++
 tests/test_msg_simplesigntx.py          | 360 +++++++++++++++++++
 tests/test_msg_verifymessage.py         | 132 +++++++
 tests/test_msg_wipedevice.py            |  25 ++
 tests/test_multisig.py                  | 224 ++++++++++++
 tests/test_multisig_change.py           | 355 +++++++++++++++++++
 tests/test_op_return.py                 |  92 +++++
 tests/test_protect_call.py              | 121 +++++++
 tests/test_protection_levels.py         | 201 +++++++++++
 tests/test_zerosig.py                   |  88 +++++
 61 files changed, 5045 insertions(+), 281 deletions(-)
 create mode 100644 MANIFEST.in
 create mode 100644 tests/common.py
 create mode 100644 tests/config.py
 create mode 100755 tests/run-jenkins.sh
 create mode 100755 tests/run-separate.sh
 create mode 100755 tests/run.sh
 create mode 100644 tests/test_basic.py
 create mode 100644 tests/test_bip32_speed.py
 create mode 100644 tests/test_bootloader.py
 create mode 100644 tests/test_debuglink.py
 create mode 100644 tests/test_ecies.py
 create mode 100644 tests/test_msg_applysettings.py
 create mode 100644 tests/test_msg_changepin.py
 create mode 100644 tests/test_msg_cipherkeyvalue.py
 create mode 100644 tests/test_msg_clearsession.py
 create mode 100644 tests/test_msg_estimatetxsize.py
 create mode 100644 tests/test_msg_getaddress.py
 create mode 100644 tests/test_msg_getaddress_show.py
 create mode 100644 tests/test_msg_getentropy.py
 create mode 100644 tests/test_msg_getpublickey.py
 create mode 100644 tests/test_msg_loaddevice.py
 create mode 100644 tests/test_msg_ping.py
 create mode 100644 tests/test_msg_recoverydevice.py
 create mode 100644 tests/test_msg_recoverydevice_cipher.py
 create mode 100644 tests/test_msg_resetdevice.py
 create mode 100644 tests/test_msg_signidentity.py
 create mode 100644 tests/test_msg_signmessage.py
 create mode 100644 tests/test_msg_signtx.py
 create mode 100644 tests/test_msg_signtx_xfer.py
 create mode 100644 tests/test_msg_simplesigntx.py
 create mode 100644 tests/test_msg_verifymessage.py
 create mode 100644 tests/test_msg_wipedevice.py
 create mode 100644 tests/test_multisig.py
 create mode 100644 tests/test_multisig_change.py
 create mode 100644 tests/test_op_return.py
 create mode 100644 tests/test_protect_call.py
 create mode 100644 tests/test_protection_levels.py
 create mode 100644 tests/test_zerosig.py

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



More information about the Python-modules-commits mailing list