commit: 5e602e3cd94619c8c909b46284301549ea2511f3 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Dec 29 00:07:23 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Dec 29 00:11:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e602e3c
app-emacs/corfu: bump to 2.7 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/corfu/Manifest | 1 + app-emacs/corfu/corfu-2.7.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/app-emacs/corfu/Manifest b/app-emacs/corfu/Manifest index 25caf204143e..7ce944436af8 100644 --- a/app-emacs/corfu/Manifest +++ b/app-emacs/corfu/Manifest @@ -1,2 +1,3 @@ DIST corfu-2.5.gh.tar.gz 53150 BLAKE2B d3c8a48c0ea08b1bff51c9bd4a2e045fad6f311ff8af54b0f4db832a6a128b302327d7a4291cb5dce1741fde136c11c46d07226e9a29c29bd4f0dd42a50aae01 SHA512 0c7aa02a5b1a6b71ac4c880502a569bf3000772cd8632d8fd2f916a7ef526ee11f5a7bb3c878d1a64bd0a4cd7bb4b4a0753052fdb5ec74d94d122b0d7d5a56a6 DIST corfu-2.6.gh.tar.gz 53468 BLAKE2B 984330f71ed36bcd4affe7452970c0549a631b823c5c81e25e07ceb186f9e5ca02dc1c7d4b26d2861b9cee9857eeebc0078e21b5b7507ec60def9a5e580ad69b SHA512 d4c80aaf1f5a90c58b4bb61073f4455bf46b0c9d1fca2c75603117edc6a421983a657f729b3bc02a67ad65346622611d47ae64bc0c13de9ba4752383055f56eb +DIST corfu-2.7.gh.tar.gz 53857 BLAKE2B b2448cb9f11cda128669b5a9e16759a0c61218f97619c6205dacb30e18c4c6dd43dc264d8d73e46ddd21bca8959d763fc12e5d6c0dd78e00863056789667b89a SHA512 3262295093a6dd56f4fb540b749b326b193b05c14639d05b80c3da83b52ca04c090795d72625a045c83d480f2769936173d1143aa8b534b3c25e36984be7677f diff --git a/app-emacs/corfu/corfu-2.7.ebuild b/app-emacs/corfu/corfu-2.7.ebuild new file mode 100644 index 000000000000..a0c30e3c81ef --- /dev/null +++ b/app-emacs/corfu/corfu-2.7.ebuild @@ -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 +}
