[Bug 815704] [NEW] dpkg-mergechanglogs drops invalid lines

2011-07-24 Thread Andrew Bennetts
Public bug reported:

Consider this example:

{{{
$ cat orig.changelog 
psuedo-prog (1.1.1-2) unstable; urgency=low

  * New upstream release.
  * Awesome bug fixes.

 -- Joe Foo   Thu, 28 Jan 2010 10:45:44 +

$ cat invalid.changelog 
psuedo-prog (1.1.1-2) unstable; urgency=low

  * New upstream release.
  * Awesome bug fixes.

 -- Thu, 28 Jan 2010 10:45:44 +

$ dpkg-mergechangelogs orig.changelog invalid.changelog orig.changelog 2> 
warnings.log
psuedo-prog (1.1.1-2) unstable; urgency=low

  * New upstream release.
  * Awesome bug fixes.
$ echo $?
0
}}}

Notice how the invalid line (the line with the datestamp lacks an
author, which is required) is just dropped from the output.  To be fair,
the tool does emit a warning about the invalid line:

{{{
$ cat warnings.log
dpkg-mergechangelogs: warning:invalid.changelog(l6): badly formatted 
trailer line
LINE:  -- Thu, 28 Jan 2010 10:45:44 +
dpkg-mergechangelogs: warning:invalid.changelog(l7): found eof where 
expected more change data or trailer
}}}

But I think it's more surprising to the user to drop this line than
preserve it.  At least in this case dropping the line makes the output
even less well-formed than it would be if it were preserved.

Another issue is it may be hard to figure out how the line numbers in
warnings correspond to the final output, making it hard for the user to
correct the output.  (I suppose they could instead try correcting the
input and redoing the merge, but that might be a little awkward if the
invalid data is sourced from someone else's branch in a VCS.)  If the
wrong line were still intact in the output it this would be less of an
issue.

(I can see a counter-argument that sometimes the final merge might look
quite different if run on well-formed inputs, so perhaps insisting that
the inputs are corrected is the right thing to do?  But in this simple
example at least that's not the case.)

Because the tool does clearly warn about the badly formatted input, this
doesn't seem very important, but it does complicate some automated test
cases for bzr-builddeb.

** Affects: dpkg (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/815704

Title:
  dpkg-mergechanglogs drops invalid lines

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/815704/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 815700] [NEW] dpkg-mergechangelogs emits non-standard conflict markers

2011-07-24 Thread Andrew Bennetts
Public bug reported:

dpkg-mergechangelogs emits conflict markers that differ from the those
produced by similar tools such as 'patch --merge', 'bzr merge', etc etc.
The de facto standard seems to be 7 chars: “<<<”, “===”,
“>>>”.  dpkg-mergechangelogs only emits 6 chars.  Example output
snippet:

<<
  * Awesome bug fixes.
==
  * Yet another content for 1.1.1-2
>>

This has the potential to frustrate use of tools like meld that are
intended to help manually resolve conflicts (I don't know if meld
specifically is troubled by the difference, but there are many possible
tools developers might use to examine a conflicted merge).

This was noticed in the course of working on bug 718944 of bzr-builddeb.

** Affects: dpkg (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/815700

Title:
  dpkg-mergechangelogs emits non-standard conflict markers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/815700/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-22 Thread Andrew Bennetts
Thanks for checking that Jelmer.  The feedback on the list seemed
positive too, so I'll tidy up the test failures and update the merge
proposal.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-21 Thread Andrew Bennetts
Thanks for checking that Jelmer.  The feedback on the list seemed
positive too, so I'll tidy up the test failures and update the merge
proposal.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 810284] Re: twistd crashed with IndexError in __update_cb(): list index out of range

2011-07-13 Thread Andrew Bennetts
*** This bug is a duplicate of bug 645883 ***
https://bugs.launchpad.net/bugs/645883

** This bug has been marked a duplicate of bug 645883
   twistd crashed with IndexError in __update_cb()

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/810284

Title:
  twistd crashed with IndexError in __update_cb(): list index out of
  range

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/twisted/+bug/810284/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 809048] Re: bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict' object has no attribute 'clear'

2011-07-12 Thread Andrew Bennetts
Martin [gz] wrote:
> Actually, it's not quite that easy as there's now a straight
> _TypeEqualityDict<->TestCase reference link. I'll see if I can get
> upstream to accept some kind of fix.

In the interim we could add some ugly code to handle both versions:

tef_clear = getattr(type_equality_funcs, "clear", None):
if tef_clear is None:
tef_instance_dict = getattr(type_equality_funcs, "__dict__", None)
if tef_instance_dict is not None:
tef_clear = tef_instance_dict.clear
if tef_clear is not None:
tef_clear()

Or perhaps we should just set the entire attribute to None, if it exists, and
rely on the assumption that by the time we do this self.assertEqual isn't going
to be invoked again:

sentinel = object()
if getattr(self, '_type_equality_funcs', sentinel) is not sentinel:
self._type_equality_funcs = None

-Andrew.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/809048

Title:
  bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict'
  object has no attribute 'clear'

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/809048/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 809048] Re: bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict' object has no attribute 'clear'

2011-07-11 Thread Andrew Bennetts
I suppose alternatively we could try to get upstream to add a 'clear'
method to the _TypeEqualityDict class before 2.7.3 is released.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/809048

Title:
  bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict'
  object has no attribute 'clear'

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/809048/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 809048] Re: bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict' object has no attribute 'clear'

2011-07-11 Thread Andrew Bennetts
oneiric's Python 2.7 is using an (unreleased) version of unittest which
changes the behaviour of TestCase._type_equality_funcs a little.  That's
fine, in that it's supposed to be a private variable, but bzr is poking
at it to try stop used TestCase instances from wasting memory.

bzr needs to become a little more careful in how it pokes at the private
variable, and also be adjusted to poke it slightly differently so it
will work with Python 2.7.3 (and oneiric's patched 2.7.2).

** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr
   Importance: Undecided => High

** Changed in: bzr
   Status: New => Confirmed

** Changed in: bzr
 Assignee: (unassigned) => canonical-bazaar (canonical-bazaar)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/809048

Title:
  bzr crashed with AttributeError in stopTest(): '_TypeEqualityDict'
  object has no attribute 'clear'

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/809048/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-06 Thread Andrew Bennetts
I'm asking the UDD list for feedback.

** Changed in: bzr-builddeb
   Status: Triaged => In Progress

** Changed in: bzr-builddeb
 Assignee: (unassigned) => Andrew Bennetts (spiv)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-04 Thread Andrew Bennetts
** Attachment added: "bzr-builddeb-use-dpkg-mergechangelogs-test-failures.log"
   
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+attachment/2191718/+files/bzr-builddeb-use-dpkg-mergechangelogs-test-failures.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-04 Thread Andrew Bennetts
> I think bzr-builddeb (or python-debian) needs to be switched to using
the dpkg-mergechangelog implementation

The linked branch, lp:~spiv/bzr-builddeb/use-dpkg-mergechangelogs, does
this: it deletes most of merge_changelog.py and just shells out to dpkg-
mergechangelogs.  However, 3 out of the 8 tests in
tests/test_merge_changelog.py fail.  I'm attaching the test log.  I'd
appreciate an Ubuntu dev's opinion regarding whether the divergent
behaviour is an improvement or not: it appears that in some cases dpkg-
mergechangelogs gives differently ordered output, or claims success
where before a conflict would occur.

You can also just try out my branch and see if it works better for you!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 718944] Re: bzr-builddeb merge sorts the changelog by version order, rather than preserving existing ordering

2011-07-04 Thread Andrew Bennetts
** Branch linked: lp:~spiv/bzr-builddeb/use-dpkg-mergechangelogs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/718944

Title:
  bzr-builddeb merge sorts the changelog by version order, rather than
  preserving existing ordering

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr-builddeb/+bug/718944/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 791711] Re: Bzr Crashes on Checkout without SVN

2011-06-19 Thread Andrew Bennetts
I can reproduce this with the given command.

The CHK records are ok (they are in canonical form), so I suspect this
is the same bug in stacked fetches from smart servers revealed by
lp:ubuntu/libffi.  Probably you can work around this by either:

 1. prefixing the url with “nosmart+”, i.e. 
nosmart+lp:~ubuntu-iamnafets/syncany/windows-shell, or
 2. installing the lp:bzr-repodebug plugin, and running “bzr fetch-all-records 
-d lp:~ubuntu-iamnafets/syncany/windows-shell lp:syncany”

** Changed in: bzr
   Importance: Undecided => High

** Changed in: bzr
   Status: New => Confirmed

** Tags added: stacking

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/791711

Title:
  Bzr Crashes on Checkout without SVN

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/791711/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 788609] Re: bzr crashed with ValueError in fetch(): bad marshal data (unknown type code)

2011-06-19 Thread Andrew Bennetts
I'm betting this is because one or more of your .pyc/.pyo files is
corrupt, possibly bzrlib/fetch.pyc.  That would probably be due to a
system or hardware bug rather than being a fault in bzr.

What happens if you try python -c "import bzrlib.fetch"?

** Description changed:

  Binary package hint: bzr
  
  This is happening when doing a push on a branch that has worked so far
  :)
  
  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: bzr 2.3.1-1ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  Architecture: i386
  BzrDebugFlags: set()
  BzrVersion: 2.3.1
  CommandLine: ['/usr/bin/bzr', 'pull']
  CrashDb: bzr
  Date: Thu May 26 10:23:27 2011
  EcryptfsInUse: Yes
- ExecutablePath: /usr/bin/bzr
- FileSystemEncoding: UTF-8
- InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
- InterpreterPath: /usr/bin/python2.7
- Locale: en_US.UTF-8
- PackageArchitecture: all
- Platform: Linux-2.6.38-8-generic-pae-i686-with-Ubuntu-11.04-natty
- ProcCmdline: /usr/bin/python /usr/bin/bzr pull
- ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANG=en_US.UTF-8
-  LANGUAGE=en_US:en
- PythonVersion: 2.7.1
- SourcePackage: bzr
- Title: bzr crashed with ValueError in fetch(): bad marshal data (unknown type 
code)
- UpgradeStatus: Upgraded to natty on 2011-04-22 (34 days ago)
- UserEncoding: UTF-8
- UserGroups: adm admin cdrom dialout libvirtd lpadmin plugdev sambashare
+ 
+ Traceback (most recent call last):
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 926, in 
exception_to_return_code
+ return the_callable(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 1126, in 
run_bzr
+ ret = run(*run_argv)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 691, in 
run_argv_aliases
+ return self.run(**all_cmd_args)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 713, in run
+ return self._operation.run_simple(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 135, in 
run_simple
+ self.cleanups, self.func, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 165, in 
_do_with_cleanups
+ result = func(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/builtins.py", line 1008, in 
run
+ show_base=show_base)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/workingtree.py", line 1676, 
in pull
+ local=local)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 1086, in pull
+ possible_transports=possible_transports, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3478, in pull
+ merge_tags_to_master=not source_is_master)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3588, in 
_pull
+ overwrite=overwrite, graph=graph)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 1035, in 
update_revisions
+ overwrite, graph)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3430, in 
update_revisions
+ self.target.fetch(self.source, stop_revision)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 685, in fetch
+ pb=pb)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/repository.py", line 1781, in 
fetch
+ find_ghosts=find_ghosts, fetch_spec=fetch_spec)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/repository.py", line 3427, in 
fetch
+ from bzrlib.fetch import RepoFetcher
+ ValueError: bad marshal data (unknown type code)

** Changed in: bzr
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788609

Title:
  bzr crashed with ValueError in fetch(): bad marshal data (unknown type
  code)

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/788609/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 791711] Re: Bzr Crashes on Checkout without SVN

2011-06-19 Thread Andrew Bennetts
** Description changed:

  Binary package hint: bzr
  
  Simple run of this command:
  bzr co lp:~ubuntu-iamnafets/syncany/windows-shell syncany
  
  I'd be happy to add contributors to my branch if that's necessary.
  
  PS Thank you. Oh, and I'm using some of the code in TortoiseBzr as
  reference for Syncany, so double thanks!
  
  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: bzr 2.3.1-1ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  BzrDebugFlags: set()
  BzrPlugins:
   bash_completion  
