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.
35 lines
781 B
35 lines
781 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
USE_RUBY="ruby25 ruby26 ruby27"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="Changelog README.md"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A framework to implement robust multiprocess servers"
|
|
HOMEPAGE="https://github.com/fluent/serverengine"
|
|
LICENSE="Apache-2.0"
|
|
|
|
KEYWORDS="~amd64"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/bundler )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/rake/ s/~>/>=/' \
|
|
-e '/rspec/ s/2.13.0/2.13/' \
|
|
-e '/rake-compiler/ s:^:#:' serverengine.gemspec || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
# The specs spawn ruby processes with bundler support
|
|
${RUBY} -S bundle exec rspec-2 spec || die
|
|
}
|