diff options
author | Hans de Graaff <graaff@gentoo.org> | 2019-03-07 07:23:52 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2019-03-07 07:36:34 +0100 |
commit | 14451a2ba74eae1793b98f9f8cd241ed89358ef8 (patch) | |
tree | fdd882bca54186bb61358079df7491882279987e /dev-ruby/autoprefixer-rails | |
parent | sys-fs/e2fsprogs: Attempt to fix parallel install issue. (diff) | |
download | gentoo-14451a2ba74eae1793b98f9f8cd241ed89358ef8.tar.gz gentoo-14451a2ba74eae1793b98f9f8cd241ed89358ef8.tar.bz2 gentoo-14451a2ba74eae1793b98f9f8cd241ed89358ef8.zip |
dev-ruby/autoprefixer-rails: add 9.4.10.1
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
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-9.4.10.1.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-ruby/autoprefixer-rails/Manifest b/dev-ruby/autoprefixer-rails/Manifest index 3b130bad2a02..c684c130c277 100644 --- a/dev-ruby/autoprefixer-rails/Manifest +++ b/dev-ruby/autoprefixer-rails/Manifest @@ -1,4 +1,5 @@ DIST autoprefixer-rails-7.2.6.gem 196608 BLAKE2B 0f9224fbf765877b1b7414c68fc39a6587514d27fb5290e1a623db8dcdcbf6f668b66ddd0133906a97e63e877b8201168a45520a9919dc756021d5a7cffc0d38 SHA512 37b3f245291711f92ab9e264491637e753afb95e52f9fd4e2bda6655cd781b2d031934f3379cabdd5589bdf57b780d0727f2fff1cdf7887ca4cc323d23023396 DIST autoprefixer-rails-8.6.5.gem 208896 BLAKE2B 50e8b8ef3fec9a0bb8d68afa8950989dbf84b58b79b8822e83bf22873c5172c2c514643c31dca88cfec49bd585563eb9b201c621d3ab6707ed0d49c6cd4c8fc8 SHA512 fddabc4d745ad1b4282622a52ab4e36c377eccec85c4e80b3e8d633ffcc2d1613f4fee9e9f2356c85d251e44b0010418029bb278894987119689435ac885e982 +DIST autoprefixer-rails-9.4.10.1.gem 217088 BLAKE2B 212920f8d1cbcc86c825974b6cf66f30e7f0b277160148b57d87f5bbaaacec5c017f7ac600f86a8cd5fffb0305bc2606dec213a2fab58584630014ce99883520 SHA512 0f291d66f9aecf52d1aa68032bcbf7561a196247b5effa0403b1797109d124127accb5a828fc28ed933aea5194ba9f497281d81651943cd6c26f814e19162bd9 DIST autoprefixer-rails-9.4.5.gem 214528 BLAKE2B 0894d893b2b30bff4193e1b9bcc6b5cc274ca8d3c4a7fb05ddb002ddbf24ee5af8ed2db39224d880dc227726033d896fb410d4eafbe8cd6ce978b58ef561ee04 SHA512 f166a49e458bfa242cfaa38e9496440be76abeed4d535ccf14fc656ab59160e0ff1a6c5145a6217af4086c2843d1785e84dd7edcb2de5d563c1179cb6612a5cc DIST autoprefixer-rails-9.4.7.gem 215040 BLAKE2B d0d16eb708886812c526191345c5d9db054332a7807adce71d11d439e81d055f238f273b6a919fcee1722e317426c8a77081ff250c6c1aa55923a5200adcbcea SHA512 64239dbe3ec8cd472cfbf1fe0cc355abc958abbfa322d298c425762d1c20bb1bdf5d001d55b0cf90268b9f59240e60f4b74128822bf026cfb2985ad169422303 diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.10.1.ebuild b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.10.1.ebuild new file mode 100644 index 000000000000..8ae938d51a0a --- /dev/null +++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-9.4.10.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTRAINSTALL="vendor" + +inherit ruby-fakegem eapi7-ver + +DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use website" +HOMEPAGE="https://github.com/ai/autoprefixer-rails" +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="$(ver_cut 1)" +IUSE="" + +ruby_add_rdepend "dev-ruby/execjs:*" + +ruby_add_bdepend "test? ( + dev-ruby/rails + 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/,+3d" spec/app/config/application.rb || die + rm spec/rails_spec.rb spec/compass_spec.rb || die +} |