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/pymmlib: ChangeLog pymmlib-1.0.0-r1.ebuild
Date: Sun, 25 Apr 2010 10:47:13
Message-Id: 20100425104709.2B3342C04C@corvid.gentoo.org
1 jlec 10/04/25 10:47:09
2
3 Modified: ChangeLog
4 Added: pymmlib-1.0.0-r1.ebuild
5 Log:
6 Python ABI fixes, #316227
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 sci-libs/pymmlib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/pymmlib/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/pymmlib/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/pymmlib/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 29 May 2008 17:54:58 -0000 1.15
23 +++ ChangeLog 25 Apr 2010 10:47:08 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-libs/pymmlib
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/ChangeLog,v 1.15 2008/05/29 17:54:58 hawking Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/ChangeLog,v 1.16 2010/04/25 10:47:08 jlec Exp $
30 +
31 +*pymmlib-1.0.0-r1 (25 Apr 2010)
32 +
33 + 25 Apr 2010; Justin Lecher <jlec@g.o> +pymmlib-1.0.0-r1.ebuild:
34 + Python ABI fixes, #316227
35
36 29 May 2008; Ali Polatel <hawking@g.o> pymmlib-0.9.7.ebuild,
37 pymmlib-0.9.8.ebuild, pymmlib-1.0.0.ebuild:
38
39
40
41 1.1 sci-libs/pymmlib/pymmlib-1.0.0-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/pymmlib/pymmlib-1.0.0-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/pymmlib/pymmlib-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pymmlib-1.0.0-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-libs/pymmlib/pymmlib-1.0.0-r1.ebuild,v 1.1 2010/04/25 10:47:08 jlec Exp $
51
52 EAPI="3"
53
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils multilib
57
58 DESCRIPTION="Software toolkit and library of routines for the analysis and manipulation of macromolecular structural models"
59 HOMEPAGE="http://pymmlib.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/pymmlib/${P}.tar.gz"
61
62 LICENSE="Artistic"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE=""
66
67 RDEPEND="
68 >=dev-python/numpy-0.9.8
69 dev-python/pygtkglext
70 virtual/glu
71 virtual/glut
72 virtual/opengl
73 x11-libs/libXmu"
74 DEPEND="${RDEPEND}"
75 RESTRICT_PYTHON_ABIS="3.*"
76
77 src_prepare() {
78 python_convert_shebangs $(python_get_version -f) "${S}"/applications/* "${S}"/examples/*
79 distutils_src_prepare
80 }
81
82 src_install() {
83 distutils_src_install
84 dobin "${S}"/applications/* "${S}"/examples/* || die
85 dodoc "${S}"/README.txt || die
86 dohtml -r "${S}"/doc || die
87 }