python-imagesize/python-imagesize.spec

64 lines
2.0 KiB
RPMSpec
Raw Normal View History

2019-11-30 11:04:53 +08:00
Name: python-imagesize
2020-08-04 18:07:56 +08:00
Version: 1.1.0
Release: 3
2019-11-30 11:04:53 +08:00
Summary: This module analyzes image headers and returns image size.
License: MIT
URL: https://github.com/shibukawa/imagesize_py
Source0: https://files.pythonhosted.org/packages/source/i/imagesize/imagesize-%{version}.tar.gz
Patch01: 0001-Added-return-types-to-docstrings-and-fixed-descripti.patch
Patch02: 0002-Support-SVG-Image.patch
2019-11-30 11:04:53 +08:00
BuildArch: noarch
BuildRequires: python2-setuptools python2-devel python2-pytest python3-setuptools
BuildRequires: python3-devel python3-pytest
%description
This module analyzes JPEG/JPEG 2000/PNG/GIF/TIFF image headers and returns image size.
%package -n python2-imagesize
Summary: This module analyzes image headers and returns image size.
%{?python_provide:%python_provide python2-imagesize}
%description -n python2-imagesize
This module analyzes JPEG/JPEG 2000/PNG/GIF/TIFF image headers and returns image size.
%package -n python3-imagesize
Summary: This module analyzes image headers and returns image size.
%{?python_provide:%python_provide python3-imagesize}
%description -n python3-imagesize
This module analyzes JPEG/JPEG 2000/PNG/GIF/TIFF image headers and returns image size.
%prep
%autosetup -n imagesize-%{version} -p1
2019-11-30 11:04:53 +08:00
rm -rf imagesize.egg-info
%build
%py2_build
%py3_build
%install
%py3_install
%py2_install
%check
py.test-2
py.test-3
%files -n python2-imagesize
%doc README.rst LICENSE.rst
%{python2_sitelib}/*
%files -n python3-imagesize
%doc README.rst LICENSE.rst
%{python3_sitelib}/*
%changelog
* Thu Nov 09 2023 zhangliangpengkun<zhangliangpengkun@xfusion.com> - 1.1.0-3
- Support SVG Image
* Thu Oct 19 2023 zhangliangpengkun<zhangliangpengkun@xfusion.com> - 1.1.0-2
- Added return types to docstrings, and fixed description of getDPI()'s…
2020-08-04 18:07:56 +08:00
* Tue Aug 04 2020 Yeqing Peng <pengyeqing@huawei.com> - 1.1.0-1
- update to 1.1.0
2019-11-30 11:04:53 +08:00
* Mon Nov 25 2019 Ling Yang <lingyang2@huawei.com> - 1.0.0-4
- Package init