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-chemistry/coot/
Date: Sun, 02 Jun 2013 13:43:16
Message-Id: 1370180558.11b6c665a97557d3006738c86294e5ded6bb27ff.jlec@gentoo
1 commit: 11b6c665a97557d3006738c86294e5ded6bb27ff
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 13:41:55 2013 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 2 13:42:38 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=11b6c665
7
8 sci-chemistry/coot: Fix PYTHON() -> ${EPYTHON} for new eclasses
9
10 Package-Manager: portage-2.2.0_alpha177
11
12 ---
13 sci-chemistry/coot/ChangeLog | 3 +++
14 sci-chemistry/coot/coot-9999.ebuild | 4 ++--
15 2 files changed, 5 insertions(+), 2 deletions(-)
16
17 diff --git a/sci-chemistry/coot/ChangeLog b/sci-chemistry/coot/ChangeLog
18 index e877cf7..c729ace 100644
19 --- a/sci-chemistry/coot/ChangeLog
20 +++ b/sci-chemistry/coot/ChangeLog
21 @@ -2,6 +2,9 @@
22 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 + 02 Jun 2013; Justin Lecher <jlec@g.o> coot-9999.ebuild:
26 + Fix PYTHON() -> ${EPYTHON} for new eclasses
27 +
28 29 May 2013; Justin Lecher <jlec@g.o> coot-9999.ebuild:
29 Move to new python eclasses
30
31
32 diff --git a/sci-chemistry/coot/coot-9999.ebuild b/sci-chemistry/coot/coot-9999.ebuild
33 index 73032af..4a7ee55 100644
34 --- a/sci-chemistry/coot/coot-9999.ebuild
35 +++ b/sci-chemistry/coot/coot-9999.ebuild
36 @@ -96,7 +96,7 @@ src_unpack() {
37
38 src_prepare() {
39 sed \
40 - -e "s:AM_COOT_SYS_BUILD_TYPE:COOT_SYS_BUILD_TYPE=Gentoo-Linux-$(PYTHON)-gtk2 ; AC_MSG_RESULT([\$COOT_SYS_BUILD_TYPE]); AC_SUBST(COOT_SYS_BUILD_TYPE):g" \
41 + -e "s:AM_COOT_SYS_BUILD_TYPE:COOT_SYS_BUILD_TYPE=Gentoo-Linux-${PYTHON}-gtk2 ; AC_MSG_RESULT([\$COOT_SYS_BUILD_TYPE]); AC_SUBST(COOT_SYS_BUILD_TYPE):g" \
42 -i configure.in || die
43
44 autotools-utils_src_prepare
45 @@ -128,7 +128,7 @@ src_configure() {
46
47 src_compile() {
48 autotools-utils_src_compile
49 - python_fix_shebang "${S}"/src/coot_gtk2.py
50 + python_fix_shebang "${S}"/src/coot_gtk2.py "${S}"/python-tests/coot_unittest.py
51 cp "${S}"/src/coot_gtk2.py python/coot.py || die
52 }