mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 23:28:08 -07:00
38 lines
983 B
Bash
38 lines
983 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
|
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
RUBY_FAKEGEM_GEMSPEC="minitest-hooks.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Adds around and before_all/after_all/around_all hooks for Minitest"
|
|
HOMEPAGE="https://github.com/jeremyevans/minitest-hooks"
|
|
SRC_URI="https://github.com/jeremyevans/minitest-hooks/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="$(ver_cut 1)"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
|
IUSE="test"
|
|
|
|
ruby_add_rdepend ">=dev-ruby/minitest-5.3"
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34" ruby_add_depend "
|
|
test? ( >=dev-ruby/sequel-4 dev-ruby/sqlite3 dev-ruby/minitest-global_expectations )
|
|
"
|
|
|
|
each_ruby_test() {
|
|
case ${RUBY} in
|
|
*ruby40)
|
|
einfo "Skipping tests to avoid a large circular dependency"
|
|
;;
|
|
*)
|
|
${RUBY} spec/all.rb || die
|
|
;;
|
|
esac
|
|
}
|