blob: 581cfa3f923f79d4964b837a182aa8abe19a16bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_TASK_TEST="MT_NO_PLUGINS=true"
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
inherit ruby-fakegem
DESCRIPTION="XML serialization for your Active Model objects and Active Record models"
HOMEPAGE="https://github.com/rails/activemodel-serializers-xml"
SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
LICENSE="MIT"
SLOT="$(ver_cut 1-2)"
KEYWORDS="~amd64"
IUSE="test"
ruby_add_rdepend "
>=dev-ruby/activesupport-5:*
>=dev-ruby/activemodel-5:*
=dev-ruby/builder-3*:* >=dev-ruby/builder-3.1:*
"
ruby_add_bdepend "test? (
|| ( dev-ruby/activerecord:7.1 dev-ruby/activerecord:7.0 )
dev-ruby/sqlite3
dev-ruby/rexml
)"
all_ruby_prepare() {
sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
sed -e '/datetime.*created_at/ s:^:#:' \
-e '2igem "activerecord", "<7.2"' \
-e 's/ActiveRecord::Base.default_timezone/ActiveRecord.default_timezone/' \
-i test/helper.rb || die
sed -i -e '/bundler/ s:^:#:' Rakefile || die
}
|