blob: 1f68d2517eb13efcf5ce2b5fb2e5e10fff491c82 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Common assertions for Bats"
HOMEPAGE="https://github.com/bats-core/bats-assert"
SRC_URI="https://github.com/bats-core/bats-assert/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-util/bats
dev-util/bats-support
"
BDEPEND="test? ( ${RDEPEND} )"
DOCS=( README.md )
src_prepare() {
default
# skip broken tests on bash 5.3
# https://github.com/bats-core/bats-assert/issues/83
sed -i "/@test .* not a valid extended regular expression/a skip 'broken on bash 5.3'" test/*.bats || die
}
src_install() {
insinto "/usr/share/${PN}"
doins load.bash
doins -r src
einstalldocs
}
src_test() {
BATS_LIB_PATH=/usr/share bats test || die
}
|