move svnauthz to -tools; make svnauthz-validate a symlink

This commit is contained in:
Joe Orton 2015-07-14 09:47:40 +01:00
parent a3a9239627
commit 9b7327e752
1 changed files with 14 additions and 2 deletions

View File

@ -20,7 +20,7 @@
Summary: A Modern Concurrent Version Control System
Name: subversion
Version: 1.8.13
Release: 5%{?dist}
Release: 7%{?dist}
License: ASL 2.0
Group: Development/Tools
URL: http://subversion.apache.org/
@ -333,7 +333,13 @@ install -p -m 644 $RPM_SOURCE_DIR/svnserve.sysconf \
make install-tools DESTDIR=$RPM_BUILD_ROOT toolsdir=%{_bindir}
rm -f $RPM_BUILD_ROOT%{_bindir}/diff*
for f in svn-populate-node-origins-index svn-rep-sharing-stats svnauthz-validate svnmucc svnraisetreeconflict svn-bench fsfs-reorg fsfs-access-map fsfs-stats; do
# Make svnauthz-validate a symlink
rm $RPM_BUILD_ROOT%{_bindir}/svnauthz-validate
ln -s svnauthz $RPM_BUILD_ROOT%{_bindir}/svnauthz-validate
for f in svn-populate-node-origins-index svn-rep-sharing-stats \
svnauthz svnauthz-validate svnmucc svnraisetreeconflict svn-bench \
fsfs-reorg fsfs-access-map fsfs-stats; do
echo %{_bindir}/$f
done | tee tools.files | sed 's/^/%%exclude /' > exclude.tools.files
@ -461,6 +467,12 @@ make check-javahl
%endif
%changelog
* Tue Jul 14 2015 Joe Orton <jorton@redhat.com> - 1.8.13-7
- move svnauthz to -tools; make svnauthz-validate a symlink
* Fri Jul 10 2015 Joe Orton <jorton@redhat.com> - 1.8.13-6
- rebuild with tests enabled
* Tue Jul 14 2015 Joe Orton <jorton@redhat.com> - 1.8.13-5
- rebuild with SWIG 3.0.6 (#1216264)