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/activerecord/
Date: Sat, 24 Aug 2019 07:37:01
Message-Id: 1566632189.9b0a6c3d3065aae176b3c37af9d30d4d1a419cdf.graaff@gentoo
1 commit: 9b0a6c3d3065aae176b3c37af9d30d4d1a419cdf
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 24 07:36:09 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 24 07:36:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0a6c3d
7
8 dev-ruby/activerecord: add 6.0.0
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/activerecord/Manifest | 1 +
14 dev-ruby/activerecord/activerecord-6.0.0.ebuild | 84 +++++++++++++++++++++++++
15 2 files changed, 85 insertions(+)
16
17 diff --git a/dev-ruby/activerecord/Manifest b/dev-ruby/activerecord/Manifest
18 index b46f17038b9..e3b53c8c815 100644
19 --- a/dev-ruby/activerecord/Manifest
20 +++ b/dev-ruby/activerecord/Manifest
21 @@ -1,3 +1,4 @@
22 DIST rails-4.2.11.1.tgz 4081006 BLAKE2B 7db84961963f529a9b6c06011bb6e32b56f4beb064de31c811a092d27e93156669ade4dcceb7d8abcdba4845d42258d904f8ecaf79198af1c0e2afcb33fe3fe3 SHA512 198fa072f3f09a9893377439ddd1803effdf04a33ae7b609234464e7de9ad960439d1b80ae62e1f9b223b3173839be7233c314a72057933b43672f390d96a8df
23 DIST rails-5.1.7.tgz 6146668 BLAKE2B 494a12d79037010333c06d14573474f0d0c1e62ce5252e8fbe4eb4c6935dc660614c2ff29fd168bbc66d74bfa64b92abb84d02645cb3b2950db5c166111b7b19 SHA512 6595eb19f174c9e46a937d6028d9bb2bfdcda06f35ec2a0499bc5deff05d8cfc8f8fc725e664496d3b431c8724141a1410201b57945b98ca211aea15c990d621
24 DIST rails-5.2.3.tgz 8802794 BLAKE2B 786f94bcd9528ffc664c39caef0e7d2d3c15da95497044504082999a435c2a877d73d40b68b5237dc07ae6cf9b8f6f99f12ae68527c5f4005b1a648038e507c0 SHA512 6a41f7564679263b4a16a245d13271b12e97a55cdd77b5ebe63bd86c3a80e4f447b4c0567a4a40ed8e97a2307522f6dad368b1beeb362136bdf1856f6dffeb60
25 +DIST rails-6.0.0.tgz 18543484 BLAKE2B 614e71481a3a5ece629f49d0ef623b5352e165b5d46a736ccb747614d6c1fd56d4aaba2f2f32d48d81772cfd4db671d94a67cd3ffa395f29bf2de1f148fa57ed SHA512 3a2259fe2b3ffd0ddc9128e1aa58af57006b8410120a3629926b95fbe60b8658edab77929e26d9323c61a1855a4379e73f1ddbe875324b068a9e8bdde6ca55e6
26
27 diff --git a/dev-ruby/activerecord/activerecord-6.0.0.ebuild b/dev-ruby/activerecord/activerecord-6.0.0.ebuild
28 new file mode 100644
29 index 00000000000..541ae5e776d
30 --- /dev/null
31 +++ b/dev-ruby/activerecord/activerecord-6.0.0.ebuild
32 @@ -0,0 +1,84 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +USE_RUBY="ruby25 ruby26"
38 +
39 +# this is not null so that the dependencies will actually be filled
40 +RUBY_FAKEGEM_TASK_TEST="test"
41 +
42 +RUBY_FAKEGEM_RECIPE_DOC="none"
43 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
44 +
45 +RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"
46 +
47 +RUBY_FAKEGEM_BINWRAP=""
48 +
49 +inherit ruby-fakegem
50 +
51 +DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
52 +HOMEPAGE="https://github.com/rails/rails/"
53 +SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz"
54 +
55 +LICENSE="MIT"
56 +SLOT="$(ver_cut 1-2)"
57 +KEYWORDS="~amd64 ~arm64"
58 +IUSE="mysql postgres sqlite"
59 +
60 +RUBY_S="rails-${PV}/${PN}"
61 +
62 +ruby_add_rdepend "~dev-ruby/activesupport-${PV}
63 + ~dev-ruby/activemodel-${PV}
64 + dev-ruby/arel:9.0
65 + sqlite? ( >=dev-ruby/sqlite3-1.4 )
66 + mysql? ( || ( dev-ruby/mysql2:0.5 >=dev-ruby/mysql2-0.4.4:0.4 ) )
67 + postgres? ( || ( dev-ruby/pg:1 >=dev-ruby/pg-0.18.0:0 ) )"
68 +
69 +ruby_add_bdepend "
70 + test? (
71 + dev-ruby/bundler
72 + ~dev-ruby/actionpack-${PV}
73 + >=dev-ruby/sqlite3-1.3.6
74 + dev-ruby/mocha
75 + dev-ruby/minitest:5
76 + )"
77 +
78 +DEPEND+=" test? ( >=dev-db/sqlite-3.12.1 )"
79 +
80 +all_ruby_prepare() {
81 + # Remove items from the common Gemfile that we don't need for this
82 + # test run. This also requires handling some gemspecs.
83 + rm ../Gemfile.lock || die
84 + sed -i -e "/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|execjs\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|minitest\|sprockets\|stackprof\)/ s:^:#:" \
85 + -e '/:job/,/end/ s:^:#:' \
86 + -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
87 + sed -i -e '/rack-ssl/d' -e 's/~> 3.4/>= 3.4/' ../railties/railties.gemspec || die
88 + sed -e '/bcrypt/ s/3.0.0/3.0/' \
89 + -i ../Gemfile || die
90 +
91 + # Add back json in the Gemfile because we dropped some dependencies
92 + # earlier that implicitly required it.
93 + sed -i -e '$agem "json"' ../Gemfile || die
94 +
95 + # Avoid test depending on mysql adapter which we don't support for
96 + # this Rails version to simplify our dependencies.
97 + rm test/cases/connection_specification/resolver_test.rb || die
98 +
99 + # Avoid single tests using mysql or postgres dependencies.
100 + rm test/cases/invalid_connection_test.rb || die
101 + sed -e '/test_switching_connections_with_database_url/askip "postgres"' \
102 + -i test/cases/connection_adapters/connection_handlers_multi_db_test.rb || die
103 +
104 + # Avoid failing test that makes bad assumptions on database state.
105 + sed -i -e '/test_do_not_call_callbacks_for_delete_all/,/^ end/ s:^:#:' \
106 + test/cases/associations/has_many_associations_test.rb
107 +
108 + # Avoid test failing to bind limit length in favor of security release
109 + sed -i -e '/test_too_many_binds/askip "Fails on Gentoo"' test/cases/bind_parameter_test.rb || die
110 +}
111 +
112 +each_ruby_test() {
113 + if use sqlite; then
114 + ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed"
115 + fi
116 +}