blob: 918d33824648641667f88660d0542912369b49b9 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=26.3
inherit elisp
DESCRIPTION="A minimal Emacs LSP client"
HOMEPAGE="https://github.com/joaotavora/eglot/
https://elpa.gnu.org/packages/eglot.html"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/joaotavora/${PN}.git"
else
if [[ ${PV} == 1.13 ]] ; then
COMMIT=563d01ab6d4a2f92f38bf92e9702014191031343
SRC_URI="https://github.com/joaotavora/${PN}/archive/${COMMIT}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${COMMIT}
else
SRC_URI="https://github.com/joaotavora/${PV}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
fi
KEYWORDS="~amd64"
fi
LICENSE="GPL-3"
SLOT="0"
RESTRICT="test"
RDEPEND="app-emacs/external-completion"
BDEPEND="${RDEPEND}"
SITEFILE="50${PN}-gentoo.el"
src_install() {
rm eglot-tests.el* || die
elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
elisp_src_install
}
|