OBS User unknown 2008-03-19 01:03:27 +00:00 committed by Git OBS Bridge
parent 7524195389
commit 7403848d57
5 changed files with 59 additions and 24 deletions

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

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

View File

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

View File

@ -4,12 +4,12 @@
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ mandir = $(prefix)/man
docdir = $(prefix)/share/doc
# DESTDIR=
@@ -32,7 +32,7 @@ RPM_VERLIST = $(filter-out g% dirty,$(su
RPM_VERSION = $(word 1,$(RPM_VERLIST))
RPM_RELEASE = $(word 2,$(RPM_VERLIST))$(if $(WTDIRTY),.dirty)
-LDLIBS = -lcurses
+LDLIBS = -lncurses
CFLAGS = -Wall -O2
-LDLIBS ?= -lcurses
+LDLIBS ?= -lncurses
CFLAGS ?= -Wall -O2
DFLAGS = -g -DDEBUG -Werror
PROGS = tig

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Mon Mar 17 09:56:07 CET 2008 - bwalle@suse.de
- update to 0.10
o documentation improvements
o bugfixes
o needed updates to work better with git
o On startup, tig will now attempt to first read a system-wide
configuration file before loading the user specific
configuration file.
o Cherry picking from inside tig has been generalized
making it possible to wire external commands, which can
access information about the current commit, to a keybinding.
o option parsing has been changed to be more similar to gitk's.
-------------------------------------------------------------------
Sat Sep 22 09:17:01 CEST 2007 - bwalle@suse.de
- update to 0.9 (no upstream ChangeLog)
-------------------------------------------------------------------
Sun May 13 21:35:04 CEST 2007 - bwalle@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package tig (Version 0.6)
# spec file for package tig (Version 0.10)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@ -10,29 +10,30 @@
# norootforbuild
Name: tig
License: GNU General Public License (GPL)
License: GPL v2 or later
Group: Development/Tools/Version Control
BuildRequires: ncurses-devel
Requires: git-core
Autoreqprov: on
Version: 0.6
AutoReqProv: on
Version: 0.10
Release: 1
Summary: A Program to Generate Tag Files for Use with vi and Other Editors
URL: http://jonas.nitro.dk/tig/
Summary: An ncurses-based text-mode interface for git
Url: http://jonas.nitro.dk/tig/
Source0: http://jonas.nitro.dk/tig/releases/%{name}-%{version}.tar.gz
Patch0: tig-fix-build.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Tig is a git repository browser that additionally can act as a pager
for output rom various git commands.
Tig is an ncurses-based text-mode interface for git. It allows you to
browse changes in a git repository and can additionally act as a pager
for output of various git commands. When used as a pager, it will
display input from stdin and colorize it.
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.
When browsing repositories, tig uses the underlying git commands to
present the user with various views, such as summarized commit log and
showing the commit with the log message, diffstat, and the diff.
@ -69,5 +70,19 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man5/*
%changelog
* Sun May 13 2007 - bwalle@suse.de
* Mon Mar 17 2008 bwalle@suse.de
- update to 0.10
o documentation improvements
o bugfixes
o needed updates to work better with git
o On startup, tig will now attempt to first read a system-wide
configuration file before loading the user specific
configuration file.
o Cherry picking from inside tig has been generalized
making it possible to wire external commands, which can
access information about the current commit, to a keybinding.
o option parsing has been changed to be more similar to gitk's.
* Sat Sep 22 2007 bwalle@suse.de
- update to 0.9 (no upstream ChangeLog)
* Sun May 13 2007 bwalle@suse.de
- initial package