Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dump/
Date: Wed, 06 Jan 2021 19:21:31
Message-Id: 1609960727.8e061364b8c461419cbf03aaa7a98b691cbe580b.dilfridge@gentoo
1 commit: 8e061364b8c461419cbf03aaa7a98b691cbe580b
2 Author: Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 6 19:18:47 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 6 19:18:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e061364
7
8 app-arch/dump: Apply gcc-10 workaround
9
10 Quoting upstream:
11 > Mike Frysinger - 5 days ago
12 > the codebase is a mess and not worth my time to untangle, so i just
13 > added -fcommon to the configure script's CFLAGS
14
15 Closes: https://bugs.gentoo.org/707234
16 Package-Manager: Portage-3.0.12, Repoman-3.0.2
17 Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>
18
19 app-arch/dump/dump-0.4.46-r1.ebuild | 6 +++++-
20 1 file changed, 5 insertions(+), 1 deletion(-)
21
22 diff --git a/app-arch/dump/dump-0.4.46-r1.ebuild b/app-arch/dump/dump-0.4.46-r1.ebuild
23 index c768fa8534d..1ebc6f99374 100644
24 --- a/app-arch/dump/dump-0.4.46-r1.ebuild
25 +++ b/app-arch/dump/dump-0.4.46-r1.ebuild
26 @@ -1,8 +1,10 @@
27 -# Copyright 1999-2020 Gentoo Authors
28 +# Copyright 1999-2021 Gentoo Authors
29 # Distributed under the terms of the GNU General Public License v2
30
31 EAPI=7
32
33 +inherit flag-o-matic
34 +
35 MY_P="${PN}-$(ver_rs 2 b)"
36 S=${WORKDIR}/${MY_P}
37 DESCRIPTION="Dump/restore ext2fs backup utilities"
38 @@ -53,6 +55,8 @@ PATCHES=(
39 )
40
41 src_configure() {
42 + append-flags -fcommon
43 +
44 local myeconfargs=(
45 --with-dumpdatespath=/etc/dumpdates
46 --with-rmtpath='$(sbindir)/rmt'