Diff cabextract-1.9.1 with a cabextract-1.11

/usr/portage/app-arch/cabextract/cabextract-1.11.ebuild 2023-10-09 14:52:28.180368317 +0300
1
# Copyright 1999-2022 Gentoo Authors
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
inherit autotools toolchain-funcs
6
inherit toolchain-funcs
7 7

  
8 8
if [[ ${PV} == "9999" ]] ; then
9 9
	EGIT_REPO_URI="https://github.com/kyz/libmspack.git"
10
	inherit git-r3
10
	inherit autotools git-r3
11 11
	MY_P="${PN}-9999"
12 12

  
13 13
	LIBMSPACK_DEPEND="~dev-libs/libmspack-9999:="
14 14
else
15
	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
15
	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"
16 16
	MY_PV="${PV/_alpha/alpha}"
17 17
	MY_P="${PN}-${MY_PV}"
18 18
	SRC_URI="https://www.cabextract.org.uk/${P}.tar.gz"
......
45 45

  
46 46
	default
47 47

  
48
	eautoreconf
48
	[[ ${PV} == "9999" ]] && eautoreconf
49 49
}
50 50

  
51 51
src_configure() {
Thank you!