Merge branch 'jn/gitweb-return-or-exit-cleanup'
[git/dscho.git] / git.spec.in
blob9533147ff2e06282dc8d60aeb371afa715e22cc1
1 # Pass --without docs to rpmbuild if you don't want the documentation
3 Name: git
4 Version: @@VERSION@@
5 Release: 1%{?dist}
6 Summary: Core git tools
7 License: GPL
8 Group: Development/Tools
9 URL: http://kernel.org/pub/software/scm/git/
10 Source: http://kernel.org/pub/software/scm/git/%{name}-%{version}.tar.gz
11 BuildRequires: zlib-devel >= 1.2, openssl-devel, curl-devel, expat-devel, gettext %{!?_without_docs:, xmlto, asciidoc > 6.0.3}
12 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14 Requires: perl-Git = %{version}-%{release}
15 Requires: zlib >= 1.2, rsync, less, openssh-clients, expat
16 Provides: git-core = %{version}-%{release}
17 Obsoletes: git-core <= 1.5.4.2
18 Obsoletes: git-p4
20 %description
21 Git is a fast, scalable, distributed revision control system with an
22 unusually rich command set that provides both high-level operations
23 and full access to internals.
25 The git rpm installs the core tools with minimal dependencies. To
26 install all git packages, including tools for integrating with other
27 SCMs, install the git-all meta-package.
29 %package all
30 Summary: Meta-package to pull in all git tools
31 Group: Development/Tools
32 Requires: git = %{version}-%{release}
33 Requires: git-svn = %{version}-%{release}
34 Requires: git-cvs = %{version}-%{release}
35 Requires: git-arch = %{version}-%{release}
36 Requires: git-email = %{version}-%{release}
37 Requires: gitk = %{version}-%{release}
38 Requires: git-gui = %{version}-%{release}
39 Obsoletes: git <= 1.5.4.2
41 %description all
42 Git is a fast, scalable, distributed revision control system with an
43 unusually rich command set that provides both high-level operations
44 and full access to internals.
46 This is a dummy package which brings in all subpackages.
48 %package svn
49 Summary: Git tools for importing Subversion repositories
50 Group: Development/Tools
51 Requires: git = %{version}-%{release}, subversion
52 %description svn
53 Git tools for importing Subversion repositories.
55 %package cvs
56 Summary: Git tools for importing CVS repositories
57 Group: Development/Tools
58 Requires: git = %{version}-%{release}, cvs, cvsps
59 %description cvs
60 Git tools for importing CVS repositories.
62 %package arch
63 Summary: Git tools for importing Arch repositories
64 Group: Development/Tools
65 Requires: git = %{version}-%{release}, tla
66 %description arch
67 Git tools for importing Arch repositories.
69 %package email
70 Summary: Git tools for sending email
71 Group: Development/Tools
72 Requires: git = %{version}-%{release}
73 %description email
74 Git tools for sending email.
76 %package gui
77 Summary: Git GUI tool
78 Group: Development/Tools
79 Requires: git = %{version}-%{release}, tk >= 8.4
80 %description gui
81 Git GUI tool
83 %package -n gitk
84 Summary: Git revision tree visualiser ('gitk')
85 Group: Development/Tools
86 Requires: git = %{version}-%{release}, tk >= 8.4
87 %description -n gitk
88 Git revision tree visualiser ('gitk')
90 %package -n perl-Git
91 Summary: Perl interface to Git
92 Group: Development/Libraries
93 Requires: git = %{version}-%{release}
94 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
95 BuildRequires: perl(Error)
97 %description -n perl-Git
98 Perl interface to Git
100 %define path_settings ETC_GITCONFIG=/etc/gitconfig prefix=%{_prefix} mandir=%{_mandir} htmldir=%{_docdir}/%{name}-%{version}
101 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
103 %prep
104 %setup -q
106 %build
107 make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \
108 %{path_settings} \
109 all %{!?_without_docs: doc}
111 %install
112 rm -rf $RPM_BUILD_ROOT
113 make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
114 %{path_settings} \
115 INSTALLDIRS=vendor install %{!?_without_docs: install-doc}
116 test ! -d $RPM_BUILD_ROOT%{python_sitelib} || rm -fr $RPM_BUILD_ROOT%{python_sitelib}
117 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
118 find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
119 find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
121 (find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "archimport|svn|cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
122 (find $RPM_BUILD_ROOT%{_libexecdir}/git-core -type f | grep -vE "archimport|svn|cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@) >> bin-man-doc-files
123 (find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
124 %if %{!?_without_docs:1}0
125 (find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "archimport|svn|git-cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
126 %else
127 rm -rf $RPM_BUILD_ROOT%{_mandir}
128 %endif
130 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
131 install -m 644 -T contrib/completion/git-completion.bash $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/git
133 %clean
134 rm -rf $RPM_BUILD_ROOT
136 %files -f bin-man-doc-files
137 %defattr(-,root,root)
138 %{_datadir}/git-core/
139 %doc README COPYING Documentation/*.txt
140 %{!?_without_docs: %doc Documentation/*.html Documentation/howto}
141 %{!?_without_docs: %doc Documentation/technical}
142 %{_sysconfdir}/bash_completion.d
144 %files svn
145 %defattr(-,root,root)
146 %{_libexecdir}/git-core/*svn*
147 %doc Documentation/*svn*.txt
148 %{!?_without_docs: %{_mandir}/man1/*svn*.1*}
149 %{!?_without_docs: %doc Documentation/*svn*.html }
151 %files cvs
152 %defattr(-,root,root)
153 %doc Documentation/*git-cvs*.txt
154 %{_bindir}/git-cvsserver
155 %{_libexecdir}/git-core/*cvs*
156 %{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
157 %{!?_without_docs: %doc Documentation/*git-cvs*.html }
159 %files arch
160 %defattr(-,root,root)
161 %doc Documentation/git-archimport.txt
162 %{_libexecdir}/git-core/git-archimport
163 %{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
164 %{!?_without_docs: %doc Documentation/git-archimport.html }
166 %files email
167 %defattr(-,root,root)
168 %doc Documentation/*email*.txt
169 %{_libexecdir}/git-core/*email*
170 %{!?_without_docs: %{_mandir}/man1/*email*.1*}
171 %{!?_without_docs: %doc Documentation/*email*.html }
173 %files gui
174 %defattr(-,root,root)
175 %{_libexecdir}/git-core/git-gui
176 %{_libexecdir}/git-core/git-citool
177 %{_libexecdir}/git-core/git-gui--askpass
178 %{_datadir}/git-gui/
179 %{!?_without_docs: %{_mandir}/man1/git-gui.1*}
180 %{!?_without_docs: %doc Documentation/git-gui.html}
181 %{!?_without_docs: %{_mandir}/man1/git-citool.1*}
182 %{!?_without_docs: %doc Documentation/git-citool.html}
184 %files -n gitk
185 %defattr(-,root,root)
186 %doc Documentation/*gitk*.txt
187 %{_bindir}/*gitk*
188 %{_datadir}/gitk/
189 %{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
190 %{!?_without_docs: %doc Documentation/*gitk*.html }
192 %files -n perl-Git -f perl-files
193 %defattr(-,root,root)
195 %files all
196 # No files for you!
198 %changelog
199 * Fri Mar 26 2010 Ian Ward Comfort <icomfort@stanford.edu>
200 - Ship bash completion support from contrib/ in the core package.
202 * Sun Jan 31 2010 Junio C Hamano <gitster@pobox.com>
203 - Do not use %define inside %{!?...} construct.
205 * Sat Jan 30 2010 Junio C Hamano <gitster@pobox.com>
206 - We don't ship Python bits until a real foreign scm interface comes.
208 * Mon Feb 04 2009 David J. Mellor <dmellor@whistlingcat.com>
209 - fixed broken git help -w after renaming the git-core package to git.
211 * Fri Sep 12 2008 Quy Tonthat <qtonthat@gmail.com>
212 - move git-cvsserver to bindir.
214 * Sun Jun 15 2008 Junio C Hamano <gitster@pobox.com>
215 - Remove curl from Requires list.
217 * Fri Feb 15 2008 Kristian Høgsberg <krh@redhat.com>
218 - Rename git-core to just git and rename meta package from git to git-all.
220 * Sun Feb 03 2008 James Bowes <jbowes@dangerouslyinc.com>
221 - Add a BuildRequires for gettext
223 * Fri Jan 11 2008 Junio C Hamano <gitster@pobox.com>
224 - Include gitk message files
226 * Sun Jan 06 2008 James Bowes <jbowes@dangerouslyinc.com>
227 - Make the metapackage require the same version of the subpackages.
229 * Wed Dec 12 2007 Junio C Hamano <gitster@pobox.com>
230 - Adjust htmldir to point at /usr/share/doc/git-core-$version/
232 * Sun Jul 15 2007 Sean Estabrooks <seanlkml@sympatico.ca>
233 - Removed p4import.
235 * Tue Jun 26 2007 Quy Tonthat <qtonthat@gmail.com>
236 - Fixed problems looking for wrong manpages.
238 * Thu Jun 21 2007 Shawn O. Pearce <spearce@spearce.org>
239 - Added documentation files for git-gui
241 * Tue May 13 2007 Quy Tonthat <qtonthat@gmail.com>
242 - Added lib files for git-gui
243 - Added Documentation/technical (As needed by Git Users Manual)
245 * Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
246 - Added howto files
248 * Tue Mar 27 2007 Eygene Ryabinkin <rea-git@codelabs.ru>
249 - Added the git-p4 package: Perforce import stuff.
251 * Mon Feb 13 2007 Nicolas Pitre <nico@fluxnic.net>
252 - Update core package description (Git isn't as stupid as it used to be)
254 * Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
255 - Add git-gui and git-citool.
257 * Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
258 - Change subpackage names to git-<name> instead of git-core-<name>
259 - Create empty root package which brings in all subpackages
260 - Rename git-tk -> gitk
262 * Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
263 - zlib dependency fix
264 - Minor cleanups from split
265 - Move arch import to separate package as well
267 * Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
268 - Move programs with non-standard dependencies (svn, cvs, email)
269 into separate packages
271 * Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
272 - parallelize build
273 - COPTS -> CFLAGS
275 * Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
276 - update to 0.99.6
278 * Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
279 - Linus noticed that less is required, added to the dependencies
281 * Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
282 - Updated dependencies
283 - Don't assume manpages are gzipped
285 * Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
286 - drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
287 - use RPM_OPT_FLAGS in spec file, drop patch0
289 * Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
290 - use dist tag to differentiate between branches
291 - use rpm optflags by default (patch0)
292 - own %{_datadir}/git-core/
294 * Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
295 - update spec file to fix Buildroot, Requires, and drop Vendor
297 * Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
298 - Redid the description
299 - Cut overlong make line, loosened changelog a bit
300 - I think Junio (or perhaps OSDL?) should be vendor...
302 * Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
303 - Add the man pages, and the --without docs build option
305 * Wed Jul 7 2005 Chris Wright <chris@osdl.org>
306 - initial git spec file