diff options
author | Matthew Smith <matthew@gentoo.org> | 2022-05-29 08:37:45 +0100 |
---|---|---|
committer | Matthew Smith <matthew@gentoo.org> | 2022-05-29 08:41:06 +0100 |
commit | 5403ef8746901047b18356c4e3885c2629bd5d12 (patch) | |
tree | 801c82239e53559320dd24b562037ee839fb40bc /app-emacs/consult | |
parent | app-emacs/compat: new package, add 28.1.1.1 (diff) | |
download | gentoo-5403ef8746901047b18356c4e3885c2629bd5d12.tar.gz gentoo-5403ef8746901047b18356c4e3885c2629bd5d12.tar.bz2 gentoo-5403ef8746901047b18356c4e3885c2629bd5d12.zip |
app-emacs/consult: add 0.18
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'app-emacs/consult')
-rw-r--r-- | app-emacs/consult/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/consult/consult-0.18.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest index b07059e9e0d9..482da82bd8e7 100644 --- a/app-emacs/consult/Manifest +++ b/app-emacs/consult/Manifest @@ -1 +1,2 @@ DIST consult-0.15.tar.gz 90201 BLAKE2B 1652d5a2c1f559c67f6899fe26b221bfdf0599a20af7309e2dc57a4701a795c8decd2f878056297204611d045829ee1aa24ccb665e36c15f6a2a3a14eb81f382 SHA512 2b8926638c13633e2ccf48d63a3a76245d075694f046e20575e8c9bcce983a3610ef648374b01dbff4dbf97d116830040c8e76d9d75d05ca23278253e68138e5 +DIST consult-0.18.tar.gz 93440 BLAKE2B cc67e8cbc49846964114a8e01a10d41454fde2e4a2e98e3af315092fab5631ea1418f649eb92ca798672c0ea153dd2862b555aee6530a1baa84ac4050df7a3c6 SHA512 74005c211ba7af0cf3c0a06fdec8d85da111ea84edb4eef2c60d231ae6eb87905298ee8bbbcdac8bf8b13a21ed9070422383b93433e422d6ad6b743c8bc80938 diff --git a/app-emacs/consult/consult-0.18.ebuild b/app-emacs/consult/consult-0.18.ebuild new file mode 100644 index 000000000000..d2a809943fab --- /dev/null +++ b/app-emacs/consult/consult-0.18.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=27 + +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" + +RDEPEND=">=app-emacs/compat-28.1" +BDEPEND="${RDEPEND}" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} |