diff options
author | Matthew Smith <matthew@gentoo.org> | 2022-02-17 18:48:33 +0000 |
---|---|---|
committer | Matthew Smith <matthew@gentoo.org> | 2022-02-17 19:43:49 +0000 |
commit | 3d651aa18072e59ea5217cf2c0b9c7697432b2db (patch) | |
tree | 92d01303ea64463e1f11a2527de8739d34f8dc99 /app-emacs | |
parent | dev-python/mistune: Stabilize 2.0.2 ALLARCHES, #833554 (diff) | |
download | gentoo-3d651aa18072e59ea5217cf2c0b9c7697432b2db.tar.gz gentoo-3d651aa18072e59ea5217cf2c0b9c7697432b2db.tar.bz2 gentoo-3d651aa18072e59ea5217cf2c0b9c7697432b2db.zip |
app-emacs/consult: initial import at 0.15
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/consult/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/consult/consult-0.15.ebuild | 22 | ||||
-rw-r--r-- | app-emacs/consult/files/50consult-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/consult/metadata.xml | 12 |
4 files changed, 37 insertions, 0 deletions
diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest new file mode 100644 index 000000000000..b07059e9e0d9 --- /dev/null +++ b/app-emacs/consult/Manifest @@ -0,0 +1 @@ +DIST consult-0.15.tar.gz 90201 BLAKE2B 1652d5a2c1f559c67f6899fe26b221bfdf0599a20af7309e2dc57a4701a795c8decd2f878056297204611d045829ee1aa24ccb665e36c15f6a2a3a14eb81f382 SHA512 2b8926638c13633e2ccf48d63a3a76245d075694f046e20575e8c9bcce983a3610ef648374b01dbff4dbf97d116830040c8e76d9d75d05ca23278253e68138e5 diff --git a/app-emacs/consult/consult-0.15.ebuild b/app-emacs/consult/consult-0.15.ebuild new file mode 100644 index 000000000000..71aa4f98c4be --- /dev/null +++ b/app-emacs/consult/consult-0.15.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=25 + +inherit elisp + +DESCRIPTION="Consulting complete-read" +HOMEPAGE="https://github.com/minad/consult" +SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} diff --git a/app-emacs/consult/files/50consult-gentoo.el b/app-emacs/consult/files/50consult-gentoo.el new file mode 100644 index 000000000000..485f96d1d4b1 --- /dev/null +++ b/app-emacs/consult/files/50consult-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(load "@SITELISP@/consult-autoloads" nil t) diff --git a/app-emacs/consult/metadata.xml b/app-emacs/consult/metadata.xml new file mode 100644 index 000000000000..2ee7184765f8 --- /dev/null +++ b/app-emacs/consult/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> +</maintainer> +<stabilize-allarches/> +<upstream> + <remote-id type="github">minad/consult</remote-id> +</upstream> +</pkgmetadata> |