Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/lsp-mode/
Date: Thu, 23 Jun 2022 15:39:18
Message-Id: 1655998025.9b334da658e4fd22eb44371a1d7ba2f44111f7b2.xgqt@gentoo
1 commit: 9b334da658e4fd22eb44371a1d7ba2f44111f7b2
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 15:27:05 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 23 15:27:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b334da6
7
8 app-emacs/lsp-mode: bump to 8.0.0_p20220620
9
10 2022.06.20 snapshot
11
12 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
13
14 app-emacs/lsp-mode/Manifest | 1 +
15 app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild | 61 ++++++++++++++++++++++
16 2 files changed, 62 insertions(+)
17
18 diff --git a/app-emacs/lsp-mode/Manifest b/app-emacs/lsp-mode/Manifest
19 index a66229b89085..8fbe910bb5d2 100644
20 --- a/app-emacs/lsp-mode/Manifest
21 +++ b/app-emacs/lsp-mode/Manifest
22 @@ -1 +1,2 @@
23 DIST lsp-mode-8.0.0.tar.gz 14703640 BLAKE2B ab7993772cfc127ee94ba4a0af75e8d7f6789ac22c76acce8df250b5579c1dd2f41e353b26cbdcf6e1a2e6a8d1f8a179d4736b67914cdec31c23032f93dffd3c SHA512 2620288142cea7b06ad2725b63e5db945b1d62d0b4c215e8d35d79d6c3f05bcdf2736dab34bd10c2b9f8928caf36ef617182c41c309e62e2ce8ddf45df376cbc
24 +DIST lsp-mode-8.0.0_p20220620.tar.gz 15464614 BLAKE2B 10e50a52e2a725b1a275b81514bb268619b128370f8989970c75c87bc37516588e798c5f2531b73689d9d102fbd6b965841c6d8a0c337cb8d9052b632a01e289 SHA512 d464418df6eb99d8a1f4cad8c9e31ca057286f846afbb0078fdff21cfc685ffc158b1b37d22224372bee67eb5298f20bb4db83ed466c09e4b4b3a83db865ef09
25
26 diff --git a/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild b/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild
27 new file mode 100644
28 index 000000000000..b87fe3e08a74
29 --- /dev/null
30 +++ b/app-emacs/lsp-mode/lsp-mode-8.0.0_p20220620.ebuild
31 @@ -0,0 +1,61 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +H=9957623d93b13fabaca8ba35b85da8fcceaeef69
38 +NEED_EMACS=26.1
39 +
40 +inherit elisp
41 +
42 +DESCRIPTION="Emacs client/library for the Language Server Protocol"
43 +HOMEPAGE="https://emacs-lsp.github.io/lsp-mode/"
44 +SRC_URI="https://github.com/emacs-lsp/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz"
45 +S="${WORKDIR}"/${PN}-${H}
46 +
47 +LICENSE="GPL-3+"
48 +KEYWORDS="~amd64"
49 +SLOT="0"
50 +IUSE="test"
51 +RESTRICT="!test? ( test )"
52 +
53 +RDEPEND="
54 + >=app-emacs/dash-2.18.0
55 + >=app-emacs/f-0.20.0
56 + app-emacs/ht
57 + app-emacs/lv
58 + app-emacs/markdown-mode
59 + app-emacs/spinner
60 +"
61 +BDEPEND="
62 + ${RDEPEND}
63 + test? (
64 + app-emacs/deferred
65 + app-emacs/ecukes
66 + app-emacs/el-mock
67 + app-emacs/ert-runner
68 + app-emacs/espuds
69 + app-emacs/flycheck
70 + app-emacs/undercover
71 + )
72 +"
73 +
74 +DOCS=( AUTHORS CHANGELOG.org README.md refcard )
75 +BYTECOMPFLAGS="-L . -L clients"
76 +ELISP_REMOVE="test/lsp-clangd-test.el test/lsp-common-test.el
77 + test/lsp-integration-test.el" # Remove failing tests
78 +SITEFILE="50${PN}-gentoo.el"
79 +
80 +src_compile() {
81 + elisp_src_compile
82 + elisp-compile clients/*.el
83 +}
84 +
85 +src_test() {
86 + ert-runner -L clients --reporter ert+duration -t "!no-win" -t "!org" || die
87 +}
88 +
89 +src_install() {
90 + elisp_src_install
91 + elisp-install ${PN}/clients clients/*
92 +}