Install this version:
emerge -a =dev-python/comfy-angle-bin-0.1.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/comfy-angle-bin-0.1.0
Or alternatively:
emerge --autounmask-write -a =dev-python/comfy-angle-bin-0.1.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.1.0 | 8 | -* ~amd64 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=no
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1
MY_WHEEL="comfy_angle-${PV}-py3-none-manylinux_2_28_x86_64.whl"
DESCRIPTION="Redistributable ANGLE libraries for ComfyUI"
HOMEPAGE="
https://github.com/Comfy-Org/comfy-angle
https://pypi.org/project/comfy-angle/
"
SRC_URI="https://files.pythonhosted.org/packages/94/79/09033953c3f2ef3d31e7cd626e01db9cdd2760a50bb22b83fa6aef32561e/${MY_WHEEL}"
S=${WORKDIR}
LICENSE="BSD MIT"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="strip"
BDEPEND="dev-python/installer[${PYTHON_SINGLE_USEDEP}]"
QA_PREBUILT="usr/lib/python3.*/site-packages/comfy_angle/libs/*"
src_unpack() {
:
}
src_install() {
${EPYTHON} -m installer --destdir="${D}" "${DISTDIR}/${MY_WHEEL}" || die
python_optimize
}