Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libwacom/
Date: Sun, 02 Feb 2020 02:41:24
Message-Id: 1580610952.7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32.mattst88@gentoo
1 commit: 7d75ea5a2c39d0cc8b2779f6112c7b56c8eeab32
2 Author: David Heidelberg <david <AT> ixit <DOT> cz>
3 AuthorDate: Sun Oct 27 15:42:04 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 2 02:35:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d75ea5a
7
8 dev-libs/libwacom: 1.0, avoid using GOLD linker
9
10 Upstream bug: https://github.com/linuxwacom/libwacom/issues/170
11 Closes: https://bugs.gentoo.org/694290
12
13 Signed-off-by: David Heidelberg <david <AT> ixit.cz>
14 Closes: https://github.com/gentoo/gentoo/pull/13468
15 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
16
17 dev-libs/libwacom/libwacom-1.0.ebuild | 6 +++++-
18 1 file changed, 5 insertions(+), 1 deletion(-)
19
20 diff --git a/dev-libs/libwacom/libwacom-1.0.ebuild b/dev-libs/libwacom/libwacom-1.0.ebuild
21 index 358cf66a884..eea01082ec8 100644
22 --- a/dev-libs/libwacom/libwacom-1.0.ebuild
23 +++ b/dev-libs/libwacom/libwacom-1.0.ebuild
24 @@ -3,7 +3,7 @@
25
26 EAPI=7
27
28 -inherit autotools udev
29 +inherit autotools udev toolchain-funcs
30
31 DESCRIPTION="Library for identifying Wacom tablets and their model-specific features"
32 HOMEPAGE="https://github.com/linuxwacom/libwacom"
33 @@ -24,6 +24,10 @@ RDEPEND="
34 "
35 DEPEND="${RDEPEND}"
36
37 +pkg_setup() {
38 + tc-ld-disable-gold # bug https://github.com/linuxwacom/libwacom/issues/170
39 +}
40 +
41 src_prepare() {
42 default
43 rm -r data/foo || die # duplicate dir in tarball, bug #693434