Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pysvn: ChangeLog pysvn-1.7.2.ebuild
Date: Thu, 30 Sep 2010 07:46:05
Message-Id: 20100930074601.5889A20051@flycatcher.gentoo.org
1 grobian 10/09/30 07:46:01
2
3 Modified: ChangeLog pysvn-1.7.2.ebuild
4 Log:
5 Fixed pycxx detection in Prefix, thanks Martin Zibricky in bug #338895, marked ~x86-solaris
6
7 (Portage version: 2.2.01.16711-prefix/cvs/SunOS i386)
8
9 Revision Changes Path
10 1.10 dev-python/pysvn/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 22 Jun 2010 18:38:00 -0000 1.9
23 +++ ChangeLog 30 Sep 2010 07:46:01 -0000 1.10
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-python/pysvn
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.9 2010/06/22 18:38:00 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/ChangeLog,v 1.10 2010/09/30 07:46:01 grobian Exp $
29 +
30 + 30 Sep 2010; Fabian Groffen <grobian@g.o> pysvn-1.7.2.ebuild:
31 + Fixed pycxx detection in Prefix, marked ~x86-solaris
32
33 22 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 pysvn-1.7.2.ebuild:
35
36
37
38 1.5 dev-python/pysvn/pysvn-1.7.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild?r1=1.4&r2=1.5
43
44 Index: pysvn-1.7.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- pysvn-1.7.2.ebuild 22 Jun 2010 18:38:00 -0000 1.4
51 +++ pysvn-1.7.2.ebuild 30 Sep 2010 07:46:01 -0000 1.5
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild,v 1.4 2010/06/22 18:38:00 arfrever Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.2.ebuild,v 1.5 2010/09/30 07:46:01 grobian Exp $
57
58 EAPI="3"
59 SUPPORT_PYTHON_ABIS="1"
60 @@ -13,7 +13,7 @@
61
62 LICENSE="Apache-1.1"
63 SLOT="0"
64 -KEYWORDS="~amd64 ~ppc ~x86 ~x86-freebsd ~ppc-macos"
65 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-freebsd ~ppc-macos ~x86-solaris"
66 IUSE="doc examples"
67
68 DEPEND="dev-lang/python
69 @@ -42,7 +42,11 @@
70 src_configure() {
71 configuration() {
72 cd Source
73 - "$(PYTHON)" setup.py configure --apr-inc-dir="${EPREFIX}/usr/include/apr-1" --svn-root-dir="${EPREFIX}/usr" || die "Configuration failed with Python {PYTHON_ABI}"
74 + "$(PYTHON)" setup.py configure \
75 + --pycxx-src-dir="${EPREFIX}/usr/share/python${PYTHON_ABI}/CXX" \
76 + --apr-inc-dir="${EPREFIX}/usr/include/apr-1" \
77 + --svn-root-dir="${EPREFIX}/usr" \
78 + || die "Configuration failed with Python {PYTHON_ABI}"
79
80 sed -e 's:^\(CCFLAGS=\)\(.*\):\1$(CFLAGS) \2:g' \
81 -e 's:^\(CCCFLAGS=\)\(.*\):\1$(CXXFLAGS) \2:g' \