]> git.ipfire.org Git - thirdparty/git.git/blame - git.spec.in
Reuse fixup_pack_header_footer in index-pack
[thirdparty/git.git] / git.spec.in
CommitLineData
0867b012 1# Pass --without docs to rpmbuild if you don't want the documentation
faced1af
ER
2
3%define python_path /usr/bin/python
4
27dedf0c 5Name: git
a9db2974 6Version: @@VERSION@@
0e60471c 7Release: 1%{?dist}
a9db2974
CW
8Summary: Git core and tools
9License: GPL
10Group: Development/Tools
11URL: http://kernel.org/pub/software/scm/git/
12Source: http://kernel.org/pub/software/scm/git/%{name}-%{version}.tar.gz
8614e923 13BuildRequires: zlib-devel >= 1.2, openssl-devel, curl-devel, expat-devel %{!?_without_docs:, xmlto, asciidoc > 6.0.3}
0e60471c 14BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
d5ad36fe 15Requires: git-core, git-svn, git-cvs, git-arch, git-email, gitk, git-gui, git-p4, perl-Git
a9db2974
CW
16
17%description
e19b91b4
NP
18Git is a fast, scalable, distributed revision control system with an
19unusually rich command set that provides both high-level operations
20and full access to internals.
a9db2974 21
27dedf0c
JH
22This is a dummy package which brings in all subpackages.
23
24%package core
25Summary: Core git tools
26Group: Development/Tools
e2b70087 27Requires: zlib >= 1.2, rsync, curl, less, openssh-clients, expat
27dedf0c 28%description core
e19b91b4
NP
29Git is a fast, scalable, distributed revision control system with an
30unusually rich command set that provides both high-level operations
31and full access to internals.
27dedf0c
JH
32
33These are the core tools with minimal dependencies.
34
7d4de59b 35%package svn
0867b012 36Summary: Git tools for importing Subversion repositories
7d4de59b 37Group: Development/Tools
0867b012 38Requires: git-core = %{version}-%{release}, subversion
7d4de59b
JR
39%description svn
40Git tools for importing Subversion repositories.
41
42%package cvs
0867b012 43Summary: Git tools for importing CVS repositories
7d4de59b 44Group: Development/Tools
0867b012 45Requires: git-core = %{version}-%{release}, cvs, cvsps
7d4de59b
JR
46%description cvs
47Git tools for importing CVS repositories.
48
0867b012
CW
49%package arch
50Summary: Git tools for importing Arch repositories
51Group: Development/Tools
592ee97d 52Requires: git-core = %{version}-%{release}, tla
0867b012
CW
53%description arch
54Git tools for importing Arch repositories.
55
7a585c0e
ER
56%package p4
57Summary: Git tools for importing Perforce repositories
58Group: Development/Tools
59Requires: git-core = %{version}-%{release}, python
60%description p4
61Git tools for importing Perforce repositories.
62
7d4de59b 63%package email
0867b012 64Summary: Git tools for sending email
7d4de59b 65Group: Development/Tools
0867b012 66Requires: git-core = %{version}-%{release}
7d4de59b
JR
67%description email
68Git tools for sending email.
69
92360538
JH
70%package gui
71Summary: Git GUI tool
72Group: Development/Tools
73Requires: git-core = %{version}-%{release}, tk >= 8.4
74%description gui
75Git GUI tool
76
27dedf0c 77%package -n gitk
ba1dbb61
TM
78Summary: Git revision tree visualiser ('gitk')
79Group: Development/Tools
80Requires: git-core = %{version}-%{release}, tk >= 8.4
27dedf0c 81%description -n gitk
ba1dbb61
TM
82Git revision tree visualiser ('gitk')
83
b9795608
PR
84%package -n perl-Git
85Summary: Perl interface to Git
86Group: Development/Libraries
87Requires: git-core = %{version}-%{release}
88Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
89BuildRequires: perl(Error)
90
91%description -n perl-Git
92Perl interface to Git
93
a9db2974
CW
94%prep
95%setup -q
96
97%build
5250929d 98make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" WITH_P4IMPORT=YesPlease \
bbc63541 99 ETC_GITCONFIG=/etc/gitconfig \
faced1af 100 prefix=%{_prefix} PYTHON_PATH=%{python_path} all %{!?_without_docs: doc}
a9db2974
CW
101
102%install
103rm -rf $RPM_BUILD_ROOT
0b2958a8 104make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
5250929d 105 WITH_P4IMPORT=YesPlease prefix=%{_prefix} mandir=%{_mandir} \
bbc63541 106 ETC_GITCONFIG=/etc/gitconfig \
faced1af 107 PYTHON_PATH=%{python_path} \
5250929d 108 INSTALLDIRS=vendor install %{!?_without_docs: install-doc}
b9795608
PR
109find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
110find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
111find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
a9db2974 112
7a585c0e 113(find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "p4import|archimport|svn|cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
0503f9c1 114(find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
7d4de59b 115%if %{!?_without_docs:1}0
7a585c0e 116(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "p4import|archimport|svn|git-cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
1434dbce
PR
117%else
118rm -rf $RPM_BUILD_ROOT%{_mandir}
7d4de59b
JR
119%endif
120
a9db2974
CW
121%clean
122rm -rf $RPM_BUILD_ROOT
123
27dedf0c
JH
124%files
125# These are no files in the root package
126
7d4de59b 127%files svn
0867b012 128%defattr(-,root,root)
7d4de59b 129%{_bindir}/*svn*
0867b012 130%doc Documentation/*svn*.txt
7d4de59b 131%{!?_without_docs: %{_mandir}/man1/*svn*.1*}
0867b012 132%{!?_without_docs: %doc Documentation/*svn*.html }
7d4de59b
JR
133
134%files cvs
0867b012
CW
135%defattr(-,root,root)
136%doc Documentation/*git-cvs*.txt
7d4de59b
JR
137%{_bindir}/*cvs*
138%{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
0867b012
CW
139%{!?_without_docs: %doc Documentation/*git-cvs*.html }
140
141%files arch
142%defattr(-,root,root)
a4e3bddc
JH
143%doc Documentation/git-archimport.txt
144%{_bindir}/git-archimport
145%{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
146%{!?_without_docs: %doc Documentation/git-archimport.html }
7d4de59b 147
7a585c0e
ER
148%files p4
149%defattr(-,root,root)
150%doc Documentation/git-p4import.txt
151%{_bindir}/git-p4import
152%{!?_without_docs: %{_mandir}/man1/git-p4import.1*}
153%{!?_without_docs: %doc Documentation/git-p4import.html }
154
7d4de59b 155%files email
0867b012
CW
156%defattr(-,root,root)
157%doc Documentation/*email*.txt
7d4de59b
JR
158%{_bindir}/*email*
159%{!?_without_docs: %{_mandir}/man1/*email*.1*}
0867b012 160%{!?_without_docs: %doc Documentation/*email*.html }
7d4de59b 161
92360538
JH
162%files gui
163%defattr(-,root,root)
164%{_bindir}/git-gui
165%{_bindir}/git-citool
166# Not Yet...
167# %{!?_without_docs: %{_mandir}/man1/git-gui.1}
168# %{!?_without_docs: %doc Documentation/git-gui.html}
169# %{!?_without_docs: %{_mandir}/man1/git-citool.1}
170# %{!?_without_docs: %doc Documentation/git-citool.html}
171
27dedf0c 172%files -n gitk
ba1dbb61
TM
173%defattr(-,root,root)
174%doc Documentation/*gitk*.txt
175%{_bindir}/*gitk*
176%{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
177%{!?_without_docs: %doc Documentation/*gitk*.html }
178
b9795608
PR
179%files -n perl-Git -f perl-files
180%defattr(-,root,root)
181
27dedf0c 182%files core -f bin-man-doc-files
a9db2974 183%defattr(-,root,root)
0e60471c 184%{_datadir}/git-core/
49ce3d0c
EB
185%doc README COPYING Documentation/*.txt
186%{!?_without_docs: %doc Documentation/*.html }
a9db2974
CW
187
188%changelog
7a585c0e
ER
189* Tue Mar 27 2007 Eygene Ryabinkin <rea-git@codelabs.ru>
190- Added the git-p4 package: Perforce import stuff.
191
e19b91b4
NP
192* Mon Feb 13 2007 Nicolas Pitre <nico@cam.org>
193- Update core package description (Git isn't as stupid as it used to be)
194
92360538
JH
195* Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
196- Add git-gui and git-citool.
197
27dedf0c
JH
198* Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
199- Change subpackage names to git-<name> instead of git-core-<name>
200- Create empty root package which brings in all subpackages
201- Rename git-tk -> gitk
202
0867b012
CW
203* Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
204- zlib dependency fix
205- Minor cleanups from split
206- Move arch import to separate package as well
207
7d4de59b
JR
208* Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
209- Move programs with non-standard dependencies (svn, cvs, email)
210 into separate packages
211
8fc7ba85
PA
212* Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
213- parallelize build
e8f71fce 214- COPTS -> CFLAGS
8fc7ba85 215
0e60471c
CW
216* Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
217- update to 0.99.6
218
c6ae6159
HB
219* Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
220- Linus noticed that less is required, added to the dependencies
221
663a5ed5
HB
222* Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
223- Updated dependencies
224- Don't assume manpages are gzipped
225
0e60471c
CW
226* Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
227- drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
228- use RPM_OPT_FLAGS in spec file, drop patch0
229
230* Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
231- use dist tag to differentiate between branches
232- use rpm optflags by default (patch0)
233- own %{_datadir}/git-core/
234
235* Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
236- update spec file to fix Buildroot, Requires, and drop Vendor
237
24db845c
HB
238* Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
239- Redid the description
240- Cut overlong make line, loosened changelog a bit
241- I think Junio (or perhaps OSDL?) should be vendor...
242
49ce3d0c
EB
243* Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
244- Add the man pages, and the --without docs build option
24db845c 245
a9db2974
CW
246* Wed Jul 7 2005 Chris Wright <chris@osdl.org>
247- initial git spec file