From owner-svn-ports-head@freebsd.org Fri Jun 14 04:06:18 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CF2B15C5055; Fri, 14 Jun 2019 04:06:18 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E02D98222C; Fri, 14 Jun 2019 04:06:17 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC816A713; Fri, 14 Jun 2019 04:06:17 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5E46Hww082132; Fri, 14 Jun 2019 04:06:17 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5E46H5T082130; Fri, 14 Jun 2019 04:06:17 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906140406.x5E46H5T082130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 14 Jun 2019 04:06:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504155 - head/graphics/py-pillow X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/graphics/py-pillow X-SVN-Commit-Revision: 504155 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E02D98222C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2019 04:06:18 -0000 Author: kai Date: Fri Jun 14 04:06:17 2019 New Revision: 504155 URL: https://svnweb.freebsd.org/changeset/ports/504155 Log: graphics/py-pillow: Update to 6.0.0 * Introduce a new option OLE and add it to the default options to maintain compatibility for a while with existing installations/users that rely on the previously deprecated function PIL.OleFileIO which has been removed now. * Remove obsolete CONFLICTS_INSTALL entry because graphics/py-imaging no longer exists in the Ports tree since 2016. Release Notes: * https://pillow.readthedocs.io/en/latest/releasenotes/index.html Backward Incompatible Changes (6.0.0): * https://pillow.readthedocs.io/en/latest/releasenotes/6.0.0.html#backwards-incompatible-changes Detailed Changelog: * https://github.com/python-pillow/Pillow/blob/6.0.0/CHANGES.rst PR: 237426 Reviewed by: antoine, koobs, Charlie Li Approved by: koobs (maintainer) Modified: head/graphics/py-pillow/Makefile head/graphics/py-pillow/distinfo Modified: head/graphics/py-pillow/Makefile ============================================================================== --- head/graphics/py-pillow/Makefile Fri Jun 14 03:43:43 2019 (r504154) +++ head/graphics/py-pillow/Makefile Fri Jun 14 04:06:17 2019 (r504155) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pillow -PORTVERSION= 5.3.0 +PORTVERSION= 6.0.0 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-se TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} -# Python 2.7,3.4+ +# Python 2.7,3.5+ USES= cpe python USE_GITHUB= yes USE_PYTHON= autoplist concurrent distutils @@ -25,12 +25,11 @@ USE_PYTHON= autoplist concurrent distutils GH_ACCOUNT= python-${PORTNAME} GH_PROJECT= ${PORTNAME:C/p/P/} -CONFLICTS_INSTALL= py*-imaging-* +OPTIONS_DEFINE= FREETYPE JPEG JPEG2000 LCMS OLE PNG TIFF TKINTER WEBP +OPTIONS_DEFAULT= FREETYPE JPEG JPEG2000 OLE PNG TKINTER WEBP -OPTIONS_DEFINE= FREETYPE JPEG JPEG2000 LCMS PNG TIFF TKINTER WEBP -OPTIONS_DEFAULT= FREETYPE JPEG JPEG2000 PNG TKINTER WEBP - LCMS_DESC= Little Color Management System +OLE_DESC= Microsoft OLE2 file format support TKINTER_DESC= Tkinter (Tcl/Tk) BitmapImage & PhotoImage support FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2 @@ -51,6 +50,8 @@ LCMS_VARS_OFF= PYDISTUTILS_BUILDARGS+=--disable-lcms PNG_VARS= PYDISTUTILS_BUILDARGS+=--enable-zlib PNG_VARS_OFF= PYDISTUTILS_BUILDARGS+=--disable-zlib + +OLE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}olefile>0:devel/py-olefile@${PY_FLAVOR} TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff TIFF_VARS= PYDISTUTILS_BUILDARGS+=--enable-tiff Modified: head/graphics/py-pillow/distinfo ============================================================================== --- head/graphics/py-pillow/distinfo Fri Jun 14 03:43:43 2019 (r504154) +++ head/graphics/py-pillow/distinfo Fri Jun 14 04:06:17 2019 (r504155) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542124566 -SHA256 (python-pillow-Pillow-5.3.0_GH0.tar.gz) = 9de4853d8b640c0185665735a1c3266b6d51636b3a3d8e3ea7876c485194b6e1 -SIZE (python-pillow-Pillow-5.3.0_GH0.tar.gz) = 15335960 +TIMESTAMP = 1555711743 +SHA256 (python-pillow-Pillow-6.0.0_GH0.tar.gz) = f0babf5d7072ea9923a3950cd7ea41b0008429b16584de7d95cc5550a2806cda +SIZE (python-pillow-Pillow-6.0.0_GH0.tar.gz) = 29205509