dev-lisp/cl-mustache - 9999 (nest)

Search

Package Information

Description:
Common Lisp Mustache Template Renderer
Homepage:
https://github.com/kanru/cl-mustache
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit common-lisp-3 git-r3

DESCRIPTION="Common Lisp Mustache Template Renderer"
HOMEPAGE="https://github.com/kanru/cl-mustache"
EGIT_REPO_URI="https://github.com/kanru/${PN}.git"

LICENSE="MIT"
SLOT="0"
IUSE="test"
RESTRICT="test" # 36 of 194 tests failed

RDEPEND="dev-lisp/uiop"
BDEPEND="test? ( dev-lisp/sbcl:*
		dev-lisp/prove )"

PATCHES=( "${FILESDIR}/${PN}"-20240926-test.patch )

src_test() {
	einfo "Running test suite:"
	sbcl --script t/ci.lisp || die "test failed"
}

src_install() {
	common-lisp-3_src_install
	insinto /usr/share/common-lisp/source/cl-mustache
	doins {spec-,}version.lisp-expr
}

USE Flags

Dependencies

RDEPEND

dev-lisp/uiop

BDEPEND

test? ( dev-lisp/sbcl:*
		dev-lisp/prove )