From: Robert D. <ro...@he...> - 2006-09-29 15:00:06
|
Understood on the no time to migrate thing. It is difficult and time consuming to migrate repos I know. I tried using the command line cvs client but kept running into password prompts. sf.net offers anon access but I couldn't quite work that out so... For the sake of this list and future googlers here is what I did: rsync -av rsync://lcd4linux.cvs.sourceforge.net/cvsroot/lcd4linux/* . This worked out much better for me than CVS, and I got all of the files in the repo without complaint, except... All files were downloaded with ',v' appended to the filenames! So here is the one- liner I used to deal with that: perl -e 'foreach $old (glob "*,v"){$new = $old, $new =~ s/,v $//;rename $old, $new;}' Getting it to configure is a different story. I am still working on that. Right now I am getting errors indicating my 'missing script is either too old or missing'. Any ideas what that means? On Sep 29, 2006, at 1:17 AM, Michael Reinelt wrote: > Hi Robert, > >> Looking through the CVS repos on sf.net, I see that there are many >> many files that have been updated in the last few weeks, and last few >> months. I am curious why you are not including all of this stuff in >> the subversion repo in your trac pages? I work with svn on a daily >> basis and it would be a simple matter for me to tarball all of the >> current files (for anyone's benefit not just mine) if they were all >> in there. > > We are planning to switch to SVN on trac, but I couldn't find the time > to migrate the repository yet. > >> I am not as adept with CVS, indeed I don't even have an CVS client >> handy. Any plans to put your project in subversion? And how >> troublesome would it be for you to tarball the current working set >> for me to use? > > Well, I don't like the idea of tarballs, because they're out of > date as > soon as they are created :-) > > Please get yourself a CVS client and use the CVS repo. Basic CVS > handling should be the same as with svn. > > > > bye, Michael > > -- > Michael Reinelt <re...@eu...> > http://home.pages.at/reinelt > GPG-Key 0xDF13BA50 > ICQ #288386781 |