96574f
# set to zero to avoid running test suite
96574f
%bcond_without tests
96574f
96574f
%if 0%{?rhel} || 0%{?eln}
96574f
%bcond_with kwallet
96574f
%else
96574f
%bcond_without kwallet
96574f
%endif
96574f
96574f
%if 0%{?fedora} > 32 || 0%{?rhel} > 8
96574f
%bcond_with bdb
96574f
%else
96574f
%bcond_without bdb
96574f
%endif
96574f
96574f
# Python 2 for F<32, Python 3 for F>=32 and RHEL>=9
96574f
%if 0%{?fedora} < 32 && 0%{?rhel} < 9
96574f
%bcond_without python2
96574f
%bcond_with python3
96574f
%bcond_without pyswig
96574f
%bcond_without ruby
96574f
%else
96574f
%bcond_with python2
96574f
%bcond_without python3
96574f
%bcond_without pyswig
96574f
%bcond_without ruby
96574f
%endif
96574f
96574f
%ifarch %{power64} s390x
96574f
%global with_java 0
96574f
%else
96574f
%global with_java 1
96574f
%endif
96574f
96574f
%if %{with python2} == %{with python3}
96574f
%error Pick exactly one Python version
96574f
%endif
96574f
96574f
# set JDK path to build javahl; default for JPackage
96574f
%define jdk_path /usr/lib/jvm/java
96574f
96574f
%{!?_httpd_mmn: %{expand: %%global _httpd_mmn %%(cat %{_includedir}/httpd/.mmn 2>/dev/null || echo 0-0)}}
96574f
96574f
%define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
96574f
96574f
%if %{with python2}
96574f
%global svn_python_sitearch %{python2_sitearch}
96574f
%global svn_python %{__python2}
96574f
%global svn_python_br python2-devel
96574f
%else
96574f
%global svn_python_sitearch %{python3_sitearch}
96574f
%global svn_python %{__python3}
96574f
%global svn_python_br python3-devel
96574f
%endif
96574f
96574f
Summary: A Modern Concurrent Version Control System
96574f
Name: subversion
96574f
Version: 1.14.1
858fce
Release: 5%{?dist}
96574f
License: ASL 2.0
96574f
URL: https://subversion.apache.org/
96574f
Source0: https://downloads.apache.org/subversion/subversion-%{version}.tar.bz2
96574f
Source1: subversion.conf
96574f
Source3: filter-requires.sh
96574f
Source4: http://www.xsteve.at/prg/emacs/psvn.el
96574f
Source5: psvn-init.el
96574f
Source6: svnserve.service
96574f
Source7: svnserve.tmpfiles
96574f
Source8: svnserve.sysconf
96574f
Patch1: subversion-1.12.0-linking.patch
96574f
Patch2: subversion-1.14.0-testwarn.patch
96574f
Patch3: subversion-1.14.0-soversion.patch
96574f
Patch4: subversion-1.8.0-rubybind.patch
96574f
Patch5: subversion-1.8.5-swigplWall.patch
858fce
Patch6: subversion-1.14.1-testnoautoprops.patch            
858fce
Patch7: subversion-1.14.1-fixjavatests.patch
858fce
Patch8: subversion-1.14.1-CVE-2022-24070.patch
858fce
858fce
96574f
BuildRequires: make
96574f
BuildRequires: autoconf, libtool, texinfo, which, gcc, gcc-c++
96574f
BuildRequires: swig >= 1.3.24, gettext
96574f
%if %{with bdb}
96574f
BuildRequires: libdb-devel >= 4.1.25
96574f
%endif
96574f
BuildRequires: %{svn_python_br}
96574f
BuildRequires: apr-devel >= 1.5.0, apr-util-devel >= 1.3.0
96574f
BuildRequires: libserf-devel >= 1.3.0, cyrus-sasl-devel
96574f
BuildRequires: sqlite-devel >= 3.4.0, file-devel, systemd-units
96574f
BuildRequires: utf8proc-devel, lz4-devel
96574f
# Any apr-util crypto backend needed
96574f
BuildRequires: apr-util-openssl
96574f
# For systemctl scriptlets
96574f
Requires(post): systemd
96574f
Requires(preun): systemd
96574f
Requires(postun): systemd
96574f
Provides: svn = %{version}-%{release}
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
96574f
%define __perl_requires %{SOURCE3}
96574f
96574f
# Put Python bindings in site-packages
96574f
%define swigdirs swig_pydir=%{svn_python_sitearch}/libsvn swig_pydir_extra=%{svn_python_sitearch}/svn
96574f
96574f
%description
96574f
Subversion is a concurrent version control system which enables one
96574f
or more users to collaborate in developing and maintaining a
96574f
hierarchy of files and directories while keeping a history of all
96574f
changes.  Subversion only stores the differences between versions,
96574f
instead of every complete file.  Subversion is intended to be a
96574f
compelling replacement for CVS.
96574f
96574f
%package libs
96574f
Summary: Libraries for Subversion Version Control system
96574f
# APR 1.3.x interfaces are required
96574f
Conflicts: apr%{?_isa} < 1.5.0
96574f
# Enforced at run-time by ra_serf
96574f
Conflicts: libserf%{?_isa} < 1.3.0
96574f
96574f
%description libs
96574f
The subversion-libs package includes the essential shared libraries
96574f
used by the Subversion version control tools.
96574f
96574f
%if %{with python2} && %{with pyswig}
96574f
%package -n python2-subversion
96574f
%{?python_provide:%python_provide python2-subversion}
96574f
# Remove before F30
96574f
Provides: %{name}-python = %{version}-%{release}
96574f
Provides: %{name}-python%{?_isa} = %{version}-%{release}
96574f
Obsoletes: %{name}-python < %{version}-%{release}
96574f
BuildRequires: python2-devel
96574f
Summary: Python bindings for Subversion Version Control system
96574f
96574f
%description -n python2-subversion
96574f
The python2-subversion package includes the Python 2.x bindings to the
96574f
Subversion libraries.
96574f
%endif
96574f
%if %{with python3} && %{with pyswig}
96574f
%package -n python3-subversion
96574f
%{?python_provide:%python_provide python3-subversion}
96574f
Summary: Python bindings for Subversion Version Control system
96574f
BuildRequires: python3-devel py3c-devel
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
96574f
%description -n python3-subversion
96574f
The python3-subversion package includes the Python 3.x bindings to the
96574f
Subversion libraries.
96574f
%endif
96574f
96574f
%package devel
96574f
Summary: Development package for the Subversion libraries
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
Requires: apr-devel%{?_isa}, apr-util-devel%{?_isa}
96574f
96574f
%description devel
96574f
The subversion-devel package includes the libraries and include files
96574f
for developers interacting with the subversion package.
96574f
96574f
%package gnome
96574f
Summary: GNOME Keyring support for Subversion
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
BuildRequires: dbus-devel, libsecret-devel
96574f
96574f
%description gnome
96574f
The subversion-gnome package adds support for storing Subversion
96574f
passwords in the GNOME Keyring.
96574f
96574f
%if %{with kwallet}
96574f
%package kde
96574f
Summary: KDE Wallet support for Subversion
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
BuildRequires: qt5-qtbase-devel >= 5.0.0, kf5-kwallet-devel, kf5-ki18n-devel
96574f
BuildRequires: kf5-kcoreaddons-devel
96574f
96574f
%description kde
96574f
The subversion-kde package adds support for storing Subversion
96574f
passwords in the KDE Wallet.
96574f
%endif
96574f
96574f
%package -n mod_dav_svn
96574f
Summary: Apache httpd module for Subversion server
96574f
Requires: httpd-mmn = %{_httpd_mmn}
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
BuildRequires: httpd-devel >= 2.0.45
96574f
96574f
%description -n mod_dav_svn
96574f
The mod_dav_svn package allows access to a Subversion repository
96574f
using HTTP, via the Apache httpd server.
96574f
96574f
%package perl
96574f
Summary: Perl bindings to the Subversion libraries
96574f
BuildRequires: perl-devel >= 2:5.8.0, perl-generators, perl(ExtUtils::MakeMaker)
96574f
BuildRequires: perl(Test::More), perl(ExtUtils::Embed)
96574f
Requires: %(eval `perl -V:version`; echo "perl(:MODULE_COMPAT_$version)")
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
96574f
%description perl
96574f
This package includes the Perl bindings to the Subversion libraries.
96574f
96574f
%if %{with_java}
96574f
%package javahl
96574f
Summary: JNI bindings to the Subversion libraries
96574f
Requires: subversion = %{version}-%{release}
96574f
BuildRequires: java-11-openjdk-devel
96574f
# JAR repacking requires both zip and unzip in the buildroot
96574f
BuildRequires: zip, unzip
96574f
# For the tests
96574f
BuildRequires: junit
96574f
BuildArch: noarch
96574f
96574f
%description javahl
96574f
This package includes the JNI bindings to the Subversion libraries.
96574f
%endif
96574f
96574f
%if %{with ruby}
96574f
%package ruby
96574f
Summary: Ruby bindings to the Subversion libraries
96574f
BuildRequires: ruby-devel >= 1.9.1, ruby >= 1.9.1
96574f
BuildRequires: rubygem(test-unit)
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
Conflicts: ruby-libs%{?_isa} < 1.8.2
96574f
96574f
%description ruby
96574f
This package includes the Ruby bindings to the Subversion libraries.
96574f
%endif
96574f
96574f
%package tools
96574f
Summary: Supplementary tools for Subversion
96574f
Requires: subversion-libs%{?_isa} = %{version}-%{release}
96574f
96574f
%description tools
96574f
This package includes supplementary tools for use with Subversion.
96574f
96574f
%prep
96574f
%setup -q
96574f
%patch1 -p1 -b .linking
96574f
%patch2 -p1 -b .testwarn
96574f
%patch3 -p1 -b .soversion
96574f
%patch4 -p1 -b .rubybind
96574f
%patch5 -p1 -b .swigplWall
858fce
%patch6 -p1 -b .testnoautoprops            
858fce
%patch7 -p1 -b .fixjavatests
858fce
%patch8 -p1 -b .cve24070
96574f
96574f
:
96574f
: === Building:
96574f
: === Python3=%{with python3} Python2=%{with python2} PySwig=%{with pyswig}
96574f
: === Java=%{with_java} Ruby=%{with ruby}
96574f
: === BDB=%{with bdb} Tests=%{with tests} KWallet=%{with kwallet}
96574f
:
96574f
96574f
%build
96574f
# Regenerate the buildsystem, so that any patches applied to
96574f
# configure, swig bindings etc take effect.
96574f
mv build-outputs.mk build-outputs.mk.old
96574f
export PYTHON=%{svn_python}
96574f
96574f
### Force regeneration of swig bindings with the buildroot's SWIG.
96574f
# Generated files depend on the build/generator/swig/*.py which
96574f
# generates them, so when autogen-standalone.mk's autogen-swig target
96574f
# is run by autogen.sh it will regenerate them:
96574f
touch build/generator/swig/*.py
96574f
96574f
### Regenerate everything:
96574f
# This PATH order makes the fugly test for libtoolize work...
96574f
PATH=/usr/bin:$PATH ./autogen.sh --release
96574f
96574f
# fix shebang lines, #111498
96574f
perl -pi -e 's|/usr/bin/env perl -w|/usr/bin/perl -w|' tools/hook-scripts/*.pl.in
96574f
# fix python executable
96574f
perl -pi -e 's|/usr/bin/env python.*|%{svn_python}|' subversion/tests/cmdline/svneditor.py
96574f
96574f
# override weird -shrext from ruby
96574f
export svn_cv_ruby_link="%{__cc} -shared"
96574f
export svn_cv_ruby_sitedir_libsuffix=""
96574f
export svn_cv_ruby_sitedir_archsuffix=""
96574f
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9
96574f
# Fix include path for ruby2.7
96574f
export svn_cv_ruby_includes="-I%{_includedir}"
96574f
%endif
96574f
96574f
#export EXTRA_CFLAGS="$RPM_OPT_FLAGS -DSVN_SQLITE_MIN_VERSION_NUMBER=3007012 \
96574f
#       -DSVN_SQLITE_MIN_VERSION=\\\"3.7.12\\\""
96574f
export APACHE_LDFLAGS="-Wl,-z,relro,-z,now"
96574f
export CC=gcc CXX=g++ JAVA_HOME=%{jdk_path}
96574f
96574f
%configure --with-apr=%{_prefix} --with-apr-util=%{_prefix} \
96574f
        --disable-debug \
96574f
        --enable-plaintext-password-storage \
96574f
        --with-swig --with-serf=%{_prefix} \
96574f
        --with-ruby-sitedir=%{ruby_vendorarchdir} \
96574f
        --with-ruby-test-verbose=verbose \
96574f
        --with-apxs=%{_httpd_apxs} --disable-mod-activation \
96574f
        --with-apache-libexecdir=%{_httpd_moddir} \
96574f
        --disable-static --with-sasl=%{_prefix} \
96574f
        --with-libmagic=%{_prefix} \
96574f
        --with-gnome-keyring \
96574f
%if %{with_java}
96574f
        --enable-javahl \
96574f
        --with-junit=%{_prefix}/share/java/junit.jar \
96574f
%endif
96574f
%if %{with kwallet}
96574f
        --with-kwallet=%{_includedir}:%{_libdir} \
96574f
%endif
96574f
%if %{with bdb}
96574f
        --with-berkeley-db \
96574f
%else
96574f
        --without-berkeley-db \
96574f
%endif
96574f
        || (cat config.log; exit 1)
96574f
make %{?_smp_mflags} all tools
96574f
%if %{with pyswig}
96574f
make swig-py swig-py-lib %{swigdirs}
96574f
%endif
96574f
make swig-pl swig-pl-lib
96574f
%if %{with ruby}
96574f
make swig-rb swig-rb-lib
96574f
%endif
96574f
%if %{with_java}
96574f
# javahl-javah does not parallel-make with javahl
96574f
#make javahl-java javahl-javah
96574f
make javahl
96574f
%endif
96574f
96574f
%install
96574f
make install DESTDIR=$RPM_BUILD_ROOT
96574f
%if %{with pyswig}
96574f
make install-swig-py %{swigdirs} DESTDIR=$RPM_BUILD_ROOT
96574f
%endif
96574f
make install-swig-pl-lib install-swig-rb DESTDIR=$RPM_BUILD_ROOT
96574f
make pure_vendor_install -C subversion/bindings/swig/perl/native \
96574f
        PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
96574f
%if %{with_java}
96574f
make install-javahl-java install-javahl-lib javahl_javadir=%{_javadir} DESTDIR=$RPM_BUILD_ROOT
96574f
%endif
96574f
96574f
install -m 755 -d ${RPM_BUILD_ROOT}%{_sysconfdir}/subversion
96574f
96574f
mkdir -p ${RPM_BUILD_ROOT}{%{_httpd_modconfdir},%{_httpd_confdir}}
96574f
96574f
%if "%{_httpd_modconfdir}" == "%{_httpd_confdir}"
96574f
# httpd <= 2.2.x
96574f
install -p -m 644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_httpd_confdir}
96574f
%else
96574f
sed -n /^LoadModule/p %{SOURCE1} > 10-subversion.conf
96574f
sed    /^LoadModule/d %{SOURCE1} > example.conf
96574f
touch -r %{SOURCE1} 10-subversion.conf example.conf
96574f
install -p -m 644 10-subversion.conf ${RPM_BUILD_ROOT}%{_httpd_modconfdir}
96574f
%endif
96574f
96574f
# Remove unpackaged files
96574f
rm -rf ${RPM_BUILD_ROOT}%{_includedir}/subversion-*/*.txt \
96574f
       ${RPM_BUILD_ROOT}%{svn_python_sitearch}/*/*.{a,la}
96574f
96574f
# The SVN build system is broken w.r.t. DSO support; it treats
96574f
# normal libraries as DSOs and puts them in $libdir, whereas they
96574f
# should go in some subdir somewhere, and be linked using -module,
96574f
# etc.  So, forcibly nuke the .so's for libsvn_auth_{gnome,kde},
96574f
# since nothing should ever link against them directly.
96574f
rm -f ${RPM_BUILD_ROOT}%{_libdir}/libsvn_auth_*.so
96574f
96574f
# remove stuff produced with Perl modules
96574f
find $RPM_BUILD_ROOT -type f \
96574f
    -a \( -name .packlist -o \( -name '*.bs' -a -empty \) \) \
96574f
    -print0 | xargs -0 rm -f
96574f
96574f
# make Perl modules writable so they get stripped
96574f
find $RPM_BUILD_ROOT%{_libdir}/perl5 -type f -perm 555 -print0 |
96574f
        xargs -0 chmod 755
96574f
96574f
# unnecessary libraries for swig bindings
96574f
rm -f ${RPM_BUILD_ROOT}%{_libdir}/libsvn_swig_*.{so,la,a}
96574f
96574f
# Remove unnecessary ruby libraries
96574f
rm -f ${RPM_BUILD_ROOT}%{ruby_vendorarchdir}/svn/ext/*.*a
96574f
96574f
# Trim what goes in docdir
96574f
rm -rvf tools/*/*.in tools/hook-scripts/mailer/tests
96574f
96574f
# Install psvn for emacs and xemacs
96574f
for f in emacs/site-lisp xemacs/site-packages/lisp; do
96574f
  install -m 755 -d ${RPM_BUILD_ROOT}%{_datadir}/$f
