Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/relax: relax-3.2.0.ebuild ChangeLog
Date: Thu, 22 May 2014 08:48:57
Message-Id: 20140522084854.1EE582004C@flycatcher.gentoo.org
1 jlec 14/05/22 08:48:54
2
3 Modified: ChangeLog
4 Added: relax-3.2.0.ebuild
5 Log:
6 sci-chemistry/relax: Version BUmp
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.23 sci-chemistry/relax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 15 May 2014 11:51:29 -0000 1.22
24 +++ ChangeLog 22 May 2014 08:48:53 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-chemistry/relax
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.22 2014/05/15 11:51:29 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.23 2014/05/22 08:48:53 jlec Exp $
30 +
31 +*relax-3.2.0 (22 May 2014)
32 +
33 + 22 May 2014; Justin Lecher <jlec@g.o> +relax-3.2.0.ebuild:
34 + Version BUmp
35
36 *relax-3.1.7-r1 (15 May 2014)
37
38
39
40
41 1.1 sci-chemistry/relax/relax-3.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: relax-3.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.2.0.ebuild,v 1.1 2014/05/22 08:48:53 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 )
55
56 WX_GTK_VER="2.9"
57
58 inherit eutils multiprocessing python-single-r1 scons-utils toolchain-funcs wxwidgets virtualx
59
60 DESCRIPTION="Molecular dynamics by NMR data analysis"
61 HOMEPAGE="http://www.nmr-relax.com/"
62 SRC_URI="http://download.gna.org/relax/${P}.src.tar.bz2"
63
64 SLOT="0"
65 LICENSE="GPL-2"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE=""
68
69 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
70
71 RDEPEND="
72 ${PYTHON_DEPS}
73 dev-python/matplotlib[${PYTHON_USEDEP}]
74 dev-python/numpy[${PYTHON_USEDEP}]
75 dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}]
76 sci-chemistry/molmol
77 sci-chemistry/pymol[${PYTHON_USEDEP}]
78 sci-chemistry/vmd
79 >=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}]
80 >=sci-libs/minfx-1.0.5[${PYTHON_USEDEP}]
81 sci-libs/scipy[${PYTHON_USEDEP}]
82 sci-visualization/grace
83 sci-visualization/opendx
84 x11-libs/wxGTK:${WX_GTK_VER}[X]"
85 DEPEND="${RDEPEND}
86 media-gfx/pngcrush"
87
88 pkg_setup() {
89 python-single-r1_pkg_setup
90 }
91
92 src_prepare() {
93 local png
94 rm -rf minfx bmrblib || die
95 epatch \
96 "${FILESDIR}"/${PN}-3.0.1-gentoo.patch
97 tc-export CC
98 }
99
100 src_compile() {
101 escons
102 }
103
104 src_test() {
105 VIRTUALX_COMMAND="${EPYTHON} ./${PN}.py -x --traceback"
106 virtualmake
107 }
108
109 src_install() {
110 dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf,prompt_screenshot.txt}
111
112 python_moduleinto ${PN}
113 python_domodule *
114
115 rm ${PN} README || die
116
117 make_wrapper ${PN}-nmr "${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py $@"
118 }