Diff parted-3.6-r2 with a parted-3.7

/usr/portage/sys-block/parted/parted-3.7.ebuild 2026-05-20 19:17:03.717578714 +0300
1 1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/bcl.asc
7 7

  
8
inherit autotools verify-sig
8
inherit verify-sig
9 9

  
10 10
DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
11 11
HOMEPAGE="https://www.gnu.org/software/parted/"
......
32 32
DEPEND="${RDEPEND}"
33 33
BDEPEND="
34 34
	nls? ( >=sys-devel/gettext-0.12.1-r2 )
35
	verify-sig? ( >=sec-keys/openpgp-keys-bcl-20230315 )
35
	verify-sig? ( >=sec-keys/openpgp-keys-bcl-20260418 )
36 36
	virtual/pkgconfig
37 37
"
38 38

  
39 39
DOCS=(
40
	AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API,FAT,USER.jp}
40
	AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API.md,FAT,USER.jp}
41 41
)
42 42

  
43 43
PATCHES=(
44 44
	"${FILESDIR}"/${PN}-3.2-po4a-mandir.patch
45
	"${FILESDIR}"/${PN}-3.3-atari.patch
46 45
	# https://lists.gnu.org/archive/html/bug-parted/2022-02/msg00000.html
47 46
	"${FILESDIR}"/${PN}-3.4-posix-printf.patch
48 47
	# https://debbugs.gnu.org/61129
49 48
	"${FILESDIR}"/${PN}-3.6-tests-unicode.patch
50
	# https://debbugs.gnu.org/61128
51
	"${FILESDIR}"/${PN}-3.6-tests-non-bash.patch
52
	# bug #910487
53
	"${FILESDIR}"/${P}-underlinked-util-linux.patch
54
	# bug #943690
55
	"${FILESDIR}"/${P}-c23.patch
56 49
)
57 50

  
58 51
# false positive
......
60 53

  
61 54
src_prepare() {
62 55
	default
63
	eautoreconf
64 56

  
65 57
	touch doc/pt_BR/Makefile.in || die
66 58
}
......
78 70
		$(use_enable static-libs static)
79 71
		$(use_with readline)
80 72
		--disable-rpath
73
		# Avoid clobbering _FORTIFY_SOURCE
74
		--disable-gcc-warnings
81 75
	)
82
	econf "${myconf[@]}"
76

  
77
	# https://debbugs.gnu.org/61128
78
	CONFIG_SHELL="${BROOT}"/bin/bash econf "${myconf[@]}"
83 79
}
84 80

  
85 81
src_install() {
Thank you!