[Python-modules-commits] [mutagen] branch master updated (b46ee5c -> 92abb2d)
Tristan Seligmann
mithrandi at moszumanska.debian.org
Sun Jul 3 22:27:24 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 b46ee5c Bump Standards-Version to 3.9.8 (no changes).
new e449abf New upstream release.
new 3adfe33 record new upstream branch created by importing mutagen_1.33.1.orig.tar.gz
new d919475 Import mutagen_1.33.1.orig.tar.gz
new b640245 Use the Debian package of the sphinx-rtd theme
new b0ed8c9 Use the system copy of the Python documentation inventory
new 92abb2d merge patched into master
The 6 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 | 10 +-
NEWS | 24 ++
PKG-INFO | 2 +-
debian/.git-dpm | 14 +-
debian/changelog | 6 +
debian/patches/use-rtd-package | 6 +-
debian/patches/use-system-inventory | 28 +-
docs/Makefile | 2 +-
docs/api/ape.rst | 6 +-
docs/api/asf.rst | 13 +-
docs/api/base.rst | 70 +++--
docs/api/flac.rst | 16 +-
docs/api/id3.rst | 7 +-
docs/api/index.rst | 4 +-
docs/api/monkeysaudio.rst | 1 +
docs/api/mp3.rst | 9 +-
docs/api/mp4.rst | 16 +-
docs/api/musepack.rst | 1 +
docs/api/ogg.rst | 6 +-
docs/api/oggflac.rst | 10 +-
docs/api/oggopus.rst | 9 +-
docs/api/oggspeex.rst | 9 +-
docs/api/oggtheora.rst | 9 +-
docs/api/oggvorbis.rst | 9 +-
docs/api/smf.rst | 4 +-
docs/api/trueaudio.rst | 6 +-
docs/api_notes.rst | 85 -------
docs/bugs.rst | 45 ----
docs/conf.py | 12 +-
docs/contact.rst | 4 +-
docs/images/Makefile | 29 +++
docs/images/favicon.ico | Bin 0 -> 34494 bytes
docs/images/logo.png | Bin 9155 -> 0 bytes
docs/index.rst | 35 ++-
docs/man/mid3v2.rst | 6 +-
docs/tutorial.rst | 359 --------------------------
docs/user/apev2.rst | 35 +++
docs/user/classes.rst | 101 ++++++++
docs/user/examples/fileobj-gio.py | 130 ++++++++++
docs/user/examples/fileobj-iface.py | 105 ++++++++
docs/user/filelike.rst | 43 ++++
docs/user/gettingstarted.rst | 90 +++++++
docs/user/id3.rst | 169 +++++++++++++
docs/user/index.rst | 17 ++
docs/user/mp4.rst | 17 ++
docs/user/padding.rst | 43 ++++
docs/user/vcomment.rst | 100 ++++++++
man/mid3v2.1 | 6 +-
mutagen/__init__.py | 4 +-
mutagen/_file.py | 146 +++++++----
mutagen/_tags.py | 61 +++--
mutagen/_util.py | 203 ++++++++++++++-
mutagen/_vorbis.py | 23 +-
mutagen/aac.py | 39 ++-
mutagen/aiff.py | 126 +++++----
mutagen/apev2.py | 140 ++++++----
mutagen/asf/__init__.py | 141 ++++++-----
mutagen/asf/_util.py | 2 +-
mutagen/easyid3.py | 28 +-
mutagen/easymp4.py | 15 +-
mutagen/flac.py | 282 ++++++++++++---------
mutagen/id3/__init__.py | 319 +++++++++++++----------
mutagen/id3/_frames.py | 8 +-
mutagen/id3/_specs.py | 5 +-
mutagen/id3/_util.py | 4 +-
mutagen/m4a.py | 9 +-
mutagen/monkeysaudio.py | 29 ++-
mutagen/mp3.py | 362 --------------------------
mutagen/mp3/__init__.py | 464 ++++++++++++++++++++++++++++++++++
mutagen/{_mp3util.py => mp3/_util.py} | 4 +-
mutagen/mp4/__init__.py | 152 ++++++-----
mutagen/mp4/_atom.py | 3 +
mutagen/musepack.py | 38 ++-
mutagen/ogg.py | 123 +++++----
mutagen/oggflac.py | 52 ++--
mutagen/oggopus.py | 50 +++-
mutagen/oggspeex.py | 58 +++--
mutagen/oggtheora.py | 52 +++-
mutagen/oggvorbis.py | 60 +++--
mutagen/optimfrog.py | 22 +-
mutagen/smf.py | 24 +-
mutagen/trueaudio.py | 44 +++-
mutagen/wavpack.py | 12 +-
setup.py | 26 +-
tests/data/CVE-2007-4619-1.flac | Bin 50904 -> 0 bytes
tests/data/CVE-2007-4619-12.flac | Bin 50904 -> 0 bytes
tests/data/CVE-2007-4619-2.flac | Bin 50904 -> 0 bytes
tests/data/image.jpg | Bin 0 -> 743 bytes
tests/test___init__.py | 298 +++++++++++++++++++++-
tests/test__id3frames.py | 65 ++---
tests/test__id3specs.py | 3 +
tests/test__util.py | 17 +-
tests/test__vorbis.py | 10 +-
tests/test_aiff.py | 2 +-
tests/test_apev2.py | 9 +-
tests/test_asf.py | 5 +-
tests/test_easyid3.py | 56 +++-
tests/test_easymp4.py | 3 +-
tests/test_flac.py | 86 +------
tests/test_id3.py | 13 +-
tests/test_mp3.py | 49 +++-
tests/test_mp4.py | 2 +-
tests/test_ogg.py | 6 +-
tests/test_oggflac.py | 12 +-
tests/test_oggopus.py | 6 +-
tests/test_oggspeex.py | 10 +-
tests/test_oggtheora.py | 12 +-
tests/test_oggvorbis.py | 10 +-
tests/test_tools_mid3v2.py | 31 +++
tests/test_trueaudio.py | 4 +-
tests/test_wavpack.py | 4 +-
tools/mid3v2 | 81 +++++-
112 files changed, 3664 insertions(+), 1988 deletions(-)
delete mode 100644 docs/api_notes.rst
delete mode 100644 docs/bugs.rst
create mode 100644 docs/images/Makefile
create mode 100644 docs/images/favicon.ico
delete mode 100644 docs/images/logo.png
delete mode 100644 docs/tutorial.rst
create mode 100644 docs/user/apev2.rst
create mode 100644 docs/user/classes.rst
create mode 100644 docs/user/examples/fileobj-gio.py
create mode 100644 docs/user/examples/fileobj-iface.py
create mode 100644 docs/user/filelike.rst
create mode 100644 docs/user/gettingstarted.rst
create mode 100644 docs/user/id3.rst
create mode 100644 docs/user/index.rst
create mode 100644 docs/user/mp4.rst
create mode 100644 docs/user/padding.rst
create mode 100644 docs/user/vcomment.rst
delete mode 100644 mutagen/mp3.py
create mode 100644 mutagen/mp3/__init__.py
rename mutagen/{_mp3util.py => mp3/_util.py} (99%)
delete mode 100644 tests/data/CVE-2007-4619-1.flac
delete mode 100644 tests/data/CVE-2007-4619-12.flac
delete mode 100644 tests/data/CVE-2007-4619-2.flac
create mode 100644 tests/data/image.jpg
--
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