diff --git a/.gitignore b/.gitignore deleted file mode 100644 index c967152..0000000 --- a/.gitignore +++ /dev/null @@ -1,71 +0,0 @@ -/python-imaging-Pillow-1.7.8-137-g7866759.tar.gz -/python-imaging-Pillow-2.0.0-11-g2f4207c.tar.gz -/python-imaging-Pillow-2.0.0-26-g2e88848.tar.gz -/python-imaging-Pillow-2.0.0-28-gde210a2.tar.gz -/python-imaging-Pillow-2.0.0-58-g93a488e.tar.gz -/python-imaging-Pillow-2.0.0-105-gd1c6db8.tar.gz -/python-imaging-Pillow-2.1.0-0-g75af7e0.tar.gz -/python-imaging-Pillow-2.2.1-0-g3c2496e.tar.gz -/python-imaging-Pillow-2.3.0-0-gb1b88cf.tar.gz -/python-imaging-Pillow-2.3.1-0-gb8d4895.tar.gz -/python-imaging-Pillow-2.4.0-0-g72de37c.tar.gz -/python-pillow-Pillow-2.5.0-0-g80d6137.tar.gz -/python-pillow-Pillow-2.5.1-0-g1ab78b8.tar.gz -/python-pillow-Pillow-2.5.2-0-g4081f9f.tar.gz -/python-pillow-Pillow-2.5.3-0-g68c6904.tar.gz -/python-pillow-Pillow-2.6.0-0-g9634e43.tar.gz -/python-pillow-Pillow-2.6.1-0-g4a8471d.tar.gz -/python-pillow-Pillow-2.7.0-0-g0f05eb2.tar.gz -/python-pillow-Pillow-2.8.0-0-gd754598.tar.gz -/python-pillow-Pillow-2.8.1-0-g3f09b8f.tar.gz -/python-pillow-Pillow-2.8.2-0-g0222a05.tar.gz -/python-pillow-Pillow-2.9.0-0-g80672b6.tar.gz -/python-pillow-Pillow-3.0.0-0-g0177cce.tar.gz -/python-pillow-Pillow-3.1.0-0-gfff5536.tar.gz -/python-pillow-Pillow-3.1.1-0-geb72bf8.tar.gz -/python-pillow-Pillow-3.2.0-0-g344cb70.tar.gz -/Pillow-3.3.0.tar.gz -/Pillow-3.3.1.tar.gz -/Pillow-3.4.0.tar.gz -/Pillow-3.4.1.tar.gz -/Pillow-3.4.2.tar.gz -/Pillow-4.0.0.tar.gz -/Pillow-4.1.0.tar.gz -/Pillow-4.1.1.tar.gz -/Pillow-4.2.0.tar.gz -/Pillow-4.2.1.tar.gz -/Pillow-4.3.0.tar.gz -/Pillow-5.0.0.tar.gz -/Pillow-5.1.0.tar.gz -/Pillow-5.1.1.tar.gz -/Pillow-5.2.0.tar.gz -/Pillow-5.3.0.tar.gz -/Pillow-5.4.1.tar.gz -/Pillow-6.0.0.tar.gz -/Pillow-6.1.0.tar.gz -/Pillow-6.2.0.tar.gz -/python-pillow-6.2.1-1.fc32.src.rpm -/Pillow-6.2.1.tar.gz -/Pillow-7.0.0.tar.gz -/Pillow-7.1.1.tar.gz -/Pillow-7.1.2.tar.gz -/Pillow-7.2.0.tar.gz -/Pillow-8.0.0.tar.gz -/Pillow-8.0.1.tar.gz -/Pillow-8.1.0.tar.gz -/Pillow-8.1.1.tar.gz -/Pillow-8.1.2.tar.gz -/Pillow-8.2.0.tar.gz -/Pillow-8.3.1.tar.gz -/Pillow-8.3.2.tar.gz -/Pillow-8.4.0.tar.gz -/Pillow-9.0.0.tar.gz -/Pillow-9.0.1.tar.gz -/Pillow-9.1.0.tar.gz -/Pillow-9.1.1.tar.gz -/Pillow-9.2.0.tar.gz -/Pillow-9.3.0.tar.gz -/Pillow-9.4.0.tar.gz -/Pillow-9.5.0.tar.gz -/Pillow-10.0.0.tar.gz -/Pillow-10.0.1.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..7d3eda1 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +python-pillow package is retired on branch c10s for BAKERY-412 \ No newline at end of file diff --git a/pillow_mingw.patch b/pillow_mingw.patch deleted file mode 100644 index 6437682..0000000 --- a/pillow_mingw.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -rupN --no-dereference Pillow-10.0.1/setup.py Pillow-10.0.1-new/setup.py ---- Pillow-10.0.1/setup.py 2023-09-15 13:55:25.000000000 +0200 -+++ Pillow-10.0.1-new/setup.py 2023-09-18 09:36:57.608297698 +0200 -@@ -136,7 +136,7 @@ class RequiredDependencyException(Except - pass - - --PLATFORM_MINGW = os.name == "nt" and "GCC" in sys.version -+PLATFORM_MINGW = "mingw32" in os.getenv("CC", "") - - - def _dbg(s, tp=None): -@@ -509,7 +509,7 @@ class pil_build_ext(build_ext): - # - # add platform directories - -- if self.disable_platform_guessing: -+ if self.disable_platform_guessing or PLATFORM_MINGW: - pass - - elif sys.platform == "cygwin": -@@ -600,7 +600,7 @@ class pil_build_ext(build_ext): - # FIXME: check /opt/stuff directories here? - - # standard locations -- if not self.disable_platform_guessing: -+ if not self.disable_platform_guessing and not PLATFORM_MINGW: - _add_directory(library_dirs, "/usr/local/lib") - _add_directory(include_dirs, "/usr/local/include") - -@@ -842,7 +842,7 @@ class pil_build_ext(build_ext): - if feature.xcb: - libs.append(feature.xcb) - defs.append(("HAVE_XCB", None)) -- if sys.platform == "win32": -+ if sys.platform == "win32" or PLATFORM_MINGW: - libs.extend(["kernel32", "user32", "gdi32"]) - if struct.unpack("h", b"\0\1")[0] == 1: - defs.append(("WORDS_BIGENDIAN", None)) -@@ -857,6 +857,8 @@ class pil_build_ext(build_ext): - if feature.freetype: - srcs = [] - libs = ["freetype"] -+ if sys.platform == "win32" or PLATFORM_MINGW: -+ libs.extend(["dl"]) - defs = [] - if feature.raqm: - if not feature.want_vendor("raqm"): # using system Raqm -@@ -879,7 +881,7 @@ class pil_build_ext(build_ext): - - if feature.lcms: - extra = [] -- if sys.platform == "win32": -+ if sys.platform == "win32" or PLATFORM_MINGW: - extra.extend(["user32", "gdi32"]) - self._update_extension("PIL._imagingcms", [feature.lcms] + extra) - else: -@@ -898,7 +900,7 @@ class pil_build_ext(build_ext): - else: - self._remove_extension("PIL._webp") - -- tk_libs = ["psapi"] if sys.platform in ("win32", "cygwin") else [] -+ tk_libs = ["psapi"] if sys.platform in ("win32", "cygwin") or PLATFORM_MINGW else [] - self._update_extension("PIL._imagingtk", tk_libs) - - build_ext.build_extensions(self) -diff -rupN --no-dereference Pillow-10.0.1/src/libImaging/ImPlatform.h Pillow-10.0.1-new/src/libImaging/ImPlatform.h ---- Pillow-10.0.1/src/libImaging/ImPlatform.h 2023-09-15 13:55:25.000000000 +0200 -+++ Pillow-10.0.1-new/src/libImaging/ImPlatform.h 2023-09-18 09:36:57.608297698 +0200 -@@ -28,7 +28,7 @@ - #if defined(_WIN32) || defined(__CYGWIN__) /* WIN */ - - #define WIN32_LEAN_AND_MEAN --#include -+#include - - #ifdef __CYGWIN__ - #undef _WIN64 diff --git a/python-pillow.spec b/python-pillow.spec deleted file mode 100644 index 6a31395..0000000 --- a/python-pillow.spec +++ /dev/null @@ -1,805 +0,0 @@ -%global py3_incdir %(RPM_BUILD_ROOT= %{python3} -Ic 'import sysconfig; print(sysconfig.get_path("include"))') - -%global srcname pillow - -# Dependencies are missing to build the documentation -%bcond_with doc - -%if 0%{?rhel} || 0%{?flatpak} -%bcond_with mingw -%else -%bcond_without mingw -%endif - -Name: python-%{srcname} -Version: 10.0.1 -Release: 1%{?dist} -Summary: Python image processing library - -# License: see http://www.pythonware.com/products/pil/license.htm -License: MIT -URL: http://python-pillow.github.io/ -Source0: https://github.com/python-pillow/Pillow/archive/%{version}/Pillow-%{version}.tar.gz - -# MinGW build fixes -Patch0: pillow_mingw.patch - -BuildRequires: freetype-devel -BuildRequires: gcc -BuildRequires: ghostscript -BuildRequires: lcms2-devel -BuildRequires: libimagequant-devel -BuildRequires: libjpeg-devel -BuildRequires: libraqm-devel -BuildRequires: libtiff-devel -BuildRequires: libwebp-devel -BuildRequires: openjpeg2-devel -BuildRequires: tk-devel -BuildRequires: zlib-devel - -BuildRequires: python%{python3_pkgversion}-cffi -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-numpy -BuildRequires: python%{python3_pkgversion}-olefile -BuildRequires: python%{python3_pkgversion}-pytest -BuildRequires: python%{python3_pkgversion}-qt5 -BuildRequires: python%{python3_pkgversion}-setuptools -%if %{with doc} -BuildRequires: make -BuildRequires: python%{python3_pkgversion}-sphinx -BuildRequires: python%{python3_pkgversion}-sphinx-copybutton -BuildRequires: python%{python3_pkgversion}-sphinx_rtd_theme -BuildRequires: python%{python3_pkgversion}-sphinx-removed-in -%endif -BuildRequires: python%{python3_pkgversion}-tkinter - -%if %{with mingw} -BuildRequires: mingw32-filesystem >= 95 -BuildRequires: mingw32-gcc -BuildRequires: mingw32-python3 -BuildRequires: mingw32-python3-setuptools -BuildRequires: mingw32-dlfcn -BuildRequires: mingw32-freetype -BuildRequires: mingw32-lcms2 -BuildRequires: mingw32-libimagequant -BuildRequires: mingw32-libjpeg -BuildRequires: mingw32-libtiff -BuildRequires: mingw32-libwebp -BuildRequires: mingw32-openjpeg2 -BuildRequires: mingw32-tk -BuildRequires: mingw32-zlib - -BuildRequires: mingw64-filesystem >= 95 -BuildRequires: mingw64-gcc -BuildRequires: mingw64-python3 -BuildRequires: mingw64-python3-setuptools -BuildRequires: mingw64-dlfcn -BuildRequires: mingw64-freetype -BuildRequires: mingw64-lcms2 -BuildRequires: mingw64-libimagequant -BuildRequires: mingw64-libjpeg -BuildRequires: mingw64-libtiff -BuildRequires: mingw64-libwebp -BuildRequires: mingw64-openjpeg2 -BuildRequires: mingw64-tk -BuildRequires: mingw64-zlib -%endif - -# For EpsImagePlugin.py -Requires: ghostscript - -%global __provides_exclude_from ^%{python3_sitearch}/PIL/.*\\.so$ - -%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. - -There are four subpackages: tk (tk interface), qt (PIL image wrapper for Qt), -devel (development) and doc (documentation). - - -%package -n python%{python3_pkgversion}-%{srcname} -Summary: Python 3 image processing library -%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} -Provides: python%{python3_pkgversion}-imaging = %{version}-%{release} -# For MicImagePlugin.py, FpxImagePlugin.py -Requires: python%{python3_pkgversion}-olefile - -%description -n python%{python3_pkgversion}-%{srcname} -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). - - -%package -n python%{python3_pkgversion}-%{srcname}-devel -Summary: Development files for %{srcname} -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} - -%description -n python%{python3_pkgversion}-%{srcname}-devel -Development files for %{srcname}. - - -%package -n python%{python3_pkgversion}-%{srcname}-doc -Summary: Documentation for %{srcname} -BuildArch: noarch -Requires: python%{python3_pkgversion}-%{srcname} = %{version}-%{release} -%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-doc} -Provides: python%{python3_pkgversion}-imaging-doc = %{version}-%{release} - -%description -n python%{python3_pkgversion}-%{srcname}-doc -Documentation for %{srcname}. - - -%package -n python%{python3_pkgversion}-%{srcname}-tk -Summary: Tk interface for %{srcname} -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} - -%description -n python%{python3_pkgversion}-%{srcname}-tk -Tk interface for %{srcname}. - - -%package -n python%{python3_pkgversion}-%{srcname}-qt -Summary: Qt %{srcname} image wrapper -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} - -%description -n python%{python3_pkgversion}-%{srcname}-qt -Qt %{srcname} image wrapper. - - -%if %{with mingw} -%package -n mingw32-python3-%{srcname} -Summary: MinGW Windows Python2 %{srcname} library -BuildArch: noarch - -%description -n mingw32-python3-%{srcname} -MinGW Windows Python2 %{srcname} library. - - -%package -n mingw64-python3-%{srcname} -Summary: MinGW Windows Python2 %{srcname} library -BuildArch: noarch - -%description -n mingw64-python3-%{srcname} -MinGW Windows Python2 %{srcname} library. - - -%{?mingw_debug_package} -%endif - - -%prep -%autosetup -p1 -n Pillow-%{version} - - -%build -# Native build -%py3_build - -# MinGW build -%if %{with mingw} -PKG_CONFIG=mingw32-pkg-config %{mingw32_py3_build} -PKG_CONFIG=mingw64-pkg-config %{mingw64_py3_build} -%endif - -# Doc build -%if %{with doc} -PYTHONPATH=$(echo $PWD/build/lib.linux-*) make -C docs html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version -rm -f docs/_build_py3/html/.buildinfo -%endif - - -%install -# Native build -install -d %{buildroot}/%{py3_incdir}/Imaging -install -m 644 src/libImaging/*.h %{buildroot}/%{py3_incdir}/Imaging -%py3_install - -# MinGW build -%if %{with mingw} -install -d %{buildroot}/%{mingw32_py3_incdir}/Imaging -install -m 644 src/libImaging/*.h %{buildroot}/%{mingw32_py3_incdir}/Imaging - -install -d %{buildroot}/%{mingw64_py3_incdir}/Imaging -install -m 644 src/libImaging/*.h %{buildroot}/%{mingw64_py3_incdir}/Imaging - -%{mingw32_py3_install} -%{mingw64_py3_install} - -# Remove sample scripts -rm -rf %{buildroot}%{mingw32_bindir} -rm -rf %{buildroot}%{mingw64_bindir} -%endif - - -%if %{with mingw} -%mingw_debug_install_post -%endif - - -%check -# Check Python 3 modules -ln -s $PWD/Images $(echo $PWD/build/lib.linux-*)/Images -cp -R $PWD/Tests $(echo $PWD/build/lib.linux-*)/Tests -cp -a $PWD/selftest.py $(echo $PWD/build/lib.linux-*)/selftest.py -pushd build/lib.linux-* -PYTHONPATH=$PWD %{__python3} selftest.py -popd -%ifnarch s390x -%pytest -v -k "not test_qt_image_qapplication" || : -%else -%pytest -v -k "not test_qt_image_qapplication" || : -%endif - - -%files -n python%{python3_pkgversion}-%{srcname} -%doc README.md CHANGES.rst -%license docs/COPYING -%{python3_sitearch}/PIL/ -%{python3_sitearch}/Pillow-%{version}-py%{python3_version}.egg-info -# These are in subpackages -%exclude %{python3_sitearch}/PIL/_imagingtk* -%exclude %{python3_sitearch}/PIL/ImageTk* -%exclude %{python3_sitearch}/PIL/SpiderImagePlugin* -%exclude %{python3_sitearch}/PIL/ImageQt* -%exclude %{python3_sitearch}/PIL/__pycache__/ImageTk* -%exclude %{python3_sitearch}/PIL/__pycache__/SpiderImagePlugin* -%exclude %{python3_sitearch}/PIL/__pycache__/ImageQt* - -%files -n python%{python3_pkgversion}-%{srcname}-devel -%{py3_incdir}/Imaging/ - -%if %{with doc} -%files -n python%{python3_pkgversion}-%{srcname}-doc -%doc docs/_build_py3/html -%endif - -%files -n python%{python3_pkgversion}-%{srcname}-tk -%{python3_sitearch}/PIL/_imagingtk* -%{python3_sitearch}/PIL/ImageTk* -%{python3_sitearch}/PIL/SpiderImagePlugin* -%{python3_sitearch}/PIL/__pycache__/ImageTk* -%{python3_sitearch}/PIL/__pycache__/SpiderImagePlugin* - -%files -n python%{python3_pkgversion}-%{srcname}-qt -%{python3_sitearch}/PIL/ImageQt* -%{python3_sitearch}/PIL/__pycache__/ImageQt* - -%if %{with mingw} -%files -n mingw32-python3-%{srcname} -%license docs/COPYING -%{mingw32_python3_sitearch}/PIL/ -%{mingw32_python3_sitearch}/Pillow-%{version}-py%{mingw32_python3_version}.egg-info/ -%{mingw32_py3_incdir}/Imaging/ - -%files -n mingw64-python3-%{srcname} -%license docs/COPYING -%{mingw64_python3_sitearch}/PIL/ -%{mingw64_python3_sitearch}/Pillow-%{version}-py%{mingw64_python3_version}.egg-info/ -%{mingw64_py3_incdir}/Imaging/ -%endif - - -%changelog -* Mon Sep 18 2023 Sandro Mani - 10.0.1-1 -- Update to 10.0.1 - -* Fri Jul 21 2023 Fedora Release Engineering - 10.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Wed Jul 05 2023 Sandro Mani - 10.0.0-1 -- Update to 10.0.0 - -* Fri Jun 16 2023 Python Maint - 9.5.0-2 -- Rebuilt for Python 3.12 - -* Mon Apr 03 2023 Sandro Mani - 9.5.0-1 -- Update to 9.5.0 - -* Sat Mar 04 2023 Sandro Mani - 9.4.0-3 -- Rebuild (libimagequant) - -* Fri Jan 20 2023 Fedora Release Engineering - 9.4.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Mon Jan 02 2023 Sandro Mani - 9.4.0-1 -- Update to 9.4.0 - -* Mon Oct 31 2022 Sandro Mani - 9.3.0-2 -- Rebuild (mingw-python-3.11) - -* Sun Oct 30 2022 Sandro Mani - 9.3.0-1 -- Update to 9.3.0 - -* Fri Jul 22 2022 Fedora Release Engineering - 9.2.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sun Jul 03 2022 Sandro Mani - 9.2.0-1 -- Update to 9.2.0 - -* Wed Jun 22 2022 Charalampos Stratakis - 9.1.1-4 -- Fix FTBFS with setuptools >= 62.1 -Resolves: rhbz#2097095 - -* Mon Jun 13 2022 Python Maint - 9.1.1-3 -- Rebuilt for Python 3.11 - -* Fri May 20 2022 Sandro Mani - 9.1.1-2 -- Rebuild for gdal-3.5.0 and/or openjpeg-2.5.0 - -* Fri May 20 2022 Sandro Mani - 9.1.1-1 -- Update to 9.1.1 - -* Tue Apr 05 2022 Sandro Mani - 9.1.0-1 -- Update to 9.1.0 - -* Fri Mar 25 2022 Sandro Mani - 9.0.1-7 -- Rebuild with mingw-gcc-12 - -* Thu Mar 03 2022 Sandro Mani - 9.0.1-6 -- Fix name -> srcname - -* Thu Feb 24 2022 Sandro Mani - 9.0.1-5 -- Make mingw subpackages noarch - -* Thu Feb 24 2022 Sandro Mani - 9.0.1-4 -- Add mingw subpackages - -* Thu Feb 03 2022 Sandro Mani - 9.0.1-1 -- Update to 9.0.1 - -* Fri Jan 21 2022 Fedora Release Engineering - 9.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Mon Jan 03 2022 Sandro Mani - 9.0.0-1 -- Update to 9.0.0 - -* Fri Oct 15 2021 Sandro Mani - 8.4.0-1 -- Update to 8.4.0 - -* Fri Sep 03 2021 Sandro Mani - 8.3.2-1 -- Update to 8.3.2 - -* Fri Jul 23 2021 Fedora Release Engineering - 8.3.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jul 07 2021 Sandro Mani - 8.3.1-1 -- Update to 8.3.1 - -* Thu Jun 03 2021 Python Maint - 8.2.0-3 -- Rebuilt for Python 3.10 - -* Mon May 24 2021 Sandro Mani - 8.2.0-2 -- Run full test suite - -* Fri Apr 02 2021 Sandro Mani - 8.2.0-1 -- Update to 8.2.0 - -* Sat Mar 06 2021 Sandro Mani - 8.1.2-1 -- Update to 8.1.2 - -* Tue Mar 02 2021 Sandro Mani - 8.1.1-1 -- Update to 8.1.1 - -* Wed Jan 27 2021 Fedora Release Engineering - 8.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Jan 09 2021 Robert-André Mauchin - 8.1.0-2 -- Add patch to fix the import error occurring with Python 3.10 -- Fix: rhbz#1904379 - -* Sun Jan 03 2021 Sandro Mani - 8.1.0-1 -- Update to 8.1.0 - -* Fri Oct 23 2020 Sandro Mani - 8.0.1-1 -- Update to 8.0.1 - -* Thu Oct 15 2020 Sandro Mani - 8.0.0-1 -- Update to 8.0.0 - -* Wed Jul 29 2020 Fedora Release Engineering - 7.2.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jun 30 2020 Sandro Mani - 7.2.0-1 -- Update to 7.2.0 - -* Sat May 23 2020 Miro Hrončok - 7.1.2-2 -- Rebuilt for Python 3.9 - -* Sat Apr 25 2020 Sandro Mani - 7.1.2-1 -- Update to 7.1.2 - -* Tue Apr 21 2020 Charalampos Stratakis - 7.1.1-2 -- Fix html docs build failure with Sphinx3 (rhbz#1823884) - -* Thu Apr 02 2020 Sandro Mani - 7.1.1-1 -- Update to 7.1.1 - -* Thu Jan 30 2020 Fedora Release Engineering - 7.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Jan 07 2020 Sandro Mani - 7.0.0-1 -- Update to 7.0.0 -- Drop python2 packages - -* Mon Oct 21 2019 Sandro Mani - 6.2.1-1 -- Update to 6.2.1 - -* Mon Oct 07 2019 Petr Viktorin - 6.2.0-2 -- Remove optional build dependency on python2-cffi - -* Tue Oct 01 2019 Sandro Mani - 6.2.0-1 -- Update to 6.2.0 - -* Fri Aug 16 2019 Miro Hrončok - 6.1.0-4 -- Rebuilt for Python 3.8 - -* Mon Aug 12 2019 Sandro Mani - 6.1.0-3 -- Drop python2-pillow-qt, python2-pillow-tk - -* Fri Jul 26 2019 Fedora Release Engineering - 6.1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Jul 01 2019 Sandro Mani - 6.1.0-1 -- Update to 6.1.0 - -* Fri May 31 2019 Elliott Sales de Andrade - 6.0.0-2 -- Fix broken Python/C interop on s390x - -* Tue Apr 02 2019 Sandro Mani - 6.0.0-1 -- Update to 6.0.0 - -* Sun Mar 10 2019 Sandro Mani - 5.4.1-4 -- Drop python2-pillow-doc - -* Mon Mar 04 2019 Yatin Karel - 5.4.1-3 -- Fix python3 conditional - -* Sat Feb 02 2019 Fedora Release Engineering - 5.4.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Mon Jan 07 2019 Sandro Mani - 5.4.1-1 -- Update to 5.4.1 - -* Mon Oct 01 2018 Sandro Mani - 5.3.0-1 -- Update to 5.3.0 - -* Sat Jul 14 2018 Fedora Release Engineering - 5.2.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Mon Jul 02 2018 Miro Hrončok - 5.2.0-2 -- Rebuilt for Python 3.7 - -* Mon Jul 02 2018 Sandro Mani - 5.2.0-1 -- Update to 5.2.0 - -* Wed Jun 27 2018 Miro Hrončok - 5.1.1-3 -- Fix the tkinter dependency - -* Sat Jun 16 2018 Miro Hrončok - 5.1.1-2 -- Rebuilt for Python 3.7 - -* Wed Apr 25 2018 Sandro Mani - 5.1.1-1 -- Update to 5.1.1 - -* Thu Apr 05 2018 Sandro Mani - 5.1.0-1 -- Update to 5.1.0 - -* Wed Mar 07 2018 Sandro Mani - 5.0.0-3 -- Add missing BR: gcc - -* Fri Feb 09 2018 Fedora Release Engineering - 5.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jan 03 2018 Sandro Mani - 5.0.0-1 -- Update to 5.0.0 - -* Tue Oct 03 2017 Sandro Mani - 4.3.0-1 -- Update to 4.3.0 - -* Tue Sep 05 2017 Troy Dawson - 4.2.1-5 -- Cleanup spec file conditionals - -* Thu Aug 03 2017 Fedora Release Engineering - 4.2.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 4.2.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Jul 07 2017 Igor Gnatenko - 4.2.1-2 -- Rebuild due to bug in RPM (RHBZ #1468476) - -* Thu Jul 06 2017 Sandro Mani - 4.2.1-1 -- Update to 4.2.1 - -* Sat Jul 01 2017 Sandro Mani - 4.2.0-1 -- Update to 4.2.0 - -* Fri Apr 28 2017 Sandro Mani - 4.1.1-1 -- Update to 4.1.1 - -* Wed Apr 05 2017 Sandro Mani - 4.1.0-1 -- Update to 4.1.0 - -* Wed Feb 15 2017 Sandro Mani - 4.0.0-3 -- Fix some __pycache__ files in wrong subpackage (#1422606) - -* Wed Feb 01 2017 Sandro Mani - 4.0.0-2 -- Rebuild (libwebp) - -* Tue Jan 03 2017 Sandro Mani - 4.0.0-1 -- Update to 4.0.0 - -* Mon Dec 12 2016 Miro Hrončok - 3.4.2-3 -- Enable docs build - -* Mon Dec 12 2016 Miro Hrončok - 3.4.2-2 -- Rebuild for Python 3.6 - -* Wed Oct 19 2016 Sandro Mani - 3.4.2-1 -- Update to 3.4.2 - -* Tue Oct 04 2016 Sandro Mani - 3.4.1-1 -- Update to 3.4.1 - -* Mon Oct 03 2016 Sandro Mani - 3.4.0-1 -- Update to 3.4.0 - -* Thu Aug 18 2016 Sandro Mani - 3.3.1-1 -- Update to 3.3.1 - -* Tue Jul 19 2016 Fedora Release Engineering - 3.3.0-2 -- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages - -* Sat Jul 02 2016 Sandro Mani - 3.3.0-1 -- Update to 3.3.0 -- Modernize spec - -* Fri Apr 01 2016 Sandro Mani - 3.2.0-1 -- Update to 3.2.0 - -* Wed Feb 10 2016 Sandro Mani - 3.1.1-3 -- Fix broken python3-pillow package description - -* Sun Feb 07 2016 Igor Gnatenko - 3.1.1-2 -- Fix provides - -* Thu Feb 04 2016 Sandro Mani - 3.1.1-1 -- Update to 3.1.1 -- Fixes CVE-2016-0740, CVE-2016-0775 - -* Mon Jan 11 2016 Toshio Kuratomi - 3.1.0-2 -- Fix executable files in doc package bringing in python 2 for the python3 doc - packages - -* Mon Jan 04 2016 Sandro Mani - 3.1.0-1 -- Update to 3.1.0 - -* Tue Dec 29 2015 Igor Gnatenko - 3.0.0-5 -- Build with docs - -* Mon Dec 28 2015 Igor Gnatenko - 3.0.0-4 -- Rebuilt for libwebp soname bump - -* Wed Oct 14 2015 Robert Kuska - 3.0.0-3 -- Rebuilt for Python3.5 rebuild with docs - -* Tue Oct 13 2015 Robert Kuska - 3.0.0-2 -- Rebuilt for Python3.5 rebuild without docs - -* Fri Oct 02 2015 Sandro Mani - 3.0.0-1 -- Update to 3.0.0 - -* Wed Jul 29 2015 Sandro Mani - 2.9.0-2 -- Fix python3-pillow-tk Requires: tkinter -> python3-tkinter (#1248085) - -* Thu Jul 02 2015 Sandro Mani - 2.9.0-1 -- Update to 2.9.0 - -* Thu Jun 18 2015 Fedora Release Engineering - 2.8.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Jun 08 2015 Sandro Mani - 2.8.2-1 -- Update to 2.8.2 - -* Thu Apr 02 2015 Sandro Mani - 2.8.1-1 -- Update to 2.8.1 - -* Wed Apr 01 2015 Sandro Mani - 2.8.0-1 -- Update to 2.8.0 - -* Mon Jan 12 2015 Sandro Mani - 2.7.0-1 -- Update to 2.7.0 -- Drop sane subpackage, is in python-sane now -- Fix python3 headers directory -- Drop Obsoletes: python3-pillow on python3-pillow-qt - -* Mon Oct 13 2014 Sandro Mani - 2.6.1-1 -- Update to 2.6.1 - -* Thu Oct 02 2014 Sandro Mani - 2.6.0-1 -- Update to 2.6.0 - -* Wed Aug 20 2014 Sandro Mani - 2.5.3-3 -- Rebuilding again to resolve transient build error that caused BZ#1131723 - -* Tue Aug 19 2014 Stephen Gallagher - 2.5.3-2 -- Rebuilding to resolve transient build error that caused BZ#1131723 - -* Tue Aug 19 2014 Sandro Mani - 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 - 2.5.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Wed Aug 13 2014 Sandro Mani - 2.5.2-1 -- Update to 2.5.2 (Fix CVE-2014-3589, a DOS in the IcnsImagePlugin) - -* Sat Jul 26 2014 Sandro Mani - 2.5.1-2 -- Reenable jpeg2k tests on big endian arches - -* Tue Jul 15 2014 Sandro Mani - 2.5.1-1 -- Update to 2.5.1 - -* Wed Jul 02 2014 Sandro Mani - 2.5.0-1 -- Update to 2.5.0 - -* Sat Jun 07 2014 Fedora Release Engineering - 2.4.0-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 28 2014 Sandro Mani - 2.4.0-10 -- Rebuild with docs enabled -- Update python-pillow_openjpeg-2.1.0.patch - -* Tue May 27 2014 Sandro Mani - 2.4.0-9 -- Rebuild against openjpeg-2.1.0 - -* Fri May 23 2014 Dan Horák - 2.4.0-8 -- skip jpeg2k tests on big endian arches (#1100762) - -* Wed May 21 2014 Jaroslav Škarvada - 2.4.0-7 -- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86 - -* Tue May 13 2014 Bohuslav Kabrda - 2.4.0-6 -- Set with_docs to 1 to build docs. - -* Tue May 13 2014 Bohuslav Kabrda - 2.4.0-5 -- Bootstrap building sphinx docs because of circular dependency with sphinx. - -* Fri May 9 2014 Orion Poplawski - 2.4.0-4 -- Rebuild for Python 3.4 - -* Tue Apr 22 2014 Sandro Mani - 2.4.0-3 -- Add patch: Have the tempfile use a suffix with a dot - -* Thu Apr 17 2014 Sandro Mani - 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 - -* Wed Apr 02 2014 Sandro Mani - 2.4.0-1 -- Update to 2.4.0 - -* Wed Mar 19 2014 Sandro Mani - 2.3.1-1 -- Update to 2.3.1 (Fix insecure use of tempfile.mktemp (CVE-2014-1932 CVE-2014-1933)) - -* Thu Mar 13 2014 Jakub Dorňák - 2.3.0-5 -- python-pillow does not provide python3-imaging - (python3-pillow does) - -* Tue Jan 07 2014 Sandro Mani - 2.3.0-4 -- Add missing ghostscript Requires and BuildRequires - -* Mon Jan 06 2014 Sandro Mani - 2.3.0-3 -- Remove python-pillow_help-theme.patch, add python-sphinx-theme-better BR - -* Sun Jan 05 2014 Sandro Mani - 2.3.0-2 -- Rebuild with docs enabled -- Change lcms BR to lcms2 - -* Thu Jan 02 2014 Sandro Mani - 2.3.0-1 -- Update to 2.3.0 -- Build with doc disabled to break circular python-pillow -> python-sphinx -> python pillow dependency - -* Wed Oct 23 2013 Sandro Mani - 2.2.1-2 -- Backport fix for decoding tiffs with correct byteorder, fixes rhbz#1019656 - -* Wed Oct 02 2013 Sandro Mani - 2.2.1-1 -- Update to 2.2.1 -- Really enable webp on ppc, but leave disabled on s390 - -* Thu Aug 29 2013 Sandro Mani - 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 - -* Wed Aug 28 2013 Sandro Mani - 2.1.0-3 -- Add patch to fix memory corruption caused by invalid palette size, see rhbz#1001122 - -* Tue Jul 30 2013 Karsten Hopp 2.1.0-2 -- Build without webp support on ppc* archs (#988767) - -* Wed Jul 03 2013 Sandro Mani - 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 - 2.0.0-10 -- Build without webp support on s390* archs - Resolves: rhbz#962059 - -* Sat May 11 2013 Roman Rakus - 2.0.0-9.gitd1c6db8 -- Conditionaly disable build of python3 parts on RHEL system - -* Wed May 08 2013 Sandro Mani - 2.0.0-8.gitd1c6db8 -- Add patch to fix test failure on big-endian - -* Thu Apr 25 2013 Toshio Kuratomi - 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 - 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) - -* Mon Apr 08 2013 Sandro Mani - 2.0.0-5.git93a488e -- Reenable tests on bigendian, add patches for #928927 - -* Sun Apr 07 2013 Sandro Mani - 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 - 2.0.0-3.gitde210a2 -- python-pillow_tempfile.patch now upstream -- Add python3-imaging provides (bug #924867) - -* Fri Mar 22 2013 Sandro Mani - 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 - -* Tue Mar 19 2013 Sandro Mani - 2.0.0-1.git2f4207c -- Update to 2.0.0 git snapshot -- Enable python3 packages -- Add libwebp-devel BR for Pillow 2.0.0 - -* Wed Mar 13 2013 Peter Robinson 1.7.8-6.20130305git -- Add ARM support - -* Tue Mar 12 2013 Karsten Hopp 1.7.8-5.20130305git -- add s390* and ppc* to arch detection - -* Tue Mar 05 2013 Sandro Mani - 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 - 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 - 1.7.8-2.20130210gite09ff61 -- Rebuild without -fno-strict-aliasing -- Add patch for upstream issue #52 - -* Sun Feb 10 2013 Sandro Mani - 1.7.8-1.20130210gite09ff61 -- Initial RPM package diff --git a/sources b/sources deleted file mode 100644 index 2ad3fd9..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (Pillow-10.0.1.tar.gz) = 27e2f0d86563c3b7f5a2e0ba2bbe98fc2cb2fa5871d0b6cbb5a0014e9d9eb03dde9969301419d806d1a22cd4881e624465a355ba9bc42b95746226e1f95712a9