mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
31 lines
763 B
Bash
31 lines
763 B
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit python-any-r1 xorg-3
|
|
|
|
DESCRIPTION="Library that gives human readable names to XCB error, event, & request codes"
|
|
HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/lib/libxcb-errors"
|
|
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
|
|
RDEPEND=">=x11-libs/libxcb-1.9.1:="
|
|
DEPEND="${RDEPEND}
|
|
x11-base/xcb-proto"
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
$(python_gen_any_dep 'x11-base/xcb-proto[${PYTHON_USEDEP}]')
|
|
"
|
|
|
|
python_check_deps() {
|
|
python_has_version "x11-base/xcb-proto[${PYTHON_USEDEP}]"
|
|
}
|
|
|
|
pkg_setup() {
|
|
python-any-r1_pkg_setup
|
|
xorg-3_pkg_setup
|
|
}
|