blob: d43090cd2c6f7b63111fd92a92cd630d2941fa70 (
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
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
COMMIT="2367fba7b3b2340364a30cd6de7f3eb6bb9898a3"
inherit elisp
DESCRIPTION="Emacs library to convert strings into ansi"
HOMEPAGE="https://github.com/rejeep/ansi.el/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/rejeep/${PN}.el.git"
else
SRC_URI="https://github.com/rejeep/${PN}.el/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${PN}.el-${COMMIT}"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
app-emacs/dash
app-emacs/el-mock
app-emacs/f
app-emacs/s
app-emacs/undercover
)
"
DOCS=( README.markdown )
SITEFILE="50${PN}-gentoo.el"
src_test() {
${EMACS} ${EMACSFLAGS} -L . -L test \
-l ansi.el -l test/ansi-color-test.el -l test/ansi-csi-test.el \
-l test/ansi-format-test.el -l test/ansi-init.el \
-l test/ansi-on-color-test.el -l test/ansi-style-test.el \
-l test/ansi-test.el -l test/test-helper.el \
-f ert-run-tests-batch-and-exit || die "tests failed"
}
|