[Python-modules-commits] [mutagen] branch master updated (30d2b24 -> 07b5e8e)

Tristan Seligmann mithrandi at moszumanska.debian.org
Fri Dec 16 09:33:40 UTC 2016


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

mithrandi pushed a change to branch master
in repository mutagen.

      from  30d2b24   Restore trailing slash.
       new  174be6f   New upstream release.
       new  60f24d9   record new upstream branch created by importing mutagen_1.35.1.orig.tar.gz
       new  c4d9083   Import mutagen_1.35.1.orig.tar.gz
       new  e1849a4   Use the Debian package of the sphinx-rtd theme
       new  015e068   Use the system copy of the Python documentation inventory
       new  969f927   merge patched into master
       new  07b5e8e   Build-depend on python-pytest.

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                                        |   2 +
 NEWS                                               |  22 +
 PKG-INFO                                           |  25 +-
 README.rst                                         |  15 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   7 +
 debian/control                                     |  39 +-
 debian/patches/use-rtd-package                     |   6 +-
 debian/patches/use-system-inventory                |   6 +-
 docs/conf.py                                       |   4 +-
 docs/id3_frames_gen.py                             |  10 +-
 docs/index.rst                                     |  15 +-
 mutagen/__init__.py                                |   2 +-
 mutagen/_senf/README.rst                           |   1 +
 mutagen/_senf/__init__.py                          |  82 ++++
 mutagen/_senf/_argv.py                             |  46 ++
 mutagen/_senf/_compat.py                           |  52 +++
 mutagen/_senf/_environ.py                          | 238 +++++++++++
 mutagen/_senf/_fsnative.py                         | 420 +++++++++++++++++++
 mutagen/_senf/_print.py                            | 352 ++++++++++++++++
 mutagen/_senf/_stdlib.py                           | 146 +++++++
 mutagen/_senf/_temp.py                             |  90 ++++
 mutagen/_senf/_winansi.py                          | 311 ++++++++++++++
 mutagen/_senf/_winapi.py                           | 183 ++++++++
 {tests/quality => mutagen/_tools}/__init__.py      |   4 +-
 mutagen/_tools/_util.py                            |  94 +++++
 tools/mid3cp => mutagen/_tools/mid3cp.py           |  17 +-
 tools/mid3iconv => mutagen/_tools/mid3iconv.py     |  19 +-
 tools/mid3v2 => mutagen/_tools/mid3v2.py           | 100 +++--
 tools/moggsplit => mutagen/_tools/moggsplit.py     |  16 +-
 .../_tools/mutagen_inspect.py                      |  20 +-
 .../mutagen-pony => mutagen/_tools/mutagen_pony.py |  13 +-
 mutagen/_toolsutil.py                              | 231 ----------
 mutagen/_util.py                                   |   2 +-
 mutagen/asf/__init__.py                            |   5 +-
 mutagen/asf/_util.py                               |   2 +-
 mutagen/id3/_frames.py                             |  66 +--
 mutagen/id3/_specs.py                              |  37 +-
 mutagen/id3/_tags.py                               |  61 ++-
 mutagen/mp3/__init__.py                            |  10 +-
 mutagen/mp4/__init__.py                            |   1 -
 setup.py                                           |  55 ++-
 tests/__init__.py                                  | 130 +-----
 tests/quality/test_pep8.py                         |  46 +-
 tests/quality/test_pyflakes.py                     |  18 +-
 tests/test___init__.py                             |  14 +-
 tests/test__id3frames.py                           |  40 +-
 tests/test_asf.py                                  |  10 +-
 tests/test_encoding.py                             |   2 +-
 tests/test_id3.py                                  |  43 +-
 tests/test_mp4.py                                  |   2 +-
 tests/test_tools.py                                |  22 +-
 tests/test_tools_mid3cp.py                         |   8 +-
 tests/test_tools_mid3iconv.py                      |   2 +-
 tests/test_tools_mid3v2.py                         |   4 +-
 tests/test_tools_moggsplit.py                      |   2 +-
 tests/test_tools_mutagen_inspect.py                |   2 +-
 tests/test_tools_mutagen_pony.py                   |   4 +-
 tests/{test__toolsutil.py => test_tools_util.py}   |  12 +-
 tools/mid3cp                                       | 116 +-----
 tools/mid3iconv                                    | 159 +------
 tools/mid3v2                                       | 463 +--------------------
 tools/moggsplit                                    |  66 +--
 tools/mutagen-inspect                              |  36 +-
 tools/mutagen-pony                                 | 107 +----
 65 files changed, 2530 insertions(+), 1619 deletions(-)
 create mode 100644 mutagen/_senf/README.rst
 create mode 100644 mutagen/_senf/__init__.py
 create mode 100644 mutagen/_senf/_argv.py
 create mode 100644 mutagen/_senf/_compat.py
 create mode 100644 mutagen/_senf/_environ.py
 create mode 100644 mutagen/_senf/_fsnative.py
 create mode 100644 mutagen/_senf/_print.py
 create mode 100644 mutagen/_senf/_stdlib.py
 create mode 100644 mutagen/_senf/_temp.py
 create mode 100644 mutagen/_senf/_winansi.py
 create mode 100644 mutagen/_senf/_winapi.py
 copy {tests/quality => mutagen/_tools}/__init__.py (67%)
 create mode 100644 mutagen/_tools/_util.py
 copy tools/mid3cp => mutagen/_tools/mid3cp.py (92%)
 mode change 100755 => 100644
 copy tools/mid3iconv => mutagen/_tools/mid3iconv.py (93%)
 mode change 100755 => 100644
 copy tools/mid3v2 => mutagen/_tools/mid3v2.py (89%)
 mode change 100755 => 100644
 copy tools/moggsplit => mutagen/_tools/moggsplit.py (91%)
 mode change 100755 => 100644
 copy tools/mutagen-inspect => mutagen/_tools/mutagen_inspect.py (79%)
 mode change 100755 => 100644
 copy tools/mutagen-pony => mutagen/_tools/mutagen_pony.py (92%)
 mode change 100755 => 100644
 delete mode 100644 mutagen/_toolsutil.py
 rename tests/{test__toolsutil.py => test_tools_util.py} (85%)

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



More information about the Python-modules-commits mailing list