source: projects/specs/trunk/t/tig/tig-vl.spec @ 9206

Revision 9206, 2.6 KB checked in by iwaim, 9 years ago (diff)

tig 2.0.3-1

Line 
1%define ver 2.0.3
2%define rel 1
3
4Summary: Text-mode interface for Git
5Summary: Git のためのテキストモード インターフェース
6Name: tig
7Version: %{ver}
8Release: %{rel}%{?_dist_release}
9License: GPLv2+
10Group: Development/Tools
11URL: http://jonas.nitro.dk/tig/
12
13Distribution: Vine Linux
14Vendor: Project Vine
15Packager: iwaim
16
17Source: http://jonas.nitro.dk/tig/releases/tig-%{version}.tar.gz
18BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
19
20BuildRequires: autoconf
21BuildRequires: asciidoc >= 8.4
22BuildRequires: docbook-style-xsl
23BuildRequires: docbook-utils
24BuildRequires: ncurses-devel
25BuildRequires: xmlto
26Requires: git
27
28%description
29Tig allows you to browse changes in a git repository and can additionally act
30as a pager for output of various git commands. When used as a pager, it will
31display input from stdin and colorize it.
32
33When browsing repositories, tig uses the underlying git commands to present the
34user with various views, such as summarized commit log and showing the commit
35with the log message, diffstat, and the diff.
36
37%prep
38%setup
39
40%build
41%configure
42%{__make} %{?_smp_mflags}
43
44%install
45%{__rm} -rf %{buildroot}
46%{__make} install install-doc DESTDIR="%{buildroot}"
47
48# bash completion
49%{__install} -m0755 -d %{buildroot}%{_sysconfdir}/bash_completion.d/
50%{__install} -m0644 contrib/tig-completion.bash %{buildroot}%{_sysconfdir}/bash_completion.d/tig
51
52# stupid install-doc
53%{__install} -m0755 -d tigdocs
54%{__mv} %{buildroot}%{_docdir}/tig/* tigdocs/
55%{__rm} -rf %{buildroot}%{_docdir}/tig
56
57%clean
58%{__rm} -rf %{buildroot}
59
60%files
61%defattr(-, root, root, 0755)
62%doc BUGS COPYING INSTALL NEWS* README* SITES contrib/ tigdocs/
63%doc %{_mandir}/man?/*
64%config(noreplace) %{_sysconfdir}/tigrc
65%{_bindir}/*
66%{_sysconfdir}/bash_completion.d/tig
67
68%changelog
69* Wed Dec 31 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.3-1
70- update to 2.0.3
71
72* Thu Jun 26 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.2-1
73- update to 2.0.2
74- add tigrc configuration file
75
76* Fri Nov 29 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.2.1-1
77- update to 1.2.1
78
79* Sun Dec 30 2012 IWAI, Masaharu <iwai@alib.jp> 1.1-1
80- new upstream release
81
82* Thu Aug 30 2012 IWAI, Masaharu <iwai@alib.jp> - 1.0-1
83- first build for Vine Linux: from Repoforge
84
85* Mon May 21 2012 Yury V. Zaytsev <yury@shurup.com> - 1.0-1
86- Updated to version 1.0.
87
88* Tue Aug 30 2011 Steve Huff <shuff@vecna.org> - 0.18-1
89- Updated to version 0.18.
90
91* Thu Apr 21 2011 Steve Huff <shuff@vecna.org> - 0.17-1
92- Updated to version 0.17.
93
94* Thu Dec 23 2010 Steve Huff <shuff@vecna.org> - 0.16.2-2
95- Gah, wrong path for bash-completion support :(
96
97* Mon Nov 08 2010 Steve Huff <shuff@vecna.org> - 0.16.2-1
98- Initial package.
Note: See TracBrowser for help on using the repository browser.