SHA256
1
0
forked from pool/tig

Accepting request 559523 from home:avindra

- tig 2.3.2:
  * Improve how busy loop detection performs on large repos
- tig 2.3.1:
  * Improvements:
    - Restore TTY attributes
    - Handle \n like \r
  * Bug fixes:
    - Add workaround that detects busy loops when Tig loses the
      TTY. This may happen if Tig does not receive the HUP signal
      (e.g. when started with nohup)
    - compatibility with ncurses-5.4 (clipboard support for prompt)
    - tig(1): document correct environment variable
- use macros to simplify build and install steps

OBS-URL: https://build.opensuse.org/request/show/559523
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/tig?expand=0&rev=53
This commit is contained in:
Martin Pluskal 2017-12-23 08:19:25 +00:00 committed by Git OBS Bridge
parent bbdbb3ffae
commit 308f3fe5dd
4 changed files with 24 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:686f0386927904dc6410f0b1a712cb8bd7fff3303f688d7dc43162f4ad16c0ed
size 1080956

3
tig-2.3.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6410e51c6149d76eac3510d04f9a736139f85e7c881646937d009caacf98cff1
size 1083036

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Sat Dec 23 00:46:18 UTC 2017 - avindra@opensuse.org
- tig 2.3.2:
* Improve how busy loop detection performs on large repos
- tig 2.3.1:
* Improvements:
- Restore TTY attributes
- Handle \n like \r
* Bug fixes:
- Add workaround that detects busy loops when Tig loses the
TTY. This may happen if Tig does not receive the HUP signal
(e.g. when started with nohup)
- compatibility with ncurses-5.4 (clipboard support for prompt)
- tig(1): document correct environment variable
- use macros to simplify build and install steps
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 29 21:55:54 UTC 2017 - astieger@suse.com Fri Sep 29 21:55:54 UTC 2017 - astieger@suse.com

View File

@ -17,13 +17,13 @@
Name: tig Name: tig
Version: 2.3.0 Version: 2.3.2
Release: 0 Release: 0
Summary: An ncurses-based text-mode interface for git Summary: An ncurses-based text-mode interface for git
License: GPL-2.0+ License: GPL-2.0+
Group: Development/Tools/Version Control Group: Development/Tools/Version Control
Url: https://jonas.github.io/tig/ Url: https://jonas.github.io/tig/
Source0: https://github.com/jonas/tig/releases/download/tig-%{version}/tig-%{version}.tar.gz Source0: https://github.com/jonas/tig/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
BuildRequires: asciidoc BuildRequires: asciidoc
BuildRequires: bash-completion BuildRequires: bash-completion
BuildRequires: ncurses-devel BuildRequires: ncurses-devel
@ -49,17 +49,15 @@ Using it as a pager, it will display input from stdin and colorize it.
--with-ncurses \ --with-ncurses \
--docdir=%{_docdir} --docdir=%{_docdir}
make %{?_smp_mflags} prefix=%{_prefix} mandir=%{_mandir} make %{?_smp_mflags}
%install %install
make DESTDIR=%{buildroot} prefix="%{_prefix}" mandir="%{_mandir}" install %make_install install-doc-man
make DESTDIR=%{buildroot} prefix="%{_prefix}" mandir="%{_mandir}" install-doc
install -D -m0644 contrib/tig-completion.bash "%{buildroot}%{_sysconfdir}/bash_completion.d/%{name}" install -D -m0644 contrib/tig-completion.bash "%{buildroot}%{_sysconfdir}/bash_completion.d/%{name}"
%files %files
%doc COPYING NEWS.adoc README.adoc %doc COPYING NEWS.adoc README.adoc
%doc contrib/*.tigrc %doc contrib/*.tigrc
%{_docdir}/%{name}/*
%{_bindir}/tig %{_bindir}/tig
%{_mandir}/man1/tig.1%{ext_man} %{_mandir}/man1/tig.1%{ext_man}
%{_mandir}/man5/tigrc.5%{ext_man} %{_mandir}/man5/tigrc.5%{ext_man}