From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F3ADE1386EA for ; Sun, 27 Jan 2013 19:25:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE6D321C0E3; Sun, 27 Jan 2013 19:25:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8F7B21C0E2 for ; Sun, 27 Jan 2013 19:25:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0436633DA1E for ; Sun, 27 Jan 2013 19:25:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 959EBE4073 for ; Sun, 27 Jan 2013 19:25:06 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1358374591.5d48b5d722297b49ec03952e1e8289d79dd99bb6.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/psychopy/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/psychopy/psychopy-9999.ebuild X-VCS-Directories: sci-biology/psychopy/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 5d48b5d722297b49ec03952e1e8289d79dd99bb6 X-VCS-Branch: master Date: Sun, 27 Jan 2013 19:25:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0f1401ba-ed31-4c06-a5a0-6d7ff73e8cdf X-Archives-Hash: 5125cd61beaab0c10b2e9b36868d3764 commit: 5d48b5d722297b49ec03952e1e8289d79dd99bb6 Author: TheChymera mail ru> AuthorDate: Wed Jan 16 22:16:31 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Jan 16 22:16:31 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5d48b5d7 Executable priviledges for /app/psychopyApp.py Also generally improved 9999 build (many thanks to prometheanfire from #gentoo-dev-help!) --- sci-biology/psychopy/psychopy-9999.ebuild | 33 +++++++++++++++++----------- 1 files changed, 20 insertions(+), 13 deletions(-) diff --git a/sci-biology/psychopy/psychopy-9999.ebuild b/sci-biology/psychopy/psychopy-9999.ebuild index 9165bb5..fa87df2 100644 --- a/sci-biology/psychopy/psychopy-9999.ebuild +++ b/sci-biology/psychopy/psychopy-9999.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="4" +EAPI="5" +PYTHON_COMPAT=( python2_7 ) -inherit eutils distutils git-2 +inherit eutils distutils-r1 git-2 DESCRIPTION="Python experiemntal psychology toolkit" HOMEPAGE="http://www.psychopy.org/" @@ -13,17 +14,23 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="dev-python/numpy[lapack] - sci-libs/scipy - dev-python/matplotlib - dev-python/pyopengl - dev-python/imaging - dev-python/wxpython - dev-python/setuptools - dev-python/lxml" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="${DEPEND} app-admin/eselect - dev-python/pyglet + dev-python/imaging + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/matplotlib + dev-python/numpy[lapack] dev-python/pygame - " + dev-python/pyglet + dev-python/pyopengl[${PYTHON_USEDEP}] + dev-python/wxpython + sci-libs/scipy" + +python_install() { + distutils-r1_python_install + #local EPYTHON=python2.7 + #die $(sh -c 'echo $EPYTHON') + chmod +x "${D}$(python_get_sitedir)/psychopy/app/psychopyApp.py" || die "chmod of psychopyApp.py failed" +}