mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
28 lines
560 B
Bash
28 lines
560 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="none"
|
|
RUBY_FAKEGEM_EXTRADOC="doc/*"
|
|
|
|
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
|
|
|
|
inherit ruby-fakegem
|
|
DESCRIPTION="A binary search library for Ruby"
|
|
HOMEPAGE="http://0xcc.net/ruby-bsearch/"
|
|
|
|
LICENSE="Ruby-BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ppc64 ~sparc x86"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i 's/ruby/\$\{RUBY\}/' test/test.sh || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
pushd test
|
|
RUBY=${RUBY} sh test.sh || die
|
|
popd
|
|
}
|