]> git.ipfire.org Git - thirdparty/git.git/blame - git.spec.in
Merge branch 'ml/cvsserver'
[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)
27dedf0c 12Requires: git-core, git-svn, git-cvs, git-arch, git-email, gitk
a9db2974
CW
13
14%description
24db845c
HB
15This is a stupid (but extremely fast) directory content manager. It
16doesn't do a whole lot, but what it _does_ do is track directory
17contents efficiently. It is intended to be the base of an efficient,
18distributed source code management system. This package includes
19rudimentary tools that can be used as a SCM, but you should look
20elsewhere for tools for ordinary humans layered on top of this.
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
27Requires: zlib >= 1.2, rsync, rcs, curl, less, openssh-clients, python >= 2.3, expat
28%description core
29This is a stupid (but extremely fast) directory content manager. It
30doesn't do a whole lot, but what it _does_ do is track directory
31contents efficiently. It is intended to be the base of an efficient,
32distributed source code management system. This package includes
33rudimentary tools that can be used as a SCM, but you should look
34elsewhere for tools for ordinary humans layered on top of this.
35
36These are the core tools with minimal dependencies.
37
7d4de59b 38%package svn
0867b012 39Summary: Git tools for importing Subversion repositories
7d4de59b 40Group: Development/Tools
0867b012 41Requires: git-core = %{version}-%{release}, subversion
7d4de59b
JR
42%description svn
43Git tools for importing Subversion repositories.
44
45%package cvs
0867b012 46Summary: Git tools for importing CVS repositories
7d4de59b 47Group: Development/Tools
0867b012 48Requires: git-core = %{version}-%{release}, cvs, cvsps
7d4de59b
JR
49%description cvs
50Git tools for importing CVS repositories.
51
0867b012
CW
52%package arch
53Summary: Git tools for importing Arch repositories
54Group: Development/Tools
592ee97d 55Requires: git-core = %{version}-%{release}, tla
0867b012
CW
56%description arch
57Git tools for importing Arch repositories.
58
7d4de59b 59%package email
0867b012 60Summary: Git tools for sending email
7d4de59b 61Group: Development/Tools
0867b012 62Requires: git-core = %{version}-%{release}
7d4de59b
JR
63%description email
64Git tools for sending email.
65
27dedf0c 66%package -n gitk
ba1dbb61
TM
67Summary: Git revision tree visualiser ('gitk')
68Group: Development/Tools
69Requires: git-core = %{version}-%{release}, tk >= 8.4
27dedf0c 70%description -n gitk
ba1dbb61
TM
71Git revision tree visualiser ('gitk')
72
a9db2974
CW
73%prep
74%setup -q
75
76%build
7d4de59b 77make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" WITH_OWN_SUBPROCESS_PY=YesPlease WITH_SEND_EMAIL=1 \
343d35c9 78 prefix=%{_prefix} all %{!?_without_docs: doc}
a9db2974
CW
79
80%install
81rm -rf $RPM_BUILD_ROOT
7d4de59b 82make %{_smp_mflags} DESTDIR=$RPM_BUILD_ROOT WITH_OWN_SUBPROCESS_PY=YesPlease WITH_SEND_EMAIL=1 \
343d35c9 83 prefix=%{_prefix} mandir=%{_mandir} \
704a66f5 84 install %{!?_without_docs: install-doc}
a9db2974 85
ba1dbb61 86(find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "arch|svn|cvs|email|gitk" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
7d4de59b 87%if %{!?_without_docs:1}0
ba1dbb61 88(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "arch|svn|git-cvs|email|gitk" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
7d4de59b
JR
89%endif
90
a9db2974
CW
91%clean
92rm -rf $RPM_BUILD_ROOT
93
27dedf0c
JH
94%files
95# These are no files in the root package
96
7d4de59b 97%files svn
0867b012 98%defattr(-,root,root)
7d4de59b 99%{_bindir}/*svn*
0867b012 100%doc Documentation/*svn*.txt
7d4de59b 101%{!?_without_docs: %{_mandir}/man1/*svn*.1*}
0867b012 102%{!?_without_docs: %doc Documentation/*svn*.html }
7d4de59b
JR
103
104%files cvs
0867b012
CW
105%defattr(-,root,root)
106%doc Documentation/*git-cvs*.txt
7d4de59b
JR
107%{_bindir}/*cvs*
108%{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
0867b012
CW
109%{!?_without_docs: %doc Documentation/*git-cvs*.html }
110
111%files arch
112%defattr(-,root,root)
113%doc Documentation/*arch*.txt
114%{_bindir}/*arch*
115%{!?_without_docs: %{_mandir}/man1/*arch*.1*}
116%{!?_without_docs: %doc Documentation/*arch*.html }
7d4de59b
JR
117
118%files email
0867b012
CW
119%defattr(-,root,root)
120%doc Documentation/*email*.txt
7d4de59b
JR
121%{_bindir}/*email*
122%{!?_without_docs: %{_mandir}/man1/*email*.1*}
0867b012 123%{!?_without_docs: %doc Documentation/*email*.html }
7d4de59b 124
27dedf0c 125%files -n gitk
ba1dbb61
TM
126%defattr(-,root,root)
127%doc Documentation/*gitk*.txt
128%{_bindir}/*gitk*
129%{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
130%{!?_without_docs: %doc Documentation/*gitk*.html }
131
27dedf0c 132%files core -f bin-man-doc-files
a9db2974 133%defattr(-,root,root)
0e60471c 134%{_datadir}/git-core/
49ce3d0c
EB
135%doc README COPYING Documentation/*.txt
136%{!?_without_docs: %doc Documentation/*.html }
a9db2974
CW
137
138%changelog
27dedf0c
JH
139* Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
140- Change subpackage names to git-<name> instead of git-core-<name>
141- Create empty root package which brings in all subpackages
142- Rename git-tk -> gitk
143
0867b012
CW
144* Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
145- zlib dependency fix
146- Minor cleanups from split
147- Move arch import to separate package as well
148
7d4de59b
JR
149* Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
150- Move programs with non-standard dependencies (svn, cvs, email)
151 into separate packages
152
8fc7ba85
PA
153* Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
154- parallelize build
e8f71fce 155- COPTS -> CFLAGS
8fc7ba85 156
0e60471c
CW
157* Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
158- update to 0.99.6
159
c6ae6159
HB
160* Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
161- Linus noticed that less is required, added to the dependencies
162
663a5ed5
HB
163* Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
164- Updated dependencies
165- Don't assume manpages are gzipped
166
0e60471c
CW
167* Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
168- drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
169- use RPM_OPT_FLAGS in spec file, drop patch0
170
171* Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
172- use dist tag to differentiate between branches
173- use rpm optflags by default (patch0)
174- own %{_datadir}/git-core/
175
176* Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
177- update spec file to fix Buildroot, Requires, and drop Vendor
178
24db845c
HB
179* Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
180- Redid the description
181- Cut overlong make line, loosened changelog a bit
182- I think Junio (or perhaps OSDL?) should be vendor...
183
49ce3d0c
EB
184* Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
185- Add the man pages, and the --without docs build option
24db845c 186
a9db2974
CW
187* Wed Jul 7 2005 Chris Wright <chris@osdl.org>
188- initial git spec file