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