commit: 496dfed5461c16ea2ec7be882a0ac2d914f9fb16 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Jun 5 12:22:22 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Jun 5 17:03:19 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496dfed5
app-emacs/consult: bump to 2.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/consult/Manifest | 1 + app-emacs/consult/consult-2.5.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest index 63e363968af8..5e437d152b1d 100644 --- a/app-emacs/consult/Manifest +++ b/app-emacs/consult/Manifest @@ -1,2 +1,3 @@ DIST consult-2.3.gh.tar.gz 110885 BLAKE2B 4203074e3787d72265188e44f6cd395e5d07655af23491821ad067ec30c3c2dd6c3a90001ffe3d9a975d30509de1f053e69965e7ae3e8e292a1c65cd2c90edc4 SHA512 3282f5abb1a89c907c1c4a4f3a394e6d4d5e003ac0db033cfdcf5562e7363d39504ca5e5645cb6850ad896314cbe9bb0e812371ea48d9864c6992144216472f2 DIST consult-2.4.gh.tar.gz 111837 BLAKE2B 77c886a2a273cab57472df2a70b59b62f4ca68013dd6ad360691a57c236e44b4c74708060e116c01d72ca1b3bddb9a0a28a5d2e404260a9176918cec7d4f1e80 SHA512 037c7ff1101d44fb1d0e21eef1d8120e245953079cfbb33c5733b6d81fbf21eb729ad606890a1c6e983500dced50e408ad9a2fb798569cec2deaa433412bca41 +DIST consult-2.5.gh.tar.gz 112139 BLAKE2B ee3bc2d2ecde19228ddd6894a68973d543862dfbadd74e5cd4067dc9664c3402ccc8c4b96c8f22658fd6cd921344f497176f652f72e39ce43f9d9e2e831a2692 SHA512 7fff6db29ac662ea7e841bdf8965d14dad0986f17edc7daef9b1fbff686e7c5fc959cf9947e2908a464ab0b12b667f3b007064e4ac73d0ed65187da88947be9a diff --git a/app-emacs/consult/consult-2.5.ebuild b/app-emacs/consult/consult-2.5.ebuild new file mode 100644 index 000000000000..ceaa32d1900a --- /dev/null +++ b/app-emacs/consult/consult-2.5.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 +}
