app-emacs/corfu: bump to 2.6

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-12-10 17:26:13 +01:00
parent 786c0af84d
commit eefb1a775b
2 changed files with 47 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST corfu-2.4.gh.tar.gz 52436 BLAKE2B 3f7c37c96ce77f8a840ce4d09bf3a19fed0fc15463f6343d2ef38913d6202a7089298a6bde41cedadb4186912d835242b77d0a66914ff7e987c62d98fc91e9c2 SHA512 f44aaa5e875781dff8cc114acfacd20a89f2ccac00af55f163125b371f5b520bc609a6fbeb2f41743e24ce1b7dc73ef1870d9543c7e443ebf56be22ae0a7d2fe
DIST corfu-2.5.gh.tar.gz 53150 BLAKE2B d3c8a48c0ea08b1bff51c9bd4a2e045fad6f311ff8af54b0f4db832a6a128b302327d7a4291cb5dce1741fde136c11c46d07226e9a29c29bd4f0dd42a50aae01 SHA512 0c7aa02a5b1a6b71ac4c880502a569bf3000772cd8632d8fd2f916a7ef526ee11f5a7bb3c878d1a64bd0a4cd7bb4b4a0753052fdb5ec74d94d122b0d7d5a56a6
DIST corfu-2.6.gh.tar.gz 53468 BLAKE2B 984330f71ed36bcd4affe7452970c0549a631b823c5c81e25e07ceb186f9e5ca02dc1c7d4b26d2861b9cee9857eeebc0078e21b5b7507ec60def9a5e580ad69b SHA512 d4c80aaf1f5a90c58b4bb61073f4455bf46b0c9d1fca2c75603117edc6a421983a657f729b3bc02a67ad65346622611d47ae64bc0c13de9ba4752383055f56eb

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS="29.1"
inherit elisp
DESCRIPTION="Completion Overlay Region FUnction"
HOMEPAGE="https://github.com/minad/corfu/"
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 ~arm64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
app-emacs/compat
"
BDEPEND="
${RDEPEND}
"
DOCS=( CHANGELOG.org README.org )
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
default
mv ./extensions/*.el . || die
}
src_compile() {
elisp_src_compile
elisp-make-autoload-file
}