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