public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/eglot/files/, app-emacs/eglot/
@ 2021-10-20  1:14 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2021-10-20  1:14 UTC (permalink / raw
  To: gentoo-commits

commit:     1231e9f1fde930f55991739d6121af12d136a576
Author:     John Turner <jturner.usa+gentoo <AT> gmail <DOT> com>
AuthorDate: Sun Oct 17 19:05:09 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 20 01:14:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1231e9f1

app-emacs/eglot: initial import

Signed-off-by: John Turner <jturner.usa+gentoo <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22615
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-emacs/eglot/Manifest                |  1 +
 app-emacs/eglot/eglot-1.6.ebuild        | 28 ++++++++++++++++++++++++++++
 app-emacs/eglot/files/50eglot-gentoo.el |  2 ++
 app-emacs/eglot/metadata.xml            | 16 ++++++++++++++++
 4 files changed, 47 insertions(+)

diff --git a/app-emacs/eglot/Manifest b/app-emacs/eglot/Manifest
new file mode 100644
index 00000000000..1c18d5f8375
--- /dev/null
+++ b/app-emacs/eglot/Manifest
@@ -0,0 +1 @@
+DIST eglot-1.6.tar.gz 288078 BLAKE2B a2214d216d0eeaca32d974c6686696dfcf141b3384741bc8cce0d02abb508eb5713933bc227d12a07f4b87fc34601431845b1b8e519538ae04ecc74b24db4004 SHA512 51227c8e2b0a1dd9a63ededbea592f01616ff728c34c330400c078212fef3f3e747e6dd30ba312523cbe60c7ea663a7af9d83300210cf331ea6162d2db5c7e41

diff --git a/app-emacs/eglot/eglot-1.6.ebuild b/app-emacs/eglot/eglot-1.6.ebuild
new file mode 100644
index 00000000000..913bb955411
--- /dev/null
+++ b/app-emacs/eglot/eglot-1.6.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="26.1"
+
+inherit elisp
+
+DESCRIPTION="A minimal Emacs LSP client"
+HOMEPAGE="https://github.com/joaotavora/eglot"
+SRC_URI="https://github.com/joaotavora/eglot/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+# test requires internet connection to install several language servers, one of which
+# is not packaged
+RESTRICT="test"
+
+SITEFILE="50${PN}-gentoo.el"
+ELISP_REMOVE="eglot-tests.el"
+DOCS=( README.md NEWS.md )
+
+src_install() {
+	elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
+	elisp_src_install
+}

diff --git a/app-emacs/eglot/files/50eglot-gentoo.el b/app-emacs/eglot/files/50eglot-gentoo.el
new file mode 100644
index 00000000000..b8a7e2b65ee
--- /dev/null
+++ b/app-emacs/eglot/files/50eglot-gentoo.el
@@ -0,0 +1,2 @@
+(add-to-list 'load-path "@SITELISP@")
+(load "@SITELISP@/eglot-autoload.el")

diff --git a/app-emacs/eglot/metadata.xml b/app-emacs/eglot/metadata.xml
new file mode 100644
index 00000000000..4d327b888ff
--- /dev/null
+++ b/app-emacs/eglot/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person" proxied="yes">
+    <email>jturner.usa+gentoo@gmail.com</email>
+    <name>John Turner</name>
+  </maintainer>
+  <maintainer type="project" proxied="proxy">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">joaotavora/eglot</remote-id>
+    <doc>https://github.com/joaotavora/eglot/blob/master/README.md</doc>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/eglot/files/, app-emacs/eglot/
@ 2022-06-26 18:06 Maciej Barć
  0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2022-06-26 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     ca3dff4904d2b671ca5a9e92d9e61d15357233b7
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 18:04:34 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 18:06:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3dff49

app-emacs/eglot: silence the autoloads load message

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/eglot/{eglot-1.6.ebuild => eglot-1.6-r1.ebuild} | 2 +-
 app-emacs/eglot/{eglot-1.8.ebuild => eglot-1.8-r1.ebuild} | 2 +-
 app-emacs/eglot/files/50eglot-gentoo.el                   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emacs/eglot/eglot-1.6.ebuild b/app-emacs/eglot/eglot-1.6-r1.ebuild
similarity index 94%
rename from app-emacs/eglot/eglot-1.6.ebuild
rename to app-emacs/eglot/eglot-1.6-r1.ebuild
index 913bb955411f..b5463a817ab2 100644
--- a/app-emacs/eglot/eglot-1.6.ebuild
+++ b/app-emacs/eglot/eglot-1.6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/app-emacs/eglot/eglot-1.8.ebuild b/app-emacs/eglot/eglot-1.8-r1.ebuild
similarity index 94%
rename from app-emacs/eglot/eglot-1.8.ebuild
rename to app-emacs/eglot/eglot-1.8-r1.ebuild
index 913bb955411f..b5463a817ab2 100644
--- a/app-emacs/eglot/eglot-1.8.ebuild
+++ b/app-emacs/eglot/eglot-1.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/app-emacs/eglot/files/50eglot-gentoo.el b/app-emacs/eglot/files/50eglot-gentoo.el
index b8a7e2b65eed..c3b894cc43c8 100644
--- a/app-emacs/eglot/files/50eglot-gentoo.el
+++ b/app-emacs/eglot/files/50eglot-gentoo.el
@@ -1,2 +1,2 @@
 (add-to-list 'load-path "@SITELISP@")
-(load "@SITELISP@/eglot-autoload.el")
+(load "@SITELISP@/eglot-autoload.el" nil t)


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/eglot/files/, app-emacs/eglot/
@ 2023-05-08 17:05 Maciej Barć
  0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2023-05-08 17:05 UTC (permalink / raw
  To: gentoo-commits

commit:     55a98b2761c959f9d82fddc0577db12067f915f9
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Mon May  8 17:04:54 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Mon May  8 17:05:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a98b27

app-emacs/eglot: fix loading autoloads

Closes: https://bugs.gentoo.org/905958
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/eglot/{eglot-1.15.ebuild => eglot-1.15-r1.ebuild} | 2 +-
 app-emacs/eglot/files/50eglot-gentoo-r1.el                  | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-emacs/eglot/eglot-1.15.ebuild b/app-emacs/eglot/eglot-1.15-r1.ebuild
similarity index 96%
rename from app-emacs/eglot/eglot-1.15.ebuild
rename to app-emacs/eglot/eglot-1.15-r1.ebuild
index 9ffaace3d84d..f77a0922ed66 100644
--- a/app-emacs/eglot/eglot-1.15.ebuild
+++ b/app-emacs/eglot/eglot-1.15-r1.ebuild
@@ -30,7 +30,7 @@ RDEPEND="app-emacs/external-completion"
 BDEPEND="${RDEPEND}"
 
 DOCS=( README.md )
-SITEFILE="50${PN}-gentoo.el"
+SITEFILE="50${PN}-gentoo-r1.el"
 
 src_install() {
 	elisp-make-autoload-file

diff --git a/app-emacs/eglot/files/50eglot-gentoo-r1.el b/app-emacs/eglot/files/50eglot-gentoo-r1.el
new file mode 100644
index 000000000000..b12b269242df
--- /dev/null
+++ b/app-emacs/eglot/files/50eglot-gentoo-r1.el
@@ -0,0 +1,2 @@
+(add-to-list 'load-path "@SITELISP@")
+(load "@SITELISP@/eglot-autoloads.el" nil t)


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-05-08 17:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-20  1:14 [gentoo-commits] repo/gentoo:master commit in: app-emacs/eglot/files/, app-emacs/eglot/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-06-26 18:06 Maciej Barć
2023-05-08 17:05 Maciej Barć

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox