mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
42 lines
955 B
Bash
42 lines
955 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST=""
|
|
|
|
RUBY_FAKEGEM_TASK_DOC="man:build"
|
|
RUBY_FAKEGEM_EXTRADOC="README.md"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Mustache is a framework-agnostic way to render logic-free views"
|
|
HOMEPAGE="https://mustache.github.io/"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-test-ordering.patch" )
|
|
|
|
ruby_add_bdepend "doc? ( app-text/ronn-ng )"
|
|
|
|
all_ruby_prepare() {
|
|
# Fix for renamed .ron files
|
|
sed -i -e 's:\.ronn:.ron:' Rakefile || die
|
|
|
|
sed -i -e '/simplecov/,/^end/ s:^:#:' test/helper.rb || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
MT_NO_PLUGINS=1 ${RUBY} -Ilib:. -e "Dir['test/*.rb'].each{|f| require f}" || die
|
|
}
|
|
|
|
all_ruby_install() {
|
|
all_fakegem_install
|
|
|
|
doman man/mustache.1 man/mustache.5
|
|
}
|