git.spec.inon commit bash completion: Improve responsiveness of git-log completion (ab02dfe)
   1# Pass --without docs to rpmbuild if you don't want the documentation
   2
   3Name:           git
   4Version:        @@VERSION@@
   5Release:        1%{?dist}
   6Summary:        Core git tools
   7License:        GPL
   8Group:          Development/Tools
   9URL:            http://kernel.org/pub/software/scm/git/
  10Source:         http://kernel.org/pub/software/scm/git/%{name}-%{version}.tar.gz
  11BuildRequires:  zlib-devel >= 1.2, openssl-devel, curl-devel, expat-devel, gettext  %{!?_without_docs:, xmlto, asciidoc > 6.0.3}
  12BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  13
  14Requires:       perl-Git = %{version}-%{release}
  15Requires:       zlib >= 1.2, rsync, less, openssh-clients, expat
  16Provides:       git-core = %{version}-%{release}
  17Obsoletes:      git-core <= 1.5.4.2
  18Obsoletes:      git-p4
  19
  20%description
  21Git is a fast, scalable, distributed revision control system with an
  22unusually rich command set that provides both high-level operations
  23and full access to internals.
  24
  25The git rpm installs the core tools with minimal dependencies.  To
  26install all git packages, including tools for integrating with other
  27SCMs, install the git-all meta-package.
  28
  29%package all
  30Summary:        Meta-package to pull in all git tools
  31Group:          Development/Tools
  32Requires:       git = %{version}-%{release}
  33Requires:       git-svn = %{version}-%{release}
  34Requires:       git-cvs = %{version}-%{release}
  35Requires:       git-arch = %{version}-%{release}
  36Requires:       git-email = %{version}-%{release}
  37Requires:       gitk = %{version}-%{release}
  38Requires:       git-gui = %{version}-%{release}
  39Obsoletes:      git <= 1.5.4.2
  40
  41%description all
  42Git is a fast, scalable, distributed revision control system with an
  43unusually rich command set that provides both high-level operations
  44and full access to internals.
  45
  46This is a dummy package which brings in all subpackages.
  47
  48%package svn
  49Summary:        Git tools for importing Subversion repositories
  50Group:          Development/Tools
  51Requires:       git = %{version}-%{release}, subversion
  52%description svn
  53Git tools for importing Subversion repositories.
  54
  55%package cvs
  56Summary:        Git tools for importing CVS repositories
  57Group:          Development/Tools
  58Requires:       git = %{version}-%{release}, cvs, cvsps
  59%description cvs
  60Git tools for importing CVS repositories.
  61
  62%package arch
  63Summary:        Git tools for importing Arch repositories
  64Group:          Development/Tools
  65Requires:       git = %{version}-%{release}, tla
  66%description arch
  67Git tools for importing Arch repositories.
  68
  69%package email
  70Summary:        Git tools for sending email
  71Group:          Development/Tools
  72Requires:       git = %{version}-%{release}
  73%description email
  74Git tools for sending email.
  75
  76%package gui
  77Summary:        Git GUI tool
  78Group:          Development/Tools
  79Requires:       git = %{version}-%{release}, tk >= 8.4
  80%description gui
  81Git GUI tool
  82
  83%package -n gitk
  84Summary:        Git revision tree visualiser ('gitk')
  85Group:          Development/Tools
  86Requires:       git = %{version}-%{release}, tk >= 8.4
  87%description -n gitk
  88Git revision tree visualiser ('gitk')
  89
  90%package -n perl-Git
  91Summary:        Perl interface to Git
  92Group:          Development/Libraries
  93Requires:       git = %{version}-%{release}
  94Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  95BuildRequires:  perl(Error)
  96
  97%description -n perl-Git
  98Perl interface to Git
  99
 100%define path_settings ETC_GITCONFIG=/etc/gitconfig prefix=%{_prefix} mandir=%{_mandir} htmldir=%{_docdir}/%{name}-core-%{version}
 101
 102%prep
 103%setup -q
 104
 105%build
 106make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \
 107     %{path_settings} \
 108     all %{!?_without_docs: doc}
 109
 110%install
 111rm -rf $RPM_BUILD_ROOT
 112make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
 113     %{path_settings} \
 114     INSTALLDIRS=vendor install %{!?_without_docs: install-doc}
 115find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
 116find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
 117find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
 118
 119(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
 120(find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
 121%if %{!?_without_docs:1}0
 122(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
 123%else
 124rm -rf $RPM_BUILD_ROOT%{_mandir}
 125%endif
 126
 127%clean
 128rm -rf $RPM_BUILD_ROOT
 129
 130%files -f bin-man-doc-files
 131%defattr(-,root,root)
 132%{_datadir}/git-core/
 133%doc README COPYING Documentation/*.txt
 134%{!?_without_docs: %doc Documentation/*.html Documentation/howto}
 135%{!?_without_docs: %doc Documentation/technical}
 136
 137%files svn
 138%defattr(-,root,root)
 139%{_bindir}/*svn*
 140%doc Documentation/*svn*.txt
 141%{!?_without_docs: %{_mandir}/man1/*svn*.1*}
 142%{!?_without_docs: %doc Documentation/*svn*.html }
 143
 144%files cvs
 145%defattr(-,root,root)
 146%doc Documentation/*git-cvs*.txt
 147%{_bindir}/*cvs*
 148%{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
 149%{!?_without_docs: %doc Documentation/*git-cvs*.html }
 150
 151%files arch
 152%defattr(-,root,root)
 153%doc Documentation/git-archimport.txt
 154%{_bindir}/git-archimport
 155%{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
 156%{!?_without_docs: %doc Documentation/git-archimport.html }
 157
 158%files email
 159%defattr(-,root,root)
 160%doc Documentation/*email*.txt
 161%{_bindir}/*email*
 162%{!?_without_docs: %{_mandir}/man1/*email*.1*}
 163%{!?_without_docs: %doc Documentation/*email*.html }
 164
 165%files gui
 166%defattr(-,root,root)
 167%{_bindir}/git-gui
 168%{_bindir}/git-citool
 169%{_datadir}/git-gui/
 170%{!?_without_docs: %{_mandir}/man1/git-gui.1*}
 171%{!?_without_docs: %doc Documentation/git-gui.html}
 172%{!?_without_docs: %{_mandir}/man1/git-citool.1*}
 173%{!?_without_docs: %doc Documentation/git-citool.html}
 174
 175%files -n gitk
 176%defattr(-,root,root)
 177%doc Documentation/*gitk*.txt
 178%{_bindir}/*gitk*
 179%{_datadir}/gitk/
 180%{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
 181%{!?_without_docs: %doc Documentation/*gitk*.html }
 182
 183%files -n perl-Git -f perl-files
 184%defattr(-,root,root)
 185
 186%files all
 187# No files for you!
 188
 189%changelog
 190* Sun Jun 15 2008 Junio C Hamano <gitster@pobox.com>
 191- Remove curl from Requires list.
 192
 193* Fri Feb 15 2008 Kristian Høgsberg <krh@redhat.com>
 194- Rename git-core to just git and rename meta package from git to git-all.
 195
 196* Sun Feb 03 2008 James Bowes <jbowes@dangerouslyinc.com>
 197- Add a BuildRequires for gettext
 198
 199* Fri Jan 11 2008 Junio C Hamano <gitster@pobox.com>
 200- Include gitk message files
 201
 202* Sun Jan 06 2008 James Bowes <jbowes@dangerouslyinc.com>
 203- Make the metapackage require the same version of the subpackages.
 204
 205* Wed Dec 12 2007 Junio C Hamano <gitster@pobox.com>
 206- Adjust htmldir to point at /usr/share/doc/git-core-$version/
 207
 208* Sun Jul 15 2007 Sean Estabrooks <seanlkml@sympatico.ca>
 209- Removed p4import.
 210
 211* Tue Jun 26 2007 Quy Tonthat <qtonthat@gmail.com>
 212- Fixed problems looking for wrong manpages.
 213
 214* Thu Jun 21 2007 Shawn O. Pearce <spearce@spearce.org>
 215- Added documentation files for git-gui
 216
 217* Tue May 13 2007 Quy Tonthat <qtonthat@gmail.com>
 218- Added lib files for git-gui
 219- Added Documentation/technical (As needed by Git Users Manual)
 220
 221* Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
 222- Added howto files
 223
 224* Tue Mar 27 2007 Eygene Ryabinkin <rea-git@codelabs.ru>
 225- Added the git-p4 package: Perforce import stuff.
 226
 227* Mon Feb 13 2007 Nicolas Pitre <nico@cam.org>
 228- Update core package description (Git isn't as stupid as it used to be)
 229
 230* Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
 231- Add git-gui and git-citool.
 232
 233* Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
 234- Change subpackage names to git-<name> instead of git-core-<name>
 235- Create empty root package which brings in all subpackages
 236- Rename git-tk -> gitk
 237
 238* Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
 239- zlib dependency fix
 240- Minor cleanups from split
 241- Move arch import to separate package as well
 242
 243* Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
 244- Move programs with non-standard dependencies (svn, cvs, email)
 245  into separate packages
 246
 247* Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
 248- parallelize build
 249- COPTS -> CFLAGS
 250
 251* Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
 252- update to 0.99.6
 253
 254* Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
 255- Linus noticed that less is required, added to the dependencies
 256
 257* Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
 258- Updated dependencies
 259- Don't assume manpages are gzipped
 260
 261* Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
 262- drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
 263- use RPM_OPT_FLAGS in spec file, drop patch0
 264
 265* Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
 266- use dist tag to differentiate between branches
 267- use rpm optflags by default (patch0)
 268- own %{_datadir}/git-core/
 269
 270* Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
 271- update spec file to fix Buildroot, Requires, and drop Vendor
 272
 273* Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
 274- Redid the description
 275- Cut overlong make line, loosened changelog a bit
 276- I think Junio (or perhaps OSDL?) should be vendor...
 277
 278* Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
 279- Add the man pages, and the --without docs build option
 280
 281* Wed Jul 7 2005 Chris Wright <chris@osdl.org>
 282- initial git spec file