Diff selenium-webdriver-4.11.0 with a selenium-webdriver-4.11.0-r1

/usr/portage/dev-ruby/selenium-webdriver/selenium-webdriver-4.11.0-r1.ebuild 2023-10-09 14:52:30.464368375 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
USE_RUBY="ruby30 ruby31 ruby32"
6
USE_RUBY="ruby31 ruby32"
7 7

  
8 8
# NOTE: this package contains precompiled code. It appears that all
9 9
# source code can be found at https://code.google.com/p/selenium/ but the
......
28 28

  
29 29
LICENSE="Apache-2.0"
30 30
SLOT="$(ver_cut 1)"
31
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
31
KEYWORDS="~amd64 ~x86"
32 32
IUSE=""
33 33

  
34
RDEPEND+=" >=dev-util/selenium-manager-${PV}"
35

  
34 36
ruby_add_rdepend "
35 37
	>=dev-ruby/rexml-3.2.5:3
36 38
	>=dev-ruby/rubyzip-1.2.2:*
37 39
	dev-ruby/websocket:0
38 40
"
41

  
42
PATCHES=( "${FILESDIR}/${P}-selenium-manager.patch" )
43

  
44
all_ruby_prepare() {
45
	# Remove the pre-compiled selenium-manager executables
46
	rm -fr bin || die
47
}
Thank you!