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/pymol-plugins-cealign: ChangeLog pymol-plugins-cealign-0.9.ebuild
Date: Sun, 21 Feb 2010 10:04:27
Message-Id: E1Nj8fl-0004Dr-9R@stork.gentoo.org
1 jlec 10/02/21 10:04:21
2
3 Modified: ChangeLog pymol-plugins-cealign-0.9.ebuild
4 Log:
5 Make it really multiple python version aware
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 sci-chemistry/pymol-plugins-cealign/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 19 Feb 2010 12:32:39 -0000 1.3
22 +++ ChangeLog 21 Feb 2010 10:04:20 -0000 1.4
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-chemistry/pymol-plugins-cealign
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog,v 1.3 2010/02/19 12:32:39 jlec Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/ChangeLog,v 1.4 2010/02/21 10:04:20 jlec Exp $
28 +
29 + 21 Feb 2010; Justin Lecher (jlec) <jlec@g.o>
30 + pymol-plugins-cealign-0.9.ebuild:
31 + Make it really multiple python version aware
32
33 19 Feb 2010; Justin Lecher (jlec) <jlec@×××××××××.net>
34 pymol-plugins-cealign-0.9.ebuild:
35
36
37
38 1.4 sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild?r1=1.3&r2=1.4
43
44 Index: pymol-plugins-cealign-0.9.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- pymol-plugins-cealign-0.9.ebuild 19 Feb 2010 12:32:39 -0000 1.3
51 +++ pymol-plugins-cealign-0.9.ebuild 21 Feb 2010 10:04:20 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild,v 1.3 2010/02/19 12:32:39 jlec Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-cealign/pymol-plugins-cealign-0.9.ebuild,v 1.4 2010/02/21 10:04:20 jlec Exp $
57
58 EAPI="3"
59
60 @@ -30,23 +30,21 @@
61 }
62
63 src_install(){
64 - mtype=$(uname -m)
65 -
66 distutils_src_install
67
68 installation() {
69 insinto $(python_get_sitedir)/cealign
70 doins qkabsch.py cealign.py || die
71 - }
72 - python_execute_function -s installation
73
74 - cat >> "${T}"/pymolrc <<- EOF
75 - run ${EPREFIX}/$(python_get_sitedir -f)/cealign/qkabsch.py
76 - run ${EPREFIX}/$(python_get_sitedir -f)/cealign/cealign.py
77 - EOF
78 + cat > "${T}"/pymolrc <<- EOF
79 + run ${EPREFIX}/$(python_get_sitedir)/cealign/qkabsch.py
80 + run ${EPREFIX}/$(python_get_sitedir)/cealign/cealign.py
81 + EOF
82
83 - insinto $(python_get_sitedir -f)/pymol
84 - doins "${T}"/pymolrc || die
85 + insinto $(python_get_sitedir)/pymol
86 + doins "${T}"/pymolrc || die
87 + }
88 + python_execute_function -s installation
89
90 dodoc CHANGES doc/cealign.pdf || die
91 }