You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
897 B
38 lines
897 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
USE_RUBY="ruby22 ruby23"
|
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
RUBY_FAKEGEM_EXTRADOC="README.md"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
|
|
|
|
inherit ruby-fakegem versionator
|
|
|
|
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="$(get_version_component_range 1-2)"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend "
|
|
=dev-ruby/activesupport-5*:*
|
|
=dev-ruby/activemodel-5*:*
|
|
=dev-ruby/activerecord-5*:*
|
|
=dev-ruby/builder-3*:* >=dev-ruby/builder-3.1:*
|
|
"
|
|
|
|
ruby_add_bdepend "test? (
|
|
dev-ruby/sqlite3
|
|
)"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
}
|