Accepting request 594555 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/594555 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Pillow?expand=0&rev=70
This commit is contained in:
parent
b92cfff251
commit
2ae013d914
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:12f29d6c23424f704c66b5b68c02fe0b571504459605cfe36ab8158359b0e1bb
|
|
||||||
size 14220993
|
|
3
Pillow-5.1.0.tar.gz
Normal file
3
Pillow-5.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cee9bc75bff455d317b6947081df0824a8f118de2786dc3d74a3503fd631f4ef
|
||||||
|
size 14286366
|
@ -1,14 +0,0 @@
|
|||||||
Index: Pillow-5.0.0/Tests/test_imagefont.py
|
|
||||||
===================================================================
|
|
||||||
--- Pillow-5.0.0.orig/Tests/test_imagefont.py
|
|
||||||
+++ Pillow-5.0.0/Tests/test_imagefont.py
|
|
||||||
@@ -58,6 +58,9 @@ class TestImageFont(PillowTestCase):
|
|
||||||
('2', '8'): {'multiline': 6.2,
|
|
||||||
'textsize': 2.5,
|
|
||||||
'getters': (12, 16)},
|
|
||||||
+ ('2', '9'): {'multiline': 6.2,
|
|
||||||
+ 'textsize': 2.5,
|
|
||||||
+ 'getters': (12, 16)},
|
|
||||||
'Default': {'multiline': 0.5,
|
|
||||||
'textsize': 0.5,
|
|
||||||
'getters': (12, 16)},
|
|
@ -1,23 +0,0 @@
|
|||||||
From 8edbc79e7f5cf32307caf609b1a346456f8d9fb4 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hugo <hugovk@users.noreply.github.com>
|
|
||||||
Date: Thu, 11 Jan 2018 12:45:52 +0200
|
|
||||||
Subject: [PATCH] Fix "TypeError: 'NoneType' object is not iterable" for PPC
|
|
||||||
and CRUX
|
|
||||||
|
|
||||||
---
|
|
||||||
setup.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/setup.py b/setup.py
|
|
||||||
index df80c5d9b..e2c16235b 100755
|
|
||||||
--- a/setup.py
|
|
||||||
+++ b/setup.py
|
|
||||||
@@ -368,7 +368,7 @@ def build_extensions(self):
|
|
||||||
|
|
||||||
for platform_ in arch_tp:
|
|
||||||
dirs = libdirs.get(platform_, None)
|
|
||||||
- if not platform_:
|
|
||||||
+ if not dirs:
|
|
||||||
continue
|
|
||||||
for path in dirs:
|
|
||||||
_add_directory(library_dirs, path)
|
|
@ -1,3 +1,52 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Apr 7 19:14:10 UTC 2018 - arun@gmx.de
|
||||||
|
|
||||||
|
- removed freetype-2.9.patch, included upstream
|
||||||
|
- removed pillow-non-iterable.patch, included upstream
|
||||||
|
|
||||||
|
- update to version 5.1.0:
|
||||||
|
* Close fp before return in ImagingSavePPM #3061 [kathryndavies]
|
||||||
|
* Added documentation for ICNS append_images #3051 [radarhere]
|
||||||
|
* Docs: Move intro text below its header #3021 [hugovk]
|
||||||
|
* CI: Rename appveyor.yml as .appveyor.yml #2978 [hugovk]
|
||||||
|
* Fix TypeError for JPEG2000 parser feed #3042 [hugovk]
|
||||||
|
* Certain corrupted jpegs can result in no data read #3023
|
||||||
|
[kkopachev]
|
||||||
|
* Add support for BLP file format #3007 [jleclanche]
|
||||||
|
* Simplify version checks #2998 [hugovk]
|
||||||
|
* Fix "invalid escape sequence" warning on Python 3.6+ #2996
|
||||||
|
[timgraham]
|
||||||
|
* Allow append_images to set .icns scaled images #3005 [radarhere]
|
||||||
|
* Support appending to existing PDFs #2965 [vashek]
|
||||||
|
* Fix and improve efficient saving of ICNS on macOS #3004
|
||||||
|
[radarhere]
|
||||||
|
* Build: Enable pip cache in AppVeyor build #3009 [thijstriemstra]
|
||||||
|
* Trim trailing whitespace #2985 [Metallicow]
|
||||||
|
* Docs: Correct reference to Image.new method #3000 [radarhere]
|
||||||
|
* Rearrange ImageFilter classes into alphabetical order #2990
|
||||||
|
[radarhere]
|
||||||
|
* Test: Remove duplicate line #2983 [radarhere]
|
||||||
|
* Build: Update AppVeyor PyPy version #3003 [radarhere]
|
||||||
|
* Tiff: Open 8 bit Tiffs with 5 or 6 channels, discarding extra
|
||||||
|
channels #2938 [homm]
|
||||||
|
* Readme: Added Twitter badge #2930 [hugovk]
|
||||||
|
* Removed __main__ code from ImageCms #2942 [radarhere]
|
||||||
|
* Test: Changed assert statements to unittest calls #2961
|
||||||
|
[radarhere]
|
||||||
|
* Depends: Update libimagequant to 2.11.10, raqm to 0.5.0, freetype
|
||||||
|
to 2.9 #3036, #3017, #2957 [radarhere]
|
||||||
|
* Remove _imaging.crc32 in favor of builtin Python crc32
|
||||||
|
implementation #2935 [wiredfool]
|
||||||
|
* Move Tk directory to src directory #2928 [hugovk]
|
||||||
|
* Enable pip cache in Travis CI #2933 [jdufresne]
|
||||||
|
* Remove unused and duplicate imports #2927 [radarhere]
|
||||||
|
* Docs: Changed documentation references to 2.x to 2.7 #2921
|
||||||
|
[radarhere]
|
||||||
|
* Fix memory leak when opening webp files #2974 [wiredfool]
|
||||||
|
* Setup: Fix "TypeError: 'NoneType' object is not iterable" for PPC
|
||||||
|
and CRUX #2951 [hugovk]
|
||||||
|
* Setup: Add libdirs for ppc64le and armv7l #2968 [nehaljwani]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 15 10:01:18 UTC 2018 - tchvatal@suse.com
|
Mon Jan 15 10:01:18 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -24,16 +24,13 @@
|
|||||||
%bcond_with tk
|
%bcond_with tk
|
||||||
%endif
|
%endif
|
||||||
Name: python-Pillow
|
Name: python-Pillow
|
||||||
Version: 5.0.0
|
Version: 5.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python Imaging Library (Fork)
|
Summary: Python Imaging Library (Fork)
|
||||||
License: HPND
|
License: HPND
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: http://python-imaging.github.io/
|
Url: http://python-imaging.github.io/
|
||||||
Source: https://files.pythonhosted.org/packages/source/P/Pillow/Pillow-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/P/Pillow/Pillow-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM freetype-2.9.patch https://github.com/python-pillow/Pillow/issues/2954
|
|
||||||
Patch1: freetype-2.9.patch
|
|
||||||
Patch2: pillow-non-iterable.patch
|
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: %{python_module olefile}
|
BuildRequires: %{python_module olefile}
|
||||||
BuildRequires: %{python_module pytest-runner}
|
BuildRequires: %{python_module pytest-runner}
|
||||||
@ -96,7 +93,6 @@ Python Imaging Library by Fredrik Lundh and Contributors.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Pillow-%{version}
|
%setup -q -n Pillow-%{version}
|
||||||
%autopatch -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
@ -122,7 +118,8 @@ $python setup.py test
|
|||||||
}
|
}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc CHANGES.rst README.rst LICENSE
|
%license LICENSE
|
||||||
|
%doc CHANGES.rst README.rst
|
||||||
%{python_sitearch}/PIL
|
%{python_sitearch}/PIL
|
||||||
%{python_sitearch}/PIL.pth
|
%{python_sitearch}/PIL.pth
|
||||||
%{python_sitearch}/Pillow-%{version}-py%{python_version}.egg-info
|
%{python_sitearch}/Pillow-%{version}-py%{python_version}.egg-info
|
||||||
|
Loading…
Reference in New Issue
Block a user