Blame SPECS/git.spec

6ced29
# Pass --without docs to rpmbuild if you don't want the documentation
6ced29
%bcond_without docs
6ced29
e9dbaa
# Pass --without tests to rpmbuild if you don't want to run the tests
e9dbaa
%bcond_without tests
6ced29
6ced29
%global gitexecdir          %{_libexecdir}/git-core
6ced29
6ced29
# Settings for Fedora
6ced29
%if 0%{?fedora}
6ced29
# linkchecker is not available on EL
6ced29
%bcond_without              linkcheck
6ced29
%else
6ced29
%bcond_with                 linkcheck
6ced29
%endif
6ced29
e9dbaa
# Settings for Fedora and EL >= 9
e9dbaa
%if 0%{?fedora} || 0%{?rhel} >= 9
e9dbaa
%bcond_without              asciidoctor
6ced29
%else
e9dbaa
%bcond_with                 asciidoctor
6ced29
%endif
6ced29
6ced29
# Settings for Fedora and EL > 7
6ced29
%if 0%{?fedora} || 0%{?rhel} > 7
e9dbaa
%bcond_with                 python2
6ced29
%bcond_without              python3
e9dbaa
%global gitweb_httpd_conf   gitweb.conf
e9dbaa
%global use_glibc_langpacks 1
6ced29
%global use_perl_generators 1
6ced29
%global use_perl_interpreter 1
6ced29
%else
e9dbaa
%bcond_without              python2
6ced29
%bcond_with                 python3
e9dbaa
%global gitweb_httpd_conf   git.conf
e9dbaa
%global use_glibc_langpacks 0
6ced29
%global use_perl_generators 0
6ced29
%global use_perl_interpreter 0
6ced29
%endif
6ced29
6ced29
# Settings for Fedora and EL >= 7
6ced29
%if 0%{?fedora} || 0%{?rhel} >= 7
e9dbaa
%bcond_without              libsecret
6ced29
%global bashcomp_pkgconfig  1
e9dbaa
%global bashcompdir         %(pkg-config --variable=completionsdir bash-completion 2>/dev/null)
6ced29
%global bashcomproot        %(dirname %{bashcompdir} 2>/dev/null)
6ced29
%global emacs_filesystem    1
6ced29
%global use_new_rpm_filters 1
6ced29
%global use_systemd         1
6ced29
%else
e9dbaa
%bcond_with                 libsecret
6ced29
%global bashcomp_pkgconfig  0
6ced29
%global bashcompdir         %{_sysconfdir}/bash_completion.d
6ced29
%global bashcomproot        %{bashcompdir}
6ced29
%global emacs_filesystem    0
6ced29
%global use_new_rpm_filters 0
6ced29
%global use_systemd         0
6ced29
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
6ced29
%endif
6ced29
6ced29
# Allow cvs subpackage to be toggled via --with/--without
6ced29
# Disable cvs subpackage by default on EL > 7
6ced29
%if 0%{?rhel} > 7
6ced29
%bcond_with                 cvs
6ced29
%else
6ced29
%bcond_without              cvs
6ced29
%endif
6ced29
6ced29
# Allow p4 subpackage to be toggled via --with/--without
6ced29
# Disable by default if we lack python2 support
e9dbaa
%if %{without python2}
6ced29
%bcond_with                 p4
6ced29
%else
6ced29
%bcond_without              p4
6ced29
%endif
6ced29
6ced29
# Hardening flags for EL-7
6ced29
%if 0%{?rhel} == 7
6ced29
%global _hardened_build     1
6ced29
%endif
6ced29
6ced29
# Hardening flags for EL-6
6ced29
%if 0%{?rhel} == 6
e9dbaa
%global build_cflags        %{build_cflags} -fPIC -pie
e9dbaa
%global build_ldflags       -Wl,-z,relro -Wl,-z,now
6ced29
%endif
6ced29
6ced29
# Define for release candidates
6ced29
#global rcrev   .rc0
6ced29
e9dbaa
Name:           git
e99583
Version:        2.31.1
e99583
Release:        2%{?rcrev}%{?dist}
6ced29
Summary:        Fast Version Control System
6ced29
License:        GPLv2
6ced29
URL:            https://git-scm.com/
e9dbaa
Source0:        https://www.kernel.org/pub/software/scm/git/%{?rcrev:testing/}%{name}-%{version}%{?rcrev}.tar.xz
e9dbaa
Source1:        https://www.kernel.org/pub/software/scm/git/%{?rcrev:testing/}%{name}-%{version}%{?rcrev}.tar.sign
6ced29
6ced29
# Junio C Hamano's key is used to sign git releases, it can be found in the
6ced29
# junio-gpg-pub tag within git.
6ced29
#
6ced29
# (Note that the tagged blob in git contains a version of the key with an
6ced29
# expired signing subkey.  The subkey expiration has been extended on the
6ced29
# public keyservers, but the blob in git has not been updated.)
6ced29
#
6ced29
# https://git.kernel.org/cgit/git/git.git/tag/?h=junio-gpg-pub
6ced29
# https://git.kernel.org/cgit/git/git.git/blob/?h=junio-gpg-pub&id=7214aea37915ee2c4f6369eb9dea520aec7d855b
e99583
Source2:        gpgkey-junio.asc
6ced29
6ced29
# Local sources begin at 10 to allow for additional future upstream sources
6ced29
Source11:       git.xinetd.in
6ced29
Source12:       git-gui.desktop
6ced29
Source13:       gitweb-httpd.conf
6ced29
Source14:       gitweb.conf.in
6ced29
Source15:       git@.service.in
6ced29
Source16:       git.socket
6ced29
6ced29
# Script to print test failure output (used in %%check)
6ced29
Source99:       print-failed-test-output
6ced29
6ced29
# https://bugzilla.redhat.com/490602
e9dbaa
Patch0:         git-cvsimport-Ignore-cvsps-2.2b1-Branches-output.patch
e9dbaa
Patch1:         0001-Switch-git-instaweb-default-to-apache-2.26.2.patch
6ced29
# https://bugzilla.redhat.com/show_bug.cgi?id=1619113
e9dbaa
Patch2:         git-2.27.0-core-crypto-hmac.patch
6ced29
6ced29
%if %{with docs}
e9dbaa
# pod2man is needed to build Git.3pm
e9dbaa
BuildRequires:  %{_bindir}/pod2man
e9dbaa
%if %{with asciidoctor}
e9dbaa
BuildRequires:  docbook5-style-xsl
e9dbaa
BuildRequires:  rubygem-asciidoctor
e9dbaa
%else
6ced29
BuildRequires:  asciidoc >= 8.4.1
e9dbaa
%endif
e9dbaa
# endif with asciidoctor
e99583
BuildRequires:  perl(File::Compare)
6ced29
BuildRequires:  xmlto
6ced29
%if %{with linkcheck}
6ced29
BuildRequires:  linkchecker
6ced29
%endif
e9dbaa
# endif with linkcheck
6ced29
%endif
e9dbaa
# endif with docs
6ced29
BuildRequires:  desktop-file-utils
e9dbaa
BuildRequires:  diffutils
6ced29
BuildRequires:  emacs
6ced29
BuildRequires:  expat-devel
6ced29
BuildRequires:  findutils
6ced29
BuildRequires:  gawk
6ced29
BuildRequires:  gcc
6ced29
BuildRequires:  gettext
6ced29
BuildRequires:  gnupg2
e9dbaa
BuildRequires:  libcurl-devel
6ced29
BuildRequires:  make
6ced29
BuildRequires:  openssl-devel
6ced29
BuildRequires:  pcre2-devel
6ced29
BuildRequires:  perl(Error)
e9dbaa
BuildRequires:  perl(lib)
6ced29
BuildRequires:  perl(Test)
6ced29
%if %{use_perl_generators}
6ced29
BuildRequires:  perl-generators
6ced29
%endif
e9dbaa
# endif use_perl_generators
6ced29
%if %{use_perl_interpreter}
6ced29
BuildRequires:  perl-interpreter
6ced29
%else
6ced29
BuildRequires:  perl
6ced29
%endif
e9dbaa
# endif use_perl_interpreter
6ced29
%if %{bashcomp_pkgconfig}
6ced29
BuildRequires:  pkgconfig(bash-completion)
6ced29
%endif
e9dbaa
# endif bashcomp_pkgconfig
6ced29
BuildRequires:  sed
6ced29
%if %{use_systemd}
6ced29
# For macros
6ced29
BuildRequires:  systemd
6ced29
%endif
e9dbaa
# endif use_systemd
6ced29
BuildRequires:  tcl
6ced29
BuildRequires:  tk
6ced29
BuildRequires:  zlib-devel >= 1.2
6ced29
e9dbaa
%if %{with tests}
6ced29
# Test suite requirements
6ced29
BuildRequires:  acl
6ced29
%if 0%{?fedora} >= 27 || 0%{?rhel} > 7
6ced29
# Needed by t5540-http-push-webdav.sh
6ced29
BuildRequires: apr-util-bdb
6ced29
%endif
e9dbaa
# endif fedora >= 27
6ced29
BuildRequires:  bash
6ced29
%if %{with cvs}
6ced29
BuildRequires:  cvs
6ced29
BuildRequires:  cvsps
6ced29
%endif
e9dbaa
# endif with cvs
e9dbaa
%if %{use_glibc_langpacks}
e9dbaa
# glibc-all-langpacks and glibc-langpack-is are needed for GETTEXT_LOCALE and
e9dbaa
# GETTEXT_ISO_LOCALE test prereq's, glibc-langpack-en ensures en_US.UTF-8.
e9dbaa
BuildRequires:  glibc-all-langpacks
e9dbaa
BuildRequires:  glibc-langpack-en
e9dbaa
BuildRequires:  glibc-langpack-is
e9dbaa
%endif
e9dbaa
# endif use_glibc_langpacks
e9dbaa
%if 0%{?fedora} && 0%{?fedora} < 30
6ced29
BuildRequires:  gnupg
e9dbaa
%endif
e9dbaa
# endif fedora < 30
e9dbaa
%if 0%{?fedora} || 0%{?rhel} > 8
e9dbaa
BuildRequires:  gnupg2-smime
e9dbaa
%endif
e9dbaa
# endif fedora or el > 8
e9dbaa
%if 0%{?fedora} || 0%{?rhel} == 6 || ( 0%{?rhel} >= 7 && ( "%{_arch}" == "ppc64le" || "%{_arch}" == "x86_64" ) )
6ced29
BuildRequires:  highlight
6ced29
%endif
e9dbaa
# endif fedora, el-6, or el7+ (ppc64le/x86_64)
6ced29
BuildRequires:  httpd
e9dbaa
%if 0%{?fedora} && ! ( "%{_arch}" == "i386" || "%{_arch}" == "s390x" )
6ced29
BuildRequires:  jgit
6ced29
%endif
e9dbaa
# endif fedora (except i386 and s390x)
6ced29
BuildRequires:  mod_dav_svn
6ced29
BuildRequires:  perl(App::Prove)
6ced29
BuildRequires:  perl(CGI)
6ced29
BuildRequires:  perl(CGI::Carp)
6ced29
BuildRequires:  perl(CGI::Util)
6ced29
BuildRequires:  perl(DBD::SQLite)
6ced29
BuildRequires:  perl(Digest::MD5)
e9dbaa
BuildRequires:  perl(Fcntl)
e9dbaa
BuildRequires:  perl(File::Basename)
e9dbaa
BuildRequires:  perl(File::Copy)
e9dbaa
BuildRequires:  perl(File::Find)
e9dbaa
BuildRequires:  perl(filetest)
6ced29
BuildRequires:  perl(HTTP::Date)
6ced29
BuildRequires:  perl(IO::Pty)
e9dbaa
BuildRequires:  perl(JSON)
e9dbaa
BuildRequires:  perl(JSON::PP)
6ced29
BuildRequires:  perl(Mail::Address)
6ced29
BuildRequires:  perl(Memoize)
e9dbaa
BuildRequires:  perl(POSIX)
e9dbaa
BuildRequires:  perl(Term::ReadLine)
6ced29
BuildRequires:  perl(Test::More)
6ced29
BuildRequires:  perl(Time::HiRes)
6ced29
%if %{with python2}
6ced29
BuildRequires:  python2-devel
6ced29
%endif
e9dbaa
# endif with python2
6ced29
%if %{with python3}
6ced29
BuildRequires:  python3-devel
6ced29
%endif
e9dbaa
# endif with python3
6ced29
BuildRequires:  subversion
6ced29
BuildRequires:  subversion-perl
e9dbaa
BuildRequires:  tar
6ced29
BuildRequires:  time
e9dbaa
BuildRequires:  zip
e9dbaa
%endif
e9dbaa
# endif with tests
6ced29
e9dbaa
Requires:       git-core = %{version}-%{release}
e9dbaa
Requires:       git-core-doc = %{version}-%{release}
6ced29
%if ! %{defined perl_bootstrap}
6ced29
Requires:       perl(Term::ReadKey)
6ced29
%endif
e9dbaa
# endif ! defined perl_bootstrap
e9dbaa
Requires:       perl-Git = %{version}-%{release}
6ced29
e9dbaa
%if %{emacs_filesystem} && %{defined _emacs_version}
6ced29
Requires:       emacs-filesystem >= %{_emacs_version}
6ced29
%endif
e9dbaa
# endif emacs_filesystem
6ced29
e9dbaa
# Obsolete git-cvs if it's disabled
e9dbaa
%if %{without cvs}
e9dbaa
Obsoletes:      git-cvs < %{?epoch:%{epoch}:}%{version}-%{release}
e9dbaa
%endif
e9dbaa
# endif without cvs
e9dbaa
e9dbaa
# Obsolete git-p4 if it's disabled
e9dbaa
%if %{without p4}
e9dbaa
Obsoletes:      git-p4 < %{?epoch:%{epoch}:}%{version}-%{release}
e9dbaa
%endif
e9dbaa
# endif without p4
6ced29
6ced29
%description
6ced29
Git is a fast, scalable, distributed revision control system with an
6ced29
unusually rich command set that provides both high-level operations
6ced29
and full access to internals.
6ced29
6ced29
The git rpm installs common set of tools which are usually using with
6ced29
small amount of dependencies. To install all git packages, including
6ced29
tools for integrating with other SCMs, install the git-all meta-package.
6ced29
6ced29
%package all
6ced29
Summary:        Meta-package to pull in all git tools
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
e9dbaa
%if %{with libsecret}
e9dbaa
Requires:       git-credential-libsecret = %{version}-%{release}
e9dbaa
%endif
e9dbaa
# endif with libsecret
6ced29
%if %{with cvs}
e9dbaa
Requires:       git-cvs = %{version}-%{release}
6ced29
%endif
e9dbaa
# endif with cvs
e99583
Requires:       git-daemon = %{version}-%{release}
e9dbaa
Requires:       git-email = %{version}-%{release}
e9dbaa
Requires:       git-gui = %{version}-%{release}
6ced29
%if %{with p4}
e9dbaa
Requires:       git-p4 = %{version}-%{release}
6ced29
%endif
e9dbaa
# endif with p4
e9dbaa
Requires:       git-subtree = %{version}-%{release}
e9dbaa
Requires:       git-svn = %{version}-%{release}
e9dbaa
Requires:       git-instaweb = %{version}-%{release}
e9dbaa
Requires:       gitk = %{version}-%{release}
e9dbaa
Requires:       perl-Git = %{version}-%{release}
6ced29
%if ! %{defined perl_bootstrap}
6ced29
Requires:       perl(Term::ReadKey)
6ced29
%endif
e9dbaa
# endif ! defined perl_bootstrap
6ced29
%if ! %{emacs_filesystem}
e9dbaa
Requires:       emacs-git = %{version}-%{release}
6ced29
%endif
e9dbaa
# endif ! emacs_filesystem
6ced29
%description all
6ced29
Git is a fast, scalable, distributed revision control system with an
6ced29
unusually rich command set that provides both high-level operations
6ced29
and full access to internals.
6ced29
6ced29
This is a dummy package which brings in all subpackages.
6ced29
6ced29
%package core
6ced29
Summary:        Core package of git with minimal functionality
6ced29
Requires:       less
6ced29
Requires:       openssh-clients
6ced29
Requires:       zlib >= 1.2
6ced29
%description core
6ced29
Git is a fast, scalable, distributed revision control system with an
6ced29
unusually rich command set that provides both high-level operations
6ced29
and full access to internals.
6ced29
6ced29
The git-core rpm installs really the core tools with minimal
6ced29
dependencies. Install git package for common set of tools.
6ced29
To install all git packages, including tools for integrating with
6ced29
other SCMs, install the git-all meta-package.
6ced29
6ced29
%package core-doc
6ced29
Summary:        Documentation files for git-core
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git-core = %{version}-%{release}
6ced29
%description core-doc
6ced29
Documentation files for git-core package including man pages.
6ced29
e9dbaa
%if %{with libsecret}
e9dbaa
%package credential-libsecret
e9dbaa
Summary:        Git helper for accessing credentials via libsecret
e9dbaa
BuildRequires:  libsecret-devel
e9dbaa
Requires:       git = %{version}-%{release}
e9dbaa
%description credential-libsecret
e9dbaa
%{summary}.
e9dbaa
%endif
e9dbaa
# endif with libsecret
e9dbaa
6ced29
%if %{with cvs}
6ced29
%package cvs
6ced29
Summary:        Git tools for importing CVS repositories
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
Requires:       cvs
6ced29
Requires:       cvsps
6ced29
Requires:       perl(DBD::SQLite)
6ced29
%description cvs
6ced29
%{summary}.
6ced29
%endif
e9dbaa
# endif with cvs
6ced29
6ced29
%package daemon
6ced29
Summary:        Git protocol daemon
e9dbaa
Requires:       git-core = %{version}-%{release}
6ced29
%if %{use_systemd}
6ced29
Requires:       systemd
6ced29
Requires(post): systemd
6ced29
Requires(preun):  systemd
6ced29
Requires(postun): systemd
6ced29
%else
6ced29
Requires:       xinetd
6ced29
%endif
e9dbaa
# endif use_systemd
6ced29
%description daemon
6ced29
The git daemon for supporting git:// access to git repositories
6ced29
6ced29
%package email
6ced29
Summary:        Git tools for sending patches via email
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
Requires:       perl(Authen::SASL)
e99583
Requires:       perl(Cwd)
e99583
Requires:       perl(File::Spec)
e99583
Requires:       perl(File::Spec::Functions)
e99583
Requires:       perl(File::Temp)
e99583
Requires:       perl(IO::Socket::SSL)
e99583
Requires:       perl(Mail::Address)
e99583
Requires:       perl(MIME::Base64)
e99583
Requires:       perl(MIME::QuotedPrint)
e99583
Requires:       perl(Net::Domain)
e99583
Requires:       perl(Net::SMTP)
6ced29
Requires:       perl(Net::SMTP::SSL)
e99583
Requires:       perl(POSIX)
e99583
Requires:       perl(Sys::Hostname)
e99583
Requires:       perl(Term::ANSIColor)
e99583
Requires:       perl(Term::ReadLine)
e99583
Requires:       perl(Text::ParseWords)
6ced29
%description email
6ced29
%{summary}.
6ced29
6ced29
%if ! %{emacs_filesystem}
6ced29
%package -n emacs-git
6ced29
Summary:        Git version control system support for Emacs
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
BuildArch:      noarch
6ced29
Requires:       emacs(bin) >= %{_emacs_version}
6ced29
Obsoletes:      emacs-git-el < 2.18.0-0.0
6ced29
Provides:       emacs-git-el = %{version}-%{release}
6ced29
%description -n emacs-git
6ced29
%{summary}.
6ced29
%endif
e9dbaa
# endif ! emacs_filesystem
6ced29
e9dbaa
%package -n gitk
6ced29
Summary:        Git repository browser
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
e9dbaa
Requires:       git-gui = %{version}-%{release}
6ced29
Requires:       tk >= 8.4
e9dbaa
%description -n gitk
6ced29
%{summary}.
6ced29
e9dbaa
%package -n gitweb
6ced29
Summary:        Simple web interface to git repositories
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
e9dbaa
%description -n gitweb
6ced29
%{summary}.
6ced29
6ced29
%package gui
6ced29
Summary:        Graphical interface to Git
6ced29
BuildArch:      noarch
e9dbaa
Requires:       gitk = %{version}-%{release}
6ced29
Requires:       tk >= 8.4
6ced29
%description gui
6ced29
%{summary}.
6ced29
e9dbaa
%package instaweb
e9dbaa
Summary:        Repository browser in gitweb
e9dbaa
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
e9dbaa
Requires:       gitweb = %{version}-%{release}
e9dbaa
Requires:       httpd
e9dbaa
e9dbaa
%description instaweb
e9dbaa
A simple script to set up gitweb and a web server for browsing the local
e9dbaa
repository.
e9dbaa
6ced29
%if %{with p4}
6ced29
%package p4
6ced29
Summary:        Git tools for working with Perforce depots
6ced29
BuildArch:      noarch
6ced29
BuildRequires:  python2-devel
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
%description p4
6ced29
%{summary}.
6ced29
%endif
e9dbaa
# endif with p4
6ced29
e9dbaa
%package -n perl-Git
6ced29
Summary:        Perl interface to Git
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
e9dbaa
%description -n perl-Git
6ced29
%{summary}.
6ced29
e9dbaa
%package -n perl-Git-SVN
6ced29
Summary:        Perl interface to Git::SVN
6ced29
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
e9dbaa
%description -n perl-Git-SVN
6ced29
%{summary}.
6ced29
6ced29
%package subtree
6ced29
Summary:        Git tools to merge and split repositories
e9dbaa
Requires:       git-core = %{version}-%{release}
6ced29
%description subtree
6ced29
Git subtrees allow subprojects to be included within a subdirectory
6ced29
of the main project, optionally including the subproject's entire
6ced29
history.
6ced29
6ced29
%package svn
6ced29
Summary:        Git tools for interacting with Subversion repositories
e9dbaa
BuildArch:      noarch
e9dbaa
Requires:       git = %{version}-%{release}
6ced29
Requires:       perl(Digest::MD5)
6ced29
%if ! %{defined perl_bootstrap}
6ced29
Requires:       perl(Term::ReadKey)
6ced29
%endif
e9dbaa
# endif ! defined perl_bootstrap
6ced29
Requires:       subversion
6ced29
%description svn
6ced29
%{summary}.
6ced29
6ced29
%prep
6ced29
# Verify GPG signatures
6ced29
gpghome="$(mktemp -qd)" # Ensure we don't use any existing gpg keyrings
e9dbaa
# Convert the ascii-armored key to binary
e9dbaa
# (use --yes to ensure an existing dearmored key is overwritten)
e99583
gpg2 --homedir "$gpghome" --dearmor --quiet --yes %{SOURCE2}
e9dbaa
xz -dc %{SOURCE0} | # Upstream signs the uncompressed tarballs
e99583
    gpgv2 --homedir "$gpghome" --quiet --keyring %{SOURCE2}.gpg %{SOURCE1} -
e9dbaa
rm -rf "$gpghome" # Cleanup tmp gpg home dir
6ced29
e9dbaa
%autosetup -p1 -n %{name}-%{version}%{?rcrev}
6ced29
6ced29
# Install print-failed-test-output script
6ced29
install -p -m 755 %{SOURCE99} print-failed-test-output
6ced29
6ced29
# Remove git-archimport from command list
6ced29
sed -i '/^git-archimport/d' command-list.txt
6ced29
e9dbaa
%if %{without cvs}
6ced29
# Remove git-cvs* from command list
6ced29
sed -i '/^git-cvs/d' command-list.txt
6ced29
%endif
e9dbaa
# endif without cvs
6ced29
e9dbaa
%if %{without p4}
6ced29
# Remove git-p4 from command list
6ced29
sed -i '/^git-p4/d' command-list.txt
6ced29
%endif
e9dbaa
# endif without p4
6ced29
6ced29
# Use these same options for every invocation of 'make'.
6ced29
# Otherwise it will rebuild in %%install due to flags changes.
e9dbaa
# Pipe to tee to aid confirmation/verification of settings.
e9dbaa
cat << \EOF | tee config.mak
6ced29
V = 1
e9dbaa
CFLAGS = %{build_cflags}
e9dbaa
LDFLAGS = %{build_ldflags}
6ced29
NEEDS_CRYPTO_WITH_SSL = 1
6ced29
USE_LIBPCRE = 1
6ced29
ETC_GITCONFIG = %{_sysconfdir}/gitconfig
6ced29
INSTALL_SYMLINKS = 1
6ced29
GITWEB_PROJECTROOT = %{_localstatedir}/lib/git
6ced29
GNU_ROFF = 1
6ced29
NO_PERL_CPAN_FALLBACKS = 1
6ced29
%if %{with python2}
6ced29
PYTHON_PATH = %{__python2}
6ced29
%else
6ced29
NO_PYTHON = 1
6ced29
%endif
e9dbaa
# endif with python2
e9dbaa
%if %{with asciidoctor}
e9dbaa
USE_ASCIIDOCTOR = 1
e9dbaa
%endif
e9dbaa
# endif with asciidoctor
6ced29
htmldir = %{?_pkgdocdir}%{!?_pkgdocdir:%{_docdir}/%{name}-%{version}}
6ced29
prefix = %{_prefix}
e9dbaa
perllibdir = %{perl_vendorlib}
6ced29
gitwebdir = %{_localstatedir}/www/git
6ced29
6ced29
# Test options
6ced29
DEFAULT_TEST_TARGET = prove
e9dbaa
GIT_PROVE_OPTS = --verbose --normalize %{?_smp_mflags} --formatter=TAP::Formatter::File
6ced29
GIT_TEST_OPTS = -x --verbose-log
6ced29
EOF
6ced29
6ced29
# Filter bogus perl requires
6ced29
# packed-refs comes from a comment in contrib/hooks/update-paranoid
6ced29
%if %{use_new_rpm_filters}
6ced29
%{?perl_default_filter}
6ced29
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(packed-refs\\)
6ced29
%if ! %{defined perl_bootstrap}
6ced29
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}perl\\(Term::ReadKey\\)
6ced29
%endif
e9dbaa
# endif ! defined perl_bootstrap
6ced29
%else
6ced29
cat << \EOF > %{name}-req
6ced29
#!/bin/sh
6ced29
%{__perl_requires} $* |\
6ced29
sed -e '/perl(packed-refs)/d'
6ced29
EOF
6ced29
6ced29
%global __perl_requires %{_builddir}/%{name}-%{version}%{?rcrev}/%{name}-req
6ced29
chmod +x %{__perl_requires}
6ced29
%endif
e9dbaa
# endif use_new_rpm_filters
6ced29
6ced29
# Remove Git::LoadCPAN to ensure we use only system perl modules.  This also
6ced29
# allows the dependencies to be automatically processed by rpm.
6ced29
rm -rf perl/Git/LoadCPAN{.pm,/}
6ced29
grep -rlZ '^use Git::LoadCPAN::' | xargs -r0 sed -i 's/Git::LoadCPAN:://g'
6ced29
e9dbaa
# Update gitweb default home link string
e9dbaa
sed -i 's@"++GITWEB_HOME_LINK_STR++"@$ENV{"SERVER_NAME"} ? "git://" . $ENV{"SERVER_NAME"} : "projects"@' \
e9dbaa
    gitweb/gitweb.perl
e9dbaa
e9dbaa
# Move contrib/{contacts,subtree} docs to Documentation so they build with the
e9dbaa
# proper asciidoc/docbook/xmlto options
e9dbaa
mv contrib/{contacts,subtree}/git-*.txt Documentation/
e9dbaa
6ced29
%build
e9dbaa
# Improve build reproducibility
e9dbaa
export TZ=UTC
e9dbaa
export SOURCE_DATE_EPOCH=$(date -r version +%%s 2>/dev/null)
e9dbaa
e9dbaa
%make_build all %{?with_docs:doc}
e9dbaa
e9dbaa
%make_build -C contrib/contacts/ all
e9dbaa
e9dbaa
%if %{with libsecret}
6ced29
%make_build -C contrib/credential/libsecret/
6ced29
%endif
e9dbaa
# endif with libsecret
e9dbaa
e9dbaa
%make_build -C contrib/credential/netrc/
6ced29
6ced29
%make_build -C contrib/diff-highlight/
6ced29
e9dbaa
%make_build -C contrib/subtree/ all
6ced29
6ced29
# Fix shebang in a few places to silence rpmlint complaints
6ced29
%if %{with python2}
6ced29
sed -i -e '1s@#! */usr/bin/env python$@#!%{__python2}@' \
6ced29
    contrib/fast-import/import-zips.py \
6ced29
    contrib/hg-to-git/hg-to-git.py \
6ced29
    contrib/hooks/multimail/git_multimail.py \
6ced29
    contrib/hooks/multimail/migrate-mailhook-config \
e99583
    contrib/hooks/multimail/post-receive.example
e9dbaa
%else
e99583
# Remove contrib/fast-import/import-zips.py which require python2.
e99583
rm -rf contrib/fast-import/import-zips.py
6ced29
%endif
e9dbaa
# endif with python2
e9dbaa
e9dbaa
# The multimail hook is installed with git.  Use python3 to avoid an
e99583
# unnecessary python2 dependency, if possible.  Also fix contrib/hg-to-git
e99583
# while here.
6ced29
%if %{with python3}
6ced29
sed -i -e '1s@#!\( */usr/bin/env python\|%{__python2}\)$@#!%{__python3}@' \
e99583
    contrib/hg-to-git/hg-to-git.py \
6ced29
    contrib/hooks/multimail/git_multimail.py \
6ced29
    contrib/hooks/multimail/migrate-mailhook-config \
6ced29
    contrib/hooks/multimail/post-receive.example
6ced29
%endif
e9dbaa
# endif with python3
6ced29
6ced29
%install
6ced29
%make_install %{?with_docs:install-doc}
6ced29
e9dbaa
%make_install -C contrib/contacts
6ced29
6ced29
%global elispdir %{_emacs_sitelispdir}/git
6ced29
pushd contrib/emacs >/dev/null
6ced29
for el in *.el ; do
6ced29
    # Note: No byte-compiling is done.  These .el files are one-line stubs
6ced29
    # which only serve to point users to better alternatives.
6ced29
    install -Dpm 644 $el %{buildroot}%{elispdir}/$el
6ced29
    rm -f $el # clean up to avoid cruft in git-core-doc
6ced29
done
6ced29
popd >/dev/null
6ced29
e9dbaa
%if %{with libsecret}
6ced29
install -pm 755 contrib/credential/libsecret/git-credential-libsecret \
6ced29
    %{buildroot}%{gitexecdir}
6ced29
%endif
e9dbaa
# endif with libsecret
6ced29
install -pm 755 contrib/credential/netrc/git-credential-netrc \
6ced29
    %{buildroot}%{gitexecdir}
