Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycxx: metadata.xml ChangeLog pycxx-5.4.2.ebuild
Date: Thu, 15 Jan 2009 09:13:42
Message-Id: E1LNOIA-0001wp-1u@stork.gentoo.org
1 bicatali 09/01/15 09:13:34
2
3 Added: metadata.xml ChangeLog pycxx-5.4.2.ebuild
4 Log:
5 Initial import
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.1 dev-python/pycxx/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>python</herd>
20 <longdescription lang="en">
21 PyCXX is a set of C++ facilities to make it easier to write Python
22 extensions. The chief way in which PyCXX makes it easier to write
23 Python extensions is that it increases the probability that
24 your program will not make a reference-counting error and will not
25 have to continually check error returns from the Python C API.
26 </longdescription>
27 </pkgmetadata>
28
29
30
31 1.1 dev-python/pycxx/ChangeLog
32
33 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.1&content-type=text/plain
35
36 Index: ChangeLog
37 ===================================================================
38 # ChangeLog for dev-python/pycxx
39 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
40 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v 1.1 2009/01/15 09:13:33 bicatali Exp $
41
42 *pycxx-5.4.2 (15 Jan 2009)
43
44 15 Jan 2009; Sébastien Fabbro <bicatali@g.o>
45 +files/pycxx-5.4.2-headers-c.patch, +metadata.xml, +pycxx-5.4.2.ebuild:
46 Initial import
47
48
49
50
51 1.1 dev-python/pycxx/pycxx-5.4.2.ebuild
52
53 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/pycxx-5.4.2.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pycxx/pycxx-5.4.2.ebuild?rev=1.1&content-type=text/plain
55
56 Index: pycxx-5.4.2.ebuild
57 ===================================================================
58 # Copyright 1999-2009 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/pycxx-5.4.2.ebuild,v 1.1 2009/01/15 09:13:33 bicatali Exp $
61
62 EAPI=2
63 inherit eutils distutils
64
65 DESCRIPTION="Set of facilities to extend Python with C++"
66 HOMEPAGE="http://cxx.sourceforge.net"
67 SRC_URI="mirror://sourceforge/cxx/${P}.tar.gz"
68 LICENSE="BSD"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="examples"
72
73 PYTHON_MODNAME="CXX"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${P}-headers-c.patch
77 }
78
79 src_install() {
80 distutils_src_install
81 insinto /usr/share/doc/${PF}
82 doins Doc/PyCXX.html
83 if use examples; then
84 insinto /usr/share/doc/${PF}/examples
85 doins Demo/* || die
86 fi
87 }