dev-libs/intel-vc-intrinsics: add 0.23.4

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2025-09-22 19:19:34 +02:00
parent e0aff2bafd
commit c7eaeebc2e
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST intel-vc-intrinsics-0.23.1.tar.gz 153210 BLAKE2B ff47241bfc61e4746c0b2b37bba4172bc745f1e643335bb1a00616985d1275ac1d09c56ca852bb9822e4970476210d7cb31c4ad3d77ebcec7e0d1ea7d4e42fbb SHA512 3be993ead20a9226fa8129ab662722338db4d47a00e977baaae5c7d719191efebd32932a4ae3a0b8420779a18098659c6d180c67a9d164e1ad1112e1c0c8366c
DIST intel-vc-intrinsics-0.23.4.tar.gz 153619 BLAKE2B 599481addb0b8327d4faa93c8df3252b62df1ce106851991440ecd4428750a320dd2bb7f1e9fde4e4b1d8e62647b9bf9f49997d406e586c0a6e2497ee7b1a2d0 SHA512 904c97be5a77dd35c6850923e93e12337db83a40b52f64c20000366f00d065a2f84c35f1292b8a26e600091ac83adc12c0bbec1b65bad6ec8a18ee44349fcdec

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_BUILD_TYPE="Release"
LLVM_COMPAT=( {15..20} )
MY_PN="${PN/intel-/}"
MY_P="${MY_PN}-${PV}"
PYTHON_COMPAT=( python3_{10..14} )
inherit cmake llvm-r2 python-any-r1
DESCRIPTION="A set of new intrinsics on top of core LLVM IR instructions"
HOMEPAGE="https://github.com/intel/vc-intrinsics"
SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-libs/libxml2:2=
$(llvm_gen_dep '
llvm-core/llvm:${LLVM_SLOT}
')
sys-libs/zlib
"
RDEPEND="${DEPEND}"
BDEPEND="${PYTHON_DEPS}"
src_configure() {
local mycmakeargs=(
-DLLVM_DIR="$(get_llvm_prefix)"
)
cmake_src_configure
}