python-pillow/python-pillow.spec

344 lines
9.5 KiB
RPMSpec
Raw Normal View History

2013-03-06 23:44:37 +00:00
%global py2_incdir %{_includedir}/python%{python_version}
%global py3_incdir %{_includedir}/python%{python3_version}
%global name3 python3-pillow
2013-03-19 00:13:14 +00:00
%global with_python3 1
2013-03-06 23:44:37 +00:00
# Refer to the comment for Source0 below on how to obtain the source tarball
# The saved file has format python-imaging-Pillow-$version-$ahead-g$shortcommit.tar.gz
2013-03-21 23:45:59 +00:00
%global commit 2e888483a6291992f70011f7f95b893911d47d8f
2013-03-06 23:44:37 +00:00
%global shortcommit %(c=%{commit}; echo ${c:0:7})
2013-03-21 23:45:59 +00:00
%global ahead 26
2013-03-19 00:13:14 +00:00
# If ahead is 0, the tarball corresponds to a release version, otherwise to a git snapshot
%if %{ahead} > 0
%global snap .git%{shortcommit}
%endif
2013-03-06 23:44:37 +00:00
Name: python-pillow
2013-03-19 00:13:14 +00:00
Version: 2.0.0
2013-03-21 23:45:59 +00:00
Release: 2%{?snap}%{?dist}
2013-03-06 23:44:37 +00:00
Summary: Python 2 image processing library
# License: see http://www.pythonware.com/products/pil/license.htm
License: MIT
URL: http://python-imaging.github.com/Pillow/
# Obtain the tarball for a certain commit via:
# wget --content-disposition https://github.com/python-imaging/Pillow/tarball/$commit
Source0: https://github.com/python-imaging/Pillow/tarball/%{commit}/python-imaging-Pillow-%{version}-%{ahead}-g%{shortcommit}.tar.gz
2013-03-12 13:59:23 +00:00
# Add s390* and ppc* archs
Patch0: python-pillow-archs.patch
2013-03-06 23:44:37 +00:00
BuildRequires: python2-devel
BuildRequires: python-setuptools
BuildRequires: tkinter
BuildRequires: tk-devel
BuildRequires: python-sphinx
BuildRequires: libjpeg-devel
BuildRequires: zlib-devel
BuildRequires: freetype-devel
BuildRequires: lcms-devel
BuildRequires: sane-backends-devel
2013-03-19 00:13:14 +00:00
BuildRequires: libwebp-devel
2013-03-06 23:44:37 +00:00
%if %{with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-tkinter
%endif
Provides: python-imaging = %{version}-%{release}
Obsoletes: python-imaging <= 1.1.7-12
%filter_provides_in %{python_sitearch}
%filter_provides_in %{python3_sitearch}
%filter_setup
%description
Python image processing library, fork of the Python Imaging Library (PIL)
This library provides extensive file format support, an efficient
internal representation, and powerful image processing capabilities.
Notice that in order to reduce the package dependencies there are
three subpackages: devel (for development); tk (to interact with the
tk interface) and sane (scanning devices interface).
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: python-devel, libjpeg-devel, zlib-devel
Provides: python-imaging-devel = %{version}-%{release}
Obsoletes: python-imaging-devel <= 1.1.7-12
%description devel
Development files for %{name}.
%package doc
Summary: Documentation for %{name}
Group: Documentation
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description doc
Documentation for %{name}.
%package sane
Summary: Python module for using scanners
Group: System Environment/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
Provides: python-imaging-sane = %{version}-%{release}
Obsoletes: python-imaging-sane <= 1.1.7-12
%description sane
This package contains the sane module for Python which provides access to
various raster scanning devices such as flatbed scanners and digital cameras.
%package tk
Summary: Tk interface for %{name}
Group: System Environment/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: tkinter
Provides: python-imaging-tk = %{version}-%{release}
Obsoletes: python-imaging-tk <= 1.1.7-12
%description tk
Tk interface for %{name}.
%if %{with_python3}
%package -n %{name3}
Summary: Python 3 image processing library
%description -n %{name3}
%{_description}
%package -n %{name3}-devel
Summary: Development files for %{name3}
Group: Development/Libraries
Requires: %{name3}%{?_isa} = %{version}-%{release}
Requires: python3-devel, libjpeg-devel, zlib-devel
%description -n %{name3}-devel
Development files for %{name3}.
%package -n %{name3}-doc
Summary: Documentation for %{name3}
Group: Documentation
Requires: %{name3} = %{version}-%{release}
BuildArch: noarch
%description -n %{name3}-doc
Documentation for %{name3}.
%package -n %{name3}-sane
Summary: Python module for using scanners
Group: System Environment/Libraries
Requires: %{name3}%{?_isa} = %{version}-%{release}
%description -n %{name3}-sane
This package contains the sane module for Python which provides access to
various raster scanning devices such as flatbed scanners and digital cameras.
%package -n %{name3}-tk
Summary: Tk interface for %{name3}
Group: System Environment/Libraries
Requires: %{name3}%{?_isa} = %{version}-%{release}
Requires: tkinter
%description -n %{name3}-tk
Tk interface for %{name3}.
%endif
%prep
%setup -q -n python-imaging-Pillow-%{shortcommit}
2013-03-12 13:59:23 +00:00
%patch0 -p1 -b .archs
2013-03-06 23:44:37 +00:00
%if %{with_python3}
# Create Python 3 source tree
rm -rf %{py3dir}
cp -a . %{py3dir}
%endif
%build
# Build Python 2 modules
find -name '*.py' | xargs sed -i '1s|^#!.*python|#!%{__python}|'
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
pushd Sane
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
popd
pushd docs
make html
rm -f _build/html/.buildinfo
popd
%if %{with_python3}
# Build Python 3 modules
pushd %{py3dir}
find -name '*.py' | xargs sed -i '1s|^#!.*python|#!%{__python3}|'
CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
pushd Sane
CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
popd
pushd docs
make html
rm -f _build/html/.buildinfo
popd
popd
%endif
%install
rm -rf $RPM_BUILD_ROOT
# Install Python 2 modules
install -d $RPM_BUILD_ROOT/%{py2_incdir}/Imaging
install -m 644 libImaging/*.h $RPM_BUILD_ROOT/%{py2_incdir}/Imaging
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
pushd Sane
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
popd
%if %{with_python3}
# Install Python 3 modules
pushd %{py3dir}
install -d $RPM_BUILD_ROOT/%{py3_incdir}/Imaging
install -m 644 libImaging/*.h $RPM_BUILD_ROOT/%{py3_incdir}/Imaging
%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
pushd Sane
%{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
popd
popd
%endif
# The scripts are packaged in %%doc
rm -rf $RPM_BUILD_ROOT%{_bindir}
%check
# Check Python 2 modules
ln -s $PWD/Images $RPM_BUILD_ROOT%{python_sitearch}/Images
2013-03-19 00:13:14 +00:00
ln -s $PWD/Tests $RPM_BUILD_ROOT%{python_sitearch}/Tests
2013-03-06 23:44:37 +00:00
ln -s $PWD/selftest.py $RPM_BUILD_ROOT%{python_sitearch}/selftest.py
pushd $RPM_BUILD_ROOT%{python_sitearch}
%{__python} selftest.py
2013-03-19 00:13:14 +00:00
%{__python} Tests/run.py
2013-03-06 23:44:37 +00:00
popd
rm $RPM_BUILD_ROOT%{python_sitearch}/Images
2013-03-19 00:13:14 +00:00
rm $RPM_BUILD_ROOT%{python_sitearch}/Tests
2013-03-06 23:44:37 +00:00
rm $RPM_BUILD_ROOT%{python_sitearch}/selftest.py*
%if %{with_python3}
# Check Python 3 modules
pushd %{py3dir}
ln -s $PWD/Images $RPM_BUILD_ROOT%{python3_sitearch}/Images
2013-03-19 00:13:14 +00:00
ln -s $PWD/Tests $RPM_BUILD_ROOT%{python3_sitearch}/Tests
2013-03-06 23:44:37 +00:00
ln -s $PWD/selftest.py $RPM_BUILD_ROOT%{python3_sitearch}/selftest.py
pushd $RPM_BUILD_ROOT%{python3_sitearch}
%{__python3} selftest.py
2013-03-19 00:13:14 +00:00
%{__python3} Tests/run.py
2013-03-06 23:44:37 +00:00
popd
rm $RPM_BUILD_ROOT%{python3_sitearch}/Images
2013-03-19 00:13:14 +00:00
rm $RPM_BUILD_ROOT%{python3_sitearch}/Tests
2013-03-06 23:44:37 +00:00
rm $RPM_BUILD_ROOT%{python3_sitearch}/selftest.py*
popd
%endif
%files
2013-03-19 00:13:14 +00:00
%doc README.rst docs/HISTORY.txt COPYING
2013-03-06 23:44:37 +00:00
%{python_sitearch}/*
%exclude %{python_sitearch}/*sane*
%exclude %{python_sitearch}/_imagingtk*
%exclude %{python_sitearch}/PIL/ImageTk*
%exclude %{python_sitearch}/PIL/SpiderImagePlugin*
%files devel
%{py2_incdir}/Imaging/
%files doc
%doc Scripts Images docs/_build/html
%files sane
%doc Sane/CHANGES Sane/demo*.py Sane/sanedoc.txt
%{python_sitearch}/*sane*
%files tk
%{python_sitearch}/_imagingtk*
%{python_sitearch}/PIL/ImageTk*
%{python_sitearch}/PIL/SpiderImagePlugin*
%if %{with_python3}
%files -n %{name3}
2013-03-19 00:13:14 +00:00
%doc README.rst docs/HISTORY.txt COPYING
2013-03-06 23:44:37 +00:00
%{python3_sitearch}/*
%exclude %{python3_sitearch}/*sane*
%exclude %{python3_sitearch}/_imagingtk*
%exclude %{python3_sitearch}/PIL/ImageTk*
%exclude %{python3_sitearch}/PIL/SpiderImagePlugin*
%files -n %{name3}-devel
%{py3_incdir}/Imaging/
%files -n %{name3}-doc
%doc Scripts Images docs/_build/html
%files -n %{name3}-sane
%doc Sane/CHANGES Sane/demo*.py Sane/sanedoc.txt
%{python3_sitearch}/*sane*
%files -n %{name3}-tk
%{python3_sitearch}/_imagingtk*
%{python3_sitearch}/PIL/ImageTk*
%{python3_sitearch}/PIL/SpiderImagePlugin*
%endif
%changelog
2013-03-21 23:45:59 +00:00
* Fri Mar 22 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-2.git2e88848
- Update to latest git
- Remove python-pillow-disable-test.patch, gcc is now fixed
2013-03-19 00:13:14 +00:00
* Tue Mar 19 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-1.git2f4207c
- Update to 2.0.0 git snapshot
- Enable python3 packages
- Add libwebp-devel BR for Pillow 2.0.0
2013-03-17 12:35:57 +00:00
* Wed Mar 13 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.7.8-6.20130305git
- Add ARM support
2013-03-12 13:59:23 +00:00
* Tue Mar 12 2013 Karsten Hopp <karsten@redhat.com> 1.7.8-5.20130305git
- add s390* and ppc* to arch detection
2013-03-06 23:44:37 +00:00
* Tue Mar 05 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-4.20130305git7866759
- Update to latest git snapshot
- 0001-Cast-hash-table-values-to-unsigned-long.patch now upstream
- Pillow-1.7.8-selftest.patch now upstream
* Mon Feb 25 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-3.20130210gite09ff61
- Really remove -fno-strict-aliasing
- Place comment on how to retreive source just above the Source0 line
* Mon Feb 18 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-2.20130210gite09ff61
- Rebuild without -fno-strict-aliasing
- Add patch for upstream issue #52
* Sun Feb 10 2013 Sandro Mani <manisandro@gmail.com> - 1.7.8-1.20130210gite09ff61
- Initial RPM package