mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://codeberg.org/gentoo/gentoo/pulls/1457 Signed-off-by: Sam James <sam@gentoo.org>
44 lines
988 B
Bash
44 lines
988 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.md Changelog.markdown"
|
|
RUBY_FAKEGEM_RECIPE_DOC="yard"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Convert HTML and HTML+Erb to Haml"
|
|
HOMEPAGE="https://github.com/haml/html2haml"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend ">=dev-ruby/nokogiri-1.6.0
|
|
>=dev-ruby/erubis-2.7.0
|
|
>=dev-ruby/ruby_parser-3.5
|
|
>=dev-ruby/haml-4.0"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/minitest )"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/html2haml-2.3.0-fix-nokogiri-html-doctype-test.patch # bug #978789
|
|
)
|
|
|
|
all_ruby_prepare() {
|
|
sed -e "/bundler/d" \
|
|
-e 's/MiniTest::Unit::TestCase/Minitest::Test/' \
|
|
-i test/test_helper.rb || die
|
|
sed -e 's/MiniTest::Unit::TestCase/Minitest::Test/' \
|
|
-i test/*_test.rb || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -Ilib:test test/html2haml_test.rb || die
|
|
${RUBY} -Ilib:test test/erb_test.rb || die
|
|
}
|