From owner-svn-ports-all@FreeBSD.ORG Sun Oct 5 00:16:01 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 723ECB20; Sun, 5 Oct 2014 00:16:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45A616C5; Sun, 5 Oct 2014 00:16:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s950G1cE017144; Sun, 5 Oct 2014 00:16:01 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950G0dj017139; Sun, 5 Oct 2014 00:16:00 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050016.s950G0dj017139@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370030 - in head/misc/pylize: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:16:01 -0000 Author: wg Date: Sun Oct 5 00:16:00 2014 New Revision: 370030 URL: https://svnweb.freebsd.org/changeset/ports/370030 QAT: https://qat.redports.org/buildarchive/r370030/ Log: misc/pylize: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/misc/pylize/files/ head/misc/pylize/files/patch-pylize.in (contents, props changed) Modified: head/misc/pylize/Makefile Modified: head/misc/pylize/Makefile ============================================================================== --- head/misc/pylize/Makefile Sun Oct 5 00:11:25 2014 (r370029) +++ head/misc/pylize/Makefile Sun Oct 5 00:16:00 2014 (r370030) @@ -3,7 +3,7 @@ PORTNAME= pylize PORTVERSION= 1.3.b -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc textproc MASTER_SITES= http://www.chrisarndt.de/en/software/pylize/download/ \ http://dryice.name/computer/FreeBSD/distfiles/ @@ -14,17 +14,12 @@ COMMENT= Presentation generation tool BUILD_DEPENDS= python:${PORTSDIR}/lang/python \ ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \ - ${PYTHON_SITELIBDIR}/em.py:${PORTSDIR}/textproc/py-empy -RUN_DEPENDS= python:${PORTSDIR}/lang/python \ - ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_SITELIBDIR}/em.py:${PORTSDIR}/textproc/py-empy +RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= tar:bzip2 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 tar:bzip2 +USE_PYTHON= autoplist distutils do-configure: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} configure.py) Added: head/misc/pylize/files/patch-pylize.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/pylize/files/patch-pylize.in Sun Oct 5 00:16:00 2014 (r370030) @@ -0,0 +1,11 @@ +--- pylize.in.orig 2014-10-05 00:14:33 UTC ++++ pylize.in +@@ -113,7 +113,7 @@ + def mkLogoLink(meta): + if meta.has_key('logo'): + try: +- import Image ++ from PIL import Image + if os.path.exists(meta['logo']): + i = Image.open(meta['logo']) + else: