Diff sbsigntools-0.9.4-r1 with a sbsigntools-0.9.5

/usr/portage/app-crypt/sbsigntools/sbsigntools-0.9.5.ebuild 2023-10-09 14:52:28.244368319 +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 6
MY_PN="${PN::-1}"
7 7

  
......
9 9

  
10 10
DESCRIPTION="Utilities for signing and verifying files for UEFI Secure Boot"
11 11
HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jejb/sbsigntools.git/"
12
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/jejb/${PN}.git/snapshot/${P}.tar.gz
13
	https://dev.gentoo.org/~tamiko/distfiles/${MY_PN}-0.8-ccan.tar.gz"
12
SRC_URI="
13
	https://git.kernel.org/pub/scm/linux/kernel/git/jejb/${PN}.git/snapshot/${P}.tar.gz
14
	https://dev.gentoo.org/~tamiko/distfiles/${MY_PN}-0.8-ccan.tar.gz
15
"
14 16

  
15 17
LICENSE="GPL-3 LGPL-3 LGPL-2.1 CC0-1.0"
16 18
SLOT="0"
17
KEYWORDS="amd64 arm64 ~riscv x86"
19
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
18 20
IUSE=""
19 21

  
20 22
RDEPEND="
21
	dev-libs/openssl:0=
22
	sys-apps/util-linux"
23
DEPEND="${RDEPEND}
24
	sys-apps/help2man
23
	dev-libs/openssl:=
24
	sys-apps/util-linux
25
"
26
DEPEND="
27
	${RDEPEND}
25 28
	sys-boot/gnu-efi
26 29
	sys-libs/binutils-libs
27
	virtual/pkgconfig"
30
"
31
BDEPEND="
32
	sys-apps/help2man
33
	virtual/pkgconfig
34
"
28 35

  
29 36
PATCHES=(
30 37
	"${FILESDIR}"/${PN}-0.9.4-no-werror.patch
31
	"${FILESDIR}"/${PN}-0.9.4-openssl3.patch
32 38
)
33 39

  
34 40
src_prepare() {
Thank you!