commit: 8d1fc9305f408ce8d0e6a0bd51538d1651856302 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Sep 9 20:22:24 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Sep 9 21:26:22 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d1fc930
app-emacs/helm: bump to 4.0.6 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/helm/Manifest | 1 + app-emacs/helm/helm-4.0.6.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest index 7ea2e5767744..6ae31ed81fbf 100644 --- a/app-emacs/helm/Manifest +++ b/app-emacs/helm/Manifest @@ -1,2 +1,3 @@ DIST helm-4.0.4.tar.gz 1941252 BLAKE2B ee9fd027fcb4ba5d78e1d78e2e5f82daaf56b7a08af8e6bcdcd13d20479a4cc5393e70508f076dbcce5819cdad6a14a5fab688f9c30537c270cae960fb1aa28b SHA512 15b5f819a54fb6027a4c037034362273a36273cc49138545242da94d15356b164c1e7029295c9ce6b4e02db993c2dc0895f385a45529d7d60060aa97dfe8c813 DIST helm-4.0.5.tar.gz 1947087 BLAKE2B df5515661d3e81a634518c41bd6166e044343597272233d7a6516f4ff03b7609e64f8e47d8c3c057a85266e28081a3d44a1e22d4ec2e0bb3c62cf677abd78595 SHA512 2d73a3e41eefeb3ba5b1f24be77609cf9c1fe51fb8dc65214cc08baeddc911854f9eb3067e4425dda8731d35620fb27291de59774e02326b6d245c317d7545d4 +DIST helm-4.0.6.tar.gz 1948150 BLAKE2B 057a11e2979ad8e1d436db00246e434a29206de134dc3d0c86acd610f3a3c004eabe1da9e62b7661fddceec802ee3971a4b7ff872e1e9f6d1a205d4c4f8d2981 SHA512 8c1f761308202003319b6f3967759f9cce0220a86e003e1cfd11041764ec5377259422b01906ea030c22f407d9fdb2028decb5a3d3f7881df30d4fe140281265 diff --git a/app-emacs/helm/helm-4.0.6.ebuild b/app-emacs/helm/helm-4.0.6.ebuild new file mode 100644 index 000000000000..35caef13447c --- /dev/null +++ b/app-emacs/helm/helm-4.0.6.ebuild @@ -0,0 +1,47 @@ +# Copyright 2019-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Emacs incremental completion and selection narrowing framework" +HOMEPAGE="https://emacs-helm.github.io/helm/ + https://github.com/emacs-helm/helm/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/emacs-helm/${PN}" +else + SRC_URI="https://github.com/emacs-helm/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/async + app-emacs/wfnames +" +BDEPEND=" + ${RDEPEND} +" + +PATCHES=( "${FILESDIR}/${PN}-3.8.8-no-autoload-check.patch" ) + +DOCS=( NEWS.org README.md ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +} + +src_install() { + elisp_src_install + dobin ./emacs-helm.sh +}
