cvsupd
jeev
jeev at boldinternet.net
Thu May 15 09:14:26 PDT 2003
This has nothing to with readme's, I guess he just used that as an example.
j
> Sure. CVSup does not delete files, it doesn't know about.
> Certainly it doesn't know anything about fart and therefore
> won't touch it. This is intended behaviour of CVSup.
> (Think about the "make readmes" nightmare, that several
> users, including me stubled across. The README.html files
> never get deleted and so you are stuck with dozens of
> virtually empty and outdated port directories).
Nightmare? I always thought of it more as a nusance.
Can't you run something like (note, I write in zsh, convert to whatever
language you like):
cd /usr/ports
for foo ( * )
do
if [[ -d $foo ]]
then
cd $foo
for bar ( * )
do
if [[ -d $bar ]]
then
rm $bar/README.html
rmdir $bar
fi
done
cd ..
fi
done
make readmes
You'll have to ignore a huge number of warnings about being unable to
rmdir directories with files in them, but it seems pretty simple and
shouldn't take too long to run on most machines.
You could also probably make this a little safer by running some checks
to make sure you don't cd into directories you don't have permission to,
but that's left as an exercise for the reader.
--
\ |_ _|__ __|_ \ __| Jason Andresen jandrese at mitre.org
|\/ | | | / _| Network and Distributed Systems Engineer
_| _|___| _| _|_\___| Office: 703-883-7755
_______________________________________________
freebsd-hackers at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe at freebsd.org"
More information about the freebsd-hackers
mailing list