From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1256C1395E3 for ; Tue, 6 Dec 2016 19:45:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68709E0D58; Tue, 6 Dec 2016 19:45:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 405D8E0D58 for ; Tue, 6 Dec 2016 19:45:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C6E8341063 for ; Tue, 6 Dec 2016 19:45:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B75C9492 for ; Tue, 6 Dec 2016 19:45:00 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1480768064.e8988a6e7feeecbc37b48daf19e6f5c868483c37.junghans@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.84.2.ebuild X-VCS-Directories: sci-biology/psychopy/ X-VCS-Committer: junghans X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: e8988a6e7feeecbc37b48daf19e6f5c868483c37 X-VCS-Branch: master Date: Tue, 6 Dec 2016 19:45:00 +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: 3ca3fcd3-48ee-4249-b9b8-c55971bcb5ea X-Archives-Hash: eae636216ab78654000b74ff1ba83a98 commit: e8988a6e7feeecbc37b48daf19e6f5c868483c37 Author: Horea Christian yandex com> AuthorDate: Sat Dec 3 12:27:44 2016 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sat Dec 3 12:27:44 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e8988a6e sci-biology/psychopy: version bump (#706) Package-Manager: portage-2.3.2 sci-biology/psychopy/psychopy-1.84.2.ebuild | 50 +++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/sci-biology/psychopy/psychopy-1.84.2.ebuild b/sci-biology/psychopy/psychopy-1.84.2.ebuild new file mode 100644 index 0000000..b15e00d --- /dev/null +++ b/sci-biology/psychopy/psychopy-1.84.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="threads(+)" + +inherit eutils gnome2-utils distutils-r1 + +DESCRIPTION="Python experimental psychology toolkit" +HOMEPAGE="http://www.psychopy.org/" +SRC_URI="https://github.com/psychopy/psychopy/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND=" + dev-python/configobj[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/moviepy[${PYTHON_USEDEP}] + dev-python/numpy[lapack,${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pygame[${PYTHON_USEDEP}] + dev-python/pyglet[${PYTHON_USEDEP}] + dev-python/pyopengl[${PYTHON_USEDEP}] + dev-python/wxpython:*[${PYTHON_USEDEP}] + media-libs/avbin-bin + media-libs/opencv[python,${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 +}