Hello community,
here is the log from the commit of package python-audioread for
openSUSE:Factory checked in at 2019-07-31 14:36:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-audioread (Old)
and /work/SRC/openSUSE:Factory/.python-audioread.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-audioread"
Wed Jul 31 14:36:42 2019 rev:6 rq:720014 version:2.1.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-audioread/python-audioread.changes
2019-02-26 22:21:30.814085055 +0100
+++
/work/SRC/openSUSE:Factory/.python-audioread.new.4126/python-audioread.changes
2019-07-31 14:36:43.901854998 +0200
@@ -1,0 +2,18 @@
+Wed Jul 31 08:47:01 UTC 2019 - [email protected]
+
+- version update to 2.1.8
+ * Fix an unhandled ``OSError`` when FFmpeg is not installed.
+ * Properly close some filehandles in the FFmpeg backend (thanks to
+ @RyanMarcus and @ssssam).
+ * The maddec backend now always produces bytes objects, like the other
+ backends (thanks to @ssssam).
+ * Resolve an audio data memory leak in the GStreamer backend (thanks again to
+ @ssssam).
+ * You can now optionally specify which specific backends ``audio_open``
should
+ try (thanks once again to @ssssam).
+- deleted patches
+ - 0001-maddec-Ensure-that-the-audio-blocks-are-of-type-bytes.patch
(upstreamed)
+- deleted sources
+ - LICENSE (not needed)
+
+-------------------------------------------------------------------
Old:
----
0001-maddec-Ensure-that-the-audio-blocks-are-of-type-bytes.patch
LICENSE
audioread-2.1.6.tar.gz
New:
----
v2.1.8.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-audioread.spec ++++++
--- /var/tmp/diff_new_pack.mOSGsz/_old 2019-07-31 14:36:44.733854527 +0200
+++ /var/tmp/diff_new_pack.mOSGsz/_new 2019-07-31 14:36:44.737854526 +0200
@@ -18,18 +18,18 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-audioread
-Version: 2.1.6
+Version: 2.1.8
Release: 0
Summary: Wrapper for audio decoding via selectable backends
License: MIT
Group: Development/Languages/Python
Url: https://github.com/sampsyo/audioread
-Source0:
https://files.pythonhosted.org/packages/source/a/audioread/audioread-%{version}.tar.gz
-Source10:
https://raw.githubusercontent.com/beetbox/audioread/master/LICENSE
-# PATCH-FIX-UPSTREAM
-Patch0:
0001-maddec-Ensure-that-the-audio-blocks-are-of-type-bytes.patch
+Source0: https://github.com/beetbox/audioread/archive/v%{version}.tar.gz
BuildRequires: %{python_module base}
+BuildRequires: %{python_module pytest-runner}
+BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
+BuildRequires: ffmpeg
BuildRequires: python-rpm-macros
BuildArch: noarch
Recommends: ffmpeg
@@ -51,8 +51,6 @@
%prep
%setup -q -n audioread-%{version}
-%patch0 -p1
-cp %{SOURCE10} .
%build
%python_build
@@ -60,6 +58,9 @@
%install
%python_install
+%check
+%pytest
+
%files %{python_files}
%doc README.rst
%license LICENSE