Gentoo Archives: gentoo-commits

From: Kenton Groombridge <concord@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mumble/
Date: Thu, 30 Jun 2022 00:20:11
Message-Id: 1656548056.930896984ec102466237163e6672b3285d0649b3.concord@gentoo
1 commit: 930896984ec102466237163e6672b3285d0649b3
2 Author: Kenton Groombridge <concord <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 22:51:50 2022 +0000
4 Commit: Kenton Groombridge <concord <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 00:14:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93089698
7
8 media-sound/mumble: fix build with dev-lang/python-exec[-native-symlinks]
9
10 Closes: https://bugs.gentoo.org/show_bug.cgi?id=769935
11 Signed-off-by: Kenton Groombridge <concord <AT> gentoo.org>
12
13 media-sound/mumble/mumble-1.3.4.ebuild | 10 ++++++++--
14 1 file changed, 8 insertions(+), 2 deletions(-)
15
16 diff --git a/media-sound/mumble/mumble-1.3.4.ebuild b/media-sound/mumble/mumble-1.3.4.ebuild
17 index 5c1fc367dd3e..b34bfa5eec22 100644
18 --- a/media-sound/mumble/mumble-1.3.4.ebuild
19 +++ b/media-sound/mumble/mumble-1.3.4.ebuild
20 @@ -1,9 +1,10 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 -inherit desktop multilib-build qmake-utils xdg
28 +PYTHON_COMPAT=( python3_{8..10} )
29 +inherit desktop multilib-build python-any-r1 qmake-utils xdg
30
31 DESCRIPTION="Mumble is an open source, low-latency, high quality voice chat software"
32 HOMEPAGE="https://wiki.mumble.info"
33 @@ -55,6 +56,7 @@ RDEPEND="
34 zeroconf? ( net-dns/avahi[mdnsresponder-compat] )
35 "
36 DEPEND="${RDEPEND}
37 + ${PYTHON_DEPS}
38 >=dev-libs/boost-1.41.0
39 x11-base/xorg-proto
40 "
41 @@ -63,6 +65,10 @@ BDEPEND="
42 virtual/pkgconfig
43 "
44
45 +pkg_setup() {
46 + python-any-r1_pkg_setup
47 +}
48 +
49 # NB: qmake does not support multilib but it's fine to configure
50 # for the native ABI here
51 src_configure() {