Revert "dev-libs/sirit: no revdep"

This reverts commit dd91a08977c18fef9572d79fb67a2e57c562d5b2.

Signed-off-by: Samuel Bauer <samuel.bauer@yahoo.fr>
This commit is contained in:
Samuel Bauer 2025-02-15 00:24:38 +01:00
parent 9039ef0196
commit 3d1b03e931
No known key found for this signature in database
GPG Key ID: CD0084656E332317
3 changed files with 42 additions and 0 deletions

1
dev-libs/sirit/Manifest Normal file
View File

@ -0,0 +1 @@
DIST sirit-0_p20220725.tar.gz 23535 BLAKE2B 8cdcb2b5007b849b032be1fbe53375a24bd62b109da4c7388e18961294acde0ea3bd2312c5c40eafd2394712fdf83ea16b47df94b8ee5c51f5de37a7e2df79ff SHA512 4424d1020a02877a2465d94ace0309cfc6952b0624ba248c113a5858e3749837d430fb5ec348953c140955ddf013a2a783f97b9594899a989905b08b82722a60

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Samuel Bauer</name>
<email>samuel.bauer@yahoo.fr</email>
</maintainer>
<upstream>
<remote-id type="github">ReinUsesLisp/sirit</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake vcs-snapshot
DESCRIPTION="A runtime SPIR-V assembler"
HOMEPAGE="https://github.com/ReinUsesLisp/sirit"
SRC_URI="https://github.com/ReinUsesLisp/sirit/archive/aa292d56650bc28f2b2d75973fab2e61d0136f9c.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-util/spirv-headers"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DSIRIT_USE_SYSTEM_SPIRV_HEADERS=ON
)
cmake_src_configure
}
src_install() {
dodoc LICENSE.txt README.md
dolib.so "${BUILD_DIR}/src/libsirit.so"
doheader -r include/sirit
}