]> jturnerusa.dev Git - ebuilds/commitdiff
app-emacs/eglot: prepared eglot for PR to include into gentoo
authorJohn Turner <jturner.usa+gentoo@gmail.com>
Sun, 17 Oct 2021 19:07:17 +0000 (15:07 -0400)
committerJohn Turner <jturner.usa+gentoo@gmail.com>
Sun, 17 Oct 2021 19:07:17 +0000 (15:07 -0400)
app-emacs/eglot/Manifest
app-emacs/eglot/eglot-1.6.ebuild
app-emacs/eglot/files/50eglot-gentoo.el
app-emacs/eglot/metadata.xml [new file with mode: 0644]

index 48bcd5c08fd40f4a2bae1998196b53a43c8651bf..1c18d5f83751a8e70f7c88c97ce25a2a91689d42 100644 (file)
@@ -1 +1 @@
-DIST eglot-1.6.tar.gz 288078 SHA512 51227c8e2b0a1dd9a63ededbea592f01616ff728c34c330400c078212fef3f3e747e6dd30ba312523cbe60c7ea663a7af9d83300210cf331ea6162d2db5c7e41
+DIST eglot-1.6.tar.gz 288078 BLAKE2B a2214d216d0eeaca32d974c6686696dfcf141b3384741bc8cce0d02abb508eb5713933bc227d12a07f4b87fc34601431845b1b8e519538ae04ecc74b24db4004 SHA512 51227c8e2b0a1dd9a63ededbea592f01616ff728c34c330400c078212fef3f3e747e6dd30ba312523cbe60c7ea663a7af9d83300210cf331ea6162d2db5c7e41
index c9ebccbbeb94770cd952752975ff00093cd969db..913bb955411f6c7f14a882ee6a675da7b9f93dad 100644 (file)
@@ -1,16 +1,28 @@
-EAPI=7
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="26.1"
 
 inherit elisp
 
-DESCRIPTION="Minimal Emacs LSP client"
+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"
-RESTRICT="test mirror"
+# 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"
+DOCS=( README.md NEWS.md )
+
+src_install() {
+       elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
+       elisp_src_install
+}
index 9bf4916712060cbcde0d28fcb9e23934d39f63c7..b8a7e2b65eedd4a9124c126e47f012619167f706 100644 (file)
@@ -1,4 +1,2 @@
-;;; eglot site-lisp configuration
 (add-to-list 'load-path "@SITELISP@")
-(autoload 'eglot "eglot" nil t)
-(autoload 'eglot-ensure "eglot" nil t)
+(load "@SITELISP@/eglot-autoload.el")
diff --git a/app-emacs/eglot/metadata.xml b/app-emacs/eglot/metadata.xml
new file mode 100644 (file)
index 0000000..4d327b8
--- /dev/null
@@ -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>