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/qscintilla-python: ChangeLog qscintilla-python-2.5.1.ebuild
Date: Tue, 26 Apr 2011 19:28:09
Message-Id: 20110426192800.2510020057@flycatcher.gentoo.org
1 arfrever 11/04/26 19:28:00
2
3 Modified: ChangeLog
4 Added: qscintilla-python-2.5.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha30_p2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 dev-python/qscintilla-python/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 16 Mar 2011 21:10:58 -0000 1.74
24 +++ ChangeLog 26 Apr 2011 19:28:00 -0000 1.75
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-python/qscintilla-python
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.74 2011/03/16 21:10:58 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/ChangeLog,v 1.75 2011/04/26 19:28:00 arfrever Exp $
30 +
31 +*qscintilla-python-2.5.1 (26 Apr 2011)
32 +
33 + 26 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +qscintilla-python-2.5.1.ebuild,
35 + +files/qscintilla-python-2.5.1-disable_stripping.patch:
36 + Version bump.
37
38 16 Mar 2011; Kacper Kowalik <xarthisius@g.o>
39 qscintilla-python-2.4.5.ebuild:
40
41
42
43 1.1 dev-python/qscintilla-python/qscintilla-python-2.5.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.5.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.5.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qscintilla-python-2.5.1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/qscintilla-python/qscintilla-python-2.5.1.ebuild,v 1.1 2011/04/26 19:28:00 arfrever Exp $
53
54 EAPI="3"
55 PYTHON_EXPORT_PHASE_FUNCTIONS="1"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="*-jython"
58
59 inherit eutils python toolchain-funcs
60
61 MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}"
62
63 DESCRIPTION="Python bindings for Qscintilla"
64 HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
65 SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz"
66
67 LICENSE="|| ( GPL-2 GPL-3 )"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
70 IUSE="debug"
71
72 DEPEND=">=dev-python/sip-4.10
73 >=dev-python/PyQt4-4.7[X]
74 ~x11-libs/qscintilla-${PV}"
75 RDEPEND="${DEPEND}"
76
77 S="${WORKDIR}/${MY_P}/Python"
78
79 src_prepare() {
80 epatch "${FILESDIR}/${P}-disable_stripping.patch"
81
82 python_copy_sources
83 }
84
85 src_configure() {
86 configuration() {
87 local myconf=("$(PYTHON)"
88 configure.py
89 -p 4
90 --destdir="${EPREFIX}$(python_get_sitedir)/PyQt4"
91 $(use debug && echo --debug))
92 echo "${myconf[@]}"
93 "${myconf[@]}"
94 }
95 python_execute_function -s configuration
96 }
97
98 src_compile() {
99 building() {
100 emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINK="$(tc-getCXX)"
101 }
102 python_execute_function -s building
103 }