Diff boinc-7.22.0 with a boinc-9999

/usr/portage/sci-misc/boinc/boinc-9999.ebuild 2023-10-09 14:52:35.248368495 +0300
1
# Copyright 2023 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
MY_PV=$(ver_cut 1-2)
7
WX_GTK_VER=3.0-gtk3
6
# For live ebuilds this should be set to the latest available patch in ${FILESDIR}
7
# It does not need to reflect the actual internal version reported by BOINC unless that patch is broken.
8
MY_PV=7.18
9
WX_GTK_VER=3.2-gtk3
8 10

  
9 11
inherit autotools desktop flag-o-matic linux-info optfeature wxwidgets xdg-utils
10 12

  
......
17 19
	inherit git-r3
18 20
else
19 21
	SRC_URI+=" https://github.com/BOINC/boinc/archive/client_release/${MY_PV}/${PV}.tar.gz -> ${P}.tar.gz"
20
	KEYWORDS="amd64 arm64 ~ia64 ~ppc ppc64 sparc ~x86"
22
	KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
21 23
	S="${WORKDIR}/${PN}-client_release-${MY_PV}-${PV}"
22 24
fi
23 25

  
......
43 45
	)
44 46
	dev-libs/openssl:=
45 47
	net-misc/curl[curl_ssl_gnutls(-)=,-curl_ssl_nss(-),curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-)]
48
	sys-apps/util-linux
46 49
	sys-libs/zlib
47 50
	X? (
48 51
		dev-libs/glib:2
......
70 73

  
71 74
PATCHES=(
72 75
	# >=x11-libs/wxGTK-3.0.2.0-r3 has webview removed, bug 587462
73
	"${FILESDIR}"/${PN}-7.18-fix_webview.patch
76
	"${FILESDIR}"/${PN}-${MY_PV}-fix_webview.patch
74 77
)
75 78

  
76 79
pkg_setup() {
Thank you!