From cd86a85d66f2c7d536e203ab8399003f296b245e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sat, 25 Apr 2026 18:05:28 +0200 Subject: [PATCH] app-emacs/helm: bump to 4.0.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- app-emacs/helm/Manifest | 1 + app-emacs/helm/helm-4.0.7.ebuild | 47 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 app-emacs/helm/helm-4.0.7.ebuild diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest index 98b4f3e0e01b8..8d2b54a367c13 100644 --- a/app-emacs/helm/Manifest +++ b/app-emacs/helm/Manifest @@ -1 +1,2 @@ DIST helm-4.0.6.tar.gz 1948150 BLAKE2B 057a11e2979ad8e1d436db00246e434a29206de134dc3d0c86acd610f3a3c004eabe1da9e62b7661fddceec802ee3971a4b7ff872e1e9f6d1a205d4c4f8d2981 SHA512 8c1f761308202003319b6f3967759f9cce0220a86e003e1cfd11041764ec5377259422b01906ea030c22f407d9fdb2028decb5a3d3f7881df30d4fe140281265 +DIST helm-4.0.7.gh.tar.gz 1952019 BLAKE2B 7b2ee3a201b0f105eef460b66ded81beebc108d714d8040564ac9f9b7b015d400f7d23a2bd9480aa6c32fc339a8bebc24448eef68eeb8873cf0756f48d8cd455 SHA512 66797158a7e78fef4ce00607138b9097ab982aa288e630d8c0d6fccf3f1f086395d56129dc049c987ae42f401fb543d91fe41812658b15e771408cfd50c18b71 diff --git a/app-emacs/helm/helm-4.0.7.ebuild b/app-emacs/helm/helm-4.0.7.ebuild new file mode 100644 index 0000000000000..91788622e7b72 --- /dev/null +++ b/app-emacs/helm/helm-4.0.7.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=9 + +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}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/async-1.9.9 + >=app-emacs/wfnames-1.2 +" +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 +}