Diff pesign-114 with a pesign-116

/usr/portage/app-crypt/pesign/pesign-116.ebuild 2023-10-09 14:52:28.240368319 +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 4
EAPI=8
......
7 7

  
8 8
DESCRIPTION="Tools for manipulating signed PE-COFF binaries"
9 9
HOMEPAGE="https://github.com/rhboot/pesign"
10
SRC_URI="https://github.com/rhboot/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://github.com/rhboot/pesign/releases/download/${PV}/${P}.tar.bz2"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
......
21 21
	sys-apps/util-linux
22 22
	>=sys-libs/efivar-38
23 23
"
24
DEPEND="${RDEPEND}
24
DEPEND="
25
	${RDEPEND}
25 26
	sys-boot/gnu-efi
26 27
"
27 28
BDEPEND="
29
	app-text/mandoc
28 30
	sys-apps/help2man
29 31
	virtual/pkgconfig
30 32
"
31 33

  
32 34
PATCHES=(
33
	"${FILESDIR}"/${PN}-114-wanalyzer-diagnostic.patch
34
	"${FILESDIR}"/${PN}-114-no-werror.patch
35

  
36
	"${FILESDIR}"/${P}-format-string.patch
35
	"${FILESDIR}"/${PN}-116-no-werror.patch
37 36
)
38 37

  
39 38
src_compile() {
......
42 41
		ARFLAGS="-cvqs" \
43 42
		AS="$(tc-getAS)" \
44 43
		CC="$(tc-getCC)" \
44
		CPPFLAGS="${CPPFLAGS}" \
45 45
		LD="$(tc-getLD)" \
46 46
		OBJCOPY="$(tc-getOBJCOPY)" \
47 47
		PKG_CONFIG="$(tc-getPKG_CONFIG)" \
Thank you!