Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/
Date: Wed, 06 Jul 2022 09:45:25
Message-Id: 1657100719.27f9e8f75cdd028f622343658bb908d5979fee81.xgqt@gentoo
1 commit: 27f9e8f75cdd028f622343658bb908d5979fee81
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 6 09:41:16 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 6 09:45:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f9e8f7
7
8 app-emacs/helm: bump to 3.8.6
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/helm/Manifest | 1 +
13 app-emacs/helm/helm-3.8.6.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest
17 index 68afc72c395e..981c9b88d04e 100644
18 --- a/app-emacs/helm/Manifest
19 +++ b/app-emacs/helm/Manifest
20 @@ -1,2 +1,3 @@
21 DIST helm-3.8.4.tar.gz 2346120 BLAKE2B 2f554a6a3fc3a42ba2761c267d085ad1e6679f4913bc19cdbbff11130922d93d2fbe75bcae8230748c39148b6e42d45d4c2c711f731ebd4a1984c5927d93d290 SHA512 011cc4eb79a0a6916404428b9f645e4401b8a0b8b473bec88ac4211d4157b78cc673922c1b74dc93d60cf036135a67bd9c174198b63edd63a6d26a40ba9c1b9d
22 DIST helm-3.8.5.tar.gz 2349290 BLAKE2B 84f0c15c2a9f492246defdf9496e8dcc5265b0c60b50ccaaa3b9f6731285a667da919da7fec80d77a4fd11bc83d9f4ae4c0910e31423b58afbdf00d51b070295 SHA512 af727553c29c9fa0ba6eb6a73b25d62855ea4413eebc57baf3ed94be6a0240e4c558193c898430dc21132ba5e32ead584514910bf98b3b8d82adf7828f953652
23 +DIST helm-3.8.6.tar.gz 2356253 BLAKE2B 62b9af26888526f54726468e04677c401c5e828e588cb6f2c005b9ce9d84935c184b536a97a82e4e6c08c3523a10a32f9348d243d2545c17c9480ad004d92d10 SHA512 71342f347aa5cf8bd3e1990c8633d908e6a5fe66e051554aa2f554fba5d63b2623fe2b6b07540473b481986b1d5d27cb2d8b06f127e727aa8d373bc045d0a602
24
25 diff --git a/app-emacs/helm/helm-3.8.6.ebuild b/app-emacs/helm/helm-3.8.6.ebuild
26 new file mode 100644
27 index 000000000000..68aff2bea3b6
28 --- /dev/null
29 +++ b/app-emacs/helm/helm-3.8.6.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 2019-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit elisp
37 +
38 +DESCRIPTION="Emacs incremental completion and selection narrowing framework"
39 +HOMEPAGE="https://emacs-helm.github.io/helm/"
40 +SRC_URI="https://github.com/emacs-helm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="amd64 x86"
45 +
46 +RDEPEND="app-emacs/async
47 + app-emacs/popup"
48 +BDEPEND="${RDEPEND}"
49 +
50 +PATCHES="${FILESDIR}/${PN}-3.8.0-no-autoload-check.patch"
51 +SITEFILE="50${PN}-gentoo.el"
52 +
53 +src_compile() {
54 + elisp-compile *.el
55 + elisp-make-autoload-file
56 +}
57 +
58 +src_install() {
59 + elisp_src_install
60 + dobin emacs-helm.sh
61 +}