Lucas Nussbaum wrote: > Apparently it blocks during the tests:
Thanks to your output I was able to focus on a particular area and reproduce the problem. It looks like some tests are looping infinitely. A quick solution would be to remove subversion from Build-Depends, but I've managed to produce a patch (attached) which I'll point upstream at. Thanks again. Regards, -- Chris Lamb, UK [EMAIL PROTECTED] GPG: 0x634F9A20
diff -urNad py/path/svn/urlcommand.py codespeak-lib-0.9.1/py/path/svn/urlcommand.py --- py/path/svn/urlcommand.py 2008-07-12 03:02:11.000000000 +0100 +++ py/path/svn/urlcommand.py 2008-07-12 03:03:23.000000000 +0100 @@ -239,7 +239,8 @@ for lsline in lines: if lsline: info = InfoSvnCommand(lsline) - nameinfo_seq.append((info._name, info)) + if info._name != '.': + nameinfo_seq.append((info._name, info)) return nameinfo_seq auth = self.auth and self.auth.makecmdoptions() or None if self.rev is not None:
signature.asc
Description: PGP signature