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/activestorage/
Date: Wed, 16 Jun 2021 05:09:08
Message-Id: 1623820128.f1f060463fbeb9a5688470f7bb0ba64eb16eda08.graaff@gentoo
1 commit: f1f060463fbeb9a5688470f7bb0ba64eb16eda08
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 16 05:07:32 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 16 05:08:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f06046
7
8 dev-ruby/activestorage: add 6.0.4
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/activestorage/Manifest | 1 +
14 dev-ruby/activestorage/activestorage-6.0.4.ebuild | 62 +++++++++++++++++++++++
15 2 files changed, 63 insertions(+)
16
17 diff --git a/dev-ruby/activestorage/Manifest b/dev-ruby/activestorage/Manifest
18 index b6a42c6bee9..d9b874ded6b 100644
19 --- a/dev-ruby/activestorage/Manifest
20 +++ b/dev-ruby/activestorage/Manifest
21 @@ -1,3 +1,4 @@
22 DIST rails-5.2.6.tgz 8841270 BLAKE2B 8e813f376446ef249aa3b48934d3cb5ae125c09c54353cc93557c3bee4f23e47ae7ceffab75d5cbfb691daed85149d9054337b468a0010bc5c7ebb879502396b SHA512 465e017591a9962a2e0dec2eac9669d5f507d0904e9eec50fbc8848d804ba5f1eb3220fd5acc949845f048f59cfc5e43f099707650edf301d6595e70e33888c7
23 DIST rails-6.0.3.7.tgz 18570545 BLAKE2B 6433705f18075e286d14d25dd87def61a3ac9c7a8fc5160f37b9a6f6ab0d7f36a7235602713888df45e55cf4afb56f922c476989304397d422016dc34f147353 SHA512 91612223c9461731741c056a700879ce274a177737fd19ed6341ce07acfa4e4862728ef12bfa1a70cdb3e5c8492ad0da6aae2e7d0ed5ad32d680d8bd8c3ab102
24 +DIST rails-6.0.4.tgz 18594882 BLAKE2B e24ede90a572bc5ebd8244f45b987a62d50080af38e7e8b1689b9af88b66e194c0c3859e35ec2efbd306fc0c2f62a9d8aaa669fb73ddedd940c23aabc2719c2e SHA512 5a9a050ea44716cf72985643098a08716d191fe08d2cf4404fdf80709340c68d4ca083929c7118dad2532cc64a96c28e5dee3ac9541c10745d0f9d0583eda685
25 DIST rails-6.1.3.2.tgz 10992572 BLAKE2B ec4b7c33180ecc6b9dc9bd0270c9c03e48a774a7c0fc1d79638bd6b52a4c9831f59c5d8714e24c9611ac9e8ad03dddc664c2969da8be568eade76464c04d5697 SHA512 3b30facfe0555c3161b5fc50efb7dc1f3df0eeadbfa19f16df3ebdb4877d6fb9a978ae7a6713a502d79e6d8f1be20157bd5ef64919fdd558cad89492cc2d9672
26
27 diff --git a/dev-ruby/activestorage/activestorage-6.0.4.ebuild b/dev-ruby/activestorage/activestorage-6.0.4.ebuild
28 new file mode 100644
29 index 00000000000..6220578fea1
30 --- /dev/null
31 +++ b/dev-ruby/activestorage/activestorage-6.0.4.ebuild
32 @@ -0,0 +1,62 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +USE_RUBY="ruby25 ruby26 ruby27"
39 +
40 +RUBY_FAKEGEM_RECIPE_DOC=""
41 +RUBY_FAKEGEM_DOCDIR=""
42 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
43 +
44 +RUBY_FAKEGEM_GEMSPEC="activestorage.gemspec"
45 +
46 +RUBY_FAKEGEM_EXTRAINSTALL="app config db"
47 +
48 +RUBY_FAKEGEM_BINWRAP=""
49 +
50 +inherit ruby-fakegem
51 +
52 +DESCRIPTION="Attach cloud and local files in Rails applications"
53 +HOMEPAGE="https://github.com/rails/rails"
54 +SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"
55 +
56 +LICENSE="MIT"
57 +SLOT="$(ver_cut 1-2)"
58 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
59 +IUSE=""
60 +
61 +RUBY_S="rails-${PV}/${PN}"
62 +
63 +DEPEND+=" test? ( app-text/mupdf media-gfx/imagemagick[jpeg,png,tiff] media-video/ffmpeg app-text/poppler[utils] ) "
64 +
65 +ruby_add_rdepend "
66 + ~dev-ruby/actionpack-${PV}:*
67 + ~dev-ruby/activerecord-${PV}:*
68 + dev-ruby/marcel:1.0
69 +"
70 +
71 +ruby_add_bdepend "
72 + test? (
73 + ~dev-ruby/railties-${PV}
74 + >=dev-ruby/image_processing-1.2:0
75 + dev-ruby/test-unit:2
76 + dev-ruby/mini_magick
77 + dev-ruby/mocha
78 + dev-ruby/rake
79 + dev-ruby/sqlite3
80 + )"
81 +
82 +all_ruby_prepare() {
83 + # Remove items from the common Gemfile that we don't need for this
84 + # test run. This also requires handling some gemspecs.
85 + 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\|aws-sdk-s3\|aws-sdk-sns\|google-cloud-storage\|azure-storage\|blade\|bootsnap\|hiredis\|qunit-selenium\|chromedriver-helper\|redis\|rb-inotify\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|sass-rails\|rubocop\|capybara\|rack-cache\|selenium\|dalli\|listen\|connection_pool\|puma\|mysql2\|webdrivers\|webpacker\|rexml\|webmock\)/ s:^:#:" \
86 + -e '/dalli/ s/2.7.7/2.7.9/' \
87 + -e '/:job/,/end/ s:^:#:' \
88 + -e '/:test/,/^end/ s:^:#:' \
89 + -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
90 + rm ../Gemfile.lock || die
91 +
92 + # Skip test that has already been updated in later versions upstream
93 + sed -i -e '/resized variation of BMP blob/askip "broken test"' test/models/variant_test.rb || die
94 +}