Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qscintilla-python/
Date: Sun, 26 Aug 2018 17:58:03
Message-Id: 1535306267.acca71e161133588d6cc13d170e53108b8f4b2bf.pesa@gentoo
1 commit: acca71e161133588d6cc13d170e53108b8f4b2bf
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 17:56:31 2018 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 17:57:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acca71e1
7
8 dev-python/qscintilla-python: fix out-of-source builds
9
10 Closes: https://bugs.gentoo.org/664612
11 Package-Manager: Portage-2.3.48, Repoman-2.3.10
12
13 dev-python/qscintilla-python/qscintilla-python-2.10.7.ebuild | 10 ++++++----
14 1 file changed, 6 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/qscintilla-python/qscintilla-python-2.10.7.ebuild b/dev-python/qscintilla-python/qscintilla-python-2.10.7.ebuild
17 index 1d3059473f9..d9ffd92fb6c 100644
18 --- a/dev-python/qscintilla-python/qscintilla-python-2.10.7.ebuild
19 +++ b/dev-python/qscintilla-python/qscintilla-python-2.10.7.ebuild
20 @@ -33,14 +33,16 @@ RDEPEND="${DEPEND}"
21
22 S=${WORKDIR}/${MY_P}/Python
23
24 +src_prepare() {
25 + default
26 + python_copy_sources
27 +}
28 +
29 src_configure() {
30 configuration() {
31 - # Fix out-of-source build and installation of .sip files
32 - ln -s "${S}"/sip || die
33 -
34 local myconf=(
35 "${PYTHON}"
36 - "${S}"/configure.py
37 + configure.py
38 --pyqt=PyQt5
39 --qmake="$(qt5_get_bindir)"/qmake
40 --sip-incdir="$(python_get_includedir)"