2004-09-09 12:50:03 +00:00
|
|
|
# set to zero to avoid running test suite
|
2004-09-09 12:46:37 +00:00
|
|
|
%define make_check 1
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:50:43 +00:00
|
|
|
%define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
|
|
|
|
|
2004-09-09 12:50:03 +00:00
|
|
|
Summary: Modern Version Control System designed to replace CVS
|
2004-09-09 12:45:32 +00:00
|
|
|
Name: subversion
|
2004-09-23 08:27:44 +00:00
|
|
|
Version: 1.0.8
|
|
|
|
Release: 2
|
2004-09-09 12:47:20 +00:00
|
|
|
License: BSD
|
2004-09-09 12:45:32 +00:00
|
|
|
Group: Development/Tools
|
2004-09-09 12:50:43 +00:00
|
|
|
URL: http://subversion.tigris.org/
|
2004-09-09 12:47:26 +00:00
|
|
|
Source0: http://subversion.tigris.org/tarballs/subversion-%{version}.tar.gz
|
2004-09-09 12:47:20 +00:00
|
|
|
Source1: subversion.conf
|
|
|
|
Source3: filter-requires.sh
|
2004-09-23 08:34:44 +00:00
|
|
|
Source4: http://www.xsteve.at/prg/emacs/psvn.el
|
2004-09-09 12:47:20 +00:00
|
|
|
Patch1: subversion-0.24.2-swig.patch
|
|
|
|
Patch2: subversion-0.20.1-deplibs.patch
|
|
|
|
Patch3: subversion-0.31.0-rpath.patch
|
2004-09-09 12:50:43 +00:00
|
|
|
Patch4: subversion-1.0.2-blame.patch
|
2004-09-09 12:49:17 +00:00
|
|
|
Patch5: subversion-r8822.patch
|
2004-09-09 12:50:43 +00:00
|
|
|
Patch6: subversion-1.0.3-pie.patch
|
|
|
|
BuildPreReq: autoconf, libtool, python, python-devel, texinfo
|
2004-09-09 12:47:20 +00:00
|
|
|
BuildPreReq: db4-devel >= 4.1.25, swig >= 1.3.15, docbook-style-xsl
|
2004-09-23 08:27:44 +00:00
|
|
|
BuildPreReq: apr-devel, apr-util-devel, neon-devel >= 0:0.24.7-1
|
2004-09-09 12:45:32 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-root
|
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
%define __perl_requires %{SOURCE3}
|
2004-09-09 12:46:47 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
# Put Python bindings in site-packages
|
|
|
|
%define pydir %(python -c 'from distutils import sysconfig; print sysconfig.get_python_lib()')
|
|
|
|
%define swigdirs swig_pydir=%{pydir}/libsvn swig_pydir_extra=%{pydir}/svn
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
%description
|
|
|
|
Subversion is a concurrent version control system which enables one
|
|
|
|
or more users to collaborate in developing and maintaining a
|
|
|
|
hierarchy of files and directories while keeping a history of all
|
|
|
|
changes. Subversion only stores the differences between versions,
|
|
|
|
instead of every complete file. Subversion is intended to be a
|
|
|
|
compelling replacement for CVS.
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%package devel
|
|
|
|
Group: Development/Tools
|
|
|
|
Summary: Development package for Subversion developers.
|
2004-09-09 12:47:20 +00:00
|
|
|
Requires: subversion = %{version}-%{release}, apr-devel, apr-util-devel
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%description devel
|
2004-09-09 12:47:20 +00:00
|
|
|
The subversion-devel package includes the static libraries and
|
|
|
|
include files for developers interacting with the subversion
|
|
|
|
package.
|
|
|
|
|
|
|
|
%package -n mod_dav_svn
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Summary: Apache server module for Subversion server.
|
2004-09-09 12:48:18 +00:00
|
|
|
Requires: httpd-mmn = %(cat %{_includedir}/httpd/.mmn || echo missing)
|
2004-09-09 12:47:20 +00:00
|
|
|
Requires: subversion = %{version}-%{release}
|
2004-09-09 12:49:17 +00:00
|
|
|
BuildRequires: httpd-devel >= 2.0.45
|
2004-09-09 12:47:20 +00:00
|
|
|
|
|
|
|
%description -n mod_dav_svn
|
|
|
|
The mod_dav_svn package allows access to a Subversion repository
|
|
|
|
using HTTP, via the Apache httpd server.
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:49:17 +00:00
|
|
|
%package perl
|
|
|
|
Group: Development/Libraries
|
|
|
|
Summary: Perl bindings to the Subversion libraries
|
2004-09-09 12:50:43 +00:00
|
|
|
BuildRequires: perl >= 2:5.8.0
|
|
|
|
Requires: %(eval `perl -V:version`; echo "perl(:MODULE_COMPAT_$version)")
|
|
|
|
Requires: subversion = %{version}-%{release}
|
2004-09-09 12:49:17 +00:00
|
|
|
|
|
|
|
%description perl
|
|
|
|
This package includes the Perl bindings to the Subversion libraries.
|
|
|
|
|
2004-09-09 12:45:32 +00:00
|
|
|
%prep
|
2004-09-09 12:46:37 +00:00
|
|
|
%setup -q
|
2004-09-09 12:47:20 +00:00
|
|
|
%patch1 -p1 -b .swig
|
|
|
|
%patch2 -p1 -b .deplibs
|
|
|
|
%patch3 -p1 -b .rpath
|
2004-09-09 12:50:43 +00:00
|
|
|
%patch4 -p1 -b .blame
|
2004-09-09 12:49:17 +00:00
|
|
|
%patch5 -p1 -b .r8822
|
2004-09-09 12:50:43 +00:00
|
|
|
%patch6 -p1 -b .pie
|
2004-09-09 12:47:20 +00:00
|
|
|
|
|
|
|
rm -rf neon apr apr-util db4
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%build
|
2004-09-09 12:46:37 +00:00
|
|
|
./autogen.sh
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:48:18 +00:00
|
|
|
# requirement for apr 0.9.5 seems to be bogus
|
|
|
|
perl -pi -e 's/\.\[5-9\]/\.\[4-9\]/' configure
|
|
|
|
|
2004-09-09 12:47:26 +00:00
|
|
|
# fix shebang lines, #111498
|
|
|
|
perl -pi -e 's|/usr/bin/env perl -w|/usr/bin/perl -w|' tools/hook-scripts/*.pl.in
|
2004-09-09 12:47:20 +00:00
|
|
|
|
2004-09-09 12:48:18 +00:00
|
|
|
export CC=gcc CXX=g++
|
2004-09-09 12:47:20 +00:00
|
|
|
%configure --with-apr=%{_prefix} --with-apr-util=%{_prefix} \
|
|
|
|
--with-swig --with-neon=%{_prefix} \
|
2004-09-09 12:48:18 +00:00
|
|
|
--with-apxs=%{_sbindir}/apxs --disable-mod-activation
|
2004-09-09 12:49:17 +00:00
|
|
|
make %{?_smp_mflags} all swig-py %{swigdirs} swig-pl-lib
|
|
|
|
|
|
|
|
# build the perl modules
|
|
|
|
pushd subversion/bindings/swig/perl
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS" %{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
popd
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
2004-09-09 12:49:17 +00:00
|
|
|
make install install-swig-py install-swig-pl-lib \
|
|
|
|
DESTDIR=$RPM_BUILD_ROOT %{swigdirs}
|
|
|
|
|
2004-09-09 12:50:43 +00:00
|
|
|
make pure_install -C subversion/bindings/swig/perl \
|
|
|
|
PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
# Add subversion.conf configuration file into httpd/conf.d directory.
|
|
|
|
install -m 755 -d ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d
|
|
|
|
install -m 644 $RPM_SOURCE_DIR/subversion.conf ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
# Remove unpackaged files
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}%{_includedir}/subversion-*/*.txt \
|
|
|
|
${RPM_BUILD_ROOT}%{pydir}/*/*.{a,la}
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:49:17 +00:00
|
|
|
# remove stuff produced with Perl modules
|
|
|
|
find $RPM_BUILD_ROOT -type f \
|
2004-09-09 12:50:43 +00:00
|
|
|
-a \( -name .packlist -o \( -name '*.bs' -a -empty \) \) \
|
2004-09-09 12:49:17 +00:00
|
|
|
-print0 | xargs -0 rm -f
|
|
|
|
|
|
|
|
# make Perl modules writable so they get stripped
|
|
|
|
find $RPM_BUILD_ROOT%{_libdir}/perl5 -type f -perm 555 -print0 |
|
|
|
|
xargs -0 chmod 755
|
|
|
|
|
|
|
|
# unnecessary libraries for swig bindings
|
|
|
|
rm -f ${RPM_BUILD_ROOT}%{_libdir}/libsvn_swig_*.{so,la,a}
|
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
# Trim what goes in docdir
|
2004-09-09 12:49:17 +00:00
|
|
|
rm -rf tools/*/*.in tools/test-scripts \
|
2004-09-09 12:47:20 +00:00
|
|
|
doc/book/book/images/images doc/book/book/images/*.ppt
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:52:07 +00:00
|
|
|
# Install psvn for emacs and xemacs
|
|
|
|
for f in emacs/site-lisp xemacs/site-packages/lisp; do
|
|
|
|
install -m 755 -d ${RPM_BUILD_ROOT}%{_datadir}/$f
|
|
|
|
install -m 644 $RPM_SOURCE_DIR/psvn.el ${RPM_BUILD_ROOT}%{_datadir}/$f
|
|
|
|
done
|
|
|
|
|
2004-09-09 12:49:17 +00:00
|
|
|
# Rename authz_svn INSTALL doc for docdir
|
2004-09-09 12:52:07 +00:00
|
|
|
ln -f subversion/mod_authz_svn/INSTALL mod_authz_svn-INSTALL
|
2004-09-09 12:49:17 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
%if %{make_check}
|
|
|
|
%check
|
|
|
|
make check CLEANUP=yes
|
2004-09-09 12:49:17 +00:00
|
|
|
make -C subversion/bindings/swig/perl test
|
2004-09-09 12:47:20 +00:00
|
|
|
%endif
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
2004-09-09 12:46:37 +00:00
|
|
|
%post -p /sbin/ldconfig
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2004-09-09 12:50:43 +00:00
|
|
|
%post perl -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun perl -p /sbin/ldconfig
|
|
|
|
|
2004-09-09 12:45:32 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2004-09-09 12:47:20 +00:00
|
|
|
%doc BUGS COMMITTERS COPYING HACKING INSTALL README CHANGES
|
2004-09-09 12:49:17 +00:00
|
|
|
%doc tools subversion/LICENSE mod_authz_svn-INSTALL
|
2004-09-09 12:47:20 +00:00
|
|
|
%doc doc/book/book/book.html doc/book/book/images
|
2004-09-09 12:52:07 +00:00
|
|
|
%doc contrib/client-side/svn_load_dirs{.pl,_*,.README}
|
2004-09-09 12:47:20 +00:00
|
|
|
%{_bindir}/*
|
|
|
|
%{_libdir}/libsvn_*.so.*
|
2004-09-09 12:48:18 +00:00
|
|
|
%{_mandir}/man*/*
|
2004-09-09 12:47:20 +00:00
|
|
|
%{pydir}/svn
|
|
|
|
%{pydir}/libsvn
|
2004-09-09 12:52:07 +00:00
|
|
|
%{_datadir}/emacs/site-lisp
|
|
|
|
%{_datadir}/xemacs/site-packages/lisp
|
2004-09-09 12:49:17 +00:00
|
|
|
%exclude %{_libdir}/libsvn_swig_perl*
|
2004-09-09 12:50:43 +00:00
|
|
|
%exclude %{_mandir}/man*/*::*
|
2004-09-09 12:45:32 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_includedir}/subversion-1
|
|
|
|
%{_libdir}/libsvn*.a
|
|
|
|
%{_libdir}/libsvn*.la
|
2004-09-09 12:49:17 +00:00
|
|
|
%{_libdir}/libsvn*.so
|
|
|
|
%exclude %{_libdir}/libsvn_swig_perl*
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
%files -n mod_dav_svn
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/conf.d/subversion.conf
|
|
|
|
%{_libdir}/httpd/modules/mod_dav_svn.so
|
|
|
|
%{_libdir}/httpd/modules/mod_authz_svn.so
|
2004-09-09 12:45:32 +00:00
|
|
|
|
2004-09-09 12:49:17 +00:00
|
|
|
%files perl
|
|
|
|
%defattr(-,root,root,-)
|
2004-09-09 12:50:43 +00:00
|
|
|
%{perl_vendorarch}/auto/SVN
|
|
|
|
%{perl_vendorarch}/SVN
|
2004-09-09 12:49:17 +00:00
|
|
|
%{_libdir}/libsvn_swig_perl*
|
2004-09-09 12:50:43 +00:00
|
|
|
%{_mandir}/man*/*::*
|
2004-09-09 12:49:17 +00:00
|
|
|
|
2004-09-09 12:45:32 +00:00
|
|
|
%changelog
|
2004-09-23 08:27:44 +00:00
|
|
|
* Thu Sep 23 2004 Joe Orton <jorton@redhat.com> 1.0.8-2
|
|
|
|
- update to 1.0.8
|
|
|
|
- remove -neonver patch
|
2004-09-23 08:34:44 +00:00
|
|
|
- update psvn.el to 11062
|
2004-09-23 08:27:44 +00:00
|
|
|
|
2004-09-09 12:52:07 +00:00
|
|
|
* Mon Aug 23 2004 Joe Orton <jorton@redhat.com> 1.0.6-3
|
|
|
|
- add svn_load_dirs.pl to docdir (#128338)
|
|
|
|
- add psvn.el (#128356)
|
|
|
|
|
2004-09-09 12:51:59 +00:00
|
|
|
* Thu Jul 22 2004 Joe Orton <jorton@redhat.com> 1.0.6-2
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jul 20 2004 Joe Orton <jorton@redhat.com> 1.0.6-1
|
|
|
|
- update to 1.0.6
|
|
|
|
- allow build against neon 0.24.*
|
|
|
|
|
2004-09-09 12:51:43 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Jun 10 2004 Joe Orton <jorton@redhat.com> 1.0.5-1
|
|
|
|
- update to 1.0.5
|
|
|
|
|
|
|
|
* Mon Jun 7 2004 Joe Orton <jorton@redhat.com> 1.0.4-2
|
|
|
|
- add ra_svn security fix for CVE CAN-2004-0413 (Ben Reser)
|
|
|
|
|
2004-09-09 12:50:43 +00:00
|
|
|
* Fri May 28 2004 Joe Orton <jorton@redhat.com> 1.0.4-1.1
|
|
|
|
- rebuild for new swig
|
|
|
|
|
|
|
|
* Sat May 22 2004 Joe Orton <jorton@redhat.com> 1.0.4-1
|
|
|
|
- update to 1.0.4
|
|
|
|
|
|
|
|
* Fri May 21 2004 Joe Orton <jorton@redhat.com> 1.0.3-2
|
|
|
|
- build /usr/bin/* as PIEs
|
|
|
|
- add fix for libsvn_client symbol namespace violation (r9608)
|
|
|
|
|
|
|
|
* Wed May 19 2004 Joe Orton <jorton@redhat.com> 1.0.3-1
|
|
|
|
- update to 1.0.3
|
|
|
|
|
|
|
|
* Sun May 16 2004 Joe Orton <jorton@redhat.com> 1.0.2-3
|
|
|
|
- add ldconfig invocations for -perl post/postun (Ville Skyttä)
|
|
|
|
|
|
|
|
* Tue May 4 2004 Joe Orton <jorton@redhat.com> 1.0.2-2
|
|
|
|
- add perl MODULE_COMPAT requirement for -perl subpackage
|
|
|
|
- move perl man pages into -perl subpackage
|
|
|
|
- clean up -perl installation and dependencies (Ville Skyttä, #123045)
|
|
|
|
|
2004-09-09 12:50:03 +00:00
|
|
|
* Mon Apr 19 2004 Joe Orton <jorton@redhat.com> 1.0.2-1
|
|
|
|
- update to 1.0.2
|
|
|
|
|
2004-09-09 12:49:17 +00:00
|
|
|
* Fri Mar 12 2004 Joe Orton <jorton@redhat.com> 1.0.1-1
|
|
|
|
- update to 1.0.1; cvs2svn no longer included
|
|
|
|
|
|
|
|
* Fri Mar 12 2004 Joe Orton <jorton@redhat.com> 1.0.0-3
|
|
|
|
- add -perl subpackage for Perl bindings (steve@silug.org)
|
|
|
|
- include mod_authz_svn INSTALL file
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 1.0.0-2.1
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Feb 25 2004 Joe Orton <jorton@redhat.com> 1.0.0-2
|
|
|
|
- add fix for lack of apr_dir_read ordering guarantee (Philip Martin)
|
|
|
|
- enable compression in ra_dav by default (Tobias Ringström)
|
|
|
|
|
|
|
|
* Mon Feb 23 2004 Joe Orton <jorton@redhat.com> 1.0.0-1
|
|
|
|
- update to one-dot-oh
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 0.37.0-2
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 12:48:18 +00:00
|
|
|
* Sat Jan 24 2004 Joe Orton <jorton@redhat.com> 0.37.0-1
|
|
|
|
- update to 0.37.0
|
|
|
|
|
|
|
|
* Tue Jan 13 2004 Joe Orton <jorton@redhat.com> 0.36.0-1
|
|
|
|
- update to 0.36.0
|
2004-09-09 12:48:02 +00:00
|
|
|
|
2004-09-09 12:48:18 +00:00
|
|
|
* Thu Jan 8 2004 Joe Orton <jorton@redhat.com> 0.35.1-1
|
|
|
|
- update to 0.35.1
|
|
|
|
- fix shebang lines in hook scripts (#111498)
|
|
|
|
|
|
|
|
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 0.34.0-3
|
|
|
|
- rebuild against db-4.2.52.
|
|
|
|
|
|
|
|
* Thu Dec 4 2003 Joe Orton <jorton@redhat.com> 0.34.0-2
|
|
|
|
- package all man pages
|
|
|
|
|
|
|
|
* Thu Dec 04 2003 Joe Orton <jorton@redhat.com> 0.34.0-1
|
|
|
|
- update to 0.34.0
|
|
|
|
|
|
|
|
* Thu Nov 13 2003 Joe Orton <jorton@redhat.com> 0.32.1-3
|
|
|
|
- remove workarounds for #109268 and #109267
|
|
|
|
|
|
|
|
* Thu Nov 6 2003 Joe Orton <jorton@redhat.com> 0.32.1-2
|
|
|
|
- rebuild for Python 2.3.2
|
|
|
|
- remove libtool workaround
|
|
|
|
- add workarounds for #109268 and #109267
|
2004-09-09 12:47:26 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
* Fri Oct 24 2003 Joe Orton <jorton@redhat.com> 0.32.1-1
|
|
|
|
- update to 0.31.2
|
|
|
|
- work around libtool/ppc64/db4 confusion
|
|
|
|
|
2004-09-09 12:48:18 +00:00
|
|
|
* Mon Oct 13 2003 Jeff Johnson <jbj@jbj.org> 0.31.0-2.1
|
|
|
|
- rebuild against db-4.2.42.
|
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
* Fri Oct 10 2003 Joe Orton <jorton@redhat.com> 0.31.0-2
|
|
|
|
- include The Book
|
|
|
|
- don't add an RPATH for libdir to executables
|
|
|
|
|
|
|
|
* Thu Oct 9 2003 Joe Orton <jorton@redhat.com> 0.31.0-1
|
|
|
|
- update to 0.31.0
|
|
|
|
|
|
|
|
* Wed Sep 24 2003 Joe Orton <jorton@redhat.com> 0.30.0-1
|
|
|
|
- update to 0.30.0
|
|
|
|
|
|
|
|
* Sun Sep 7 2003 Joe Orton <jorton@redhat.com> 0.29.0-1
|
|
|
|
- update to 0.29.0
|
|
|
|
|
|
|
|
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.25-2
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jul 15 2003 Joe Orton <jorton@redhat.com> 0.25-1
|
|
|
|
- update to 0.25
|
|
|
|
|
|
|
|
* Mon Jul 14 2003 Joe Orton <jorton@redhat.com> 0.24.2-4
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jun 24 2003 Joe Orton <jorton@redhat.com> 0.24.2-3
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Tue Jun 24 2003 Joe Orton <jorton@redhat.com> 0.24.2-2
|
|
|
|
- don't use any LDFLAGS when building swig, fix for libdir=lib64
|
|
|
|
|
|
|
|
* Tue Jun 24 2003 Joe Orton <jorton@redhat.com> 0.24.2-1
|
|
|
|
- update to 0.24.2; fix Python bindings
|
|
|
|
|
|
|
|
* Tue Jun 17 2003 Joe Orton <jorton@redhat.com> 0.24.1-1
|
|
|
|
- update to 0.24.1; include mod_authz_svn
|
|
|
|
- force use of CC=gcc CXX=g++
|
|
|
|
|
|
|
|
* Mon Jun 9 2003 Joe Orton <jorton@redhat.com> 0.23.0-2
|
|
|
|
- add cvs2svn man page
|
|
|
|
|
|
|
|
* Mon Jun 9 2003 Joe Orton <jorton@redhat.com> 0.23.0-1
|
|
|
|
- update to 0.23.0
|
|
|
|
|
|
|
|
* Sun Jun 8 2003 Joe Orton <jorton@redhat.com> 0.22.2-7
|
|
|
|
- package cvs2svn to be usable outside docdir
|
|
|
|
- remove unnecessary files
|
|
|
|
|
|
|
|
* Thu Jun 5 2003 Joe Orton <jorton@redhat.com> 0.22.2-6
|
|
|
|
- add fix for unhandled deadlock errors in libsvn_fs
|
|
|
|
- don't package the out-of-date info pages
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 0.22.2-5
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 3 2003 Joe Orton <jorton@redhat.com> 0.22.2-4
|
|
|
|
- cleanups
|
|
|
|
|
|
|
|
* Mon Jun 2 2003 Elliot Lee <sopwith@redhat.com> 0.22.2-3
|
|
|
|
- Add back in s390x, excludearch bad.
|
|
|
|
|
|
|
|
* Tue May 20 2003 Jeff Johnson <jbj@redhat.com> 0.22.2-2
|
|
|
|
- use external neon-0.23.9-2 (i.e. with neon-config), drop internal neon.
|
|
|
|
- use db-4.1.25, not db-4.0.14.
|
|
|
|
- do "make check" (but ignore failure for now).
|
|
|
|
- s390x knows not of httpd >= 2.0.45.
|
|
|
|
|
|
|
|
* Thu May 8 2003 Joe Orton <jorton@redhat.com> 0.22.2-1
|
|
|
|
- update to 0.22.2; add mod_dav_svn subpackage
|
|
|
|
- include Python bindings
|
|
|
|
- neon: force use of expat, enable SSL
|
|
|
|
- drop check for specific apr version added in -3
|
|
|
|
|
|
|
|
* Thu May 1 2003 Joe Orton <jorton@redhat.com> 0.20.1-6
|
|
|
|
- filter out perl(Config::IniFiles) requirement
|
|
|
|
|
|
|
|
* Thu May 1 2003 Joe Orton <jorton@redhat.com> 0.20.1-5
|
|
|
|
- fail early if apr-config is not 0.9.3
|
|
|
|
|
|
|
|
* Wed Apr 30 2003 Joe Orton <jorton@redhat.com> 0.20.1-4
|
|
|
|
- fix workaround for non-lib64 platforms
|
|
|
|
|
|
|
|
* Wed Apr 30 2003 Joe Orton <jorton@redhat.com> 0.20.1-3
|
|
|
|
- add workaround for libtool problem
|
|
|
|
|
|
|
|
* Tue Apr 29 2003 Joe Orton <jorton@redhat.com> 0.20.1-2
|
|
|
|
- require and use system apr, apr-util libraries
|
|
|
|
- use License not Copyright
|
2004-09-09 12:46:47 +00:00
|
|
|
|
2004-09-09 12:47:20 +00:00
|
|
|
* Fri Apr 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- update to 0.20.1
|
2004-09-09 12:46:37 +00:00
|
|
|
|
2004-09-09 12:45:32 +00:00
|
|
|
* Wed Jan 22 2003 Jeff Johnson <jbj@redhat.com> 0.17.1-4503.0
|
|
|
|
- upgrade to 0.17.1.
|
|
|
|
|
|
|
|
* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.16-3987.1
|
|
|
|
- upgrade to 0.16.
|
|
|
|
|
|
|
|
* Wed Nov 13 2002 Jeff Johnson <jbj@redhat.com> 0.15-3687.2
|
|
|
|
- don't mess with the info handbook install yet.
|
|
|
|
|
|
|
|
* Sun Nov 10 2002 Jeff Johnson <jbj@redhat.com> 0.15-3687.1
|
|
|
|
- use libdir, build on x86_64 too.
|
|
|
|
- avoid "perl(Config::IniFiles) >= 2.27" dependency.
|
|
|
|
|
|
|
|
* Sat Nov 9 2002 Jeff Johnson <jbj@redhat.com> 0.15-3687.0
|
|
|
|
- first build from adapted spec file, only client and libraries for now.
|
|
|
|
- internal apr/apr-utils/neon until incompatibilities sort themselves out.
|
|
|
|
- avoid libdir issues on x86_64 for the moment.
|