/usr/lib/python2.7/dist-packages/bzrlib/plugins/bash_completion [2.3.1]
     bzrtools 
/usr/lib/python2.7/dist-packages/bzrlib/plugins/bzrtools [2.3.1]
     launchpad
/usr/lib/python2.7/dist-packages/bzrlib/plugins/launchpad [2.3.1]
     netrc_credential_store 
/usr/lib/python2.7/dist-packages/bzrlib/plugins/netrc_credential_store [2.3.1]
     news_merge   
/usr/lib/python2.7/dist-packages/bzrlib/plugins/news_merge [2.3.1]
  BzrVersion: 2.3.1
  CommandLine: ['/usr/bin/bzr', 'co', 
'lp:~ubuntu-iamnafets/syncany/windows-shell', 'syncany']
- CrashDb: bzr
- Date: Thu Jun  2 00:43:25 2011
- ExecutablePath: /usr/bin/bzr
- FileSystemEncoding: UTF-8
- InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427.1)
- InterpreterPath: /usr/bin/python2.7
- Locale: en_US.UTF-8
- PackageArchitecture: all
- Platform: Linux-2.6.38-8-generic-x86_64-with-Ubuntu-11.04-natty
- ProcCmdline: /usr/bin/python /usr/bin/bzr co 
lp:~ubuntu-usernames/syncany/windows-shell syncany
- ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANG=en_US.UTF-8
-  LANGUAGE=en_US:en
- PythonVersion: 2.7.1
- SourcePackage: bzr
- Title: bzr crashed with BzrCheckError in _commit_write_group(): Internal 
check failed: Cannot add revision(s) to repository: missing chk node(s) for 
id_to_entry maps
- UpgradeStatus: No upgrade log present (probably fresh install)
- UserEncoding: UTF-8
- UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ 
+ Traceback (most recent call last):
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 926, in 
exception_to_return_code
+ return the_callable(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 1126, in 
run_bzr
+ ret = run(*run_argv)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 691, in 
run_argv_aliases
+ return self.run(**all_cmd_args)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/commands.py", line 713, in run
+ return self._operation.run_simple(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 135, in 
run_simple
+ self.cleanups, self.func, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/cleanup.py", line 165, in 
_do_with_cleanups
+ result = func(*args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/builtins.py", line 1328, in 
run
+ accelerator_tree, hardlink)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 1444, in 
create_checkout
+ checkout_branch.pull(self, stop_revision=revision_id)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 1086, in pull
+ possible_transports=possible_transports, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3478, in pull
+ merge_tags_to_master=not source_is_master)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3588, in 
_pull
+ overwrite=overwrite, graph=graph)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 1035, in 
update_revisions
+ overwrite, graph)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 3430, in 
update_revisions
+ self.target.fetch(self.source, stop_revision)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/branch.py", line 685, in fetch
+ pb=pb)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/repository.py", line 1781, in 
fetch
+ find_ghosts=find_ghosts, fetch_spec=fetch_spec)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/decorators.py", line 194, in 
write_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/repository.py", line 3437, in 
fetch
+ find_ghosts=find_ghosts)
+   File "/usr/lib/python2.7/dist-packages/bzrlib/fetch.py", line 73, in 
__init__
+ self.__fetch()
+   File "/usr/lib/python2.7/dist-packages/bzrlib/fetch.py", line 99, in __fetch
+ self._fetch_everything_for_search(search)
+   File 

[Bug 798688] Re: possible regression in natty-proposed

2011-06-19 Thread Andrew Bennetts
The duplicate in upstream bzr is bug 786980.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/798688

Title:
  possible regression in natty-proposed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bzr/+bug/798688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 794458] [NEW] “Not Found”, but can buy for $US9.99 after following link to http://apt.ubuntu.com/p/braid

2011-06-08 Thread Andrew Bennetts
Public bug reported:

Binary package hint: software-center

I just read , and followed its link to
.  This lead to Software Centre being
opened, but without the desired result: “Not Found”

But even though it is not found, and it says “[t]here isn't a software
package called "Braid" in your current software sources” it still says
there are “3 ratings” and gives me a price and a Buy button!

Apparently there are multiple data sources for this screen, and they are
a) out of sync, and b) software-center isn't clever enough to try
refreshing them automatically in this situation, and so c) it shows
obviously nonsensical info to the user with the out-of-sync data.  I
suspect b) and/or c) are things that software-center can do better.

Screenshot attached.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: software-center 4.0.2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
Architecture: i386
Date: Wed Jun  8 19:28:43 2011
ExecutablePath: /usr/share/software-center/software-center
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
InterpreterPath: /usr/bin/python2.7
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SourcePackage: software-center
UpgradeStatus: Upgraded to natty on 2011-04-11 (57 days ago)

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 natty running-unity

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/794458

Title:
  “Not Found”, but can buy for $US9.99 after following link to
  http://apt.ubuntu.com/p/braid

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 794458] Re: “Not Found”, but can buy for $US9.99 after following link to http://apt.ubuntu.com/p/braid

2011-06-08 Thread Andrew Bennetts
** Attachment added: "Screenshot-Ubuntu Software Centre.png"
   
https://bugs.launchpad.net/bugs/794458/+attachment/2160312/+files/Screenshot-Ubuntu%20Software%20Centre.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/794458

Title:
  “Not Found”, but can buy for $US9.99 after following link to
  http://apt.ubuntu.com/p/braid

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 785029] Re: bzr crashed with ErrorFromSmartServer in _raise_smart_server_error(): Error received from smart server: ('error', "Absent factory for StaticTuple('__init__.py-20100827182754-i1495

2011-05-19 Thread Andrew Bennetts
*** This bug is a duplicate of bug 772935 ***
https://bugs.launchpad.net/bugs/772935

> The fetch-all-records failed with:
> bzr: ERROR: extra argument to command fetch-all-records: lp:linaro-image-tools

Oh right.  I should have said:

  bzr fetch-all-records -d lp:~dooferlad/linaro-image-tools/my_dev lp
:linaro-image-tools

> but then I figured I could use a repo instead:
> bzr init-repo .
> bzr branch lp:linaro-image-tools
> bzr branch lp:~dooferlad/linaro-image-tools/my_dev
> 
> this worked

Yes, this will create a local repository without the problem.  However:

> NB: can't push to lp:~dooferlad myself; I'll ask him to push the missing
> revs there

“bzr push” from a repaired branch/repo probably won't repair
lp:~dooferlad/linaro-image-tools/my_dev: push will assume those records are
already there (because the presence of the revision records implies that those
texts are supposed to already be there) and simply not send them.  Hence the
need for fetch-all-records.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/785029

Title:
  bzr crashed with ErrorFromSmartServer in _raise_smart_server_error():
  Error received from smart server: ('error', "Absent factory for
  StaticTuple('__init__.py-20100827182754-i149503ctn97gm7c-2',
  'salg...@canonical.com-20110128195048-5w2xc3ya7havirtn')")

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 785029] Re: bzr crashed with ErrorFromSmartServer in _raise_smart_server_error(): Error received from smart server: ('error', "Absent factory for StaticTuple('__init__.py-20100827182754-i149503ct

2011-05-19 Thread Andrew Bennetts
This looks a lot like bug 772935.

That missing key is present in that branch's stacked-on repository.  So
the workaround on that bug will probably work here too:

 * install the repodebug plugin: “bzr branch lp:bzr-repodebug 
~/.bazaar/plugins/repodebug”
 * run “bzr fetch-all-records lp:~dooferlad/linaro-image-tools/my_dev 
lp:linaro-image-tools”

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/785029

Title:
  bzr crashed with ErrorFromSmartServer in _raise_smart_server_error():
  Error received from smart server: ('error', "Absent factory for
  StaticTuple('__init__.py-20100827182754-i149503ctn97gm7c-2',
  'salg...@canonical.com-20110128195048-5w2xc3ya7havirtn')")

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 721163] Re: bzr crashed with ErrorFromSmartServer: ('error', 'bytes must be a string')

2011-05-05 Thread Andrew Bennetts
FWIW, the error John reported on the mailing list is:

ErrorFromSmartServer: Error received from smart server: ('error', "bytes
must be a string, got ")

So something is passing a StaticTuple to _bytes_to_text_key, which
sounds like some code already has a key but thinks it has the bytes
representation it.  The callers of that are in
bzrlib/repofmt/groupcompress_repo.py; the only one of those I'd expect
to be triggered on stream insertion is in
GCRepositoryPackCollection._check_new_inventories, which is invoked at
the end of inserting a stream, which matches the original report here
and John's report on the mailing list.

The mystery then is why that code path is failing for them, because I'm
pretty sure basically every write to a 2a repository would exercise that
call, so presumably something earlier during receiving the stream is
getting muddled.  There's nothing obviously wrong with that code that I
can see, and it's especially weird that it's only happening for some
people sometimes, rather than constantly.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/721163

Title:
  bzr crashed with ErrorFromSmartServer: ('error', 'bytes must be a
  string')

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 777507] Re: bzr crashed with KeyError in sub_process_action()

2011-05-04 Thread Andrew Bennetts
** Description changed:

  Binary package hint: bzr
  
  In log window, right click on your initial import (Revision 1) and
  attempt to revert to that revision.  Does not occur with later
  revisions, and can consistently re-create.
  
  ProblemType: Crash
  DistroRelease: Ubuntu 10.10
  Package: bzr 2.2.4-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-28.50-generic-pae 2.6.35.11
  Uname: Linux 2.6.35-28-generic-pae i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  BzrDebugFlags: set()
  BzrVersion: 2.2.4
  CommandLine: ['/usr/bin/bzr', 'qlog']
  CrashDb: bzr
  Date: Thu May  5 01:00:12 2011
  ExecutablePath: /usr/bin/bzr
  FileSystemEncoding: UTF-8
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Beta i386 (20100901.1)
  InterpreterPath: /usr/bin/python2.6
  Locale: en_GB.utf8
  Platform: Linux-2.6.35-28-generic-pae-i686-with-Ubuntu-10.10-maverick
  ProcCmdline: /usr/bin/python /usr/bin/bzr qlog
  ProcEnviron:
-  LANG=en_GB.utf8
-  SHELL=/bin/bash
+  LANG=en_GB.utf8
+  SHELL=/bin/bash
  PythonVersion: 2.6.6
  SourcePackage: bzr
  Title: bzr crashed with KeyError in sub_process_action()
  UserEncoding: UTF-8
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ 
+ Traceback (most recent call last):
+   File 
"/usr/lib/python2.6/dist-packages/bzrlib/plugins/qbzr/lib/logwidget.py", line 
479, in revert_to_revision
+ self.sub_process_action(selected_branch_info, get_dialog)
+   File 
"/usr/lib/python2.6/dist-packages/bzrlib/plugins/qbzr/lib/logwidget.py", line 
433, in sub_process_action
+ old_revno_str = gp.revid_rev[old_revid].revno_str
+ KeyError: 'null:'

** Package changed: bzr (Ubuntu) => qbzr (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.
https://bugs.launchpad.net/bugs/777507

Title:
  bzr crashed with KeyError in sub_process_action()

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 768251] Re: indicator-weather assert failure: *** glibc detected *** /usr/bin/python: double free or corruption (fasttop): 0x09f099c0 ***

2011-04-25 Thread Andrew Bennetts
Not sure why the apport retracing service didn't make this report
private after retracing.  I've done so manually.

** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768251

Title:
  indicator-weather assert failure: *** glibc detected ***
  /usr/bin/python: double free or corruption (fasttop): 0x09f099c0 ***

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 764219] Re: rdiff-backup crashed with UnpicklingError in reval(): invalid load key, 'y'.

2011-04-24 Thread Andrew Bennetts
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/764219

Title:
  rdiff-backup crashed with UnpicklingError in reval(): invalid load
  key, 'y'.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 767102] Re: [arrandale] One time GPU lockup (ESR: 0x00000001 IPEHR: 0x08000020)

2011-04-21 Thread Andrew Bennetts
Hmm, my last system upgrade was ~12 hours prior to that according to my
dpkg.log, so probably not.  I don't think I was doing anything more
adventurous at the time than Alt-Tabbing between windows, but it was
yesterday so it's possible I'm forgetting something significant.

Glad to know I made the right call to reboot rather than start a futile
effort to keep running :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/767102

Title:
  [arrandale] One time GPU lockup (ESR: 0x0001 IPEHR: 0x0820)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 767102] Re: [arrandale] GPU lockup (ESR: 0x00000001 IPEHR: 0x08000020)

