[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: cvs2svn crash

From: <kfogel_at_collab.net>
Date: 2003-08-22 16:51:29 CEST

Marcus Comstedt <marcus@mc.pp.se> writes:
> How do I install the bsddb module? If it is required by cvs2svn, it
> should probably import it explicitly rather than using anydbm, with a
> note about it in the README.

There's code near the beginning of cvs2svn that's supposed to make
sure we get the right db:

-----------------------------------------------------------------------------
# Don't settle for less.
if anydbm._defaultmod.__name__ == 'dumbdbm':
  print 'ERROR: your installation of Python does not contain a proper'
  print ' DBM module. This script cannot continue.'
  print ' to solve: see http://python.org/doc/current/lib/module-anydbm.html'
  print ' for details.'
  sys.exit(1)
-----------------------------------------------------------------------------

But it only makes sure we don't get 'dumbdbm'. Maybe it needs to do
more? I don't have time to write/test a patch, but I would be happy
to review/apply one...

-Karl

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Aug 22 17:35:25 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.