mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 07:29:19 +02:00
61 lines
1.2 KiB
Bash
61 lines
1.2 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
NEED_EMACS="27.1"
|
|
|
|
inherit elisp
|
|
|
|
DESCRIPTION="Emacs major modes for the Bazel build system support"
|
|
HOMEPAGE="https://bazel.build/
|
|
https://github.com/bazelbuild/emacs-bazel-mode/"
|
|
|
|
if [[ "${PV}" == *9999* ]] ; then
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/bazelbuild/${PN}.git"
|
|
else
|
|
[[ "${PV}" == *_p20230919 ]] && COMMIT="769b30dc18282564d614d7044195b5a0c1a0a5f3"
|
|
|
|
SRC_URI="https://github.com/bazelbuild/${PN}/archive/${COMMIT}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
KEYWORDS="amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
RESTRICT="test" # Tests fail.
|
|
|
|
BDEPEND="
|
|
sys-apps/texinfo
|
|
"
|
|
|
|
DOCS=( CONTRIBUTING.md README.md )
|
|
SITEFILE="50${PN}-gentoo.el"
|
|
|
|
elisp-enable-tests ert "${S}" -l test.el
|
|
|
|
src_compile() {
|
|
elisp-compile ./bazel.el
|
|
elisp-make-autoload-file
|
|
|
|
elisp-org-export-to texinfo ./manual.org
|
|
makeinfo ./bazel.el.texi || die
|
|
}
|
|
|
|
src_test() {
|
|
local -x TEST_SRCDIR="${S}"
|
|
local -x TEST_WORKSPACE="${S}"
|
|
|
|
elisp_src_test
|
|
}
|
|
|
|
src_install() {
|
|
rm ./test.el || die
|
|
|
|
elisp_src_install
|
|
doinfo ./bazel.el.info
|
|
}
|