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-01-24 11:18:05.024337288 +0300
1
# Copyright 2022-2025 Gentoo Authors
1
# Copyright 2022-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
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"
......
26 30
	net-ftp/ftpbase
27 31
"
28 32

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

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