Diff gzip-1.12-r4 with a gzip-1.13

/usr/portage/app-arch/gzip/gzip-1.13.ebuild 2023-10-09 14:52:28.184368317 +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/gzip.asc
7 7
inherit flag-o-matic verify-sig
8 8

  
9 9
DESCRIPTION="Standard GNU compressor"
10 10
HOMEPAGE="https://www.gnu.org/software/gzip/"
11
SRC_URI="mirror://gnu/gzip/${P}.tar.xz
12
	https://alpha.gnu.org/gnu/gzip/${P}.tar.xz"
13
SRC_URI+=" verify-sig? (
14
		mirror://gnu/gzip/${P}.tar.xz.sig
15
		https://alpha.gnu.org/gnu/gzip/${P}.tar.xz.sig
16
	)"
11
if [[ ${PV} == *_p* ]] ; then
12
	# Note: could put this in devspace, but if it's gone, we don't want
13
	# it in tree anyway. It's just for testing.
14
	MY_SNAPSHOT="$(ver_cut 1-2).31-7553"
15
	SRC_URI="
16
		https://meyering.net/gzip/gzip-${MY_SNAPSHOT}.tar.xz -> ${P}.tar.xz
17
		verify-sig? (
18
			https://meyering.net/gzip/gzip-${MY_SNAPSHOT}.tar.xz.sig -> ${P}.tar.xz.sig
19
		)
20
	"
21
	S="${WORKDIR}"/${PN}-${MY_SNAPSHOT}
22
else
23
	SRC_URI="
24
		mirror://gnu/gzip/${P}.tar.xz
25
		verify-sig? (
26
			mirror://gnu/gzip/${P}.tar.xz.sig
27
		)
28
	"
29
fi
17 30

  
18 31
LICENSE="GPL-3+"
19 32
SLOT="0"
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"
33
if [[ ${PV} != *_p* ]] ; then
34
	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"
35
fi
21 36
IUSE="pic static"
22 37

  
23 38
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-gzip )"
Thank you!