[Python-modules-commits] [py-macaroon-bakery] branch upstream updated (79ff284 -> 3d9eaeb)

Colin Watson cjwatson at moszumanska.debian.org
Fri Nov 3 16:17:11 UTC 2017


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

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

      from  79ff284   Import py-macaroon-bakery_0.0.3.orig.tar.gz
       new  3d9eaeb   Import py-macaroon-bakery_0.0.4.orig.tar.gz

The 1 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                                       |   2 +-
 docs/conf.py                                   |   2 +-
 macaroonbakery/__init__.py                     |  95 ++-
 macaroonbakery/authorizer.py                   | 107 +++
 macaroonbakery/bakery.py                       | 148 ++--
 macaroonbakery/checker.py                      | 409 +++++++++++
 macaroonbakery/checkers.py                     |  23 -
 macaroonbakery/checkers/__init__.py            |  50 ++
 macaroonbakery/checkers/auth_context.py        |  58 ++
 macaroonbakery/checkers/caveat.py              | 125 ++++
 macaroonbakery/checkers/checkers.py            | 243 +++++++
 macaroonbakery/checkers/conditions.py          |  17 +
 macaroonbakery/checkers/declared.py            |  82 +++
 macaroonbakery/{ => checkers}/namespace.py     |  72 +-
 macaroonbakery/checkers/operation.py           |  17 +
 macaroonbakery/checkers/time.py                |  18 +
 macaroonbakery/checkers/utils.py               |  13 +
 macaroonbakery/codec.py                        | 148 ++--
 macaroonbakery/discharge.py                    | 210 ++++++
 macaroonbakery/error.py                        |  77 ++
 macaroonbakery/httpbakery/__init__.py          |  18 +-
 macaroonbakery/httpbakery/agent.py             |  11 +-
 macaroonbakery/httpbakery/client.py            |  26 +-
 macaroonbakery/httpbakery/error.py             |  67 ++
 macaroonbakery/httpbakery/keyring.py           |  56 ++
 macaroonbakery/identity.py                     | 126 ++++
 macaroonbakery/{tests => internal}/__init__.py |   0
 macaroonbakery/internal/id.proto               |  14 +
 macaroonbakery/internal/id_pb2.py              | 132 ++++
 macaroonbakery/json_serializer.py              |  75 --
 macaroonbakery/keys.py                         |  92 +++
 macaroonbakery/macaroon.py                     | 440 ++++++-----
 macaroonbakery/oven.py                         | 254 +++++++
 macaroonbakery/store.py                        |  77 ++
 macaroonbakery/tests/__init__.py               |   2 +
 macaroonbakery/tests/common.py                 | 120 +++
 macaroonbakery/tests/test_agent.py             |  13 +-
 macaroonbakery/tests/test_authorizer.py        | 132 ++++
 macaroonbakery/tests/test_checker.py           | 963 +++++++++++++++++++++++++
 macaroonbakery/tests/test_checkers.py          | 356 +++++++++
 macaroonbakery/tests/test_codec.py             | 164 +++--
 macaroonbakery/tests/test_discharge.py         | 445 ++++++++++++
 macaroonbakery/tests/test_discharge_all.py     | 170 +++++
 macaroonbakery/tests/test_keyring.py           | 111 +++
 macaroonbakery/tests/test_macaroon.py          | 230 ++++--
 macaroonbakery/tests/test_namespace.py         |  15 +-
 macaroonbakery/tests/test_oven.py              | 125 ++++
 macaroonbakery/tests/test_store.py             |  21 +
 macaroonbakery/third_party.py                  |  53 ++
 macaroonbakery/utils.py                        |  16 +-
 requirements.txt => macaroonbakery/versions.py |  10 +-
 requirements.txt                               |  11 +-
 setup.py                                       |  22 +-
 tox.ini                                        |   4 +-
 54 files changed, 5679 insertions(+), 608 deletions(-)
 create mode 100644 macaroonbakery/authorizer.py
 create mode 100644 macaroonbakery/checker.py
 delete mode 100644 macaroonbakery/checkers.py
 create mode 100644 macaroonbakery/checkers/__init__.py
 create mode 100644 macaroonbakery/checkers/auth_context.py
 create mode 100644 macaroonbakery/checkers/caveat.py
 create mode 100644 macaroonbakery/checkers/checkers.py
 create mode 100644 macaroonbakery/checkers/conditions.py
 create mode 100644 macaroonbakery/checkers/declared.py
 rename macaroonbakery/{ => checkers}/namespace.py (54%)
 create mode 100644 macaroonbakery/checkers/operation.py
 create mode 100644 macaroonbakery/checkers/time.py
 create mode 100644 macaroonbakery/checkers/utils.py
 create mode 100644 macaroonbakery/discharge.py
 create mode 100644 macaroonbakery/error.py
 create mode 100644 macaroonbakery/httpbakery/error.py
 create mode 100644 macaroonbakery/httpbakery/keyring.py
 create mode 100644 macaroonbakery/identity.py
 copy macaroonbakery/{tests => internal}/__init__.py (100%)
 create mode 100644 macaroonbakery/internal/id.proto
 create mode 100644 macaroonbakery/internal/id_pb2.py
 delete mode 100644 macaroonbakery/json_serializer.py
 create mode 100644 macaroonbakery/keys.py
 create mode 100644 macaroonbakery/oven.py
 create mode 100644 macaroonbakery/store.py
 create mode 100644 macaroonbakery/tests/common.py
 create mode 100644 macaroonbakery/tests/test_authorizer.py
 create mode 100644 macaroonbakery/tests/test_checker.py
 create mode 100644 macaroonbakery/tests/test_checkers.py
 create mode 100644 macaroonbakery/tests/test_discharge.py
 create mode 100644 macaroonbakery/tests/test_discharge_all.py
 create mode 100644 macaroonbakery/tests/test_keyring.py
 create mode 100644 macaroonbakery/tests/test_oven.py
 create mode 100644 macaroonbakery/tests/test_store.py
 create mode 100644 macaroonbakery/third_party.py
 copy requirements.txt => macaroonbakery/versions.py (50%)

-- 
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