e9dbaa
# temporarily move contrib/credential/netrc aside to prevent it from being
e9dbaa
# deleted in the docs preparation, so the tests can be run in %%check
e9dbaa
mv contrib/credential/netrc .
6ced29
e9dbaa
%make_install -C contrib/subtree
6ced29
e9dbaa
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d
e9dbaa
install -pm 0644 %{SOURCE13} %{buildroot}%{_sysconfdir}/httpd/conf.d/%{gitweb_httpd_conf}
6ced29
sed "s|@PROJECTROOT@|%{_localstatedir}/lib/git|g" \
e9dbaa
    %{SOURCE14} > %{buildroot}%{_sysconfdir}/gitweb.conf
6ced29
6ced29
# install contrib/diff-highlight and clean up to avoid cruft in git-core-doc
6ced29
install -Dpm 0755 contrib/diff-highlight/diff-highlight \
6ced29
    %{buildroot}%{_datadir}/git-core/contrib/diff-highlight
6ced29
rm -rf contrib/diff-highlight/{Makefile,diff-highlight,*.perl,t}
6ced29
6ced29
# Clean up contrib/subtree to avoid cruft in the git-core-doc docdir
e9dbaa
rm -rf contrib/subtree/{INSTALL,Makefile,git-subtree*,t}
6ced29
6ced29
# git-archimport is not supported
6ced29
find %{buildroot} Documentation -type f -name 'git-archimport*' -exec rm -f {} ';'
6ced29
e9dbaa
%if %{without cvs}
6ced29
# Remove git-cvs* and gitcvs*
6ced29
find %{buildroot} Documentation \( -type f -o -type l \) \
6ced29
    \( -name 'git-cvs*' -o -name 'gitcvs*' \) -exec rm -f {} ';'
6ced29
%endif
e9dbaa
# endif without cvs
6ced29
e9dbaa
%if %{without p4}
6ced29
# Remove git-p4* and mergetools/p4merge
6ced29
find %{buildroot} Documentation -type f -name 'git-p4*' -exec rm -f {} ';'
6ced29
rm -f %{buildroot}%{gitexecdir}/mergetools/p4merge
6ced29
%endif
e9dbaa
# endif without p4
6ced29
e9dbaa
# Remove unneeded git-remote-testsvn so git-svn can be noarch
e9dbaa
rm -f %{buildroot}%{gitexecdir}/git-remote-testsvn
e9dbaa
e9dbaa
exclude_re="archimport|email|git-(citool|credential-libsecret|cvs|daemon|gui|instaweb|p4|subtree|svn)|gitk|gitweb|p4merge"
6ced29
(find %{buildroot}{%{_bindir},%{_libexecdir}} -type f -o -type l | grep -vE "$exclude_re" | sed -e s@^%{buildroot}@@) > bin-man-doc-files
6ced29
(find %{buildroot}{%{_bindir},%{_libexecdir}} -mindepth 1 -type d | grep -vE "$exclude_re" | sed -e 's@^%{buildroot}@%dir @') >> bin-man-doc-files
e9dbaa
(find %{buildroot}%{perl_vendorlib} -type f | sed -e s@^%{buildroot}@@) > perl-git-files
e9dbaa
(find %{buildroot}%{perl_vendorlib} -mindepth 1 -type d | sed -e 's@^%{buildroot}@%dir @') >> perl-git-files
6ced29
# Split out Git::SVN files
6ced29
grep Git/SVN perl-git-files > perl-git-svn-files
6ced29
sed -i "/Git\/SVN/ d" perl-git-files
6ced29
%if %{with docs}
6ced29
(find %{buildroot}%{_mandir} -type f | grep -vE "$exclude_re|Git" | sed -e s@^%{buildroot}@@ -e 's/$/*/' ) >> bin-man-doc-files
6ced29
%else
6ced29
rm -rf %{buildroot}%{_mandir}
6ced29
%endif
e9dbaa
# endif with docs
6ced29
6ced29
mkdir -p %{buildroot}%{_localstatedir}/lib/git
6ced29
%if %{use_systemd}
e9dbaa
install -Dp -m 0644 %{SOURCE16} %{buildroot}%{_unitdir}/git.socket
6ced29
perl -p \
6ced29
    -e "s|\@GITEXECDIR\@|%{gitexecdir}|g;" \
6ced29
    -e "s|\@BASE_PATH\@|%{_localstatedir}/lib/git|g;" \
e9dbaa
    %{SOURCE15} > %{buildroot}%{_unitdir}/git@.service
6ced29
%else
6ced29
mkdir -p %{buildroot}%{_sysconfdir}/xinetd.d
6ced29
perl -p \
6ced29
    -e "s|\@GITEXECDIR\@|%{gitexecdir}|g;" \
6ced29
    -e "s|\@BASE_PATH\@|%{_localstatedir}/lib/git|g;" \
e9dbaa
    %{SOURCE11} > %{buildroot}%{_sysconfdir}/xinetd.d/git
6ced29
%endif
e9dbaa
# endif use_systemd
6ced29
6ced29
# Setup bash completion
6ced29
install -Dpm 644 contrib/completion/git-completion.bash %{buildroot}%{bashcompdir}/git
6ced29
ln -s git %{buildroot}%{bashcompdir}/gitk
6ced29
6ced29
# Install tcsh completion
6ced29
mkdir -p %{buildroot}%{_datadir}/git-core/contrib/completion
6ced29
install -pm 644 contrib/completion/git-completion.tcsh \
6ced29
    %{buildroot}%{_datadir}/git-core/contrib/completion/
6ced29
6ced29
# Drop .py extension from git_multimail to avoid byte-compiling
6ced29
mv contrib/hooks/multimail/git_multimail{.py,}
6ced29
6ced29
# Move contrib/hooks out of %%docdir
6ced29
mkdir -p %{buildroot}%{_datadir}/git-core/contrib
6ced29
mv contrib/hooks %{buildroot}%{_datadir}/git-core/contrib
6ced29
pushd contrib > /dev/null
6ced29
ln -s ../../../git-core/contrib/hooks
6ced29
popd > /dev/null
6ced29
6ced29
# Install git-prompt.sh
6ced29
mkdir -p %{buildroot}%{_datadir}/git-core/contrib/completion
6ced29
install -pm 644 contrib/completion/git-prompt.sh \
6ced29
    %{buildroot}%{_datadir}/git-core/contrib/completion/
6ced29
6ced29
# install git-gui .desktop file
e9dbaa
desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{SOURCE12}
e9dbaa
e9dbaa
# symlink git-citool to git-gui if they are identical
e9dbaa
pushd %{buildroot}%{gitexecdir} >/dev/null
e9dbaa
if cmp -s git-gui git-citool 2>/dev/null; then
e9dbaa
    ln -svf git-gui git-citool
