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-libs/mmtk: ChangeLog mmtk-2.7.1.ebuild
Date: Sun, 25 Apr 2010 10:29:32
Message-Id: 20100425102926.072352C04C@corvid.gentoo.org
1 jlec 10/04/25 10:29:25
2
3 Modified: ChangeLog
4 Added: mmtk-2.7.1.ebuild
5 Log:
6 Version Bump, Python ABI fixes, #316225
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 sci-libs/mmtk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/mmtk/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/mmtk/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/mmtk/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/mmtk/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 11 Feb 2010 22:31:19 -0000 1.6
23 +++ ChangeLog 25 Apr 2010 10:29:25 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-libs/mmtk
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmtk/ChangeLog,v 1.6 2010/02/11 22:31:19 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/mmtk/ChangeLog,v 1.7 2010/04/25 10:29:25 jlec Exp $
29 +
30 +*mmtk-2.7.1 (25 Apr 2010)
31 +
32 + 25 Apr 2010; Justin Lecher <jlec@g.o> +mmtk-2.7.1.ebuild:
33 + Version Bump, Python ABI fixes, #316225
34
35 *mmtk-2.6.1 (11 Feb 2010)
36
37
38
39
40 1.1 sci-libs/mmtk/mmtk-2.7.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/mmtk/mmtk-2.7.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/mmtk/mmtk-2.7.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mmtk-2.7.1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-libs/mmtk/mmtk-2.7.1.ebuild,v 1.1 2010/04/25 10:29:25 jlec Exp $
50
51 EAPI="2"
52
53 PYTHON_MODNAME=${MY_PN}
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 # This number identifies each release on the CRU website.
59 # Can't figure out how to avoid hardcoding it.
60 NUMBER="2936"
61
62 MY_PN=${PN/mmtk/MMTK}
63 MY_P=${MY_PN}-${PV}
64
65 DESCRIPTION="Molecular Modeling ToolKit for Python"
66 HOMEPAGE="http://dirac.cnrs-orleans.fr/MMTK/"
67 SRC_URI="http://sourcesup.cru.fr/frs/download.php/${NUMBER}/${MY_P}.tar.gz"
68
69 SLOT="0"
70 LICENSE="CeCILL-2"
71 KEYWORDS="~amd64 ~ppc ~x86"
72 IUSE=""
73
74 RDEPEND=">=dev-python/scientificpython-2.6"
75 DEPEND="${RDEPEND}"
76 RESTRICT_PYTHON_ABIS="3.*"
77
78 S="${WORKDIR}"/${MY_P}
79
80 src_prepare() {
81 sed -i -e "/ext_package/d" \
82 "${S}"/setup.py \
83 || die
84 distutils_src_prepare
85 }
86
87 src_install() {
88 distutils_src_install
89
90 dodoc README* Doc/CHANGELOG || die
91 dohtml -r Doc/{HTML,Reference} || die
92
93 insinto /usr/share/doc/${PF}/pdf
94 doins Doc/PDF/manual.pdf || die
95 }