diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-07-04 14:45:24 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-07-04 14:45:24 +0200 |
commit | 6baf2ae8d8f2789b86d194edfe7d3bba35b41119 (patch) | |
tree | 6006231afb8013b141632af396f8cc8ee4d7ac90 /app-emacs/helm/files | |
parent | app-emacs/helm: Don't check for autoload file in emacs-helm.sh (diff) | |
download | gentoo-6baf2ae8d8f2789b86d194edfe7d3bba35b41119.tar.gz gentoo-6baf2ae8d8f2789b86d194edfe7d3bba35b41119.tar.bz2 gentoo-6baf2ae8d8f2789b86d194edfe7d3bba35b41119.zip |
app-emacs/helm: Version bump to 3.8.0
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/helm/files')
-rw-r--r-- | app-emacs/helm/files/helm-3.8.0-no-autoload-check.patch | 24 |
1 files changed, 24 insertions, 0 deletions
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 new file mode 100644 index 000000000000..4b415088dcc6 --- /dev/null +++ b/app-emacs/helm/files/helm-3.8.0-no-autoload-check.patch @@ -0,0 +1,24 @@ +https://bugs.gentoo.org/800177 + +--- helm-3.8.0/emacs-helm.sh ++++ helm-3.8.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=$(ls -l "$0" | awk '{print $11}') +-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 |