dev-scheme/sagittarius: new package, add 0.9.11

Signed-off-by: Daichi Yamamoto <dev@dyama.net>
This commit is contained in:
Daichi Yamamoto
2024-04-28 18:13:30 +09:00
parent d463d69e04
commit 93384e5440
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST sagittarius-0.9.11.tar.gz 13043532 BLAKE2B 81ed8faf797a6494322aecf474f42bce71a0e950ff4a1a009631befaedd968fa36516f530a9eb0a3f1c6eb90fb7c45cb5c321384b658dffe1b610af749ef3359 SHA512 4daa51c1901d86640b9b59db0316087d05089167c7f771e816fe7dba8ef6398c4f65a8df85c22629cff1c9e05344c933695470849739ccb97732581b5647b10e

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">
<email>dev@dyama.net</email>
<name>Daichi Yamamoto</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">ktakashi/sagittarius-scheme</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="R6RS/R7RS Scheme system."
HOMEPAGE="https://bitbucket.org/ktakashi/sagittarius-scheme"
SRC_URI="https://bitbucket.org/ktakashi/sagittarius-scheme/downloads/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-libs/boehm-gc
dev-libs/libffi
dev-libs/openssl
sys-libs/zlib
"
RDEPEND="${DEPEND}"
src_unpack() {
default
# avoid running ldconfig
truncate -s0 "${S}"/cmake/CMakeLists.txt
# following tests always fail in sandbox
cd "${S}"/test/tests
rm net/http-client.scm
rm net/socket.scm
rm rfc/websocket.scm
}