14
0

Accepting request 452417 from home:alarrosa:branches:devel:languages:python

- update to version 1.36.2:
  * ID3: Always write little endian utf-16 with BOM.
    Fixes tests on big endian machines :pr:`289`
- update to version 1.36.1:
  * Support GAE runtime 🐛`286`
  * FLAC: Fix crash when loading files with zero samples 🐛`287`
  * MP3: Handle broken lame tags written by older lame versions
- update to version 1.36:
  * ID3: Ignore trailing empty values for v2.3 text frames 🐛`276`
  * ID3: Write large APIC frames last 🐛`278`
  * EasyID3: support saving as v2.3 🐛`188`
  * FLAC: Add StreamInfo.bitrate 🐛`279`
  * mid3cp: Add ``--merge`` option 🐛`277`
  * MP4: Allow loading files without audio tracks 🐛`272`
- update to version 1.35.1:
  * Revert back to distutils 🐛`273`
- update to version 1.35:
  * Tests: Require pytest
  * Tools: Install .exe launchers on Windows
  * setup.py: Require setuptools
  * ID3:
    * Fix loading files with CRM frames 🐛`239`
    * Fix loading AENC, LINK, GRID frames with no payload
    * Merge duplicate text frames with same key on load 🐛`172`
    * Allow parsing of duplicate APIC frames 🐛`172`
    * Parse utf-16 text fields with missing BOM 🐛`267`
    * Increase max resyncs for the mpeg frame search 🐛`268`
- Add fix-tests-tools-names.diff. This fixes the tests to run
  successfully since they try to extract the module name from the tool
  name, but we changed the tools names so they can be co-installed

OBS-URL: https://build.opensuse.org/request/show/452417
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mutagen?expand=0&rev=24
This commit is contained in:
2017-01-26 09:13:45 +00:00
committed by Git OBS Bridge
parent 64b764d948
commit 30a3cea467
6 changed files with 62 additions and 39 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Wed Jan 25 14:31:30 UTC 2017 - alarrosa@suse.com
- update to version 1.36.2:
* ID3: Always write little endian utf-16 with BOM.
Fixes tests on big endian machines :pr:`289`
- update to version 1.36.1:
* Support GAE runtime :bug:`286`
* FLAC: Fix crash when loading files with zero samples :bug:`287`
* MP3: Handle broken lame tags written by older lame versions
- update to version 1.36:
* ID3: Ignore trailing empty values for v2.3 text frames :bug:`276`
* ID3: Write large APIC frames last :bug:`278`
* EasyID3: support saving as v2.3 :bug:`188`
* FLAC: Add StreamInfo.bitrate :bug:`279`
* mid3cp: Add ``--merge`` option :bug:`277`
* MP4: Allow loading files without audio tracks :bug:`272`
- update to version 1.35.1:
* Revert back to distutils :bug:`273`
- update to version 1.35:
* Tests: Require pytest
* Tools: Install .exe launchers on Windows
* setup.py: Require setuptools
* ID3:
* Fix loading files with CRM frames :bug:`239`
* Fix loading AENC, LINK, GRID frames with no payload
* Merge duplicate text frames with same key on load :bug:`172`
* Allow parsing of duplicate APIC frames :bug:`172`
* Parse utf-16 text fields with missing BOM :bug:`267`
* Increase max resyncs for the mpeg frame search :bug:`268`
- Add fix-tests-tools-names.diff. This fixes the tests to run
successfully since they try to extract the module name from the tool
name, but we changed the tools names so they can be co-installed
with the python2 version of the tools, so we have to remove the
"-3" suffix before importing the modules.
- Fix update-alternatives execution as mutagen-inspect and mutagen-pony
binaries had manpage suffixes so alternative links were not created.
- Drop fix_SynchronizedTextSpec_test_on_BE.patch (upstream included it).
-------------------------------------------------------------------
Mon Aug 15 14:51:56 UTC 2016 - toddrme2178@gmail.com