commit: 7980be4aeaf9eb186b6304a2851c99fcc8082a67 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Aug 7 20:46:57 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Aug 7 20:54:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7980be4a
app-emacs/consult: bump to 2.7 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/consult/Manifest | 1 + app-emacs/consult/consult-2.7.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest index afd4a91c79a4..6bc44eb8e679 100644 --- a/app-emacs/consult/Manifest +++ b/app-emacs/consult/Manifest @@ -1,2 +1,3 @@ DIST consult-2.5.gh.tar.gz 112139 BLAKE2B ee3bc2d2ecde19228ddd6894a68973d543862dfbadd74e5cd4067dc9664c3402ccc8c4b96c8f22658fd6cd921344f497176f652f72e39ce43f9d9e2e831a2692 SHA512 7fff6db29ac662ea7e841bdf8965d14dad0986f17edc7daef9b1fbff686e7c5fc959cf9947e2908a464ab0b12b667f3b007064e4ac73d0ed65187da88947be9a DIST consult-2.6.gh.tar.gz 112467 BLAKE2B c6477e216a61f42b9865893bdea8c1d05e7bc71f63fd19c5c8e46661dc725d8b029c2c5f392e19c5bfa730d76410b7db2879002ef23aeaf4d54a6c97e94fcccf SHA512 3d4af9f20a50b0cb9505cddf993fe1adbca6cfbe6ea686c5c23a5787308d199662b148340a598b54f7b8e170fa8a476af71557076324a4cd617572d8801ece74 +DIST consult-2.7.gh.tar.gz 113229 BLAKE2B f4dba3e6bc0b6109f62275daba90644ea766de10c5c67e672d84628540cc80782e4690edad668164a8ae6d8ec92ff92896f2d0b52f81d1982cfb29f7f6f2102c SHA512 fe24599cf1ab83eb52db71827eae93b5f84b5b907072818a3e37632059f268a6809c903502ff0407ebfad0ec0417a137cda8716266671f4ef3a5a0367263a68d diff --git a/app-emacs/consult/consult-2.7.ebuild b/app-emacs/consult/consult-2.7.ebuild new file mode 100644 index 000000000000..ceaa32d1900a --- /dev/null +++ b/app-emacs/consult/consult-2.7.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 +}
