all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* more bzr woes
@ 2013-06-22  8:19 Ivan Kanis
  2013-06-22  8:28 ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: Ivan Kanis @ 2013-06-22  8:19 UTC (permalink / raw)
  To: Emacs Development List

I have to update jumpc in ELPA. I am getting an error. I have pasted my
session below.

9:39 tao% /ext4
     mkdir emacs-elpa
9:39 tao% /ext4
     cd emacs-elpa
9:39 tao% /ext4/emacs-elpa
     bzr init-repo
bzr: ERROR: command 'init-repository' requires argument LOCATION
9:40 tao(3)% /ext4/emacs-elpa
     bzr branch bzr+ssh://ivankanis@bzr.savannah.gnu.org/emacs/elpa elpa
^Cbzr: interrupted \ Fetching revisions:Inserting stream:Estimate 6536/12092
9:42 tao(3)% /ext4/emacs-elpa
     bzr branch bzr+ssh://ivankanis@bzr.savannah.gnu.org/emacs/elpa elpa
Branched 410 revisions.
9:43 tao% /ext4/emacs-elpa
     cd elpa
10:14 tao% /ext4/emacs-elpa/elpa
      ls
10:14 tao% /ext4/emacs-elpa/elpa
      bzr checkout
bzr: ERROR: exceptions.AssertionError: ('not present: %r', StaticTuple('', '', 'TREE_ROOT'))

Traceback (most recent call last):
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/commands.py", line 930, in exception_to_return_code
    return the_callable(*args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/commands.py", line 1141, in run_bzr
    ret = run(*run_argv)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/commands.py", line 673, in run_argv_aliases
    return self.run(**all_cmd_args)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/commands.py", line 697, in run
    return self._operation.run_simple(*args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 136, in run_simple
    self.cleanups, self.func, *args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 166, in _do_with_cleanups
    result = func(*args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/builtins.py", line 1665, in run
    source.bzrdir.create_workingtree(revision_id)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/bzrdir.py", line 907, in create_workingtree
    accelerator_tree=accelerator_tree, hardlink=hardlink)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/workingtree_4.py", line 1565, in initialize
    delta_from_tree=delta_from_tree)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/transform.py", line 2543, in build_tree
    delta_from_tree)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/transform.py", line 2659, in _build_tree
    precomputed_delta=precomputed_delta)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/transform.py", line 1747, in apply
    self._tree.apply_inventory_delta(inventory_delta)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/mutabletree.py", line 52, in tree_write_locked
    return unbound(self, *args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/workingtree_4.py", line 1320, in apply_inventory_delta
    state.update_by_delta(changes)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/dirstate.py", line 1387, in update_by_delta
    self._apply_insertions(insertions.values())
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/dirstate.py", line 1439, in _apply_insertions
    path_utf8=path_utf8)
  File "/usr/local/lib/python2.6/dist-packages/bzrlib/dirstate.py", line 3116, in update_minimal
    raise AssertionError('not present: %r', entry_key)
AssertionError: ('not present: %r', StaticTuple('', '', 'TREE_ROOT'))

bzr 2.6b2 on python 2.6.6 (Linux-2.6.35-22-generic-i686-with-
    Ubuntu-10.10-maverick)
arguments: ['/usr/local/bin/bzr', 'checkout']
plugins: bash_completion[2.6b2], changelog_merge[2.6b2], launchpad[2.6b2],
    netrc_credential_store[2.6b2], news_merge[2.6b2], po_merge[2.6b2],
    weave_fmt[2.6b2]
encoding: 'utf-8', fsenc: 'UTF-8', lang: 'en_US.UTF-8'

*** Bazaar has encountered an internal error.  This probably indicates a
    bug in Bazaar.  You can help us fix it by filing a bug report at
        https://bugs.launchpad.net/bzr/+filebug
    including this traceback and a description of the problem.
10:14 tao(4)% /ext4/emacs-elpa/elpa
10:14 tao(4)% /ext4/emacs-elpa/elpa



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: more bzr woes
  2013-06-22  8:19 more bzr woes Ivan Kanis
@ 2013-06-22  8:28 ` Eli Zaretskii
  2013-06-22  9:19   ` Ivan Kanis
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2013-06-22  8:28 UTC (permalink / raw)
  To: Ivan Kanis; +Cc: emacs-devel

> From: Ivan Kanis <ivan@kanis.fr>
> Date: Sat, 22 Jun 2013 10:19:26 +0200
> 
> I have to update jumpc in ELPA. I am getting an error. I have pasted my
> session below.

Try this:

  bzr co -r170
  bzr update

See also

  https://bugs.launchpad.net/bzr/+bug/830947
  https://bugs.launchpad.net/bzr/+bug/937101



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: more bzr woes
  2013-06-22  8:28 ` Eli Zaretskii
@ 2013-06-22  9:19   ` Ivan Kanis
  0 siblings, 0 replies; 3+ messages in thread
From: Ivan Kanis @ 2013-06-22  9:19 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel

June, 22 at 11:28 Eli wrote:

>> I have to update jumpc in ELPA. I am getting an error. I have pasted my
>> session below.
>
> Try this:
>
>   bzr co -r170
>   bzr update

Actually I don't need to do this. I just realized I have a working tree
after doing:

bzr branch bzr+ssh://ivankanis@bzr.savannah.gnu.org/emacs/elpa elpa

It wasn't the case when I ran that command with emacs trunk.

I did a cursory read of the bugs you mentioned.
-- 
PEBKAC (Problem Exists Between Keyboard And Chair).
    -- BOFH excuse #49



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-22  9:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-22  8:19 more bzr woes Ivan Kanis
2013-06-22  8:28 ` Eli Zaretskii
2013-06-22  9:19   ` Ivan Kanis

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.