From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:53:12 2014 Return-Path: Delivered-To: svn-ports-head@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 747AA7D7; Tue, 7 Oct 2014 16:53:12 +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 460F5D8E; Tue, 7 Oct 2014 16:53:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GrCRo091369; Tue, 7 Oct 2014 16:53:12 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GrBvm091367; Tue, 7 Oct 2014 16:53:11 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071653.s97GrBvm091367@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 16:53:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370367 - in head/graphics/py-pyggel: . 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-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Tue, 07 Oct 2014 16:53:12 -0000 Author: wg Date: Tue Oct 7 16:53:11 2014 New Revision: 370367 URL: https://svnweb.freebsd.org/changeset/ports/370367 QAT: https://qat.redports.org/buildarchive/r370367/ Log: graphics/py-pyggel: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/graphics/py-pyggel/files/ head/graphics/py-pyggel/files/patch-pyggel__include.py (contents, props changed) Modified: head/graphics/py-pyggel/Makefile Modified: head/graphics/py-pyggel/Makefile ============================================================================== --- head/graphics/py-pyggel/Makefile Tue Oct 7 16:51:20 2014 (r370366) +++ head/graphics/py-pyggel/Makefile Tue Oct 7 16:53:11 2014 (r370367) @@ -4,7 +4,7 @@ PORTNAME= pyggel PORTVERSION= 0.08 DISTVERSIONSUFFIX= -alpha4c -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics python MASTER_SITES= GOOGLE_CODE DISTNAME= ${PORTNAME:tu}-V${DISTVERSION}${DISTVERSIONSUFFIX} @@ -23,14 +23,12 @@ LICENSE_PERMS_Public_Domain=dist-mirror RUN_DEPENDS= ${PYNUMPY} \ ${PYGAME} \ ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow -USES= dos2unix zip +USES= dos2unix python:2 zip DOS2UNIX_GLOB= *.mtl *.py *.txt -USE_PYTHON= 2 +USE_PYTHON= autoplist distutils NO_BUILD= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes PORTDOCS= Readme.txt PORTEXAMPLES= * Added: head/graphics/py-pyggel/files/patch-pyggel__include.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyggel/files/patch-pyggel__include.py Tue Oct 7 16:53:11 2014 (r370367) @@ -0,0 +1,11 @@ +--- pyggel/include.py.orig 2014-10-07 16:52:11 UTC ++++ pyggel/include.py +@@ -27,7 +27,7 @@ + ANI_AVAILABLE = False + + try: +- import Image as PIL ++ from PIL import Image as PIL + PIL_AVAILABLE = True + except: + PIL_AVAILABLE = False