2011-04-20 Thread Andrew Bennetts
It was the first time for this sort of failure, but it actually wasn't a
system freeze: I could switch to virtual consoles and back, but no
amount of trying to restart unity would work; each time compiz would
crash.  I was left with no ability to type in X, and no window
management.  Hence the lack of comment in the original description: the
best I could do to satisfy Launchpad's demand for a description was to
copy and paste the pre-filled summary with my touchpad.  I did resort to
restarting my system after that, as it was due for a restart according
to update-manager.  [And then it was late so I went to bed and forgot to
follow up on this bug to explain in more detail.]

I don't recall any failures like this one on maverick.  I got freezes
only very rarely on maverick, but did sometimes get *extremely* slow X,
where input would take many seconds to have any effect (and IIRC CPU
spinning at 100%).  IIRC that was triggered by switching between
different X sessions (e.g. between the guest login and my login)..

On reproducing: so far it's just happened once, for no obvious reason,
so I'd have to say “randomly”.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/767102

Title:
  [arrandale] GPU lockup (ESR: 0x0001 IPEHR: 0x0820)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 767102] Re: [arrandale] GPU lockup (ESR: 0x00000001 IPEHR: 0x08000020)

2011-04-20 Thread Andrew Bennetts
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/767102

Title:
  [arrandale] GPU lockup (ESR: 0x0001 IPEHR: 0x0820)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 767102] [NEW] [arrandale] GPU lockup (ESR: 0x00000001 IPEHR: 0x08000020)

2011-04-20 Thread Andrew Bennetts
Public bug reported:

Binary package hint: xserver-xorg-video-intel

[arrandale] GPU lockup (ESR: 0x0001 IPEHR: 0x0820)

ProblemType: Crash
DistroRelease: Ubuntu 11.04
Package: xserver-xorg-video-intel 2:2.14.0-4ubuntu7
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
Architecture: i386
Chipset: arrandale
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
DRM.card0.DP.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1440x900 1440x900
 edid-base64: 
AP///wAwrjZTAQOAHhN46uWVk1ZPkCgoUFQBAQEBAQEBAQEBAQEBAQEBjiygXFKEHjAwIDYAL74QAAAZjiyg/FKEhzAwIDYAL74QAAAZDwCVCjKVCigWCQBMo0JU/gBMVE4xNDFCVDA5MDAxAPA=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
Date: Wed Apr 20 22:02:56 2011
DistUpgraded: Log time: 2011-04-11 22:16:29.259690
DistroCodename: natty
DistroVariant: ubuntu
DuplicateSignature: (ESR: 0x0001 IPEHR: 0x0820)
ExecutablePath: /usr/share/apport/apport-gpu-error-intel.py
GraphicsCard:
 Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:215a]
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
InterpreterPath: /usr/bin/python2.7
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 003: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcCmdline: /usr/bin/python /usr/share/apport/apport-gpu-error-intel.py
ProcEnviron:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic-pae 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash vt.handoff=7
ProcKernelCmdLine_: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic-pae 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 xserver-xorg 1:7.6+4ubuntu3
 libdrm2  2.4.23-1ubuntu6
 xserver-xorg-video-intel 2:2.14.0-4ubuntu7
Renderer: Unknown
SourcePackage: xserver-xorg-video-intel
Title: [arrandale] GPU lockup (ESR: 0x0001 IPEHR: 0x0820)
UpgradeStatus: Upgraded to natty on 2011-04-11 (8 days ago)
UserGroups:
 
dmi.bios.date: 10/25/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET74WW (1.34 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET74WW(1.34):bd10/25/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.4+bzr20110415-0ubuntu2
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-crash freeze i386 natty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/767102

Title:
  [arrandale] GPU lockup (ESR: 0x0001 IPEHR: 0x0820)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 721163] Re: bzr crashed with ErrorFromSmartServer: ('error', 'bytes must be a string')

2011-04-19 Thread Andrew Bennetts
This is strange.  I can't think of any likely causes, and I don't think
any hooks are triggered by that RPC so it's unlikely to be a faulty
plugin either.  I think we need to see the bzr log from the server.

Oh!  The error string matches an error raised by
_chk_map_pyx._bytes_to_text_key.  In bzr 2.3 that error message has been
improved to give slightly more information, so it'd be worth upgrading
the server to 2.3.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/721163

Title:
  bzr crashed with ErrorFromSmartServer: ('error', 'bytes must be a
  string')

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 760698] Re: bzr crashed with TypeError in update_search(): QAbstractItemView.setCurrentIndex(QModelIndex): argument 1 has unexpected type 'NoneType'

2011-04-17 Thread Andrew Bennetts
** Visibility changed to: Public

** Package changed: bzr (Ubuntu) => qbzr (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/760698

Title:
  bzr crashed with TypeError in update_search():
  QAbstractItemView.setCurrentIndex(QModelIndex): argument 1 has
  unexpected type 'NoneType'

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 759463] Re: Terminals opened via “Open a terminal” keybinding in gnomecompat plugin lack environment vars from gnome session

2011-04-12 Thread Andrew Bennetts
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/759463

Title:
  Terminals opened via “Open a terminal” keybinding in gnomecompat
  plugin lack environment vars from gnome session

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 759463] [NEW] Terminals opened via “Open a terminal” keybinding in gnomecompat plugin lack environment vars from gnome session

2011-04-12 Thread Andrew Bennetts
Public bug reported:

Binary package hint: compiz

If I run a terminal via Alt-F2, “gnome-terminal”, , then I get a
fully functional terminal prompt.  The environment in the resulting
shell contains variables like SSH_AUTH_SOCK, GNOME_KEYRING_CONTROL and
DBUS_SESSION_BUS_ADDRESS.

If I run a terminal via Ctrl-Alt-T, which is the default keybinding for
the “Open a terminal” feature of the gnomecompat plugin, then I get a
subtly broken shell, lacking environment variables that allow me to use
my SSH private keys, etc.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: compiz-plugins 1:0.9.4+bzr20110411-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,move,resize,imgpng,mousepoll,gnomecompat,place,grid,regex,unitymtgrabhandles,session,snap,animation,wall,workarounds,expo,ezoom,staticswitcher,fade,scale,unityshell]
CompositorRunning: compiz
DRM.card0.DP.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1440x900 1440x900
 edid-base64: 
AP///wAwrjZTAQOAHhN46uWVk1ZPkCgoUFQBAQEBAQEBAQEBAQEBAQEBjiygXFKEHjAwIDYAL74QAAAZjiyg/FKEhzAwIDYAL74QAAAZDwCVCjKVCigWCQBMo0JU/gBMVE4xNDFCVDA5MDAxAPA=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
Date: Wed Apr 13 15:44:12 2011
DistUpgraded: Log time: 2011-04-11 22:16:29.259690
DistroCodename: natty
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:215a]
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
InstallationMedia_: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 003: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic-pae 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash vt.handoff=7
ProcVersionSignature_: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Renderer: Unknown
SourcePackage: compiz
UpgradeStatus: Upgraded to natty on 2011-04-11 (1 days ago)
dmi.bios.date: 10/25/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET74WW (1.34 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET74WW(1.34):bd10/25/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.4+bzr20110411-0ubuntu1
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu1
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

** Affects: compiz (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug compiz-0.9 i386 natty running-unity ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/759463

Title:
  Terminals opened via “Open a terminal” keybinding in gnomecompat
  plugin lack environment vars from gnome session

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 758453] Re: syndaemon consuming 100% CPU spinning on select(2)

2011-04-11 Thread Andrew Bennetts
FWIW, here's the backtrace, not that it's especially helpful:

(gdb) thread apply all bt

Thread 1 (process 2277):
#0  0xb7771424 in __kernel_vsyscall ()
#1  0xb756b64d in ___newselect_nocancel () at 
../sysdeps/unix/syscall-template.S:82
#2  0x08049676 in ?? ()
#3  0x08049cc8 in ?? ()
#4  0xb74b8e37 in __libc_start_main (main=0x80497c0, argc=5, ubp_av=0xbf9a7814, 
init=0x8049d70, fini=0x8049dd0, rtld_fini=0xb7780a50, stack_end=0xbf9a780c) at 
libc-start.c:226
#5  0x08048e01 in ?? ()

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/758453

Title:
  syndaemon consuming 100% CPU spinning on select(2)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 758453] Re: syndaemon consuming 100% CPU spinning on select(2)

2011-04-11 Thread Andrew Bennetts
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/758453

Title:
  syndaemon consuming 100% CPU spinning on select(2)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 758453] [NEW] syndaemon consuming 100% CPU spinning on select(2)

2011-04-11 Thread Andrew Bennetts
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

I noticed my system was a big sluggish, and checked top.  It shows
syndaemon consuming 100% CPU.  Here's the strace:

$ strace -tt -p 2277
Process 2277 attached - interrupt to quit
16:37:33.897168 select(5, [4], NULL, NULL, NULL) = 1 (in [4])
16:37:33.897197 select(5, [4], NULL, NULL, NULL) = 1 (in [4])
16:37:33.897226 select(5, [4], NULL, NULL, NULL) = 1 (in [4])
16:37:33.897255 select(5, [4], NULL, NULL, NULL) = 1 (in [4])
16:37:33.897284 select(5, [4], NULL, NULL, NULL) = 1 (in [4])
…etc…

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: xserver-xorg-input-synaptics 1.3.99+git20110116.0e27ce3a-0ubuntu11
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,move,resize,imgpng,mousepoll,gnomecompat,place,grid,regex,unitymtgrabhandles,session,snap,animation,wall,workarounds,expo,ezoom,staticswitcher,fade,scale,unityshell]
CompositorRunning: compiz
DRM.card0.DP.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.DP.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.2:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.HDMI.A.3:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1440x900 1440x900
 edid-base64: 
AP///wAwrjZTAQOAHhN46uWVk1ZPkCgoUFQBAQEBAQEBAQEBAQEBAQEBjiygXFKEHjAwIDYAL74QAAAZjiyg/FKEhzAwIDYAL74QAAAZDwCVCjKVCigWCQBMo0JU/gBMVE4xNDFCVDA5MDAxAPA=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
Date: Tue Apr 12 16:33:47 2011
DistUpgraded: Log time: 2011-04-11 22:16:29.259690
DistroCodename: natty
DistroVariant: ubuntu
ExecutablePath: /usr/bin/syndaemon
GraphicsCard:
 Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:215a]
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 003: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic-pae 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash vt.handoff=7
Renderer: Unknown
SourcePackage: xserver-xorg-input-synaptics
UpgradeStatus: Upgraded to natty on 2011-04-11 (0 days ago)
dmi.bios.date: 10/25/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET74WW (1.34 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET74WW(1.34):bd10/25/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.4+bzr20110411-0ubuntu1
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu1
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu6
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug compiz-0.9 i386 natty running-unity ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/758453

Title:
  syndaemon consuming 100% CPU spinning on select(2)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 623736] Re: bzr crashed with UnboundLocalError in _import_archive()

2011-03-13 Thread Andrew Bennetts
Fixed by james-w some time around 2010-09-10.

** Changed in: bzr-builddeb (Ubuntu)
   Status: Confirmed => Fix Released

** Changed in: bzr-builddeb (Ubuntu)
 Assignee: Andrew Bennetts (spiv) => James Westby (james-w)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/623736

Title:
  bzr crashed with UnboundLocalError in _import_archive()

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 556168] Re: DeprecationWarning: : the MimeWriter module is deprecated

2011-03-09 Thread Andrew Bennetts
This was fixed upstream in 10.2.0, which has been packaged in Natty, so
I think we can call this closed.