e9dbaa
fi
e9dbaa
popd >/dev/null
6ced29
6ced29
# find translations
e9dbaa
%find_lang %{name} %{name}.lang
e9dbaa
cat %{name}.lang >> bin-man-doc-files
6ced29
6ced29
# quiet some rpmlint complaints
6ced29
chmod -R g-w %{buildroot}
6ced29
chmod a-x %{buildroot}%{gitexecdir}/git-mergetool--lib
6ced29
# These files probably are not needed
6ced29
find . -regex '.*/\.\(git\(attributes\|ignore\)\|perlcriticrc\)' -delete
6ced29
chmod a-x Documentation/technical/api-index.sh
6ced29
find contrib -type f -print0 | xargs -r0 chmod -x
6ced29
6ced29
# Split core files
e99583
not_core_re="git-(add--interactive|contacts|credential-netrc|filter-branch|instaweb|request-pull|send-mail)|gitweb"
6ced29
grep -vE "$not_core_re|%{_mandir}" bin-man-doc-files > bin-files-core
6ced29
touch man-doc-files-core
6ced29
%if %{with docs}
6ced29
grep -vE "$not_core_re" bin-man-doc-files | grep "%{_mandir}" > man-doc-files-core
6ced29
%endif
e9dbaa
# endif with docs
6ced29
grep -E  "$not_core_re" bin-man-doc-files > bin-man-doc-git-files
6ced29
6ced29
##### DOC
6ced29
# place doc files into %%{_pkgdocdir} and split them into expected packages
6ced29
# contrib
e9dbaa
not_core_doc_re="(git-(cvs|gui|citool|daemon|instaweb|subtree))|p4|svn|email|gitk|gitweb"
6ced29
mkdir -p %{buildroot}%{_pkgdocdir}/
e9dbaa
cp -pr CODE_OF_CONDUCT.md README.md Documentation/*.txt Documentation/RelNotes contrib %{buildroot}%{_pkgdocdir}/
6ced29
# Remove contrib/ files/dirs which have nothing useful for documentation
6ced29
rm -rf %{buildroot}%{_pkgdocdir}/contrib/{contacts,credential,svn-fe}/
6ced29
cp -p gitweb/INSTALL %{buildroot}%{_pkgdocdir}/INSTALL.gitweb
6ced29
cp -p gitweb/README %{buildroot}%{_pkgdocdir}/README.gitweb
6ced29
6ced29
%if %{with docs}
6ced29
cp -pr Documentation/*.html Documentation/docbook-xsl.css %{buildroot}%{_pkgdocdir}/
6ced29
cp -pr Documentation/{howto,technical} %{buildroot}%{_pkgdocdir}/
6ced29
find %{buildroot}%{_pkgdocdir}/{howto,technical} -type f \
6ced29
    |grep -o "%{_pkgdocdir}.*$" >> man-doc-files-core
6ced29
%endif
e9dbaa
# endif with docs
6ced29
6ced29
{
6ced29
    find %{buildroot}%{_pkgdocdir} -type f -maxdepth 1 \
6ced29
        | grep -o "%{_pkgdocdir}.*$" \
6ced29
        | grep -vE "$not_core_doc_re"
6ced29
    find %{buildroot}%{_pkgdocdir}/{contrib,RelNotes} -type f \
6ced29
        | grep -o "%{_pkgdocdir}.*$"
6ced29
    find %{buildroot}%{_pkgdocdir} -type d | grep -o "%{_pkgdocdir}.*$" \
6ced29
        | sed "s/^/\%dir /"
6ced29
} >> man-doc-files-core
6ced29
##### #DOC
6ced29
6ced29
%check
e9dbaa
%if %{without tests}
e9dbaa
echo "*** Skipping tests"
e9dbaa
exit 0
e9dbaa
%endif
e9dbaa
# endif without tests
e9dbaa
6ced29
%if %{with docs} && %{with linkcheck}
6ced29
# Test links in HTML documentation
6ced29
find %{buildroot}%{_pkgdocdir} -name "*.html" -print0 | xargs -r0 linkchecker
6ced29
%endif
e9dbaa
# endif with docs && with linkcheck
6ced29
6ced29
# Tests to skip on all releases and architectures
6ced29
GIT_SKIP_TESTS=""
6ced29
6ced29
%ifarch aarch64 %{arm} %{power64}
6ced29
# Skip tests which fail on aarch64, arm, and ppc
6ced29
#
6ced29
# The following 2 tests use run_with_limited_cmdline, which calls ulimit -s 128
6ced29
# to limit the maximum stack size.
e9dbaa
# t5541.35 'push 2000 tags over http'
6ced29
# t5551.25 'clone the 2,000 tag repo to check OS command line overflow'
e9dbaa
GIT_SKIP_TESTS="$GIT_SKIP_TESTS t5541.35 t5551.25"
6ced29
%endif
e9dbaa
# endif aarch64 %%{arm} %%{power64}
6ced29
6ced29
%ifarch %{power64}
6ced29
# Skip tests which fail on ppc
6ced29
#
6ced29
# t9115-git-svn-dcommit-funky-renames is disabled because it frequently fails.
6ced29
# The port it uses (9115) is already in use.  It is unclear if this is
6ced29
# due to an issue in the test suite or a conflict with some other process on
6ced29
# the build host.  It only appears to occur on ppc-arches.
6ced29
GIT_SKIP_TESTS="$GIT_SKIP_TESTS t9115"
6ced29
%endif
e9dbaa
# endif %%{power64}
e9dbaa
6ced29
export GIT_SKIP_TESTS
6ced29
6ced29
# Set LANG so various UTF-8 tests are run
6ced29
export LANG=en_US.UTF-8
6ced29
6ced29
# Explicitly enable tests which may be skipped opportunistically
e99583
# Check for variables set via test_bool_env in the test suite:
e99583
#   git grep 'test_bool_env GIT_' -- t/{lib-,t[0-9]}*.sh |
e99583
#       sed -r 's/.* (GIT_[^ ]+) .*/\1/g' | sort -u 
6ced29
export GIT_TEST_GIT_DAEMON=true
6ced29
export GIT_TEST_HTTPD=true
6ced29
export GIT_TEST_SVNSERVE=true
e99583
export GIT_TEST_SVN_HTTPD=true
6ced29
e9dbaa
# Create tmpdir for test output and update GIT_TEST_OPTS
e9dbaa
# Also update GIT-BUILD-OPTIONS to keep make from any needless rebuilding
e9dbaa
testdir=$(mktemp -d -p /tmp git-t.XXXX)
e9dbaa
sed -i "s@^GIT_TEST_OPTS = .*@& --root=$testdir@" config.mak
e9dbaa
touch -r GIT-BUILD-OPTIONS ts
e9dbaa
sed -i "s@\(GIT_TEST_OPTS='.*\)'@\1 --root=$testdir'@" GIT-BUILD-OPTIONS
e9dbaa
touch -r ts GIT-BUILD-OPTIONS
e9dbaa
6ced29
# Run the tests
e9dbaa
%__make test || ./print-failed-test-output
e9dbaa
e9dbaa
# Run contrib/credential/netrc tests
e9dbaa
mkdir -p contrib/credential
e9dbaa
mv netrc contrib/credential/
e9dbaa
%make_build -C contrib/credential/netrc/ test || \
e9dbaa
%make_build -C contrib/credential/netrc/ testverbose
e9dbaa
e9dbaa
# Clean up test dir
e9dbaa
rmdir --ignore-fail-on-non-empty "$testdir"
6ced29
6ced29
%if %{use_systemd}
6ced29
%post daemon
e9dbaa
%systemd_post git.socket
6ced29
6ced29
%preun daemon
e9dbaa
%systemd_preun git.socket
6ced29
6ced29
%postun daemon
e9dbaa
%systemd_postun_with_restart git.socket
6ced29
%endif
e9dbaa
# endif use_systemd
6ced29
6ced29
%files -f bin-man-doc-git-files
6ced29
%if %{emacs_filesystem}
6ced29
%{elispdir}
6ced29
%endif
e9dbaa
# endif emacs_filesystem
6ced29
%{_datadir}/git-core/contrib/diff-highlight
6ced29
%{_datadir}/git-core/contrib/hooks/multimail
6ced29
%{_datadir}/git-core/contrib/hooks/update-paranoid
6ced29
%{_datadir}/git-core/contrib/hooks/setgitperms.perl
6ced29
%{_datadir}/git-core/templates/hooks/fsmonitor-watchman.sample
6ced29
%{_datadir}/git-core/templates/hooks/pre-rebase.sample
6ced29
%{_datadir}/git-core/templates/hooks/prepare-commit-msg.sample
6ced29
6ced29
%files all
6ced29
# No files for you!
6ced29
6ced29
%files core -f bin-files-core
6ced29
#NOTE: this is only use of the %%doc macro in this spec file and should not
6ced29
#      be used elsewhere
6ced29
%{!?_licensedir:%global license %doc}
6ced29
%license COPYING
6ced29
# exclude is best way here because of troubles with symlinks inside git-core/
6ced29
%exclude %{_datadir}/git-core/contrib/diff-highlight
6ced29
%exclude %{_datadir}/git-core/contrib/hooks/multimail
6ced29
%exclude %{_datadir}/git-core/contrib/hooks/update-paranoid
6ced29
%exclude %{_datadir}/git-core/contrib/hooks/setgitperms.perl
6ced29
%exclude %{_datadir}/git-core/templates/hooks/fsmonitor-watchman.sample
6ced29
%exclude %{_datadir}/git-core/templates/hooks/pre-rebase.sample
6ced29
%exclude %{_datadir}/git-core/templates/hooks/prepare-commit-msg.sample
6ced29
%{bashcomproot}
6ced29
%{_datadir}/git-core/
6ced29
6ced29
%files core-doc -f man-doc-files-core
6ced29
%if 0%{?rhel} && 0%{?rhel} <= 7
6ced29
# .py files are only bytecompiled on EL <= 7
6ced29
%exclude %{_pkgdocdir}/contrib/*/*.py[co]
6ced29
%endif
e9dbaa
# endif rhel <= 7
6ced29
%{_pkgdocdir}/contrib/hooks
6ced29
e9dbaa
%if %{with libsecret}
e9dbaa
%files credential-libsecret
e9dbaa
%defattr(-,root,root)
e9dbaa
%{gitexecdir}/git-credential-libsecret
e9dbaa
%endif
e9dbaa
# endif with libsecret
e9dbaa
6ced29
%if %{with cvs}
6ced29
%files cvs
6ced29
%{_pkgdocdir}/*git-cvs*.txt
6ced29
%{_bindir}/git-cvsserver
6ced29
%{gitexecdir}/*cvs*
6ced29
%{?with_docs:%{_mandir}/man1/*cvs*.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/*git-cvs*.html}
6ced29
%endif
e9dbaa
# endif with cvs
6ced29
6ced29
%files daemon
6ced29
%{_pkgdocdir}/git-daemon*.txt
6ced29
%if %{use_systemd}
e9dbaa
%{_unitdir}/git.socket
e9dbaa
%{_unitdir}/git@.service
6ced29
%else
e9dbaa
%config(noreplace)%{_sysconfdir}/xinetd.d/git
6ced29
%endif
e9dbaa
# endif use_systemd
6ced29
%{gitexecdir}/git-daemon
6ced29
%{_localstatedir}/lib/git
6ced29
%{?with_docs:%{_mandir}/man1/git-daemon*.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/git-daemon*.html}
6ced29
6ced29
%if ! %{emacs_filesystem}
e9dbaa
%files -n emacs-git
6ced29
%{_pkgdocdir}/contrib/emacs/README
6ced29
%{elispdir}
6ced29
%endif
e9dbaa
# endif ! emacs_filesystem
6ced29
6ced29
%files email
6ced29
%{_pkgdocdir}/*email*.txt
6ced29
%{gitexecdir}/*email*
6ced29
%{?with_docs:%{_mandir}/man1/*email*.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/*email*.html}
6ced29
e9dbaa
%files -n gitk
6ced29
%{_pkgdocdir}/*gitk*.txt
6ced29
%{_bindir}/*gitk*
6ced29
%{_datadir}/gitk
6ced29
%{?with_docs:%{_mandir}/man1/*gitk*.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/*gitk*.html}
6ced29
e9dbaa
%files -n gitweb
6ced29
%{_pkgdocdir}/*.gitweb
6ced29
%{_pkgdocdir}/gitweb*.txt
e9dbaa
%{?with_docs:%{_mandir}/man1/gitweb.1*}
e9dbaa
%{?with_docs:%{_mandir}/man5/gitweb.conf.5*}
6ced29
%{?with_docs:%{_pkgdocdir}/gitweb*.html}
e9dbaa
%config(noreplace)%{_sysconfdir}/gitweb.conf
e9dbaa
%config(noreplace)%{_sysconfdir}/httpd/conf.d/%{gitweb_httpd_conf}
6ced29
%{_localstatedir}/www/git/
6ced29
6ced29
%files gui
6ced29
%{gitexecdir}/git-gui*
6ced29
%{gitexecdir}/git-citool
e9dbaa
%{_datadir}/applications/*git-gui.desktop
6ced29
%{_datadir}/git-gui/
6ced29
%{_pkgdocdir}/git-gui.txt
6ced29
%{_pkgdocdir}/git-citool.txt
6ced29
%{?with_docs:%{_mandir}/man1/git-gui.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/git-gui.html}
6ced29
%{?with_docs:%{_mandir}/man1/git-citool.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/git-citool.html}
6ced29
e9dbaa
%files instaweb
e9dbaa
%defattr(-,root,root)
e9dbaa
%{gitexecdir}/git-instaweb
e9dbaa
%{_pkgdocdir}/git-instaweb.txt
e9dbaa
%{?with_docs:%{_mandir}/man1/git-instaweb.1*}
e9dbaa
%{?with_docs:%{_pkgdocdir}/git-instaweb.html}
e9dbaa
6ced29
%if %{with p4}
6ced29
%files p4
6ced29
%{gitexecdir}/*p4*
6ced29
%{gitexecdir}/mergetools/p4merge
6ced29
%{_pkgdocdir}/*p4*.txt
6ced29
%{?with_docs:%{_mandir}/man1/*p4*.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/*p4*.html}
6ced29
%endif
e9dbaa
# endif with p4
6ced29
e9dbaa
%files -n perl-Git -f perl-git-files
6ced29
%{?with_docs:%{_mandir}/man3/Git.3pm*}
6ced29
e9dbaa
%files -n perl-Git-SVN -f perl-git-svn-files
6ced29
6ced29
%files subtree
6ced29
%{gitexecdir}/git-subtree
6ced29
%{_pkgdocdir}/git-subtree.txt
6ced29
%{?with_docs:%{_mandir}/man1/git-subtree.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/git-subtree.html}
6ced29
6ced29
%files svn
6ced29
%{gitexecdir}/git-svn
6ced29
%{_pkgdocdir}/git-svn.txt
6ced29
%{?with_docs:%{_mandir}/man1/git-svn.1*}
6ced29
%{?with_docs:%{_pkgdocdir}/git-svn.html}
6ced29
6ced29
%changelog
e99583
* Thu Nov 25 2021 Ondrej Pohorelsky <opohorel@redhat.com> - 2.31.1-2
e99583
- Remove perl(Email::Valid) require from git-email
e99583
- Related: rhbz#2021547
e99583
e99583
* Fri Nov 19 2021 Ondrej Pohorelsky <opohorel@redhat.com> - 2.31.1-1
e99583
- Update to release 2.31.1
e99583
- Resolves: rhbz#2021547
e99583
e9dbaa
* Thu Jun 11 2020 Ondrej Pohorelsky <opohorel@redhat.com> - 2.27.0-1
e9dbaa
- Update to release 2.27.0
e9dbaa
- Resolves: rhbz#1825114
e9dbaa
e9dbaa
* Tue May 26 2020 Ondrej Pohorelsky <opohorel@redhat.com> - 2.26.2-1
e9dbaa
- Update to release 2.26.2
e9dbaa
- Resolves: rhbz#1825114
e9dbaa
e9dbaa
* Wed Apr 22 2020 Ondrej Pohorelsky <opohorel@redhat.com> - 2.18.4-1
e9dbaa
- Update to release 2.18.4
e9dbaa
- Resolves: CVE-2020-11008
e9dbaa
e9dbaa
* Thu Apr 9 2020 Ondrej Pohorelsky <opohorel@redhat.com> - 2.18.2-2
e9dbaa
- Crafted URL containing new lines can cause credential leak  
e9dbaa
- Resolves: CVE-2020-5260
e9dbaa
e9dbaa
* Tue Dec 17 2019 Ondrej Pohorelsky <opohorel@redhat.com> - 2.18.2-1
e9dbaa
- Update to release 2.18.2
e9dbaa
- Remote code execution in recursive clones with nested submodules
e9dbaa
  Resolves: CVE-2019-1387
e9dbaa
- Fixes CVE-2019-1348, CVE-2019-1349, CVE-2019-1350, CVE-2019-1351,	
e9dbaa
  CVE-2019-1352, CVE-2019-1353, CVE-2019-1354
e9dbaa
6ced29
* Tue Jun 11 2019 Marcel Plch <mplch@redhat.com> - 2.18.1-4
6ced29
- Use HMAC from libcrypto instead of git's implementation
6ced29
- Resolves: rhbz#1619113
6ced29
6ced29
* Tue Dec 11 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.1-3
6ced29
- apply upstream run-command PATH fix (CVE-2018-19486)
6ced29
- config: document value 2 for protocol.version (upstream patch)
6ced29
6ced29
* Thu Oct 11 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.1-2
6ced29
- Fix build when apr-util does not pull in apr-util-bdb, adapt the existing Fedora condition.
6ced29
  Problem caused by changes in #1633973 and #1491151.
6ced29
- Fix builds without docs and without cvs and/or p4 (from skisela)
6ced29
- Fix smart-http test due to changes in cookie sort order in curl-7.61.1
6ced29
6ced29
* Wed Oct 10 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.1-1
6ced29
- Update to release 2.18.1, fixes CVE-2018-17456: arbitrary code execution via .gitmodules
6ced29
6ced29
* Thu Aug  2 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.0-6
6ced29
- use the same spec file as for SCL (rhscl-3.2-rh-git218-rhel-7)
6ced29
6ced29
* Thu Jul 19 2018 Sebastian Kisela <skisela@redhat.com> - 2.18.0-5
6ced29
- Add %%{?scl_prefix} macros for services + desktop files.
6ced29
- Add tests, checking hardcoded content of dist git sources,
6ced29
written by pstodulk.
6ced29
- Make git-gui.desktop, git@.service and gitweb-httpd.conf content
6ced29
point to the correct scl paths.
6ced29
- Move instaweb to separate subpackage
6ced29
- Switch instaweb default HTTP daemon to httpd
6ced29
- Use the correct apache module directory in instaweb.
6ced29
- Build docs with TZ=UTC to make results deterministic.
6ced29
  Inspired by https://wiki.debian.org/ReproducibleBuilds/TimestampsInDocumentationGeneratedByAsciidoc
6ced29
6ced29
* Tue Jul 17 2018 Sebastian Kisela <skisela@redhat.com> - 2.18.0-4
6ced29
- Fix %%{perllibdir} path
6ced29
- %%{perllibdir} now points to where perl-git modules are installed.
6ced29
  This was introduced in fedora commit:
6ced29
  f3c13faa206935a844e09c7dc9d78d6325100ced.
6ced29
6ced29
* Tue Jul 17 2018 Sebastian Kisela <skisela@redhat.com> - 2.18.0-3
6ced29
- Initial rhscl-3.2-rh-git218 commit
6ced29
- Add %{scl*} macros to the spec file.
6ced29
6ced29
* Wed Jul 11 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.0-3
6ced29
- Disable link checking on RHEL again (partially reverts 2.17.0-3)
6ced29
6ced29
* Mon Jun 25 2018 Pavel Cahyna <pcahyna@redhat.com> - 2.18.0-2
6ced29
- Fix build --without cvs
6ced29
6ced29
* Wed Jun 20 2018 Todd Zullinger <tmz@pobox.com> - 2.18.0-1
6ced29
- Update to 2.18.0
6ced29
6ced29
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.18.0-0.3.rc2
6ced29
- Rebuilt for Python 3.7
6ced29
6ced29
* Wed Jun 13 2018 Todd Zullinger <tmz@pobox.com> - 2.18.0-0.2.rc2
6ced29
- Update to 2.18.0-rc2
6ced29
- Apply upstream zlib buffer handling patch (#1582555)
6ced29
6ced29
* Wed Jun 06 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Include git-contacts, SubmittingPatches suggests it to users
6ced29
- Build git-subtree docs in %%build
6ced29
6ced29
* Mon Jun 04 2018 Todd Zullinger <tmz@pobox.com> - 2.18.0-0.1.rc1
6ced29
- Update to 2.18.0-rc1
6ced29
- Drop flaky & out-of-place netrc credential helper tests
6ced29
6ced29
* Fri Jun 01 2018 Todd Zullinger <tmz@pobox.com> - 2.18.0-0.0.rc0.1
6ced29
- add -p: fix counting empty context lines in edited patches
6ced29
6ced29
* Wed May 30 2018 Todd Zullinger <tmz@pobox.com> - 2.18.0-0.0.rc0
6ced29
- Update to 2.18.0-rc0
6ced29
- Use new INSTALL_SYMLINKS setting
6ced29
6ced29
* Wed May 30 2018 Todd Zullinger <tmz@pobox.com> - 2.17.1-3
6ced29
- Use %%apply_patch for aarch64 zlib patch, return to %%autosetup
6ced29
- Disable jgit tests on s390x, they're unreliable
6ced29
- Use %%make_build and %%make_install
6ced29
6ced29
* Tue May 29 2018 Todd Zullinger <tmz@pobox.com> - 2.17.1-2
6ced29
- packfile: Correct zlib buffer handling (#1582555)
6ced29
6ced29
* Tue May 29 2018 Todd Zullinger <tmz@pobox.com> - 2.17.1-1
6ced29
- Update to 2.17.1 (CVE-2018-11233, CVE-2018-11235)
6ced29
6ced29
* Thu May 24 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-4
6ced29
- Fix segfault in rev-parse with invalid input (#1581678)
6ced29
- Move TEST_SHELL_PATH setting to config.mak
6ced29
6ced29
* Mon Apr 16 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-3
6ced29
- Move linkcheck macro to existing fedora/rhel > 7 block
6ced29
- Re-enable t5000-tar-tree.sh test on f28
6ced29
6ced29
* Fri Apr 13 2018 Pavel Cahyna <pcahyna@redhat.com>
6ced29
- Use BuildRequires: perl-interpreter per the packaging guidelines
6ced29
- Update conditions for future RHEL
6ced29
6ced29
* Tue Apr 10 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-2
6ced29
- Require perl-generators on EL > 7
6ced29
6ced29
* Mon Apr 09 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- daemon: use --log-destination=stderr with systemd
6ced29
- daemon: fix condition for redirecting stderr
6ced29
- git-svn: avoid uninitialized value warning
6ced29
6ced29
* Sun Apr 08 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Clean up redundant and unneeded Requires
6ced29
6ced29
* Sat Apr 07 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Remove Git::LoadCPAN to ensure we use only system perl modules
6ced29
6ced29
* Mon Apr 02 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Allow git-p4 subpackage to be toggled via --with/--without
6ced29
- Use %%bcond_(with|without) to enable/disable python3
6ced29
- Add support for disabling python2
6ced29
6ced29
* Mon Apr 02 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-1
6ced29
- Update to 2.17.0
6ced29
6ced29
* Wed Mar 28 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-0.2.rc2
6ced29
- Update to 2.17.0-rc2
6ced29
6ced29
* Tue Mar 27 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Allow cvs subpackage to be toggled via --with/--without
6ced29
6ced29
* Tue Mar 27 2018 Joe Orton <jorton@redhat.com>
6ced29
- Disable CVS support on EL > 7
6ced29
6ced29
* Tue Mar 27 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-0.1.rc1.2
6ced29
- Add missing perl(Mail::Address) requirement (#1561086)
6ced29
6ced29
* Thu Mar 22 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-0.1.rc1.1
6ced29
- Drop .py extension from contrib/hooks/multimail/git_multimail.py
6ced29
- Remove unnecessary "chmod +x contrib/hooks/*"
6ced29
6ced29
* Wed Mar 21 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-0.1.rc1
6ced29
- Update to 2.17.0-rc1
6ced29
6ced29
* Fri Mar 16 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Add findutils BuildRequires, improve 'find | xargs' calls
6ced29
6ced29
* Thu Mar 15 2018 Todd Zullinger <tmz@pobox.com> - 2.17.0-0.0.rc0
6ced29
- Update to 2.17.0-rc0
6ced29
- Adjust for simplified perl install
6ced29
- Require git-core rather than git for git-daemon
6ced29
- Rename gitweb httpd config file
6ced29
- Install contrib/diff-highlight (#1550251)
6ced29
6ced29
* Thu Mar 15 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Use symlinks instead of hardlinks for installed binaries
6ced29
6ced29
* Fri Feb 23 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Improve hardening flags for EL-6 & EL-7
6ced29
6ced29
* Fri Feb 16 2018 Todd Zullinger <tmz@pobox.com> - 2.16.2-1
6ced29
- Update to 2.16.2
6ced29
- Add gawk, gcc, make, and sed BuildRequires
6ced29
6ced29
* Wed Feb 07 2018 Todd Zullinger <tmz@pobox.com> - 2.16.1-3
6ced29
- Order %%files and %%packages sections by name
6ced29
- Remove obsolete %%defattr
6ced29
- Don't package contrib/svn-fe in %%doc
6ced29
- Split git-subtree into a separate package
6ced29
6ced29
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.16.1-2.1
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
6ced29
6ced29
* Mon Jan 29 2018 Todd Zullinger <tmz@pobox.com> - 2.16.1-2
6ced29
- git-svn: avoid segfaults in 'git svn branch', re-enable t9128, t9141, and
6ced29
  t9167
6ced29
- Drop obsolete BuildRoot, Group, %%clean, and buildroot cleanup
6ced29
6ced29
* Mon Jan 22 2018 Todd Zullinger <tmz@pobox.com> - 2.16.1-1
6ced29
- Update to 2.16.1
6ced29
- Avoid python dependency in git-core (#1536471)
6ced29
6ced29
* Thu Jan 18 2018 Todd Zullinger <tmz@pobox.com> - 2.16.0-1
6ced29
- Update to 2.16.0
6ced29
- Use 'prove' as test harness, enable shell tracing
6ced29
- Disable t5000-tar-tree.sh on x86 in f28
6ced29
6ced29
* Fri Jan 12 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Add %%{emacs_filesystem} to simplify emacs support
6ced29
- Use .in template for git@.service to ensure paths are substituted
6ced29
6ced29
* Thu Jan 11 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Update BuildRequires for tests
6ced29
6ced29
* Mon Jan 08 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Avoid excluding non-existent .py[co] files in %%doc
6ced29
- Remove obsolete gnome-keyring credential helper
6ced29
6ced29
* Sun Jan 07 2018 Todd Zullinger <tmz@pobox.com>
6ced29
- Explicitly enable tests which may be skipped opportunistically
6ced29
6ced29
* Sat Dec 30 2017 Todd Zullinger <tmz@pobox.com>
6ced29
- Fix perl requires filtering on EL-6
6ced29
6ced29
* Thu Nov 30 2017 Todd Zullinger <tmz@pobox.com> - 2.15.1-3
6ced29
- Include verbose logs in build output for 'make test' failures
6ced29
- Use %%autosetup macro to unpack and patch source
6ced29
- Remove second make invocation for doc build/install
6ced29
- Fix builds using '--without docs'
6ced29
- Mark git-core-docs sub-package noarch
6ced29
- Avoid failures in svnserve tests when run in parallel
6ced29
- Run tests in parallel by default on Fedora
6ced29
- Skip 'git svn branch' tests which fail intermittently
6ced29
- Re-enable grep tests on s390x
6ced29
6ced29
* Wed Nov 29 2017 Todd Zullinger <tmz@pobox.com> - 2.15.1-2
6ced29
- Fix debuginfo for gnome-keyring and libsecret credential helpers
6ced29
6ced29
* Tue Nov 28 2017 Todd Zullinger <tmz@pobox.com> - 2.15.1-1
6ced29
- Update to 2.15.1
6ced29
6ced29
* Tue Nov 21 2017 Todd Zullinger <tmz@pobox.com>
6ced29
- Add tcl/tk BuildRequires
6ced29
- Enable support for release candidate builds
6ced29
6ced29
* Tue Nov 07 2017 Todd Zullinger <tmz@pobox.com> - 2.15.0-2
6ced29
- Fix git-clone memory exhaustion (CVE-2017-15298)
6ced29
  Resolves: #1510455, #1510457
6ced29
- Disable cross-directory hardlinks
6ced29
- Drop ancient obsoletes for git and git-arch
6ced29
- Update summary/description of numerous subpackages
6ced29
- Fix shebang in a few places to silence rpmlint complaints
6ced29
- Fix t9020-remote-svn failure when setting PYTHON_PATH
6ced29
- Rename %%gitcoredir to %%gitexecdir; upstream uses the latter
6ced29
- Move commands which no longer require perl into git-core
6ced29
- Move filter-branch out of core, it needs perl now
6ced29
- Improve test suite coverage
6ced29
6ced29
* Mon Oct 30 2017 Todd Zullinger <tmz@pobox.com> - 2.15.0-1
6ced29
- Update to 2.15.0
6ced29
6ced29
* Mon Oct 23 2017 Todd Zullinger <tmz@pobox.com> - 2.14.3-1
6ced29
- Update to 2.14.3
6ced29
6ced29
* Tue Sep 26 2017 Todd Zullinger <tmz@pobox.com> - 2.14.2-2
6ced29
- Update to 2.14.2
6ced29
6ced29
* Thu Aug 10 2017 Todd Zullinger <tmz@pobox.com> - 2.14.1-2
6ced29
- Rebuild for rpm-4.14 bug (#1480407)
6ced29
6ced29
* Thu Aug 10 2017 Todd Zullinger <tmz@pobox.com> - 2.14.1-1
6ced29
- Update to 2.14.1 (resolves CVE-2017-1000117)
6ced29
6ced29
* Tue Aug 08 2017 Iryna Shcherbina <ishcherb@redhat.com> - 2.14.0-2
6ced29
- Add a build-time dependency on python2-devel for p4
6ced29
  Resolves: #1479713
6ced29
- Skip all grep tests on s390x for now because it failes intermittently
6ced29
6ced29
* Fri Aug 04 2017 Todd Zullinger <tmz@pobox.com> - 2.14.0-1
6ced29
- Update to 2.14.0
6ced29
- Use pcre2 library
6ced29
- git-p4: explicitly require python2
6ced29
6ced29
* Tue Aug 01 2017 Todd Zullinger <tmz@pobox.com> - 2.13.4-1
6ced29
- Update to 2.13.4
6ced29
- Remove EL-5 and old Fedora conditionals
6ced29
6ced29
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2.13.3-3
6ced29
- Rebuild with binutils fix for ppc64le (#1475636)
6ced29
6ced29
* Thu Jul 20 2017 Petr Stodulka <pstodulk@redhat.com> - 2.13.3-2
6ced29
- Move documentation files from all subpackages into the %%{_pkgdocdir}
6ced29
  directory, so links inside doc and man files are correct
6ced29
  Resolves: #1357438
6ced29
- Quiet a few rpmlint complaints regarding hidden files in contrib dir
6ced29
- Remove explicit libcurl requirement from git-core
6ced29
6ced29
* Thu Jul 13 2017 Gwyn Ciesla <limburgher@gmail.com> - 2.13.3-1
6ced29
- Update to 2.13.3
6ced29
6ced29
* Sun Jun 25 2017 Todd Zullinger <tmz@pobox.com> - 2.13.2-1
6ced29
- Update to 2.13.2
6ced29
- Skip grep tests which fail intermittently on s390x
6ced29
6ced29
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.13.1-2
6ced29
- Perl 5.26 re-rebuild of bootstrapped packages
6ced29
6ced29
* Mon Jun 05 2017 Todd Zullinger <tmz@pobox.com> - 2.13.1-1
6ced29
- Update to 2.13.1
6ced29
6ced29
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.13.0-3
6ced29
- Perl 5.26 rebuild
6ced29
6ced29
* Wed May 17 2017 Todd Zullinger <tmz@pobox.com> - 2.13.0-2
6ced29
- Use default, collision-detecting SHA1 implementation
6ced29
6ced29
* Tue May 09 2017 Todd Zullinger <tmz@pobox.com> - 2.13.0-1
6ced29
- Update to 2.13.0 (resolves CVE-2017-8386)
6ced29
6ced29
* Wed Mar 29 2017 Gwyn Ciesla <limburgher@gmail.com> - 2.12.2-1
6ced29
- Update to 2.12.2
6ced29
6ced29
* Tue Mar 21 2017 Gwyn Ciesla <limburgher@gmail.com> - 2.12.1-1
6ced29
- Update to 2.12.1
6ced29
6ced29
* Mon Feb 27 2017 Jon Ciesla <limburgher@gmail.com> - 2.12.0-1
6ced29
- Update to 2.12.0
6ced29
6ced29
* Fri Feb 17 2017 Petr Stodulka <pstodulk@redhat.com> - 2.11.1-3
6ced29
- remove non-ASCII characters from description and title of packages
6ced29
- fix requiremets
6ced29
- fix spec to be compatible for other systems
6ced29
- remove deprecated credential-gnome-keyring
6ced29
6ced29
* Fri Feb 17 2017 Todd Zullinger <tmz@pobox.com> - 2.11.1-3
6ced29
- Remove unnecessary rsync requirement from git-core
6ced29
- Move gnome-keyring credential helper from git-core to git
6ced29
- Enable libsecret credential helper
6ced29
- Run git test suite
6ced29
- Use %%{_mandir} in git/git-core file list filters
6ced29
- Fix version of emacs-git and emacs-git-el provides
6ced29
- Clean up contrib/{credential,subtree} to avoid cruft in git-core-doc
6ced29
- Fix a number of macro-in-comment warnings from rpmlint
6ced29
6ced29
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6ced29
6ced29
* Fri Feb 03 2017 Jon Ciesla <limburgher@gmail.com> - 2.11.1-1
6ced29
- Update to 2.11.1
6ced29
6ced29
* Wed Nov 30 2016 Jon Ciesla <limburgher@gmail.com> - 2.11.0-1
6ced29
- Update to 2.11.0
6ced29
6ced29
* Mon Oct 31 2016 Jon Ciesla <limburgher@gmail.com> - 2.10.2-1
6ced29
- Update to 2.10.2
6ced29
6ced29
* Tue Oct 04 2016 Jon Ciesla <limburgher@gmail.com> - 2.10.1-1
6ced29
- Update to 2.10.1
6ced29
6ced29
* Sat Sep 03 2016 Todd Zullinger <tmz@pobox.com> - 2.10.0-1
6ced29
- Update to 2.10.0
6ced29
6ced29
* Mon Aug 15 2016 Jon Ciesla <limburgher@gmail.com> - 2.9.3-1
6ced29
- Update to 2.9.3.
6ced29
6ced29
* Fri Jul 15 2016 Jon Ciesla <limburgher@gmail.com> - 2.9.2-1
6ced29
- Update to 2.9.2.
6ced29
6ced29
* Tue Jul 12 2016 Jon Ciesla <limburgher@gmail.com> - 2.9.1-1
6ced29
- Update to 2.9.1.
6ced29
6ced29
* Tue Jun 14 2016 Jon Ciesla <limburgher@gmail.com> - 2.9.0-1
6ced29
- Update to 2.9.0.
6ced29
6ced29
* Wed Jun 08 2016 Jon Ciesla <limburgher@gmail.com> - 2.8.4-1
6ced29
- Update to 2.8.4.
6ced29
6ced29
* Fri May 20 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.8.3-2
6ced29
- Perl 5.24 rebuild
6ced29
6ced29
* Thu May 19 2016 Todd Zullinger <tmz@pobox.com> - 2.8.3-1
6ced29
- Update to 2.8.3
6ced29
6ced29
* Thu May 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.8.2-5
6ced29
- Perl 5.24 re-rebuild of bootstrapped packages
6ced29
6ced29
* Wed May 18 2016 Todd Zullinger <tmz@pobox.com> - 2.8.2-4
6ced29
- Use perl(MOD::NAME) format for perl-DBD-SQLite and perl-Digest-MD5 deps
6ced29
- Define __global_ldflags on EL < 7 (#1337137)
6ced29
6ced29
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.8.2-3
6ced29
- Perl 5.24 re-rebuild of bootstrapped packages
6ced29
6ced29
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.8.2-2
6ced29
- Perl 5.24 rebuild
6ced29
6ced29
* Fri Apr 29 2016 Todd Zullinger <tmz@pobox.com> - 2.8.2-1
6ced29
- Update to 2.8.2
6ced29
6ced29
* Mon Apr 11 2016 Todd Zullinger <tmz@pobox.com> - 2.8.1-3
6ced29
- Set LDFLAGS for hardened builds (#1289728)
6ced29
6ced29
* Wed Apr 06 2016 Paolo Bonzini <pbonzini@redhat.com> - 2.8.1-2
6ced29
- Install git-credentials-netrc (#1303358)
6ced29
6ced29
* Tue Apr 05 2016 Jon Ciesla <limburgher@gmail.com> - 2.8.1-1
6ced29
- Update to 2.8.1.
6ced29
6ced29
* Tue Mar 29 2016 Neal Gompa <ngompa13{%}gmail{*}com> - 2.8.0-1
6ced29
- Update to 2.8.0
6ced29
- Use license macro for COPYING
6ced29
6ced29
* Sun Mar 27 2016 Todd Zullinger <tmz@pobox.com> - 2.7.4-2
6ced29
- Use https for URL / Source and smaller tar.xz files
6ced29
- Check upstream GPG signatures in %%prep
6ced29
6ced29
* Tue Mar 22 2016 Konrad Scherer <Konrad.Scherer@windriver.com>
6ced29
- Workaround missing git subtree documentation in prebuilt docs (bug 1320210)
6ced29
- Only add git-cvsserver binary once if the core dir matches the bin dir as it
6ced29
  does on el5 (bug 1320210)
6ced29
6ced29
* Tue Mar 22 2016 Todd Zullinger <tmz@pobox.com>
6ced29
- Conditionalize bash-completion pkg-config usage for EL <= 6 (bug 1320210)
6ced29
6ced29
* Fri Mar 18 2016 David Woodhouse <dwmw2@infradead.org> - 2.7.4-1
6ced29
- Update to 2.7.4 (for CVE-2016-2315, CVE-2016-2324)
6ced29
  Resolves: #1318220
6ced29
6ced29
* Mon Mar 14 2016 Jon Ciesla <limburgher@gmail.com> - 2.7.3-1
6ced29
- Update to 2.7.3.
6ced29
6ced29
* Tue Feb 23 2016 Jon Ciesla <limburgher@gmail.com> - 2.7.2-1
6ced29
- Update to 2.7.2.
6ced29
6ced29
* Sat Feb 06 2016 Jon Ciesla <limburgher@gmail.com> - 2.7.1-1
6ced29
- Update to 2.7.1.
6ced29
6ced29
* Thu Feb 04 2016 Petr Stodulka <pstodulk@redhat.com> - 2.7.0-3
6ced29
- remove all '.gitignore' files from packages
6ced29
6ced29
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6ced29
6ced29
* Tue Jan 05 2016 Jon Ciesla <limburgher@gmail.com> - 2.7.0-1
6ced29
- Update to 2.7.0.
6ced29
- Infinite loop patch appears obsolete.
6ced29
6ced29
* Wed Dec 09 2015 Jon Ciesla <limburgher@gmail.com> - 2.6.4-1
6ced29
- Update to 2.6.4.
6ced29
6ced29
* Fri Nov 27 2015 Petr Stodulka <pstodulk@redhat.com> - 2.6.3-2
6ced29
- found 2 perl scripts in git-core, move them to git package
6ced29
  (#1284688)
6ced29
6ced29
* Fri Nov 06 2015 Jon Ciesla <limburgher@gmail.com> - 2.6.3-1
6ced29
- Update to 2.6.3.
6ced29
6ced29
* Tue Nov 03 2015 Petr Stodulka <pstodulk@gmail.com> - 2.6.2-2
6ced29
- provides failback for the macro _pkgdocdir (#1277550)
6ced29
6ced29
* Sat Oct 17 2015 Jon Ciesla <limburgher@gmail.com> - 2.6.2-1
6ced29
- Update to 2.6.2.
6ced29
6ced29
* Tue Oct 06 2015 Jon Ciesla <limburgher@gmail.com> - 2.6.1-1
6ced29
- Update to 2.6.1.
6ced29
6ced29
* Tue Sep 29 2015 Jon Ciesla <limburgher@gmail.com> - 2.6.0-1
6ced29
- Update to 2.6.0.
6ced29
6ced29
* Fri Sep 18 2015 Jon Ciesla <limburgher@gmail.com> - 2.5.3-1
6ced29
- Update to 2.5.3.
6ced29
6ced29
* Fri Sep 11 2015 Jon Ciesla <limburgher@gmail.com> - 2.5.2-1
6ced29
- Update to 2.5.2.
6ced29
6ced29
* Sat Aug 29 2015 Petr Stodulka <pstodulk@redhat.com> - 2.5.1-1
6ced29
- Update to 2.5.1
6ced29
6ced29
* Tue Jul 28 2015 Jon Ciesla <limburgher@gmail.com> - 2.5.0-1
6ced29
- Update to 2.5.0.
6ced29
6ced29
* Thu Jul 16 2015 Petr Stodulka <pstodulk@redhat.com> - 2.4.6-1
6ced29
- New upstream release 2.4.6
6ced29
6ced29
* Tue Jul  7 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 2.4.5-2
6ced29
- Comply with modern Emacs packaging guidelines on recent Fedora
6ced29
  No longer split out emacs-git and emacs-git-el sub-packages on recent Fedora
6ced29
  Require emacs-filesystem on recent Fedora (#1234552)
6ced29
6ced29
* Fri Jun 26 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.5-1
6ced29
- Update to 2.4.5.
6ced29
6ced29
* Mon Jun 22 2015  Petr Stodulka <pstodulk@gmail.com> - 2.4.4-2
6ced29
- git-svn - added requires for perl-Digest-MD5 (#1218176)
6ced29
- solve troubles with infinite loop due to broken symlink (probably
6ced29
  shouldn't be problem here, but it's reproducible manually)
6ced29
  (#1204193)
6ced29
6ced29
* Tue Jun 16 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.4-1
6ced29
- Update to 2.4.4.
6ced29
6ced29
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.4.3-4
6ced29
- Perl 5.22 re-rebuild of bootstrapped packages
6ced29
6ced29
* Tue Jun 09 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.4.3-3
6ced29
- Perl 5.22 rebuild
6ced29
6ced29
* Mon Jun 08 2015 Petr Stodulka <pstodulk@redhat.com> - 2.4.3-2
6ced29
- separate documentation files from git-core package to git-core-doc
6ced29
  including core man pages
6ced29
6ced29
* Sat Jun 06 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.3-1
6ced29
- Update to 2.4.3.
6ced29
6ced29
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com>
6ced29
- Perl 5.22 rebuild
6ced29
6ced29
* Wed Jun 03 2015 Petr Stodulka <pstodulk@redhat.com> - 2.4.2-2
6ced29
- split create subpackage git-core (perl-less) from git package
6ced29
- git package requires git-core and it has same tool set as
6ced29
  before
6ced29
- relevant docs are part of git-core package too
6ced29
- removed proved and obsoletes in git for git-core
6ced29
6ced29
* Tue May 26 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.2-1
6ced29
- Update to 2.4.2.
6ced29
6ced29
* Thu May 14 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.1-1
6ced29
- Update to 2.4.1.
6ced29
6ced29
* Fri May 01 2015 Jon Ciesla <limburgher@gmail.com> - 2.4.0-1
6ced29
- Update to 2.4.0.
6ced29
6ced29
* Tue Apr 28 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.7-1
6ced29
- Update to 2.3.7.
6ced29
6ced29
* Wed Apr 22 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.6-1
6ced29
- Update to 2.3.6.
6ced29
6ced29
* Mon Apr 06 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.5-1
6ced29
- Update to 2.3.5.
6ced29
6ced29
* Tue Mar 24 2015 Petr Stodulka <pstodulk@redhat.com> - 2.3.4-1
6ced29
- Update to 2.3.4.
6ced29
6ced29
* Mon Mar 16 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.3-1
6ced29
- Update to 2.3.3.
6ced29
6ced29
* Mon Mar 09 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.2-1
6ced29
- Update to 2.3.2.
6ced29
6ced29
* Fri Feb 27 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.1-1
6ced29
- Update to 2.3.1.
6ced29
6ced29
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.3.0-2
6ced29
- Rebuilt for Fedora 23 Change
6ced29
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
6ced29
6ced29
* Fri Feb 06 2015 Jon Ciesla <limburgher@gmail.com> - 2.3.0-1
6ced29
- Update to 2.3.0.
6ced29
6ced29
* Tue Jan 27 2015 Ville Skyttä <ville.skytta@iki.fi> - 2.2.2-2
6ced29
- Install bash completion to %%{_datadir}/bash-completion/completions
6ced29
6ced29
* Fri Jan 23 2015 Jon Ciesla <limburgher@gmail.com> - 2.2.2-1
6ced29
- Update to 2.2.2.
6ced29
6ced29
* Thu Jan 08 2015 Jon Ciesla <limburgher@gmail.com> - 2.2.1-1
6ced29
- Update to 2.2.1.
6ced29
6ced29
* Thu Dec 11 2014 Petr Stodulka <pstodulk@redhat.com> - 2.2.0-3
6ced29
- removed subpackage git-hg which is replaced by git-remote-hg from
6ced29
  separated package
6ced29
6ced29
* Fri Nov 28 2014 Petr Stodulka <pstodulk@redhat.com> - 2.2.0-2
6ced29
- removed subpackage git-bzr which is replaced by git-remote-bzr from
6ced29
  separated package
6ced29
6ced29
* Fri Nov 28 2014 Petr Stodulka <pstodulk@redhat.com> - 2.2.0-1
6ced29
- 2.2.0
6ced29
6ced29
* Fri Oct 24 2014 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.1.0-5
6ced29
- Rename the git.service into git@.service fixing
6ced29
  https://bugzilla.redhat.com/980574
6ced29
6ced29
* Mon Sep 08 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.1.0-4
6ced29
- Perl 5.20 re-rebuild of bootstrapped packages
6ced29
6ced29
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.1.0-3
6ced29
- Perl 5.20 rebuild
6ced29
6ced29
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.1.0-2
6ced29
- Disable requires perl(Term::ReadKey) when perl bootstraping
6ced29
6ced29
* Mon Aug 18 2014 Ondrej Oprala 
6ced29
- 2.1.0
6ced29
6ced29
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6ced29
6ced29
* Thu Jul 31 2014 Ondrej Oprala 
6ced29
- 2.0.4
6ced29
6ced29
* Mon Jul 28 2014 Ondrej Oprala 
6ced29
- 2.0.3
6ced29
6ced29
* Fri Jul 11 2014 Ondrej Oprala 
6ced29
- 2.0.1
6ced29
6ced29
* Tue Jun 10 2014 Ondrej Oprala <ooprala@redhat.com> - 2.0.0-4
6ced29
- Change source URLs, as googlecode doesn't have up-to-date tarballs
6ced29
6ced29
* Tue Jun 10 2014 Ondrej Oprala <ooprala@redhat.com> - 2.0.0-3
6ced29
- Conditionalize an ancient obsolete
6ced29
6ced29
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6ced29
6ced29
* Thu May 29 2014 Ondrej Oprala <ooprala@redhat.com> - 2.0.0-1
6ced29
- Update to 2.0.0
6ced29
6ced29
* Mon May 19 2014 Jon Ciesla <limburgher@gmail.com> - 1.9.3-1
6ced29
- Update to 1.9.3
6ced29
6ced29
* Mon Feb 17 2014 Ondrej Oprala <ooprala@redhat.com> - 1.9.0-1
6ced29
- Update to 1.9.0
6ced29
6ced29
* Thu Jan 16 2014 Todd Zullinger <tmz@pobox.com> - 1.8.5.3-2
6ced29
- Drop unused python DESTIR patch
6ced29
- Consolidate settings for Fedora 19+ and EL 7+
6ced29
- Use new rpm filtering on Fedora 19+ and EL 7+
6ced29
- Rebuild with file-5.14-14 (#1026760)
6ced29
6ced29
* Thu Jan 16 2014 Ondrej Oprala <ooprala@redhat.com> - 1.8.5.3-1
6ced29
* Update to 1.8.5.3
6ced29
6ced29
* Wed Dec 18 2013 Ondrej Oprala <ooprala@redhat.com> - 1.8.5.2-1
6ced29
* Update to 1.8.5.2
6ced29
6ced29
* Wed Nov 13 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.8.4.2-2
6ced29
- Fix htmldir when doc dir is unversioned (#993779).
6ced29
6ced29
* Tue Oct 29 2013 Todd Zullinger <tmz@pobox.com> - 1.8.4.2-1
6ced29
- Update to 1.8.4.2 (#1024497)
6ced29
6ced29
* Sat Oct 05 2013 Todd Zullinger <tmz@pobox.com>
6ced29
- Add mercurial version requirement to git-hg, for those rebuilding on EL
6ced29
6ced29
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.3.1-3
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6ced29
6ced29
* Mon Jul 15 2013 Petr Pisar <ppisar@redhat.com> - 1.8.3.1-2
6ced29
- Perl 5.18 rebuild
6ced29
6ced29
* Fri Jun 14 2013 Todd Zullinger <tmz@pobox.com> - 1.8.3.1-1
6ced29
- Update to 1.8.3.1
6ced29
- Add bzr and hg subpackages, thanks to Michael Scherer (#974800)
6ced29
6ced29
* Mon May 13 2013 Jon Ciesla <limburgher@gmail.com> - 1.8.2.1-4
6ced29
- Fix typo introduced in 1.8.2-3, fixed desktop tag.
6ced29
6ced29
* Wed May  1 2013 Tom Callaway <spot@fedoraproject.org> - 1.8.2.1-3
6ced29
- conditionalize systemd vs xinetd
6ced29
- cleanup systemd handling (it was not quite right in -2)
6ced29
6ced29
* Tue Apr 30 2013 Tom Callaway <spot@fedoraproject.org> - 1.8.2.1-2
6ced29
- switch to systemd instead of xinetd (bz 737183)
6ced29
6ced29
* Sun Apr 14 2013 Todd Zullinger <tmz@pobox.com> - 1.8.2.1-1
6ced29
- Update to 1.8.2.1
6ced29
- Exclude optional perl(YAML::Any) dependency on EL-5
6ced29
6ced29
* Wed Apr 10 2013 Jon Ciesla <limburgher@gmail.com> - 1.8.2-3
6ced29
- Drop desktop vendor tag for >= f19.
6ced29
6ced29
* Wed Mar 27 2013 Todd Zullinger <tmz@pobox.com> - 1.8.2-2
6ced29
- Require perl(Term::ReadKey) for git add --interactive (#928328)
6ced29
- Drop DESTDIR from python instlibdir
6ced29
- Fix bogus changelog dates
6ced29
6ced29
* Tue Mar 19 2013 Adam Tkac <atkac redhat com> - 1.8.2-1
6ced29
- update to 1.8.2
6ced29
- 0001-DESTDIR-support-in-contrib-subtree-Makefile.patch has been merged
6ced29
6ced29
* Tue Feb 26 2013 Todd Zullinger <tmz@pobox.com> - 1.8.1.4-2
6ced29
- Update asciidoc requirements, drop unsupported ASCIIDOC7
6ced29
- Define GNU_ROFF to force ASCII apostrophes in manpages (so copy/paste works)
6ced29
- Install tcsh completion (requires manual setup by users)
6ced29
- Clean up dist conditionals, don't pretend to support EL-4 builds
6ced29
- Use prebuilt documentation on EL-5, where asciidoc is too old
6ced29
- Respect gitexecdir variable in git-subtree install
6ced29
6ced29
* Wed Feb 20 2013 Adam Tkac <atkac redhat com> - 1.8.1.4-1
6ced29
- update to 1.8.1.4
6ced29
6ced29
* Wed Jan 30 2013 Adam Tkac <atkac redhat com> - 1.8.1.2-1
6ced29
- update to 1.8.1.2
6ced29
- own directories which should be owned (#902517)
6ced29
6ced29
* Thu Jan 03 2013 Adam Tkac <atkac redhat com> - 1.8.1-1
6ced29
- update to 1.8.1
6ced29
- build git-svn as arch subpkg due to new git-remote-testsvn binary
6ced29
6ced29
* Tue Dec 11 2012 Adam Tkac <atkac redhat com> - 1.8.0.2-1
6ced29
- update to 1.8.0.2
6ced29
6ced29
* Thu Dec 06 2012 Adam Tkac <atkac redhat com> - 1.8.0.1-2
6ced29
- don't install some unneeded credential-gnome-keyring stuff
6ced29
6ced29
* Thu Nov 29 2012 Adam Tkac <atkac redhat com> - 1.8.0.1-1
6ced29
- update to 1.8.0.1
6ced29
- include git-subtree in git rpm (#864651)
6ced29
6ced29
* Mon Oct 29 2012 Adam Tkac <atkac redhat com> - 1.8.0-1
6ced29
- update to 1.8.0
6ced29
- include git-credential-gnome-keyring helper in git pkg
6ced29
- 0001-cvsimport-strip-all-inappropriate-tag-strings.patch was merged
6ced29
6ced29
* Thu Oct 25 2012 Adam Tkac <atkac redhat com> - 1.7.12.1-2
6ced29
- move git-prompt.sh into usr/share/git-core/contrib/completion (#854061)
6ced29
6ced29
* Thu Sep 27 2012 Adam Tkac <atkac redhat com> - 1.7.12.1-1
6ced29
- update to 1.7.12.1
6ced29
- cvsimport should skip more characters (#850640)
6ced29
6ced29
* Thu Aug 23 2012 Todd Zullinger <tmz@pobox.com> - 1.7.12-2
6ced29
- Install git-prompt.sh which provides __git_ps1()
6ced29
6ced29
* Wed Aug 22 2012 Adam Tkac <atkac redhat com> - 1.7.12-1
6ced29
- update to 1.7.12
6ced29
6ced29
* Wed Aug 15 2012 Todd Zullinger <tmz@pobox.com> - 1.7.11.5-1
6ced29
- Update to 1.7.11.5
6ced29
- Add git-p4 subpackage (#844008)
6ced29
6ced29
* Tue Aug 07 2012 Adam Tkac <atkac redhat com> - 1.7.11.4-1
6ced29
- update to 1.7.11.4
6ced29
6ced29
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.11.2-3
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6ced29
6ced29
* Wed Jul 25 2012 Todd Zullinger <tmz@pobox.com> - 1.7.11.2-2
6ced29
- Split perl(Git::SVN) into its own package (#843182)
6ced29
6ced29
* Mon Jul 16 2012 Adam Tkac <atkac redhat com> - 1.7.11.2-1
6ced29
- update to 1.7.11.2
6ced29
6ced29
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1.7.10.4-2
6ced29
- Perl 5.16 rebuild
6ced29
6ced29
* Fri Jun 15 2012 Adam Tkac <atkac redhat com> - 1.7.10.4-1
6ced29
- update to 1.7.10.4
6ced29
6ced29
* Thu Jun 07 2012 Petr Pisar <ppisar@redhat.com> - 1.7.10.2-2
6ced29
- Perl 5.16 rebuild
6ced29
6ced29
* Mon May 14 2012 Adam Tkac <atkac redhat com> - 1.7.10.2-1
6ced29
- update to 1.7.10.2
6ced29
6ced29
* Thu May 03 2012 Adam Tkac <atkac redhat com> - 1.7.10.1-1
6ced29
- update to 1.7.10.1
6ced29
6ced29
* Tue Apr 10 2012 Adam Tkac <atkac redhat com> - 1.7.10-1
6ced29
- update to 1.7.10
6ced29
6ced29
* Fri Mar 30 2012 Adam Tkac <atkac redhat com> - 1.7.9.5-1
6ced29
- update to 1.7.9.5
6ced29
6ced29
* Thu Mar 08 2012 Adam Tkac <atkac redhat com> - 1.7.9.3-1
6ced29
- update to 1.7.9.3
6ced29
6ced29
* Wed Feb 15 2012 Todd Zullinger <tmz@pobox.com> - 1.7.9.1-1
6ced29
- Update to 1.7.9.1
6ced29
- Fix EPEL builds (rpm doesn't accept multiple -f options in %%files)
6ced29
6ced29
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.7.9-2
6ced29
- Rebuild against PCRE 8.30
6ced29
6ced29
* Mon Jan 30 2012 Adam Tkac <atkac redhat com> - 1.7.9-1
6ced29
- update to 1.7.9
6ced29
6ced29
* Thu Jan 19 2012 Adam Tkac <atkac redhat com> - 1.7.8.4-1
6ced29
- update to 1.7.8.4
6ced29
6ced29
* Thu Jan 12 2012 Adam Tkac <atkac redhat com> - 1.7.8.3-1
6ced29
- update to 1.7.8.3
6ced29
6ced29
* Mon Jan 02 2012 Adam Tkac <atkac redhat com> - 1.7.8.2-1
6ced29
- update to 1.7.8.2
6ced29
6ced29
* Fri Dec 23 2011 Adam Tkac <atkac redhat com> - 1.7.8.1-1
6ced29
- update to 1.7.8.1
6ced29
6ced29
* Wed Dec 07 2011 Adam Tkac <atkac redhat com> - 1.7.8-1
6ced29
- update to 1.7.8
6ced29
6ced29
* Tue Nov 29 2011 Adam Tkac <atkac redhat com> - 1.7.7.4-1
6ced29
- update to 1.7.7.4
6ced29
6ced29
* Thu Nov 10 2011 Adam Tkac <atkac redhat com> - 1.7.7.3-1
6ced29
- update to 1.7.7.3
6ced29
6ced29
* Mon Nov 07 2011 Adam Tkac <atkac redhat com> - 1.7.7.2-1
6ced29
- update to 1.7.7.2
6ced29
6ced29
* Tue Nov 01 2011 Adam Tkac <atkac redhat com> - 1.7.7.1-1
6ced29
- update to 1.7.7.1
6ced29
6ced29
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.7-2
6ced29
- Rebuilt for glibc bug#747377
6ced29
6ced29
* Thu Oct 20 2011 Adam Tkac <atkac redhat com> - 1.7.7-1
6ced29
- update to 1.7.7
6ced29
  - git-1.6-update-contrib-hooks-path.patch is no longer needed
6ced29
6ced29
* Mon Sep 26 2011 Adam Tkac <atkac redhat com> - 1.7.6.4-1
6ced29
- update to 1.7.6.4
6ced29
6ced29
* Wed Sep 07 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.2-1
6ced29
- Update to 1.7.6.2
6ced29
- Fixes incompatibility caused by git push --quiet fix
6ced29
  http://thread.gmane.org/gmane.comp.version-control.git/180652
6ced29
6ced29
* Mon Aug 29 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.1-2
6ced29
- Build with PCRE support (#734269)
6ced29
6ced29
* Fri Aug 26 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6.1-1
6ced29
- Update to 1.7.6.1
6ced29
- Include gpg signature for tarball in SRPM
6ced29
6ced29
* Fri Aug 05 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6-5
6ced29
- Fix git push --quiet, thanks to Clemens Buchacher (#725593)
6ced29
- Obsolete git-arch as needed
6ced29
6ced29
* Tue Jul 26 2011 Todd Zullinger <tmz@pobox.com> - 1.7.6-4
6ced29
- Drop git-arch on fedora >= 16, the tla package has been retired
6ced29
- Rework most spec file dist conditionals to make future changes easier
6ced29
6ced29
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 1.7.6-3
6ced29
- Perl mass rebuild
6ced29
6ced29
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 1.7.6-2
6ced29
- Perl mass rebuild
6ced29
6ced29
* Wed Jun 29 2011 Adam Tkac <atkac redhat com> - 1.7.6-1
6ced29
- update to 1.7.6
6ced29
6ced29
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.7.5.4-2
6ced29
- Perl mass rebuild
6ced29
6ced29
* Thu Jun 09 2011 Adam Tkac <atkac redhat com> - 1.7.5.4-1
6ced29
- update to 1.7.5.4
6ced29
6ced29
* Tue May 24 2011 Adam Tkac <atkac redhat com> - 1.7.5.2-1
6ced29
- update to 1.7.5.2
6ced29
6ced29
* Thu May 05 2011 Adam Tkac <atkac redhat com> - 1.7.5.1-1
6ced29
- update to 1.7.5.1
6ced29
6ced29
* Wed Apr 27 2011 Adam Tkac <atkac redhat com> - 1.7.5-1
6ced29
- update to 1.7.5
6ced29
6ced29
* Mon Apr 11 2011 Adam Tkac <atkac redhat com> - 1.7.4.4-1
6ced29
- update to 1.7.4.4
6ced29
6ced29
* Mon Mar 28 2011 Adam Tkac <atkac redhat com> - 1.7.4.2-1
6ced29
- update to 1.7.4.2
6ced29
- move man3/Git.3pm file to perl-Git subpkg (#664889)
6ced29
- add perl-DBD-SQLite dependency to git-cvs (#602410)
6ced29
6ced29
* Sun Feb 13 2011 Todd Zullinger <tmz@pobox.com> - 1.7.4.1-1
6ced29
- Update to 1.7.4.1
6ced29
- Clean up documentation settings (the defaults changed in 1.7.4)
6ced29
- Improve EL-5 compatibility, thanks to Kevin Fenzi for emacs testing
6ced29
6ced29
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6ced29
6ced29
* Mon Jan 31 2011 Adam Tkac <atkac redhat com> - 1.7.4-1
6ced29
- update to 1.7.4
6ced29
6ced29
* Wed Jan 19 2011 Adam Tkac <atkac redhat com> - 1.7.3.5-1
6ced29
- update to 1.7.3.5
6ced29
6ced29
* Thu Dec 16 2010 Adam Tkac <atkac redhat com> - 1.7.3.4-1
6ced29
- update to 1.7.3.4
6ced29
6ced29
* Mon Dec 06 2010 Adam Tkac <atkac redhat com> - 1.7.3.3-1
6ced29
- update to 1.7.3.3
6ced29
6ced29
* Fri Oct 22 2010 Adam Tkac <atkac redhat com> - 1.7.3.2-1
6ced29
- update to 1.7.3.2
6ced29
6ced29
* Thu Sep 30 2010 Adam Tkac <atkac redhat com> - 1.7.3.1-1
6ced29
- update to 1.7.3.1
6ced29
6ced29
* Wed Sep 29 2010 jkeating - 1.7.3-3
6ced29
- Rebuilt for gcc bug 634757
6ced29
6ced29
* Mon Sep 20 2010 Todd Zullinger <tmz@pobox.com> - 1.7.3-2
6ced29
- Ensure the release notes are included in %%doc
6ced29
6ced29
* Sun Sep 19 2010 Todd Zullinger <tmz@pobox.com> - 1.7.3-1
6ced29
- Update to 1.7.3
6ced29
6ced29
* Tue Sep 07 2010 Adam Tkac <atkac redhat com> - 1.7.2.3-1
6ced29
- update to 1.7.2.3
6ced29
6ced29
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> - 1.7.2.2-1
6ced29
- update to 1.7.2.2
6ced29
6ced29
* Fri Jul 30 2010 Thomas Spura <tomspur@fedoraproject.org> - 1.7.2.1-2
6ced29
- cherry-pick: "Do not unquote + into ' ' in URLs"
6ced29
6ced29
* Thu Jul 29 2010 Todd Zullinger <tmz@pobox.com> - 1.7.2.1-1
6ced29
- Update to git-1.7.2.1
6ced29
6ced29
* Thu Jul 22 2010 Adam Tkac <atkac redhat com> - 1.7.2-1
6ced29
- update to 1.7.2
6ced29
6ced29
* Fri Jul 02 2010 Adam Tkac <atkac redhat com> - 1.7.1.1-1
6ced29
- update to 1.7.1.1
6ced29
6ced29
* Fri Jun 25 2010 Adam Tkac <atkac redhat com> - 1.7.1-2
6ced29
- rebuild against new perl
6ced29
6ced29
* Tue May 04 2010 Todd Zullinger <tmz@pobox.com> - 1.7.1-1
6ced29
- git-1.7.1
6ced29
- Fix conditionals for EL-6
6ced29
- Comply with Emacs add-on packaging guidelines (#573423), Jonathan Underwood
6ced29
  - Place elisp source files in separate emacs-git-el package
6ced29
  - Place git support files in own directory under site-lisp
6ced29
  - Use Emacs packaging macros
6ced29
6ced29
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.7.0.1-2
6ced29
- Mass rebuild with perl-5.12.0
6ced29
6ced29
* Mon Mar 01 2010 Todd Zullinger <tmz@pobox.com> - 1.7.0.1-1
6ced29
- git-1.7.0.1
6ced29
6ced29
* Sat Feb 13 2010 Todd Zullinger <tmz@pobox.com> - 1.7.0-1
6ced29
- git-1.7.0
6ced29
- Link imap-send with libcrypto (#565147)
6ced29
- Disable building of unused python remote helper libs
6ced29
6ced29
* Tue Jan 26 2010 Todd Zullinger <tmz@pobox.com> - 1.6.6.1-1
6ced29
- git-1.6.6.1
6ced29
- Use %%{gitcoredir}/git-daemon as xinetd server option, for SELinux (#529682)
6ced29
- Make %%{_var}/lib/git the default gitweb projectroot (#556299)
6ced29
- Include gitweb/INSTALL file as documentation, the gitweb README refers to it
6ced29
- Ship a short example gitweb config file (%%{_sysconfdir}/gitweb.conf)
6ced29
- Remove long fixed xinetd IPv6 workaround on Fedora (#557528)
6ced29
- Install missing gitweb.js (#558740)
6ced29
6ced29
* Wed Dec 23 2009 Todd Zullinger <tmz@pobox.com> - 1.6.6-1
6ced29
- git-1.6.6
6ced29
6ced29
* Fri Dec 11 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.6-1
6ced29
- git-1.6.5.6
6ced29
6ced29
* Sun Dec 06 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.5-1
6ced29
- git-1.6.5.5
6ced29
6ced29
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 1.6.5.3-2
6ced29
- rebuild against perl 5.10.1
6ced29
6ced29
* Sat Nov 21 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.3-1
6ced29
- git-1.6.5.3
6ced29
- Only BR perl(Error) on Fedora and RHEL >= 5
6ced29
- Use config.mak to set build options
6ced29
- Improve compatibility with EPEL
6ced29
- Replace $RPM_BUILD_ROOT with %%{buildroot}
6ced29
- Fix Obsoletes for those rebuilding on EL-4
6ced29
6ced29
* Mon Oct 26 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.2-1
6ced29
- git-1.6.5.2
6ced29
- Drop asciidoc --unsafe option, it should not be needed anymore
6ced29
- Don't use install -t/-T, they're not compatible with older coreutils
6ced29
- Don't use -perm /a+x with find, it's incompatible with older findutils
6ced29
6ced29
* Sat Oct 17 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5.1-1
6ced29
- git-1.6.5.1
6ced29
6ced29
* Sun Oct 11 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5-1
6ced29
- git-1.6.5
6ced29
6ced29
* Mon Sep 28 2009 Todd Zullinger <tmz@pobox.com> - 1.6.5-0.2.rc2
6ced29
- git-1.6.5.rc2
6ced29
- Enable Linus' block-sha1 implementation
6ced29
6ced29
* Wed Sep 16 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.4-1
6ced29
- git-1.6.4.4
6ced29
6ced29
* Sun Sep 13 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.3-1
6ced29
- git-1.6.4.3
6ced29
6ced29
* Sun Aug 30 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.2-1
6ced29
- git-1.6.4.2
6ced29
6ced29
* Sat Aug 22 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4.1-1
6ced29
- git-1.6.4.1
6ced29
6ced29
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.6.4-2
6ced29
- rebuilt with new openssl
6ced29
6ced29
* Wed Jul 29 2009 Todd Zullinger <tmz@pobox.com> - 1.6.4-1
6ced29
- git-1.6.4
6ced29
6ced29
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3.3-2
6ced29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6ced29
6ced29
* Sun Jun 28 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.3-1
6ced29
- git-1.6.3.3
6ced29
- Move contributed hooks to %%{_datadir}/git-core/contrib/hooks (bug 500137)
6ced29
- Fix rpmlint warnings about Summary and git-mergetool--lib missing shebang
6ced29
6ced29
* Fri Jun 19 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-3
6ced29
- Temporarily disable asciidoc's safe mode until bug 506953 is fixed
6ced29
6ced29
* Fri Jun 19 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-2
6ced29
- Fix git-daemon hang on invalid input (CVE-2009-2108, bug 505761)
6ced29
6ced29
* Fri Jun 05 2009 Todd Zullinger <tmz@pobox.com> - 1.6.3.2-1
6ced29
- git-1.6.3.2
6ced29
- Require emacs >= 22.2 for emacs support (bug 495312)
6ced29
- Add a .desktop file for git-gui (bug 498801)
6ced29
- Set ASCIIDOC8 and ASCIIDOC_NO_ROFF to correct documentation issues,
6ced29
  the sed hack to fix bug 485161 should no longer be needed
6ced29
- Escape newline in git-daemon xinetd description (bug 502393)
6ced29
- Add xinetd to git-daemon Requires (bug 504105)
6ced29
- Organize BuildRequires/Requires, drop redundant expat Requires
6ced29
- Only build noarch subpackages on Fedora >= 10
6ced29
- Only build emacs and arch subpackages on Fedora
6ced29
- Handle curl/libcurl naming for EPEL and Fedora
6ced29
6ced29
* Fri Apr 03 2009 Todd Zullinger <tmz@pobox.com> - 1.6.2.2-1
6ced29
- git-1.6.2.2
6ced29
- Include contrib/ dir in %%doc (bug 492490)
6ced29
- Don't set DOCBOOK_XSL_172, fix the '\&.ft' with sed (bug 485161)
6ced29
- Ignore Branches output from cvsps-2.2b1 (bug 490602)
6ced29
- Remove shebang from bash-completion script
6ced29
- Include README in gitweb subpackage
6ced29
6ced29
* Mon Mar 09 2009 Todd Zullinger <tmz@pobox.com> - 1.6.2-1
6ced29
- git-1.6.2
6ced29
- Include contrib/emacs/README in emacs subpackage
6ced29
- Drop upstreamed git-web--browse patch
6ced29
6ced29
* Tue Feb 24 2009 Todd Zullinger <tmz@pobox.com> - 1.6.1.3-2
6ced29
- Require perl(Authen::SASL) in git-email (bug 483062)
6ced29
- Build many of the subpackages as noarch
6ced29
- Update URL field
6ced29
6ced29
* Mon Feb 09 2009 Todd Zullinger <tmz@pobox.com> 1.6.1.3-1
6ced29
- git-1.6.1.3
6ced29
- Set htmldir so "git help -w <command>" works
6ced29
- Patch git-web--browse to not use "/sbin/start" to browse
6ced29
- Include git-daemon documentation in the git-daemon package
6ced29
6ced29
* Thu Jan 29 2009 Josh Boyer <jwboyer@gmail.com> 1.6.1.2-1
6ced29
- git-1.6.1.2
6ced29
6ced29
* Mon Jan 26 2009 Todd Zullinger <tmz@pobox.com> 1.6.1.1-1
6ced29
- git-1.6.1.1
6ced29
- Make compile more verbose
6ced29
6ced29
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 1.6.1-2
6ced29
- rebuild with new openssl
6ced29
6ced29
* Sat Jan 03 2009 Todd Zullinger <tmz@pobox.com> 1.6.1-1
6ced29
- Install git-* commands in %%{_libexecdir}/git-core, the upstream default
6ced29
- Remove libcurl from Requires, rpm will pick this up automatically
6ced29
- Consolidate build/install options in %%make_git (Roland McGrath)
6ced29
- Include DirectoryIndex in gitweb httpd-config (bug 471692)
6ced29
- Define DOCBOOK_XSL_172 to fix minor manpage issues
6ced29
- Rename %%{_var}/lib/git-daemon to %%{_var}/lib/git
6ced29
- Preserve timestamps on installed files
6ced29
- Quiet some rpmlint complaints
6ced29
- Use macros more consistently
6ced29
6ced29
* Sat Dec 20 2008 Todd Zullinger <tmz@pobox.com> 1.6.0.6-1
6ced29
- git-1.6.0.6
6ced29
- Fixes a local privilege escalation bug in gitweb
6ced29
  (http://article.gmane.org/gmane.comp.version-control.git/103624)
6ced29
- Add gitk Requires to git-gui (bug 476308)
6ced29
6ced29
* Thu Dec 11 2008 Josh Boyer <jboyer@gmail.com> 1.6.0.5-1
6ced29
- git-1.6.0.5
6ced29
6ced29
* Mon Nov 17 2008 Seth Vidal <skvidal at fedoraproject.org>
6ced29
- switch from /srv/git to /var/lib/git-daemon for packaging rules compliance
6ced29
6ced29
* Fri Nov 14 2008 Josh Boyer <jwboyer@gmail.com> 1.6.0.4-1
6ced29
- git-1.6.0.4
6ced29
6ced29
* Wed Oct 22 2008 Josh Boyer <jwboyer@gmail.com> 1.6.0.3-1
6ced29
- git-1.6.0.3
6ced29
- Drop curl requirement in favor of libcurl (bug 449388)
6ced29
- Add requires for SMTP-SSL perl module to make git-send-email work (bug 443615)
6ced29
6ced29
* Thu Aug 28 2008 James Bowes <jbowes@redhat.com> 1.6.0.1-1
6ced29
- git-1.6.0.1
6ced29
6ced29
* Thu Jul 24 2008 James Bowes <jbowes@redhat.com> 1.5.6-4
6ced29
- git-1.5.6.4
6ced29
6ced29
* Thu Jun 19 2008 James Bowes <jbowes@redhat.com> 1.5.6-1
6ced29
- git-1.5.6
6ced29
6ced29
* Tue Jun  3 2008 Stepan Kasal <skasal@redhat.com> 1.5.5.3-2
6ced29
- use tar.bz2 instead of tar.gz
6ced29
6ced29
* Wed May 28 2008 James Bowes <jbowes@redhat.com> 1.5.5.3-1
6ced29
- git-1.5.5.3
6ced29
6ced29
* Mon May 26 2008 James Bowes <jbowes@redhat.com> 1.5.5.2-1
6ced29
- git-1.5.5.2
6ced29
6ced29
* Mon Apr 21 2008 James Bowes <jbowes@redhat.com> 1.5.5.1-1
6ced29
- git-1.5.5.1
6ced29
6ced29
* Wed Apr 09 2008 James Bowes <jbowes@redhat.com> 1.5.5-1
6ced29
- git-1.5.5
6ced29
6ced29
* Fri Apr 04 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-3
6ced29
- Remove the last two requires on git-core.
6ced29
6ced29
* Wed Apr 02 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-2
6ced29
- Remove a patch that's already upstream.
6ced29
6ced29
* Fri Mar 28 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-1
6ced29
- git-1.5.4.5
6ced29
6ced29
* Wed Mar 26 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-4
6ced29
- Own /etc/bash_completion.d in case bash-completion isn't installed.
6ced29
6ced29
* Tue Mar 25 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-3
6ced29
- Include the sample hooks from contrib/hooks as docs (bug 321151).
6ced29
- Install the bash completion script from contrib (bug 433255).
6ced29
- Include the html docs in the 'core' package again (bug 434271).
6ced29
6ced29
* Wed Mar 19 2008 James Bowes 1.5.4.4-2
6ced29
- Obsolete git <= 1.5.4.3, to catch going from F8 to rawhide/F9
6ced29
6ced29
* Thu Mar 13 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-1
6ced29
- git-1.5.4.4
6ced29
6ced29
* Mon Mar  3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4.3-3
6ced29
- rebuild for new perl (again)
6ced29
6ced29
* Sun Feb 24 2008 Bernardo Innocenti <bernie@codewiz.org> 1.5.4.3-2
6ced29
- Do not silently overwrite /etc/httpd/conf.d/git.conf
6ced29
6ced29
* Sat Feb 23 2008 James Bowes <jbowes@redhat.com> 1.5.4.3-1
6ced29
- git-1.5.4.3
6ced29
- Include Kristian Høgsberg's changes to rename git-core to
6ced29
  git and git to git-all.
6ced29
6ced29
* Sun Feb 17 2008 James Bowes <jbowes@redhat.com> 1.5.4.2-1
6ced29
- git-1.5.4.2
6ced29
6ced29
* Mon Feb 11 2008 Jeremy Katz <katzj@redhat.com> - 1.5.4.1-2
6ced29
- Add upstream patch (e62a641de17b172ffc4d3a803085c8afbfbec3d1) to have 
6ced29
  gitweb rss feeds point be commitdiffs instead of commit
6ced29
6ced29
* Sun Feb 10 2008 James Bowes <jbowes@redhat.com> 1.5.4.1-1
6ced29
- git-1.5.4.1
6ced29
6ced29
* Tue Feb 05 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4-3
6ced29
- rebuild for new perl
6ced29
6ced29
* Sun Feb 03 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
6ced29
- Add BuidRequires on gettext.
6ced29
6ced29
* Sat Feb 02 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
6ced29
- git-1.5.4
6ced29
6ced29
* Tue Jan 08 2008 James Bowes <jbowes@redhat.com> 1.5.3.8-1
6ced29
- git-1.5.3.8
6ced29
6ced29
* Fri Dec 21 2007 James Bowes <jbowes@redhat.com> 1.5.3.7-2
6ced29
- Have git metapackage require explicit versions (bug 247214)
6ced29
6ced29
* Mon Dec 03 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.7-1
6ced29
- git-1.5.3.7
6ced29
6ced29
* Tue Nov 27 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.6-1
6ced29
- git-1.5.3.6
6ced29
- git-core requires perl(Error) (bug 367861)
6ced29
- git-svn requires perl(Term:ReadKey) (bug 261361)
6ced29
- git-email requires perl-Git (bug 333061)
6ced29
6ced29
* Wed Oct 24 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.5.3.4-2
6ced29
- git-Perl requires Error package
6ced29
6ced29
* Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.4-1
6ced29
- git-1.5.3.4
6ced29
6ced29
* Sun Sep 30 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-1
6ced29
- git-1.5.3.3
6ced29
6ced29
* Wed Sep 26 2007 James Bowes <jbowes@redhat.com> 1.5.3.2-1
6ced29
- git-1.5.3.2
6ced29
6ced29
* Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-2
6ced29
- Include git-gui and git-citool docs
6ced29
6ced29
* Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-1
6ced29
- git-1.5.3.1-1
6ced29
6ced29
* Thu Aug 23 2007 James Bowes <jbowes@redhat.com> 1.5.2.5-1
6ced29
- git-1.5.2.5-1
6ced29
6ced29
* Fri Aug 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.4-1
6ced29
- git-1.5.2.4-1
6ced29
6ced29
* Tue Jul 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-3
6ced29
- Add git-daemon and gitweb packages
6ced29
6ced29
* Thu Jun 21 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-2
6ced29
- Add emacs-git package (#235431)
6ced29
6ced29
* Mon Jun 18 2007 James Bowes <jbowes@redhat.com> 1.5.2.2-1
6ced29
- git-1.5.2.2
6ced29
6ced29
* Fri Jun 08 2007 James Bowes <jbowes@redhat.com> 1.5.2.1-1
6ced29
- git-1.5.2.1
6ced29
6ced29
* Sun May 13 2007 Quy Tonthat <qtonthat@gmail.com>
6ced29
- Added lib files for git-gui
6ced29
- Added Documentation/technical (As needed by Git Users Manual)
6ced29
6ced29
* Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
6ced29
- Added howto files
6ced29
6ced29
* Fri Mar 30 2007 Chris Wright <chrisw@redhat.com> 1.5.0.6-1
6ced29
- git-1.5.0.6
6ced29
6ced29
* Mon Mar 19 2007 Chris Wright <chrisw@redhat.com> 1.5.0.5-1
6ced29
- git-1.5.0.5
6ced29
6ced29
* Tue Mar 13 2007 Chris Wright <chrisw@redhat.com> 1.5.0.3-1
6ced29
- git-1.5.0.3
6ced29
6ced29
* Fri Mar 2 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-2
6ced29
- BuildRequires perl-devel as of perl-5.8.8-14 (bz 230680)
6ced29
6ced29
* Mon Feb 26 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-1
6ced29
- git-1.5.0.2
6ced29
6ced29
* Tue Feb 13 2007 Nicolas Pitre <nico@cam.org>
6ced29
- Update core package description (Git isn't as stupid as it used to be)
6ced29
6ced29
* Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
6ced29
- Add git-gui and git-citool.
6ced29
6ced29
* Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-2
6ced29
- no need to install manpages executable (bz 216790)
6ced29
- use bytes for git-cvsserver
6ced29
6ced29
* Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-1
6ced29
- git-1.4.4.2
6ced29
6ced29
* Mon Nov 6 2006 Jindrich Novy <jnovy@redhat.com> 1.4.2.4-2
6ced29
- rebuild against the new curl
6ced29
6ced29
* Tue Oct 17 2006 Chris Wright <chrisw@redhat.com> 1.4.2.4-1
6ced29
- git-1.4.2.4
6ced29
6ced29
* Wed Oct 4 2006 Chris Wright <chrisw@redhat.com> 1.4.2.3-1
6ced29
- git-1.4.2.3
6ced29
6ced29
* Fri Sep 22 2006 Chris Wright <chrisw@redhat.com> 1.4.2.1-1
6ced29
- git-1.4.2.1
6ced29
6ced29
* Mon Sep 11 2006 Chris Wright <chrisw@redhat.com> 1.4.2-1
6ced29
- git-1.4.2
6ced29
6ced29
* Thu Jul 6 2006 Chris Wright <chrisw@redhat.com> 1.4.1-1
6ced29
- git-1.4.1
6ced29
6ced29
* Tue Jun 13 2006 Chris Wright <chrisw@redhat.com> 1.4.0-1
6ced29
- git-1.4.0
6ced29
6ced29
* Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.3-1
6ced29
- git-1.3.3
6ced29
- enable git-email building, prereqs have been relaxed
6ced29
6ced29
* Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.2-1
6ced29
- git-1.3.2
6ced29
6ced29
* Fri Apr 28 2006 Chris Wright <chrisw@redhat.com> 1.3.1-1
6ced29
- git-1.3.1
6ced29
6ced29
* Wed Apr 19 2006 Chris Wright <chrisw@redhat.com> 1.3.0-1
6ced29
- git-1.3.0
6ced29
6ced29
* Mon Apr 10 2006 Chris Wright <chrisw@redhat.com> 1.2.6-1
6ced29
- git-1.2.6
6ced29
6ced29
* Wed Apr 5 2006 Chris Wright <chrisw@redhat.com> 1.2.5-1
6ced29
- git-1.2.5
6ced29
6ced29
* Wed Mar 1 2006 Chris Wright <chrisw@redhat.com> 1.2.4-1
6ced29
- git-1.2.4
6ced29
6ced29
* Wed Feb 22 2006 Chris Wright <chrisw@redhat.com> 1.2.3-1
6ced29
- git-1.2.3
6ced29
6ced29
* Tue Feb 21 2006 Chris Wright <chrisw@redhat.com> 1.2.2-1
6ced29
- git-1.2.2
6ced29
6ced29
* Thu Feb 16 2006 Chris Wright <chrisw@redhat.com> 1.2.1-1
6ced29
- git-1.2.1
6ced29
6ced29
* Mon Feb 13 2006 Chris Wright <chrisw@redhat.com> 1.2.0-1
6ced29
- git-1.2.0
6ced29
6ced29
* Wed Feb 1 2006 Chris Wright <chrisw@redhat.com> 1.1.6-1
6ced29
- git-1.1.6
6ced29
6ced29
* Tue Jan 24 2006 Chris Wright <chrisw@redhat.com> 1.1.4-1
6ced29
- git-1.1.4
6ced29
6ced29
* Sun Jan 15 2006 Chris Wright <chrisw@redhat.com> 1.1.2-1
6ced29
- git-1.1.2
6ced29
6ced29
* Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.1-1
6ced29
- git-1.1.1
6ced29
6ced29
* Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.0-1
6ced29
- Update to latest git-1.1.0 (drop git-email for now)
6ced29
- Now creates multiple packages:
6ced29
-        git-core, git-svn, git-cvs, git-arch, gitk
6ced29
6ced29
* Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
6ced29
- Change subpackage names to git-<name> instead of git-core-<name>
6ced29
- Create empty root package which brings in all subpackages
6ced29
- Rename git-tk -> gitk
6ced29
6ced29
* Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
6ced29
- zlib dependency fix
6ced29
- Minor cleanups from split
6ced29
- Move arch import to separate package as well
6ced29
6ced29
* Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
6ced29
- Move programs with non-standard dependencies (svn, cvs, email)
6ced29
  into separate packages
6ced29
6ced29
* Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
6ced29
- parallelize build
6ced29
- COPTS -> CFLAGS
6ced29
6ced29
* Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
6ced29
- update to 0.99.6
6ced29
6ced29
* Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
6ced29
- Linus noticed that less is required, added to the dependencies
6ced29
6ced29
* Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
6ced29
- Updated dependencies
6ced29
- Don't assume manpages are gzipped
6ced29
6ced29
* Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
6ced29
- drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
6ced29
- use RPM_OPT_FLAGS in spec file, drop patch0
6ced29
6ced29
* Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
6ced29
- use dist tag to differentiate between branches
6ced29
- use rpm optflags by default (patch0)
6ced29
- own %%{_datadir}/git-core/
6ced29
6ced29
* Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
6ced29
- update spec file to fix Buildroot, Requires, and drop Vendor
6ced29
6ced29
* Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
6ced29
- Redid the description
6ced29
- Cut overlong make line, loosened changelog a bit
6ced29
- I think Junio (or perhaps OSDL?) should be vendor...
6ced29
6ced29
* Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
6ced29
- Add the man pages, and the --without docs build option
6ced29
6ced29
* Thu Jul 7 2005 Chris Wright <chris@osdl.org>
6ced29
- initial git spec file