diff options
author | Wynn Wolf Arbor | 2020-04-26 14:48:09 +0200 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-04-26 14:48:09 +0200 |
commit | 0c378a92d08608d3e63bf205eafc9de54e01de04 (patch) | |
tree | 427ba6c24a0ea053216b01008a2ccdc7abbc1fc8 /app-shells/fzf/files | |
parent | 428fddad58b7f06e89c212b69712074a55f2925d (diff) | |
download | pramantha-0c378a92d08608d3e63bf205eafc9de54e01de04.tar.gz |
app-shells/fzf: Bump to 0.21.1-r1
Upstream has fixed their Makefile in [1], so we can pull that patch in
temporarily and switch over to using make instead of a custom call to go
build.
This commit also cleans up the ebuild a bit.
[1] https://github.com/junegunn/fzf/commit/08c2bcb952a0abbead263dcb002
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Diffstat (limited to '')
-rw-r--r-- | app-shells/fzf/files/fzf-0.21.1-0001-Quote-LDFLAGS-1995.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-shells/fzf/files/fzf-0.21.1-0001-Quote-LDFLAGS-1995.patch b/app-shells/fzf/files/fzf-0.21.1-0001-Quote-LDFLAGS-1995.patch new file mode 100644 index 0000000..290b856 --- /dev/null +++ b/app-shells/fzf/files/fzf-0.21.1-0001-Quote-LDFLAGS-1995.patch @@ -0,0 +1,28 @@ +From 08c2bcb952a0abbead263dcb0026eab58e736e1d Mon Sep 17 00:00:00 2001 +From: Raffaele <1770381+rafspiny@users.noreply.github.com> +Date: Tue, 21 Apr 2020 03:07:39 +0200 +Subject: [PATCH] Quote LDFLAGS (#1995) + +Make sure that `extldflags` is quoted so that LDFLAGS containing spaces won't break the build command. + +Close #1994 +--- + Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index 037b19b..60283d0 100644 +--- a/Makefile ++++ b/Makefile +@@ -6,7 +6,7 @@ ROOT_DIR := $(shell dirname $(MAKEFILE)) + SOURCES := $(wildcard *.go src/*.go src/*/*.go) $(MAKEFILE) + + REVISION := $(shell git log -n 1 --pretty=format:%h -- $(SOURCES)) +-BUILD_FLAGS := -a -ldflags "-X main.revision=$(REVISION) -w -extldflags=$(LDFLAGS)" -tags "$(TAGS)" ++BUILD_FLAGS := -a -ldflags "-X main.revision=$(REVISION) -w '-extldflags=$(LDFLAGS)'" -tags "$(TAGS)" + + BINARY32 := fzf-$(GOOS)_386 + BINARY64 := fzf-$(GOOS)_amd64 +-- +2.26.2 + |