Blame SPECS/git.spec

842ec7
# Pass --without docs to rpmbuild if you don't want the documentation
842ec7
842ec7
# Settings for EL-5
842ec7
# - Leave git-* binaries in %{_bindir}
842ec7
# - Don't use noarch subpackages
842ec7
# - Use proper libcurl devel package
842ec7
# - Patch emacs and tweak docbook spaces
842ec7
# - Explicitly enable ipv6 for git-daemon
842ec7
# - Use prebuilt documentation, asciidoc is too old
842ec7
# - Define missing python macro
842ec7
%if 0%{?rhel} && 0%{?rhel} <= 5
842ec7
%global gitcoredir          %{_bindir}
842ec7
%global noarch_sub          0
842ec7
%global libcurl_devel       curl-devel
842ec7
%global emacs_old           1
842ec7
%global docbook_suppress_sp 1
842ec7
%global enable_ipv6         1
842ec7
%global use_prebuilt_docs   1
842ec7
%global filter_yaml_any     1
842ec7
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
842ec7
%else
842ec7
%global gitcoredir          %{_libexecdir}/git-core
842ec7
%global noarch_sub          1
842ec7
%global libcurl_devel       libcurl-devel
842ec7
%global emacs_old           0
842ec7
%global docbook_suppress_sp 0
842ec7
%global enable_ipv6         0
842ec7
%global use_prebuilt_docs   0
842ec7
%global filter_yaml_any     0
842ec7
%endif
842ec7
842ec7
# Use systemd instead of xinetd on Fedora 19+ and RHEL 7+
842ec7
%if 0%{?fedora} >= 19 || 0%{?rhel} >= 7
842ec7
%global use_systemd 1
842ec7
%else
842ec7
%global use_systemd 0
842ec7
%endif
842ec7
842ec7
# Build gnome-keyring git-credential helper on Fedora and RHEL >= 7
842ec7
%if 0%{?fedora} || 0%{?rhel} >= 7
842ec7
%global gnome_keyring 1
842ec7
%else
842ec7
%global gnome_keyring 0
842ec7
%endif
842ec7
842ec7
%if (0%{?fedora} && 0%{?fedora} < 19) || (0%{?rhel} && 0%{?rhel} < 7)
842ec7
%global with_desktop_vendor_tag 1
842ec7
%else
842ec7
%global with_desktop_vendor_tag 0
842ec7
%endif
842ec7
842ec7
Name:           git
842ec7
Version:        1.8.3.1
c5f736
Release:        6%{?dist}.1
842ec7
Summary:        Fast Version Control System
842ec7
License:        GPLv2
842ec7
Group:          Development/Tools
842ec7
URL:            http://git-scm.com/
842ec7
Source0:        http://git-core.googlecode.com/files/%{name}-%{version}.tar.gz
842ec7
Source2:        git-init.el
842ec7
Source3:        git.xinetd.in
842ec7
Source4:        git.conf.httpd
842ec7
Source5:        git-gui.desktop
842ec7
Source6:        gitweb.conf.in
842ec7
Source10:       http://git-core.googlecode.com/files/%{name}-manpages-%{version}.tar.gz
842ec7
Source11:       http://git-core.googlecode.com/files/%{name}-htmldocs-%{version}.tar.gz
e91d63
Source12:       git@.service
842ec7
Source13:       git.socket
842ec7
Patch0:         git-1.5-gitweb-home-link.patch
842ec7
# https://bugzilla.redhat.com/490602
842ec7
Patch1:         git-cvsimport-Ignore-cvsps-2.2b1-Branches-output.patch
842ec7
# https://bugzilla.redhat.com/600411
842ec7
Patch3:         git-1.7-el5-emacs-support.patch
842ec7
Patch5:         0001-git-subtree-Use-gitexecdir-instead-of-libexecdir.patch
842ec7
# This fixes the build when python is enabled.  Needs discussion upstream to
842ec7
# find a proper solution.
842ec7
Patch6:         0001-Drop-DESTDIR-from-python-instlibdir.patch
842ec7
776a70
# whole set is for https://bugzilla.redhat.com/show_bug.cgi?id=1273889
776a70
Patch7:         0001-submodule-allow-only-certain-protocols-for-submodule.patch
776a70
Patch8:         0002-transport-add-a-protocol-whitelist-environment-varia.patch
776a70
Patch9:         0003-transport-refactor-protocol-whitelist-code.patch
776a70
Patch10:        0004-http-limit-redirection-to-protocol-whitelist.patch
776a70
Patch11:        0005-http-limit-redirection-depth.patch
776a70
c5f736
#CVE
c5f736
Patch12:        0001-Fix-CVE-2016-2315-CVE-2016-2324.patch
c5f736
842ec7
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
842ec7
842ec7
%if ! %{use_prebuilt_docs} && ! 0%{?_without_docs}
842ec7
BuildRequires:  asciidoc >= 8.4.1
842ec7
BuildRequires:  xmlto
842ec7
%endif
842ec7
BuildRequires:  desktop-file-utils
842ec7
BuildRequires:  emacs
842ec7
BuildRequires:  expat-devel
842ec7
BuildRequires:  gettext
842ec7
BuildRequires:  %{libcurl_devel}
842ec7
%if %{gnome_keyring}
842ec7
BuildRequires:  libgnome-keyring-devel
842ec7
%endif
842ec7
BuildRequires:  pcre-devel
842ec7
BuildRequires:  openssl-devel
842ec7
BuildRequires:  zlib-devel >= 1.2
842ec7
%if %{use_systemd}
842ec7
# For macros
842ec7
BuildRequires:  systemd
842ec7
%endif
842ec7
842ec7
Requires:       less
842ec7
Requires:       openssh-clients
842ec7
Requires:       perl(Error)
842ec7
Requires:       perl(Term::ReadKey)
842ec7
Requires:       perl-Git = %{version}-%{release}
842ec7
Requires:       rsync
842ec7
Requires:       zlib >= 1.2
842ec7
842ec7
Provides:       git-core = %{version}-%{release}
842ec7
Obsoletes:      git-core <= 1.5.4.3
842ec7
842ec7
# Obsolete git-arch
842ec7
Obsoletes:      git-arch < %{version}-%{release}
842ec7
842ec7
%description
842ec7
Git is a fast, scalable, distributed revision control system with an
842ec7
unusually rich command set that provides both high-level operations
842ec7
and full access to internals.
842ec7
842ec7
The git rpm installs the core tools with minimal dependencies.  To
842ec7
install all git packages, including tools for integrating with other
842ec7
SCMs, install the git-all meta-package.
842ec7
842ec7
%package all
842ec7
Summary:        Meta-package to pull in all git tools
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
Requires:       git-cvs = %{version}-%{release}
842ec7
Requires:       git-email = %{version}-%{release}
842ec7
Requires:       git-gui = %{version}-%{release}
842ec7
Requires:       git-svn = %{version}-%{release}
842ec7
Requires:       git-p4 = %{version}-%{release}
842ec7
Requires:       gitk = %{version}-%{release}
842ec7
Requires:       perl-Git = %{version}-%{release}
842ec7
Requires:       emacs-git = %{version}-%{release}
842ec7
Obsoletes:      git <= 1.5.4.3
842ec7
842ec7
%description all
842ec7
Git is a fast, scalable, distributed revision control system with an
842ec7
unusually rich command set that provides both high-level operations
842ec7
and full access to internals.
842ec7
842ec7
This is a dummy package which brings in all subpackages.
842ec7
842ec7
%package bzr
842ec7
Summary:        Git tools for working with bzr repositories
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
Requires:       bzr
842ec7
842ec7
%description bzr
842ec7
%{summary}.
842ec7
842ec7
%package daemon
842ec7
Summary:        Git protocol dæmon
842ec7
Group:          Development/Tools
842ec7
Requires:       git = %{version}-%{release}
842ec7
%if %{use_systemd}
842ec7
Requires:	systemd
842ec7
Requires(post): systemd
842ec7
Requires(preun): systemd
842ec7
Requires(postun): systemd
842ec7
%else
842ec7
Requires:       xinetd
842ec7
%endif
842ec7
%description daemon
842ec7
The git dæmon for supporting git:// access to git repositories
842ec7
842ec7
%package -n gitweb
842ec7
Summary:        Simple web interface to git repositories
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
842ec7
%description -n gitweb
842ec7
Simple web interface to track changes in git repositories
842ec7
842ec7
%package hg
842ec7
Summary:        Git tools for working with mercurial repositories
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
Requires:       mercurial
842ec7
842ec7
%description hg
842ec7
%{summary}.
842ec7
842ec7
%package p4
842ec7
Summary:        Git tools for working with Perforce depots
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
BuildRequires:  python
842ec7
Requires:       git = %{version}-%{release}
842ec7
%description p4
842ec7
%{summary}.
842ec7
842ec7
%package svn
842ec7
Summary:        Git tools for importing Subversion repositories
842ec7
Group:          Development/Tools
842ec7
Requires:       git = %{version}-%{release}, subversion, perl(Term::ReadKey)
842ec7
%description svn
842ec7
Git tools for importing Subversion repositories.
842ec7
842ec7
%package cvs
842ec7
Summary:        Git tools for importing CVS repositories
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}, cvs
842ec7
Requires:       cvsps
842ec7
Requires:	perl-DBD-SQLite
842ec7
%description cvs
842ec7
Git tools for importing CVS repositories.
842ec7
842ec7
%package email
842ec7
Summary:        Git tools for sending email
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}, perl-Git = %{version}-%{release}
842ec7
Requires:       perl(Authen::SASL)
842ec7
Requires:       perl(Net::SMTP::SSL)
842ec7
%description email
842ec7
Git tools for sending email.
842ec7
842ec7
%package gui
842ec7
Summary:        Git GUI tool
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}, tk >= 8.4
842ec7
Requires:       gitk = %{version}-%{release}
842ec7
%description gui
842ec7
Git GUI tool.
842ec7
842ec7
%package -n gitk
842ec7
Summary:        Git revision tree visualiser
842ec7
Group:          Development/Tools
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}, tk >= 8.4
842ec7
%description -n gitk
842ec7
Git revision tree visualiser.
842ec7
842ec7
%package -n perl-Git
842ec7
Summary:        Perl interface to Git
842ec7
Group:          Development/Libraries
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
BuildRequires:  perl(Error), perl(ExtUtils::MakeMaker)
842ec7
Requires:       perl(Error)
842ec7
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
842ec7
842ec7
%description -n perl-Git
842ec7
Perl interface to Git.
842ec7
842ec7
%package -n perl-Git-SVN
842ec7
Summary:        Perl interface to Git::SVN
842ec7
Group:          Development/Libraries
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       git = %{version}-%{release}
842ec7
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
842ec7
842ec7
%description -n perl-Git-SVN
842ec7
Perl interface to Git.
842ec7
842ec7
%package -n emacs-git
842ec7
Summary:        Git version control system support for Emacs
842ec7
Group:          Applications/Editors
842ec7
Requires:       git = %{version}-%{release}
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
Requires:       emacs(bin) >= %{_emacs_version}
842ec7
%else
842ec7
Requires:       emacs-common
842ec7
%endif
842ec7
842ec7
%description -n emacs-git
842ec7
%{summary}.
842ec7
842ec7
%package -n emacs-git-el
842ec7
Summary:        Elisp source files for git version control system support for Emacs
842ec7
Group:          Applications/Editors
842ec7
%if %{noarch_sub}
842ec7
BuildArch:      noarch
842ec7
%endif
842ec7
Requires:       emacs-git = %{version}-%{release}
842ec7
842ec7
%description -n emacs-git-el
842ec7
%{summary}.
842ec7
842ec7
%prep
842ec7
%setup -q
842ec7
%patch0 -p1
842ec7
%patch1 -p1
842ec7
%if %{emacs_old}
842ec7
%patch3 -p1
842ec7
%endif
842ec7
%patch5 -p1
842ec7
%patch6 -p1
776a70
%patch7 -p1
776a70
%patch8 -p1
776a70
%patch9 -p1
776a70
%patch10 -p1
776a70
%patch11 -p1
c5f736
%patch12 -p1
842ec7
842ec7
%if %{use_prebuilt_docs}
842ec7
mkdir -p prebuilt_docs/{html,man}
842ec7
tar xf %{SOURCE10} -C prebuilt_docs/man
842ec7
tar xf %{SOURCE11} -C prebuilt_docs/html
842ec7
# Remove non-html files
842ec7
find prebuilt_docs/html -type f ! -name '*.html' | xargs rm
842ec7
find prebuilt_docs/html -type d | xargs rmdir --ignore-fail-on-non-empty
842ec7
%endif
842ec7
842ec7
# Use these same options for every invocation of 'make'.
842ec7
# Otherwise it will rebuild in %%install due to flags changes.
842ec7
cat << \EOF > config.mak
842ec7
V = 1
842ec7
CFLAGS = %{optflags}
842ec7
BLK_SHA1 = 1
842ec7
NEEDS_CRYPTO_WITH_SSL = 1
842ec7
USE_LIBPCRE = 1
842ec7
ETC_GITCONFIG = %{_sysconfdir}/gitconfig
842ec7
DESTDIR = %{buildroot}
842ec7
INSTALL = install -p
842ec7
GITWEB_PROJECTROOT = %{_var}/lib/git
842ec7
GNU_ROFF = 1
842ec7
htmldir = %{_docdir}/%{name}-%{version}
842ec7
prefix = %{_prefix}
842ec7
gitwebdir = %{_var}/www/git
842ec7
EOF
842ec7
842ec7
%if "%{gitcoredir}" == "%{_bindir}"
842ec7
echo gitexecdir = %{_bindir} >> config.mak
842ec7
%endif
842ec7
842ec7
%if %{docbook_suppress_sp}
842ec7
# This is needed for 1.69.1-1.71.0
842ec7
echo DOCBOOK_SUPPRESS_SP = 1 >> config.mak
842ec7
%endif
842ec7
842ec7
# Filter bogus perl requires
842ec7
# packed-refs comes from a comment in contrib/hooks/update-paranoid
842ec7
# YAML::Any is optional and not available on el5
842ec7
cat << \EOF > %{name}-req
842ec7
#!/bin/sh
842ec7
%{__perl_requires} $* |\
842ec7
sed \
842ec7
%if %{filter_yaml_any}
842ec7
    -e '/perl(YAML::Any)/d' \
