Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-sqlite3/
Date: Fri, 22 May 2020 18:22:17
Message-Id: 1590171525.6cebaeb21b849b62633ae160bde8fb58be73767e.slyfox@gentoo
1 commit: 6cebaeb21b849b62633ae160bde8fb58be73767e
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 22 18:18:45 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri May 22 18:18:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cebaeb2
7
8 dev-scheme/guile-sqlite3: add QA CFLAGS workaround, bug #724074
9
10 guile does not use CFLAGS, it's a portage's false positive
11 (see bug #677600).
12
13 Reported-by: Agostino Sarubbo
14 Closes: https://bugs.gentoo.org/724074
15 Bug: https://bugs.gentoo.org/677600
16 Package-Manager: Portage-2.3.99, Repoman-2.3.22
17 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
18
19 dev-scheme/guile-sqlite3/guile-sqlite3-0.1.0.ebuild | 6 +++++-
20 1 file changed, 5 insertions(+), 1 deletion(-)
21
22 diff --git a/dev-scheme/guile-sqlite3/guile-sqlite3-0.1.0.ebuild b/dev-scheme/guile-sqlite3/guile-sqlite3-0.1.0.ebuild
23 index 37fa893a5c2..2dcdab11299 100644
24 --- a/dev-scheme/guile-sqlite3/guile-sqlite3-0.1.0.ebuild
25 +++ b/dev-scheme/guile-sqlite3/guile-sqlite3-0.1.0.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2019 Gentoo Authors
28 +# Copyright 1999-2020 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 EAPI=6
32 @@ -20,6 +20,10 @@ RDEPEND="
33 "
34 DEPEND="${RDEPEND}"
35
36 +# guile generates ELF files without use of C or machine code
37 +# It's a portage's false positive. bug #677600
38 +QA_FLAGS_IGNORED='.*[.]go'
39 +
40 S=${WORKDIR}/${PN}
41
42 src_prepare() {