# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=no PYTHON_COMPAT=( python3_{11..14} ) inherit distutils-r1 MY_PN=${PN//-/_} MY_BASE="https://files.pythonhosted.org/packages" DESCRIPTION="NVIDIA CUTLASS Python DSL — CUDA-13-specific shared libs" HOMEPAGE=" https://github.com/NVIDIA/cutlass https://pypi.org/project/nvidia-cutlass-dsl-libs-cu13/ " SRC_URI=" python_targets_python3_11? ( ${MY_BASE}/5c/0f/5ad5f2012fd00d683b2131d270300f45e386e55064a69047ee2989f6d480/${MY_PN}-${PV}-cp311-cp311-manylinux_2_28_x86_64.whl ) python_targets_python3_12? ( ${MY_BASE}/cd/f2/2c976759dff8836e41a8ff3716db4fc72b01969ea6ee062ae22877008030/${MY_PN}-${PV}-cp312-cp312-manylinux_2_28_x86_64.whl ) python_targets_python3_13? ( ${MY_BASE}/08/48/13386e28bf2b724268d7ac95c41d0c718e91118bf89218b6b0471e5fa595/${MY_PN}-${PV}-cp313-cp313-manylinux_2_28_x86_64.whl ) python_targets_python3_14? ( ${MY_BASE}/d0/6e/6371065485ec91a75176b6b850a7bee31fd57bcb9045a3e07d7a8fd06c85/${MY_PN}-${PV}-cp314-cp314-manylinux_2_28_x86_64.whl ) " S="${WORKDIR}" LICENSE="NVIDIA-CUDA" SLOT="0" KEYWORDS="-* ~amd64" RESTRICT="bindist mirror" # Wheel-only on PyPI — CUDA-13-specific binary kernels of NVIDIA's # CUTLASS Python DSL. Selected by the parent nvidia-cutlass-dsl when # the cu13 extra is enabled (which we want on this host: CUDA 13.2 at # /opt/cuda). # verified 2026-05-07 against 4.5.0. RDEPEND=" ~dev-python/nvidia-cutlass-dsl-libs-base-${PV}[${PYTHON_USEDEP}] dev-python/cuda-python[${PYTHON_USEDEP}] dev-python/numpy[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] " QA_PREBUILT="usr/lib/python3.*/site-packages/nvidia_cutlass_dsl/*" src_unpack() { mkdir -p "${S}/wheel" || die local f for f in ${A}; do cp "${DISTDIR}/${f}" "${S}/wheel/" || die done } src_install() { python_foreach_impl install_wheel } install_wheel() { local pyver=${EPYTHON#python} local cptag=cp${pyver//./} local whl="${MY_PN}-${PV}-${cptag}-${cptag}-manylinux_2_28_x86_64.whl" [[ -f ${S}/wheel/${whl} ]] || die "expected wheel ${whl} not found" ${EPYTHON} -m installer --destdir="${D}" "${S}/wheel/${whl}" || die }