diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-06-25 17:46:48 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-06-25 17:46:48 +0000 |
commit | 465943c9469251712ba3e20832c5e8c7bceeb595 (patch) | |
tree | 4bf7ebed005745dc8d0478ab92c514735539dd28 /dev-ruby/sass/sass-3.1.19.ebuild | |
parent | net-misc/vncsnapshot: Fix parallel build, #295741; bump EAPI and resort ebuild (diff) | |
download | historical-465943c9469251712ba3e20832c5e8c7bceeb595.tar.gz historical-465943c9469251712ba3e20832c5e8c7bceeb595.tar.bz2 historical-465943c9469251712ba3e20832c5e8c7bceeb595.zip |
Version bump. Avoid known-to-be-broken tests on jruby. Fixes bug 422937.
Package-Manager: portage-2.1.10.65/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/sass/sass-3.1.19.ebuild')
-rw-r--r-- | dev-ruby/sass/sass-3.1.19.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-ruby/sass/sass-3.1.19.ebuild b/dev-ruby/sass/sass-3.1.19.ebuild new file mode 100644 index 000000000000..1cf8e172079a --- /dev/null +++ b/dev-ruby/sass/sass-3.1.19.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/sass-3.1.19.ebuild,v 1.1 2012/06/25 17:46:48 graaff Exp $ + +EAPI=2 + +USE_RUBY="ruby18 ruby19 ree18 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="rails init.rb VERSION VERSION_NAME" + +inherit ruby-fakegem + +DESCRIPTION="An extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more." +HOMEPAGE="http://sass-lang.com/" +LICENSE="MIT" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos" +SLOT="0" +IUSE="" + +ruby_add_bdepend "doc? ( >=dev-ruby/yard-0.5.3 >=dev-ruby/maruku-0.5.9 )" + +ruby_add_rdepend "dev-ruby/fssm !!<dev-ruby/haml-3.1" + +# tests could use `less` if we had it + +each_ruby_prepare() { + case ${RUBY} in + *jruby) + # tests fail with JRuby, and that's a given for now; it's + # not a bug in the code as much as it is relying on a detail + # of the implementation of CRuby. We remove failing files + # for now, this could probably be narrowed down more so that + # we could run more tests. + rm test/sass/script_test.rb test/sass/util_test.rb test/sass/engine_test.rb test/sass/scss/scss_test.rb || die + ;; + *) + ;; + esac +} |