Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-qxl/
Date: Wed, 09 Sep 2020 10:36:48
Message-Id: 1599647668.e525479b175c6db636e5bf3702b502a4e89d22a0.mgorny@gentoo
1 commit: e525479b175c6db636e5bf3702b502a4e89d22a0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 9 10:22:43 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 10:34:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e525479b
7
8 x11-drivers/xf86-video-qxl: Eradicate python2
9
10 Closes: https://bugs.gentoo.org/735520
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild | 18 +++---------------
14 1 file changed, 3 insertions(+), 15 deletions(-)
15
16 diff --git a/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild
17 index e68a0aea45c..7180a2837a4 100644
18 --- a/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild
19 +++ b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild
20 @@ -1,35 +1,23 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=5
26 -PYTHON_COMPAT=( python2_7 )
27 -inherit python-single-r1 xorg-2
28 +inherit xorg-2
29
30 DESCRIPTION="QEMU QXL paravirt video driver"
31
32 KEYWORDS="amd64 x86"
33 -IUSE="xspice"
34 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
35
36 RDEPEND="
37 - xspice? (
38 - app-emulation/spice
39 - ${PYTHON_DEPS}
40 - )
41 x11-base/xorg-server[-minimal]
42 >=x11-libs/libdrm-2.4.46"
43 DEPEND="${RDEPEND}
44 >=app-emulation/spice-protocol-0.12.0
45 x11-base/xorg-proto"
46
47 -src_prepare() {
48 - python_fix_shebang scripts
49 - xorg-2_src_prepare
50 -}
51 -
52 src_configure() {
53 XORG_CONFIGURE_OPTIONS=(
54 - $(use_enable xspice)
55 + --disable-xspice
56 )
57 xorg-2_src_configure
58 }