Gentoo Archives: gentoo-commits

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