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.

67 lines
1.3 KiB

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp
DESCRIPTION="Cucumber for Emacs"
HOMEPAGE="https://github.com/ecukes/ecukes/"
SRC_URI="https://github.com/ecukes/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
app-emacs/ansi
app-emacs/commander
app-emacs/dash
app-emacs/espuds
app-emacs/f
app-emacs/s
"
BDEPEND="
${RDEPEND}
test? ( app-emacs/el-mock )
"
DOCS=( README.markdown )
PATCHES=( "${FILESDIR}"/${PN}-bin-launcher-fix.patch )
# Remove pkg file and failing tests
ELISP_REMOVE="${PN}-pkg.el test/${PN}-parse-line-test.el"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
elisp_src_prepare
sed "s|@SITELISP@|${EPREFIX}${SITELISP}/${PN}|" -i bin/${PN} || die
}
src_compile() {
elisp_src_compile
elisp-compile reporters/*.el
}
src_test() {
local i
for i in test/ecukes-*-test.el ; do
ebegin "Running tests from ${i}"
${EMACS} ${EMACSFLAGS} -L . -L test \
--eval "(require 'cl)" \
-l test/test-helper.el -l ${i} -l test/ecukes-test.el \
-f ert-run-tests-batch-and-exit
eend $? || die "tests failed, last ran tests from ${i}"
done
}
src_install() {
elisp_src_install
elisp-install ${PN}/reporters reporters/*.el{,c}
dobin bin/${PN}
}