** Changed in: twisted (Ubuntu)
   Status: New => Fix Released

** Changed in: twisted (Ubuntu)
Milestone: None => ubuntu-11.04-beta-1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/556168

Title:
  DeprecationWarning: : the MimeWriter module is deprecated

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 689213] Re: PPA sshd configuration

2010-12-13 Thread Andrew Bennetts
Julian Edwards wrote:
> As far as I can tell, there's nothing actually going wrong here.  I am
> interested in the two examples' different error messages though, why is
> one:

It's the difference in the forwarding direction (the -R vs. -L switch
when using openssh-client).

> Warning: remote port forwarding failed for listen port 8666

This is when you do:

ssh -R8666:localhost:1234 u...@ppa.launchpad.net -s sftp

(i.e. ask the server to listen on a port and forward connections to that
port to your local machine.)

> and the other:
> 
> channel 1: open failed: unknown channel type: unknown channel

This is when you do:

ssh -L8666:localhost:22 s...@ppa.launchpad.net -s sftp

then try to connect to port 8666 on your local machine.

(i.e. ask the server to forward your local connection.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/689213

Title:
  Poppy returns a weird error message if someone tries to forward a port

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 689213] Re: PPA sshd configuration

2010-12-12 Thread Andrew Bennetts
Saying so would be nice I guess, but I don't think it's particularly
important.

The current implementation/configuration is that Launchpad's use of the
Twisted Conch library explicitly overrides the channelLookup dict to
only have 'session'.  So when the client tries to open a direct-tcpip
channel, Conch consults that dict (via the lookupChannel method), does
not find an entry for direct-tcpip, so returns the "unknown channel
type" error code.

It would be possible for Launchpad to arrange for direct-tcpip to
instead return the "adminstratively prohibited" error code, but that's
really just cosmetics.  Either way the port forwarding request is
immediately rejected, just the error text the client prints is
different.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/689213

Title:
  PPA sshd configuration

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 689213] Re: PPA sshd configuration

2010-12-12 Thread Andrew Bennetts
I don't think the server does offer port forwarding.  In the first
example the client sends a tcpip-forward request, and the server rejects
it.  In the second example, the client asks to open a direct-tcpip
channel, and again the server rejects it.  As far as I can see from RFC
4254 TCP/IP port forwarding is entirely initiated by the client, the
server doesn't advertise the feature.  So it looks to me like the server
is rejecting these requests as soon as it possibly can.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/689213

Title:
  PPA sshd configuration

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 103133] Re: strace leaves process SIGSTOPped after detaching

2010-11-22 Thread Andrew Bennetts
This appears to be fixed in Ubuntu 10.10 (and perhaps earlier).  The
script completes normally and immediately for me now:

$ python sigstop-demo.py 
done

** Changed in: strace (Ubuntu)
   Status: Confirmed => Fix Released

-- 
strace leaves process SIGSTOPped after detaching
https://bugs.launchpad.net/bugs/103133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 675342] Re: Failed to create pipe for communicating with child process (Too many open files)

2010-11-14 Thread Andrew Bennetts

** Attachment added: "Output of 'ls -l /proc/PID/fd'"
   
https://bugs.launchpad.net/bugs/675342/+attachment/1733698/+files/gnome-terminal-fds.txt

-- 
Failed to create pipe for communicating with child process (Too many open files)
https://bugs.launchpad.net/bugs/675342
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 675342] [NEW] Failed to create pipe for communicating with child process (Too many open files)

2010-11-14 Thread Andrew Bennetts
Public bug reported:

Binary package hint: gnome-terminal

gnome-terminal is unable to start any more tabs or windows.  If I try I
get a red error saying:

“There was an error creating the child process for this terminal

Failed to create pipe for communicating with child process (Too many
open files)”

(It also offers buttons for “Profile Preferences” and “Relaunch”)