842ec7
%endif
842ec7
    -e '/perl(packed-refs)/d'
842ec7
EOF
842ec7
842ec7
%global __perl_requires %{_builddir}/%{name}-%{version}/%{name}-req
842ec7
chmod +x %{__perl_requires}
842ec7
842ec7
%build
842ec7
sh configure --with-c-compiler=gcc
842ec7
make %{?_smp_mflags} git-daemon LDFLAGS="-pie -Wl,-z,relro,-z,now" CFLAGS="$RPM_OPT_FLAGS -fPIC"
842ec7
make %{?_smp_mflags} all -o git-daemon
842ec7
%if ! %{use_prebuilt_docs} && ! 0%{?_without_docs}
842ec7
make %{?_smp_mflags} doc
842ec7
%endif
842ec7
842ec7
make -C contrib/emacs
842ec7
842ec7
%if %{gnome_keyring}
842ec7
make -C contrib/credential/gnome-keyring/
842ec7
%endif
842ec7
842ec7
make -C contrib/subtree/
842ec7
842ec7
# Remove shebang from bash-completion script
842ec7
sed -i '/^#!bash/,+1 d' contrib/completion/git-completion.bash
842ec7
842ec7
%install
842ec7
rm -rf %{buildroot}
842ec7
make %{?_smp_mflags} INSTALLDIRS=vendor install -o git-daemon
842ec7
%if ! %{use_prebuilt_docs} && ! 0%{?_without_docs}
842ec7
make %{?_smp_mflags} INSTALLDIRS=vendor install-doc -o git-daemon
842ec7
%else
842ec7
cp -a prebuilt_docs/man/* %{buildroot}%{_mandir}
842ec7
cp -a prebuilt_docs/html/* Documentation/
842ec7
%endif
842ec7
842ec7
%if %{emacs_old}
842ec7
%global _emacs_sitelispdir %{_datadir}/emacs/site-lisp
842ec7
%global _emacs_sitestartdir %{_emacs_sitelispdir}/site-start.d
842ec7
%endif
842ec7
%global elispdir %{_emacs_sitelispdir}/git
842ec7
make -C contrib/emacs install \
842ec7
    emacsdir=%{buildroot}%{elispdir}
842ec7
for elc in %{buildroot}%{elispdir}/*.elc ; do
842ec7
    install -pm 644 contrib/emacs/$(basename $elc .elc).el \
842ec7
    %{buildroot}%{elispdir}
842ec7
done
842ec7
install -Dpm 644 %{SOURCE2} \
842ec7
    %{buildroot}%{_emacs_sitestartdir}/git-init.el
842ec7
842ec7
%if %{gnome_keyring}
842ec7
install -pm 755 contrib/credential/gnome-keyring/git-credential-gnome-keyring \
842ec7
    %{buildroot}%{gitcoredir}
842ec7
# Remove built binary files, otherwise they will be installed in doc
842ec7
make -C contrib/credential/gnome-keyring/ clean
842ec7
%endif
842ec7
842ec7
make -C contrib/subtree install
842ec7
%if ! %{use_prebuilt_docs}
842ec7
make -C contrib/subtree install-doc
842ec7
%endif
842ec7
842ec7
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d
842ec7
install -pm 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/httpd/conf.d/git.conf
842ec7
sed "s|@PROJECTROOT@|%{_var}/lib/git|g" \
842ec7
    %{SOURCE6} > %{buildroot}%{_sysconfdir}/gitweb.conf
842ec7
842ec7
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
842ec7
find %{buildroot} -type f -name '*.bs' -empty -exec rm -f {} ';'
842ec7
find %{buildroot} -type f -name perllocal.pod -exec rm -f {} ';'
842ec7
842ec7
# Remove remote-helper python libraries and scripts, these are not ready for
842ec7
# use yet
842ec7
rm -rf %{buildroot}%{python_sitelib} %{buildroot}%{gitcoredir}/git-remote-testgit
842ec7
842ec7
# git-archimport is not supported
842ec7
find %{buildroot} Documentation -type f -name 'git-archimport*' -exec rm -f {} ';'
842ec7
842ec7
exclude_re="archimport|email|git-citool|git-cvs|git-daemon|git-gui|git-remote-bzr|git-remote-hg|gitk|p4|svn"
842ec7
(find %{buildroot}{%{_bindir},%{_libexecdir}} -type f | grep -vE "$exclude_re" | sed -e s@^%{buildroot}@@) > bin-man-doc-files
842ec7
(find %{buildroot}{%{_bindir},%{_libexecdir}} -mindepth 1 -type d | grep -vE "$exclude_re" | sed -e 's@^%{buildroot}@%dir @') >> bin-man-doc-files
842ec7
(find %{buildroot}%{perl_vendorlib} -type f | sed -e s@^%{buildroot}@@) > perl-git-files
842ec7
(find %{buildroot}%{perl_vendorlib} -mindepth 1 -type d | sed -e 's@^%{buildroot}@%dir @') >> perl-git-files
842ec7
# Split out Git::SVN files
842ec7
grep Git/SVN perl-git-files > perl-git-svn-files
842ec7
sed -i "/Git\/SVN/ d" perl-git-files
842ec7
%if %{!?_without_docs:1}0
842ec7
(find %{buildroot}%{_mandir} -type f | grep -vE "$exclude_re|Git" | sed -e s@^%{buildroot}@@ -e 's/$/*/' ) >> bin-man-doc-files
842ec7
%else
842ec7
rm -rf %{buildroot}%{_mandir}
842ec7
%endif
842ec7
842ec7
mkdir -p %{buildroot}%{_var}/lib/git
842ec7
%if %{use_systemd}
842ec7
mkdir -p %{buildroot}%{_unitdir}
842ec7
cp -a %{SOURCE12} %{SOURCE13} %{buildroot}%{_unitdir}
842ec7
%else
842ec7
mkdir -p %{buildroot}%{_sysconfdir}/xinetd.d
842ec7
# On EL <= 5, xinetd does not enable IPv6 by default
842ec7
enable_ipv6="        # xinetd does not enable IPv6 by default
842ec7
        flags           = IPv6"
