[Python-modules-commits] [kitchen] branch master updated (c69d49d -> 36cc9b6)

Sergio Durigan Junior sergiodj-guest at moszumanska.debian.org
Mon Aug 28 04:53:16 UTC 2017


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

sergiodj-guest pushed a change to branch master
in repository kitchen.

      from  c69d49d   Update changelog for 1.2.4-3 release
       new  61cfac4   New upstream version 1.2.5
       new  3865f2a   Updated version 1.2.5 from 'upstream/1.2.5'
       new  147eafb   Marking python-kitchen-doc as Multi-Arch: foreign.
       new  9a5c387   Bump standards to 4.1.0.
       new  8a7536c   Remove patch to update unicode table from d/path (incorporated by upstream).
       new  d49d6a2   Updating d/patches to reflect new version.
       new  36cc9b6   Update changelog for 1.2.5-1 release

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:
 MANIFEST.in                                        |    3 +-
 NEWS.rst                                           |   11 +-
 debian/changelog                                   |   10 +
 debian/control                                     |    4 +-
 debian/patches/fix_typos                           |   86 +-
 debian/patches/remove_compat_layers                |  707 +++++-----
 debian/patches/series                              |    1 -
 .../update-combined-table-display-py3.patch        |  165 ---
 kitchen2/docs/api-overview.rst                     |    3 +
 kitchen2/docs/api-pycompat24.rst                   |   34 +
 kitchen2/docs/api-pycompat25.rst                   |    8 +
 kitchen2/docs/api-pycompat27.rst                   |   35 +
 kitchen2/docs/designing-unicode-apis.rst           |    2 +-
 kitchen2/docs/hacking.rst                          |    2 +-
 kitchen2/docs/unicode-frustrations.rst             |    6 +-
 kitchen2/kitchen/__init__.py                       |    2 +-
 kitchen2/kitchen/exceptions.py                     |    4 +-
 kitchen2/kitchen/i18n/__init__.py                  |   14 +-
 kitchen2/kitchen/pycompat24/base64/__init__.py     |    8 +-
 kitchen2/kitchen/pycompat24/base64/_base64.py      |    2 +-
 kitchen2/kitchen/pycompat24/sets/__init__.py       |    6 +-
 .../kitchen/pycompat25/collections/_defaultdict.py |   20 +-
 kitchen2/kitchen/pycompat27/subprocess/__init__.py |    6 +-
 .../kitchen/pycompat27/subprocess/_subprocess.py   |    6 +-
 kitchen2/kitchen/text/converters.py                |    9 +-
 kitchen2/kitchen/text/display.py                   |  206 +--
 kitchen2/kitchen/text/exceptions.py                |    4 +-
 kitchen2/kitchen/text/misc.py                      |    3 +
 kitchen2/kitchen/text/utf8.py                      |    6 +-
 kitchen2/tests/base_classes.py                     |    6 +-
 kitchen2/tests/subprocessdata/sigchild_ignore.py   |   11 +
 kitchen2/tests/test__all__.py                      |    6 +-
 kitchen2/tests/test_base64.py                      |  190 +++
 kitchen2/tests/test_collections.py                 |    3 +
 kitchen2/tests/test_defaultdict.py                 |  180 +++
 kitchen2/tests/test_deprecation.py                 |    2 -
 kitchen2/tests/test_i18n.py                        |    2 -
 kitchen2/tests/test_pycompat.py                    |   25 +
 kitchen2/tests/test_pycompat24.py                  |  109 ++
 kitchen2/tests/test_subprocess.py                  | 1467 ++++++++++++++++++++
 kitchen2/tests/test_text_display.py                |    3 +-
 kitchen2/tests/test_text_misc.py                   |    2 +-
 kitchen3/docs/api-overview.rst                     |    3 +
 kitchen3/docs/api-pycompat24.rst                   |   34 +
 kitchen3/docs/api-pycompat25.rst                   |    8 +
 kitchen3/docs/api-pycompat27.rst                   |   35 +
 kitchen3/kitchen/__init__.py                       |    2 +-
 kitchen3/kitchen/exceptions.py                     |    4 +-
 kitchen3/kitchen/i18n/__init__.py                  |    8 +-
 kitchen3/kitchen/pycompat24/__init__.py            |    2 +-
 kitchen3/kitchen/pycompat24/sets/__init__.py       |    6 +-
 kitchen3/kitchen/pycompat24/subprocess.py          |    2 +-
 kitchen3/kitchen/pycompat27/subprocess/__init__.py |    8 +-
 kitchen3/kitchen/text/converters.py                |    2 +-
 kitchen3/kitchen/text/display.py                   |  247 ++--
 kitchen3/kitchen/text/exceptions.py                |    4 +-
 kitchen3/kitchen/text/utf8.py                      |    6 +-
 kitchen3/tests/base_classes.py                     |    6 +-
 kitchen3/tests/subprocessdata/sigchild_ignore.py   |   11 +
 kitchen3/tests/test__all__.py                      |    6 +-
 kitchen3/tests/test_collections.py                 |    3 +
 kitchen3/tests/test_deprecation.py                 |    2 -
 kitchen3/tests/test_deprecation_py3.py             |   65 +
 kitchen3/tests/test_pycompat.py                    |   25 +
 kitchen3/tests/test_text_display.py                |    3 +-
 kitchen3/tests/test_text_misc.py                   |    2 +-
 releaseutils.py                                    |    4 +-
 setup.py                                           |   16 +-
 68 files changed, 3007 insertions(+), 886 deletions(-)
 delete mode 100644 debian/patches/update-combined-table-display-py3.patch
 create mode 100644 kitchen2/docs/api-pycompat24.rst
 create mode 100644 kitchen2/docs/api-pycompat25.rst
 create mode 100644 kitchen2/docs/api-pycompat27.rst
 create mode 100644 kitchen2/tests/subprocessdata/sigchild_ignore.py
 create mode 100644 kitchen2/tests/test_base64.py
 create mode 100644 kitchen2/tests/test_defaultdict.py
 create mode 100644 kitchen2/tests/test_pycompat.py
 create mode 100644 kitchen2/tests/test_pycompat24.py
 create mode 100644 kitchen2/tests/test_subprocess.py
 create mode 100644 kitchen3/docs/api-pycompat24.rst
 create mode 100644 kitchen3/docs/api-pycompat25.rst
 create mode 100644 kitchen3/docs/api-pycompat27.rst
 create mode 100644 kitchen3/tests/subprocessdata/sigchild_ignore.py
 create mode 100644 kitchen3/tests/test_deprecation_py3.py
 create mode 100644 kitchen3/tests/test_pycompat.py

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



More information about the Python-modules-commits mailing list