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

Revision 11101, 2.9 KB checked in by iwaim, 7 years ago (diff)

tig 2.2.2-1

Line 
1%define ver 2.2.2
2%define rel 1
3
4Summary: Text-mode interface for Git
5Summary(ja): 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 COPYING NEWS* README* contrib/ tigdocs/
63%doc %{_mandir}/man?/*
64%config(noreplace) %{_sysconfdir}/tigrc
65%{_bindir}/*
66%{_sysconfdir}/bash_completion.d/tig
67
68%changelog
69* Wed May 31 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.2.2-1
70- update to 2.2.2
71
72* Thu Dec 29 2016 IWAI, Masaharu <iwaim.sub@gmail.com> 2.2.1-1
73- update to 2.2.1
74
75* Thu Dec 31 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 2.1.1-1
76- update to 2.1.1
77
78* Mon Apr  6 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 2.1-1
79- update to 2.1
80
81* Wed Dec 31 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.3-1
82- update to 2.0.3
83
84* Thu Jun 26 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.2-1
85- update to 2.0.2
86- add tigrc configuration file
87
88* Fri Nov 29 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.2.1-1
89- update to 1.2.1
90
91* Sun Dec 30 2012 IWAI, Masaharu <iwai@alib.jp> 1.1-1
92- new upstream release
93
94* Thu Aug 30 2012 IWAI, Masaharu <iwai@alib.jp> - 1.0-1
95- first build for Vine Linux: from Repoforge
96
97* Mon May 21 2012 Yury V. Zaytsev <yury@shurup.com> - 1.0-1
98- Updated to version 1.0.
99
100* Tue Aug 30 2011 Steve Huff <shuff@vecna.org> - 0.18-1
101- Updated to version 0.18.
102
103* Thu Apr 21 2011 Steve Huff <shuff@vecna.org> - 0.17-1
104- Updated to version 0.17.
105
106* Thu Dec 23 2010 Steve Huff <shuff@vecna.org> - 0.16.2-2
107- Gah, wrong path for bash-completion support :(
108
109* Mon Nov 08 2010 Steve Huff <shuff@vecna.org> - 0.16.2-1
110- Initial package.
Note: See TracBrowser for help on using the repository browser.