atom feed34 messages in org.freebsd.freebsd-currentsys/conf/newvers.sh vs. subversion-1.7
FromSent OnAttachments
David WolfskillOct 20, 2011 4:48 am 
David WolfskillOct 20, 2011 5:20 am.diff
Steve KarglOct 20, 2011 7:33 am 
Michael ButlerOct 20, 2011 7:43 am 
Sergey V. DyatkoOct 20, 2011 11:01 pm 
Garrett CooperOct 20, 2011 11:49 pm 
John BaldwinOct 21, 2011 1:35 pm 
David WolfskillOct 21, 2011 2:11 pm 
Craig RodriguesOct 21, 2011 5:50 pm 
Doug BartonOct 21, 2011 6:11 pm 
Craig RodriguesOct 21, 2011 10:41 pm 
Doug BartonOct 21, 2011 10:47 pm 
Garrett CooperOct 22, 2011 8:29 am 
Olivier SmedtsOct 22, 2011 8:38 am 
Nali TojaOct 22, 2011 9:04 am 
Luchesar V. ILIEVOct 22, 2011 9:31 am 
Garrett CooperOct 22, 2011 11:02 am 
Doug BartonOct 22, 2011 11:11 am 
Boris SamorodovOct 22, 2011 12:06 pm 
Doug BartonOct 22, 2011 12:12 pm 
Garrett CooperOct 22, 2011 12:24 pm 
John BaldwinOct 24, 2011 4:59 am 
Luchesar V. ILIEVOct 24, 2011 6:55 am 
Craig RodriguesOct 24, 2011 10:14 am 
Doug BartonOct 24, 2011 2:48 pm 
David WolfskillOct 25, 2011 6:59 am 
Craig RodriguesOct 25, 2011 12:43 pm 
Doug BartonOct 25, 2011 1:07 pm.diff
Craig RodriguesOct 25, 2011 1:23 pm 
Doug BartonOct 25, 2011 1:53 pm 
Craig RodriguesOct 25, 2011 2:45 pm 
Doug BartonOct 25, 2011 4:03 pm 
Craig RodriguesOct 27, 2011 12:05 pm.diff, .txt, .txt
Doug BartonOct 27, 2011 1:45 pm 
Subject:sys/conf/newvers.sh vs. subversion-1.7
From:David Wolfskill (dav@catwhisker.org)
Date:Oct 20, 2011 4:48:21 am
List:org.freebsd.freebsd-current

I got to wondering why the "uname -a" output from my head slice no longer showed the SVN GRN after I had updated to subversion-1.7.0.1.

First thing I checked was that "svnversion" existed & worked; check.

Then I noticed the logic iin newvers.sh:

... for dir in /bin /usr/bin /usr/local/bin; do if [ -d "${SYSDIR}/.svn" -a -x "${dir}/svnversion" ] ; then svnversion=${dir}/svnversion break if [ -d "${SYSDIR}/../.git" -a -x "${dir}/git" ] ; then git_cmd="${dir}/git --git-dir=${SYSDIR}/../.git" break fi done ...

Well, as of subversion-1.7, we don't have a ".svn" directory in ${SYSDIR} any more -- it's only at the root of the working copy (/usr/src, in this case). So "svnversion" is never invoked.

So I've just hacked my copy to parallel the "git" stanza & look for ${SYSDIR}/../.svn, Not sure that's ideal, but there appears to be precedent.... :-}

It might be handy to resolve this prior to 9.0-RELEASE, I think.

Peace, david

See http://www.catwhisker.org/~david/publickey.gpg for my public key.