diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-05-14 06:31:01 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-05-14 06:31:01 +0200 |
commit | 682c1cd471bdefb193089924577666eb277523af (patch) | |
tree | ba52e83bcd781ae652bd49677313463693daefe6 /dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild | |
parent | dev-ruby/mechanize: add 2.8.1 (diff) | |
download | gentoo-682c1cd471bdefb193089924577666eb277523af.tar.gz gentoo-682c1cd471bdefb193089924577666eb277523af.tar.bz2 gentoo-682c1cd471bdefb193089924577666eb277523af.zip |
dev-ruby/autoprefixer-rails: add 10.2.5.0
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild')
-rw-r--r-- | dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild b/dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild new file mode 100644 index 000000000000..7fa873708685 --- /dev/null +++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="vendor" + +RUBY_FAKEGEM_GEMSPEC="autoprefixer-rails.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use website" +HOMEPAGE="https://github.com/ai/autoprefixer-rails" +SRC_URI="https://github.com/ai/autoprefixer-rails/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="$(ver_cut 1)" +IUSE="" + +ruby_add_rdepend "<dev-ruby/execjs-2.8.0:*" + +ruby_add_bdepend "test? ( + >=dev-ruby/rails-5.0.0 + dev-ruby/rake + dev-ruby/rspec-rails +)" + +all_ruby_prepare() { + sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die + sed -i -e "/Bundler/ s:^:#:" \ + -e '/config.sass/ s:^:#:' spec/app/config/application.rb || die + rm -f spec/rails_spec.rb || die +} |