* [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/files/, app-emacs/helm/
@ 2019-05-04 13:33 Ulrich Müller
0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Müller @ 2019-05-04 13:33 UTC (permalink / raw
To: gentoo-commits
commit: 2b454725d9d5795f06be5713428ee70516475d2d
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 12:51:59 2019 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat May 4 13:33:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b454725
app-emacs/helm: Initial import.
This is the successor to app-emacs/anything, according to
https://www.emacswiki.org/emacs/Anything.
Ebuild contributed by me.
Package-Manager: Portage-2.3.65, Repoman-2.3.12
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-emacs/helm/Manifest | 1 +
app-emacs/helm/files/50helm-gentoo.el | 2 ++
app-emacs/helm/helm-3.2.ebuild | 31 +++++++++++++++++++++++++++++++
app-emacs/helm/metadata.xml | 20 ++++++++++++++++++++
4 files changed, 54 insertions(+)
diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest
new file mode 100644
index 00000000000..c4d109907e6
--- /dev/null
+++ b/app-emacs/helm/Manifest
@@ -0,0 +1 @@
+DIST helm-3.2.tar.gz 2285972 BLAKE2B b5385b805825d89ed87ba438ce830ce1e694cf842db590576b0ceaa2c110f5d0853b24211fdeebb77394c5ecca8460bcd52fe58240233ea10993504030328e9e SHA512 006e53f1984d38fa6305830179bc4ef04fa3007effa07685ddf479c1fbca547b6f8e99dd370f5653d57b2f8e519a54948a4730a0fdf9af8574cbfa27c09662d5
diff --git a/app-emacs/helm/files/50helm-gentoo.el b/app-emacs/helm/files/50helm-gentoo.el
new file mode 100644
index 00000000000..2eeea803658
--- /dev/null
+++ b/app-emacs/helm/files/50helm-gentoo.el
@@ -0,0 +1,2 @@
+(add-to-list 'load-path "@SITELISP@")
+(load "@SITELISP@/helm-autoloads" nil t)
diff --git a/app-emacs/helm/helm-3.2.ebuild b/app-emacs/helm/helm-3.2.ebuild
new file mode 100644
index 00000000000..f852381e535
--- /dev/null
+++ b/app-emacs/helm/helm-3.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="Emacs incremental completion and selection narrowing framework"
+HOMEPAGE="https://emacs-helm.github.io/helm/"
+SRC_URI="https://github.com/emacs-helm/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="app-emacs/async
+ app-emacs/popup"
+BDEPEND="${RDEPEND}"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp-compile *.el
+ elisp-make-autoload-file
+}
+
+src_install() {
+ elisp_src_install
+ exeinto "${SITEETC}/${PN}"
+ doexe emacs-helm.sh
+}
diff --git a/app-emacs/helm/metadata.xml b/app-emacs/helm/metadata.xml
new file mode 100644
index 00000000000..a17d69b2f15
--- /dev/null
+++ b/app-emacs/helm/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+ <email>gnu-emacs@gentoo.org</email>
+ <name>Gentoo GNU Emacs project</name>
+</maintainer>
+<longdescription>
+ Helm is an Emacs framework for incremental completions and narrowing
+ selections. It provides an easy-to-use API for developers wishing to
+ build their own Helm applications in Emacs, powerful search tools and
+ dozens of already built-in commands providing completion to almost
+ everything. It is a must-have for anyone using Emacs as a main work
+ environment. Helm has been widely adopted by many Emacs power-users.
+</longdescription>
+<stabilize-allarches/>
+<upstream>
+ <remote-id type="github">emacs-helm/helm</remote-id>
+</upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/files/, app-emacs/helm/
@ 2021-07-04 12:46 Ulrich Müller
0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Müller @ 2021-07-04 12:46 UTC (permalink / raw
To: gentoo-commits
commit: 1162299d4546ec32ef26bf78816989761b591f4c
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 3 17:16:15 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jul 4 12:39:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1162299d
app-emacs/helm: Don't check for autoload file in emacs-helm.sh
Closes: https://bugs.gentoo.org/800177
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
.../helm/files/helm-3.6.0-no-autoload-check.patch | 24 ++++++++++++++++++++++
.../{helm-3.6.0.ebuild => helm-3.6.0-r1.ebuild} | 6 +++---
2 files changed, 27 insertions(+), 3 deletions(-)
diff --git a/app-emacs/helm/files/helm-3.6.0-no-autoload-check.patch b/app-emacs/helm/files/helm-3.6.0-no-autoload-check.patch
new file mode 100644
index 00000000000..463cc8ccbac
--- /dev/null
+++ b/app-emacs/helm/files/helm-3.6.0-no-autoload-check.patch
@@ -0,0 +1,24 @@
+https://bugs.gentoo.org/800177
+
+--- helm-3.6.0/emacs-helm.sh
++++ helm-3.6.0/emacs-helm.sh
+@@ -137,19 +137,6 @@
+
+ cd "${0%/*}" || exit 1
+
+-# Check if autoload file exists.
+-# It may be in a different directory if emacs-helm.sh is a symlink.
+-TRUENAME=$(find . -samefile "$0" -printf "%l")
+-if [ ! -z "$TRUENAME" ]; then
+- AUTO_FILE="${TRUENAME%/*}/helm-autoloads.el"
+-else
+- AUTO_FILE="helm-autoloads.el"
+-fi
+-if [ ! -e "$AUTO_FILE" ]; then
+- echo No autoloads found, please run make first to generate autoload file
+- exit 1
+-fi
+-
+
+ cat > $CONF_FILE <<EOF
+ (setq initial-scratch-message (concat initial-scratch-message
diff --git a/app-emacs/helm/helm-3.6.0.ebuild b/app-emacs/helm/helm-3.6.0-r1.ebuild
similarity index 83%
rename from app-emacs/helm/helm-3.6.0.ebuild
rename to app-emacs/helm/helm-3.6.0-r1.ebuild
index f852381e535..2a631cd5686 100644
--- a/app-emacs/helm/helm-3.6.0.ebuild
+++ b/app-emacs/helm/helm-3.6.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,6 +17,7 @@ RDEPEND="app-emacs/async
app-emacs/popup"
BDEPEND="${RDEPEND}"
+PATCHES="${FILESDIR}/${P}-no-autoload-check.patch"
SITEFILE="50${PN}-gentoo.el"
src_compile() {
@@ -26,6 +27,5 @@ src_compile() {
src_install() {
elisp_src_install
- exeinto "${SITEETC}/${PN}"
- doexe emacs-helm.sh
+ dobin emacs-helm.sh
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/files/, app-emacs/helm/
@ 2022-10-01 14:24 Maciej Barć
0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2022-10-01 14:24 UTC (permalink / raw
To: gentoo-commits
commit: ea00025d5c959514a745e3ed988803b879be4040
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 1 14:09:47 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Oct 1 14:09:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea00025d
app-emacs/helm: bump to 3.8.8
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/helm/Manifest | 1 +
.../helm/files/helm-3.8.8-no-autoload-check.patch | 24 ++++++++++++++
app-emacs/helm/helm-3.8.8.ebuild | 37 ++++++++++++++++++++++
3 files changed, 62 insertions(+)
diff --git a/app-emacs/helm/Manifest b/app-emacs/helm/Manifest
index 9d7e3fa55c69..bf481af47eea 100644
--- a/app-emacs/helm/Manifest
+++ b/app-emacs/helm/Manifest
@@ -1,3 +1,4 @@
DIST helm-3.8.5.tar.gz 2349290 BLAKE2B 84f0c15c2a9f492246defdf9496e8dcc5265b0c60b50ccaaa3b9f6731285a667da919da7fec80d77a4fd11bc83d9f4ae4c0910e31423b58afbdf00d51b070295 SHA512 af727553c29c9fa0ba6eb6a73b25d62855ea4413eebc57baf3ed94be6a0240e4c558193c898430dc21132ba5e32ead584514910bf98b3b8d82adf7828f953652
DIST helm-3.8.6.tar.gz 2356253 BLAKE2B 62b9af26888526f54726468e04677c401c5e828e588cb6f2c005b9ce9d84935c184b536a97a82e4e6c08c3523a10a32f9348d243d2545c17c9480ad004d92d10 SHA512 71342f347aa5cf8bd3e1990c8633d908e6a5fe66e051554aa2f554fba5d63b2623fe2b6b07540473b481986b1d5d27cb2d8b06f127e727aa8d373bc045d0a602
DIST helm-3.8.7.tar.gz 2358726 BLAKE2B a76c7c6658997f4d5114e383e1ca728df923b0216c66c9d4c2f9d1d656d06990299ebc79f4ad9c50da1dd133f8111c947e6f238324fbe91c5af5a1ab02aa1c7f SHA512 d7356e407d1ef463e62e7d0f2c3b0f90d150744fa020638740226a3e04e043be0e551effd2c17cd2e8c0d82d70351cb5268a89eca2c9ef6355fcce65a445f9bc
+DIST helm-3.8.8.tar.gz 2362007 BLAKE2B 80f854bc38e51de62aa6d9a35cdeff4ac4c193908dc19361ad10ad419585d30a2fd94be1d4d410b69634012e4c01045d4dd2f55c5b4ac8da960d7f7b8d4eed08 SHA512 a1fca373d2c64771aabb3ba396e0d65b3434f0a413bab1e61761c16e9dcf274ceb94e258ef90f4ddd2b150a09606255ea61186d2e4e69ad2600fc40369c693c7
diff --git a/app-emacs/helm/files/helm-3.8.8-no-autoload-check.patch b/app-emacs/helm/files/helm-3.8.8-no-autoload-check.patch
new file mode 100644
index 000000000000..01ef1a169686
--- /dev/null
+++ b/app-emacs/helm/files/helm-3.8.8-no-autoload-check.patch
@@ -0,0 +1,24 @@
+https://bugs.gentoo.org/800177
+
+--- a/emacs-helm.sh
++++ b/emacs-helm.sh
+@@ -137,19 +137,6 @@ LOAD_PATH=$($EMACS -q -batch --eval "(prin1 load-path)")
+
+ cd "${0%/*}" || exit 1
+
+-# Check if autoload file exists.
+-# It may be in a different directory if emacs-helm.sh is a symlink.
+-TRUENAME=$(find "${0%/*}" -path "$0" -printf "%l")
+-if [ -n "$TRUENAME" ]; then
+- AUTO_FILE="${TRUENAME%/*}/helm-autoloads.el"
+-else
+- AUTO_FILE="helm-autoloads.el"
+-fi
+-if [ ! -e "$AUTO_FILE" ]; then
+- echo No autoloads found, please run make first to generate autoload file
+- exit 1
+-fi
+-
+
+ cat > $CONF_FILE <<EOF
+ (setq initial-scratch-message (concat initial-scratch-message
diff --git a/app-emacs/helm/helm-3.8.8.ebuild b/app-emacs/helm/helm-3.8.8.ebuild
new file mode 100644
index 000000000000..a99c12c1de3c
--- /dev/null
+++ b/app-emacs/helm/helm-3.8.8.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2019-2022 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/"
+SRC_URI="https://github.com/emacs-helm/${PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ app-emacs/async
+ app-emacs/popup
+"
+BDEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}"/${P}-no-autoload-check.patch )
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp-compile *.el
+ elisp-make-autoload-file
+}
+
+src_install() {
+ elisp_src_install
+
+ exeinto /usr/bin/
+ doexe emacs-helm.sh
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-10-01 14:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-01 14:24 [gentoo-commits] repo/gentoo:master commit in: app-emacs/helm/files/, app-emacs/helm/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2021-07-04 12:46 Ulrich Müller
2019-05-04 13:33 Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox