summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2025-01-14 18:02:32 +0100
committerMaciej Barć <xgqt@gentoo.org>2025-01-14 18:07:19 +0100
commit75d96acccad873f06b79a34402f0bce68c1c941d (patch)
tree848a3d62508a93f6a3f59c1cbd531af5ecc37711 /app-emacs/cask
parentapp-emacs/cask: bump to 0.9.0 (diff)
downloadgentoo-75d96acccad873f06b79a34402f0bce68c1c941d.tar.gz
gentoo-75d96acccad873f06b79a34402f0bce68c1c941d.tar.bz2
gentoo-75d96acccad873f06b79a34402f0bce68c1c941d.zip
app-emacs/cask: drop old 0.8.0
Closes: https://bugs.gentoo.org/947927 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/cask')
-rw-r--r--app-emacs/cask/files/cask-bin-launcher-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emacs/cask/files/cask-bin-launcher-fix.patch b/app-emacs/cask/files/cask-bin-launcher-fix.patch
deleted file mode 100644
index 704d284a13dc..000000000000
--- a/app-emacs/cask/files/cask-bin-launcher-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/bin/cask b/bin/cask
-index 55d4d86..37a5c9c 100755
---- a/bin/cask
-+++ b/bin/cask
-@@ -39,17 +39,7 @@ case $subcommand in
- *)
- WHICH=${WHICH:-which}
- READLINK=$($WHICH readlink || true)
-- if [ "$(uname || true)" == "Darwin" ] ; then
-- READLINK=
-- fi
-- READLINK=${READLINK:-$($WHICH greadlink || true)}
-- if [ ! -z "$READLINK" ] ; then
-- SRCDIR__=$($READLINK -f "$CASK")
-- else
-- SRCDIR__=$(python -c "import os, sys; print(os.path.realpath(sys.argv[1]))" "$CASK")
-- fi
-- SRCDIR_=$(dirname "$SRCDIR__")
-- SRCDIR=$(dirname "$SRCDIR_")
-- "$EMACS" -Q --script "$SRCDIR/cask-cli.el" -- $subcommand "$@"
-+ SRCDIR="@SITELISP@"
-+ "$EMACS" -q --script "$SRCDIR/cask-cli.el" -- $subcommand "$@"
- ;;
- esac