Date: Tue, 7 Oct 2014 12:02:45 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370308 - in head/www/xist: . files Message-ID: <201410071202.s97C2jSS045515@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Tue Oct 7 12:02:44 2014 New Revision: 370308 URL: https://svnweb.freebsd.org/changeset/ports/370308 QAT: https://qat.redports.org/buildarchive/r370308/ Log: www/xist: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/www/xist/files/patch-src__ll__url.py (contents, props changed) Modified: head/www/xist/Makefile Modified: head/www/xist/Makefile ============================================================================== --- head/www/xist/Makefile Tue Oct 7 12:01:51 2014 (r370307) +++ head/www/xist/Makefile Tue Oct 7 12:02:44 2014 (r370308) @@ -3,7 +3,7 @@ PORTNAME= xist PORTVERSION= 3.25 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ http://ftp.livinglogic.de/xist/ @@ -17,13 +17,11 @@ LICENSE= MIT RUN_DEPENDS= ${PYXML} \ ${PYTHON_PKGNAMEPREFIX}ll-core>=1.11.1:${PORTSDIR}/devel/py-ll-core \ - ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.7:${PORTSDIR}/www/py-cssutils -USES= tar:bzip2 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 tar:bzip2 +USE_PYTHON= autoplist distutils post-patch: .for conflictswithllcore in __init__ scripts/__init__ ansistyle astyle color \ Added: head/www/xist/files/patch-src__ll__url.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/xist/files/patch-src__ll__url.py Tue Oct 7 12:02:44 2014 (r370308) @@ -0,0 +1,11 @@ +--- src/ll/url.py.orig 2014-10-07 12:02:25 UTC ++++ src/ll/url.py +@@ -57,7 +57,7 @@ + execnet = None + + try: +- import Image ++ from PIL import Image + except ImportError: + pass +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410071202.s97C2jSS045515>