SHA256
1
0
forked from pool/fzf
fzf/fzf.spec
OBS User smolsheep 0b27f38e20 Accepting request 1172486 from home:smolsheep:upgrades
- Update to 0.52.0:
  * Added --highlight-line to highlight the whole current line (à
    la set cursorline of Vim)
  * Added color names for selected lines: selected-fg, selected-bg,
    and selected-hl
  * Added click-header event that is triggered when the header
    section is clicked. When the event is triggered,
    $FZF_CLICK_HEADER_COLUMN and $FZF_CLICK_HEADER_LINE are set.
  * Add $FZF_COMPLETION_{DIR,PATH}_OPTS for separately
    customizing the behavior of fuzzy completion
  * Bug fixes and improvements
  * The code was heavily refactored to allow using fzf as a library
    in Go programs. The API is still experimental and subject to
    change.

OBS-URL: https://build.opensuse.org/request/show/1172486
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=116
2024-05-07 15:59:18 +00:00

200 lines
5.9 KiB
RPMSpec

#
# spec file for package fzf
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global _lto_cflags %{nil}
Name: fzf
Version: 0.52.0
Release: 0
Summary: A command-line fuzzy finder
License: MIT
Group: Productivity/File utilities
URL: https://github.com/junegunn/fzf
Source0: https://github.com/junegunn/fzf/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: vendor.tar.zst
BuildRequires: zstd
BuildRequires: golang(API) >= 1.19
%description
fzf is an interactive Unix filter for command-line that can be used with any list; files,
command history, processes, hostnames, bookmarks, git commits, etc.
%package tmux
Summary: Tmux integration for fzf
Group: Productivity/File utilities
Supplements: (fzf and tmux)
BuildArch: noarch
%description tmux
Tmux integration for fzf. Includes a wrapper script, fzf-tmux, that opens your list in a
separate tmux pane.
%package bash-integration
Summary: Bash completion for fzf
Group: Productivity/File utilities
Requires: bash-completion
Requires: fzf
Enhances: (fzf and bash-completion)
Provides: fzf-bash-completion = %{version}-%{release}
Obsoletes: fzf-bash-completion < %{version}-%{release}
BuildArch: noarch
%description bash-integration
Bash shell completions for fzf
%package fish-integration
Summary: Fish completion for fzf
Group: Productivity/File utilities
Requires: fish
Requires: fzf
Enhances: (fzf and fish)
Provides: fzf-fish-completion = %{version}-%{release}
Obsoletes: fzf-fish-completion < %{version}-%{release}
BuildArch: noarch
%description fish-integration
fish shell completions for fzf
To enable it, ensure you have a file ~/.config/fish/functions/fish_user_key_bindings.fish
which contains:
function fish_user_key_bindings
fzf_key_bindings
end
(or append fzf_key_bindings to the fish_user_key_bindings function if the file already exists)
%package zsh-integration
Summary: ZSH completion for fzf
Group: Productivity/File utilities
Requires: fzf
Requires: zsh
Enhances: (fzf and zsh)
Provides: fzf-zsh-completion = %{version}-%{release}
Obsoletes: fzf-zsh-completion < %{version}-%{release}
BuildArch: noarch
%description zsh-integration
zsh shell completions for fzf
%define vimplugin_dir %{_datadir}/vim/site
%package -n vim-fzf
Summary: Vim plugin for fzf
Group: Productivity/File utilities
Requires: (vim or neovim)
Enhances: (fzf and zsh)
BuildArch: noarch
%description -n vim-fzf
Plugin for vim allowing use of fzf.
%prep
%autosetup -p1 -a1
# fix E: env-script-interpreter
sed -i 's,#!%{_bindir}/env ,#!/bin/,' ./bin/fzf-tmux
%build
export FZF_VERSION=%{version} FZF_REVISION=tarball
export GOCACHE=$(readlink -f vendor/)
%ifarch ppc64
BUILDMOD=""
%else
BUILDMOD="-buildmode=pie"
%endif
export RPM_OPT_FLAGS="%{optflags}"
go build -v -x -mod=vendor $BUILDMOD -a -ldflags "-s -X main.revision=%{version}"
%install
install -Dm755 fzf %{buildroot}%{_bindir}/fzf
install -Dm755 bin/fzf-tmux %{buildroot}%{_bindir}/fzf-tmux
install -Dm644 man/man1/fzf.1 %{buildroot}%{_mandir}/man1/fzf.1
install -Dm644 man/man1/fzf-tmux.1 %{buildroot}%{_mandir}/man1/fzf-tmux.1
# shell completions
# Since 0.48 fzf can generate shell integration scripts, but the
# upstream still promotes "for finer control" availability of the
# real scripts
mkdir -p %{buildroot}%{_datadir}/fzf
cp -p -r shell/ %{buildroot}%{_datadir}/fzf
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
echo 'if [ "${BASH_VERSION-}" ] && [[ $- == *i* ]]; then eval "$(fzf --bash 2>/dev/null)"; fi' > \
%{buildroot}%{_sysconfdir}/profile.d/fzf-bash.sh
install -Dm0644 shell/completion.zsh \
%{buildroot}%{_sysconfdir}/zsh_completion.d/fzf-key-bindings
install -Dm0644 shell/key-bindings.zsh \
%{buildroot}%{_datadir}/zsh/site-functions/_fzf
install -Dm0644 shell/key-bindings.fish \
%{buildroot}%{_datadir}/fish/vendor_functions.d/fzf_key_bindings.fish
# vim plugin
install -D -m0644 -t %{buildroot}%{vimplugin_dir}/doc doc/*
install -D -m0644 -t %{buildroot}%{vimplugin_dir}/plugin plugin/*
%check
export SHELL=/bin/sh GOOS=
export GOCACHE=$(readlink -f vendor/)
%ifarch ppc64
BUILDMOD=""
%else
BUILDMOD="-buildmode=pie"
%endif
export CGO_CFLAGS="%{optflags}"
export CGO_CXXFLAGS="%{optflags}"
export CGO_CPPFLAGS="%{optflags}"
go test -v -x -mod=vendor ${BUILDMOD} -a \
-ldflags "-X main.revision=%{version}" \
github.com/junegunn/fzf/src \
github.com/junegunn/fzf/src/algo \
github.com/junegunn/fzf/src/tui \
github.com/junegunn/fzf/src/util
%files
%license LICENSE
%doc README.md
%{_bindir}/fzf
%{_mandir}/man1/fzf.1%{?ext_man}
%dir %{_datadir}/fzf
%{_datadir}/fzf/shell
%files tmux
%{_bindir}/fzf-tmux
%{_mandir}/man1/fzf-tmux.1%{?ext_man}
%files bash-integration
%config %{_sysconfdir}/profile.d/fzf-bash.sh
%files fish-integration
%dir %{_datadir}/fish
%dir %{_datadir}/fish/vendor_functions.d
%{_datadir}/fish/vendor_functions.d/fzf_key_bindings.fish
%files zsh-integration
%{_datadir}/zsh
%dir %{_sysconfdir}/zsh_completion.d
%config %{_sysconfdir}/zsh_completion.d/fzf-key-bindings
%files -n vim-fzf
%doc README-VIM.md
%dir %{_datadir}/vim
%dir %{vimplugin_dir}
%{vimplugin_dir}/doc
%{vimplugin_dir}/plugin
%changelog