From 01fef35322bcf148a136b2081715fd8ef696eaf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Thu, 20 Feb 2025 19:13:28 +0100 Subject: [PATCH] app-emacs/helm: bump to 4.0.1 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.1.ebuild | 49 ++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 app-emacs/helm/helm-4.0.1.ebuild diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest index 701dd6834baca..fa0d55a5d1f1a 100644 --- a/app-emacs/helm/Manifest +++ b/app-emacs/helm/Manifest @@ -1 +1,2 @@ +DIST helm-4.0.1.tar.gz 1933447 BLAKE2B efbc4640cc3167e734e54474d8da9684fbaa1947d9db7e387e8df4e249d7e26c5b65120391c8fc3bee26c46a546d949833e0f0f64db9cca9b7456914c70b0fdc SHA512 5dae4fbe8cdc7b1cdf5ae4f26e99ca1e63fff0e25c2c4c516dd10d4a97268bcfa918302b6bd25fc46364df60eee80f33341d9fc03327e5c4d817b91d662f171d DIST helm-4.0.tar.gz 2391038 BLAKE2B b3bd0c3736bb20218ed88afda39cebed4853a43915dd9e857d57f459f5531f565435aba19e71a196b808db58d56f54dda1ae9916697f7025055c4b9471df19a1 SHA512 70563293cdd9212ed46bcb13a2dcdb2c669a66314676a34d99102ca517c5e27c6937926c2c063fa1826d7eca4c0c9f61146067d684ca34ac1dacd3d977a0bd77 diff --git a/app-emacs/helm/helm-4.0.1.ebuild b/app-emacs/helm/helm-4.0.1.ebuild new file mode 100644 index 0000000000000..84989e6ddc101 --- /dev/null +++ b/app-emacs/helm/helm-4.0.1.ebuild @@ -0,0 +1,49 @@ +# 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}.git" +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 + + exeinto /usr/bin + doexe ./emacs-helm.sh +}