Improvements: * Update utf8proc to v2.9.0, supporting Unicode 15.1. * Also use lightweight tags in the Refs line of the diff view. (#1235) * Support %(text) in all views with a text column. (#1275) * Use HTTPS for GitHub clone URLs. (#1310[3]) * Move default log view options to tigrc. * Allow to go to stage view without Enter. (#1284) * Add new "prefetch" reference type for refs created by git maintenance (hidden in default config). (#1318) * Show the selected commit in the blame view title window. * Improve the blob view experience. * Clear keybinding from all keymaps (unbind) with bind generic <key> none. Bug fixes: * Fix "dangling pointer" warning. (#1268) * Don't use array size in function arguments. (#1269) * Fix rpmbuild -ta. (#1276) * Initialise struct timezone. (#1291) * Fix NULL dereference at startup. (#1293) * Enforce a blank before view scroll percentage. * Fix refresh-mode periodic not updating branch labels. (#1270) * Fix display non-ascii character. (#1299) * Fix readline echo when stdin is redirected. (#1229) * Fix tig blame --reverse. (#1300) * Fix status view lockup. * Fix untracked changes and chunk staging behaviour in plain stage view. * Reset state variables when selecting a commit with no reference. * Fix parsing of git ls-tree for submodules. (#1282) * Support editing from the pager and the log (-p) views. (#1243) * Autoscroll the pager view while loading. (#1223) OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/tig?expand=0&rev=81
102 lines
3.0 KiB
RPMSpec
102 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package tig
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: tig
|
|
Version: 2.5.9
|
|
Release: 0
|
|
Summary: An ncurses-based text-mode interface for git
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Tools/Version Control
|
|
URL: https://jonas.github.io/tig/
|
|
Source0: https://github.com/jonas/tig/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
|
|
BuildRequires: pkgconfig >= 0.9.0
|
|
BuildRequires: readline-devel >= 6.3
|
|
BuildRequires: pkgconfig(libpcre2-posix)
|
|
BuildRequires: pkgconfig(ncurses)
|
|
Requires: git-core
|
|
|
|
%description
|
|
Tig is a git repository browser that additionally can act as a pager
|
|
for output from various git commands.
|
|
|
|
When browsing repositories, it uses the underlying git commands to
|
|
present the user with various views, such as summarized revision log
|
|
and showing the commit with the log message, diffstat, and the diff.
|
|
|
|
Using it as a pager, it will display input from stdin and colorize it.
|
|
|
|
%package bash-completion
|
|
Summary: Bash completion for %{name}
|
|
Group: Development/Tools/Version Control
|
|
Requires: %{name} = %{version}
|
|
Requires: bash-completion
|
|
Supplements: (%{name} and bash-completion)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
Bash command line completion support for %{name}.
|
|
|
|
%package zsh-completion
|
|
Summary: Zsh completion for %{name}
|
|
Group: Development/Tools/Version Control
|
|
Requires: %{name} = %{version}
|
|
Requires: zsh
|
|
Supplements: (%{name} and zsh)
|
|
BuildArch: noarch
|
|
|
|
%description zsh-completion
|
|
Zsh command line completion support for %{name}.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%configure \
|
|
--with-ncurses \
|
|
--docdir=%{_docdir}
|
|
%make_build
|
|
|
|
%install
|
|
%make_install install-doc-man
|
|
install -Dpm 0644 contrib/tig-completion.bash \
|
|
%{buildroot}%{_datadir}/bash-completion/completions/%{name}
|
|
install -Dpm 0644 contrib/tig-completion.bash \
|
|
%{buildroot}%{_datadir}/zsh/site-functions/%{name}-completion.bash
|
|
install -Dpm 0644 contrib/tig-completion.zsh \
|
|
%{buildroot}%{_datadir}/zsh/site-functions/_%{name}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc NEWS.adoc README.adoc
|
|
%doc contrib/*.tigrc
|
|
%{_bindir}/tig
|
|
%config %{_sysconfdir}/tigrc
|
|
%{_mandir}/man1/tig.1%{?ext_man}
|
|
%{_mandir}/man5/tigrc.5%{?ext_man}
|
|
%{_mandir}/man7/tigmanual.7%{?ext_man}
|
|
|
|
%files bash-completion
|
|
%license COPYING
|
|
%{_datadir}/bash-completion
|
|
|
|
%files zsh-completion
|
|
%license COPYING
|
|
%{_datadir}/zsh
|
|
|
|
%changelog
|