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: sys-block/parted/
Date: Tue, 28 Feb 2023 16:54:36
Message-Id: 1677603268.6d7bd083f223ad321f6ba35184e6e45e5e36ffcc.mgorny@gentoo
1 commit: 6d7bd083f223ad321f6ba35184e6e45e5e36ffcc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 16:54:11 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 16:54:28 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d7bd083
7
8 sys-block/parted: eautoconf to fix implicit func decls in configure
9
10 Bug: https://bugs.gentoo.org/898434
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 sys-block/parted/parted-3.5.ebuild | 12 ++++++++----
14 1 file changed, 8 insertions(+), 4 deletions(-)
15
16 diff --git a/sys-block/parted/parted-3.5.ebuild b/sys-block/parted/parted-3.5.ebuild
17 index 73ef2c77cd67..1c430e303e73 100644
18 --- a/sys-block/parted/parted-3.5.ebuild
19 +++ b/sys-block/parted/parted-3.5.ebuild
20 @@ -1,15 +1,18 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 +# Copyright 1999-2023 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/bcl.asc
28 -inherit verify-sig
29 +
30 +inherit autotools verify-sig
31
32 DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
33 HOMEPAGE="https://www.gnu.org/software/parted/"
34 -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
35 - verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig )"
36 +SRC_URI="
37 + mirror://gnu/${PN}/${P}.tar.xz
38 + verify-sig? ( mirror://gnu/${PN}/${P}.tar.xz.sig )
39 +"
40
41 LICENSE="GPL-3+"
42 SLOT="0"
43 @@ -46,6 +49,7 @@ PATCHES=(
44
45 src_prepare() {
46 default
47 + eautoconf
48
49 touch doc/pt_BR/Makefile.in || die
50 }