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, 08 Oct 2020 05:17:53
Message-Id: 1602134214.c1dfd861e1257118a2335573d897b1b9e58b5a4e.graaff@gentoo
1 commit: c1dfd861e1257118a2335573d897b1b9e58b5a4e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 05:16:54 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 05:16:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1dfd861
7
8 dev-ruby/actiontext: add 6.0.3.4
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.4.ebuild | 51 +++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-ruby/actiontext/Manifest b/dev-ruby/actiontext/Manifest
18 index fc26165850f..cbf0ae76d45 100644
19 --- a/dev-ruby/actiontext/Manifest
20 +++ b/dev-ruby/actiontext/Manifest
21 @@ -1,2 +1,3 @@
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 +DIST rails-6.0.3.4.tgz 18568864 BLAKE2B 8f554a25ce02e4752c1a964257836a5cb0a6c01c3453ff11cd8423a9153e90ab833a32cadfe939a34e094cefd553f5514abd7817004b464b054889ab7dc05b76 SHA512 147f76792ce2d2484071fe247c8f1541c9ca27dcc405ff7a780771e3436a9acf3d326bbfd7c6dceca510b6f4d5209ee0a0859867174b8291d796ffd519fa2ba9
25
26 diff --git a/dev-ruby/actiontext/actiontext-6.0.3.4.ebuild b/dev-ruby/actiontext/actiontext-6.0.3.4.ebuild
27 new file mode 100644
28 index 00000000000..a228d2e2d07
29 --- /dev/null
30 +++ b/dev-ruby/actiontext/actiontext-6.0.3.4.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="none"
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
40 +
41 +RUBY_FAKEGEM_GEMSPEC="actiontext.gemspec"
42 +
43 +RUBY_FAKEGEM_BINWRAP=""
44 +RUBY_FAKEGEM_EXTRAINSTALL="app db package.json"
45 +
46 +inherit ruby-fakegem
47 +
48 +DESCRIPTION="Edit and display rich text in Rails applications"
49 +HOMEPAGE="https://github.com/rails/rails"
50 +SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"
51 +
52 +LICENSE="MIT"
53 +SLOT="$(ver_cut 1-2)"
54 +KEYWORDS="~amd64 ~x86"
55 +IUSE=""
56 +
57 +RUBY_S="rails-${PV}/${PN}"
58 +
59 +ruby_add_rdepend "
60 + ~dev-ruby/actionpack-${PV}
61 + ~dev-ruby/activerecord-${PV}
62 + ~dev-ruby/activestorage-${PV}
63 + ~dev-ruby/activesupport-${PV}
64 + >=dev-ruby/nokogiri-1.8.5
65 +"
66 +
67 +ruby_add_bdepend "test? (
68 + dev-ruby/mocha
69 +)"
70 +
71 +all_ruby_prepare() {
72 + # Remove items from the common Gemfile that we don't need for this
73 + # test run. This also requires handling some gemspecs.
74 + 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\|capybara\)/ s:^:#:" \
75 + -e '/:job/,/end/ s:^:#:' \
76 + -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
77 + rm ../Gemfile.lock || die
78 +}
79 +
80 +each_ruby_prepare() {
81 + sed -i -e 's:ruby:'${RUBY}':' test/dummy/bin/* || die
82 +}