forked from pool/python-imageio
* Use bytes instead of to_bytes in pyav metadata call * Remove support for Python 3.8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imageio?expand=0&rev=45
119 lines
3.7 KiB
RPMSpec
119 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package python-imageio
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_with test_extras
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-imageio
|
|
Version: 2.36.0
|
|
Release: 0
|
|
Summary: Python library for reading and writing image, video, and related formats
|
|
License: BSD-2-Clause
|
|
URL: https://github.com/imageio/imageio
|
|
Source0: https://files.pythonhosted.org/packages/source/i/imageio/imageio-%{version}.tar.gz
|
|
BuildRequires: %{python_module Pillow >= 8.3.2}
|
|
BuildRequires: %{python_module base >= 3.7}
|
|
BuildRequires: %{python_module numpy >= 1.20.0}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Pillow >= 8.3.2
|
|
Requires: python-numpy >= 1.20.0
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
Recommends: libfreeimageplus3
|
|
Recommends: python-imageio-ffmpeg
|
|
Recommends: python-psutil
|
|
Suggests: python-astropy
|
|
Suggests: python-av
|
|
# not in openSUSE (yet)
|
|
Suggests: python-simpleitk
|
|
Suggests: python-tifffile
|
|
BuildArch: noarch
|
|
%if "%{python_flavor}" == "python3" || "%{python_provides}" == "python3"
|
|
# GDAL is not (yet) singlespec
|
|
Suggests: python3-GDAL
|
|
%endif
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module fsspec}
|
|
BuildRequires: %{python_module imageio-ffmpeg}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: libglvnd-devel
|
|
%if %{with test_extras}
|
|
BuildRequires: %{python_module astropy}
|
|
BuildRequires: %{python_module av}
|
|
BuildRequires: %{python_module psutil}
|
|
BuildRequires: %{python_module tifffile}
|
|
BuildRequires: python3-GDAL
|
|
%endif
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Imageio is a Python library that provides an interface to read and
|
|
write a wide range of image data, including animated images, volumetric
|
|
data, and scientific formats.
|
|
|
|
%prep
|
|
%setup -q -n imageio-%{version}
|
|
|
|
# Plugins are not executable scripts
|
|
for plgpy in imageio/plugins/_*.py ; do
|
|
echo "Fixing $plgpy..."
|
|
sed -i -e '1{/\/usr\/bin.*python/d}' $plgpy
|
|
done
|
|
|
|
%build
|
|
export IMAGEIO_NO_INTERNET=1
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
export IMAGEIO_NO_INTERNET=1
|
|
%pyproject_install
|
|
%python_clone -a %{buildroot}%{_bindir}/imageio_remove_bin
|
|
%python_clone -a %{buildroot}%{_bindir}/imageio_download_bin
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export IMAGEIO_NO_INTERNET=1
|
|
# plain openSUSE does not have the right codecs to test this ffmpeg
|
|
donttest="test_ffmpeg or test_bayer_write"
|
|
# unmarked online tests
|
|
donttest="$donttest or test_freeimage"
|
|
# fails with python 313
|
|
donttest+=" or test_gif"
|
|
%pytest -ra -k "not ($donttest)" -m "not needs_internet"
|
|
|
|
%post
|
|
%python_install_alternative imageio_remove_bin
|
|
%python_install_alternative imageio_download_bin
|
|
|
|
%postun
|
|
%python_uninstall_alternative imageio_remove_bin
|
|
%python_uninstall_alternative imageio_download_bin
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc CONTRIBUTORS.txt README.md
|
|
%{python_sitelib}/imageio
|
|
%{python_sitelib}/imageio-%{version}*-info
|
|
%python_alternative %{_bindir}/imageio_download_bin
|
|
%python_alternative %{_bindir}/imageio_remove_bin
|
|
|
|
%changelog
|