842ec7
perl -p \
842ec7
    -e "s|\@GITCOREDIR\@|%{gitcoredir}|g;" \
842ec7
    -e "s|\@BASE_PATH\@|%{_var}/lib/git|g;" \
842ec7
%if %{enable_ipv6}
842ec7
    -e "s|^}|$enable_ipv6\n$&|;" \
842ec7
%endif
842ec7
    %{SOURCE3} > %{buildroot}%{_sysconfdir}/xinetd.d/git
842ec7
%endif
842ec7
842ec7
# Install bzr and hg remote helpers from contrib
842ec7
install -pm 755 contrib/remote-helpers/git-remote-{bzr,hg} %{buildroot}%{gitcoredir}
842ec7
842ec7
# Setup bash completion
842ec7
mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d
842ec7
install -pm 644 contrib/completion/git-completion.bash %{buildroot}%{_sysconfdir}/bash_completion.d/git
842ec7
842ec7
# Install tcsh completion
842ec7
mkdir -p %{buildroot}%{_datadir}/git-core/contrib/completion
842ec7
install -pm 644 contrib/completion/git-completion.tcsh \
842ec7
    %{buildroot}%{_datadir}/git-core/contrib/completion/
842ec7
842ec7
# Move contrib/hooks out of %%docdir and make them executable
842ec7
mkdir -p %{buildroot}%{_datadir}/git-core/contrib
842ec7
mv contrib/hooks %{buildroot}%{_datadir}/git-core/contrib
842ec7
chmod +x %{buildroot}%{_datadir}/git-core/contrib/hooks/*
842ec7
pushd contrib > /dev/null
842ec7
ln -s ../../../git-core/contrib/hooks
842ec7
popd > /dev/null
842ec7
842ec7
# Install git-prompt.sh
842ec7
mkdir -p %{buildroot}%{_datadir}/git-core/contrib/completion
842ec7
install -pm 644 contrib/completion/git-prompt.sh \
842ec7
    %{buildroot}%{_datadir}/git-core/contrib/completion/
842ec7
842ec7
# install git-gui .desktop file
842ec7
desktop-file-install \
842ec7
%if %{with_desktop_vendor_tag}
842ec7
  --vendor fedora \
842ec7
%endif
842ec7
  --dir=%{buildroot}%{_datadir}/applications %{SOURCE5}
842ec7
842ec7
# find translations
842ec7
%find_lang %{name} %{name}.lang
842ec7
cat %{name}.lang >> bin-man-doc-files
842ec7
842ec7
# quiet some rpmlint complaints
842ec7
chmod -R g-w %{buildroot}
842ec7
find %{buildroot} -name git-mergetool--lib | xargs chmod a-x
842ec7
rm -f {Documentation/technical,contrib/emacs,contrib/credential/gnome-keyring}/.gitignore
842ec7
chmod a-x Documentation/technical/api-index.sh
842ec7
find contrib -type f | xargs chmod -x
842ec7
842ec7
842ec7
%clean
842ec7
rm -rf %{buildroot}
842ec7
842ec7
%if %{use_systemd}
842ec7
%post daemon
e91d63
%systemd_post git@.service
842ec7
842ec7
%preun daemon
e91d63
%systemd_preun git@.service
842ec7
842ec7
%postun daemon
e91d63
%systemd_postun_with_restart git@.service
842ec7
%endif
842ec7
842ec7
%files -f bin-man-doc-files
842ec7
%defattr(-,root,root)
842ec7
%{_datadir}/git-core/
842ec7
%doc README COPYING Documentation/*.txt Documentation/RelNotes contrib/
842ec7
%{!?_without_docs: %doc Documentation/*.html Documentation/docbook-xsl.css}
842ec7
%{!?_without_docs: %doc Documentation/howto Documentation/technical}
842ec7
%{_sysconfdir}/bash_completion.d
842ec7
842ec7
%files bzr
842ec7
%defattr(-,root,root)
842ec7
%{gitcoredir}/git-remote-bzr
842ec7
842ec7
%files hg
842ec7
%defattr(-,root,root)
842ec7
%{gitcoredir}/git-remote-hg
842ec7
842ec7
%files p4
842ec7
%defattr(-,root,root)
842ec7
%{gitcoredir}/*p4*
842ec7
%{gitcoredir}/mergetools/p4merge
842ec7
%doc Documentation/*p4*.txt
842ec7
%{!?_without_docs: %{_mandir}/man1/*p4*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*p4*.html }
842ec7
842ec7
%files svn
842ec7
%defattr(-,root,root)
842ec7
%{gitcoredir}/*svn*
842ec7
%doc Documentation/*svn*.txt
842ec7
%{!?_without_docs: %{_mandir}/man1/*svn*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*svn*.html }
842ec7
842ec7
%files cvs
842ec7
%defattr(-,root,root)
842ec7
%doc Documentation/*git-cvs*.txt
842ec7
%{_bindir}/git-cvsserver
842ec7
%{gitcoredir}/*cvs*
842ec7
%{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*git-cvs*.html }
842ec7
842ec7
%files email
842ec7
%defattr(-,root,root)
842ec7
%doc Documentation/*email*.txt
842ec7
%{gitcoredir}/*email*
842ec7
%{!?_without_docs: %{_mandir}/man1/*email*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*email*.html }
842ec7
842ec7
%files gui
842ec7
%defattr(-,root,root)
842ec7
%{gitcoredir}/git-gui*
842ec7
%{gitcoredir}/git-citool
842ec7
%{_datadir}/applications/*git-gui.desktop
842ec7
%{_datadir}/git-gui/
842ec7
%{!?_without_docs: %{_mandir}/man1/git-gui.1*}
842ec7
%{!?_without_docs: %doc Documentation/git-gui.html}
842ec7
%{!?_without_docs: %{_mandir}/man1/git-citool.1*}
842ec7
%{!?_without_docs: %doc Documentation/git-citool.html}
842ec7
842ec7
%files -n gitk
842ec7
%defattr(-,root,root)
842ec7
%doc Documentation/*gitk*.txt
842ec7
%{_bindir}/*gitk*
842ec7
%{_datadir}/gitk
842ec7
%{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*gitk*.html }
842ec7
842ec7
%files -n perl-Git -f perl-git-files
842ec7
%defattr(-,root,root)
842ec7
%exclude %{_mandir}/man3/*Git*SVN*.3pm*
842ec7
%{!?_without_docs: %{_mandir}/man3/*Git*.3pm*}
842ec7
842ec7
%files -n perl-Git-SVN -f perl-git-svn-files
842ec7
%defattr(-,root,root)
842ec7
%{!?_without_docs: %{_mandir}/man3/*Git*SVN*.3pm*}
842ec7
842ec7
%files -n emacs-git
842ec7
%defattr(-,root,root)
842ec7
%doc contrib/emacs/README
842ec7
%dir %{elispdir}
842ec7
%{elispdir}/*.elc
842ec7
%{_emacs_sitestartdir}/git-init.el
842ec7
842ec7
%files -n emacs-git-el
842ec7
%defattr(-,root,root)
842ec7
%{elispdir}/*.el
842ec7
842ec7
%files daemon
842ec7
%defattr(-,root,root)
842ec7
%doc Documentation/*daemon*.txt
842ec7
%if %{use_systemd}
842ec7
%{_unitdir}/git.socket
e91d63
%{_unitdir}/git@.service
842ec7
%else
842ec7
%config(noreplace)%{_sysconfdir}/xinetd.d/git
842ec7
%endif
842ec7
%{gitcoredir}/git-daemon
842ec7
%{_var}/lib/git
842ec7
%{!?_without_docs: %{_mandir}/man1/*daemon*.1*}
842ec7
%{!?_without_docs: %doc Documentation/*daemon*.html}
842ec7
842ec7
%files -n gitweb
842ec7
%defattr(-,root,root)
842ec7
%doc gitweb/INSTALL gitweb/README
842ec7
%config(noreplace)%{_sysconfdir}/gitweb.conf
842ec7
%config(noreplace)%{_sysconfdir}/httpd/conf.d/git.conf
842ec7
%{_var}/www/git/
842ec7
842ec7
842ec7
%files all
842ec7
# No files for you!
842ec7
842ec7
%changelog
c5f736
* Fri Mar 18 2016 Petr Stodulka <pstodulk@redhat.com> - 1.8.3.1-6.1
c5f736
- fix heap overflow CVE-2016-2315 CVE-2016-2324
c5f736
  Resolves: #1318254
c5f736
776a70
* Wed Oct 28 2015 Petr Stodulka <pstodulk@redhat.com> - 1.8.3.1-6
776a70
- fix arbitrary code execution via crafted URLs
776a70
  Resolves: #1274737
776a70
e91d63
* Fri Jun 19 2015 Petr Stodulka <pstodulk@redhat.com> - 1.8.3.1-5
e91d63
- Rename the git.service into git@.service
e91d63
  Resolves #1135071
e91d63
5a6c98
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.8.3.1-4
5a6c98
- Mass rebuild 2014-01-24
5a6c98
5a6c98
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.8.3.1-3
5a6c98
- Mass rebuild 2013-12-27
5a6c98
842ec7
* Fri Jun 14 2013 Todd Zullinger <tmz@pobox.com> - 1.8.3.1-1
842ec7
- Update to 1.8.3.1
842ec7
- Add bzr and hg subpackages, thanks to Michael Scherer (#974800)
842ec7
842ec7
* Mon May 13 2013 Jon Ciesla <limburgher@gmail.com> - 1.8.2.1-4
842ec7
- Fix typo introduced in 1.8.2-3, fixed desktop tag.
842ec7
842ec7
* Wed May  1 2013 Tom Callaway <spot@fedoraproject.org> - 1.8.2.1-3
842ec7
- conditionalize systemd vs xinetd
842ec7
- cleanup systemd handling (it was not quite right in -2)
842ec7
842ec7
* Tue Apr 30 2013 Tom Callaway <spot@fedoraproject.org> - 1.8.2.1-2
842ec7
- switch to systemd instead of xinetd (bz 737183)
842ec7
842ec7
* Sun Apr 14 2013 Todd Zullinger <tmz@pobox.com> - 1.8.2.1-1
842ec7
- Update to 1.8.2.1
842ec7
- Exclude optional perl(YAML::Any) dependency on EL-5
842ec7
842ec7
* Wed Apr 10 2013 Jon Ciesla <limburgher@gmail.com> - 1.8.2-3
842ec7
- Drop desktop vendor tag for >= f19.
842ec7
842ec7
* Wed Mar 27 2013 Todd Zullinger <tmz@pobox.com> - 1.8.2-2
842ec7
- Require perl(Term::ReadKey) for git add --interactive (#928328)
842ec7
- Drop DESTDIR from python instlibdir
842ec7
- Fix bogus changelog dates
842ec7
842ec7
* Tue Mar 19 2013 Adam Tkac <atkac redhat com> - 1.8.2-1
842ec7
- update to 1.8.2
842ec7
- 0001-DESTDIR-support-in-contrib-subtree-Makefile.patch has been merged
842ec7
842ec7
* Tue Feb 26 2013 Todd Zullinger <tmz@pobox.com> - 1.8.1.4-2
842ec7
- Update asciidoc requirements, drop unsupported ASCIIDOC7
842ec7
- Define GNU_ROFF to force ASCII apostrophes in manpages (so copy/paste works)
842ec7
- Install tcsh completion (requires manual setup by users)
842ec7
- Clean up dist conditionals, don't pretend to support EL-4 builds
842ec7
- Use prebuilt documentation on EL-5, where asciidoc is too old
842ec7
- Respect gitexecdir variable in git-subtree install
842ec7
842ec7
* Wed Feb 20 2013 Adam Tkac <atkac redhat com> - 1.8.1.4-1
842ec7
- update to 1.8.1.4
842ec7
842ec7
* Wed Jan 30 2013 Adam Tkac <atkac redhat com> - 1.8.1.2-1
842ec7
- update to 1.8.1.2
842ec7
- own directories which should be owned (#902517)
842ec7
842ec7
* Thu Jan 03 2013 Adam Tkac <atkac redhat com> - 1.8.1-1
842ec7
- update to 1.8.1
842ec7
- build git-svn as arch subpkg due to new git-remote-testsvn binary
842ec7
842ec7
* Tue Dec 11 2012 Adam Tkac <atkac redhat com> - 1.8.0.2-1
842ec7
- update to 1.8.0.2
842ec7
842ec7
* Thu Dec 06 2012 Adam Tkac <atkac redhat com> - 1.8.0.1-2
842ec7
- don't install some unneeded credential-gnome-keyring stuff
842ec7
842ec7
* Thu Nov 29 2012 Adam Tkac <atkac redhat com> - 1.8.0.1-1
842ec7
- update to 1.8.0.1
842ec7
- include git-subtree in git rpm (#864651)
842ec7
842ec7
* Mon Oct 29 2012 Adam Tkac <atkac redhat com> - 1.8.0-1
842ec7
- update to 1.8.0
842ec7
- include git-credential-gnome-keyring helper in git pkg
842ec7
- 0001-cvsimport-strip-all-inappropriate-tag-strings.patch was merged
842ec7
842ec7
* Thu Oct 25 2012 Adam Tkac <atkac redhat com> - 1.7.12.1-2
842ec7
- move git-prompt.sh into usr/share/git-core/contrib/completion (#854061)
842ec7
842ec7
* Thu Sep 27 2012 Adam Tkac <atkac redhat com> - 1.7.12.1-1
842ec7
- update to 1.7.12.1
842ec7
- cvsimport should skip more characters (#850640)
842ec7
842ec7
* Thu Aug 23 2012 Todd Zullinger <tmz@pobox.com> - 1.7.12-2
842ec7
- Install git-prompt.sh which provides __git_ps1()
842ec7
842ec7
* Wed Aug 22 2012 Adam Tkac <atkac redhat com> - 1.7.12-1
842ec7
- update to 1.7.12
842ec7
842ec7
* Wed Aug 15 2012 Todd Zullinger <tmz@pobox.com> - 1.7.11.5-1
842ec7
- Update to 1.7.11.5
842ec7
- Add git-p4 subpackage (#844008)
842ec7
842ec7
* Tue Aug 07 2012 Adam Tkac <atkac redhat com> - 1.7.11.4-1
842ec7
- update to 1.7.11.4
842ec7
842ec7
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.11.2-3
842ec7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
842ec7
842ec7
* Wed Jul 25 2012 Todd Zullinger <tmz@pobox.com> - 1.7.11.2-2
842ec7
- Split perl(Git::SVN) into its own package (#843182)
842ec7
842ec7
* Mon Jul 16 2012 Adam Tkac <atkac redhat com> - 1.7.11.2-1
842ec7
- update to 1.7.11.2
842ec7
842ec7
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1.7.10.4-2
842ec7
- Perl 5.16 rebuild
842ec7
842ec7
* Fri Jun 15 2012 Adam Tkac <atkac redhat com> - 1.7.10.4-1
842ec7
- update to 1.7.10.4
842ec7
842ec7
* Thu Jun 07 2012 Petr Pisar <ppisar@redhat.com> - 1.7.10.2-2
842ec7
- Perl 5.16 rebuild
842ec7
842ec7
* Mon May 14 2012 Adam Tkac <atkac redhat com> - 1.7.10.2-1
842ec7
- update to 1.7.10.2
842ec7
842ec7
* Thu May 03 2012 Adam Tkac <atkac redhat com> - 1.7.10.1-1
842ec7
- update to 1.7.10.1
842ec7
842ec7
* Tue Apr 10 2012 Adam Tkac <atkac redhat com> - 1.7.10-1
842ec7
- update to 1.7.10
842ec7
842ec7
* Fri Mar 30 2012 Adam Tkac <atkac redhat com> - 1.7.9.5-1
842ec7
- update to 1.7.9.5
842ec7
842ec7
* Thu Mar 08 2012 Adam Tkac <atkac redhat com> - 1.7.9.3-1
842ec7
- update to 1.7.9.3
842ec7
842ec7
* Wed Feb 15 2012 Todd Zullinger <tmz@pobox.com> - 1.7.9.1-1
842ec7
- Update to 1.7.9.1
842ec7
- Fix EPEL builds (rpm doesn't accept mutiple -f options in %files)
842ec7
842ec7
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.7.9-2
842ec7
- Rebuild against PCRE 8.30
842ec7
842ec7
* Mon Jan 30 2012 Adam Tkac <atkac redhat com> - 1.7.9-1
842ec7
- update to 1.7.9
842ec7
842ec7
* Thu Jan 19 2012 Adam Tkac <atkac redhat com> - 1.7.8.4-1
842ec7
- update to 1.7.8.4
842ec7
842ec7
* Thu Jan 12 2012 Adam Tkac <atkac redhat com> - 1.7.8.3-1
842ec7
- update to 1.7.8.3
842ec7
842ec7
* Mon Jan 02 2012 Adam Tkac <atkac redhat com> - 1.7.8.2-1
842ec7
- update to 1.7.8.2
842ec7
842ec7
* Fri Dec 23 2011 Adam Tkac <atkac redhat com> - 1.7.8.1-1
842ec7
- update to 1.7.8.1
842ec7
842ec7
* Wed Dec 07 2011 Adam Tkac <atkac redhat com> - 1.7.8-1
842ec7
- update to 1.7.8
842ec7
842ec7
* Tue Nov 29 2011 Adam Tkac <atkac redhat com> - 1.7.7.4-1
842ec7
- update to 1.7.7.4
842ec7
842ec7
* Thu Nov 10 2011 Adam Tkac <atkac redhat com> - 1.7.7.3-1
842ec7
- update to 1.7.7.3
842ec7
842ec7
* Mon Nov 07 2011 Adam Tkac <atkac redhat com> - 1.7.7.2-1
842ec7
- update to 1.7.7.2
842ec7
842ec7
* Tue Nov 01 2011 Adam Tkac <atkac redhat com> - 1.7.7.1-1
842ec7
- update to 1.7.7.1
842ec7
842ec7
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.7-2
842ec7
- Rebuilt for glibc bug#747377
842ec7
842ec7
* Thu Oct 20 2011 Adam Tkac <atkac redhat com> - 1.7.7-1
842ec7
- update to 1.7.7
842ec7
  - git-1.6-update-contrib-hooks-path.patch is no longer needed
842ec7
842ec7
* Mon Sep 26 2011 Adam Tkac <atkac redhat com> - 1.7.6.4-1
842ec7
- update to 1.7.6.4
842ec7
842ec7
* Wed Sep 07 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.2-1
842ec7
- Update to 1.7.6.2
842ec7
- Fixes incompatibility caused by git push --quiet fix
842ec7
  http://thread.gmane.org/gmane.comp.version-control.git/180652
842ec7
842ec7
* Mon Aug 29 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.1-2
842ec7
- Build with PCRE support (#734269)
842ec7
842ec7
* Fri Aug 26 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.1-1
842ec7
- Update to 1.7.6.1
842ec7
- Include gpg signature for tarball in SRPM
842ec7
842ec7
* Fri Aug 05 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6-5
842ec7
- Fix git push --quiet, thanks to Clemens Buchacher (#725593)
842ec7
- Obsolete git-arch as needed
842ec7
842ec7
* Tue Jul 26 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6-4
842ec7
- Drop git-arch on fedora >= 16, the tla package has been retired
842ec7
- Rework most spec file dist conditionals to make future changes easier
842ec7
842ec7
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 1.7.6-3
842ec7
- Perl mass rebuild
842ec7
842ec7
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 1.7.6-2
842ec7
- Perl mass rebuild
842ec7
842ec7
* Wed Jun 29 2011 Adam Tkac <atkac redhat com> - 1.7.6-1
842ec7
- update to 1.7.6
842ec7
842ec7
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.7.5.4-2
842ec7
- Perl mass rebuild
842ec7
842ec7
* Thu Jun 09 2011 Adam Tkac <atkac redhat com> - 1.7.5.4-1
842ec7
- update to 1.7.5.4
842ec7
842ec7
* Tue May 24 2011 Adam Tkac <atkac redhat com> - 1.7.5.2-1
842ec7
- update to 1.7.5.2
842ec7
842ec7
* Thu May 05 2011 Adam Tkac <atkac redhat com> - 1.7.5.1-1
842ec7
- update to 1.7.5.1
842ec7
842ec7
* Wed Apr 27 2011 Adam Tkac <atkac redhat com> - 1.7.5-1
842ec7
- update to 1.7.5
842ec7
842ec7
* Mon Apr 11 2011 Adam Tkac <atkac redhat com> - 1.7.4.4-1
842ec7
- update to 1.7.4.4
842ec7
842ec7
* Mon Mar 28 2011 Adam Tkac <atkac redhat com> - 1.7.4.2-1
842ec7
- update to 1.7.4.2
842ec7
- move man3/Git.3pm file to perl-Git subpkg (#664889)
842ec7
- add perl-DBD-SQLite dependency to git-cvs (#602410)
842ec7
842ec7
* Sun Feb 13 2011 Todd Zullinger <tmz@pobox.com> - 1.7.4.1-1
842ec7
- Update to 1.7.4.1
842ec7
- Clean up documentation settings (the defaults changed in 1.7.4)
842ec7
- Improve EL-5 compatibility, thanks to Kevin Fenzi for emacs testing
842ec7
842ec7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-2
842ec7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
842ec7
842ec7
* Mon Jan 31 2011 Adam Tkac <atkac redhat com> - 1.7.4-1
842ec7
- update to 1.7.4
842ec7
842ec7
* Wed Jan 19 2011 Adam Tkac <atkac redhat com> - 1.7.3.5-1
842ec7
- update to 1.7.3.5
842ec7
842ec7
* Thu Dec 16 2010 Adam Tkac <atkac redhat com> - 1.7.3.4-1
842ec7
- update to 1.7.3.4
842ec7
842ec7
* Mon Dec 06 2010 Adam Tkac <atkac redhat com> - 1.7.3.3-1
842ec7
- update to 1.7.3.3
842ec7
842ec7
* Fri Oct 22 2010 Adam Tkac <atkac redhat com> - 1.7.3.2-1
842ec7
- update to 1.7.3.2
842ec7
842ec7
* Thu Sep 30 2010 Adam Tkac <atkac redhat com> - 1.7.3.1-1
842ec7
- update to 1.7.3.1
842ec7
842ec7
* Wed Sep 29 2010 jkeating - 1.7.3-3
842ec7
- Rebuilt for gcc bug 634757
842ec7
842ec7
* Mon Sep 20 2010 Todd Zullinger <tmz@pobox.com> - 1.7.3-2
842ec7
- Ensure the release notes are included in %%doc
842ec7
842ec7
* Sun Sep 19 2010 Todd Zullinger <tmz@pobox.com> - 1.7.3-1
842ec7
- Update to 1.7.3
842ec7
842ec7
* Tue Sep 07 2010 Adam Tkac <atkac redhat com> - 1.7.2.3-1
842ec7
- update to 1.7.2.3
842ec7
842ec7
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> - 1.7.2.2-1
842ec7
- update to 1.7.2.2
842ec7
842ec7
* Fri Jul 30 2010 Thomas Spura <tomspur@fedoraproject.org> - 1.7.2.1-2
842ec7
- cherry-pick: "Do not unquote + into ' ' in URLs"
842ec7
842ec7
* Thu Jul 29 2010 Todd Zullinger <tmz@pobox.com> - 1.7.2.1-1
842ec7
- Update to git-1.7.2.1
842ec7
842ec7
* Thu Jul 22 2010 Adam Tkac <atkac redhat com> - 1.7.2-1
842ec7
- update to 1.7.2
842ec7
842ec7
* Fri Jul 02 2010 Adam Tkac <atkac redhat com> - 1.7.1.1-1
842ec7
- update to 1.7.1.1
842ec7
842ec7
* Fri Jun 25 2010 Adam Tkac <atkac redhat com> - 1.7.1-2
842ec7
- rebuild against new perl
842ec7
842ec7
* Tue May 04 2010 Todd Zullinger <tmz@pobox.com> - 1.7.1-1
842ec7
- git-1.7.1
842ec7
- Fix conditionals for EL-6
842ec7
- Comply with Emacs add-on packaging guidelines (#573423), Jonathan Underwood
842ec7
  - Place elisp source files in separate emacs-git-el package
842ec7
  - Place git support files in own directory under site-lisp
842ec7
  - Use Emacs packaging macros
842ec7
842ec7
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.7.0.1-2
842ec7
- Mass rebuild with perl-5.12.0
842ec7
842ec7
* Mon Mar 01 2010 Todd Zullinger <tmz@pobox.com> - 1.7.0.1-1
842ec7
- git-1.7.0.1
842ec7
842ec7
* Sat Feb 13 2010 Todd Zullinger <tmz@pobox.com> - 1.7.0-1
842ec7
- git-1.7.0
842ec7
- Link imap-send with libcrypto (#565147)
842ec7
- Disable building of unused python remote helper libs
842ec7
842ec7
* Tue Jan 26 2010 Todd Zullinger <tmz@pobox.com> - 1.6.6.1-1
842ec7
- git-1.6.6.1
842ec7
- Use %%{gitcoredir}/git-daemon as xinetd server option, for SELinux (#529682)
842ec7
- Make %%{_var}/lib/git the default gitweb projectroot (#556299)
842ec7
- Include gitweb/INSTALL file as documentation, the gitweb README refers to it
842ec7
- Ship a short example gitweb config file (%%{_sysconfdir}/gitweb.conf)
842ec7
- Remove long fixed xinetd IPv6 workaround on Fedora (#557528)
842ec7
- Install missing gitweb.js (#558740)
842ec7
842ec7
* Wed Dec 23 2009 Todd Zullinger <tmz@pobox.com> - 1.6.6-1
842ec7
- git-1.6.6
842ec7
842ec7
* Fri Dec 11 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.6-1
842ec7
- git-1.6.5.6
842ec7
842ec7
* Sun Dec 06 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.5-1
842ec7
- git-1.6.5.5
842ec7
842ec7
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 1.6.5.3-2
842ec7
- rebuild against perl 5.10.1
842ec7
842ec7
* Sat Nov 21 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.3-1
842ec7
- git-1.6.5.3
842ec7
- Only BR perl(Error) on Fedora and RHEL >= 5
842ec7
- Use config.mak to set build options
842ec7
- Improve compatibility with EPEL
842ec7
- Replace $RPM_BUILD_ROOT with %%{buildroot}
842ec7
- Fix Obsoletes for those rebuilding on EL-4
842ec7
842ec7
* Mon Oct 26 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.2-1
842ec7
- git-1.6.5.2
842ec7
- Drop asciidoc --unsafe option, it should not be needed anymore
842ec7
- Don't use install -t/-T, they're not compatible with older coreutils
842ec7
- Don't use -perm /a+x with find, it's incompatible with older findutils
842ec7
842ec7
* Sat Oct 17 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.1-1
842ec7
- git-1.6.5.1
842ec7
842ec7
* Sun Oct 11 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5-1
842ec7
- git-1.6.5
842ec7
842ec7
* Mon Sep 28 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5-0.2.rc2
842ec7
- git-1.6.5.rc2
842ec7
- Enable Linus' block-sha1 implementation
842ec7
842ec7
* Wed Sep 16 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.4-1
842ec7
- git-1.6.4.4
842ec7
842ec7
* Sun Sep 13 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.3-1
842ec7
- git-1.6.4.3
842ec7
842ec7
* Sun Aug 30 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.2-1
842ec7
- git-1.6.4.2
842ec7
842ec7
* Sat Aug 22 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.1-1
842ec7
- git-1.6.4.1
842ec7
842ec7
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.6.4-2
842ec7
- rebuilt with new openssl
842ec7
842ec7
* Wed Jul 29 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4-1
842ec7
- git-1.6.4
842ec7
842ec7
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3.3-2
842ec7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
842ec7
842ec7
* Sun Jun 28 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.3-1
842ec7
- git-1.6.3.3
842ec7
- Move contributed hooks to %%{_datadir}/git-core/contrib/hooks (bug 500137)
842ec7
- Fix rpmlint warnings about Summary and git-mergetool--lib missing shebang
842ec7
842ec7
* Fri Jun 19 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-3
842ec7
- Temporarily disable asciidoc's safe mode until bug 506953 is fixed
842ec7
842ec7
* Fri Jun 19 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-2
842ec7
- Fix git-daemon hang on invalid input (CVE-2009-2108, bug 505761)
842ec7
842ec7
* Fri Jun 05 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-1
842ec7
- git-1.6.3.2
842ec7
- Require emacs >= 22.2 for emacs support (bug 495312)
842ec7
- Add a .desktop file for git-gui (bug 498801)
842ec7
- Set ASCIIDOC8 and ASCIIDOC_NO_ROFF to correct documentation issues,
842ec7
  the sed hack to fix bug 485161 should no longer be needed
842ec7
- Escape newline in git-daemon xinetd description (bug 502393)
842ec7
- Add xinetd to git-daemon Requires (bug 504105)
842ec7
- Organize BuildRequires/Requires, drop redundant expat Requires
842ec7
- Only build noarch subpackages on Fedora >= 10
842ec7
- Only build emacs and arch subpackages on Fedora
842ec7
- Handle curl/libcurl naming for EPEL and Fedora
842ec7
842ec7
* Fri Apr 03 2009 Todd Zullinger <tmz@pobox.com> - 1.6.2.2-1
842ec7
- git-1.6.2.2
842ec7
- Include contrib/ dir in %%doc (bug 492490)
842ec7
- Don't set DOCBOOK_XSL_172, fix the '\&.ft' with sed (bug 485161)
842ec7
- Ignore Branches output from cvsps-2.2b1 (bug 490602)
842ec7
- Remove shebang from bash-completion script
842ec7
- Include README in gitweb subpackage
842ec7
842ec7
* Mon Mar 09 2009 Todd Zullinger <tmz@pobox.com> - 1.6.2-1
842ec7
- git-1.6.2
842ec7
- Include contrib/emacs/README in emacs subpackage
842ec7
- Drop upstreamed git-web--browse patch
842ec7
842ec7
* Tue Feb 24 2009 Todd Zullinger <tmz@pobox.com> - 1.6.1.3-2
842ec7
- Require perl(Authen::SASL) in git-email (bug 483062)
842ec7
- Build many of the subpackages as noarch
842ec7
- Update URL field
842ec7
842ec7
* Mon Feb 09 2009 Todd Zullinger <tmz@pobox.com> 1.6.1.3-1
842ec7
- git-1.6.1.3
842ec7
- Set htmldir so "git help -w <command>" works
842ec7
- Patch git-web--browse to not use "/sbin/start" to browse
842ec7
- Include git-daemon documentation in the git-daemon package
842ec7
842ec7
* Thu Jan 29 2009 Josh Boyer <jwboyer@gmail.com> 1.6.1.2-1
842ec7
- git-1.6.1.2
842ec7
842ec7
* Mon Jan 26 2009 Todd Zullinger <tmz@pobox.com> 1.6.1.1-1
842ec7
- git-1.6.1.1
842ec7
- Make compile more verbose
842ec7
842ec7
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 1.6.1-2
842ec7
- rebuild with new openssl
842ec7
842ec7
* Sat Jan 03 2009 Todd Zullinger <tmz@pobox.com> 1.6.1-1
842ec7
- Install git-* commands in %%{_libexecdir}/git-core, the upstream default
842ec7
- Remove libcurl from Requires, rpm will pick this up automatically
842ec7
- Consolidate build/install options in %%make_git (Roland McGrath)
842ec7
- Include DirectoryIndex in gitweb httpd-config (bug 471692)
842ec7
- Define DOCBOOK_XSL_172 to fix minor manpage issues
842ec7
- Rename %%{_var}/lib/git-daemon to %%{_var}/lib/git
842ec7
- Preserve timestamps on installed files
842ec7
- Quiet some rpmlint complaints
842ec7
- Use macros more consistently
842ec7
842ec7
* Sat Dec 20 2008 Todd Zullinger <tmz@pobox.com> 1.6.0.6-1
842ec7
- git-1.6.0.6
842ec7
- Fixes a local privilege escalation bug in gitweb
842ec7
  (http://article.gmane.org/gmane.comp.version-control.git/103624)
842ec7
- Add gitk Requires to git-gui (bug 476308)
842ec7
842ec7
* Thu Dec 11 2008 Josh Boyer <jboyer@gmail.com> 1.6.0.5-1
842ec7
- git-1.6.0.5
842ec7
842ec7
* Mon Nov 17 2008 Seth Vidal <skvidal at fedoraproject.org>
842ec7
- switch from /srv/git to /var/lib/git-daemon for packaging rules compliance
842ec7
842ec7
* Fri Nov 14 2008 Josh Boyer <jwboyer@gmail.com> 1.6.0.4-1
842ec7
- git-1.6.0.4
842ec7
842ec7
* Wed Oct 22 2008 Josh Boyer <jwboyer@gmail.com> 1.6.0.3-1
842ec7
- git-1.6.0.3
842ec7
- Drop curl requirement in favor of libcurl (bug 449388)
842ec7
- Add requires for SMTP-SSL perl module to make git-send-email work (bug 443615)
842ec7
842ec7
* Thu Aug 28 2008 James Bowes <jbowes@redhat.com> 1.6.0.1-1
842ec7
- git-1.6.0.1
842ec7
842ec7
* Thu Jul 24 2008 James Bowes <jbowes@redhat.com> 1.5.6-4
842ec7
- git-1.5.6.4
842ec7
842ec7
* Thu Jun 19 2008 James Bowes <jbowes@redhat.com> 1.5.6-1
842ec7
- git-1.5.6
842ec7
842ec7
* Tue Jun  3 2008 Stepan Kasal <skasal@redhat.com> 1.5.5.3-2
842ec7
- use tar.bz2 instead of tar.gz
842ec7
842ec7
* Wed May 28 2008 James Bowes <jbowes@redhat.com> 1.5.5.3-1
842ec7
- git-1.5.5.3
842ec7
842ec7
* Mon May 26 2008 James Bowes <jbowes@redhat.com> 1.5.5.2-1
842ec7
- git-1.5.5.2
842ec7
842ec7
* Mon Apr 21 2008 James Bowes <jbowes@redhat.com> 1.5.5.1-1
842ec7
- git-1.5.5.1
842ec7
842ec7
* Wed Apr 09 2008 James Bowes <jbowes@redhat.com> 1.5.5-1
842ec7
- git-1.5.5
842ec7
842ec7
* Fri Apr 04 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-3
842ec7
- Remove the last two requires on git-core.
842ec7
842ec7
* Wed Apr 02 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-2
842ec7
- Remove a patch that's already upstream.
842ec7
842ec7
* Fri Mar 28 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-1
842ec7
- git-1.5.4.5
842ec7
842ec7
* Wed Mar 26 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-4
842ec7
- Own /etc/bash_completion.d in case bash-completion isn't installed.
842ec7
842ec7
* Tue Mar 25 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-3
842ec7
- Include the sample hooks from contrib/hooks as docs (bug 321151).
842ec7
- Install the bash completion script from contrib (bug 433255).
842ec7
- Include the html docs in the 'core' package again (bug 434271).
842ec7
842ec7
* Wed Mar 19 2008 James Bowes 1.5.4.4-2
842ec7
- Obsolete git <= 1.5.4.3, to catch going from F8 to rawhide/F9
842ec7
842ec7
* Thu Mar 13 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-1
842ec7
- git-1.5.4.4
842ec7
842ec7
* Mon Mar  3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4.3-3
842ec7
- rebuild for new perl (again)
842ec7
842ec7
* Sun Feb 24 2008 Bernardo Innocenti <bernie@codewiz.org> 1.5.4.3-2
842ec7
- Do not silently overwrite /etc/httpd/conf.d/git.conf
842ec7
842ec7
* Sat Feb 23 2008 James Bowes <jbowes@redhat.com> 1.5.4.3-1
842ec7
- git-1.5.4.3
842ec7
- Include Kristian Høgsberg's changes to rename git-core to
842ec7
  git and git to git-all.
842ec7
842ec7
* Sun Feb 17 2008 James Bowes <jbowes@redhat.com> 1.5.4.2-1
842ec7
- git-1.5.4.2
842ec7
842ec7
* Mon Feb 11 2008 Jeremy Katz <katzj@redhat.com> - 1.5.4.1-2
842ec7
- Add upstream patch (e62a641de17b172ffc4d3a803085c8afbfbec3d1) to have 
842ec7
  gitweb rss feeds point be commitdiffs instead of commit
842ec7
842ec7
* Sun Feb 10 2008 James Bowes <jbowes@redhat.com> 1.5.4.1-1
842ec7
- git-1.5.4.1
842ec7
842ec7
* Tue Feb 05 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4-3
842ec7
- rebuild for new perl
842ec7
842ec7
* Sun Feb 03 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
842ec7
- Add BuidRequires on gettext.
842ec7
842ec7
* Sat Feb 02 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
842ec7
- git-1.5.4
842ec7
842ec7
* Tue Jan 08 2008 James Bowes <jbowes@redhat.com> 1.5.3.8-1
842ec7
- git-1.5.3.8
842ec7
842ec7
* Fri Dec 21 2007 James Bowes <jbowes@redhat.com> 1.5.3.7-2
842ec7
- Have git metapackage require explicit versions (bug 247214)
842ec7
842ec7
* Mon Dec 03 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.7-1
842ec7
- git-1.5.3.7
842ec7
842ec7
* Tue Nov 27 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.6-1
842ec7
- git-1.5.3.6
842ec7
- git-core requires perl(Error) (bug 367861)
842ec7
- git-svn requires perl(Term:ReadKey) (bug 261361)
842ec7
- git-email requires perl-Git (bug 333061)
842ec7
842ec7
* Wed Oct 24 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.5.3.4-2
842ec7
- git-Perl requires Error package
842ec7
842ec7
* Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.4-1
842ec7
- git-1.5.3.4
842ec7
842ec7
* Sun Sep 30 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-1
842ec7
- git-1.5.3.3
842ec7
842ec7
* Wed Sep 26 2007 James Bowes <jbowes@redhat.com> 1.5.3.2-1
842ec7
- git-1.5.3.2
842ec7
842ec7
* Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-2
842ec7
- Include git-gui and git-citool docs
842ec7
842ec7
* Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-1
842ec7
- git-1.5.3.1-1
842ec7
842ec7
* Thu Aug 23 2007 James Bowes <jbowes@redhat.com> 1.5.2.5-1
842ec7
- git-1.5.2.5-1
842ec7
842ec7
* Fri Aug 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.4-1
842ec7
- git-1.5.2.4-1
842ec7
842ec7
* Tue Jul 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-3
842ec7
- Add git-daemon and gitweb packages
842ec7
842ec7
* Thu Jun 21 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-2
842ec7
- Add emacs-git package (#235431)
842ec7
842ec7
* Mon Jun 18 2007 James Bowes <jbowes@redhat.com> 1.5.2.2-1
842ec7
- git-1.5.2.2
842ec7
842ec7
* Fri Jun 08 2007 James Bowes <jbowes@redhat.com> 1.5.2.1-1
842ec7
- git-1.5.2.1
842ec7
842ec7
* Sun May 13 2007 Quy Tonthat <qtonthat@gmail.com>
842ec7
- Added lib files for git-gui
842ec7
- Added Documentation/technical (As needed by Git Users Manual)
842ec7
842ec7
* Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
842ec7
- Added howto files
842ec7
842ec7
* Fri Mar 30 2007 Chris Wright <chrisw@redhat.com> 1.5.0.6-1
842ec7
- git-1.5.0.6
842ec7
842ec7
* Mon Mar 19 2007 Chris Wright <chrisw@redhat.com> 1.5.0.5-1
842ec7
- git-1.5.0.5
842ec7
842ec7
* Tue Mar 13 2007 Chris Wright <chrisw@redhat.com> 1.5.0.3-1
842ec7
- git-1.5.0.3
842ec7
842ec7
* Fri Mar 2 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-2
842ec7
- BuildRequires perl-devel as of perl-5.8.8-14 (bz 230680)
842ec7
842ec7
* Mon Feb 26 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-1
842ec7
- git-1.5.0.2
842ec7
842ec7
* Tue Feb 13 2007 Nicolas Pitre <nico@cam.org>
842ec7
- Update core package description (Git isn't as stupid as it used to be)
842ec7
842ec7
* Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
842ec7
- Add git-gui and git-citool.
842ec7
842ec7
* Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-2
842ec7
- no need to install manpages executable (bz 216790)
842ec7
- use bytes for git-cvsserver
842ec7
842ec7
* Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-1
842ec7
- git-1.4.4.2
842ec7
842ec7
* Mon Nov 6 2006 Jindrich Novy <jnovy@redhat.com> 1.4.2.4-2
842ec7
- rebuild against the new curl
842ec7
842ec7
* Tue Oct 17 2006 Chris Wright <chrisw@redhat.com> 1.4.2.4-1
842ec7
- git-1.4.2.4
842ec7
842ec7
* Wed Oct 4 2006 Chris Wright <chrisw@redhat.com> 1.4.2.3-1
842ec7
- git-1.4.2.3
842ec7
842ec7
* Fri Sep 22 2006 Chris Wright <chrisw@redhat.com> 1.4.2.1-1
842ec7
- git-1.4.2.1
842ec7
842ec7
* Mon Sep 11 2006 Chris Wright <chrisw@redhat.com> 1.4.2-1
842ec7
- git-1.4.2
842ec7
842ec7
* Thu Jul 6 2006 Chris Wright <chrisw@redhat.com> 1.4.1-1
842ec7
- git-1.4.1
842ec7
842ec7
* Tue Jun 13 2006 Chris Wright <chrisw@redhat.com> 1.4.0-1
842ec7
- git-1.4.0
842ec7
842ec7
* Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.3-1
842ec7
- git-1.3.3
842ec7
- enable git-email building, prereqs have been relaxed
842ec7
842ec7
* Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.2-1
842ec7
- git-1.3.2
842ec7
842ec7
* Fri Apr 28 2006 Chris Wright <chrisw@redhat.com> 1.3.1-1
842ec7
- git-1.3.1
842ec7
842ec7
* Wed Apr 19 2006 Chris Wright <chrisw@redhat.com> 1.3.0-1
842ec7
- git-1.3.0
842ec7
842ec7
* Mon Apr 10 2006 Chris Wright <chrisw@redhat.com> 1.2.6-1
842ec7
- git-1.2.6
842ec7
842ec7
* Wed Apr 5 2006 Chris Wright <chrisw@redhat.com> 1.2.5-1
842ec7
- git-1.2.5
842ec7
842ec7
* Wed Mar 1 2006 Chris Wright <chrisw@redhat.com> 1.2.4-1
842ec7
- git-1.2.4
842ec7
842ec7
* Wed Feb 22 2006 Chris Wright <chrisw@redhat.com> 1.2.3-1
842ec7
- git-1.2.3
842ec7
842ec7
* Tue Feb 21 2006 Chris Wright <chrisw@redhat.com> 1.2.2-1
842ec7
- git-1.2.2
842ec7
842ec7
* Thu Feb 16 2006 Chris Wright <chrisw@redhat.com> 1.2.1-1
842ec7
- git-1.2.1
842ec7
842ec7
* Mon Feb 13 2006 Chris Wright <chrisw@redhat.com> 1.2.0-1
842ec7
- git-1.2.0
842ec7
842ec7
* Wed Feb 1 2006 Chris Wright <chrisw@redhat.com> 1.1.6-1
842ec7
- git-1.1.6
842ec7
842ec7
* Tue Jan 24 2006 Chris Wright <chrisw@redhat.com> 1.1.4-1
842ec7
- git-1.1.4
842ec7
842ec7
* Sun Jan 15 2006 Chris Wright <chrisw@redhat.com> 1.1.2-1
842ec7
- git-1.1.2
842ec7
842ec7
* Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.1-1
842ec7
- git-1.1.1
842ec7
842ec7
* Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.0-1
842ec7
- Update to latest git-1.1.0 (drop git-email for now)
842ec7
- Now creates multiple packages:
842ec7
-        git-core, git-svn, git-cvs, git-arch, gitk
842ec7
842ec7
* Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
842ec7
- Change subpackage names to git-<name> instead of git-core-<name>
842ec7
- Create empty root package which brings in all subpackages
842ec7
- Rename git-tk -> gitk
842ec7
842ec7
* Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
842ec7
- zlib dependency fix
842ec7
- Minor cleanups from split
842ec7
- Move arch import to separate package as well
842ec7
842ec7
* Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
842ec7
- Move programs with non-standard dependencies (svn, cvs, email)
842ec7
  into separate packages
842ec7
842ec7
* Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
842ec7
- parallelize build
842ec7
- COPTS -> CFLAGS
842ec7
842ec7
* Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
842ec7
- update to 0.99.6
842ec7
842ec7
* Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
842ec7
- Linus noticed that less is required, added to the dependencies
842ec7
842ec7
* Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
842ec7
- Updated dependencies
842ec7
- Don't assume manpages are gzipped
842ec7
842ec7
* Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
842ec7
- drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
842ec7
- use RPM_OPT_FLAGS in spec file, drop patch0
842ec7
842ec7
* Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
842ec7
- use dist tag to differentiate between branches
842ec7
- use rpm optflags by default (patch0)
842ec7
- own %%{_datadir}/git-core/
842ec7
842ec7
* Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
842ec7
- update spec file to fix Buildroot, Requires, and drop Vendor
842ec7
842ec7
* Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
842ec7
- Redid the description
842ec7
- Cut overlong make line, loosened changelog a bit
842ec7
- I think Junio (or perhaps OSDL?) should be vendor...
842ec7
842ec7
* Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
842ec7
- Add the man pages, and the --without docs build option
842ec7
842ec7
* Thu Jul 7 2005 Chris Wright <chris@osdl.org>
842ec7
- initial git spec file