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