Re: Error copying: "790.537269 vcp: no DB_File entry for svn:svn://jc.ngo.org.uk; /nik/libtap/trunk/src/t/plan/Makefile@204"
Tyler MacDonald <[email protected]> Wed, 21 Jun 2006 16:33:58 -0700
| Newsgroups | gmane.comp.version-control.revml |
|---|---|
| Message-ID | <[email protected]> |
--lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Barrie Slaymaker <[email protected]> wrote: > What version of VCP are you using? Tried both the last release and latest perforce. > Is svn:svn: what you wanted (just checking the aliteration)? Well, "svn:" is the access method, and "svn://" is the start of the subversion url... that's exactly how I converted my own CVS repo to perforce as well (vcp couldn't handle my CVS repo either, so I had to first use cvs2svn to convert it to a subversion repo, then use vcp on *that* to get it into perforce... cheezy script attached). > The svn source is not fully tested and I'm not sure what could cause > those symptoms. Do you need the entire revision history of libtap just > the current head of development? The latter is easier and less risky :) I don't *need* it, but I'd like to have it, and I'd like vcp to be able to do it, so I masochistically forged ahead. :-) I've just posted another message with more details about the plight of converting this particular svn tree to p4. Cheers, Tyler --lrZ03NoBR/3+SXJZ Content-Type: application/x-sh Content-Disposition: attachment; filename="make-p4.sh" Content-Transfer-Encoding: quoted-printable #!/bin/bash=0A=0A. $HOME/.p4config=0Aexport P4PORT P4USER P4CLIENT=0A=0Aif = test -z "$2"; then=0A echo "usage: $0 cvsname p4-path"=0A exit 1=0Afi=0A=0A= if [ ! -d "/home/cvs/$1" ]; then=0A echo "$1 is not in cvs"=0A exit 2=0Afi= =0A=0Acd $HOME=0Akillall -9 svnserve=0Arm -rf svntemp=0Acvs2svn -s svntemp = /home/cvs/$1=0Asvnserve -d -r $HOME/svntemp=0Avcp svn:svn://localhost/:trun= k/... p4:$2=0Akillall svnserve=0Arm -rf svntemp=0Aexit 0=0A=0A --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ revml mailing list [email protected] http://maillist.perforce.com/mailman/listinfo/revml --lrZ03NoBR/3+SXJZ--