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: Thu, 10 Sep 2020 05:31:13
Message-Id: 1599715776.9f12c98c538708a1902d45cea0933515539feabe.graaff@gentoo
1 commit: 9f12c98c538708a1902d45cea0933515539feabe
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 10 05:27:16 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 05:29:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f12c98c
7
8 dev-ruby/actiontext: add 6.0.3.3
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
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.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 cb299d005b4..fc26165850f 100644
19 --- a/dev-ruby/actiontext/Manifest
20 +++ b/dev-ruby/actiontext/Manifest
21 @@ -1 +1,2 @@
22 DIST rails-6.0.3.2.tgz 18568792 BLAKE2B 574d4b7da1bf0ff308ca1a64369c16e29396c8faddf741bc0f2b7d0c0761e440d64dade6ef67ba4923045c7eab1cd0689d45b6b26f3e3077020157a2b29fb17f SHA512 ea019bef7facc1b8b0d2f181da45d70456a895f2d57eb2410e4a06ba7bea0165dacc0f15fe5080150e4b4ef3c81dacee70b200468232da857fdf60def85b5aec
23 +DIST rails-6.0.3.3.tgz 18569231 BLAKE2B 6e3e90433d655768a8d4da7824178e61bfeeb4645ae77f5e50c0e4859bcbad1f9cbc9391d3ab78ca15be096372abae1085e3e68ea9065cb76ec3c8fa0b12f50b SHA512 750a66613dce04058bb787479be2794b5e20879170640862d1ae3ac12faf3e2b6d7e9b536bdd1e94a2f4934f759228179c4e6f21dfccf6d7461fce9d9bd13892
24
25 diff --git a/dev-ruby/actiontext/actiontext-6.0.3.3.ebuild b/dev-ruby/actiontext/actiontext-6.0.3.3.ebuild
26 new file mode 100644
27 index 00000000000..49794bec348
28 --- /dev/null
29 +++ b/dev-ruby/actiontext/actiontext-6.0.3.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\|bootsnap\)/ 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 +}