repo/gentoo:master commit in: app-emacs/consult/
Maciej BarÄ <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786282305.14c76daa00aafef539c0f37acd8ab691cf77f750.xgqt@gentoo> |
commit: 14c76daa00aafef539c0f37acd8ab691cf77f750
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 12:21:39 2026 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 13:31:45 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c76daa
app-emacs/consult: bump to 3.7
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/consult/Manifest | 1 +
app-emacs/consult/consult-3.7.ebuild | 37 ++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/app-emacs/consult/Manifest b/app-emacs/consult/Manifest
index b71bc0d82696..1940793b062b 100644
--- a/app-emacs/consult/Manifest
+++ b/app-emacs/consult/Manifest
@@ -1,2 +1,3 @@
DIST consult-3.5.gh.tar.gz 115370 BLAKE2B 859c8e6dc569a2eb9362423f8c43423e25f38ad6893c7a679897dc0d06ea1b338f7293cf47ef1c31d845c05d2a8cced6b30eb214a37d229ea969e2c8af4621ea SHA512 6db716006f1f503ef8dfc7ed607bf75168dcf5abf45ad342bc8343c6c00dd1a3bac0dee897319bc37042e06c114d21b1337e66b5e9f2d7ee858752964a910208
DIST consult-3.6.gh.tar.gz 115603 BLAKE2B 7aea22be49d9fe53178240de9071a0662931492542409d7b0679ef341c58a8612767943ddabc5bb3b9c5b8dc9a63e0e7a71836c402c02a78abc6ef0958d1fe74 SHA512 5f52c2fb3a13f4acaf7f47c8663c859dcc7f4775f4970f1744b45252381cb799799016cf4edb2ee5e445ceeacd98a8fa1d66227ab7260f66961f5351e68cdc2d
+DIST consult-3.7.gh.tar.gz 115502 BLAKE2B abf1f20ade0ac4b0a33ad829c58f2212b999d194dfc8a5831c8070279e7d45aa1f12978fa44b36ec44ae08ea40b6373dee18a6b8496ca373942a763ab8ba7185 SHA512 c5be08644a816421a5076d67c34e975727d8272375305913487c2c8e99573472a5a823efbea1b74f75f3e300eb39271c1605e1db3a104c1e90140beadd346d17
diff --git a/app-emacs/consult/consult-3.7.ebuild b/app-emacs/consult/consult-3.7.ebuild
new file mode 100644
index 000000000000..0f3d60044e61
--- /dev/null
+++ b/app-emacs/consult/consult-3.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=9
+
+NEED_EMACS="29.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-31.0
+"
+BDEPEND="
+ ${RDEPEND}
+"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}