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