Sure enough, a peek in /proc/PID/fd for gnome-terminal shows 1023 open
files.  About half are /dev/ptmx, about half are /dev/pts/*.  That's
approximately 500 more psuedoterminals than I'm actually using (I only
have 3 open tabs gnome-terminal currently).

I do open and close terminal tabs and windows fairly frequently, so it's
conceivable that in the last 12 days of uptime I've used > 500
terminals, but obviously that wouldn't be a problem gnome-terminal was
releasing the fds when I close the corresponding tabs/windows.

I'm attaching the output of "ls -l /proc/2264/fd" to this bug report.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: gnome-terminal 2.32.0-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
Date: Mon Nov 15 10:29:07 2010
ExecutablePath: /usr/bin/gnome-terminal
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_AU.utf8
 SHELL=/bin/bash
SourcePackage: gnome-terminal

** Affects: gnome-terminal (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
Failed to create pipe for communicating with child process (Too many open files)
https://bugs.launchpad.net/bugs/675342
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 671795] Re: bzr crashed with NoSuchRevision in _do_revision_id_to_dotted_revno()

2010-11-07 Thread Andrew Bennetts
Specifically, this requires 'bzr log -r revid:XXX' with a revid that
exists in the repository but *not* in the branch's ancestry.  e.g. if
you have a shared repository containing lp:bzr and lp:bzr/2.2, then "bzr
log -r revid:p...@pqm.ubuntu.com-20101107141444-r9agveqsbq5mka5u' in the
2.2 branch will trigger this bug (that revid is the current tip of
lp:bzr).

** Changed in: bzr (Ubuntu)
   Importance: Undecided => High

** Changed in: bzr (Ubuntu)
   Status: New => Confirmed

** Tags added: log

** Description changed:

  Binary package hint: bzr
  
  Doing bzr log -r revid:xxx where xxx is a nonexistent revision reports
  an unusual translation of "no such revision": it throws an exception
  
  ProblemType: Crash
  DistroRelease: Ubuntu 10.10
  Package: bzr 2.2.1-0ubuntu1
- ProcVersionSignature: Ubuntu 2.6.35-23.36-generic-pae 2.6.35.7
- Uname: Linux 2.6.35-23-generic-pae i686
- NonfreeKernelModules: nvidia
- Architecture: i386
- BzrDebugFlags: set()
  BzrVersion: 2.2.1
  CommandLine:
-  ['/usr/bin/bzr',
-   'log',
-   '-r',
-   'revid:dbekker...@nb-dbekkering-20101105173808-6j3i0vmtb3jviq3f']
- CrashDb: bzr
- Date: Sat Nov  6 12:01:25 2010
- ExecutablePath: /usr/bin/bzr
- FileSystemEncoding: UTF-8
- InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Alpha i386 (20100803.1)
- InterpreterPath: /usr/bin/python2.6
- Locale: en_US.utf8
- Platform: Linux-2.6.35-23-generic-pae-i686-with-Ubuntu-10.10-maverick
- ProcCmdline: /usr/bin/python /usr/bin/bzr log -r 
revid:dbekker...@nb-dbekkering-20101105173808-6j3i0vmtb3jviq3f
- ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANG=en_US.utf8
- PythonVersion: 2.6.6
- SourcePackage: bzr
- Title: bzr crashed with NoSuchRevision in _do_revision_id_to_dotted_revno()
- UserEncoding: UTF-8
- UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+  ['/usr/bin/bzr',
+   'log',
+   '-r',
+   'revid:dbekker...@nb-dbekkering-20101105173808-6j3i0vmtb3jviq3f']
+ 
+ Traceback (most recent call last):
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 912, in 
exception_to_return_code
+ return the_callable(*args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1112, in 
run_bzr
+ ret = run(*run_argv)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 690, in 
run_argv_aliases
+ return self.run(**all_cmd_args)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 705, in run
+ return self._operation.run_simple(*args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 135, in 
run_simple
+ self.cleanups, self.func, *args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 165, in 
_do_with_cleanups
+ result = func(*args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1127, in 
ignore_pipe
+ result = func(*args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/builtins.py", line 2417, in 
run
+ Logger(b, rqst).show(lf)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 343, in show
+ self._show_body(lf)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 367, in 
_show_body
+ for lr in generator.iter_log_revisions():
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 404, in 
iter_log_revisions
+ revision_iterator = self._create_log_revision_iterator()
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 450, in 
_create_log_revision_iterator
+ return self._log_revision_iterator_using_delta_matching()
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 472, in 
_log_revision_iterator_using_delta_matching
+ exclude_common_ancestry=rqst.get('exclude_common_ancestry'))
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 522, in 
_calc_view_revisions
+ br_revno)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/log.py", line 543, in 
_generate_one_revision
+ revno = branch.revision_id_to_dotted_revno(rev_id)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/decorators.py", line 140, in 
read_locked
+ result = unbound(self, *args, **kwargs)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/branch.py", line 365, in 
revision_id_to_dotted_revno
+ return self._do_revision_id_to_dotted_revno(revision_id)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/branch.py", line 385, in 
_do_revision_id_to_dotted_revno
+ raise errors.NoSuchRevision(self, revision_id)
+ NoSuchRevision: BzrBranch7(file:///home/username/bzr/vp-trunk/) has no 
revision dbekker...@nb-dbekkering-20101105173808-6j3i0vmtb3jviq3f

** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr
   Importance: Undecided => High

** Changed in: bzr
   Status: New => Confirmed

-- 
bzr crashed with NoSuchRevision in _do_revision_id_to_dotted_revno()
https://bugs.launchpad.net/bugs/671795
You received this bug notification because you are a member of Ubuntu
Bugs,

[Bug 666116] Re: bzr password window exhibits unusual behaviour (cannot move window, cannot give focus to another window and DISPLAY not being honoured)

2010-10-24 Thread Andrew Bennetts
I don't think this is a bzr bug.  bzr isn't creating that window.

bzr delegates SSH connections to the system SSH client (openssh-client
on typical Ubuntu installs). OpenSSH in turn looks for an ssh-agent when
searching for private keys.  In GNOME that agent is gnome-keyring:
.

I don't think bzr can sensibly do anything but delegate this to the SSH
implementation.  You have the option to change which SSH implemenation
bzr uses (the bzr_ssh config option), or change the configuration of
openssh via ~/.ssh/config (or perhaps by unsetting SSH_AUTH_SOCK in your
shell?), or change the configuration of gnome-keyring.

So I'll reassign this bug to gnome-keyring as it is primarily it's
behaviour you object to, but feel free to assign it back to bzr if you
disagree.

** Package changed: bzr (Ubuntu) => gnome-keyring (Ubuntu)

-- 
bzr password window exhibits unusual behaviour (cannot move window, cannot give 
focus to another window and DISPLAY not being honoured)
https://bugs.launchpad.net/bugs/666116
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 513432] Re: AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'

2010-10-11 Thread Andrew Bennetts
It's essentially the same bug.  The faulty line of code was different in
lp:bzr/2.2 vs. lp:bzr/2.1 due to a refactoring (and so apparently caused
the fix in 2.1 to be lost when 2.1 was merged into 2.2), but the actual
fault was the same, and the nature of the fix was the same.  So probably
we could/should mark this bug as a dupe of 636930, although ideally we
wouldn't want to lose the bug metadata on this bug about when it was
fixed in e.g. 2.1... :/

-- 
AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'
https://bugs.launchpad.net/bugs/513432
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 513432] Re: AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'

2010-10-11 Thread Andrew Bennetts
Oh, I spoke too soon: this bug does occur in 2.2.0.  Sorry for the
noise!

It is fixed in 2.2.1, though.  So it is a problem in the current
Maverick package; we should probably get an SRU going for 2.2.1 in
Maverick.

** Changed in: bzr (Ubuntu)
   Status: Fix Released => Confirmed

** Changed in: bzr (Ubuntu)
Milestone: None => maverick-updates

-- 
AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'
https://bugs.launchpad.net/bugs/513432
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 513432] Re: AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'

2010-10-11 Thread Andrew Bennetts
Alan: Which version of bzr?  This bug has been fixed since 2.1.0.
Maverick has 2.2.0, and using that version I can branch from lp:ubiquity
into a local 2a repository just fine.  So the most likely explanation
seems to be that for some reason you are still using an old version of
bzr.

-- 
AttributeError: 'Inter1and2Helper' object has no attribute 'source_repo'
https://bugs.launchpad.net/bugs/513432
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 636930] Re: Upgrading a repository fails with 'Inter1and2Helper' object has no attribute 'source_repo'

2010-09-17 Thread Andrew Bennetts
** Changed in: bzr
   Status: In Progress => Fix Released

** Changed in: bzr
Milestone: None => 2.3b1

-- 
Upgrading a repository fails with 'Inter1and2Helper' object has no attribute 
'source_repo'
https://bugs.launchpad.net/bugs/636930
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 640760] Re: bzr tags should sort in natural sorting order

2010-09-16 Thread Andrew Bennetts
Seems reasonable to me.  Probably not hard to implement if someone would
like to try making a patch for it.

** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr
   Importance: Undecided => Low

** Changed in: bzr
   Status: New => Confirmed

** Tags added: easy ui

-- 
bzr tags should sort in natural sorting order
https://bugs.launchpad.net/bugs/640760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 638675] [NEW] paramiko does not try all available address families

2010-09-14 Thread Andrew Bennetts
Public bug reported:

Upstream paramiko has bug 579530, which affects bzr.  (It causes a test
to fail in bzr's test suite on a default Maverick install.)

There's a fix for upstream at .

There's also a packaging branch with the fix at
.

Please apply this fix to the Ubuntu package.

** Affects: paramiko (Ubuntu)
 Importance: Undecided
 Status: New

-- 
paramiko does not try all available address families
https://bugs.launchpad.net/bugs/638675
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 11899] Re: Cannot recover unsaved email after system crash

2010-09-14 Thread Andrew Bennetts
Yes, this is still the case on Lucid (and Maverick).  What did you think
had changed?

To summarise:

 - mutt's default 'tmpdir' is still /tmp
 - vim's default 'directory' for where it keeps swap files still tries '.' 
first, which will be /tmp when composing email in mutt.
 - Ubuntu still defaults to removing every file in /tmp as soon as it is 
mounted (see /etc/init/mounted-tmp.conf and $TMPTIME in /etc/defaults/rcS).

i.e. the default configuration is exactly the same as when I first
reported this bug, so the behaviour by default is to actively lose
unsaved email after a system crash, rather than preserve it.  I have
configured my own system differently to workaround this issue for me,
but the default behaviour is still poor.

** Changed in: vim (Ubuntu)
   Status: Incomplete => Confirmed

-- 
Cannot recover unsaved email after system crash
https://bugs.launchpad.net/bugs/11899
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 637821] Re: Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Andrew Bennetts
FWIW, here's a link to the version of the patch that landed in upstream
SVN: .  It adds
fixes to the signatures of SSLSocket.sendto and SSLSocket.recvfrom to
match regular sockets.

-- 
Unconnected SSLSocket.{send,recv} raises TypeError: 'member_descriptor' object 
is not callable
https://bugs.launchpad.net/bugs/637821
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 637821] Re: Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Andrew Bennetts

** Patch added: "Fix for http://bugs.python.org/issue9729";
   
https://bugs.edge.launchpad.net/bugs/637821/+attachment/1581638/+files/issue9729.patch

** Attachment added: "Dependencies.txt"
   
https://bugs.edge.launchpad.net/bugs/637821/+attachment/1581639/+files/Dependencies.txt

** Bug watch added: Python Roundup #9729
   http://bugs.python.org/issue9729

** Also affects: python via
   http://bugs.python.org/issue9729
   Importance: Unknown
   Status: Unknown

-- 
Unconnected SSLSocket.{send,recv} raises TypeError: 'member_descriptor' object 
is not callable
https://bugs.launchpad.net/bugs/637821
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 637821] [NEW] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Andrew Bennetts
Public bug reported:

Binary package hint: python2.6

This is an upstream bug: http://bugs.python.org/issue9729 has the
details.

It causes an intermittent (but frequent) failure in bzr's test suite.
I've submitted a fix to upstream for this issue; please backport it to
python2.6 in maverick.  I've attached my patch to this bug for
convenience.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: python2.6 2.6.6-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-20.29-generic 2.6.35.4
Uname: Linux 2.6.35-20-generic i686
Architecture: i386
Date: Tue Sep 14 17:01:12 2010
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_AU.utf8
 SHELL=/bin/bash
SourcePackage: python2.6

** Affects: python
 Importance: Unknown
 Status: Unknown

** Affects: python2.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
Unconnected SSLSocket.{send,recv} raises TypeError: 'member_descriptor' object 
is not callable
https://bugs.launchpad.net/bugs/637821
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 633125] Re: syndaemon polls 5 times a second

2010-09-08 Thread Andrew Bennetts

** Attachment added: "BootDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556745/+files/BootDmesg.txt

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556746/+files/CurrentDmesg.txt

** Attachment added: "Dependencies.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556747/+files/Dependencies.txt

** Attachment added: "Lspci.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556748/+files/Lspci.txt

** Attachment added: "PciDisplay.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556749/+files/PciDisplay.txt

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556750/+files/ProcCpuinfo.txt

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556751/+files/ProcInterrupts.txt

** Attachment added: "ProcModules.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556752/+files/ProcModules.txt

** Attachment added: "RelatedPackageVersions.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556753/+files/RelatedPackageVersions.txt

** Attachment added: "UdevDb.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556754/+files/UdevDb.txt

** Attachment added: "UdevLog.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556755/+files/UdevLog.txt

** Attachment added: "XorgLog.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556756/+files/XorgLog.txt

** Attachment added: "XorgLogOld.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556757/+files/XorgLogOld.txt

** Attachment added: "Xrandr.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556758/+files/Xrandr.txt

** Attachment added: "peripherals.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556759/+files/peripherals.txt

** Attachment added: "setxkbmap.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556760/+files/setxkbmap.txt

** Attachment added: "xdpyinfo.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556761/+files/xdpyinfo.txt

** Attachment added: "xkbcomp.txt"
   
https://bugs.edge.launchpad.net/bugs/633125/+attachment/1556762/+files/xkbcomp.txt

-- 
syndaemon polls 5 times a second
https://bugs.launchpad.net/bugs/633125
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 633125] [NEW] syndaemon polls 5 times a second

2010-09-08 Thread Andrew Bennetts
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

The "Disable touchpad while typing" option in System->Preferences->Mouse
launches syndaemon -i 0.5 -k.  Unfortunately syndaemon seems to poll
every 200ms even when the system is otherwise idle, waking up the CPU
and presumably wasting power.

syndaemon has code to use XRecord to avoid polling, but it appears to be
compiled without HAVE_XRECORD, even though Xorg appears to provide that
extension (judging from xdpyinfo output).  It also requires -R to be
passed on the command line, although perhaps it would be a reasonable
default?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xserver-xorg-input-synaptics 1.2.2-2ubuntu3
ProcVersionSignature: Ubuntu 2.6.35-20.29-generic 2.6.35.4
Uname: Linux 2.6.35-20-generic i686
Architecture: i386
DRM.card0.DisplayPort.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.DisplayPort.2:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.DisplayPort.3:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.HDMI_Type_A.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.HDMI_Type_A.2:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.HDMI_Type_A.3:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1440x900
 edid-base64: 
AP///wAwrjZTAQOAHhN46uWVk1ZPkCgoUFQBAQEBAQEBAQEBAQEBAQEBjiygXFKEHjAwIDYAL74QAAAZjiyg/FKEhzAwIDYAL74QAAAZDwCVCjKVCigWCQBMo0JU/gBMVE4xNDFCVDA5MDAxAPA=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
Date: Wed Sep  8 22:22:57 2010
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 003: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-20-generic 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_AU.utf8
 SHELL=/bin/bash
SourcePackage: xserver-xorg-input-synaptics
dmi.bios.date: 06/07/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET65WW (1.25 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET65WW(1.25):bd06/07/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-20-generic

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
syndaemon polls 5 times a second
https://bugs.launchpad.net/bugs/633125
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 628615] [NEW] postinst fails if python2.7 installed in /usr/local

2010-09-01 Thread Andrew Bennetts
Public bug reported:

Binary package hint: python-profiler

I have Python 2.7 installed in /usr/local, so I have a
/usr/local/bin/python2.7.

The python-profiler postinst assumes that if 'python2.7' is on PATH,
then /usr/lib/python2.7/py_compile.py must exist.  Obviously, this is
not true in my case.

The workaround is to temporarily remove python2.7 /usr/local/bin.

** Affects: python-profiler (Ubuntu)
 Importance: Undecided
 Status: New

-- 
postinst fails if python2.7 installed in /usr/local
https://bugs.launchpad.net/bugs/628615
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 627202] Re: bzr crashed with ValueError in _add_index()

2010-08-31 Thread Andrew Bennetts
This appears to be due to the bzr-search plugin.  A workaround would be
to set BZR_DISABLE_PLUGINS=search in your environment.

** Package changed: bzr (Ubuntu) => bzr-search (Ubuntu)

-- 
bzr crashed with ValueError in _add_index()
https://bugs.launchpad.net/bugs/627202
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 623736] Re: bzr crashed with UnboundLocalError in _import_archive()

2010-08-24 Thread Andrew Bennetts
Looks fairly straightforward.  I'll make a quick patch.

** Changed in: bzr-builddeb (Ubuntu)
   Importance: Undecided => High

** Changed in: bzr-builddeb (Ubuntu)
   Status: New => Confirmed

** Changed in: bzr-builddeb (Ubuntu)
 Assignee: (unassigned) => Andrew Bennetts (spiv)

-- 
bzr crashed with UnboundLocalError in _import_archive()
https://bugs.launchpad.net/bugs/623736
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 623736] Re: bzr crashed with UnboundLocalError in _import_archive()

2010-08-24 Thread Andrew Bennetts
** Package changed: bzr (Ubuntu) => bzr-builddeb (Ubuntu)

-- 
bzr crashed with UnboundLocalError in _import_archive()
https://bugs.launchpad.net/bugs/623736
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 621098] Re: Kernel error report after suspend/resume

2010-08-20 Thread Andrew Bennetts

** Attachment added: "AcpiTables.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503686/+files/AcpiTables.txt

** Attachment added: "AlsaDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503688/+files/AlsaDevices.txt

** Attachment added: "AplayDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503689/+files/AplayDevices.txt

** Attachment added: "BootDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503690/+files/BootDmesg.txt

** Attachment added: "Card0.Amixer.values.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503691/+files/Card0.Amixer.values.txt

** Attachment added: "Card0.Codecs.codec.0.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503692/+files/Card0.Codecs.codec.0.txt

** Attachment added: "Card0.Codecs.codec.3.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503693/+files/Card0.Codecs.codec.3.txt

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503694/+files/CurrentDmesg.txt

** Attachment added: "Dependencies.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503695/+files/Dependencies.txt

** Attachment added: "IwConfig.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503696/+files/IwConfig.txt

** Attachment added: "Lspci.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503697/+files/Lspci.txt

** Attachment added: "Lsusb.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503698/+files/Lsusb.txt

** Attachment added: "OopsText.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503699/+files/OopsText.txt

** Attachment added: "PciMultimedia.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503700/+files/PciMultimedia.txt

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503701/+files/ProcCpuinfo.txt

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503702/+files/ProcInterrupts.txt

** Attachment added: "ProcModules.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503703/+files/ProcModules.txt

** Attachment added: "RfKill.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503704/+files/RfKill.txt

** Attachment added: "UdevDb.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503705/+files/UdevDb.txt

** Attachment added: "UdevLog.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503706/+files/UdevLog.txt

** Attachment added: "WifiSyslog.txt"
   
https://bugs.edge.launchpad.net/bugs/621098/+attachment/1503707/+files/WifiSyslog.txt

-- 
Kernel error report after suspend/resume
https://bugs.launchpad.net/bugs/621098
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 621098] [NEW] Kernel error report after suspend/resume

2010-08-20 Thread Andrew Bennetts
Public bug reported:

I *think* this error report appears after every suspend/resume, but I'm
not certain.

ProblemType: KernelOops
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-15-generic 2.6.35-15.21
Regression: No
Reproducible: Yes
ProcVersionSignature: Ubuntu 2.6.35-15.21-generic 2.6.35.1
Uname: Linux 2.6.35-15-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  andrew 2089 F pulseaudio
CRDA:
 country 98:
(2402 - 2472 @ 40), (3, 27)
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf262 irq 47'
   Mixer name   : 'Intel IbexPeak HDMI'
   Components   : 'HDA:14f15069,17aa214c,00100302 
HDA:80862804,17aa21b5,0010'
   Controls  : 14
   Simple ctrls  : 6
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6IHT35WW-1.10'
   Mixer name   : 'ThinkPad EC 6IHT35WW-1.10'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Fri Aug 20 19:51:51 2010
Failure: oops
HibernationDevice: RESUME=UUID=fa332c80-29f8-48f0-a880-415c101fc71f
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
MachineType: LENOVO 2516CTO
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-15-generic 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash
RelatedPackageVersions: linux-firmware 1.38
SourcePackage: linux
Title: [1266874874.816039] [ cut here ]
dmi.bios.date: 06/07/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET65WW (1.25 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET65WW(1.25):bd06/07/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops maverick needs-upstream-testing 
resume suspend

-- 
Kernel error report after suspend/resume
https://bugs.launchpad.net/bugs/621098
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 264275] Re: bazaar internal error if adding file in a linked directory

2010-08-12 Thread Andrew Bennetts
I think Martin and John's work on #192859 and maybe #128562 have
improved the situation.  Using the lp:bzr/2.0 branch (where those fixes
have landed, they aren't yet on trunk or the other stable branches) the
'bzr add' now gives:

 $ bzr add testdir/one
 bzr: ERROR: bzrlib.errors.PathNotChild: Path "/tmp/testdir/one" is not a child 
of path "/tmp/test"
 
 Traceback (most recent call last):
 ...

That's still a traceback, which isn't a great result, but seems like a
step in the right direction: failing with a sensible (although internal)
error at the point the user requested something invalid.

-- 
bazaar internal error if adding file in a linked directory
https://bugs.launchpad.net/bugs/264275
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 615240] Re: sock.makefile().flush has UnboundLocalError bug

2010-08-09 Thread Andrew Bennetts
(On closer inspection the second pyflakes report about 'del data' in
_fileobject.read() is spurious.)

-- 
sock.makefile().flush has UnboundLocalError bug
https://bugs.launchpad.net/bugs/615240
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 615240] Re: sock.makefile().flush has UnboundLocalError bug

2010-08-09 Thread Andrew Bennetts

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/53314462/Dependencies.txt

-- 
sock.makefile().flush has UnboundLocalError bug
https://bugs.launchpad.net/bugs/615240
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 615240] [NEW] sock.makefile().flush has UnboundLocalError bug

2010-08-09 Thread Andrew Bennetts
Public bug reported:

Binary package hint: python2.6

Sometimes calling .write/.writelines/.flush on an object returned from
sock.makefile() gives a traceback ending with:

  File "/usr/lib/python2.6/socket.py", line 302, in flush
del view, data  # explicit free
UnboundLocalError: local variable 'view' referenced before assignment

This script demonstrates, but I've seen this with e.g. bzr's test suite
too:

"""
import socket
import sys
import threading

sock_a, sock_b = socket.socketpair()
sock_a = socket.socket(_sock=sock_a)

def read_byte_then_close(s):
data = s.recv(1)
print >>sys.stderr, 'read:', repr(data)
s.close()
print >>sys.stderr, 'closed sock_b'
t = threading.Thread(target=read_byte_then_close, args=(sock_b,))
t.start()

file_a = sock_a.makefile('w')
file_a.writelines(['a'*8192]*1000)
file_a.flush()
t.join()
"""

(It might not be a strictly minimal reproduction, but it's not too far
off.)

The cause of the bug is pretty trivially obvious on inspection: the
'view' variable is indeed never defined in that method.  Running
pyflakes on socket.py finds that bug on line 302, and also a similar one
on line 399 in the read() method.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: python2.6 2.6.6~rc1-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-14.19-generic 2.6.35
Uname: Linux 2.6.35-14-generic i686
Architecture: i386
Date: Mon Aug  9 16:55:04 2010
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
ProcEnviron:
 LANG=en_AU.utf8
 SHELL=/bin/bash
SourcePackage: python2.6

** Affects: python2.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
sock.makefile().flush has UnboundLocalError bug
https://bugs.launchpad.net/bugs/615240
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 614639] Re: Kernel OOPS with no user obvious symptom. Perhaps related to a failed hibernate?

2010-08-06 Thread Andrew Bennetts

** Attachment added: "AcpiTables.txt"
   http://launchpadlibrarian.net/53201908/AcpiTables.txt

** Attachment added: "AlsaDevices.txt"
   http://launchpadlibrarian.net/53201909/AlsaDevices.txt

** Attachment added: "AplayDevices.txt"
   http://launchpadlibrarian.net/53201910/AplayDevices.txt

** Attachment added: "BootDmesg.txt"
   http://launchpadlibrarian.net/53201911/BootDmesg.txt

** Attachment added: "Card0.Amixer.values.txt"
   http://launchpadlibrarian.net/53201912/Card0.Amixer.values.txt

** Attachment added: "Card0.Codecs.codec.0.txt"
   http://launchpadlibrarian.net/53201913/Card0.Codecs.codec.0.txt

** Attachment added: "Card0.Codecs.codec.3.txt"
   http://launchpadlibrarian.net/53201914/Card0.Codecs.codec.3.txt

** Attachment added: "CurrentDmesg.txt"
   http://launchpadlibrarian.net/53201915/CurrentDmesg.txt

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/53201916/Dependencies.txt

** Attachment added: "IwConfig.txt"
   http://launchpadlibrarian.net/53201917/IwConfig.txt

** Attachment added: "Lspci.txt"
   http://launchpadlibrarian.net/53201918/Lspci.txt

** Attachment added: "OopsText.txt"
   http://launchpadlibrarian.net/53201919/OopsText.txt

** Attachment added: "PciMultimedia.txt"
   http://launchpadlibrarian.net/53201920/PciMultimedia.txt

** Attachment added: "ProcCpuinfo.txt"
   http://launchpadlibrarian.net/53201921/ProcCpuinfo.txt

** Attachment added: "ProcInterrupts.txt"
   http://launchpadlibrarian.net/53201922/ProcInterrupts.txt

** Attachment added: "ProcModules.txt"
   http://launchpadlibrarian.net/53201923/ProcModules.txt

** Attachment added: "RfKill.txt"
   http://launchpadlibrarian.net/53201924/RfKill.txt

** Attachment added: "UdevDb.txt"
   http://launchpadlibrarian.net/53201925/UdevDb.txt

** Attachment added: "UdevLog.txt"
   http://launchpadlibrarian.net/53201926/UdevLog.txt

** Attachment added: "WifiSyslog.txt"
   http://launchpadlibrarian.net/53201927/WifiSyslog.txt

-- 
Kernel OOPS with no user obvious symptom.  Perhaps related to a failed 
hibernate?
https://bugs.launchpad.net/bugs/614639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 614639] [NEW] Kernel OOPS with no user obvious symptom. Perhaps related to a failed hibernate?

2010-08-06 Thread Andrew Bennetts
Public bug reported:

Apport informed me there had been a serious kernel bug when I booted my
laptop this morning.  I do not know what this might related to, as
there's no obvious symptoms, except that a hibernation attempt froze my
laptop yesterday.

ProblemType: KernelOops
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-14-generic 2.6.35-14.19
Regression: No
Reproducible: No
ProcVersionSignature: Ubuntu 2.6.35-14.19-generic 2.6.35
Uname: Linux 2.6.35-14-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  andrew 1842 F pulseaudio
CRDA:
 country 98:
(2402 - 2472 @ 40), (3, 27)
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf262 irq 48'
   Mixer name   : 'Intel IbexPeak HDMI'
   Components   : 'HDA:14f15069,17aa214c,00100302 
HDA:80862804,17aa21b5,0010'
   Controls  : 14
   Simple ctrls  : 6
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6IHT35WW-1.10'
   Mixer name   : 'ThinkPad EC 6IHT35WW-1.10'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Fri Aug  6 08:32:29 2010
Failure: oops
Frequency: I don't know.
HibernationDevice: RESUME=UUID=fa332c80-29f8-48f0-a880-415c101fc71f
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 005: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-14-generic 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash
RelatedPackageVersions: linux-firmware 1.37
SourcePackage: linux
Title: [1266874871.282332] [ cut here ]
dmi.bios.date: 06/07/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET65WW (1.25 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET65WW(1.25):bd06/07/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Kernel OOPS with no user obvious symptom.  Perhaps related to a failed 
hibernate?
https://bugs.launchpad.net/bugs/614639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 610424] Re: "trial twisted.conch" test suite fails 2 tests

2010-07-29 Thread Andrew Bennetts
1:10.1.0-1 is now in Maverick, and fixes this problem for me.  Thanks!

** Changed in: twisted-conch (Ubuntu)
   Status: New => Fix Released

-- 
"trial twisted.conch" test suite fails 2 tests
https://bugs.launchpad.net/bugs/610424
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 609449] Re: bzr crashed with AttributeError in memoize()

2010-07-28 Thread Andrew Bennetts
You're right, the traceback does suggest this is a bzr-svn issue so I'm
reassigning to that.

** Package changed: bzr (Ubuntu) => bzr-svn (Ubuntu)

-- 
bzr crashed with AttributeError in memoize()
https://bugs.launchpad.net/bugs/609449
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 610424] Re: "trial twisted.conch" test suite fails 2 tests

2010-07-27 Thread Andrew Bennetts

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/52582837/Dependencies.txt

-- 
"trial twisted.conch" test suite fails 2 tests
https://bugs.launchpad.net/bugs/610424
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 610424] [NEW] "trial twisted.conch" test suite fails 2 tests

2010-07-27 Thread Andrew Bennetts
Public bug reported:

"trial twisted.conch" fails 2 tests:

===
[ERROR]: 
twisted.conch.test.test_cftp.TestOurServerSftpClient.test_extendedAttributes

Traceback (most recent call last):
  File "/usr/lib/python2.6/dist-packages/twisted/internet/selectreactor.py", 
line 146, in _doReadOrWrite
why = getattr(selectable, method)()
  File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 460, in 
doRead
return self.protocol.dataReceived(data)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
313, in dataReceived
self.dispatchMessage(messageNum, packet[1:])
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
328, in dispatchMessage
f(payload)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
421, in ssh_DISCONNECT
self.receiveError(reasonCode, description)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/test/test_ssh.py", line 
330, in receiveError
(self, reasonCode, desc))
  File "/usr/lib/python2.6/dist-packages/twisted/trial/unittest.py", line 1575, 
in _
return getattr(_inst, name)(*args, **kwargs)
twisted.trial.unittest.FailTest: got disconnect for 
: reason 11, 
desc: disconnected by user
===
[ERROR]: twisted.conch.test.test_conch.OpenSSHClientTestCase.test_exec

Traceback (most recent call last):
  File "/usr/lib/python2.6/dist-packages/twisted/internet/selectreactor.py", 
line 146, in _doReadOrWrite
why = getattr(selectable, method)()
  File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 460, in 
doRead
return self.protocol.dataReceived(data)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
313, in dataReceived
self.dispatchMessage(messageNum, packet[1:])
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
328, in dispatchMessage
f(payload)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/ssh/transport.py", line 
421, in ssh_DISCONNECT
self.receiveError(reasonCode, description)
  File "/usr/lib/python2.6/dist-packages/twisted/conch/test/test_ssh.py", line 
330, in receiveError
(self, reasonCode, desc))
  File "/usr/lib/python2.6/dist-packages/twisted/trial/unittest.py", line 1575, 
in _
return getattr(_inst, name)(*args, **kwargs)
twisted.trial.unittest.FailTest: got disconnect for 
: reason 11, 
desc: disconnected by user
---

This is apparently fixed in Twisted's 10.1 release (see
http://twistedmatrix.com/trac/ticket/4454).  Perhaps we should just sync
10.1 from Debian?

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: python-twisted-conch 1:10.0.0-3
ProcVersionSignature: Ubuntu 2.6.35-9.14-generic 2.6.35-rc5
Uname: Linux 2.6.35-9-generic i686
Architecture: i386
Date: Tue Jul 27 21:57:17 2010
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
PackageArchitecture: all
ProcEnviron:
 LANG=en_AU.utf8
 SHELL=/bin/bash
SourcePackage: twisted-conch

** Affects: twisted-conch (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
"trial twisted.conch" test suite fails 2 tests
https://bugs.launchpad.net/bugs/610424
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 594368] Re: add-apt-repository uses deprecated attributes 'FindI' and 'FindDir' of 'apt_pkg.Configuration'

2010-07-25 Thread Andrew Bennetts
This appears to be the same as bug 593484, with practically identical
fixes proposed.  The only difference is this bug (and its fix) is
against the Ubuntu package, whereas 593484 (and its fix) is against
upstream.

-- 
add-apt-repository uses deprecated attributes 'FindI' and 'FindDir' of 
'apt_pkg.Configuration'
https://bugs.launchpad.net/bugs/594368
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 608672] Re: Unexplained crash report with no apparent symptom

2010-07-22 Thread Andrew Bennetts

** Attachment added: "AcpiTables.txt"
   http://launchpadlibrarian.net/52310293/AcpiTables.txt

** Attachment added: "AlsaDevices.txt"
   http://launchpadlibrarian.net/52310294/AlsaDevices.txt

** Attachment added: "AplayDevices.txt"
   http://launchpadlibrarian.net/52310295/AplayDevices.txt

** Attachment added: "BootDmesg.txt"
   http://launchpadlibrarian.net/52310296/BootDmesg.txt

** Attachment added: "Card0.Amixer.values.txt"
   http://launchpadlibrarian.net/52310297/Card0.Amixer.values.txt

** Attachment added: "Card0.Codecs.codec.0.txt"
   http://launchpadlibrarian.net/52310298/Card0.Codecs.codec.0.txt

** Attachment added: "Card0.Codecs.codec.3.txt"
   http://launchpadlibrarian.net/52310299/Card0.Codecs.codec.3.txt

** Attachment added: "CurrentDmesg.txt"
   http://launchpadlibrarian.net/52310300/CurrentDmesg.txt

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/52310301/Dependencies.txt

** Attachment added: "IwConfig.txt"
   http://launchpadlibrarian.net/52310302/IwConfig.txt

** Attachment added: "Lspci.txt"
   http://launchpadlibrarian.net/52310303/Lspci.txt

** Attachment added: "OopsText.txt"
   http://launchpadlibrarian.net/52310304/OopsText.txt

** Attachment added: "PciMultimedia.txt"
   http://launchpadlibrarian.net/52310305/PciMultimedia.txt

** Attachment added: "ProcCpuinfo.txt"
   http://launchpadlibrarian.net/52310306/ProcCpuinfo.txt

** Attachment added: "ProcInterrupts.txt"
   http://launchpadlibrarian.net/52310307/ProcInterrupts.txt

** Attachment added: "ProcModules.txt"
   http://launchpadlibrarian.net/52310308/ProcModules.txt

** Attachment added: "RfKill.txt"
   http://launchpadlibrarian.net/52310309/RfKill.txt

** Attachment added: "UdevDb.txt"
   http://launchpadlibrarian.net/52310310/UdevDb.txt

** Attachment added: "UdevLog.txt"
   http://launchpadlibrarian.net/52310311/UdevLog.txt

** Attachment added: "WifiSyslog.txt"
   http://launchpadlibrarian.net/52310312/WifiSyslog.txt

-- 
Unexplained crash report with no apparent symptom
https://bugs.launchpad.net/bugs/608672
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 608672] [NEW] Unexplained crash report with no apparent symptom

2010-07-22 Thread Andrew Bennetts
Public bug reported:

I have no idea what this is about.  This is a new laptop that I just
installed Lucid on and upgraded to Maverick.  After the first
suspend/resume there was a notification telling me to file this kernel
bug, but I have so far no idea what relation it has to anything: as far
as I can tell my system is still working just fine.

For added unhelpfulness bugs.edge.launchpad.net is timing out, and I'm
not sure if my simple URL hacking to use non-edge (after disabling the
redirect) has lost some relevant information from this bug report or
not.

ProblemType: KernelOops
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-9-generic 2.6.35-9.14
Regression: No
Reproducible: No
ProcVersionSignature: Ubuntu 2.6.35-9.14-generic 2.6.35-rc5
Uname: Linux 2.6.35-9-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  andrew 1715 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf262 irq 46'
   Mixer name   : 'Intel IbexPeak HDMI'
   Components   : 'HDA:14f15069,17aa214c,00100302 
HDA:80862804,17aa21b5,0010'
   Controls  : 14
   Simple ctrls  : 6
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6IHT35WW-1.10'
   Mixer name   : 'ThinkPad EC 6IHT35WW-1.10'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Thu Jul 22 20:41:00 2010
Failure: oops
Frequency: This has only happened once.
HibernationDevice: RESUME=UUID=fa332c80-29f8-48f0-a880-415c101fc71f
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
Lsusb:
 Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 001 Device 005: ID 17ef:480f Lenovo Integrated Webcam [R5U877]
 Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: LENOVO 2516CTO
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-9-generic 
root=UUID=e28411fc-b45a-41f4-a66a-bb52788e2589 ro quiet splash
RelatedPackageVersions: linux-firmware 1.37
SourcePackage: linux
Title: [1266874868.066736] [ cut here ]
dmi.bios.date: 06/07/2010
dmi.bios.vendor: LENOVO
dmi.bios.version: 6IET65WW (1.25 )
dmi.board.name: 2516CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6IET65WW(1.25):bd06/07/2010:svnLENOVO:pn2516CTO:pvrThinkPadT410:rvnLENOVO:rn2516CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2516CTO
dmi.product.version: ThinkPad T410
dmi.sys.vendor: LENOVO

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops maverick needs-upstream-testing

-- 
Unexplained crash report with no apparent symptom
https://bugs.launchpad.net/bugs/608672
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 586341] Re: NO_PROXY env variable ending with ', ' tricks bzr into never proxying any host

2010-06-03 Thread Andrew Bennetts
** Package changed: bazaar (Ubuntu) => bzr (Ubuntu)

** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr
   Importance: Undecided => Medium

** Changed in: bzr
   Status: New => Confirmed

-- 
NO_PROXY env variable ending with ',' tricks bzr into never proxying any host
https://bugs.launchpad.net/bugs/586341
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 584841] Re: firefox-bin crashed with SIGSEGV in ()

2010-05-24 Thread Andrew Bennetts

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/49005610/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://launchpadlibrarian.net/49005611/Disassembly.txt

** Attachment added: "ExtensionSummary.txt"
   http://launchpadlibrarian.net/49005612/ExtensionSummary.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/49005613/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/49005614/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://launchpadlibrarian.net/49005615/Registers.txt

** Attachment added: "Stacktrace.txt"
   http://launchpadlibrarian.net/49005616/Stacktrace.txt

** Attachment added: "ThreadStacktrace.txt"
   http://launchpadlibrarian.net/49005617/ThreadStacktrace.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/49005618/XsessionErrors.txt

** Attachment added: "profile_default_pluginreg.dat.txt"
   http://launchpadlibrarian.net/49005619/profile_default_pluginreg.dat.txt

** Attachment added: "profiles.ini.txt"
   http://launchpadlibrarian.net/49005620/profiles.ini.txt

-- 
firefox-bin crashed with SIGSEGV in ()
https://bugs.launchpad.net/bugs/584841
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 584841] [NEW] firefox-bin crashed with SIGSEGV in ()

2010-05-24 Thread Andrew Bennetts
Public bug reported:

Binary package hint: firefox

I was doing nothing special when firefox crashed.  An inexpert glance at
the stack trace suggests flashplugin may be to blame.

ProblemType: Crash
DistroRelease: Ubuntu 10.04
Package: firefox 3.6.3+nobinonly-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
Architecture: i386
Date: Mon May 24 17:50:17 2010
ExecutablePath: /usr/lib/firefox-3.6.3/firefox-bin
FirefoxPackages:
 firefox 3.6.3+nobinonly-0ubuntu4
 firefox-gnome-support 3.6.3+nobinonly-0ubuntu4
 firefox-branding 3.6.3+nobinonly-0ubuntu4
 abroswer N/A
 abrowser-branding N/A
ProcCmdline: /usr/lib/firefox-3.6.3/firefox-bin -new-window 
http://buildbot.twistedmatrix.com/builders/winxp32-py2.5-select/builds/8/steps/bzr/logs/stdio
ProcEnviron:
 LANGUAGE=en_AU:en
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SegvAnalysis:
 Segfault happened at: 0x9bb422 <__kernel_vsyscall+2>:  ret
 PC (0x009bb422) ok
 destination "(%esp)" (0xbffdd65c) ok
 SP (0xbffdd65c) ok
 Reason could not be automatically determined. (Unhandled exception in kernel 
code?)
Signal: 11
SourcePackage: firefox
StacktraceTop:
 ?? ()
 
 __kernel_vsyscall ()
 read () at ../sysdeps/unix/syscall-template.S:82
 _IO_new_file_underflow (fp=0xa2a06240) at fileops.c:606
Title: firefox-bin crashed with SIGSEGV in ()
UserGroups: adm admin audio cdrom dialout dip floppy fuse lpadmin plugdev 
scanner users video

** Affects: firefox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-crash i386 lucid

-- 
firefox-bin crashed with SIGSEGV in ()
https://bugs.launchpad.net/bugs/584841
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 583769] Re: AssertionError when using older smart servers (upstream bug #528041)

2010-05-23 Thread Andrew Bennetts
Your adjusted patch drops the test for the bug and NEWS entries.  Not a
huge deal but it might be better to keep the divergence minimal.

Alternatively it might be simpler and better to package the current
lp:bzr/2.1 branch.  The final 2.1.2 is likely to be very close the
current state of that branch, and it has other valuable fixes (e.g.
#559436 and #556940) apart from just this one.

-- 
AssertionError when using older smart servers (upstream bug #528041)
https://bugs.launchpad.net/bugs/583769
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580282] Re: bzr: ERROR: exceptions.RuntimeError: the sip module implements API v7.0 to v7.1 but the PyQt4.QtCore module requires API v6.0

2010-05-20 Thread Andrew Bennetts
Ok.  Thanks for the update!

** Changed in: bzr-explorer (Ubuntu)
   Status: New => Invalid

-- 
bzr: ERROR: exceptions.RuntimeError: the sip module implements API v7.0 to v7.1 
but the PyQt4.QtCore module requires API v6.0
https://bugs.launchpad.net/bugs/580282
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580282] Re: bzr: ERROR: exceptions.RuntimeError: the sip module implements API v7.0 to v7.1 but the PyQt4.QtCore module requires API v6.0

2010-05-20 Thread Andrew Bennetts
Looks likely to be a bug in the python-qt4 package or maybe the qbzr
plugin...

As as first step I'm reassigning to the bzr-explorer package.  That's
probably wrong, but it's at least closer I think.  Feel free to reassign
again as appropriate.

FWIW, I can't reproduce this with "python -c 'from PyQt4 import QtCore'" on my 
Lucid system with these packages installed:
   python-qt4 4.7.2-0ubuntu1
   python-sip 4.10.1-0ubuntu1


** Changed in: bzr
   Status: New => Invalid

** Also affects: bzr-explorer (Ubuntu)
   Importance: Undecided
   Status: New

-- 
bzr: ERROR: exceptions.RuntimeError: the sip module implements API v7.0 to v7.1 
but the PyQt4.QtCore module requires API v6.0
https://bugs.launchpad.net/bugs/580282
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 195397] Re: Bazaar does not follow the Freedesktop XDG Base Directory Specification

2010-05-19 Thread Andrew Bennetts
Is $XDG_DATA_HOME/../lib/pythonX.Y/site-packages/bzrlib/plugins really
the right spot?  The "../" seems a little fragile, and the result
definitely seems a step backwards for usability.  It will make it much
harder to install and manage plugins by hand simply by virtue of being a
much deeper and harder to find directory, which would be an unfortunate
regression.

Would it acceptable to at least leave a symlink in
$XDG_CONFIG_DIRS/bazaar/plugins?  Or perhaps there's another option?

-- 
Bazaar does not follow the Freedesktop XDG Base Directory Specification
https://bugs.launchpad.net/bugs/195397
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 264275] Re: bazaar internal error if adding file in a linked directory

2010-05-03 Thread Andrew Bennetts
Cristian: See the merge proposal at
 for
details about where this is up to.  The summary seems to be that there's
a patch, but it needs some more work before it's ready for inclusion in
bzr.

-- 
bazaar internal error if adding file in a linked directory
https://bugs.launchpad.net/bugs/264275
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 571467] Re: Short option for "--show-diff" in "commit": like "-vv" or "-p"

2010-04-29 Thread Andrew Bennetts
** Changed in: bzr
   Status: In Progress => Fix Released

** Changed in: bzr
Milestone: None => 2.2b3

-- 
Short option for "--show-diff" in "commit": like "-vv" or "-p"
https://bugs.launchpad.net/bugs/571467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 567349] Re: Please add parameter to sort by date, e.g. to "status" and "ls"

2010-04-20 Thread Andrew Bennetts
** Also affects: bzr
   Importance: Undecided
   Status: New

** Summary changed:

- Please add parameter to sort by date, e.g. to "status" and "ls"
+ Please add parameter to sort files by date, e.g. to "status" and "ls"

** Changed in: bzr
   Importance: Undecided => Wishlist

** Changed in: bzr
   Status: New => Confirmed

-- 
Please add parameter to sort files by date, e.g. to "status" and "ls"
https://bugs.launchpad.net/bugs/567349
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 567584] Re: error when printing error messages with utf8 chars

2010-04-20 Thread Andrew Bennetts
** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr
   Importance: Undecided => High

** Changed in: bzr
   Status: New => Confirmed

** Summary changed:

- error when printing error messages with utf8 chars
+ error when printing error messages with utf8 chars (LANG=pt_PT.utf8)

** Tags added: locale

-- 
error when printing error messages with utf8 chars (LANG=pt_PT.utf8)
https://bugs.launchpad.net/bugs/567584
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 564953] Re: Please check earlier for error condition "Target directory "%s" already exists." (in 'bzr branch')

2010-04-18 Thread Andrew Bennetts
Robert Collins wrote:
> We already check as pretty much the second thing we do:
>  - we open the branch
>  - we mkdir the target directory.
> 
> So if its taking 15 seconds, this bug probably really wants to be
> 'taking 15 seconds to open a branch'. Could you please run with bzr
> -Dhpss and attach the ~/.bzr.log output for that? Thanks.

Well, "open the branch" often involves resolving “lp:foo” into a real
URL, and then that real location is often a bzr+ssh URL.  The SSH
handshake, plus multiple HPSS calls to open the branch (4 IIRC, and more
if stacked)...  so more than 5 seconds would be pretty common I think.

15 seconds seems a bit high, so I'm also interested in the -Dhpss output
in this case, but I think this is a valid bug regardless.

-- 
Please check earlier for error condition "Target directory "%s" already 
exists." (in 'bzr branch')
https://bugs.launchpad.net/bugs/564953
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 564953] Re: Please check earlier for error condition "Target directory "%s" already exists." (in 'bzr branch')

2010-04-16 Thread Andrew Bennetts
** Summary changed:

- Please check earlier for error condition "Target directory "%s" already 
exists."
+ Please check earlier for error condition "Target directory "%s" already 
exists." (in 'bzr branch')

** Also affects: bzr
   Importance: Undecided
   Status: New

** Changed in: bzr (Ubuntu)
   Importance: Undecided => Medium

** Changed in: bzr (Ubuntu)
   Status: New => Confirmed

-- 
Please check earlier for error condition "Target directory "%s" already 
exists." (in 'bzr branch')
https://bugs.launchpad.net/bugs/564953
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 372554] Re: bzr crashed with SIGSEGV in PyObject_SetAttrString()

2010-04-13 Thread Andrew Bennetts
FWIW, the python DBus bindings are near the top of the stacktrace:

#0  0x00450e6b in PyObject_SetAttrString ()
#1  0x7fe66c90267c in ?? ()
   from /var/lib/python-support/python2.6/_dbus_bindings.so
#2  0x7fe66c8ff19a in ?? ()
   from /var/lib/python-support/python2.6/_dbus_bindings.so
#3  0x0041d3bd in PyObject_Call ()

So, this is mostly likely is, or was, a bug in python-dbus, and not bzr.

-- 
bzr crashed with SIGSEGV in PyObject_SetAttrString()
https://bugs.launchpad.net/bugs/372554
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 561804] Re: bzr crashed with IOError in report_exception()

2010-04-13 Thread Andrew Bennetts
I guess if stderr has already been closed then report_exception should
just catch and ignore broken pipe errors when trying to write to it.
There's not much else we can usefully do.

** Also affects: bzr
   Importance: Undecided
   Status: New

** Description changed:

  Binary package hint: bzr
  
  I rebooted after a dist-upgrade and got this error. Very strange.
  
  ProblemType: Crash
  DistroRelease: Ubuntu 10.04
  Package: bzr 2.1.1-1
- ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
- Uname: Linux 2.6.32-19-generic x86_64
- NonfreeKernelModules: nvidia
- Architecture: amd64
- Date: Thu Apr  8 11:58:09 2010
- ExecutablePath: /usr/bin/bzr
+ [...]
  InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Alpha amd64 (20100209.1)
  InterpreterPath: /usr/bin/python2.6
  ProcCmdline: /usr/bin/python /usr/bin/bzr pull -r 2 --overwrite -d amqplib 
bzr+ssh://jdobr...@bazaar.launchpad.net/~ubuntuone-pqm-team/ubuntuone-servers/amqplib
- ProcEnviron:
-  SHELL=/bin/bash
-  PATH=(custom, user)
-  LANG=en_US.utf8
- PythonArgs: ['/usr/bin/bzr', 'pull', '-r', '2', '--overwrite', '-d', 
'amqplib', 
'bzr+ssh://jdobr...@bazaar.launchpad.net/~ubuntuone-pqm-team/ubuntuone-servers/amqplib']
- SourcePackage: bzr
- Title: bzr crashed with IOError in report_exception()
- UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ 
+ Traceback (most recent call last):
+   File "/usr/bin/bzr", line 142, in 
+ exit_val = bzrlib.commands.main()
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1133, in 
main
+ ret = run_bzr_catch_errors(argv)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1148, in 
run_bzr_catch_errors
+ return exception_to_return_code(run_bzr, argv)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 858, in 
exception_to_return_code
+ exitcode = trace.report_exception(exc_info, sys.stderr)
+   File "/usr/lib/python2.6/dist-packages/bzrlib/trace.py", line 454, in 
report_exception
+ err_file.write("bzr: interrupted\n")
+ IOError: [Errno 32] Broken pipe

** Summary changed:

- bzr crashed with IOError in report_exception()
+ bzr crashed with IOError: Broken pipe in report_exception(), trying to write 
'bzr: interrupted'

** Changed in: bzr
   Importance: Undecided => Medium

** Changed in: bzr
   Status: New => Confirmed

-- 
bzr crashed with IOError: Broken pipe in report_exception(), trying to write 
'bzr: interrupted'
https://bugs.launchpad.net/bugs/561804
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 532192] Re: bzr crashed with TypeError in open()

2010-04-13 Thread Andrew Bennetts
** Package changed: bzr (Ubuntu) => bzr-git (Ubuntu)

-- 
bzr crashed with TypeError in open()
https://bugs.launchpad.net/bugs/532192
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 562632] Re: "bzr merge" fails with (only) "[Errno 13] Permission denied"

2010-04-13 Thread Andrew Bennetts
That is strange.  What are the permissions on
/home/user/src/b2evo/whissip/blogs/skins/custom/index.main.php and
/home/user/src/b2evo/whissip/blogs/skins/custom ?

Here's a script that reproduces this error:

bzr="/bzr --no-plugins -Derror"
$bzr init one
cd one
echo 'rev 1' > file.txt
$bzr add
$bzr ci -m "First commit."
cd ..
$bzr branch one two
cd two
echo 'modified in branch two' > file.txt
$bzr ci -m "Commit in branch."
cd ../one
chmod a-w .
$bzr merge ../two


** Changed in: bzr
   Importance: Undecided => Medium

** Changed in: bzr
   Status: New => Confirmed

** Tags added: treetransform

-- 
"bzr merge" fails with (only) "[Errno 13] Permission denied"
https://bugs.launchpad.net/bugs/562632
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 562632] Re: "bzr merge" fails with (only) "[Errno 13] Permission denied"

2010-04-13 Thread Andrew Bennetts
** Also affects: bzr
   Importance: Undecided
   Status: New

-- 
"bzr merge" fails with (only) "[Errno 13] Permission denied"
https://bugs.launchpad.net/bugs/562632
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 521546] Re: TypeError: merge_text() takes exactly 2 arguments (3 given)

2010-02-14 Thread Andrew Bennetts
As Michael points out, this is bug 515597, which has been fixed on the
2.1 branch already, and should be part of 2.1.0 final (even if there are
no further release candidates).

-- 
TypeError: merge_text() takes exactly 2 arguments (3 given)
https://bugs.launchpad.net/bugs/521546
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 501754] Re: Better support for merging debian/changelog

2010-01-18 Thread Andrew Bennetts
Oh, and  (and the rest of that thread) has some
code for parsing and merging debian/changelog files, which is probably a
good starting point to use with bug 491711's fix.

-- 
Better support for merging debian/changelog
https://bugs.launchpad.net/bugs/501754
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 501754] Re: Better support for merging debian/changelog

2010-01-18 Thread Andrew Bennetts
Related: , "hook to
permit per file merges".

-- 
Better support for merging debian/changelog
https://bugs.launchpad.net/bugs/501754
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 437626] Re: [sru] exceptions.AssertionError: second push failed to complete a fetch set

2010-01-10 Thread Andrew Bennetts
I just installed 2.0.2-0ubuntu1 from karmic-proposed, and it appears to
be working just fine.

-- 
[sru] exceptions.AssertionError: second push failed to complete a fetch set
https://bugs.launchpad.net/bugs/437626
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 500760] Re: "Fatal error" with no explanation

2009-12-27 Thread Andrew Bennetts

** Attachment added: ".home.andrew..cache.ubuntuone.log.oauth.login.log.txt"
   
http://launchpadlibrarian.net/37223900/.home.andrew..cache.ubuntuone.log.oauth.login.log.txt

** Attachment added: 
".home.andrew..cache.ubuntuone.log.syncdaemon.exceptions.log.txt"
   
http://launchpadlibrarian.net/37223901/.home.andrew..cache.ubuntuone.log.syncdaemon.exceptions.log.txt

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/37223902/Dependencies.txt

** Attachment added: "UbuntuoneClientPackages.txt"
   http://launchpadlibrarian.net/37223903/UbuntuoneClientPackages.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/37223904/XsessionErrors.txt

-- 
"Fatal error" with no explanation
https://bugs.launchpad.net/bugs/500760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 500760] [NEW] "Fatal error" with no explanation

2009-12-27 Thread Andrew Bennetts
Public bug reported:

Binary package hint: ubuntuone-client

I've no idea what this error is about.  There was an unexplained icon in
my gnome panel with the title text "Fatal error".  Clicking on it
prompted me to file this bug report.  I hope the automatically attached
debug info is helpful.

ProblemType: Bug
.home.andrew..config.ubuntuone.ubuntuone.client.conf:
 [ubuntuone]
 show_applet = 1
 connected = True
 connect = 0
 bookmarked = True
Architecture: i386
Date: Sun Dec 27 23:36:12 2009
DistroRelease: Ubuntu 9.10
Package: ubuntuone-client 1.0.3-0ubuntu1
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_AU.UTF-8
 PATH=(custom, no user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-16.53-generic
SourcePackage: ubuntuone-client
Uname: Linux 2.6.31-16-generic i686

** Affects: ubuntuone-client (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
"Fatal error" with no explanation
https://bugs.launchpad.net/bugs/500760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   >