commit: 5c8a470c7c962a57d3d3d32b6223824136f26a68 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu May 22 22:16:32 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu May 22 23:01:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c8a470c
app-emacs/consult: bump to 2.4 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/consult/Manifest | 1 + app-emacs/consult/consult-2.4.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest index 75e87f7767f0..171de18b2923 100644 --- a/app-emacs/consult/Manifest +++ b/app-emacs/consult/Manifest @@ -1,2 +1,3 @@ DIST consult-2.2.gh.tar.gz 110953 BLAKE2B d08f2905fffd815722d68653f26fefa127fc23c7dab21a4e0606553e0e1739b3ad8f0eb9efe317997fd2980c861c9cc64917a3a4480bc8afb49adc3134396fcb SHA512 12a94de605b30ae1c80b1af8363a5d973001f3ae6374882f2b695148d89cdc4143ade5997c20bd86ee32e18a70c4b70170333687a1ca931473c75a541e13398f DIST consult-2.3.gh.tar.gz 110885 BLAKE2B 4203074e3787d72265188e44f6cd395e5d07655af23491821ad067ec30c3c2dd6c3a90001ffe3d9a975d30509de1f053e69965e7ae3e8e292a1c65cd2c90edc4 SHA512 3282f5abb1a89c907c1c4a4f3a394e6d4d5e003ac0db033cfdcf5562e7363d39504ca5e5645cb6850ad896314cbe9bb0e812371ea48d9864c6992144216472f2 +DIST consult-2.4.gh.tar.gz 111837 BLAKE2B 77c886a2a273cab57472df2a70b59b62f4ca68013dd6ad360691a57c236e44b4c74708060e116c01d72ca1b3bddb9a0a28a5d2e404260a9176918cec7d4f1e80 SHA512 037c7ff1101d44fb1d0e21eef1d8120e245953079cfbb33c5733b6d81fbf21eb729ad606890a1c6e983500dced50e408ad9a2fb798569cec2deaa433412bca41 diff --git a/app-emacs/consult/consult-2.4.ebuild b/app-emacs/consult/consult-2.4.ebuild new file mode 100644 index 000000000000..ceaa32d1900a --- /dev/null +++ b/app-emacs/consult/consult-2.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="28.1" + +inherit elisp + +DESCRIPTION="Consulting complete-read for GNU Emacs" +HOMEPAGE="https://github.com/minad/consult/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/minad/${PN}" +else + SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.2.0 +" +BDEPEND=" + ${RDEPEND} +" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}
