opt/subversion
Jose V Beneyto 8b07d416d9 [notify] subversion: updated to 1.7.10
This release addresses three security issues:
    CVE-2013-1968: fsfs repository corruption caused by newline characters in filenames
    CVE-2013-2088: contrib hook-scripts can allow arbitrary code execution
    CVE-2013-2112: svnserve remotely triggerable DoS.

See:
    http://mail-archives.apache.org/mod_mbox/subversion-dev/201305.mbox/<CADkdwvRK51pQsybfvsAzjxQJrmVpL0fEa1K4WGkUP9Tzz6KFDw@mail.gmail.com>
    http://svn.apache.org/repos/asf/subversion/tags/1.7.10/CHANGES
2013-06-05 11:56:25 +02:00
..
.footprint subversion: updated to 1.7.1 2011-11-10 17:55:37 +01:00
.md5sum [notify] subversion: updated to 1.7.10 2013-06-05 11:56:25 +02:00
Pkgfile [notify] subversion: updated to 1.7.10 2013-06-05 11:56:25 +02:00
README create branch for 2.2 2006-02-23 15:26:10 +00:00

NOTES

This is a port for the subversion revision control; if you have apache
(version 2.0+) installed, you'll also get the apache modules to run a
subversion server via apache/WebDAV.
Else you'll still be able to create a server with the svnserve
application. If you want absolutely no server parts, add
"--without-berkeley-db" to the configure line

If you're going to install apache later on, you'll need to recompile
this package (solutions to this are already planned).

If you want Python Bindings, install SWIG and comment out the few lines
in the build() function

PRE-INSTALL (SERVER)
Make sure you install expat before you install apache; also, note that you'll
get a footprint missmatch


POST-INSTALL (SERVER)

add something like this to your apache configuration:

#LoadModule dav_module         lib/apache/mod_dav.so
#LoadModule dav_svn_module     lib/apache/mod_dav_svn.so
#<Location /svn/repos>
#   DAV svn
#   SVNPath /home/svnroot
#
#   # Limit write permission to list of valid users.
#   <LimitExcept GET PROPFIND OPTIONS REPORT>
#      # Require SSL connection for password protection.
#      # SSLRequireSSL
#
#      AuthType Basic
#      AuthName "Authorization Realm"
#      AuthUserFile /absolute/path/to/passwdfile
#      Require valid-user
#   </LimitExcept>
#</Location>