Diff make-4.3-r1 with a make-4.4.1-r1

/usr/portage/sys-devel/make/make-4.4.1-r1.ebuild 2023-10-09 14:52:35.488368501 +0300
1 1
# Copyright 1999-2023 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="${BROOT}"/usr/share/openpgp-keys/make.asc
7 7
inherit flag-o-matic verify-sig
......
11 11
if [[ ${PV} == 9999 ]] ; then
12 12
	EGIT_REPO_URI="https://git.savannah.gnu.org/git/make.git"
13 13
	inherit autotools git-r3
14
elif [[ $(ver_cut 3) -ge 90 ]] ; then
14
elif [[ $(ver_cut 3) -ge 90 || $(ver_cut 4) -ge 90 ]] ; then
15 15
	SRC_URI="https://alpha.gnu.org/gnu/make/${P}.tar.gz"
16 16
	SRC_URI+=" verify-sig? ( https://alpha.gnu.org/gnu/make/${P}.tar.gz.sig )"
17 17
else
18
	SRC_URI="mirror://gnu//make/${P}.tar.gz"
19
	SRC_URI+=" verify-sig? ( mirror://gnu//make/${P}.tar.gz.sig )"
18
	SRC_URI="mirror://gnu/make/${P}.tar.gz"
19
	SRC_URI+=" verify-sig? ( mirror://gnu/make/${P}.tar.gz.sig )"
20 20
	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
21 21
fi
22 22

  
......
25 25
IUSE="guile nls static"
26 26

  
27 27
DEPEND="guile? ( >=dev-scheme/guile-1.8:= )"
28
BDEPEND="nls? ( sys-devel/gettext )
29
	verify-sig? ( sec-keys/openpgp-keys-make )"
30
RDEPEND="${DEPEND}
31
	nls? ( virtual/libintl )"
28
RDEPEND="
29
	${DEPEND}
30
	nls? ( virtual/libintl )
31
"
32
BDEPEND="
33
	nls? ( sys-devel/gettext )
34
	verify-sig? ( sec-keys/openpgp-keys-make )
35
"
32 36

  
33 37
PATCHES=(
34
	"${FILESDIR}"/${PN}-3.82-darwin-library_search-dylib.patch
35
	"${FILESDIR}"/${PN}-4.2-default-cxx.patch
38
	"${FILESDIR}"/${PN}-4.4-default-cxx.patch
36 39
)
37 40

  
38 41
src_unpack() {
Thank you!