Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/actiontext/
Date: Mon, 11 May 2020 17:01:28
Message-Id: 1589216443.86d0002205c0dce63c25d20c531103e67753c7f7.graaff@gentoo
1 commit: 86d0002205c0dce63c25d20c531103e67753c7f7
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 16:58:30 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:00:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d00022
7
8 dev-ruby/actiontext: add 6.0.3
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/actiontext/Manifest | 1 +
14 dev-ruby/actiontext/actiontext-6.0.3.ebuild | 51 +++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-ruby/actiontext/Manifest b/dev-ruby/actiontext/Manifest
18 index ea1d82346a5..a3c05dd3c74 100644
19 --- a/dev-ruby/actiontext/Manifest
20 +++ b/dev-ruby/actiontext/Manifest
21 @@ -1 +1,2 @@
22 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da SHA512 c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
23 +DIST rails-6.0.3.tgz 18565682 BLAKE2B fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385 SHA512 f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b
24
25 diff --git a/dev-ruby/actiontext/actiontext-6.0.3.ebuild b/dev-ruby/actiontext/actiontext-6.0.3.ebuild
26 new file mode 100644
27 index 00000000000..81ba03261fc
28 --- /dev/null
29 +++ b/dev-ruby/actiontext/actiontext-6.0.3.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +USE_RUBY="ruby25 ruby26"
36 +
37 +RUBY_FAKEGEM_RECIPE_DOC="none"
38 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
39 +
40 +RUBY_FAKEGEM_GEMSPEC="actiontext.gemspec"
41 +
42 +RUBY_FAKEGEM_BINWRAP=""
43 +RUBY_FAKEGEM_EXTRAINSTALL="app db package.json"
44 +
45 +inherit ruby-fakegem
46 +
47 +DESCRIPTION="Edit and display rich text in Rails applications"
48 +HOMEPAGE="https://github.com/rails/rails"
49 +SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"
50 +
51 +LICENSE="MIT"
52 +SLOT="$(ver_cut 1-2)"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE=""
55 +
56 +RUBY_S="rails-${PV}/${PN}"
57 +
58 +ruby_add_rdepend "
59 + ~dev-ruby/actionpack-${PV}
60 + ~dev-ruby/activerecord-${PV}
61 + ~dev-ruby/activestorage-${PV}
62 + ~dev-ruby/activesupport-${PV}
63 + >=dev-ruby/nokogiri-1.8.5
64 +"
65 +
66 +ruby_add_bdepend "test? (
67 + dev-ruby/mocha
68 +)"
69 +
70 +all_ruby_prepare() {
71 + # Remove items from the common Gemfile that we don't need for this
72 + # test run. This also requires handling some gemspecs.
73 + sed -i -e "/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|redis\|blade\|aws-sdk\|google-cloud\|azure-storage\|selenium\|webdrivers\|minitest-bisect\|minitest-retry\|minitest-reporters\|listen\|rack-cache\)/ s:^:#:" \
74 + -e '/:job/,/end/ s:^:#:' \
75 + -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
76 + rm ../Gemfile.lock || die
77 +}
78 +
79 +each_ruby_prepare() {
80 + sed -i -e 's:ruby:'${RUBY}':' test/dummy/bin/* || die
81 +}