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 431E758973 for ; Mon, 18 Jan 2016 16:32:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B318321C016; Mon, 18 Jan 2016 16:32:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45C6121C016 for ; Mon, 18 Jan 2016 16:32:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23ACB340A61 for ; Mon, 18 Jan 2016 16:31:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22116A91 for ; Mon, 18 Jan 2016 16:31:56 +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: <1453120386.40538baa57871ca325a0f077ba4d110cc3060491.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-1.83.03.ebuild X-VCS-Directories: sci-biology/psychopy/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 40538baa57871ca325a0f077ba4d110cc3060491 X-VCS-Branch: master Date: Mon, 18 Jan 2016 16:31:56 +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: de03bea2-49b9-4d5f-ada1-f401bccc478c X-Archives-Hash: 307d5153eae7a6e08a4e6c10f3b133ee commit: 40538baa57871ca325a0f077ba4d110cc3060491 Author: Horea Christian mail ru> AuthorDate: Mon Jan 18 12:33:06 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 18 12:33:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=40538baa sci-biology/psychopy: version bump Package-Manager: portage-2.2.26 sci-biology/psychopy/psychopy-1.83.03.ebuild | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/sci-biology/psychopy/psychopy-1.83.03.ebuild b/sci-biology/psychopy/psychopy-1.83.03.ebuild new file mode 100644 index 0000000..b773ea5 --- /dev/null +++ b/sci-biology/psychopy/psychopy-1.83.03.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 ) + +inherit eutils gnome2-utils distutils-r1 git-r3 + +DESCRIPTION="Python experimental psychology toolkit" +HOMEPAGE="http://www.psychopy.org/" +SRC_URI="" +EGIT_REPO_URI="https://github.com/psychopy/psychopy.git" +EGIT_COMMIT="1.83.03x" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND="${DEPEND} + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[lapack,${PYTHON_USEDEP}] + dev-python/pygame[${PYTHON_USEDEP}] + dev-python/pyglet[${PYTHON_USEDEP}] + dev-python/pyopengl[${PYTHON_USEDEP}] + dev-python/wxpython:*[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + " + +python_install_all() { + distutils-r1_python_install_all + newicon -s scalable psychopy/monitors/psychopy-icon.svg psychopy.svg + make_desktop_entry psychopyApp.py PsychoPy psychopy +} + +pkg_postinst() { + gnome2_icon_cache_update +} +pkg_postrm() { + gnome2_icon_cache_update +}