Accepting request 799155 from devel:languages:python
- Update to 7.1.2: * This fixes a regression introduced in 7.1.0 when adding support for APNG files. * When calling seek(n) on a regular PNG where n > 0, it failed to raise an EOFError as it should have done - update to version 7.1.1: * Fix regression seeking and telling PNGs #4512 #4514 [hugovk, radarhere] - changes from version 7.1.0: * Fix multiple OOB reads in FLI decoding #4503 [wiredfool] * Fix buffer overflow in SGI-RLE decoding #4504 [wiredfool, hugovk] * Fix bounds overflow in JPEG 2000 decoding #4505 [wiredfool] * Fix bounds overflow in PCX decoding #4506 [wiredfool] * Fix 2 buffer overflows in TIFF decoding #4507 [wiredfool] * Add APNG support #4243 [pmrowla, radarhere, hugovk] * ImageGrab.grab() for Linux with XCB #4260 [nulano, radarhere] * Added three new channel operations #4230 [dwastberg, radarhere] * Prevent masking of Image reduce method in Jpeg2KImagePlugin #4474 [radarhere, homm] * Added reading of earlier ImageMagick PNG EXIF data #4471 [radarhere] * Fixed endian handling for I;16 getextrema #4457 [radarhere] * Release buffer if function returns prematurely #4381 [radarhere] * Add JPEG comment to info dictionary #4455 [radarhere] * Fix size calculation of Image.thumbnail() #4404 [orlnub123] * Fixed stroke on FreeType < 2.9 #4401 [radarhere] * If present, only use alpha channel for bounding box #4454 [radarhere] * Warn if an unknown feature is passed to features.check() #4438 OBS-URL: https://build.opensuse.org/request/show/799155 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Pillow?expand=0&rev=38
This commit is contained in:
commit
e5c53edf9f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf4e972a88f8841d8fdc6db1a75e0f8d763e66e3754b03006cbc3854d89f1cb1
|
||||
size 37673162
|
3
Pillow-7.1.2.tar.gz
Normal file
3
Pillow-7.1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0b49960110bc6ff5fead46013bcb8825d101026d466f3a4de3476defe0fb0dd
|
||||
size 38939582
|
@ -1,3 +1,102 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 30 08:47:06 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Update to 7.1.2:
|
||||
* This fixes a regression introduced in 7.1.0 when adding support
|
||||
for APNG files.
|
||||
* When calling seek(n) on a regular PNG where n > 0, it failed to
|
||||
raise an EOFError as it should have done
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 4 17:49:43 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
- update to version 7.1.1:
|
||||
* Fix regression seeking and telling PNGs #4512 #4514 [hugovk,
|
||||
radarhere]
|
||||
|
||||
- changes from version 7.1.0:
|
||||
* Fix multiple OOB reads in FLI decoding #4503 [wiredfool]
|
||||
* Fix buffer overflow in SGI-RLE decoding #4504 [wiredfool, hugovk]
|
||||
* Fix bounds overflow in JPEG 2000 decoding #4505 [wiredfool]
|
||||
* Fix bounds overflow in PCX decoding #4506 [wiredfool]
|
||||
* Fix 2 buffer overflows in TIFF decoding #4507 [wiredfool]
|
||||
* Add APNG support #4243 [pmrowla, radarhere, hugovk]
|
||||
* ImageGrab.grab() for Linux with XCB #4260 [nulano, radarhere]
|
||||
* Added three new channel operations #4230 [dwastberg, radarhere]
|
||||
* Prevent masking of Image reduce method in Jpeg2KImagePlugin #4474
|
||||
[radarhere, homm]
|
||||
* Added reading of earlier ImageMagick PNG EXIF data #4471
|
||||
[radarhere]
|
||||
* Fixed endian handling for I;16 getextrema #4457 [radarhere]
|
||||
* Release buffer if function returns prematurely #4381 [radarhere]
|
||||
* Add JPEG comment to info dictionary #4455 [radarhere]
|
||||
* Fix size calculation of Image.thumbnail() #4404 [orlnub123]
|
||||
* Fixed stroke on FreeType < 2.9 #4401 [radarhere]
|
||||
* If present, only use alpha channel for bounding box #4454
|
||||
[radarhere]
|
||||
* Warn if an unknown feature is passed to features.check() #4438
|
||||
[jdufresne]
|
||||
* Fix Name field length when saving IM images #4424 [hugovk,
|
||||
radarhere]
|
||||
* Allow saving of zero quality JPEG images #4440 [radarhere]
|
||||
* Allow explicit zero width to hide outline #4334 [radarhere]
|
||||
* Change ContainerIO return type to match file object mode #4297
|
||||
[jdufresne, radarhere]
|
||||
* Only draw each polygon pixel once #4333 [radarhere]
|
||||
* Add support for shooting situation Exif IFD tags #4398 [alexagv]
|
||||
* Handle multiple and malformed JPEG APP13 markers #4370 [homm]
|
||||
* Depends: Update libwebp to 1.1.0 #4342, libjpeg to 9d #4352
|
||||
[radarhere]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 5 02:50:34 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
- specfile:
|
||||
* update copyright year
|
||||
* drop python2 support
|
||||
|
||||
- update to version 7.0.0:
|
||||
* Drop support for EOL Python 2.7 #4109 [hugovk, radarhere,
|
||||
jdufresne]
|
||||
* Fix rounding error on RGB to L conversion #4320 [homm]
|
||||
* Exif writing fixes: Rational boundaries and signed/unsigned types
|
||||
#3980 [kkopachev, radarhere]
|
||||
* Allow loading of WMF images at a given DPI #4311 [radarhere]
|
||||
* Added reduce operation #4251 [homm]
|
||||
* Raise ValueError for io.StringIO in Image.open #4302 [radarhere,
|
||||
hugovk]
|
||||
* Fix thumbnail geometry when DCT scaling is used #4231 [homm,
|
||||
radarhere]
|
||||
* Use default DPI when exif provides invalid x_resolution #4147
|
||||
[beipang2, radarhere]
|
||||
* Change default resize resampling filter from NEAREST to BICUBIC
|
||||
#4255 [homm]
|
||||
* Fixed black lines on upscaled images with the BOX filter #4278
|
||||
[homm]
|
||||
* Better thumbnail aspect ratio preservation #4256 [homm]
|
||||
* Add La mode packing and unpacking #4248 [homm]
|
||||
* Include tests in coverage reports #4173 [hugovk]
|
||||
* Handle broken Photoshop data #4239 [radarhere]
|
||||
* Raise a specific exception if no data is found for an MPO frame
|
||||
#4240 [radarhere]
|
||||
* Fix Unicode support for PyPy #4145 [nulano]
|
||||
* Added UnidentifiedImageError #4182 [radarhere, hugovk]
|
||||
* Remove deprecated __version__ from plugins #4197 [hugovk,
|
||||
radarhere]
|
||||
* Fixed freeing unallocated pointer when resizing with height too
|
||||
large #4116 [radarhere]
|
||||
* Copy info in Image.transform #4128 [radarhere]
|
||||
* Corrected DdsImagePlugin setting info gamma #4171 [radarhere]
|
||||
* Depends: Update libtiff to 4.1.0 #4195, Tk Tcl to 8.6.10 #4229,
|
||||
libimagequant to 2.12.6 #4318 [radarhere]
|
||||
* Improve handling of file resources #3577 [jdufresne]
|
||||
* Removed CI testing of Fedora 29 #4165 [hugovk]
|
||||
* Added pypy3 to tox envlist #4137 [jdufresne]
|
||||
* Drop support for EOL PyQt4 and PySide #4108 [hugovk, radarhere]
|
||||
* Removed deprecated setting of TIFF image sizes #4114 [radarhere]
|
||||
* Removed deprecated PILLOW_VERSION #4107 [hugovk]
|
||||
* Changed default frombuffer raw decoder args #1730 [radarhere]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 8 07:54:46 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-Pillow
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,14 +17,10 @@
|
||||
|
||||
|
||||
%define oldpython python
|
||||
%define skip_python2 1
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%if 0%{?is_opensuse} || 0%{?suse_version} >= 1500
|
||||
%bcond_without tk
|
||||
%else
|
||||
%bcond_with tk
|
||||
%endif
|
||||
Name: python-Pillow
|
||||
Version: 6.2.1
|
||||
Version: 7.1.2
|
||||
Release: 0
|
||||
Summary: Python Imaging Library (Fork)
|
||||
License: HPND
|
||||
@ -50,9 +46,7 @@ BuildRequires: pkgconfig(libwebp)
|
||||
BuildRequires: pkgconfig(tk)
|
||||
BuildRequires: pkgconfig(zlib)
|
||||
Requires: python-olefile
|
||||
%if %{with tk}
|
||||
BuildRequires: %{python_module tk}
|
||||
%endif
|
||||
%if 0%{?suse_version} >= 1500
|
||||
BuildRequires: pkgconfig(libopenjp2)
|
||||
%endif
|
||||
@ -127,19 +121,13 @@ $python -m pytest -v -k 'not (test_stroke or test_stroke_multiline)'
|
||||
%{python_sitearch}/PIL
|
||||
%{python_sitearch}/PIL.pth
|
||||
%{python_sitearch}/Pillow-%{version}-py%{python_version}.egg-info
|
||||
|
||||
%if %{with tk}
|
||||
%exclude %{python_sitearch}/PIL/ImageTk*
|
||||
%exclude %{python_sitearch}/PIL/_imagingtk*
|
||||
%pycache_only %exclude %{python_sitearch}/PIL/__pycache__/ImageTk.*
|
||||
%endif
|
||||
|
||||
%if %{with tk}
|
||||
%files %{python_files tk}
|
||||
%{python_sitearch}/PIL/ImageTk*
|
||||
%{python_sitearch}/PIL/_imagingtk*
|
||||
%pycache_only %{python_sitearch}/PIL/__pycache__/ImageTk.*
|
||||
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user