Diff xwininfo-1.1.5 with a xwininfo-1.1.6

/usr/portage/x11-apps/xwininfo/xwininfo-1.1.6.ebuild 2023-10-09 14:52:35.912368512 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
XORG_TARBALL_SUFFIX="xz"
6 7
inherit xorg-3
7 8

  
8 9
DESCRIPTION="window information utility for X"
10
KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
9 11

  
10
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
11
IUSE=""
12

  
13
RDEPEND=">=x11-libs/libxcb-1.6"
12
RDEPEND="
13
	>=x11-libs/libxcb-1.6:=
14
	x11-libs/xcb-util-wm
15
	x11-libs/xcb-util-errors
16
"
14 17
DEPEND="${RDEPEND}
15 18
	x11-base/xorg-proto
16 19
	x11-libs/libX11"
20

  
21
XORG_CONFIGURE_OPTIONS=(
22
	--with-xcb-icccm
23
	--with-xcb-errors
24
)
Thank you!