dev-libs/intel-vc-intrinsics +llvm22

This commit is contained in:
TheK0tYaRa 2026-04-15 16:30:45 +03:00
parent e1fe4ef0de
commit 627ff4ebe8
4 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST intel-vc-intrinsics-0.25.0.tar.gz 156152 BLAKE2B ebdcbd29c8909ee90971c89f78ea5b96800060a584edffd1807aeb1da47228889487073945320181a268ba216622ac4c7c49813ad15deea38815019eb0ac6399 SHA512 81a5eed94a7a610d2a6b654b227f0278e35b6649ab687cd627eca7aa220e740e8b0c84b7494e53378e37d194fb9d95a9b742f280c0ed8cc1d0a62efddc447b84

View file

@ -0,0 +1,39 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CMAKE_BUILD_TYPE="Release"
LLVM_COMPAT=( {15..22} )
MY_PN="${PN/intel-/}"
MY_P="${MY_PN}-${PV}"
PYTHON_COMPAT=( python3_{11..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}
')
virtual/zlib:=
"
RDEPEND="${DEPEND}"
BDEPEND="${PYTHON_DEPS}"
src_configure() {
local mycmakeargs=(
-DLLVM_DIR="$(get_llvm_prefix)"
)
cmake_src_configure
}

View file

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>gentoo@taujhe.de</email>
<name>Jan Henke</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<maintainer type="person">
<email>conikost@gentoo.org</email>
<name>Conrad Kostecki</name>
</maintainer>
<longdescription>
VC Intrinsics project contains a set of new intrinsics on
top of core LLVM IR instructions that represent SIMD semantics
of a program targeting GPU.
</longdescription>
<upstream>
<remote-id type="github">intel/vc-intrinsics</remote-id>
</upstream>
</pkgmetadata>