From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:42:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69621ED; Tue, 7 Oct 2014 12:42:08 +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 3BA35A11; Tue, 7 Oct 2014 12:42:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Cg8OR066406; Tue, 7 Oct 2014 12:42:08 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Cg7Uu066404; Tue, 7 Oct 2014 12:42:07 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071242.s97Cg7Uu066404@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 12:42:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370326 - in head/games/fretsonfire: . 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 12:42:08 -0000 Author: wg Date: Tue Oct 7 12:42:07 2014 New Revision: 370326 URL: https://svnweb.freebsd.org/changeset/ports/370326 QAT: https://qat.redports.org/buildarchive/r370326/ Log: games/fretsonfire: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/games/fretsonfire/files/patch-src__Texture.py (contents, props changed) Modified: head/games/fretsonfire/Makefile Modified: head/games/fretsonfire/Makefile ============================================================================== --- head/games/fretsonfire/Makefile Tue Oct 7 12:36:28 2014 (r370325) +++ head/games/fretsonfire/Makefile Tue Oct 7 12:42:07 2014 (r370326) @@ -3,7 +3,7 @@ PORTNAME= fretsonfire PORTVERSION= 1.3.110 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games python MASTER_SITES= SF DISTNAME= ${PORTNAME:S/f/F/g:S/o/O/}-${PORTVERSION} @@ -15,11 +15,10 @@ COMMENT= Game of musical skill and fast RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}game>=0:${PORTSDIR}/devel/py-game \ ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow \ ${LOCALBASE}/share/${PORTNAME}/default.ttf:${PORTSDIR}/games/fretsonfire-data -USES= dos2unix -USE_PYTHON= yes +USES= dos2unix python DOS2UNIX_FILES= *.txt NO_BUILD= yes Added: head/games/fretsonfire/files/patch-src__Texture.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/fretsonfire/files/patch-src__Texture.py Tue Oct 7 12:42:07 2014 (r370326) @@ -0,0 +1,15 @@ +--- src/Texture.py.orig 2014-10-07 12:30:12 UTC ++++ src/Texture.py +@@ -24,10 +24,10 @@ + + import Log + import Config +-import Image ++from PIL import Image + import pygame + import StringIO +-import PngImagePlugin ++from PIL import PngImagePlugin + from OpenGL.GL import * + from OpenGL.GLU import * + from Queue import Queue, Empty