From owner-svn-ports-head@freebsd.org Fri Jul 24 00:50:40 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 859B19A9B74; Fri, 24 Jul 2015 00:50:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.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 59665144D; Fri, 24 Jul 2015 00:50:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6O0oemo056846; Fri, 24 Jul 2015 00:50:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6O0oeVB056845; Fri, 24 Jul 2015 00:50:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201507240050.t6O0oeVB056845@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 24 Jul 2015 00:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392765 - head/devel/renpy 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.20 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, 24 Jul 2015 00:50:40 -0000 Author: jbeich Date: Fri Jul 24 00:50:39 2015 New Revision: 392765 URL: https://svnweb.freebsd.org/changeset/ports/392765 Log: devel/renpy: unbreak bundled python in distributions Don't remove *.pyo that ends up in game packages to fix $ tar xf foo-game-linux.tar.bz2 $ cd foo-game-linux $ /compat/linux/bin/bash -x foo-game.sh + SCRIPT=foo-game.sh + '[' -L foo-game.sh ']' ++ dirname foo-game.sh + ROOT=. ++ cd . ++ pwd + ROOT=/path/to/foo-game-dists/foo-game-linux ++ basename foo-game.sh .sh + BASEFILE=foo-game + '[' -z '' ']' + case "$(uname -s)-$(uname -m)" in ++ uname -s ++ uname -m + RENPY_PLATFORM=linux-i686 + ROOT1=/path/to/foo-game-dists/foo-game-linux + ROOT2=/path/to/foo-game-dists/foo-game-linux + for BASE in '"$ROOT"' '"$ROOT1"' '"$ROOT2"' + LIB=/path/to/foo-game-dists/foo-game-linux/lib/linux-i686 + test -d /path/to/foo-game-dists/foo-game-linux/lib/linux-i686 + break + exec /path/to/foo-game-dists/foo-game-linux/lib/linux-i686/foo-game -EO /path/to/foo-game-dists/foo-game-linux/foo-game.py Could not find platform independent libraries Consider setting $PYTHONHOME to [:] ImportError: No module named site PR: 201322 Modified: head/devel/renpy/Makefile Modified: head/devel/renpy/Makefile ============================================================================== --- head/devel/renpy/Makefile Fri Jul 24 00:17:30 2015 (r392764) +++ head/devel/renpy/Makefile Fri Jul 24 00:50:39 2015 (r392765) @@ -3,6 +3,7 @@ PORTNAME= renpy PORTVERSION= 6.99.5 DISTVERSIONSUFFIX=-sdk +PORTREVISION= 1 CATEGORIES= devel games MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ #MASTER_SITES+= GENTOO @@ -31,7 +32,8 @@ PORTSCOUT= site:http://www.renpy.org/dl/ USES= python:2.7 shebangfix tar:bz2 USE_PYTHON= autoplist distutils USE_SDL= sdl2 -EXTRACT_AFTER_ARGS=--exclude gen --exclude '*.py[co]' --exclude 'pythonlib*' +EXCLUDE= gen 'module/*.py[co]' 'renpy/*.py[co]' +EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} SHEBANG_FILES= renpy.py launcher/game/tkaskdir.py python_OLD_CMD= /usr/bin/env python python_CMD= ${PYTHON_CMD}