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: ChangeLog relax-3.2.2.ebuild
Date: Fri, 06 Jun 2014 08:10:18
Message-Id: 20140606081014.774D52004E@flycatcher.gentoo.org
1 jlec 14/06/06 08:10:14
2
3 Modified: ChangeLog
4 Added: relax-3.2.2.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.25 sci-chemistry/relax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 26 May 2014 07:40:57 -0000 1.24
24 +++ ChangeLog 6 Jun 2014 08:10:14 -0000 1.25
25 @@ -1,6 +1,12 @@
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.24 2014/05/26 07:40:57 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.25 2014/06/06 08:10:14 jlec Exp $
30 +
31 +*relax-3.2.2 (06 Jun 2014)
32 +
33 + 06 Jun 2014; Justin Lecher <jlec@g.o> +relax-3.2.2.ebuild,
34 + +files/relax-3.2.2-gentoo.patch:
35 + Version Bump
36
37 *relax-3.2.1 (26 May 2014)
38
39
40
41
42 1.1 sci-chemistry/relax/relax-3.2.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: relax-3.2.2.ebuild
48 ===================================================================
49 # Copyright 1999-2014 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.2.2.ebuild,v 1.1 2014/06/06 08:10:14 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/matplotlib[${PYTHON_USEDEP}]
75 dev-python/numpy[${PYTHON_USEDEP}]
76 dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}]
77 sci-chemistry/molmol
78 sci-chemistry/pymol[${PYTHON_USEDEP}]
79 sci-chemistry/vmd
80 >=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}]
81 >=sci-libs/minfx-1.0.5[${PYTHON_USEDEP}]
82 sci-libs/scipy[${PYTHON_USEDEP}]
83 sci-visualization/grace
84 sci-visualization/opendx
85 x11-libs/wxGTK:${WX_GTK_VER}[X]"
86 DEPEND="${RDEPEND}
87 media-gfx/pngcrush"
88
89 pkg_setup() {
90 python-single-r1_pkg_setup
91 }
92
93 src_prepare() {
94 local png
95 rm -rf minfx bmrblib || die
96 epatch \
97 "${FILESDIR}"/${P}-gentoo.patch
98 tc-export CC
99 }
100
101 src_compile() {
102 escons
103 }
104
105 src_test() {
106 VIRTUALX_COMMAND="${EPYTHON} ./${PN}.py -x --traceback"
107 virtualmake
108 }
109
110 src_install() {
111 dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf,prompt_screenshot.txt}
112
113 python_moduleinto ${PN}
114 python_domodule *
115
116 rm ${PN} README || die
117
118 make_wrapper ${PN}-nmr "${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py $@"
119 }