python-pillow/python-pillow.spec

547 lines
17 KiB
RPMSpec
Raw Normal View History

2015-01-12 14:12:16 +00:00
%global py2_incdir %(python -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_inc())')
%global py3_incdir %(python3 -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_inc())')
2013-07-03 21:41:37 +00:00
%global py2_libbuilddir %(python -c 'import sys; import sysconfig; print("lib.{p}-{v[0]}.{v[1]}".format(p=sysconfig.get_platform(), v=sys.version_info))')
%global py3_libbuilddir %(python3 -c 'import sys; import sysconfig; print("lib.{p}-{v[0]}.{v[1]}".format(p=sysconfig.get_platform(), v=sys.version_info))')
2013-03-06 23:44:37 +00:00
%global name3 python3-pillow
# bootstrap building docs (pillow is required by docutils, docutils are
# required by sphinx; pillow build-requires sphinx)
%global with_docs 1
2013-07-03 21:41:37 +00:00
# RHEL-7 doesn't have python 3
%if 0%{?rhel} == 7
%global with_python3 0
%else
%global with_python3 1
%endif
2013-03-06 23:44:37 +00:00
# Refer to the comment for Source0 below on how to obtain the source tarball
2015-01-12 14:12:16 +00:00
# The saved file has format python-pillow-Pillow-$version-$ahead-g$shortcommit.tar.gz
2015-10-02 09:29:44 +00:00
%global commit 0177cceac4adfd0020ecbf49fb44ad275dcc1f51
2013-03-06 23:44:37 +00:00
%global shortcommit %(c=%{commit}; echo ${c:0:7})
2013-07-03 21:41:37 +00:00
%global ahead 0
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
2015-10-02 09:29:44 +00:00
Version: 3.0.0
Release: 1%{?snap}%{?dist}
Summary: Python image processing library
2013-03-06 23:44:37 +00:00
# License: see http://www.pythonware.com/products/pil/license.htm
License: MIT
2014-06-03 12:42:36 +00:00
URL: http://python-pillow.github.io/
2013-03-06 23:44:37 +00:00
# Obtain the tarball for a certain commit via:
2014-06-03 12:42:36 +00:00
# wget --content-disposition https://github.com/python-pillow/Pillow/tarball/$commit
2014-07-02 07:33:10 +00:00
Source0: https://github.com/python-pillow/Pillow/tarball/%{commit}/python-pillow-Pillow-%{version}-%{ahead}-g%{shortcommit}.tar.gz
2013-03-06 23:44:37 +00:00
BuildRequires: tk-devel
BuildRequires: libjpeg-devel
BuildRequires: zlib-devel
BuildRequires: freetype-devel
2014-01-04 23:23:23 +00:00
BuildRequires: lcms2-devel
2014-04-16 22:43:24 +00:00
BuildRequires: ghostscript
BuildRequires: openjpeg2-devel
2013-03-19 00:13:14 +00:00
BuildRequires: libwebp-devel
2015-01-12 14:12:16 +00:00
BuildRequires: libtiff-devel
BuildRequires: python2-devel
BuildRequires: python-setuptools
BuildRequires: tkinter
BuildRequires: PyQt4
BuildRequires: numpy
%if 0%{?with_docs}
BuildRequires: python-sphinx
2015-07-02 08:26:50 +00:00
BuildRequires: python-sphinx_rtd_theme
%endif # with_docs
BuildRequires: python-cffi
2013-03-06 23:44:37 +00:00
%if %{with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-tkinter
BuildRequires: python3-PyQt4
BuildRequires: python3-numpy
%if 0%{?with_docs}
2014-01-03 00:44:24 +00:00
BuildRequires: python3-sphinx
2015-07-02 08:26:50 +00:00
BuildRequires: python3-sphinx_rtd_theme
%endif # with_docs
BuildRequires: python3-cffi
2013-03-06 23:44:37 +00:00
%endif
# For EpsImagePlugin.py
Requires: ghostscript
2013-03-06 23:44:37 +00:00
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.
2015-01-12 14:12:16 +00:00
There are four subpackages: tk (tk interface), qt (PIL image wrapper for Qt),
devel (development) and doc (documentation).
2013-03-06 23:44:37 +00:00
%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 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}.
%package qt
Summary: PIL image wrapper for Qt
Group: System Environment/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: PyQt4
Provides: python-imaging-qt = %{version}-%{release}
%description qt
PIL image wrapper for Qt.
2013-03-06 23:44:37 +00:00
%if %{with_python3}
%package -n %{name3}
Summary: Python 3 image processing library
2014-03-13 23:16:37 +00:00
Provides: python3-imaging = %{version}-%{release}
2013-03-06 23:44:37 +00:00
%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}-tk
Summary: Tk interface for %{name3}
Group: System Environment/Libraries
Requires: %{name3}%{?_isa} = %{version}-%{release}
Requires: python3-tkinter
2013-03-06 23:44:37 +00:00
%description -n %{name3}-tk
Tk interface for %{name3}.
%package -n %{name3}-qt
Summary: PIL image wrapper for Qt
Group: System Environment/Libraries
Requires: %{name3}%{?_isa} = %{version}-%{release}
Requires: python3-PyQt4
%description -n %{name3}-qt
PIL image wrapper for Qt.
2013-03-06 23:44:37 +00:00
%endif
%prep
2014-07-02 07:44:15 +00:00
%setup -q -n python-pillow-Pillow-%{shortcommit}
2013-03-06 23:44:37 +00:00
2014-10-02 20:25:50 +00:00
# Strip shebang on non-executable file
sed -i 1d PIL/OleFileIO.py
# Fix file encoding
iconv --from=ISO-8859-1 --to=UTF-8 PIL/WalImageFile.py > PIL/WalImageFile.py.new && \
touch -r PIL/WalImageFile.py PIL/WalImageFile.py.new && \
mv PIL/WalImageFile.py.new PIL/WalImageFile.py
2015-01-12 14:12:16 +00:00
# Make sample scripts non-executable
chmod -x Scripts/diffcover-run.sh
chmod -x Scripts/diffcover-install.sh
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
%if 0%{?with_docs}
2013-03-06 23:44:37 +00:00
pushd docs
2014-01-03 00:44:24 +00:00
PYTHONPATH=$PWD/../build/%py2_libbuilddir make html
2013-03-06 23:44:37 +00:00
rm -f _build/html/.buildinfo
popd
%endif # with_docs
2013-03-06 23:44:37 +00:00
%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
%if 0%{?with_docs}
2013-03-06 23:44:37 +00:00
pushd docs
2014-01-03 00:44:24 +00:00
PYTHONPATH=$PWD/../build/%py3_libbuilddir make html SPHINXBUILD=sphinx-build-%python3_version
2013-03-06 23:44:37 +00:00
rm -f _build/html/.buildinfo
popd
%endif # with_docs
2013-03-06 23:44:37 +00:00
popd
%endif
%install
# Install Python 2 modules
2014-01-01 23:36:31 +00:00
install -d %{buildroot}/%{py2_incdir}/Imaging
install -m 644 libImaging/*.h %{buildroot}/%{py2_incdir}/Imaging
%{__python} setup.py install --skip-build --root %{buildroot}
2013-03-06 23:44:37 +00:00
2014-10-02 20:25:50 +00:00
# Fix non-standard-executable-perm
chmod 0755 %{buildroot}%{python_sitearch}/PIL/*.so
2013-03-06 23:44:37 +00:00
%if %{with_python3}
# Install Python 3 modules
pushd %{py3dir}
2014-01-01 23:36:31 +00:00
install -d %{buildroot}/%{py3_incdir}/Imaging
install -m 644 libImaging/*.h %{buildroot}/%{py3_incdir}/Imaging
%{__python3} setup.py install --skip-build --root %{buildroot}
2013-03-06 23:44:37 +00:00
popd
2014-10-02 20:25:50 +00:00
# Fix non-standard-executable-perm
chmod 0755 %{buildroot}%{python3_sitearch}/PIL/*.so
2013-03-06 23:44:37 +00:00
%endif
# The scripts are packaged in %%doc
2014-01-01 23:36:31 +00:00
rm -rf %{buildroot}%{_bindir}
2013-03-06 23:44:37 +00:00
%check
# Check Python 2 modules
2013-07-03 21:41:37 +00:00
ln -s $PWD/Images $PWD/build/%py2_libbuilddir/Images
cp -R $PWD/Tests $PWD/build/%py2_libbuilddir/Tests
cp -R $PWD/selftest.py $PWD/build/%py2_libbuilddir/selftest.py
pushd build/%py2_libbuilddir
PYTHONPATH=$PWD %{__python} selftest.py
2013-03-06 23:44:37 +00:00
popd
%if %{with_python3}
# Check Python 3 modules
pushd %{py3dir}
2013-07-03 21:41:37 +00:00
ln -s $PWD/Images $PWD/build/%py3_libbuilddir/Images
cp -R $PWD/Tests $PWD/build/%py3_libbuilddir/Tests
cp -R $PWD/selftest.py $PWD/build/%py3_libbuilddir/selftest.py
pushd build/%py3_libbuilddir
PYTHONPATH=$PWD %{__python3} selftest.py
2013-03-06 23:44:37 +00:00
popd
popd
%endif
%files
2015-01-12 14:12:16 +00:00
%doc README.rst CHANGES.rst
%license docs/COPYING
2013-03-06 23:44:37 +00:00
%{python_sitearch}/*
# These are in subpackages
2013-07-03 21:41:37 +00:00
%exclude %{python_sitearch}/PIL/_imagingtk*
2013-03-06 23:44:37 +00:00
%exclude %{python_sitearch}/PIL/ImageTk*
%exclude %{python_sitearch}/PIL/SpiderImagePlugin*
%exclude %{python_sitearch}/PIL/ImageQt*
2013-03-06 23:44:37 +00:00
%files devel
%{py2_incdir}/Imaging/
%files doc
2014-07-02 08:24:21 +00:00
%doc Scripts
%if 0%{?with_docs}
2014-05-13 10:29:41 +00:00
%doc docs/_build/html
%endif # with_docs
2013-03-06 23:44:37 +00:00
%files tk
2013-07-03 21:41:37 +00:00
%{python_sitearch}/PIL/_imagingtk*
2013-03-06 23:44:37 +00:00
%{python_sitearch}/PIL/ImageTk*
%{python_sitearch}/PIL/SpiderImagePlugin*
%files qt
%{python_sitearch}/PIL/ImageQt*
2013-03-06 23:44:37 +00:00
%if %{with_python3}
%files -n %{name3}
2015-01-12 14:12:16 +00:00
%doc README.rst CHANGES.rst
%license docs/COPYING
2013-03-06 23:44:37 +00:00
%{python3_sitearch}/*
# These are in subpackages
2013-07-03 21:41:37 +00:00
%exclude %{python3_sitearch}/PIL/_imagingtk*
2013-03-06 23:44:37 +00:00
%exclude %{python3_sitearch}/PIL/ImageTk*
%exclude %{python3_sitearch}/PIL/SpiderImagePlugin*
%exclude %{python3_sitearch}/PIL/ImageQt*
2013-03-06 23:44:37 +00:00
%files -n %{name3}-devel
%{py3_incdir}/Imaging/
%files -n %{name3}-doc
2014-07-02 08:31:38 +00:00
%doc Scripts
%if 0%{?with_docs}
%doc docs/_build/html
%endif # with_docs
2013-03-06 23:44:37 +00:00
%files -n %{name3}-tk
2013-07-03 21:41:37 +00:00
%{python3_sitearch}/PIL/_imagingtk*
2013-03-06 23:44:37 +00:00
%{python3_sitearch}/PIL/ImageTk*
%{python3_sitearch}/PIL/SpiderImagePlugin*
%files -n %{name3}-qt
%{python3_sitearch}/PIL/ImageQt*
2013-03-06 23:44:37 +00:00
%endif
%changelog
2015-10-02 09:29:44 +00:00
* Fri Oct 02 2015 Sandro Mani <manisandro@gmail.com> - 3.0.0-1
- Update to 3.0.0
2015-07-29 16:40:44 +00:00
* Wed Jul 29 2015 Sandro Mani <manisandro@gmail.com> - 2.9.0-2
- Fix python3-pillow-tk Requires: tkinter -> python3-tkinter (#1248085)
2015-07-02 08:26:50 +00:00
* Thu Jul 02 2015 Sandro Mani <manisandro@gmail.com> - 2.9.0-1
- Update to 2.9.0
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-06-08 09:12:41 +00:00
* Mon Jun 08 2015 Sandro Mani <manisandro@gmail.com> - 2.8.2-1
- Update to 2.8.2
2015-04-02 17:24:52 +00:00
* Thu Apr 02 2015 Sandro Mani <manisandro@gmail.com> - 2.8.1-1
- Update to 2.8.1
2015-04-01 21:16:58 +00:00
* Wed Apr 01 2015 Sandro Mani <manisandro@gmail.com> - 2.8.0-1
- Update to 2.8.0
2015-01-12 14:12:16 +00:00
* Mon Jan 12 2015 Sandro Mani <manisandro@gmail.com> - 2.7.0-1
2015-01-02 13:59:42 +00:00
- Update to 2.7.0
2015-01-12 14:12:16 +00:00
- Drop sane subpackage, is in python-sane now
- Fix python3 headers directory
- Drop Obsoletes: python3-pillow on python3-pillow-qt
2015-01-02 13:59:42 +00:00
2014-10-13 21:33:35 +00:00
* Mon Oct 13 2014 Sandro Mani <manisandro@gmail.com> - 2.6.1-1
- Update to 2.6.1
2014-10-02 20:25:50 +00:00
* Thu Oct 02 2014 Sandro Mani <manisandro@gmail.com> - 2.6.0-1
- Update to 2.6.0
2014-08-20 11:42:26 +00:00
* Wed Aug 20 2014 Sandro Mani <manisandro@gmail.com> - 2.5.3-3
- Rebuilding again to resolve transient build error that caused BZ#1131723
* Tue Aug 19 2014 Stephen Gallagher <sgallagh@redhat.com> - 2.5.3-2
- Rebuilding to resolve transient build error that caused BZ#1131723
2014-08-19 08:45:24 +00:00
* Tue Aug 19 2014 Sandro Mani <manisandro@gmail.com> - 2.5.3-1
- Update to 2.5.3 (Fix CVE-2014-3598, a DOS in the Jpeg2KImagePlugin)
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-08-13 21:58:11 +00:00
* Wed Aug 13 2014 Sandro Mani <manisandro@gmail.com> - 2.5.2-1
- Update to 2.5.2 (Fix CVE-2014-3589, a DOS in the IcnsImagePlugin)
2014-07-26 19:43:47 +00:00
* Sat Jul 26 2014 Sandro Mani <manisandro@gmail.com> - 2.5.1-2
- Reenable jpeg2k tests on big endian arches
2014-07-15 08:31:03 +00:00
* Tue Jul 15 2014 Sandro Mani <manisandro@gmail.com> - 2.5.1-1
- Update to 2.5.1
2014-07-02 07:33:10 +00:00
* Wed Jul 02 2014 Sandro Mani <manisandro@gmail.com> - 2.5.0-1
- Update to 2.5.0
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-07-26 19:43:47 +00:00
* Wed May 28 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-10
- Rebuild with docs enabled
- Update python-pillow_openjpeg-2.1.0.patch
2014-05-27 14:12:42 +00:00
* Tue May 27 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-9
- Rebuild against openjpeg-2.1.0
* Fri May 23 2014 Dan Horák <dan[at]danny.cz> - 2.4.0-8
- skip jpeg2k tests on big endian arches (#1100762)
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 2.4.0-7
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
2014-05-13 10:29:41 +00:00
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.4.0-6
- Set with_docs to 1 to build docs.
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.4.0-5
- Bootstrap building sphinx docs because of circular dependency with sphinx.
2014-05-10 03:29:19 +00:00
* Fri May 9 2014 Orion Poplawski <orion@cora.nwra.com> - 2.4.0-4
- Rebuild for Python 3.4
* Tue Apr 22 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-3
- Add patch: Have the tempfile use a suffix with a dot
* Thu Apr 17 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-2
- Enable Jpeg2000 support
- Enable webp support also on s390* archs, bug #962091 is now fixed
- Add upstream patch for ghostscript detection
2014-04-02 11:49:28 +00:00
* Wed Apr 02 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-1
- Update to 2.4.0
* Wed Mar 19 2014 Sandro Mani <manisandro@gmail.com> - 2.3.1-1
2014-03-18 23:22:06 +00:00
- Update to 2.3.1 (Fix insecure use of tempfile.mktemp (CVE-2014-1932 CVE-2014-1933))
2014-03-13 23:16:37 +00:00
* Thu Mar 13 2014 Jakub Dorňák <jdornak@redhat.com> - 2.3.0-5
- python-pillow does not provide python3-imaging
(python3-pillow does)
* Tue Jan 07 2014 Sandro Mani <manisandro@gmail.com> - 2.3.0-4
- Add missing ghostscript Requires and BuildRequires
2014-01-06 14:40:19 +00:00
* Mon Jan 06 2014 Sandro Mani <manisandro@gmail.com> - 2.3.0-3
- Remove python-pillow_help-theme.patch, add python-sphinx-theme-better BR
2014-01-04 23:26:02 +00:00
* Sun Jan 05 2014 Sandro Mani <manisandro@gmail.com> - 2.3.0-2
2014-01-04 23:23:23 +00:00
- Rebuild with docs enabled
- Change lcms BR to lcms2
2014-01-03 00:44:24 +00:00
2014-01-01 23:36:31 +00:00
* Thu Jan 02 2014 Sandro Mani <manisandro@gmail.com> - 2.3.0-1
- Update to 2.3.0
2014-01-03 00:24:29 +00:00
- Build with doc disabled to break circular python-pillow -> python-sphinx -> python pillow dependency
2014-01-01 23:36:31 +00:00
* Wed Oct 23 2013 Sandro Mani <manisandro@gmail.com> - 2.2.1-2
- Backport fix for decoding tiffs with correct byteorder, fixes rhbz#1019656
2013-10-02 19:44:07 +00:00
* Wed Oct 02 2013 Sandro Mani <manisandro@gmail.com> - 2.2.1-1
- Update to 2.2.1
- Really enable webp on ppc, but leave disabled on s390
2013-08-29 11:19:40 +00:00
* Thu Aug 29 2013 Sandro Mani <manisandro@gmail.com> - 2.1.0-4
- Add patch to fix incorrect PyArg_ParseTuple tuple signature, fixes rhbz#962091 and rhbz#988767.
- Renable webp support on bigendian arches
2013-08-28 18:53:27 +00:00
* Wed Aug 28 2013 Sandro Mani <manisandro@gmail.com> - 2.1.0-3
- Add patch to fix memory corruption caused by invalid palette size, see rhbz#1001122
* Tue Jul 30 2013 Karsten Hopp <karsten@redhat.com> 2.1.0-2
- Build without webp support on ppc* archs (#988767)
2013-07-03 21:41:37 +00:00
* Wed Jul 03 2013 Sandro Mani <manisandro@gmail.com> - 2.1.0-1
- Update to 2.1.0
- Run tests in builddir, not installroot
- Build python3-pillow docs with python3
- python-pillow_endian.patch upstreamed
* Mon May 13 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-10
- Build without webp support on s390* archs
Resolves: rhbz#962059
* Sat May 11 2013 Roman Rakus <rrakus@redhat.com> - 2.0.0-9.gitd1c6db8
- Conditionaly disable build of python3 parts on RHEL system
2013-05-08 21:58:30 +00:00
* Wed May 08 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-8.gitd1c6db8
- Add patch to fix test failure on big-endian
* Thu Apr 25 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.0-7.gitd1c6db8
- Remove Obsoletes in the python-pillow-qt subpackage. Obsoletes isn't
appropriate since qt support didn't exist in the previous python-pillow
package so there's no reason to drag in python-pillow-qt when updating
python-pillow.
* Fri Apr 19 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-6.gitd1c6db8
- Update to latest git
- python-pillow_quantization.patch now upstream
- python-pillow_endianness.patch now upstream
- Add subpackage for ImageQt module, with correct dependencies
- Add PyQt4 and numpy BR (for generating docs / running tests)
2013-04-07 23:09:51 +00:00
* Mon Apr 08 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-5.git93a488e
- Reenable tests on bigendian, add patches for #928927
* Sun Apr 07 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-4.git93a488e
- Update to latest git
- disable tests on bigendian (PPC*, S390*) until rhbz#928927 is fixed
* Fri Mar 22 2013 Sandro Mani <manisandro@gmail.com> - 2.0.0-3.gitde210a2
- python-pillow_tempfile.patch now upstream
- Add python3-imaging provides (bug #924867)
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
- Add python-pillow_tempfile.patch to prevent a temporary file from getting packaged
2013-03-21 23:45:59 +00:00
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