You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
992 B
35 lines
992 B
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
USE_RUBY="ruby27 ruby30"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="jekyll-sass-converter.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A basic Sass converter for Jekyll"
|
|
HOMEPAGE="https://github.com/jekyll/jekyll-sass-converter"
|
|
SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend ">=dev-ruby/sassc-2.0.1:2"
|
|
ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -e 's/git ls-files -z/find * -type f -print0/' \
|
|
-e 's:_relative ": "./:' \
|
|
-i ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
sed -i -e "1irequire 'tmpdir'" spec/scss_converter_spec.rb || die
|
|
|
|
# Avoid specs that require the minima theme
|
|
sed -i -e '/with valid sass paths in a theme/,/^ end/ s:^:#:' spec/scss_converter_spec.rb || die
|
|
}
|