[Python-modules-commits] [py-macaroon-bakery] branch master updated (efd539f -> fa9995f)

Colin Watson cjwatson at moszumanska.debian.org
Mon Feb 5 16:05:35 UTC 2018


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

cjwatson pushed a change to branch master
in repository py-macaroon-bakery.

      from  efd539f   releasing package py-macaroon-bakery version 0.0.6-1
       new  9e44030   Import py-macaroon-bakery_1.1.0.orig.tar.gz
       new  00ab469   Isolate client tests from any HTTP proxy
       new  533dfe1   New upstream release (1.1.0)
       new  fa9995f   releasing package py-macaroon-bakery version 1.1.0-1

The 4 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                                           |  15 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   6 +
 debian/patches/isolate-from-proxy.patch            |  38 ++++-
 docs/conf.py                                       |   2 +-
 macaroonbakery/__init__.py                         | 137 -----------------
 macaroonbakery/{utils.py => _utils/__init__.py}    |  39 +++--
 macaroonbakery/{ => bakery}/__init__.py            |  32 ++--
 .../{authorizer.py => bakery/_authorizer.py}       |   5 +-
 macaroonbakery/{bakery.py => bakery/_bakery.py}    |   8 +-
 macaroonbakery/{checker.py => bakery/_checker.py}  |  36 +++--
 macaroonbakery/{codec.py => bakery/_codec.py}      |  66 ++++----
 .../{discharge.py => bakery/_discharge.py}         |  48 ++++--
 macaroonbakery/{error.py => bakery/_error.py}      |   0
 .../{identity.py => bakery/_identity.py}           |   4 +-
 .../{internal => bakery/_internal}/__init__.py     |   0
 .../{internal => bakery/_internal}/id.proto        |   0
 .../{internal => bakery/_internal}/id_pb2.py       |   0
 macaroonbakery/{keys.py => bakery/_keys.py}        |  20 ++-
 .../{macaroon.py => bakery/_macaroon.py}           |  70 +++++----
 macaroonbakery/{oven.py => bakery/_oven.py}        |  57 ++++---
 macaroonbakery/{store.py => bakery/_store.py}      |   0
 .../{third_party.py => bakery/_third_party.py}     |   0
 .../{versions.py => bakery/_versions.py}           |   0
 macaroonbakery/checkers/__init__.py                |  18 +--
 .../checkers/{auth_context.py => _auth_context.py} |   0
 macaroonbakery/checkers/{caveat.py => _caveat.py}  |  11 +-
 .../checkers/{checkers.py => _checkers.py}         |  23 +--
 .../checkers/{conditions.py => _conditions.py}     |   0
 .../checkers/{declared.py => _declared.py}         |  12 +-
 .../checkers/{namespace.py => _namespace.py}       |   4 +-
 .../checkers/{operation.py => _operation.py}       |   2 +-
 macaroonbakery/checkers/{time.py => _time.py}      |  14 +-
 macaroonbakery/checkers/{utils.py => _utils.py}    |   0
 macaroonbakery/httpbakery/__init__.py              |  12 +-
 .../httpbakery/{browser.py => _browser.py}         |  17 +-
 .../httpbakery/{client.py => _client.py}           | 111 +++++++------
 .../httpbakery/{discharge.py => _discharge.py}     |   7 +-
 macaroonbakery/httpbakery/{error.py => _error.py}  |  10 +-
 .../httpbakery/{interactor.py => _interactor.py}   |   9 +-
 .../httpbakery/{keyring.py => _keyring.py}         |   6 +-
 macaroonbakery/httpbakery/agent/__init__.py        |   8 +-
 .../httpbakery/agent/{agent.py => _agent.py}       | 115 +++++++-------
 macaroonbakery/tests/common.py                     |   5 +-
 macaroonbakery/tests/test_agent.py                 | 171 ++++++++-------------
 macaroonbakery/tests/test_authorizer.py            |   2 +-
 macaroonbakery/tests/test_bakery.py                |  93 +++++++++--
 macaroonbakery/tests/test_checker.py               |  34 ++--
 macaroonbakery/tests/test_checkers.py              |   7 +-
 macaroonbakery/tests/test_client.py                | 130 +++++++++++++---
 macaroonbakery/tests/test_codec.py                 |   7 +-
 macaroonbakery/tests/test_discharge.py             |   5 +-
 macaroonbakery/tests/test_discharge_all.py         |   5 +-
 macaroonbakery/tests/test_keyring.py               |  16 +-
 macaroonbakery/tests/test_macaroon.py              |  12 +-
 macaroonbakery/tests/test_oven.py                  |   8 +-
 macaroonbakery/tests/test_store.py                 |   2 +-
 macaroonbakery/tests/test_time.py                  |  19 ++-
 macaroonbakery/tests/test_utils.py                 |  74 +++++++++
 setup.py                                           |   2 +-
 tox.ini                                            |   2 +-
 61 files changed, 882 insertions(+), 688 deletions(-)
 rename macaroonbakery/{utils.py => _utils/__init__.py} (80%)
 copy macaroonbakery/{ => bakery}/__init__.py (81%)
 rename macaroonbakery/{authorizer.py => bakery/_authorizer.py} (97%)
 rename macaroonbakery/{bakery.py => bakery/_bakery.py} (94%)
 rename macaroonbakery/{checker.py => bakery/_checker.py} (95%)
 rename macaroonbakery/{codec.py => bakery/_codec.py} (85%)
 rename macaroonbakery/{discharge.py => bakery/_discharge.py} (87%)
 rename macaroonbakery/{error.py => bakery/_error.py} (100%)
 rename macaroonbakery/{identity.py => bakery/_identity.py} (97%)
 rename macaroonbakery/{internal => bakery/_internal}/__init__.py (100%)
 rename macaroonbakery/{internal => bakery/_internal}/id.proto (100%)
 rename macaroonbakery/{internal => bakery/_internal}/id_pb2.py (100%)
 rename macaroonbakery/{keys.py => bakery/_keys.py} (78%)
 rename macaroonbakery/{macaroon.py => bakery/_macaroon.py} (92%)
 rename macaroonbakery/{oven.py => bakery/_oven.py} (90%)
 rename macaroonbakery/{store.py => bakery/_store.py} (100%)
 rename macaroonbakery/{third_party.py => bakery/_third_party.py} (100%)
 rename macaroonbakery/{versions.py => bakery/_versions.py} (100%)
 rename macaroonbakery/checkers/{auth_context.py => _auth_context.py} (100%)
 rename macaroonbakery/checkers/{caveat.py => _caveat.py} (96%)
 rename macaroonbakery/checkers/{checkers.py => _checkers.py} (94%)
 rename macaroonbakery/checkers/{conditions.py => _conditions.py} (100%)
 rename macaroonbakery/checkers/{declared.py => _declared.py} (89%)
 rename macaroonbakery/checkers/{namespace.py => _namespace.py} (97%)
 rename macaroonbakery/checkers/{operation.py => _operation.py} (90%)
 rename macaroonbakery/checkers/{time.py => _time.py} (86%)
 rename macaroonbakery/checkers/{utils.py => _utils.py} (100%)
 rename macaroonbakery/httpbakery/{browser.py => _browser.py} (93%)
 rename macaroonbakery/httpbakery/{client.py => _client.py} (84%)
 rename macaroonbakery/httpbakery/{discharge.py => _discharge.py} (84%)
 rename macaroonbakery/httpbakery/{error.py => _error.py} (96%)
 rename macaroonbakery/httpbakery/{interactor.py => _interactor.py} (94%)
 rename macaroonbakery/httpbakery/{keyring.py => _keyring.py} (95%)
 rename macaroonbakery/httpbakery/agent/{agent.py => _agent.py} (65%)
 create mode 100644 macaroonbakery/tests/test_utils.py

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



More information about the Python-modules-commits mailing list