Activity log for bug #56647

Date Who What changed Old value New value Message
2006-08-16 23:19:17 Harald Meland bug added bug
2006-08-16 23:47:48 Jelmer Vernooij bzr-svn: status Unconfirmed Confirmed
2006-08-16 23:47:48 Jelmer Vernooij bzr-svn: importance Untriaged Medium
2006-08-16 23:47:48 Jelmer Vernooij bzr-svn: statusexplanation
2006-08-16 23:47:48 Jelmer Vernooij bzr-svn: assignee jelmer
2006-12-14 10:28:26 Jelmer Vernooij bzr-svn: importance Medium High
2006-12-25 03:00:55 Jelmer Vernooij bzr-svn: status Confirmed Fix Committed
2006-12-25 03:00:55 Jelmer Vernooij bzr-svn: statusexplanation I *think* this is fixed now, at least I can no longer reproduce it with the repositories mentioned in this bug report.
2006-12-27 19:42:00 Jelmer Vernooij description Hi, I'm hoping to be able to use this plugin to do my own development under bzr even though upstream uses svn. However, when I try to branch upstream, things go wrong: 1) AutoREALM, https branch on SourceForge: $ bzr.dev branch svn+https://svn.sourceforge.net/svnroot/autorealm/autorealm_wx/trunk autorealm bzr: ERROR: libsvn._core.SubversionException: ("REPORT request failed on '/svnroot/autorealm/!svn/vcc/default'", 175002) Traceback (most recent call last): File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 697, in run_bzr_catch_errors return run_bzr(argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 659, in run_bzr ret = run(*run_argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 281, in run_argv_aliases return self.run(**all_cmd_args) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/builtins.py", line 675, in run revision_id, basis_dir) File "/home/hmeland/.bazaar/plugins/svn/format.py", line 80, in sprout result_repo = repo.clone(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 38, in read_locked return unbound(self, *args, **kwargs) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 282, in clone self.copy_content_into(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 234, in copy_content_into return InterRepository.get(self, destination).copy_content(revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 51, in write_locked return unbound(self, *args, **kwargs) File "/home/hmeland/.bazaar/plugins/svn/fetch.py", line 366, in copy_content svn.ra.reporter2_invoke_finish_report(reporter, reporter_baton) File "/usr/lib/python2.4/site-packages/libsvn/ra.py", line 741, in svn_ra_reporter2_invoke_finish_report return apply(_ra.svn_ra_reporter2_invoke_finish_report, args) SubversionException: ("REPORT request failed on '/svnroot/autorealm/!svn/vcc/default'", 175002) bzr 0.9.0dev0 on python 2.4.3.final.0 (linux2) arguments: ['/home/hmeland/src/bzr/bzr.dev/bzr', 'branch', 'svn+https://svn.sourceforge.net/svnroot/autorealm/autorealm_wx/trunk', 'autorealm'] ** please send this report to bazaar-ng@lists.ubuntu.com 2) As a test, I also tried to branch Subversion's own trunk over http: $ bzr.dev branch svn+http://svn.collab.net/repos/svn/trunk/ subversion [ ] copying revision 2/15077bzr: ERROR: exceptions.AttributeError: open_tmp_file Traceback (most recent call last): File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 697, in run_bzr_catch_errors return run_bzr(argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 659, in run_bzr ret = run(*run_argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 281, in run_argv_aliases return self.run(**all_cmd_args) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/builtins.py", line 675, in run revision_id, basis_dir) File "/home/hmeland/.bazaar/plugins/svn/format.py", line 80, in sprout result_repo = repo.clone(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 38, in read_locked return unbound(self, *args, **kwargs) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 282, in clone self.copy_content_into(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 234, in copy_content_into return InterRepository.get(self, destination).copy_content(revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 51, in write_locked return unbound(self, *args, **kwargs) File "/home/hmeland/.bazaar/plugins/svn/fetch.py", line 360, in copy_content edit, edit_baton, pool) File "/usr/lib/python2.4/site-packages/libsvn/ra.py", line 427, in svn_ra_do_update return apply(_ra.svn_ra_do_update, args) AttributeError: open_tmp_file bzr 0.9.0dev0 on python 2.4.3.final.0 (linux2) arguments: ['/home/hmeland/src/bzr/bzr.dev/bzr', 'branch', 'svn+http://svn.collab.net/repos/svn/trunk/', 'subversion'] ** please send this report to bazaar-ng@lists.ubuntu.com I believe I have installed all the prerequisites; I'm running Dapper, and have installed Jelmer's versions of libsvn0_1.3.1-3ubuntu1_i386.deb python-subversion_1.3.1-3ubuntu1_i386.deb python2.4-subversion_1.3.1-3ubuntu1_all.deb (although I'm not aware of any easy command that would show that it is in fact Jelmer's packages I have on my system). My bzr.dev is currently at revno 1912, while the svn plugin is at revno 215. If I try with a newer bzr.dev, I get different errors; they seem to indicate that some bzrdir.transport gets set to None, so access to bzrdir.transport.base fails. Hi, I'm hoping to be able to use this plugin to do my own development under bzr even though upstream uses svn. However, when I try to branch upstream, things go wrong: 1) AutoREALM, https branch on SourceForge: $ bzr.dev branch svn+https://svn.sourceforge.net/svnroot/autorealm/autorealm_wx/trunk autorealm bzr: ERROR: libsvn._core.SubversionException: ("REPORT request failed on '/svnroot/autorealm/!svn/vcc/default'", 175002) Traceback (most recent call last): File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 697, in run_bzr_catch_errors return run_bzr(argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 659, in run_bzr ret = run(*run_argv) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/commands.py", line 281, in run_argv_aliases return self.run(**all_cmd_args) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/builtins.py", line 675, in run revision_id, basis_dir) File "/home/hmeland/.bazaar/plugins/svn/format.py", line 80, in sprout result_repo = repo.clone(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 38, in read_locked return unbound(self, *args, **kwargs) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 282, in clone self.copy_content_into(result, revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/repository.py", line 234, in copy_content_into return InterRepository.get(self, destination).copy_content(revision_id, basis) File "/home/hmeland/src/bzr/bzr.dev/bzrlib/decorators.py", line 51, in write_locked return unbound(self, *args, **kwargs) File "/home/hmeland/.bazaar/plugins/svn/fetch.py", line 366, in copy_content svn.ra.reporter2_invoke_finish_report(reporter, reporter_baton) File "/usr/lib/python2.4/site-packages/libsvn/ra.py", line 741, in svn_ra_reporter2_invoke_finish_report return apply(_ra.svn_ra_reporter2_invoke_finish_report, args) SubversionException: ("REPORT request failed on '/svnroot/autorealm/!svn/vcc/default'", 175002) bzr 0.9.0dev0 on python 2.4.3.final.0 (linux2) arguments: ['/home/hmeland/src/bzr/bzr.dev/bzr', 'branch', 'svn+https://svn.sourceforge.net/svnroot/autorealm/autorealm_wx/trunk', 'autorealm'] ** please send this report to bazaar-ng@lists.ubuntu.com
2006-12-27 19:42:00 Jelmer Vernooij title Error branching from svn+http(s) branch. Timeout during https checkout
2007-01-16 09:57:04 Jelmer Vernooij bzr-svn: status Fix Committed Fix Released