On Fri, May 3, 2013 at 8:34 PM, Ben Reser <[email protected]> wrote: > Here it is: the first Release Candidate for Subversion 1.8.0. You can > fetch the proposed tarballs from here: > https://dist.apache.org/repos/dist/dev/subversion > > The magic rev is r1478983
Hi Ben, Minor issue, but https://dist.apache.org/repos/dist/dev/subversion/subversion-1.8.0-rc1.zip differs from https://svn.apache.org/repos/asf/subversion/branches/1.8.x@1478983 in an unexpected way. The links in these two svnpubsub files are resolved: C:\SVN\src-branch-1.8.x>svn st tools M tools\server-side\svnpubsub\rc.d\svnpubsub M tools\server-side\svnpubsub\rc.d\svnwcsub C:\SVN\src-branch-1.8.x>svn diff tools Index: tools/server-side/svnpubsub/rc.d/svnpubsub =================================================================== --- tools/server-side/svnpubsub/rc.d/svnpubsub (revision 1478983) +++ tools/server-side/svnpubsub/rc.d/svnpubsub (working copy) @@ -1 +1,37 @@ -link svnpubsub.freebsd \ No newline at end of file +#!/bin/sh +# +# PROVIDE: svnpubsub +# REQUIRE: DAEMON +# KEYWORD: shutdown + +. /etc/rc.subr + +name="svnpubsub" +rcvar=`set_rcvar` + +load_rc_config $name + +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# SET THEM IN THE /etc/rc.conf FILE +# +svnpubsub_enable=${svnpubsub_enable-"NO"} +svnpubsub_user=${svnpubsub_user-"svn"} +svnpubsub_group=${svnpubsub_group-"svn"} +svnpubsub_reactor=${svnpubsub_reactor-"poll"} +svnpubsub_pidfile=${svnpubsub_pidfile-"/var/run/svnpubsub/svnpubsub.pid"} +svnpubsub_cmd_int=${svnpubsub_cmd_int-"python"} +pidfile="${svnpubsub_pidfile}" + +export PYTHON_EGG_CACHE="/home/svn/.python-eggs" + +command="/usr/local/bin/twistd" +command_interpreter="/usr/local/bin/${svnwcsub_cmd_int}" +command_args="-y /usr/local/svnpubsub/svnpubsub.tac \ + --logfile=/var/log/vc/svnpubsub.log \ + --pidfile=${pidfile} \ + --uid=${svnpubsub_user} --gid=${svnpubsub_user} \ + -r${svnpubsub_reactor}" + + +run_rc_command "$1" Index: tools/server-side/svnpubsub/rc.d/svnwcsub =================================================================== --- tools/server-side/svnpubsub/rc.d/svnwcsub (revision 1478983) +++ tools/server-side/svnpubsub/rc.d/svnwcsub (working copy) @@ -1 +1,39 @@ -link svnwcsub.freebsd \ No newline at end of file +#!/bin/sh +# +# PROVIDE: svnwcsub +# REQUIRE: DAEMON +# KEYWORD: shutdown + +. /etc/rc.subr + +name="svnwcsub" +rcvar=`set_rcvar` + +load_rc_config $name + +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# SET THEM IN THE /etc/rc.conf FILE +# +svnwcsub_enable=${svnwcsub_enable-"NO"} +svnwcsub_user=${svnwcsub_user-"svnwc"} +svnwcsub_group=${svnwcsub_group-"svnwc"} +svnwcsub_pidfile=${svnwcsub_pidfile-"/var/run/svnwcsub/svnwcsub.pub"} +svnwcsub_env="PYTHON_EGG_CACHE" +svnwcsub_cmd_int=${svnwcsub_cmd_int-"python"} +svnwcsub_config=${svnwcsub_config-"/etc/svnwcsub.conf"} +svnwcsub_logfile=${svnwcsub_logfile-"/var/log/svnwcsub/svnwcsub.log"} +pidfile="${svnwcsub_pidfile}" + +export PYTHON_EGG_CACHE="/var/run/svnwcsub" + +command="/usr/local/svnpubsub/svnwcsub.py" +command_interpreter="/usr/local/bin/${svnwcsub_cmd_int}" +command_args="--daemon \ + --logfile=${svnwcsub_logfile} \ + --pidfile=${pidfile} \ + --uid=${svnwcsub_user} --gid=${svnwcsub_group} \ + --umask=002 \ + ${svnwcsub_config}" + +run_rc_command "$1" -- Paul T. Burba CollabNet, Inc. -- www.collab.net -- Enterprise Cloud Development Skype: ptburba

