Diff rsync-3.4.1-r2 with a rsync-9999

/usr/portage/net-misc/rsync/rsync-9999.ebuild 2026-04-10 12:17:39.964065571 +0300
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 ~arm64-macos ~x64-macos ~x64-solaris"
30
		KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-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
......
77 77
	BDEPEND+=" verify-sig? ( sec-keys/openpgp-keys-andrewtridgell )"
78 78
fi
79 79

  
80
PATCHES=(
81
	"${FILESDIR}"/${PN}-3.4.1-c23.patch
82
	"${FILESDIR}"/${PN}-3.4.1-CVE-2025-10158.patch
83
)
84

  
85 80
pkg_setup() {
86 81
	# - USE=examples needs Python itself at runtime, but nothing else
87 82
	# - 9999 needs commonmark at build time
......
137 132
		append-flags -DCAREFUL_ALIGNMENT
138 133
	fi
139 134

  
135
	# workaround for autoconf-2.73 using C23:
136
	# https://bugs.gentoo.org/972320
137
	append-cflags -std=gnu17
138

  
140 139
	econf "${myeconfargs[@]}"
141 140
}
142 141

  
Thank you!