forked from pool/python-audioread
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 4299f8a90f | |||
| 1262ff6dbb | |||
| e94f46a63e | |||
| e9d147619c | |||
| 05b57c0633 | |||
| d95bc77ad1 | |||
| 6cb8df143f | |||
| f8490a6190 |
@@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 17 10:09:53 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.1.0
|
||||||
|
* add support for os.PathLike filenames in macca.py
|
||||||
|
* Version bump/changelog: 3.0.2
|
||||||
|
* include license in pyproject.toml
|
||||||
|
* Modernize package setup
|
||||||
|
* Add release workflow
|
||||||
|
* Increment version to 3.1.0a1
|
||||||
|
* Try using proper pypi repo
|
||||||
|
* Remove legacy url
|
||||||
|
* Add standard-aifc and standard-sunau as dependencies for python
|
||||||
|
3.13 and above. Python core removed these modules in 3.13 as part
|
||||||
|
of PEP-594. The standard-* modules are forks of the modules that
|
||||||
|
had previously been in the python core. Fixes #144
|
||||||
|
* run tests on python 3.12 and 3.13
|
||||||
|
* Increment version to 3.1.0
|
||||||
|
- Drop support-python-313.patch, merged upstream
|
||||||
|
- Update BuildRequires from pyproject.toml
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 12 03:15:22 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Drop patch no-removed-formats.patch, it was a terrible idea.
|
||||||
|
- Add patch support-python-313.patch:
|
||||||
|
* Add two external module depends for Python 3.13+.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 26 04:12:39 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Add patch no-removed-formats.patch:
|
||||||
|
* Only use the rawread backend for Python 3.12 and below.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 9 15:29:15 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Use the distro default ffmpeg version:
|
||||||
|
+ BuildRequire %ffmpeg_pref instead of ffmpeg-5.
|
||||||
|
+ BuildConflict %{ffmpeg_pref}-mini-libs: we need to have the
|
||||||
|
decoders available in order to pass the test suite.
|
||||||
|
+ Recommend /usr/bin/ffmpeg instead of ffmpeg-5: the python
|
||||||
|
library interacts via the ffmpeg binary.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 2 23:44:17 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
Tue Apr 2 23:44:17 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -15,24 +15,31 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-audioread
|
Name: python-audioread
|
||||||
Version: 3.0.1
|
Version: 3.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Wrapper for audio decoding via selectable backends
|
Summary: Wrapper for audio decoding via selectable backends
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/beetbox/audioread
|
URL: https://github.com/beetbox/audioread
|
||||||
Source0: https://github.com/beetbox/audioread/archive/v%{version}.tar.gz
|
Source0: https://github.com/beetbox/audioread/archive/v%{version}.tar.gz
|
||||||
|
BuildRequires: %{ffmpeg_pref}
|
||||||
BuildRequires: %{python_module base}
|
BuildRequires: %{python_module base}
|
||||||
BuildRequires: %{python_module flit-core}
|
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module poetry-core}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module standard-aifc if %python-base >= 3.13}
|
||||||
|
BuildRequires: %{python_module standard-sunau if %python-base >= 3.13}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: ffmpeg-5
|
BuildConflicts: %{ffmpeg_pref}-mini-libs
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Recommends: ffmpeg-5
|
%if 0%{?python_version_nodots} >= 313
|
||||||
|
Requires: python-standard-aifc
|
||||||
|
Requires: python-standard-sunau
|
||||||
|
%endif
|
||||||
|
Recommends: /usr/bin/ffmpeg
|
||||||
Recommends: python-gobject
|
Recommends: python-gobject
|
||||||
Recommends: python-pymad
|
Recommends: python-pymad
|
||||||
Recommends: typelib(Gst) = 1.0
|
Recommends: typelib(Gst) = 1.0
|
||||||
@@ -50,7 +57,7 @@ currently supports:
|
|||||||
uncompressed audio formats).
|
uncompressed audio formats).
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n audioread-%{version}
|
%autosetup -p1 -n audioread-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:98367fc46c436922e5c5b6aae59606c60c7ced36a0336cb8845fe85d0b2de383
|
|
||||||
size 112064
|
|
||||||
3
v3.1.0.tar.gz
Normal file
3
v3.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:73a31af0d329e633d6166ff70cab31aec3e33b35c05c80d183337fcc2b417f42
|
||||||
|
size 126203
|
||||||
Reference in New Issue
Block a user