96574f
  install -m 644 $RPM_SOURCE_DIR/psvn.el ${RPM_BUILD_ROOT}%{_datadir}/$f
96574f
done
96574f
96574f
install -m 644 $RPM_SOURCE_DIR/psvn-init.el \
96574f
        ${RPM_BUILD_ROOT}%{_datadir}/emacs/site-lisp
96574f
96574f
# Rename authz_svn INSTALL doc for docdir
96574f
ln -f subversion/mod_authz_svn/INSTALL mod_authz_svn-INSTALL
96574f
96574f
# Trim exported dependencies to APR libraries only:
96574f
sed -i "/^dependency_libs/{
96574f
     s, -l[^ ']*, ,g;
96574f
     s, -L[^ ']*, ,g;
96574f
     s,%{_libdir}/lib[^a][^p][^r][^ ']*.la, ,g;
96574f
     }"  $RPM_BUILD_ROOT%{_libdir}/*.la
96574f
96574f
# Trim libdir in pkgconfig files to avoid multilib conflicts
96574f
sed -i '/^libdir=/d' $RPM_BUILD_ROOT%{_datadir}/pkgconfig/libsvn*.pc
96574f
96574f
# Install bash completion
96574f
install -Dpm 644 tools/client-side/bash_completion \
96574f
        $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/svn
96574f
for comp in svnadmin svndumpfilter svnlook svnsync svnversion; do
96574f
    ln -s svn \
96574f
        $RPM_BUILD_ROOT%{_datadir}/bash-completion/completions/${comp}
96574f
done
96574f
96574f
# Install svnserve bits
96574f
mkdir -p %{buildroot}%{_unitdir} \
96574f
      %{buildroot}/run/svnserve \
96574f
      %{buildroot}%{_prefix}/lib/tmpfiles.d \
96574f
      %{buildroot}%{_sysconfdir}/sysconfig
96574f
96574f
install -p -m 644 $RPM_SOURCE_DIR/svnserve.service \
96574f
        %{buildroot}%{_unitdir}/svnserve.service
96574f
install -p -m 644 $RPM_SOURCE_DIR/svnserve.tmpfiles \
96574f
        %{buildroot}%{_prefix}/lib/tmpfiles.d/svnserve.conf
96574f
install -p -m 644 $RPM_SOURCE_DIR/svnserve.sysconf \
96574f
        %{buildroot}%{_sysconfdir}/sysconfig/svnserve
96574f
96574f
# Install tools ex diff*, x509-parser
96574f
make install-tools DESTDIR=$RPM_BUILD_ROOT toolsdir=%{_bindir}
96574f
rm -f $RPM_BUILD_ROOT%{_bindir}/diff* $RPM_BUILD_ROOT%{_bindir}/x509-parser
96574f
96574f
# Don't add spurious dependency in libserf-devel
96574f
sed -i "/^Requires.private/s, serf-1, ," \
96574f
    $RPM_BUILD_ROOT%{_datadir}/pkgconfig/libsvn_ra_serf.pc
96574f
96574f
# Make svnauthz-validate a symlink
96574f
rm $RPM_BUILD_ROOT%{_bindir}/svnauthz-validate
96574f
ln -s svnauthz $RPM_BUILD_ROOT%{_bindir}/svnauthz-validate
96574f
96574f
for f in svn-populate-node-origins-index fsfs-access-map \
96574f
    svnauthz svnauthz-validate svnmucc svnraisetreeconflict svnbench \
96574f
    svn-mergeinfo-normalizer fsfs-stats svnmover svnconflict; do
96574f
    echo %{_bindir}/$f
96574f
    if test -f $RPM_BUILD_ROOT%{_mandir}/man?/${f}.*; then
96574f
       echo %{_mandir}/man?/${f}.*
96574f
    fi
96574f
done | tee tools.files | sed 's/^/%%exclude /' > exclude.tools.files
96574f
96574f
%find_lang %{name}
96574f
96574f
cat %{name}.lang exclude.tools.files >> %{name}.files
96574f
96574f
%if %{with tests}
96574f
%check
96574f
export LANG=C LC_ALL=C
96574f
export LD_LIBRARY_PATH=$RPM_BUILD_ROOT%{_libdir}
96574f
export MALLOC_PERTURB_=171 MALLOC_CHECK_=3
96574f
export LIBC_FATAL_STDERR_=1
96574f
export PYTHON=%{svn_python}
96574f
if ! make check CLEANUP=yes; then
96574f
   : Test suite failure.
96574f
   cat fails.log
96574f
   exit 1
96574f
fi
96574f
if ! make check-swig-pl check-swig-rb; then
96574f
   : Swig test failure.
96574f
   exit 1
96574f
fi
96574f
%if %{with pyswig}
96574f
if ! make check-swig-py; then
96574f
   : Python swig test failure.
96574f
   exit 1
96574f
fi
96574f
%endif
96574f
# check-swig-rb omitted: it runs svnserve
96574f
%if %{with_java}
96574f
%ifnarch aarch64
96574f
# Breaks reliably on aarch64, timing issue?
96574f
# Upstream discussion: https://lists.apache.org/x/thread.html/rff2b0ab98a30c5fc83ca5ab21bf3862036d3a5ac2fc768d027bb6fe4@%3Cdev.subversion.apache.org%3E
96574f
make check-javahl
96574f
%endif
96574f
%endif
96574f
%endif
96574f
96574f
%post
96574f
%systemd_post svnserve.service
96574f
96574f
%preun
96574f
%systemd_preun svnserve.service
96574f
96574f
%postun
96574f
%systemd_postun_with_restart svnserve.service
96574f
96574f
%ldconfig_scriptlets libs
96574f
96574f
%ldconfig_scriptlets perl
96574f
96574f
%ldconfig_scriptlets ruby
96574f
96574f
%if %{with_java}
96574f
%ldconfig_scriptlets javahl
96574f
%endif
96574f
96574f
%files -f %{name}.files
96574f
%{!?_licensedir:%global license %%doc}
96574f
%license LICENSE NOTICE
96574f
%doc BUGS COMMITTERS INSTALL README CHANGES
96574f
%doc mod_authz_svn-INSTALL
96574f
%{_bindir}/*
96574f
%{_mandir}/man*/*
96574f
%{_datadir}/emacs/site-lisp/*.el
96574f
%{_datadir}/xemacs/site-packages/lisp/*.el
96574f
%{_datadir}/bash-completion/
96574f
%config(noreplace) %{_sysconfdir}/sysconfig/svnserve
96574f
%dir %{_sysconfdir}/subversion
96574f
%exclude %{_mandir}/man*/*::*
96574f
%{_unitdir}/*.service
96574f
%attr(0700,root,root) %dir /run/svnserve
96574f
%{_prefix}/lib/tmpfiles.d/svnserve.conf
96574f
96574f
%files tools -f tools.files
96574f
%doc tools/hook-scripts tools/backup tools/examples tools/xslt
96574f
%if %{with bdb}
96574f
%doc tools/bdb
96574f
%endif
96574f
96574f
%files libs
96574f
%{!?_licensedir:%global license %%doc}
96574f
%license LICENSE NOTICE
96574f
%{_libdir}/libsvn*.so.*
96574f
%exclude %{_libdir}/libsvn_swig_perl*
96574f
%exclude %{_libdir}/libsvn_swig_ruby*
96574f
%if %{with_java}
96574f
%{_libdir}/libsvnjavahl-*.so
96574f
%endif
96574f
%if %{with kwallet}
96574f
%exclude %{_libdir}/libsvn_auth_kwallet*
96574f
%endif
96574f
%exclude %{_libdir}/libsvn_auth_gnome*
96574f
96574f
%if %{with python2} && %{with pyswig}
96574f
%files -n python2-subversion
96574f
%{python2_sitearch}/svn
96574f
%{python2_sitearch}/libsvn
96574f
%endif
96574f
96574f
%if %{with python3} && %{with pyswig}
96574f
%files -n python3-subversion
96574f
%{python3_sitearch}/svn
96574f
%{python3_sitearch}/libsvn
96574f
%endif
96574f
96574f
%files gnome
96574f
%{_libdir}/libsvn_auth_gnome_keyring-*.so.*
96574f
96574f
%if %{with kwallet}
96574f
%files kde
96574f
%{_libdir}/libsvn_auth_kwallet-*.so.*
96574f
%endif
96574f
96574f
%files devel
96574f
%{_includedir}/subversion-1
96574f
%{_libdir}/libsvn*.*a
96574f
%{_libdir}/libsvn*.so
96574f
%{_datadir}/pkgconfig/*.pc
96574f
%exclude %{_libdir}/libsvn_swig_perl*
96574f
%exclude %{_libdir}/libsvnjavahl-*.so
96574f
96574f
%files -n mod_dav_svn
96574f
%config(noreplace) %{_httpd_modconfdir}/*.conf
96574f
%{_libdir}/httpd/modules/mod_*.so
96574f
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
96574f
%doc example.conf
96574f
%endif
96574f
96574f
%files perl
96574f
%{perl_vendorarch}/auto/SVN
96574f
%{perl_vendorarch}/SVN
96574f
%{_libdir}/libsvn_swig_perl*
96574f
%{_mandir}/man*/*::*
96574f
96574f
%if %{with ruby}
96574f
%files ruby
96574f
%{_libdir}/libsvn_swig_ruby*
96574f
%{ruby_vendorarchdir}/svn
96574f
%endif
96574f
96574f
%if %{with_java}
96574f
%files javahl
96574f
%{_javadir}/svn-javahl.jar
96574f
%endif
96574f
96574f
%changelog
858fce
* Tue Apr 26 2022 Richard Lescak <rlescak@redhat.com> - 1.14.1-5
858fce
- Fix for CVE-2022-24070 (#2076565)
858fce
96574f
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.14.1-4.1
96574f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
96574f
  Related: rhbz#1991688
96574f
96574f
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1.14.1-3.1
96574f
- Rebuilt for RHEL 9 BETA for openssl 3.0
96574f
  Related: rhbz#1971065
96574f
96574f
* Wed Apr 28 2021 Joe Orton <jorton@redhat.com> - 1.14.1-2.1
96574f
- enable plaintext password storage (#1951484)
96574f
96574f
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.14.1-2
96574f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
96574f
96574f
* Wed Feb 10 2021 Joe Orton <jorton@redhat.com> - 1.14.1-1
96574f
- update to 1.14.1 (#1927265, #1768698)
96574f
96574f
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-12
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
96574f
96574f
* Wed Jan 06 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.14.0-11
96574f
- F-34: rebuild against ruby 3.0
96574f
96574f
* Fri Dec 11 2020 Joe Orton <jorton@redhat.com> - 1.14.0-10
96574f
- strip libdir from pkgconfig files
96574f
- add missing -libs dep from python3-subversion
96574f
96574f
* Thu Dec  3 2020 Joe Orton <jorton@redhat.com> - 1.14.0-9
96574f
- fix KWallet conditional (#1902598)
96574f
96574f
* Mon Nov 30 2020 Jan Grulich <jgrulich@redhat.com> - 1.14.0-8
96574f
- Disable KWallet for RHEL and ELN
96574f
  Resolves: bz#1902598
96574f
96574f
* Tue Sep 29 2020 Joe Orton <jorton@redhat.com> - 1.14.0-7
96574f
- bump required apr-devel
96574f
- BR gcc, gcc-c++
96574f
96574f
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-6
96574f
- Second attempt - Rebuilt for
96574f
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
96574f
96574f
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.0-5
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
96574f
96574f
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.14.0-4
96574f
- Perl 5.32 rebuild
96574f
96574f
* Wed Jun  3 2020 Merlin Mathesius <mmathesi@redhat.com> - 1.14.0-3
96574f
- Minor conditional fixes for ELN
96574f
96574f
* Wed Jun  3 2020 Joe Orton <jorton@redhat.com> - 1.14.0-2
96574f
- use minor version as libtool library revision number
96574f
96574f
* Mon Jun  1 2020 Joe Orton <jorton@redhat.com> - 1.14.0-1
96574f
- update to 1.14.0 (#1840565, #1812195)
96574f
96574f
* Tue May 19 2020 Joe Orton <jorton@redhat.com> - 1.14.0~rc2-2
96574f
- switch subpackages to lock-step requires on -libs rather than subversion
96574f
- fixed the build-requires (Jitka Plesnikova)
96574f
96574f
* Thu Apr 30 2020 Joe Orton <jorton@redhat.com> - 1.14.0~rc2-1
96574f
- drop Berkeley DB support for Fedora > 32
96574f
- BR java-11-openjdk-devel
96574f
96574f
* Thu Apr 23 2020 Joe Orton <jorton@redhat.com> - 1.14.0~rc2-0
96574f
- update to 1.14.0-rc2
96574f
96574f
* Wed Feb 12 2020 Joe Orton <jorton@redhat.com> - 1.13.0-4
96574f
- fix FTBFS on 32-bit arches (#1800120)
96574f
- conditionally package bdb tools in -tools
96574f
96574f
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-5
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
96574f
96574f
* Tue Jan 21 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.12.2-4
96574f
- F-32: fix include path for ruby 2.7
96574f
- Rebuild for ruby 2.7
96574f
96574f
* Mon Jan  6 2020 Joe Orton <jorton@redhat.com> - 1.12.2-3
96574f
- update for KDE 5 (Phil O, #1768693)
96574f
96574f
* Fri Aug 30 2019 Joe Orton <jorton@redhat.com> - 1.12.2-2
96574f
- switch to Python 3 for F32+ (#1737928)
96574f
96574f
* Thu Jul 25 2019 Joe Orton <jorton@redhat.com> - 1.12.2-1
96574f
- update to 1.12.2
96574f
96574f
* Sat Jun 01 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.12.0-2
96574f
- Perl 5.30 rebuild
96574f
96574f
* Wed May  1 2019 Joe Orton <jorton@redhat.com> - 1.12.0-1
96574f
- update to 1.12.0 (#1702471)
96574f
96574f
* Wed Apr 17 2019 Joe Orton <jorton@redhat.com> - 1.11.1-5
96574f
- fix build with APR 1.7.0 (upstream r1857391)
96574f
96574f
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-4
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
96574f
96574f
* Mon Jan 21 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.11.1-3
96574f
- F-30: rebuild against ruby26
96574f
96574f
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.11.1-2
96574f
- Rebuilt for libcrypt.so.2 (#1666033)
96574f
96574f
* Fri Jan 11 2019 Joe Orton <jorton@redhat.com> - 1.11.1-1
96574f
- update to 1.11.1
96574f
96574f
* Wed Oct 31 2018 Joe Orton <jorton@redhat.com> - 1.11.0-1
96574f
- update to 1.11.0
96574f
96574f
* Thu Oct 11 2018 Joe Orton <jorton@redhat.com> - 1.10.3-1
96574f
- update to 1.10.3
96574f
96574f
* Fri Jul 20 2018 Joe Orton <jorton@redhat.com> - 1.10.2-1
96574f
- update to 1.10.2 (#1603197)
96574f
96574f
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-10
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
96574f
96574f
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.10.0-9
96574f
- Perl 5.28 rebuild
96574f
96574f
* Thu Jun 28 2018 Joe Orton <jorton@redhat.com> - 1.10.0-8
96574f
- fix test suite invocation
96574f
96574f
* Thu Jun 28 2018 Joe Orton <jorton@redhat.com> - 1.10.0-7
96574f
- switch build conditional to disable only python bindings
96574f
96574f
* Thu May  3 2018 Joe Orton <jorton@redhat.com> - 1.10.0-6
96574f
- really disable Berkeley DB support if required by bcond
96574f
- add build conditional to disable swig binding subpackages
96574f
96574f
* Tue May  1 2018 Joe Orton <jorton@redhat.com> - 1.10.0-5
96574f
- remove build and -devel deps on libgnome-keyring-devel
96574f
96574f
* Tue May  1 2018 Joe Orton <jorton@redhat.com> - 1.10.0-4
96574f
- drop -devel dep on libserf-devel
96574f
96574f
* Tue Apr 24 2018 Joe Orton <jorton@redhat.com> - 1.10.0-3
96574f
- add bdb, tests as build conditional
96574f
96574f
* Tue Apr 17 2018 Joe Orton <jorton@redhat.com> - 1.10.0-2
96574f
- move new tools to -tools
96574f
96574f
* Mon Apr 16 2018 Joe Orton <jorton@redhat.com> - 1.10.0-1
96574f
- update to 1.10.0 (#1566493)
96574f
96574f
* Tue Mar 27 2018 Joe Orton <jorton@redhat.com> - 1.9.7-7
96574f
- add build conditionals for python2, python3 and kwallet
96574f
96574f
* Thu Feb  8 2018 Joe Orton <jorton@redhat.com> - 1.9.7-6
96574f
- force use of Python2 in test suite
96574f
96574f
* Thu Feb 01 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.9.7-5
96574f
- Update Python 2 dependency declarations to new packaging standards
96574f
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
96574f
96574f
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.9.7-4
96574f
- Rebuilt for switch to libxcrypt
96574f
96574f
* Fri Jan 05 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.7-3
96574f
- F-28: rebuild for ruby25
96574f
96574f
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.9.7-2
96574f
- Python 2 binary package renamed to python2-subversion
96574f
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
96574f
96574f
* Fri Aug 11 2017 Joe Orton <jorton@redhat.com> - 1.9.7-1
96574f
- update to 1.9.7 (CVE-2017-9800, #1480402)
96574f
- add Documentation= to svnserve.service
96574f
96574f
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.6-4
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
96574f
96574f
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.6-3
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
96574f
96574f
* Mon Jul 17 2017 Joe Orton <jorton@redhat.com> - 1.9.6-2
96574f
- move javahl .so to -libs (#1469158)
96574f
96574f
* Thu Jul  6 2017 Joe Orton <jorton@redhat.com> - 1.9.6-1
96574f
- update to 1.9.6 (#1467890)
96574f
- update to latest upstream psvn.el
96574f
- move libsvnjavahl to -libs, build -javahl noarch
96574f
- fix javahl Requires
96574f
96574f
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.9.5-4
96574f
- Perl 5.26 rebuild
96574f
96574f
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-3
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
96574f
96574f
* Fri Jan 13 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.9.5-2
96574f
- F-26: rebuild for ruby24
96574f
96574f
* Mon Jan  2 2017 Joe Orton <jorton@redhat.com> - 1.9.5-1
96574f
- update to 1.9.5 (#1400040, CVE-2016-8734)
96574f
96574f
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.4-4
96574f
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
96574f
96574f
* Wed May 25 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.9.4-3
96574f
- Enable tests
96574f
- Revert one of Ruby 2.2 fixes
96574f
96574f
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.9.4-2
96574f
- Perl 5.24 rebuild
96574f
96574f
* Sun May  8 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.9.4-1
96574f
- Update to 1.9.4 (#1331222) CVE-2016-2167 CVE-2016-2168
96574f
- Move tools in docs to tools subpackage (rhbz 1171757 1199761)
96574f
- Disable make check to work around FTBFS
96574f
96574f
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-3
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
96574f
96574f
* Thu Jan 21 2016 Joe Orton <jorton@redhat.com> - 1.9.3-2
96574f
- rebuild for Ruby 2.3
96574f
96574f
* Tue Dec 15 2015 Joe Orton <jorton@redhat.com> - 1.9.3-1
96574f
- update to 1.9.3 (#1291683)
96574f
- use private /tmp in svnserve.service
96574f
96574f
* Thu Sep 24 2015 Joe Orton <jorton@redhat.com> - 1.9.2-1
96574f
- update to 1.9.2 (#1265447)
96574f
96574f
* Mon Sep 14 2015 Joe Orton <jorton@redhat.com> - 1.9.1-1
96574f
- update to 1.9.1 (#1259099)
96574f
96574f
* Mon Aug 24 2015 Joe Orton <jorton@redhat.com> - 1.9.0-1
96574f
- update to 1.9.0 (#1207835)
96574f
- package pkgconfig files
96574f
96574f
* Tue Jul 14 2015 Joe Orton <jorton@redhat.com> - 1.8.13-7
96574f
- move svnauthz to -tools; make svnauthz-validate a symlink
96574f
- move svnmucc man page to -tools
96574f
- restore dep on systemd (#1183873)
96574f
96574f
* Fri Jul 10 2015 Joe Orton <jorton@redhat.com> - 1.8.13-6
96574f
- rebuild with tests enabled
96574f
96574f
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-5
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
96574f
96574f
* Mon Jun 15 2015 Ville Skyttä <ville.skytta@iki.fi> - 1.8.13-4
96574f
- Own bash-completion dirs not owned by anything in dep chain
96574f
96574f
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.8.13-3
96574f
- Perl 5.22 rebuild
96574f
96574f
* Tue Apr 21 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.8.13-2
96574f
- Disable tests to fix swig test issues
96574f
96574f
* Wed Apr 08 2015 <vondruch@redhat.com> - 1.8.13-1
96574f
- Fix Ruby's test suite.
96574f
96574f
* Tue Apr  7 2015 Joe Orton <jorton@redhat.com> - 1.8.13-1
96574f
- update to 1.8.13 (#1207835)
96574f
- attempt to patch around SWIG issues
96574f
96574f
* Tue Dec 16 2014 Joe Orton <jorton@redhat.com> - 1.8.11-1
96574f
- update to 1.8.11 (#1174521)
96574f
- require newer libserf (#1155670)
96574f
96574f
* Tue Sep 23 2014 Joe Orton <jorton@redhat.com> - 1.8.10-6
96574f
- prevents assert()ions in library code (#1058693)
96574f
96574f
* Tue Sep 23 2014 Joe Orton <jorton@redhat.com> - 1.8.10-5
96574f
- drop sysv conversion trigger (#1133786)
96574f
96574f
* Tue Sep 23 2014 Joe Orton <jorton@redhat.com> - 1.8.10-4
96574f
- move svn-bench, fsfs-* to -tools
96574f
96574f
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.8.10-3
96574f
- Perl 5.20 rebuild
96574f
96574f
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 1.8.10-2
96574f
- Rebuild for rpm bug 1131960
96574f
96574f
* Mon Aug 18 2014 Joe Orton <jorton@redhat.com> - 1.8.10-1
96574f
- update to 1.8.10 (#1129100, #1128884, #1125800)
96574f
96574f
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.9-3
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
96574f
96574f
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.9-2
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
96574f
96574f
* Wed May 28 2014 Joe Orton <jorton@redhat.com> - 1.8.9-1
96574f
- update to 1.8.9 (#1100779)
96574f
96574f
* Tue Apr 29 2014 Vít Ondruch <vondruch@redhat.com> - 1.8.8-3
96574f
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
96574f
96574f
* Tue Apr 22 2014 Joe Orton <jorton@redhat.com> - 1.8.8-2
96574f
- require minitest 4 to fix tests for Ruby bindings (#1089252)
96574f
96574f
* Fri Feb 28 2014 Joe Orton <jorton@redhat.com> - 1.8.8-1
96574f
- update to 1.8.8
96574f
96574f
* Thu Jan 23 2014 Joe Orton <jorton@redhat.com> - 1.8.5-4
96574f
- fix _httpd_mmn expansion in absence of httpd-devel
96574f
96574f
* Mon Jan  6 2014 Joe Orton <jorton@redhat.com> - 1.8.5-3
96574f
- fix permissions of /run/svnserve (#1048422)
96574f
96574f
* Tue Dec 10 2013 Joe Orton <jorton@redhat.com> - 1.8.5-2
96574f
- don't drop -Wall when building swig Perl bindings (#1037341)
96574f
96574f
* Tue Nov 26 2013 Joe Orton <jorton@redhat.com> - 1.8.5-1
96574f
- update to 1.8.5 (#1034130)
96574f
- add fix for wc-queries-test breakage (h/t Andreas Stieger, r1542774)
96574f
96574f
* Mon Nov 18 2013 Joe Orton <jorton@redhat.com> - 1.8.4-2
96574f
- add fix for ppc breakage (Andreas Stieger, #985582)
96574f
96574f
* Tue Oct 29 2013 Joe Orton <jorton@redhat.com> - 1.8.4-1
96574f
- update to 1.8.4
96574f
96574f
* Tue Sep  3 2013 Joe Orton <jorton@redhat.com> - 1.8.3-1
96574f
- update to 1.8.3
96574f
- move bash completions out of /etc (#922993)
96574f
96574f
* Tue Aug 06 2013 Adam Williamson <awilliam@redhat.com> - 1.8.1-2
96574f
- rebuild for perl 5.18 (again; 1.8.1-1 beat out 1.8.0-2)
96574f
96574f
* Thu Jul 25 2013 Joe Orton <jorton@redhat.com> - 1.8.1-1
96574f
- update to 1.8.1
96574f
96574f
* Fri Jul 19 2013 Joe Orton <jorton@redhat.com> - 1.8.0-3
96574f
- temporarily ignore test suite failures on ppc* (#985582)
96574f
96574f
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.8.0-2
96574f
- Perl 5.18 rebuild
96574f
96574f
* Tue Jun 18 2013 Joe Orton <jorton@redhat.com> - 1.8.0-1
96574f
- update to 1.8.0; switch to serf
96574f
- use full relro in mod_dav_svn build (#973694)
96574f
96574f
* Mon Jun  3 2013 Joe Orton <jorton@redhat.com> - 1.7.10-1
96574f
- update to 1.7.10 (#970014)
96574f
- fix aarch64 build issues (Dennis Gilmore, #926578)
96574f
96574f
* Thu May  9 2013 Joe Orton <jorton@redhat.com> - 1.7.9-3
96574f
- fix spurious failures in ruby test suite (upstream r1327373)
96574f
96574f
* Thu May  9 2013 Joe Orton <jorton@redhat.com> - 1.7.9-2
96574f
- try harder to avoid svnserve bind failures in ruby binding tests
96574f
- enable verbose output for ruby binding tests
96574f
96574f
* Tue Apr  9 2013 Joe Orton <jorton@redhat.com> - 1.7.9-1
96574f
- update to 1.7.9
96574f
96574f
* Wed Mar 27 2013 Vít Ondruch <vondruch@redhat.com> - 1.7.8-6
96574f
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
96574f
- Drop Ruby version checks from configuration script.
96574f
- Fix and enable Ruby test suite.
96574f
96574f
* Thu Mar 14 2013 Joe Orton <jorton@redhat.com> - 1.7.8-5
96574f
- drop specific dep on ruby(abi)
96574f
96574f
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.8-4
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
96574f
96574f
* Tue Jan  8 2013 Joe Orton <jorton@redhat.com> - 1.7.8-3
96574f
- update to latest psvn.el
96574f
96574f
* Tue Jan  8 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 1.7.8-2
96574f
- Scriptlets replaced with new systemd macros (#850410)
96574f
96574f
* Fri Jan  4 2013 Joe Orton <jorton@redhat.com> - 1.7.8-1
96574f
- update to 1.7.8
96574f
96574f
* Thu Oct 11 2012 Joe Orton <jorton@redhat.com> - 1.7.7-1
96574f
- update to 1.7.7
96574f
96574f
* Fri Aug 17 2012 Joe Orton <jorton@redhat.com> - 1.7.6-1
96574f
- update to 1.7.6
96574f
96574f
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-6
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
96574f
96574f
* Mon Jul 16 2012 Joe Orton <jorton@redhat.com> - 1.7.5-5
96574f
- switch svnserve pidfile to use /run, use /usr/lib/tmpfiles.d (#840195)
96574f
96574f
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1.7.5-4
96574f
- Perl 5.16 rebuild
96574f
96574f
* Mon Jun 18 2012 Dan Horák 
96574f
- fix build with recent gcc 4.7 (svn rev 1345740)
96574f
96574f
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.7.5-2
96574f
- Perl 5.16 rebuild
96574f
96574f
* Tue May 22 2012 Joe Orton <jorton@redhat.com> - 1.7.5-1
96574f
- update to 1.7.5
96574f
96574f
* Tue Apr 24 2012 Joe Orton <jorton@redhat.com> - 1.7.4-6
96574f
- drop strict sqlite version requirement (#815396)
96574f
96574f
* Mon Apr 23 2012 Joe Orton <jorton@redhat.com> - 1.7.4-5
96574f
- switch to libdb-devel (#814090)
96574f
96574f
* Thu Apr 19 2012 Joe Orton <jorton@redhat.com> - 1.7.4-4
96574f
- adapt for conf.modules.d with httpd 2.4
96574f
- add possible workaround for kwallet crasher (#810861)
96574f
96574f
* Fri Mar 30 2012 Joe Orton <jorton@redhat.com> - 1.7.4-3
96574f
- re-enable test suite
96574f
96574f
* Fri Mar 30 2012 Joe Orton <jorton@redhat.com> - 1.7.4-2
96574f
- fix build with httpd 2.4
96574f
96574f
* Mon Mar 12 2012 Joe Orton <jorton@redhat.com> - 1.7.4-1
96574f
- update to 1.7.4
96574f
- fix build with httpd 2.4
96574f
96574f
* Thu Mar  1 2012 Joe Orton <jorton@redhat.com> - 1.7.3-7
96574f
- re-enable kwallet (#791031)
96574f
96574f
* Wed Feb 29 2012 Joe Orton <jorton@redhat.com> - 1.7.3-6
96574f
- update psvn
96574f
96574f
* Wed Feb 29 2012 Joe Orton <jorton@redhat.com> - 1.7.3-5
96574f
- add tools subpackage (#648015)
96574f
96574f
* Tue Feb 28 2012 Joe Orton <jorton@redhat.com> - 1.7.3-4
96574f
- trim contents of doc dic (#746433)
96574f
96574f
* Tue Feb 28 2012 Joe Orton <jorton@redhat.com> - 1.7.3-3
96574f
- re-enable test suite
96574f
96574f
* Tue Feb 28 2012 Joe Orton <jorton@redhat.com> - 1.7.3-2
96574f
- add upstream test suite fixes for APR hash change (r1293602, r1293811)
96574f
- use ruby vendorlib directory (#798203)
96574f
- convert svnserve to systemd (#754074)
96574f
96574f
* Mon Feb 13 2012 Joe Orton <jorton@redhat.com> - 1.7.3-1
96574f
- update to 1.7.3
96574f
- ship, enable mod_dontdothat
96574f
96574f
* Mon Feb 13 2012 Joe Orton <jorton@redhat.com> - 1.7.2-2
96574f
- require ruby 1.9.1 abi
96574f
96574f
* Thu Feb  9 2012 Joe Orton <jorton@redhat.com> - 1.7.2-1
96574f
- update to 1.7.2
96574f
- add Vincent Batts' Ruby 1.9 fixes from dev@
96574f
96574f
* Sun Feb  5 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.1-3
96574f
- fix gnome-keyring build deps 
96574f
96574f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
96574f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
96574f
96574f
* Mon Nov 28 2011 Joe Orton <jorton@redhat.com> - 1.7.1-1
96574f
- update to 1.7.1
96574f
- (temporarily) disable failing kwallet support
96574f
96574f
* Sun Nov 27 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.7.0-3
96574f
- Build with libmagic support.
96574f
96574f
* Sat Oct 15 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.7.0-2
96574f
- Fix apr Conflicts syntax in -libs.
96574f
- Fix obsolete chown syntax in subversion.conf.
96574f
- Fix use of spaces vs tabs in specfile.
96574f
96574f
* Wed Oct 12 2011 Joe Orton <jorton@redhat.com> - 1.7.0-1
96574f
- update to 1.7.0
96574f
- drop svn2cl (no longer shipped in upstream tarball)