2019-03-04 14:19:41 +00:00
|
|
|
%global py3_incdir %(python3 -c 'import distutils.sysconfig; print(distutils.sysconfig.get_python_inc())')
|
2013-07-03 21:41:37 +00:00
|
|
|
%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
|
|
|
|
2016-07-02 11:20:05 +00:00
|
|
|
%global srcname pillow
|
2014-05-13 08:57:54 +00:00
|
|
|
# bootstrap building docs (pillow is required by docutils, docutils are
|
|
|
|
# required by sphinx; pillow build-requires sphinx)
|
2016-12-13 03:17:47 +00:00
|
|
|
%global with_docs 1
|
2013-07-03 21:41:37 +00:00
|
|
|
|
2016-07-02 11:20:05 +00:00
|
|
|
Name: python-%{srcname}
|
2021-09-03 20:11:55 +00:00
|
|
|
Version: 8.3.2
|
|
|
|
Release: 1%{?dist}
|
2013-04-19 16:54:39 +00:00
|
|
|
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/
|
2016-07-02 11:20:05 +00:00
|
|
|
Source0: https://github.com/python-pillow/Pillow/archive/%{version}/Pillow-%{version}.tar.gz
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-10-15 21:05:59 +00:00
|
|
|
# Don't error out if sphinx warnings occur
|
|
|
|
Patch0: python-pillow_spinxwarn.patch
|
2021-07-07 09:03:01 +00:00
|
|
|
# Drop sphinx plugin requirements which are not packaged for Fedora
|
|
|
|
Patch1: python-pillow_sphinx.patch
|
2020-10-15 21:05:59 +00:00
|
|
|
|
2013-03-06 23:44:37 +00:00
|
|
|
BuildRequires: freetype-devel
|
2018-03-07 12:26:38 +00:00
|
|
|
BuildRequires: gcc
|
2014-04-16 22:43:24 +00:00
|
|
|
BuildRequires: ghostscript
|
2018-03-07 12:26:38 +00:00
|
|
|
BuildRequires: lcms2-devel
|
2017-01-03 22:10:32 +00:00
|
|
|
BuildRequires: libimagequant-devel
|
2018-03-07 12:26:38 +00:00
|
|
|
BuildRequires: libjpeg-devel
|
2019-04-02 12:15:18 +00:00
|
|
|
BuildRequires: libraqm-devel
|
2018-03-07 12:26:38 +00:00
|
|
|
BuildRequires: libtiff-devel
|
|
|
|
BuildRequires: libwebp-devel
|
|
|
|
BuildRequires: openjpeg2-devel
|
|
|
|
BuildRequires: tk-devel
|
|
|
|
BuildRequires: zlib-devel
|
2014-01-07 09:40:38 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-cffi
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-numpy
|
|
|
|
BuildRequires: python%{python3_pkgversion}-olefile
|
2021-05-24 15:30:30 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
2020-08-09 09:44:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-qt5
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
2014-05-13 08:57:54 +00:00
|
|
|
%if 0%{?with_docs}
|
2021-01-19 02:25:18 +00:00
|
|
|
BuildRequires: make
|
2020-08-09 09:44:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx
|
2021-07-07 09:03:01 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx-copybutton
|
2020-08-09 09:44:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx_rtd_theme
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx-removed-in
|
2019-10-01 11:54:26 +00:00
|
|
|
%endif
|
2020-08-09 09:44:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-tkinter
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2014-01-07 09:40:38 +00:00
|
|
|
# For EpsImagePlugin.py
|
|
|
|
Requires: ghostscript
|
|
|
|
|
2018-01-03 10:42:14 +00:00
|
|
|
%global __provides_exclude_from ^%{python3_sitearch}/PIL/.*\\.so$
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
%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
|
|
|
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}
|
2013-03-06 23:44:37 +00:00
|
|
|
Summary: Python 3 image processing library
|
2020-08-09 09:44:21 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
|
|
|
Provides: python%{python3_pkgversion}-imaging = %{version}-%{release}
|
2017-01-03 22:10:32 +00:00
|
|
|
# For MicImagePlugin.py, FpxImagePlugin.py
|
2020-08-09 09:44:21 +00:00
|
|
|
Requires: python%{python3_pkgversion}-olefile
|
2016-07-02 11:20:05 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}
|
2016-02-10 12:24:58 +00:00
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}-devel
|
2016-07-02 11:20:05 +00:00
|
|
|
Summary: Development files for %{srcname}
|
2020-08-09 09:44:21 +00:00
|
|
|
Requires: python%{python3_pkgversion}-devel, libjpeg-devel, zlib-devel
|
|
|
|
Requires: python%{python3_pkgversion}-%{srcname}%{?_isa} = %{version}-%{release}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-devel}
|
|
|
|
Provides: python%{python3_pkgversion}-imaging-devel = %{version}-%{release}
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}-devel
|
2016-07-02 11:20:05 +00:00
|
|
|
Development files for %{srcname}.
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}-doc
|
2016-07-02 11:20:05 +00:00
|
|
|
Summary: Documentation for %{srcname}
|
2013-03-06 23:44:37 +00:00
|
|
|
BuildArch: noarch
|
2020-08-09 09:44:21 +00:00
|
|
|
Requires: python%{python3_pkgversion}-%{srcname} = %{version}-%{release}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-doc}
|
|
|
|
Provides: python%{python3_pkgversion}-imaging-doc = %{version}-%{release}
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}-doc
|
2016-07-02 11:20:05 +00:00
|
|
|
Documentation for %{srcname}.
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}-tk
|
2016-07-02 11:20:05 +00:00
|
|
|
Summary: Tk interface for %{srcname}
|
2020-08-09 09:44:21 +00:00
|
|
|
Requires: python%{python3_pkgversion}-tkinter
|
|
|
|
Requires: python%{python3_pkgversion}-%{srcname}%{?_isa} = %{version}-%{release}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-tk}
|
|
|
|
Provides: python%{python3_pkgversion}-imaging-tk = %{version}-%{release}
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}-tk
|
2016-07-02 11:20:05 +00:00
|
|
|
Tk interface for %{name}.
|
2013-04-19 16:54:39 +00:00
|
|
|
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-%{srcname}-qt
|
2016-07-02 11:20:05 +00:00
|
|
|
Summary: Qt %{srcname} image wrapper
|
2020-08-09 09:44:21 +00:00
|
|
|
Requires: python%{python3_pkgversion}-qt5
|
|
|
|
Requires: python%{python3_pkgversion}-%{srcname}%{?_isa} = %{version}-%{release}
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-qt}
|
|
|
|
Provides: python%{python3_pkgversion}-imaging-qt = %{version}-%{release}
|
2013-04-19 16:54:39 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-%{srcname}-qt
|
2016-07-02 11:20:05 +00:00
|
|
|
Qt %{srcname} image wrapper.
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2018-01-03 10:42:14 +00:00
|
|
|
%autosetup -p1 -n Pillow-%{version}
|
2014-10-02 20:25:50 +00:00
|
|
|
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
# Build Python 3 modules
|
2016-07-02 11:20:05 +00:00
|
|
|
%py3_build
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2014-05-13 08:57:54 +00:00
|
|
|
%if 0%{?with_docs}
|
2016-07-02 11:20:05 +00:00
|
|
|
PYTHONPATH=$PWD/build/%py3_libbuilddir make -C docs html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
|
|
|
|
rm -f docs/_build_py3/html/.buildinfo
|
2019-10-01 11:54:26 +00:00
|
|
|
%endif
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
# Install Python 3 modules
|
2014-01-01 23:36:31 +00:00
|
|
|
install -d %{buildroot}/%{py3_incdir}/Imaging
|
2018-01-03 10:42:14 +00:00
|
|
|
install -m 644 src/libImaging/*.h %{buildroot}/%{py3_incdir}/Imaging
|
2016-07-02 11:20:05 +00:00
|
|
|
%py3_install
|
2013-03-06 23:44:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
# Check Python 3 modules
|
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
|
2021-05-24 14:34:23 +00:00
|
|
|
cp -a $PWD/selftest.py $PWD/build/%py3_libbuilddir/selftest.py
|
2013-07-03 21:41:37 +00:00
|
|
|
pushd build/%py3_libbuilddir
|
2014-04-16 22:09:15 +00:00
|
|
|
PYTHONPATH=$PWD %{__python3} selftest.py
|
2013-03-06 23:44:37 +00:00
|
|
|
popd
|
2021-05-24 15:30:30 +00:00
|
|
|
%ifnarch s390x
|
2021-05-24 14:34:23 +00:00
|
|
|
%pytest -v -k "not test_qt_image_qapplication"
|
2021-05-24 15:30:30 +00:00
|
|
|
%else
|
|
|
|
%pytest -v -k "not test_qt_image_qapplication" || :
|
|
|
|
%endif
|
2021-05-24 14:34:23 +00:00
|
|
|
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}
|
2020-10-15 21:05:59 +00:00
|
|
|
%doc README.md CHANGES.rst
|
2015-01-12 14:12:16 +00:00
|
|
|
%license docs/COPYING
|
2021-01-09 10:45:34 +00:00
|
|
|
%{python3_sitearch}/PIL/
|
|
|
|
%{python3_sitearch}/Pillow-%{version}-py%{python3_version}.egg-info
|
2013-04-19 16:54:39 +00:00
|
|
|
# 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*
|
2013-04-19 16:54:39 +00:00
|
|
|
%exclude %{python3_sitearch}/PIL/ImageQt*
|
2017-02-15 16:55:47 +00:00
|
|
|
%exclude %{python3_sitearch}/PIL/__pycache__/ImageTk*
|
|
|
|
%exclude %{python3_sitearch}/PIL/__pycache__/SpiderImagePlugin*
|
|
|
|
%exclude %{python3_sitearch}/PIL/__pycache__/ImageQt*
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}-devel
|
2013-03-06 23:44:37 +00:00
|
|
|
%{py3_incdir}/Imaging/
|
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}-doc
|
2014-05-13 08:57:54 +00:00
|
|
|
%if 0%{?with_docs}
|
2016-07-02 11:20:05 +00:00
|
|
|
%doc docs/_build_py3/html
|
2019-10-01 11:54:26 +00:00
|
|
|
%endif
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}-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*
|
2017-02-15 16:55:47 +00:00
|
|
|
%{python3_sitearch}/PIL/__pycache__/ImageTk*
|
|
|
|
%{python3_sitearch}/PIL/__pycache__/SpiderImagePlugin*
|
2013-04-19 16:54:39 +00:00
|
|
|
|
2020-08-09 09:44:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-%{srcname}-qt
|
2013-04-19 16:54:39 +00:00
|
|
|
%{python3_sitearch}/PIL/ImageQt*
|
2017-02-15 16:55:47 +00:00
|
|
|
%{python3_sitearch}/PIL/__pycache__/ImageQt*
|
2013-03-06 23:44:37 +00:00
|
|
|
|
2016-07-02 11:20:05 +00:00
|
|
|
|
2013-03-06 23:44:37 +00:00
|
|
|
%changelog
|
2021-09-03 20:11:55 +00:00
|
|
|
* Fri Sep 03 2021 Sandro Mani <manisandro@gmail.com> - 8.3.2-1
|
|
|
|
- Update to 8.3.2
|
|
|
|
|
2021-07-23 08:13:46 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-07 09:03:01 +00:00
|
|
|
* Wed Jul 07 2021 Sandro Mani <manisandro@gmail.com> - 8.3.1-1
|
|
|
|
- Update to 8.3.1
|
|
|
|
|
2021-06-03 21:45:09 +00:00
|
|
|
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 8.2.0-3
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-05-24 14:34:23 +00:00
|
|
|
* Mon May 24 2021 Sandro Mani <manisandro@gmail.com> - 8.2.0-2
|
|
|
|
- Run full test suite
|
|
|
|
|
2021-04-02 05:50:40 +00:00
|
|
|
* Fri Apr 02 2021 Sandro Mani <manisandro@gmail.com> - 8.2.0-1
|
|
|
|
- Update to 8.2.0
|
|
|
|
|
2021-03-06 10:02:46 +00:00
|
|
|
* Sat Mar 06 2021 Sandro Mani <manisandro@gmail.com> - 8.1.2-1
|
|
|
|
- Update to 8.1.2
|
|
|
|
|
2021-03-02 14:26:38 +00:00
|
|
|
* Tue Mar 02 2021 Sandro Mani <manisandro@gmail.com> - 8.1.1-1
|
|
|
|
- Update to 8.1.1
|
|
|
|
|
2021-01-27 12:18:08 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 8.1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-09 10:13:56 +00:00
|
|
|
* Sat Jan 09 2021 Robert-André Mauchin <zebob.m@gmail.com> - 8.1.0-2
|
|
|
|
- Add patch to fix the import error occurring with Python 3.10
|
|
|
|
- Fix: rhbz#1904379
|
|
|
|
|
2021-01-03 10:12:44 +00:00
|
|
|
* Sun Jan 03 2021 Sandro Mani <manisandro@gmail.com> - 8.1.0-1
|
|
|
|
- Update to 8.1.0
|
|
|
|
|
2020-10-23 12:12:25 +00:00
|
|
|
* Fri Oct 23 2020 Sandro Mani <manisandro@gmail.com> - 8.0.1-1
|
|
|
|
- Update to 8.0.1
|
|
|
|
|
2020-10-15 21:05:59 +00:00
|
|
|
* Thu Oct 15 2020 Sandro Mani <manisandro@gmail.com> - 8.0.0-1
|
|
|
|
- Update to 8.0.0
|
|
|
|
|
2020-07-29 02:47:34 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-30 21:18:45 +00:00
|
|
|
* Tue Jun 30 2020 Sandro Mani <manisandro@gmail.com> - 7.2.0-1
|
|
|
|
- Update to 7.2.0
|
|
|
|
|
2020-05-23 10:32:22 +00:00
|
|
|
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 7.1.2-2
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-04-25 19:41:35 +00:00
|
|
|
* Sat Apr 25 2020 Sandro Mani <manisandro@gmail.com> - 7.1.2-1
|
|
|
|
- Update to 7.1.2
|
|
|
|
|
2020-04-21 15:57:49 +00:00
|
|
|
* Tue Apr 21 2020 Charalampos Stratakis <cstratak@redhat.com> - 7.1.1-2
|
|
|
|
- Fix html docs build failure with Sphinx3 (rhbz#1823884)
|
|
|
|
|
2020-04-02 18:01:25 +00:00
|
|
|
* Thu Apr 02 2020 Sandro Mani <manisandro@gmail.com> - 7.1.1-1
|
|
|
|
- Update to 7.1.1
|
|
|
|
|
2020-01-30 14:04:16 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-07 07:24:45 +00:00
|
|
|
* Tue Jan 07 2020 Sandro Mani <manisandro@gmail.com> - 7.0.0-1
|
|
|
|
- Update to 7.0.0
|
|
|
|
- Drop python2 packages
|
|
|
|
|
2019-10-21 14:21:54 +00:00
|
|
|
* Mon Oct 21 2019 Sandro Mani <manisandro@gmail.com> - 6.2.1-1
|
|
|
|
- Update to 6.2.1
|
|
|
|
|
2019-10-07 08:42:41 +00:00
|
|
|
* Mon Oct 07 2019 Petr Viktorin <pviktori@redhat.com> - 6.2.0-2
|
|
|
|
- Remove optional build dependency on python2-cffi
|
|
|
|
|
2019-10-01 11:54:26 +00:00
|
|
|
* Tue Oct 01 2019 Sandro Mani <manisandro@gmail.com> - 6.2.0-1
|
|
|
|
- Update to 6.2.0
|
|
|
|
|
2019-08-16 16:51:38 +00:00
|
|
|
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 6.1.0-4
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-12 15:23:17 +00:00
|
|
|
* Mon Aug 12 2019 Sandro Mani <manisandro@gmail.com> - 6.1.0-3
|
|
|
|
- Drop python2-pillow-qt, python2-pillow-tk
|
|
|
|
|
2019-07-26 15:11:48 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-01 13:52:09 +00:00
|
|
|
* Mon Jul 01 2019 Sandro Mani <manisandro@gmail.com> - 6.1.0-1
|
|
|
|
- Update to 6.1.0
|
|
|
|
|
2019-05-31 23:52:40 +00:00
|
|
|
* Fri May 31 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 6.0.0-2
|
|
|
|
- Fix broken Python/C interop on s390x
|
|
|
|
|
2019-04-02 12:15:18 +00:00
|
|
|
* Tue Apr 02 2019 Sandro Mani <manisandro@gmail.com> - 6.0.0-1
|
|
|
|
- Update to 6.0.0
|
|
|
|
|
2019-03-10 22:32:25 +00:00
|
|
|
* Sun Mar 10 2019 Sandro Mani <manisandro@gmail.com> - 5.4.1-4
|
|
|
|
- Drop python2-pillow-doc
|
|
|
|
|
2019-03-04 14:19:41 +00:00
|
|
|
* Mon Mar 04 2019 Yatin Karel <ykarel@redhat.com> - 5.4.1-3
|
|
|
|
- Fix python3 conditional
|
|
|
|
|
2019-02-02 08:20:48 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-07 10:52:31 +00:00
|
|
|
* Mon Jan 07 2019 Sandro Mani <manisandro@gmail.com> - 5.4.1-1
|
|
|
|
- Update to 5.4.1
|
|
|
|
|
2018-10-01 10:29:29 +00:00
|
|
|
* Mon Oct 01 2018 Sandro Mani <manisandro@gmail.com> - 5.3.0-1
|
|
|
|
- Update to 5.3.0
|
|
|
|
|
2018-07-14 01:24:51 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-02 16:23:38 +00:00
|
|
|
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 5.2.0-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-07-02 08:49:56 +00:00
|
|
|
* Mon Jul 02 2018 Sandro Mani <manisandro@gmail.com> - 5.2.0-1
|
|
|
|
- Update to 5.2.0
|
|
|
|
|
2018-06-27 10:34:04 +00:00
|
|
|
* Wed Jun 27 2018 Miro Hrončok <mhroncok@redhat.com> - 5.1.1-3
|
|
|
|
- Fix the tkinter dependency
|
|
|
|
|
2018-06-16 13:28:09 +00:00
|
|
|
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 5.1.1-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-04-25 15:41:55 +00:00
|
|
|
* Wed Apr 25 2018 Sandro Mani <manisandro@gmail.com> - 5.1.1-1
|
|
|
|
- Update to 5.1.1
|
|
|
|
|
2018-04-05 11:01:32 +00:00
|
|
|
* Thu Apr 05 2018 Sandro Mani <manisandro@gmail.com> - 5.1.0-1
|
|
|
|
- Update to 5.1.0
|
|
|
|
|
2018-03-07 12:26:38 +00:00
|
|
|
* Wed Mar 07 2018 Sandro Mani <manisandro@gmail.com> - 5.0.0-3
|
|
|
|
- Add missing BR: gcc
|
|
|
|
|
2018-02-09 09:48:32 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-03 10:42:14 +00:00
|
|
|
* Wed Jan 03 2018 Sandro Mani <manisandro@gmail.com> - 5.0.0-1
|
|
|
|
- Update to 5.0.0
|
|
|
|
|
2017-10-03 10:18:55 +00:00
|
|
|
* Tue Oct 03 2017 Sandro Mani <manisandro@gmail.com> - 4.3.0-1
|
|
|
|
- Update to 4.3.0
|
|
|
|
|
2017-09-05 21:24:48 +00:00
|
|
|
* Tue Sep 05 2017 Troy Dawson <tdawson@redhat.com> - 4.2.1-5
|
|
|
|
- Cleanup spec file conditionals
|
|
|
|
|
2017-08-03 06:53:10 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 11:18:01 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-07 11:11:13 +00:00
|
|
|
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.2.1-2
|
|
|
|
- Rebuild due to bug in RPM (RHBZ #1468476)
|
|
|
|
|
2017-07-06 21:14:51 +00:00
|
|
|
* Thu Jul 06 2017 Sandro Mani <manisandro@gmail.com> - 4.2.1-1
|
|
|
|
- Update to 4.2.1
|
|
|
|
|
2017-07-01 20:48:51 +00:00
|
|
|
* Sat Jul 01 2017 Sandro Mani <manisandro@gmail.com> - 4.2.0-1
|
|
|
|
- Update to 4.2.0
|
|
|
|
|
2017-04-28 21:24:27 +00:00
|
|
|
* Fri Apr 28 2017 Sandro Mani <manisandro@gmail.com> - 4.1.1-1
|
|
|
|
- Update to 4.1.1
|
|
|
|
|
2017-04-05 12:47:52 +00:00
|
|
|
* Wed Apr 05 2017 Sandro Mani <manisandro@gmail.com> - 4.1.0-1
|
|
|
|
- Update to 4.1.0
|
|
|
|
|
2017-02-15 16:55:47 +00:00
|
|
|
* Wed Feb 15 2017 Sandro Mani <manisandro@gmail.com> - 4.0.0-3
|
|
|
|
- Fix some __pycache__ files in wrong subpackage (#1422606)
|
|
|
|
|
2017-02-01 18:28:41 +00:00
|
|
|
* Wed Feb 01 2017 Sandro Mani <manisandro@gmail.com> - 4.0.0-2
|
|
|
|
- Rebuild (libwebp)
|
|
|
|
|
2017-01-03 22:10:32 +00:00
|
|
|
* Tue Jan 03 2017 Sandro Mani <manisandro@gmail.com> - 4.0.0-1
|
|
|
|
- Update to 4.0.0
|
|
|
|
|
2016-12-13 03:17:47 +00:00
|
|
|
* Mon Dec 12 2016 Miro Hrončok <mhroncok@redhat.com> - 3.4.2-3
|
|
|
|
- Enable docs build
|
|
|
|
|
2016-12-12 21:52:05 +00:00
|
|
|
* Mon Dec 12 2016 Miro Hrončok <mhroncok@redhat.com> - 3.4.2-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-10-19 17:15:47 +00:00
|
|
|
* Wed Oct 19 2016 Sandro Mani <manisandro@gmail.com> - 3.4.2-1
|
|
|
|
- Update to 3.4.2
|
|
|
|
|
2016-10-04 15:33:02 +00:00
|
|
|
* Tue Oct 04 2016 Sandro Mani <manisandro@gmail.com> - 3.4.1-1
|
|
|
|
- Update to 3.4.1
|
|
|
|
|
2016-10-03 18:55:53 +00:00
|
|
|
* Mon Oct 03 2016 Sandro Mani <manisandro@gmail.com> - 3.4.0-1
|
|
|
|
- Update to 3.4.0
|
|
|
|
|
2016-08-18 21:34:35 +00:00
|
|
|
* Thu Aug 18 2016 Sandro Mani <manisandro@gmail.com> - 3.3.1-1
|
|
|
|
- Update to 3.3.1
|
|
|
|
|
2016-07-19 10:58:20 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-07-02 11:20:05 +00:00
|
|
|
* Sat Jul 02 2016 Sandro Mani <manisandro@gmail.com> - 3.3.0-1
|
|
|
|
- Update to 3.3.0
|
|
|
|
- Modernize spec
|
|
|
|
|
2016-04-01 15:58:33 +00:00
|
|
|
* Fri Apr 01 2016 Sandro Mani <manisandro@gmail.com> - 3.2.0-1
|
|
|
|
- Update to 3.2.0
|
|
|
|
|
2016-02-10 12:24:58 +00:00
|
|
|
* Wed Feb 10 2016 Sandro Mani <manisandro@gmail.com> - 3.1.1-3
|
|
|
|
- Fix broken python3-pillow package description
|
|
|
|
|
2016-02-07 13:53:32 +00:00
|
|
|
* Sun Feb 07 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 3.1.1-2
|
|
|
|
- Fix provides
|
|
|
|
|
2016-02-04 19:33:30 +00:00
|
|
|
* Thu Feb 04 2016 Sandro Mani <manisandro@gmail.com> - 3.1.1-1
|
|
|
|
- Update to 3.1.1
|
|
|
|
- Fixes CVE-2016-0740, CVE-2016-0775
|
|
|
|
|
2016-01-11 16:14:18 +00:00
|
|
|
* Mon Jan 11 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 3.1.0-2
|
|
|
|
- Fix executable files in doc package bringing in python 2 for the python3 doc
|
|
|
|
packages
|
|
|
|
|
2016-01-04 14:11:12 +00:00
|
|
|
* Mon Jan 04 2016 Sandro Mani <manisandro@gmail.com> - 3.1.0-1
|
|
|
|
- Update to 3.1.0
|
|
|
|
|
2015-12-28 23:33:55 +00:00
|
|
|
* Tue Dec 29 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 3.0.0-5
|
|
|
|
- Build with docs
|
|
|
|
|
2015-12-28 14:24:51 +00:00
|
|
|
* Mon Dec 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 3.0.0-4
|
|
|
|
- Rebuilt for libwebp soname bump
|
|
|
|
|
2015-10-14 09:06:12 +00:00
|
|
|
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 3.0.0-3
|
|
|
|
- Rebuilt for Python3.5 rebuild with docs
|
|
|
|
|
2015-10-13 11:22:39 +00:00
|
|
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 3.0.0-2
|
|
|
|
- Rebuilt for Python3.5 rebuild without docs
|
|
|
|
|
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
|
2015-07-29 16:35:52 +00:00
|
|
|
- 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
|
|
|
|
|
2015-06-18 20:16:56 +00:00
|
|
|
* 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
|
|
|
|
|
2014-08-19 23:46:20 +00:00
|
|
|
* 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)
|
|
|
|
|
2014-08-17 21:32:17 +00:00
|
|
|
* 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
|
|
|
|
|
2014-06-07 22:04:58 +00:00
|
|
|
* 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
|
2014-05-27 22:18:45 +00:00
|
|
|
- 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
|
|
|
|
|
2014-05-23 12:40:12 +00:00
|
|
|
* Fri May 23 2014 Dan Horák <dan[at]danny.cz> - 2.4.0-8
|
|
|
|
- skip jpeg2k tests on big endian arches (#1100762)
|
|
|
|
|
2014-05-21 10:34:01 +00:00
|
|
|
* 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.
|
|
|
|
|
2014-05-13 08:57:54 +00:00
|
|
|
* 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
|
|
|
|
|
2014-04-22 12:03:04 +00:00
|
|
|
* Tue Apr 22 2014 Sandro Mani <manisandro@gmail.com> - 2.4.0-3
|
|
|
|
- Add patch: Have the tempfile use a suffix with a dot
|
|
|
|
|
2014-04-16 22:09:15 +00:00
|
|
|
* 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)
|
|
|
|
|
2014-01-07 09:40:38 +00:00
|
|
|
* 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
|
|
|
|
2013-10-22 22:17:03 +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
|
|
|
|
|
2013-07-30 14:34:46 +00:00
|
|
|
* 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
|
|
|
|
|
2013-04-25 16:41:16 +00:00
|
|
|
* 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.
|
|
|
|
|
2013-04-19 16:54:39 +00:00
|
|
|
* 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
|
|
|
|
|
2013-04-07 17:26:34 +00:00
|
|
|
* 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
|
|
|
|
|
2013-03-22 17:19:06 +00:00
|
|
|
* 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
|
2013-03-22 01:19:09 +00:00
|
|
|
- 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
|