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