Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pycxx: pycxx-6.2.5.ebuild ChangeLog
Date: Wed, 28 Aug 2013 00:01:28
Message-Id: 20130828000121.15F232004C@flycatcher.gentoo.org
1 floppym 13/08/28 00:01:20
2
3 Modified: ChangeLog
4 Added: pycxx-6.2.5.ebuild
5 Log:
6 Version bump. Convert to distutils-r1.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.46 dev-python/pycxx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycxx/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycxx/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 8 Jun 2012 11:34:54 -0000 1.45
24 +++ ChangeLog 28 Aug 2013 00:01:20 -0000 1.46
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pycxx
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v 1.45 2012/06/08 11:34:54 phajdan.jr Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/ChangeLog,v 1.46 2013/08/28 00:01:20 floppym Exp $
31 +
32 +*pycxx-6.2.5 (28 Aug 2013)
33 +
34 + 28 Aug 2013; Mike Gilbert <floppym@g.o> +pycxx-6.2.5.ebuild:
35 + Version bump. Convert to distutils-r1.
36
37 08 Jun 2012; Pawel Hajdan jr <phajdan.jr@g.o> pycxx-6.2.4-r1.ebuild:
38 x86 stable wrt bug #418907
39 @@ -181,4 +186,3 @@
40 15 Jan 2009; Sébastien Fabbro <bicatali@g.o>
41 +files/pycxx-5.4.2-headers-c.patch, +metadata.xml, +pycxx-5.4.2.ebuild:
42 Initial import
43 -
44
45
46
47 1.1 dev-python/pycxx/pycxx-6.2.5.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycxx/pycxx-6.2.5.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pycxx/pycxx-6.2.5.ebuild?rev=1.1&content-type=text/plain
51
52 Index: pycxx-6.2.5.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/pycxx/pycxx-6.2.5.ebuild,v 1.1 2013/08/28 00:01:20 floppym Exp $
57
58 EAPI="5"
59 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
60
61 inherit eutils distutils-r1
62
63 DESCRIPTION="Set of facilities to extend Python with C++"
64 HOMEPAGE="http://cxx.sourceforge.net"
65 SRC_URI="mirror://sourceforge/cxx/${P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
70 IUSE="doc examples"
71
72 python_prepare_all() {
73 # Without this, pysvn fails.
74 # CXX/Python2/Config.hxx: No such file or directory
75 sed -e "/^#include/s:/Python[23]/:/:" -i CXX/*/*.hxx || die "sed failed"
76
77 # Remove python2 print statement
78 echo > Lib/__init__.py || die
79
80 local PATCHES=(
81 "${FILESDIR}/${PN}-6.2.3-installation.patch"
82 )
83 distutils-r1_python_prepare_all
84 }
85
86 python_install_all() {
87 use doc && local HTML_DOCS=( Doc/ )
88 use examples && local EXAMPLES=( Demo/Python{2,3}/ )
89 distutils-r1_python_install_all
90 }