Diff rsync-3.3.0-r2 with a rsync-9999

/usr/portage/net-misc/rsync/rsync-9999.ebuild 2025-07-29 16:22:17.288467561 +0300
16 16

  
17 17
	REQUIRED_USE="${PYTHON_REQUIRED_USE}"
18 18
else
19
	VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/waynedavison.asc
19
	VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/andrewtridgell.asc
20 20
	inherit verify-sig
21 21

  
22 22
	if [[ -n ${RSYNC_NEEDS_AUTOCONF} ]] ; then
......
27 27
		SRC_DIR="src-previews"
28 28
	else
29 29
		SRC_DIR="src"
30
		KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
30
		KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
31 31
	fi
32 32

  
33 33
	SRC_URI="https://rsync.samba.org/ftp/rsync/${SRC_DIR}/${P/_/}.tar.gz
......
44 44
# attr is autodetected and then dropped by -Wl,--as-needed:
45 45
# https://github.com/RsyncProject/rsync/pull/753
46 46
RDEPEND="
47
	>=dev-libs/popt-1.5
47
	>=dev-libs/popt-1.19
48 48
	acl? ( virtual/acl )
49 49
	examples? (
50 50
		${PYTHON_DEPS}
......
74 74
			dev-python/commonmark[${PYTHON_USEDEP}]
75 75
		')"
76 76
else
77
	BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-waynedavison )"
77
	BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-andrewtridgell )"
78 78
fi
79 79

  
80 80
PATCHES=(
81
	# Temporary just for the bug #948106 CVE fixes
82
	"${FILESDIR}"/3.3.0
81
	"${FILESDIR}"/${PN}-3.4.1-c23.patch
83 82
)
84 83

  
85 84
pkg_setup() {
......
114 113
}
115 114

  
116 115
src_configure() {
117
	# Should be fixed upstream in next release (>3.3.0) (bug #943745)
118
	append-cflags $(test-flags-CC -std=gnu17)
119

  
120 116
	local myeconfargs=(
121 117
		--with-rsyncd-conf="${EPREFIX}"/etc/rsyncd.conf
122 118
		--without-included-popt
Thank you!