Install this version:
emerge -a =app-emacs/dape-0.27.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-emacs/dape-0.27.1
Or alternatively:
emerge --autounmask-write -a =app-emacs/dape-0.27.1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.27.1 | 9 | ~amd64 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
NEED_EMACS="30.1"
inherit elisp
DESCRIPTION="Debug Adapter Protocol for Emacs"
HOMEPAGE="https://github.com/svaante/dape/"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/svaante/${PN}"
else
SRC_URI="https://github.com/svaante/${PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.gh.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3+"
SLOT="0"
# Requires debugpy, but we do not package debugpy right now, as well as
# js-debug. Most tests use only the former.
RESTRICT="test"
# Remove tests.el to skip compilation and failing tests (see above comment).
ELISP_REMOVE="
${PN}-tests.el
"
DOCS=( README.org CHANGELOG.org )
SITEFILE="50${PN}-gentoo.el"
# elisp-enable-tests ert . -l dape-tests.el
src_compile() {
elisp_src_compile
elisp-make-autoload-file
}
src_install() {
rm -f ./dape-tests.el* || die
elisp_src_install
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | dape-0.27.1.gh.tar.gz | 86836 bytes | https://github.com/svaante/dape/archive/refs/tags/0.27.1.tar.gz |