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