From ed0c23d094d211adc434a3f3b67d03f267c013c49b56c4e6eeb55ff211a5c7dd Mon Sep 17 00:00:00 2001 From: Thomas Bechtold Date: Sun, 13 Aug 2017 06:18:35 +0000 Subject: [PATCH 1/2] Accepting request 516581 from home:jengelh:branches:devel:languages:python - Trim author list and redundant license info. Improve summary. Trim trailing whitespace OBS-URL: https://build.opensuse.org/request/show/516581 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-audioread?expand=0&rev=3 --- python-audioread.changes | 25 +++++++++++++++---------- python-audioread.spec | 5 +---- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/python-audioread.changes b/python-audioread.changes index bb55d60..36e66ae 100644 --- a/python-audioread.changes +++ b/python-audioread.changes @@ -1,7 +1,12 @@ +------------------------------------------------------------------- +Sat Aug 12 21:19:28 UTC 2017 - jengelh@inai.de + +- Trim author list and redundant license info. Improve summary. + ------------------------------------------------------------------- Fri Apr 21 17:51:35 UTC 2017 - alarrosa@suse.com -- Use singlespec macros +- Use singlespec macros ------------------------------------------------------------------- Wed Jan 18 12:16:46 UTC 2017 - alarrosa@suse.com @@ -15,7 +20,7 @@ Wed Jan 18 12:16:46 UTC 2017 - alarrosa@suse.com 2.1.3 Avoid some warnings in the GStreamer backend when using modern versions of GLib. We now require at least GLib 2.32. - + 2.1.2 Fix a file descriptor leak when opening and closing many files using GStreamer. @@ -32,30 +37,30 @@ Wed Jan 18 12:16:46 UTC 2017 - alarrosa@suse.com 2.0.0 The GStreamer backend now uses GStreamer 1.x via the new gobject-introspection API (and is compatible with Python 3). - + 1.2.2 When running FFmpeg on Windows, disable its crash dialog. Thanks to jcsaaddupuy. - + 1.2.1 Fix an unhandled exception when opening non-raw audio files (thanks to aostanin). Fix Python 3 compatibility for the raw-file backend. - + 1.2.0 Add support for FFmpeg on Windows (thanks to Jean-Christophe Saad-Dupuy). - + 1.1.0 Add support for Sun/NeXT `Au files`_ via the standard-library ``sunau`` module (thanks to Dan Ellis). - + 1.0.3 Use the rawread (standard-library) backend for .wav files. - + 1.0.2 Send SIGKILL, not SIGTERM, to ffmpeg processes to avoid occasional hangs. - + 1.0.1 When GStreamer fails to report a duration, raise an exception instead of silently setting the duration field to None. - + diff --git a/python-audioread.spec b/python-audioread.spec index bc24205..6236994 100644 --- a/python-audioread.spec +++ b/python-audioread.spec @@ -20,7 +20,7 @@ Name: python-audioread Version: 2.1.4 Release: 0 -Summary: multi-library, cross-platform audio decoding +Summary: Wrapper for audio decoding via selectable backends License: MIT Group: Development/Languages/Python Url: https://github.com/sampsyo/audioread @@ -42,9 +42,6 @@ currently supports: - The standard library wave, aifc, and sunau modules (for uncompressed audio formats). -audioread is by Adrian Sampson. It is made available under the MIT -license. An alternative to this module is decoder.py. - %prep %setup -q -n audioread-%{version} From 9031b39e997812372a518840fa32c9326714a55b29eafc099ca9fef9c74004e4 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 28 Sep 2017 16:06:23 +0000 Subject: [PATCH 2/2] Accepting request 529127 from home:alarrosa:branches:devel:languages:python - Update to 2.1.5 * Properly clean up the file handle when a backend fails to decode a file. * Fix parsing of "N.M" channel counts in the FFmpeg backend. * Avoid a crash in the raw backend when a file uses an unsupported number of bits per sample (namely, 24-bit samples in Python < 3.4). * Add a __version__ value to the package. OBS-URL: https://build.opensuse.org/request/show/529127 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-audioread?expand=0&rev=5 --- audioread-2.1.4.tar.gz | 3 --- audioread-2.1.5.tar.gz | 3 +++ python-audioread.changes | 10 ++++++++++ python-audioread.spec | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) delete mode 100644 audioread-2.1.4.tar.gz create mode 100644 audioread-2.1.5.tar.gz diff --git a/audioread-2.1.4.tar.gz b/audioread-2.1.4.tar.gz deleted file mode 100644 index 9d43908..0000000 --- a/audioread-2.1.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ffee2d2787258c214841853f600c52943baea9ad2303cb3d4b625cde4f08fff -size 15013 diff --git a/audioread-2.1.5.tar.gz b/audioread-2.1.5.tar.gz new file mode 100644 index 0000000..f7522ce --- /dev/null +++ b/audioread-2.1.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c3b118f097c58ba073b7d040c4319eff200756f094295677567e256282d0d7 +size 15615 diff --git a/python-audioread.changes b/python-audioread.changes index 36e66ae..3181d5a 100644 --- a/python-audioread.changes +++ b/python-audioread.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Thu Sep 28 07:21:03 UTC 2017 - alarrosa@suse.com + +- Update to 2.1.5 + * Properly clean up the file handle when a backend fails to decode a file. + * Fix parsing of "N.M" channel counts in the FFmpeg backend. + * Avoid a crash in the raw backend when a file uses an unsupported + number of bits per sample (namely, 24-bit samples in Python < 3.4). + * Add a __version__ value to the package. + ------------------------------------------------------------------- Sat Aug 12 21:19:28 UTC 2017 - jengelh@inai.de diff --git a/python-audioread.spec b/python-audioread.spec index 6236994..06046e6 100644 --- a/python-audioread.spec +++ b/python-audioread.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-audioread -Version: 2.1.4 +Version: 2.1.5 Release: 0 Summary: Wrapper for audio decoding via selectable backends License: MIT