Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/psychopy/
Date: Wed, 12 Oct 2016 06:30:52
Message-Id: 1474887845.cdd744455e778ec89e84b8395522e21eaae83582.marbre@gentoo
1 commit: cdd744455e778ec89e84b8395522e21eaae83582
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Mon Sep 26 11:04:05 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Mon Sep 26 11:04:05 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=cdd74445
7
8 sci-biology/psychopy: version bump (#685)
9
10 Package-Manager: portage-2.3.1
11
12 sci-biology/psychopy/psychopy-1.84.1.ebuild | 50 +++++++++++++++++++++++++++++
13 1 file changed, 50 insertions(+)
14
15 diff --git a/sci-biology/psychopy/psychopy-1.84.1.ebuild b/sci-biology/psychopy/psychopy-1.84.1.ebuild
16 new file mode 100644
17 index 0000000..7260f62
18 --- /dev/null
19 +++ b/sci-biology/psychopy/psychopy-1.84.1.ebuild
20 @@ -0,0 +1,50 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="6"
26 +
27 +PYTHON_COMPAT=( python2_7 )
28 +PYTHON_REQ_USE="threads(+)"
29 +
30 +inherit eutils gnome2-utils distutils-r1
31 +
32 +DESCRIPTION="Python experimental psychology toolkit"
33 +HOMEPAGE="http://www.psychopy.org/"
34 +SRC_URI="https://github.com/psychopy/psychopy/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 +
36 +LICENSE="GPL-3+"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +
40 +DEPEND="
41 + dev-python/setuptools[${PYTHON_USEDEP}]
42 + "
43 +RDEPEND="
44 + dev-python/configobj[${PYTHON_USEDEP}]
45 + dev-python/lxml[${PYTHON_USEDEP}]
46 + dev-python/matplotlib[${PYTHON_USEDEP}]
47 + dev-python/moviepy[${PYTHON_USEDEP}]
48 + dev-python/numpy[lapack,${PYTHON_USEDEP}]
49 + dev-python/pillow[${PYTHON_USEDEP}]
50 + dev-python/pygame[${PYTHON_USEDEP}]
51 + dev-python/pyglet[${PYTHON_USEDEP}]
52 + dev-python/pyopengl[${PYTHON_USEDEP}]
53 + dev-python/wxpython:*[${PYTHON_USEDEP}]
54 + media-libs/avbin-bin
55 + media-libs/opencv[python,python_single_target_python2_7]
56 + sci-libs/scipy[${PYTHON_USEDEP}]
57 + "
58 +
59 +python_install_all() {
60 + distutils-r1_python_install_all
61 + newicon -s scalable psychopy/monitors/psychopy-icon.svg psychopy.svg
62 + make_desktop_entry psychopyApp.py PsychoPy psychopy
63 +}
64 +
65 +pkg_postinst() {
66 + gnome2_icon_cache_update
67 +}
68 +pkg_postrm() {
69 + gnome2_icon_cache_update
70 +}