Diff chrony-4.3-r5 with a chrony-4.4

/usr/portage/net-misc/chrony/chrony-4.4.ebuild 2023-10-09 14:52:34.636368480 +0300
6 6
inherit edo systemd tmpfiles toolchain-funcs
7 7

  
8 8
DESCRIPTION="NTP client and server programs"
9
HOMEPAGE="https://chrony.tuxfamily.org/ https://git.tuxfamily.org/chrony/chrony.git"
9
HOMEPAGE="https://chrony-project.org/"
10 10

  
11 11
if [[ ${PV} == 9999 ]] ; then
12
	EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git"
12
	EGIT_REPO_URI="https://gitlab.com/chrony/chrony.git"
13 13
	inherit git-r3
14 14
else
15 15
	VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/mlichvar.asc
16 16
	inherit verify-sig
17 17

  
18
	SRC_URI="https://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz"
19
	SRC_URI+=" verify-sig? ( https://download.tuxfamily.org/chrony/${P/_/-}-tar-gz-asc.txt -> ${P/_/-}.tar.gz.asc )"
18
	SRC_URI="https://chrony-project.org/releases/${P/_/-}.tar.gz"
19
	SRC_URI+=" verify-sig? ( https://chrony-project.org/releases/${P/_/-}-tar-gz-asc.txt -> ${P/_/-}.tar.gz.asc )"
20 20

  
21 21
	if [[ ${PV} != *_pre* ]] ; then
22 22
		KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv sparc x86"
......
56 56
	${DEPEND}
57 57
	selinux? ( sec-policy/selinux-chronyd )
58 58
"
59
# bison dep only for 4.3-r1 for ${P}-strict-prototypes-clang16.patch
60 59
BDEPEND="
61
	sys-devel/bison
62 60
	html? ( dev-ruby/asciidoctor )
63 61
	nts? ( virtual/pkgconfig )
64 62
	sechash? (
......
81 79
PATCHES=(
82 80
	"${FILESDIR}"/${PN}-3.5-pool-vendor-gentoo.patch
83 81
	"${FILESDIR}"/${PN}-4.2-systemd-gentoo.patch
84
	"${FILESDIR}"/${P}-strict-prototypes-clang16.patch
85 82
)
86 83

  
87 84
src_prepare() {
Thank you!