Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyelemental: ChangeLog pyelemental-1.2.0.ebuild
Date: Sun, 08 Jul 2012 17:42:43
Message-Id: 20120708174229.20B3620065@flycatcher.gentoo.org
1 jlec 12/07/08 17:42:29
2
3 Modified: ChangeLog pyelemental-1.2.0.ebuild
4 Log:
5 dev-python/pyelemental: Add fix for gcc-4.7, #425246
6
7 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-python/pyelemental/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyelemental/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 4 May 2012 15:12:15 -0000 1.5
23 +++ ChangeLog 8 Jul 2012 17:42:28 -0000 1.6
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/pyelemental
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyelemental/ChangeLog,v 1.5 2012/05/04 15:12:15 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyelemental/ChangeLog,v 1.6 2012/07/08 17:42:28 jlec Exp $
29 +
30 + 08 Jul 2012; Justin Lecher <jlec@g.o> pyelemental-1.2.0.ebuild,
31 + +files/pyelemental-1.2.0-gcc-4.7.patch:
32 + Add fix for gcc-4.7, #425246
33
34 04 May 2012; Patrick Lauer <patrick@g.o> pyelemental-1.2.0.ebuild:
35 Migrating dev-util/pkgconfig -> virtual/pkgconfig
36
37
38
39 1.6 dev-python/pyelemental/pyelemental-1.2.0.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild?r1=1.5&r2=1.6
44
45 Index: pyelemental-1.2.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- pyelemental-1.2.0.ebuild 4 May 2012 15:12:15 -0000 1.5
52 +++ pyelemental-1.2.0.ebuild 8 Jul 2012 17:42:28 -0000 1.6
53 @@ -1,16 +1,17 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild,v 1.5 2012/05/04 15:12:15 patrick Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyelemental/pyelemental-1.2.0.ebuild,v 1.6 2012/07/08 17:42:28 jlec Exp $
58 +
59 +EAPI=4
60
61 -EAPI="3"
62 PYTHON_DEPEND="2"
63 SUPPORT_PYTHON_ABIS="1"
64 RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
65
66 -inherit distutils
67 +inherit distutils eutils
68
69 DESCRIPTION="Python bindings for libelemental (sci-chemistry/gelemental)"
70 -HOMEPAGE="http://www.kdau.com/projects/gelemental"
71 +HOMEPAGE="http://freecode.com/projects/gelemental/"
72 SRC_URI="http://www.kdau.com/files/${P}.tar.bz2"
73
74 LICENSE="GPL-3"
75 @@ -24,6 +25,11 @@
76
77 DOCS="AUTHORS NEWS"
78
79 +src_prepare() {
80 + epatch "${FILESDIR}"/${P}-gcc-4.7.patch
81 + distutils_src_prepare
82 +}
83 +
84 src_install() {
85 distutils_src_install
86 dohtml docs/html/*.html || die "dohtml failed"