Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycxx: ChangeLog pycxx-6.1.0.ebuild
Date: Wed, 05 Aug 2009 02:54:43
Message-Id: E1MYWeH-0005rR-H3@stork.gentoo.org
1 arfrever 09/08/05 02:54:41
2
3 Modified: ChangeLog
4 Added: pycxx-6.1.0.ebuild
5 Log:
6 Version bump. Set SUPPORT_PYTHON_ABIS.
7 (Portage version: 13918-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-python/pycxx/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 15 Feb 2009 21:20:08 -0000 1.2
23 +++ ChangeLog 5 Aug 2009 02:54:41 -0000 1.3
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-python/pycxx
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v 1.2 2009/02/15 21:20:08 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v 1.3 2009/08/05 02:54:41 arfrever Exp $
29 +
30 +*pycxx-6.1.0 (05 Aug 2009)
31 +
32 + 05 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +pycxx-6.1.0.ebuild, +files/pycxx-6.1.0-C_compatible_headers.patch,
34 + +files/pycxx-6.1.0-python-3.patch, +files/pycxx-6.1.0-setup.py.patch:
35 + Version bump. Set SUPPORT_PYTHON_ABIS.
36
37 *pycxx-5.5.0 (15 Feb 2009)
38
39
40
41
42 1.1 dev-python/pycxx/pycxx-6.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/pycxx-6.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/pycxx-6.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pycxx-6.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/pycxx-6.1.0.ebuild,v 1.1 2009/08/05 02:54:41 arfrever Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit eutils distutils
57
58 DESCRIPTION="Set of facilities to extend Python with C++"
59 HOMEPAGE="http://cxx.sourceforge.net"
60 SRC_URI="mirror://sourceforge/cxx/${P}.tar.gz"
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc examples"
65
66 PYTHON_MODNAME="CXX"
67
68 src_prepare() {
69 epatch "${FILESDIR}/${P}-setup.py.patch"
70 epatch "${FILESDIR}/${P}-python-3.patch"
71 epatch "${FILESDIR}/${P}-C_compatible_headers.patch"
72 }
73
74 src_install() {
75 distutils_src_install
76 if use doc; then
77 dohtml -r Doc/ || die "dohtml failed"
78 fi
79
80 if use examples; then
81 docinto examples/python-2
82 dodoc Demo/Python2/* || die "dodoc failed"
83 docinto examples/python-3
84 dodoc Demo/Python3/* || die "dodoc failed"
85 fi
86 }