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 | |
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')
-rw-r--r-- | dev-ruby/autoprefixer-rails/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/autoprefixer-rails/autoprefixer-rails-10.2.5.0.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-ruby/autoprefixer-rails/Manifest b/dev-ruby/autoprefixer-rails/Manifest index f0cc69ccff05..91c18acd8111 100644 --- a/dev-ruby/autoprefixer-rails/Manifest +++ b/dev-ruby/autoprefixer-rails/Manifest @@ -1,3 +1,4 @@ DIST autoprefixer-rails-10.0.1.1.tar.gz 684843 BLAKE2B 06cbfe473f29acc24544f7fff23adb5d7419b2bfc7b06a809f04e656fd1b5c961a9fb1379da63ae76c8b2626044ce6f91a5a378ed2569f1631fd2d0e23c021f1 SHA512 1b22fa901e7d54fa465ce04cadb81e6391a75b6f6719b075a33ec3b7183c07c008420baa5ffdccf6880472af3fa75fac5b9c03769dd04e748e4e8cdb644b45b7 DIST autoprefixer-rails-10.2.4.0.tar.gz 720604 BLAKE2B 1f1546f1917ef7dd98aa1f699906865ceb78e6092e1a867569deb1b4a68d66d32d7e5cabae1f1acb2f80220f6c3e55601b7e9d33d6a3a4cea281da1e121fb0d9 SHA512 fbf65914af2962ffa8092405a82f18dc483516d3ba53f062dc17df70b1ed7b41996294a7f419aa24a0cf66d5ea9f273e5cc8e98138b65cd856758eb448a67c9f +DIST autoprefixer-rails-10.2.5.0.tar.gz 705265 BLAKE2B e6619cb2498eed46af1e92855e960e74f443c364d5d9c11b839e114bbd97797b90c2f6c6180ae68ba291b0035c1ef24f85d7dadfe07f236c6a611e0fe602bcca SHA512 8b3e80c61735d509e4448887272f2b9304ad1431ad4728a524fc87f096822bd10b6855bd1184943037ba2d10920a0fb1b16d09c8124d023b4edb7e9d1b9fb269 DIST autoprefixer-rails-9.8.6.5.gem 231936 BLAKE2B 7c702f5484f9aa2318408fb8c5c8866ccf9d3565d3282e43279b9bea875ac3610b26c0ec302b2bed0779dcd46eca12badaa16faba1046585cddcfa3e8b22b51c SHA512 6b7281661fcaf0c17ee258a321f8d18664f2f305172719f76fe1f3ef6b04fa1460c7102946e95153df7ecf5c3ade3bfc8c22d302927f2e2183ef3b0f3ef8d623 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 +} |