forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.13, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST sass-rails-4.0.5.gem 92672 SHA256 8b93da41049d32f14625abd6a0514d34286b87e9123093db054eddbe644487db SHA512 71515d2c16886d64af4c00bd78094691579bfbb3660ff9ba4d9f2807bcbedf104da2f7a321a3cc558f0e2420f702eb2bd2379cce30f1d21d8b09ab5fbc8347c5 WHIRLPOOL 9a39907a182ba20c7a14963dc00d6455babc63c1a3c5a202c6475f5e7b0dbec86663309f416b21d393e904da704f84f15634cda9521d5fbfbb03bb5bf10338a1 | ||
DIST sass-rails-5.0.6.tar.gz 89862 SHA256 65e679876056ffdc3d25c5d3f3bce44a5b4ab246a82d101b8b7b9f463ca0b321 SHA512 97b48e3b928c4323007b7df7f6e51d5a1c1f16c5f9276786bdb6b3a4f293ec73c4c18037cd3cd5d0bbdfa3ec92f44a8793606aba9cd23f5518b637cdee58c915 WHIRLPOOL 0ffcfdace2a6573a4ce300f320046a834431bb243619f6a2e3d6807b8f5b883d5ef3c6f7f09374a06313ed99544f3437a57e614f8facf8b61a18fbb12203b2cf | ||
DIST sass-rails-5.0.7.tar.gz 90425 SHA256 a3c922c80947478adf3bf094051cbc226d485543567db4eff404360c9955e806 SHA512 491a1618a75becf6095b102c996e50d25fe701d3a6c1b6c6fadff81c6c09260c3ee6ff9c84abf7bc62779fa7034d54d7c0d9a7c4148d3cc741d83efda87ec0a0 WHIRLPOOL b8135ea9c5052a01bebe2e752619f682bf5cf06d45301092547689cc09da29b8a971a6eb742a09955ede15967332aa165b8876ddaed2841dafd58599fcf9aa59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
USE_RUBY="ruby22 ruby23 ruby24" | ||
|
||
RUBY_FAKEGEM_TASK_DOC="" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" | ||
|
||
inherit ruby-fakegem versionator | ||
|
||
DESCRIPTION="Official Ruby-on-Rails Integration with Sass" | ||
HOMEPAGE="https://github.com/rails/sass-rails" | ||
SRC_URI="https://github.com/rails/sass-rails/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="$(get_version_component_range 1-2)" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~amd64-linux" | ||
|
||
IUSE="" | ||
|
||
# Restrict tests for now since it is hard to set up the right | ||
# environment with the correct ruby interpreter and Rails test | ||
# application. | ||
RESTRICT="test" | ||
|
||
#ruby_add_bdepend "test? ( dev-ruby/sfl dev-ruby/bundler )" | ||
|
||
ruby_add_rdepend ">=dev-ruby/sass-3.1:* =dev-ruby/sass-3*:* | ||
>=dev-ruby/railties-4:* <dev-ruby/railties-6:* | ||
>=dev-ruby/sprockets-rails-2.0:* <dev-ruby/sprockets-rails-4:* | ||
>=dev-ruby/sprockets-2.8:* <dev-ruby/sprockets-4:* | ||
>=dev-ruby/tilt-1.1:* <dev-ruby/tilt-3:*" | ||
|
||
each_ruby_test() { | ||
${RUBY} -S bundle exec rake test || die | ||
} |