Diff vsftpd-3.0.5-r1 with a vsftpd-3.0.5-r2

/usr/portage/net-ftp/vsftpd/vsftpd-3.0.5-r2.ebuild 2026-06-05 19:17:04.958375412 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit systemd toolchain-funcs
6
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/vsftpd.asc
7
inherit systemd toolchain-funcs verify-sig
7 8

  
8 9
DESCRIPTION="Very Secure FTP Daemon"
9 10
HOMEPAGE="https://security.appspot.com/vsftpd.html"
10
SRC_URI="https://security.appspot.com/downloads/${P}.tar.gz"
11
SRC_URI="
12
	https://security.appspot.com/downloads/${P}.tar.gz
13
	verify-sig? ( https://security.appspot.com/downloads/${P}.tar.gz.asc )
14
"
11 15

  
12 16
LICENSE="GPL-2"
13 17
SLOT="0"
......
27 31
	selinux? ( sec-policy/selinux-ftp )
28 32
"
29 33

  
34
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-vsftpd )"
35

  
30 36
src_prepare() {
31 37
	local PATCHES=(
32 38
		"${FILESDIR}"/vsftpd-2.3.2-kerberos.patch
33 39
		"${FILESDIR}"/vsftpd-3.0.2-alpha.patch
34 40
		"${FILESDIR}"/vsftpd-3.0.3-sparc.patch
35 41
		"${FILESDIR}"/vsftpd-3.0.5-seccomp.patch
42
		"${FILESDIR}"/vsftpd-3.0.5-gcc15.patch
36 43
	)
37 44
	default
38 45
}
Thank you!