Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/, app-emacs/helm/files/
Date: Sun, 04 Jul 2021 12:46:05
Message-Id: 1625402724.6baf2ae8d8f2789b86d194edfe7d3bba35b41119.ulm@gentoo
1 commit: 6baf2ae8d8f2789b86d194edfe7d3bba35b41119
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 12:45:24 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 12:45:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6baf2ae8
7
8 app-emacs/helm: Version bump to 3.8.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/helm/Manifest | 1 +
14 .../helm/files/helm-3.8.0-no-autoload-check.patch | 24 +++++++++++++++++
15 app-emacs/helm/helm-3.8.0.ebuild | 31 ++++++++++++++++++++++
16 3 files changed, 56 insertions(+)
17
18 diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest
19 index a9d7bbb9a01..aa4ada9dc40 100644
20 --- a/app-emacs/helm/Manifest
21 +++ b/app-emacs/helm/Manifest
22 @@ -1,2 +1,3 @@
23 DIST helm-3.2.tar.gz 2285972 BLAKE2B b5385b805825d89ed87ba438ce830ce1e694cf842db590576b0ceaa2c110f5d0853b24211fdeebb77394c5ecca8460bcd52fe58240233ea10993504030328e9e SHA512 006e53f1984d38fa6305830179bc4ef04fa3007effa07685ddf479c1fbca547b6f8e99dd370f5653d57b2f8e519a54948a4730a0fdf9af8574cbfa27c09662d5
24 DIST helm-3.6.0.tar.gz 2302677 BLAKE2B e9a83a1a4f46c1256090ff458ffc3cb158aaa320a067fb1474c9f62bd0cceaf98c53191790113c8af228d8a47fc7d2585a528ffed3e6e06030a4308f9c65e095 SHA512 1cfaf5cdef9203bb92b80c684b21ec7ca92df00aa2e82815e8f39c623648232405273fb272244d7d2b2756f4699f82f93e9a669a13a71da9410f0c0f9df30393
25 +DIST helm-3.8.0.tar.gz 3943168 BLAKE2B cee9ed8eafdf01cb2109dcf5289522f4a0d9db9a8626097a1ffc3bdeaee792b072b7b27e635ef360815a354c9796b55fc4b3921784e2fd0d655387507df208b6 SHA512 0aec3d4270205c61cabc991dd39d5bac3b10e827f362819e9fb85880985ce2c7e7c7b8f73d2f0cde5b5c168d4b9857e0379f1e4ca9395dbd8f083c1a707ad3f2
26
27 diff --git a/app-emacs/helm/files/helm-3.8.0-no-autoload-check.patch b/app-emacs/helm/files/helm-3.8.0-no-autoload-check.patch
28 new file mode 100644
29 index 00000000000..4b415088dcc
30 --- /dev/null
31 +++ b/app-emacs/helm/files/helm-3.8.0-no-autoload-check.patch
32 @@ -0,0 +1,24 @@
33 +https://bugs.gentoo.org/800177
34 +
35 +--- helm-3.8.0/emacs-helm.sh
36 ++++ helm-3.8.0/emacs-helm.sh
37 +@@ -137,19 +137,6 @@
38 +
39 + cd "${0%/*}" || exit 1
40 +
41 +-# Check if autoload file exists.
42 +-# It may be in a different directory if emacs-helm.sh is a symlink.
43 +-TRUENAME=$(ls -l "$0" | awk '{print $11}')
44 +-if [ ! -z "$TRUENAME" ]; then
45 +- AUTO_FILE="${TRUENAME%/*}/helm-autoloads.el"
46 +-else
47 +- AUTO_FILE="helm-autoloads.el"
48 +-fi
49 +-if [ ! -e "$AUTO_FILE" ]; then
50 +- echo No autoloads found, please run make first to generate autoload file
51 +- exit 1
52 +-fi
53 +-
54 +
55 + cat > $CONF_FILE <<EOF
56 + (setq initial-scratch-message (concat initial-scratch-message
57
58 diff --git a/app-emacs/helm/helm-3.8.0.ebuild b/app-emacs/helm/helm-3.8.0.ebuild
59 new file mode 100644
60 index 00000000000..6103dff04df
61 --- /dev/null
62 +++ b/app-emacs/helm/helm-3.8.0.ebuild
63 @@ -0,0 +1,31 @@
64 +# Copyright 2019-2021 Gentoo Authors
65 +# Distributed under the terms of the GNU General Public License v2
66 +
67 +EAPI=8
68 +
69 +inherit elisp
70 +
71 +DESCRIPTION="Emacs incremental completion and selection narrowing framework"
72 +HOMEPAGE="https://emacs-helm.github.io/helm/"
73 +SRC_URI="https://github.com/emacs-helm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
74 +
75 +LICENSE="GPL-3+"
76 +SLOT="0"
77 +KEYWORDS="~amd64 ~x86"
78 +
79 +RDEPEND="app-emacs/async
80 + app-emacs/popup"
81 +BDEPEND="${RDEPEND}"
82 +
83 +PATCHES="${FILESDIR}/${P}-no-autoload-check.patch"
84 +SITEFILE="50${PN}-gentoo.el"
85 +
86 +src_compile() {
87 + elisp-compile *.el
88 + elisp-make-autoload-file
89 +}
90 +
91 +src_install() {
92 + elisp_src_install
93 + dobin emacs-helm.sh
94 +}