dev-util/scss-lint - 0.60.0 (graaff)

Search

Install

Install this version:

emerge -a =dev-util/scss-lint-0.60.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-util/scss-lint-0.60.0

Or alternatively:

emerge --autounmask-write -a =dev-util/scss-lint-0.60.0

Package Information

Description:
Configurable tool for writing clean and consistent SCSS
Homepage:
https://github.com/sds/scss-lint
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
0.60.0 8 ~amd64 0
View Raw Ebuild
# 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_NAME="scss_lint"

RUBY_FAKEGEM_RECIPE_TEST="rspec3"

RUBY_FAKEGEM_EXTRAINSTALL="data config"

inherit ruby-fakegem

DESCRIPTION="Configurable tool for writing clean and consistent SCSS"
HOMEPAGE="https://github.com/sds/scss-lint"
LICENSE="MIT"

SLOT="0"
KEYWORDS="~amd64"

ruby_add_rdepend "
	>=dev-ruby/sass-3.5.5:* =dev-ruby/sass-3*:*
"

all_ruby_prepare() {
	# Skip tests that fail on legacy exist? method
	rm -f spec/scss_lint/plugins/linter_gem_spec.rb || die

	sed -i -e '/simplecov/ s:^:#:' \
		-e '1igem "sass", ">= 3.5"' spec/spec_helper.rb || die
}

Inherited Eclasses