commit
53b5f336a3
@ -0,0 +1 @@
|
||||
SOURCES/imagesize-1.0.0.tar.gz
|
@ -0,0 +1 @@
|
||||
fb4b40f8e920bc3fb6c6cbda32708e6ce0ddd0ce SOURCES/imagesize-1.0.0.tar.gz
|
@ -0,0 +1,134 @@
|
||||
|
||||
%global pypi_name imagesize
|
||||
%global sum Python module for analyzing image file headers and returning image sizes
|
||||
|
||||
%if 0%{?rhel} > 7
|
||||
# Disable python2 build by default
|
||||
%bcond_with python2
|
||||
%else
|
||||
%bcond_without python2
|
||||
%endif
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.0.0
|
||||
Release: 2%{?dist}
|
||||
Summary: %{sum}
|
||||
|
||||
License: MIT
|
||||
URL: https://github.com/shibukawa/imagesize_py
|
||||
Source0: https://files.pythonhosted.org/packages/source/i/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
%if %{with python2}
|
||||
BuildRequires: python2-setuptools
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-pytest
|
||||
%endif # with python2
|
||||
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-pytest
|
||||
|
||||
%description
|
||||
The imagesize package parses image file headers and returns the image sizes.
|
||||
|
||||
* PNG
|
||||
* JPEG
|
||||
* JPEG2000
|
||||
* GIF
|
||||
|
||||
This is a pure Python library.
|
||||
|
||||
%if %{with python2}
|
||||
%package -n python2-%{pypi_name}
|
||||
Summary: %{sum}
|
||||
%{?python_provide:%python_provide python2-%{pypi_name}}
|
||||
|
||||
%description -n python2-%{pypi_name}
|
||||
The imagesize package parses image file headers and returns the image sizes.
|
||||
|
||||
* PNG
|
||||
* JPEG
|
||||
* JPEG2000
|
||||
* GIF
|
||||
|
||||
This is a pure Python library.
|
||||
%endif # with python2
|
||||
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: %{sum}
|
||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
The imagesize package parses image file headers and returns the image sizes.
|
||||
|
||||
* PNG
|
||||
* JPEG
|
||||
* JPEG2000
|
||||
* GIF
|
||||
|
||||
This is a pure Python library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pypi_name}-%{version}
|
||||
# Remove bundled egg-info
|
||||
rm -rf %{pypi_name}.egg-info
|
||||
|
||||
%build
|
||||
%if %{with python2}
|
||||
%py2_build
|
||||
%endif # with python2
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
%if %{with python2}
|
||||
%py2_install
|
||||
%endif # with python2
|
||||
|
||||
%check
|
||||
%if %{with python2}
|
||||
py.test-2
|
||||
%endif # with python2
|
||||
py.test-3
|
||||
|
||||
%if %{with python2}
|
||||
%files -n python2-%{pypi_name}
|
||||
%doc README.rst
|
||||
%license LICENSE.rst
|
||||
%{python2_sitelib}/*
|
||||
%endif # with python2
|
||||
|
||||
%files -n python3-%{pypi_name}
|
||||
%doc README.rst
|
||||
%license LICENSE.rst
|
||||
%{python3_sitelib}/*
|
||||
|
||||
%changelog
|
||||
* Thu Jun 14 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.0.0-2
|
||||
- Conditionalize the python2 subpackage
|
||||
|
||||
* Mon Apr 16 2018 Avram Lubkin <aviso@rockhopper.net> - 1.0.0-1
|
||||
- Updated to 1.0.0 (bz#1545961)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.7.1-4
|
||||
- Enable tests
|
||||
|
||||
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.7.1-3
|
||||
- Rebuild for Python 3.6
|
||||
- Disable python3 tests
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Thu May 26 2016 Avram Lubkin <aviso@rockhopper.net> - 0.7.1-1
|
||||
- Initial package.
|
Loading…
Reference in new issue