15
0

- update to 0.4.9:

* detect linux-aarch6 correctly for ffmpeg filenames
  * Add GH Sponsors Link
  * Updated deprecated test approach + minor changes
  * Fix format
  * Enable py311 on ci
  * Check CI pypy
  * Add setuptools dependency
  * correct `fps` parsing
  * get_ffmpeg_exe always checks env var
  * Fix pix_format parser to capture formats that have commas
  A fix for closing the std stream.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imageio-ffmpeg?expand=0&rev=11
This commit is contained in:
2023-12-16 21:22:07 +00:00
committed by Git OBS Bridge
parent 221e0a1c8a
commit 113f5e3362
4 changed files with 26 additions and 11 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fdaa05ad10fe070b7fa8e5f615cb0d28f3b9b791d00af6d2a11e694158d10aa9
size 17224

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39bcd1660118ef360fa4047456501071364661aa9d9021d3d26c58f1ee2081f5
size 17378

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Sat Dec 16 21:20:26 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.4.9:
* detect linux-aarch6 correctly for ffmpeg filenames
* Add GH Sponsors Link
* Updated deprecated test approach + minor changes
* Fix format
* Enable py311 on ci
* Check CI pypy
* Add setuptools dependency
* correct `fps` parsing
-------------------------------------------------------------------
Thu Aug 17 13:31:33 UTC 2023 - ecsos <ecsos@opensuse.org>
@@ -7,8 +20,8 @@ Thu Aug 17 13:31:33 UTC 2023 - ecsos <ecsos@opensuse.org>
Sun Mar 26 19:53:26 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.4.8:
* get_ffmpeg_exe always checks env var
* Fix pix_format parser to capture formats that have commas
* get_ffmpeg_exe always checks env var
* Fix pix_format parser to capture formats that have commas
within strings
* Avoid warning about invalid escape sequence in regex
@@ -19,7 +32,7 @@ Thu Sep 29 02:35:44 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
Formal support for Python 3.5 -3.10.
Automatically find available h264 encoders and choose the best.
Allow users to specify quality=None.
A fix for closing the std stream.
A fix for closing the std stream.
- v0.4.5
Set daemon attribute instead of using deprecated setDaemon method.

View File

@@ -18,15 +18,16 @@
%{?sle15_python_module_pythons}
Name: python-imageio-ffmpeg
Version: 0.4.8
Version: 0.4.9
Release: 0
Summary: FFMPEG wrapper for Python
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://github.com/imageio/imageio-ffmpeg
Source: https://files.pythonhosted.org/packages/source/i/imageio-ffmpeg/imageio-ffmpeg-%{version}.tar.gz
BuildRequires: %{python_module pip > 19}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: ffmpeg-4
BuildRequires: python-rpm-macros
@@ -41,10 +42,10 @@ FFMPEG wrapper for working with video files in Python.
%setup -q -n imageio-ffmpeg-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -54,6 +55,7 @@ FFMPEG wrapper for working with video files in Python.
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%{python_sitelib}/imageio_ffmpeg
%{python_sitelib}/imageio_ffmpeg-%{version}.dist-info
%changelog