[Bug 2041831] Re: /usr/bin/update-manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

2024-06-11 Thread Tormod Volden
Apport didn't work for me either, so I ran gdb python manually. The
traceback is identical to the OP one in bug #2027941.

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

Title:
  /usr/bin/update-
  
manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

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


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

[Bug 2068805] Re: "Install Now" button disappears for good if all packages unselected

2024-06-11 Thread Tormod Volden
I think you got segfaults because you hit bug #2027941 (or #2041831, the
"secret" report, dunno which one should be made duplicate). I guess you
used a mouse click to deselect :) If you use the spacebar to deselect,
you can probably reproduce this bug.

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

Title:
  "Install Now" button disappears for good if all packages unselected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068805/+subscriptions


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

[Bug 2068805] Re: "Install Now" button disappears for good if all packages unselected

2024-06-10 Thread Tormod Volden
** Description changed:

  If one deselects all packages, the "Install Now" button disappears,
  which makes sense (on another note it would make even more sense if it
  was simply grayed out). However when one or more packages are then re-
  selected, the button won't ever reappear, and update-manager must be
  restarted in order to upgrade any packages.
  
- update-manager 1:24.04.6 (Ubuntu 20.04)
+ update-manager 1:24.04.6 (Ubuntu 24.04)

** Changed in: update-manager (Ubuntu)
   Status: Incomplete => New

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

Title:
  "Install Now" button disappears for good if all packages unselected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068805/+subscriptions


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

[Bug 2068809] Re: changelogs not listed for PPA packages

2024-06-08 Thread Tormod Volden
Merge request:
https://code.launchpad.net/~tormodvolden/update-manager/+git/update-manager/+merge/467152

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

Title:
  changelogs not listed for PPA packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068809/+subscriptions


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

[Bug 2068809] [NEW] changelogs not listed for PPA packages

2024-06-08 Thread Tormod Volden
Public bug reported:

When clicking on a package from a PPA in update-manager, the "Changes
for XXX versions:" section will say:

"This update does not come from a source that supports changelogs."

and on the console it dumps:

ERROR:root:Unable to find a valid PPA candidate URL.


The reason is that in _extract_ppa_changelog_uri() in 
/usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py it checks only for 
ppa.launchpad.net but nowadays the URI will contain ppa.launchpadcontent.net 
instead.


With the below patch it will correctly display the changelogs:

--- /usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py.orig   
2024-04-16 11:56:33.0 +0200
+++ /usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py
2024-06-08 20:33:51.462435498 +0200
@@ -338,7 +338,7 @@ class MyCache(DistUpgrade.DistUpgradeCac
 
 cdt = self[name].candidate
 for uri in cdt.uris:
-if urlsplit(uri).hostname != "ppa.launchpad.net":
+if urlsplit(uri).hostname not in ("ppa.launchpad.net", 
"ppa.launchpadcontent.net"):
 continue
 match = re.search("http.*/(.*)/(.*)/ubuntu/.*", uri)
 if match is not None:

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: patch

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

Title:
  changelogs not listed for PPA packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068809/+subscriptions


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

[Bug 2041831] Re: /usr/bin/update-manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

2024-06-08 Thread Tormod Volden
It happens if packages are deselected with a mouse click. If the
keyboard spacebar is used instead, it doesn't crash AFAICS.

Seen with update-manager 1:24.04.6

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

Title:
  /usr/bin/update-
  
manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

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


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

[Bug 2046523] Re: segfault error 4 in libgobject-2.0.so.0

2024-06-08 Thread Tormod Volden
*** This bug is a duplicate of bug 2027941 ***
https://bugs.launchpad.net/bugs/2027941

** This bug has been marked a duplicate of bug 2027941
   Unchecking packages in update-manager causes SIGSEGV

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

Title:
  segfault error 4 in libgobject-2.0.so.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2046523/+subscriptions


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

[Bug 2028920] Re: Update Manager crashes when unselecting any package

2024-06-08 Thread Tormod Volden
*** This bug is a duplicate of bug 2027941 ***
https://bugs.launchpad.net/bugs/2027941

** This bug has been marked a duplicate of bug 2027941
   Unchecking packages in update-manager causes SIGSEGV

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

Title:
  Update Manager crashes when unselecting any package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2028920/+subscriptions


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

[Bug 2027941] Re: Unchecking packages in update-manager causes SIGSEGV

2024-06-08 Thread Tormod Volden
The master bug is probably #2041831.

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

Title:
  Unchecking packages in update-manager causes SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2027941/+subscriptions


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

[Bug 2041831] Re: /usr/bin/update-manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

2024-06-08 Thread Tormod Volden
A.k.a "Unchecking packages in update-manager causes SIGSEGV" #2027941

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

Title:
  /usr/bin/update-
  
manager:11:g_type_check_instance_is_fundamentally_a:g_object_ref:gdk_event_copy:pygi_boxed_copy_in_place:arg_boxed_to_py_cleanup

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


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

[Bug 2028920] Re: Update Manager crashes when unselecting any package

2024-06-08 Thread Tormod Volden
*** This bug is a duplicate of bug 2027941 ***
https://bugs.launchpad.net/bugs/2027941

This seems to be a duplicate of #2027941.

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

Title:
  Update Manager crashes when unselecting any package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2028920/+subscriptions


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

[Bug 2046523] Re: segfault error 4 in libgobject-2.0.so.0

2024-06-08 Thread Tormod Volden
From your crash file:

 Thread 1 (Thread 0x7fc072830040 (LWP 3292)):
 #0  0x7fc0718b4c41 in g_type_check_instance_is_fundamentally_a () from 
/lib/x86_64-linux-gnu/libgobject-2.0.so.0


Probably a duplicate of #2027941.

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

Title:
  segfault error 4 in libgobject-2.0.so.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2046523/+subscriptions


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

[Bug 2068805] Re: "Install Now" button disappears for good if all packages unselected

2024-06-08 Thread Tormod Volden
** Tags added: noble

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

Title:
  "Install Now" button disappears for good if all packages unselected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068805/+subscriptions


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

[Bug 2068805] [NEW] "Install Now" button disappears for good if all packages unselected

2024-06-08 Thread Tormod Volden
Public bug reported:

If one deselects all packages, the "Install Now" button disappears,
which makes sense (on another note it would make even more sense if it
was simply grayed out). However when one or more packages are then re-
selected, the button won't ever reappear, and update-manager must be
restarted in order to upgrade any packages.

update-manager 1:24.04.6 (Ubuntu 20.04)

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: noble

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

Title:
  "Install Now" button disappears for good if all packages unselected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2068805/+subscriptions


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

[Bug 2028920] Re: Update Manager crashes when unselecting any package

2024-06-08 Thread Tormod Volden
** Summary changed:

- Update Manager crashes when unselecting any package in Ubuntu 23.04
+ Update Manager crashes when unselecting any package

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

Title:
  Update Manager crashes when unselecting any package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2028920/+subscriptions


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

[Bug 2028920] Re: Update Manager crashes when unselecting any package in Ubuntu 23.04

2024-06-08 Thread Tormod Volden
I noticed all the "gesture" functions in the call trace. Indeed, if I
only use the keyboard (tab to navigate, space to toggle packages or
groups) it doesn't crash.

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

Title:
  Update Manager crashes when unselecting any package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2028920/+subscriptions


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

[Bug 2028920] Re: Update Manager crashes when unselecting any package in Ubuntu 23.04

2024-06-08 Thread Tormod Volden
This is where it is crashing:

$ gdb --args python3 /usr/bin/update-manager --no-update

... snip ...

Thread 1 "python3" received signal SIGSEGV, Segmentation fault.
Downloading source file 
/usr/src/glib2.0-2.80.0-6ubuntu3.1/debian/build/deb/../../../gobject/gtype.c
0x77137d59 in g_type_check_instance_is_fundamentally_a (
type_instance=0x39383131204c2035, fundamental_type=0x50)
at ../../../gobject/gtype.c:4151
warning: 4151   ../../../gobject/gtype.c: No such file or directory
(gdb) p type_instance
$1 = 0x39383131204c2035
(gdb) p *type_instance
Cannot access memory at address 0x39383131204c2035
(gdb) where
#0  0x77137d59 in g_type_check_instance_is_fundamentally_a
(type_instance=0x39383131204c2035, fundamental_type=0x50)
at ../../../gobject/gtype.c:4151
#1  0x7711c959 in g_object_ref (_object=0x39383131204c2035)
at ../../../gobject/gobject.c:4199
#2  0x761123c6 in gdk_event_copy (event=0x2803cf0)
at ../../../gdk/gdkevents.c:661
#3  0x772e1c4f in pygi_boxed_copy_in_place (self=0x7fffea0a5a30)
at ../gi/pygi-boxed.c:223
#4  arg_boxed_to_py_cleanup
(state=, arg_cache=, 
cleanup_data=0x7fffea0a5a30, data=, was_processed=)
at ../gi/pygi-struct-marshal.c:527
#5  0x772d63e6 in pygi_marshal_cleanup_args_to_py_marshal_success
(state=state@entry=0x7fffc110, cache=)
at ../gi/pygi-marshal-cleanup.c:156
#6  0x772d680a in _pygi_closure_handle
(cif=, result=, args=, 
data=) at ../gi/pygi-closure.c:589
#7  0x77fad641 in ffi_closure_unix64_inner
(cif=, fun=, user_data=, 
rvalue=, reg_args=, argp=0x7fffc3c0 
"\020\304\377\377\377\177") at ../src/x86/ffi64.c:899
--Type  for more, q to quit, c to continue without paging--
#8  0x77fadd38 in ffi_closure_unix64 () at ../src/x86/unix64.S:303
#9  0x75934d5d in _gtk_tree_view_column_cell_event
(flags=0, cell_area=0x7fffc440, event=0x2803cf0, tree_column=0x260ed10 
[GtkTreeViewColumn]) at ../../../gtk/gtktreeviewcolumn.c:2930
#10 gtk_tree_view_multipress_gesture_pressed
(gesture=0x25b7a20 [GtkGestureMultiPress], n_press=1, x=, 
y=, tree_view=) at ../../../gtk/gtktreeview.c:3356

#15 0x77130883 in 
(instance=instance@entry=0x25b7a20, signal_id=, 
detail=detail@entry=0) at ../../../gobject/gsignal.c:3583
#11 0x75699b43 in _gtk_marshal_VOID__INT_DOUBLE_DOUBLEv
(closure=, return_value=, instance=, args=, marshal_data=, n_params=, param_types=0x164d240) at gtk/gtkmarshalers.c:4804
#12 0x771306bd in _g_closure_invoke_va
(param_types=0x164d240, n_params=, args=0x7fffc720, 
instance=0x25b7a20, return_value=0x0, closure=0x25b7d90)
at ../../../gobject/gclosure.c:897
#13 signal_emit_valist_unlocked
(instance=instance@entry=0x25b7a20, signal_id=signal_id@entry=344, 
detail=detail@entry=0, var_args=var_args@entry=0x7fffc720)
at ../../../gobject/gsignal.c:3424
--Type  for more, q to quit, c to continue without paging--
#14 0x771307c1 in g_signal_emit_valist
(instance=0x25b7a20, signal_id=344, detail=0, 
var_args=var_args@entry=0x7fffc720) at ../../../gobject/gsignal.c:3263
#16 0x757b603e in gtk_gesture_multi_press_begin
(gesture=0x25b7a20 [GtkGestureMultiPress], sequence=sequence@entry=0x0)
at ../../../gtk/gtkgesturemultipress.c:242
#21 0x77130883 in 
(instance=instance@entry=0x25b7a20, signal_id=, 
detail=detail@entry=0) at ../../../gobject/gsignal.c:3583
#17 0x771148da in g_cclosure_marshal_VOID__BOXEDv
(closure=0xf5c7e0, return_value=, instance=0x25b7a20, 
args=, marshal_data=, n_params=, 
param_types=0xf61450) at ../../../gobject/gmarshal.c:1686
#18 0x771306bd in _g_closure_invoke_va
(param_types=0xf61450, n_params=, args=0x7fffcb10, 
instance=0x25b7a20, return_value=0x0, closure=0xf5c7e0)
at ../../../gobject/gclosure.c:897
#19 signal_emit_valist_unlocked
(instance=instance@entry=0x25b7a20, signal_id=signal_id@entry=339, 
detail=detail@entry=0, var_args=var_args@entry=0x7fffcb10)
at ../../../gobject/gsignal.c:3424
#20 0x771307c1 in g_signal_emit_valist
--Type  for more, q to quit, c to continue without paging--
(instance=0x25b7a20, signal_id=339, detail=0, 
var_args=var_args@entry=0x7fffcb10) at ../../../gobject/gsignal.c:3263
#22 0x757adfd6 in _gtk_gesture_set_recognized
(recognized=, sequence=0x0, gesture=0x25b7a20 
[GtkGestureMultiPress]) at ../../../gtk/gtkgesture.c:344
#23 _gtk_gesture_set_recognized
(sequence=0x0, recognized=1, gesture=0x25b7a20 [GtkGestureMultiPress])
at ../../../gtk/gtkgesture.c:330
#24 _gtk_gesture_check_recognized
(gesture=gesture@entry=0x25b7a20 [GtkGestureMultiPress], 
sequence=sequence@entry=0x0) at ../../../gtk/gtkgesture.c:390
#25 0x757b5c9c in gtk_gesture_handle_event
(controller=0x25b7a20 [GtkGestureMultiPress], event=)
at ../../../gtk/gtkgesture.c:757
#26 

[Bug 2028920] Re: Update Manager crashes when unselecting any package in Ubuntu 23.04

2024-06-08 Thread Tormod Volden
I have this in 24.04 as well.

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

Title:
  Update Manager crashes when unselecting any package in Ubuntu 23.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/2028920/+subscriptions


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

[Bug 2043909] Re: brisk-menu leaks memory continuously

2024-05-24 Thread Tormod Volden
Can be the same as this: https://github.com/getsolus/brisk-
menu/issues/56 ("After some time, Brisk Menu consumes a ton of memory")

** Bug watch added: github.com/getsolus/brisk-menu/issues #56
   https://github.com/getsolus/brisk-menu/issues/56

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

Title:
  brisk-menu leaks memory continuously

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/brisk-menu/+bug/2043909/+subscriptions


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

[Bug 628657] Re: freezes for > 10s when displaying long changelogs

2024-03-06 Thread Tormod Volden
Today's linux-libc-dev changelog was 4 lines. This freezes the
update-manager GUI (with 100% CPU) in Ubuntu 20.04 for very long.

My 10 year old patch above still applies.

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

Title:
  freezes for > 10s when displaying long changelogs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/628657/+subscriptions


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

[Bug 1961635] Re: [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

2022-04-27 Thread Tormod Volden
dfu-util 0.11 is fully backwards-compatible with 0.9 so it shouldn't be
a problem with firmware-tomu. Please also note that firmware-tomu
doesn't call anything from dfu-util itself, only their user instructions
tell the user to run dfu-util manually.

The feature changes since 0.9 (see also ChangeLog for all bug fixes) are
- python3 compatible
- quirks for several devices (including the popular GD32VF103 chips)
- manual pages added
- support large files
- new --devnum option to filter devices
- new --wait option for device discovery
- improved status and error messages


If 0.11 would not be let in, you would do upstream a favour by removing it from 
your archive. It is better that users find and install 0.11 themselves rather 
than running into problems with the outdated 0.9.

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

Title:
  [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dfu-util/+bug/1961635/+subscriptions


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

[Bug 1895252] Re: help menu entry points to website solely promoting adult products

2022-04-26 Thread Tormod Volden
Upstream made a 1.10.3 release with only this fix. Once this gets in
Debian it'll be worth syncing it as an SRU.

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

Title:
  help menu entry points to website solely promoting adult products

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


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

[Bug 1961635] Re: [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

2022-03-15 Thread Tormod Volden
** Description changed:

  Due to maintainer MIA the current package 0.9 in Debian testing (and
- Ubuntu) is nearly 7 years old. I have salvaged the package in Debian,
- but this has been a long process, and the new 0.11-1 package is now
- sitting in the delayed queue until February 26. Since this will barely
- miss the Feature Freeze I ask up front about an exception for this.
+ Ubuntu) is 7 years old. I have salvaged the package in Debian, but this
+ has been a long process, and the new 0.11-1 package was sitting in the
+ delayed queue until February 26. Since this barely missed the Feature
+ Freeze I asked up front about an exception for this.

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

Title:
  [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dfu-util/+bug/1961635/+subscriptions


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

[Bug 1961635] Re: [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

2022-02-26 Thread Tormod Volden
It is in unstable now:
http://deb.debian.org/debian/pool/main/d/dfu-util/dfu-util_0.11-1.dsc

** Description changed:

  Due to maintainer MIA the current package 0.9 in Debian testing (and
  Ubuntu) is nearly 7 years old. I have salvaged the package in Debian,
  but this has been a long process, and the new 0.11-1 package is now
  sitting in the delayed queue until February 26. Since this will barely
  miss the Feature Freeze I ask up front about an exception for this.
- 
- https://ftp-master.debian.org/deferred.html (overview deferred)
- https://ftp-master.debian.org/deferred/ (package sources)

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

Title:
  [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dfu-util/+bug/1961635/+subscriptions


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

[Bug 1961635] Re: [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

2022-02-26 Thread Tormod Volden
** Summary changed:

- [FFe] sync dfu-util 0.11-1 from Debian (now in DELAYED)
+ [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

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

Title:
  [FFe] sync dfu-util 0.11-1 from Debian unstable (was in DELAYED)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dfu-util/+bug/1961635/+subscriptions


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

[Bug 1961634] Re: Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-24 Thread Tormod Volden
** Changed in: xscreensaver (Ubuntu)
   Status: New => Confirmed

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

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1961634] Re: Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-24 Thread Tormod Volden
** Tags added: jammy

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

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1961634] Re: Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-24 Thread Tormod Volden
This was also test-built in my PPA:
https://launchpad.net/~tormodvolden/+archive/ubuntu/ppa/+build/23196149

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

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1961634] Re: Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-24 Thread Tormod Volden
To simplify review, here is the new Ubuntu delta.

** Patch added: "Ubuntu delta"
   
https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/1961634/+attachment/5563441/+files/xscreensaver_6.02+dfsg1-2ubuntu1.ubuntu-delta.debdiff

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

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1961634] Re: Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-24 Thread Tormod Volden
** Patch added: "Full debdiff from xscreensaver_5.45+dfsg1-2ubuntu1"
   
https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/1961634/+attachment/5563432/+files/xscreensaver_6.02+dfsg1-2ubuntu1.debdiff

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

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1961635] [NEW] [FFe] sync dfu-util 0.11-1 from Debian (now in DELAYED)

2022-02-21 Thread Tormod Volden
Public bug reported:

Due to maintainer MIA the current package 0.9 in Debian testing (and
Ubuntu) is nearly 7 years old. I have salvaged the package in Debian,
but this has been a long process, and the new 0.11-1 package is now
sitting in the delayed queue until February 26. Since this will barely
miss the Feature Freeze I ask up front about an exception for this.

https://ftp-master.debian.org/deferred.html (overview deferred)
https://ftp-master.debian.org/deferred/ (package sources)

** Affects: dfu-util (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: jammy

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

Title:
  [FFe] sync dfu-util 0.11-1 from Debian (now in DELAYED)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dfu-util/+bug/1961635/+subscriptions


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

[Bug 1961634] [NEW] Please merge xscreensaver 6.02+dfsg1-1 from Debian

2022-02-21 Thread Tormod Volden
Public bug reported:

@robert-ancell Are you going to merge this? I notice Jammy feature
freeze is coming up soon.

** Affects: xscreensaver (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/1961634

Title:
  Please merge xscreensaver 6.02+dfsg1-1 from Debian

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


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

[Bug 1279544] Re: lsusb different device id when using usb hub

2022-02-09 Thread Tormod Volden
The wrong display of information in lsusb when plugged in a hub is a
known problem fixed in usbutils 013.

Anyway, rest assured that wrong information printed by lsusb has no
effect on the functionality of the device (unless some weird program
would be parsing lsusb output, very unlikely).

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

Title:
  lsusb different device id when using usb hub

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


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

[Bug 1910915] Re: Multiple usb devices description not correct

2022-02-09 Thread Tormod Volden
That the "HyperX Cloud Alpha S" value is repeated for several items is a
known problem that has been fixed in newer usbutils.

Note that lsusb nowadays collect data from the udev hwdb database and
not from the usb.ids file.

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

Title:
  Multiple usb devices description not correct

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


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

[Bug 696213] Re: xscreensaver-data-extra is missing screensavers

2022-02-01 Thread Tormod Volden
The package description was updated at some point, for sure included in
5.42 (in 20.04).

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

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

Title:
  xscreensaver-data-extra is missing screensavers

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


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

[Bug 1871797] Re: syntax error in desktop file

2022-02-01 Thread Tormod Volden
In my experience, small issues like this will seldom be fixed in the old
release (20.04). It is a small enough fix, but there is enough
"paperwork" involved (SRU process) that nobody will take their time for
this.

I would recommend installing the 6.02 version from my PPA:
https://launchpad.net/~tormodvolden/+archive/ubuntu/ppa
(This is the original Debian version, so without the Ubuntu branding.)

If you make a local modification of the file, it will be overwritten
next time the package is upgraded or reinstalled. The package in 20.04
has not been updated since the release though.

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

Title:
  syntax error in desktop file

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


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

[Bug 795170] Re: [nvidia] system hangs (even networking) when GLText screensaver start

2022-02-01 Thread Tormod Volden
Closing since no further info from submitter.

** Changed in: xscreensaver (Ubuntu)
   Status: Incomplete => Invalid

** Changed in: xscreensaver (Ubuntu)
 Assignee: Tormod Volden (tormodvolden) => (unassigned)

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

Title:
  [nvidia] system hangs (even networking) when GLText screensaver start

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


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

[Bug 602028] Re: xscreensaver crashed with SIGSEGV

2022-02-01 Thread Tormod Volden
Closing since it couldn't be reproduced and no further info from
submitter.

** Changed in: xscreensaver (Ubuntu)
   Status: Incomplete => Invalid

** Changed in: xscreensaver (Ubuntu)
 Assignee: Tormod Volden (tormodvolden) => (unassigned)

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

Title:
  xscreensaver crashed with SIGSEGV

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


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

[Bug 1947359] Re: [focal] ubuntu patch fills .xsession-errors with ""Visible region is null"

2021-10-21 Thread Tormod Volden
Note the correction I am suggesting was also applied upstream as part of
commit 3a36bf7b55ff3da09cf6ff181be27e9f9b7cd97b

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

Title:
  [focal] ubuntu patch fills .xsession-errors with ""Visible region is
  null"

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


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

[Bug 1947359] Re: [focal] ubuntu patch fills .xsession-errors with ""Visible region is null"

2021-10-15 Thread Tormod Volden
** Patch added: "debdiff for focal SRU"
   
https://bugs.launchpad.net/ubuntu/+source/marco/+bug/1947359/+attachment/5533147/+files/marco_1.24.0-1ubuntu1.1.debdiff

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

Title:
  [focal] ubuntu patch fills .xsession-errors with ""Visible region is
  null"

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


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

[Bug 1947359] [NEW] [focal] ubuntu patch fills .xsession-errors with ""Visible region is null"

2021-10-15 Thread Tormod Volden
Public bug reported:

marco 1.24.0-1ubuntu1 in Ubuntu 20.04 ships with the Ubuntu-specific
patch debian/0001_fix_segfaults.patch which includes this part:

+  else {
+g_warning ("Visible region is null");
 }
+  }


Thanks to this (unnecessary) part of patch ~/.xsession-errors gets filled with 
this (for example it is now 5MB with 82000 lines with this message).

** Affects: marco (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/1947359

Title:
  [focal] ubuntu patch fills .xsession-errors with ""Visible region is
  null"

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


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

[Bug 1877718] Re: RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not initialized

2021-07-18 Thread Tormod Volden
Fixed upstream in caja-rename 21.7.18.

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

Title:
  RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not
  initialized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/caja-rename/+bug/1877718/+subscriptions


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

[Bug 1877718] Re: RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not initialized

2021-07-18 Thread Tormod Volden
I filed an upstream pull request at https://github.com/tari01/caja-
rename/pull/4

Corresponding changes for other packages:

- https://bazaar.launchpad.net/~costales/folder-color/trunk/revision/283

- https://github.com/GSConnect/gnome-shell-extension-
gsconnect/commit/cb422ea85a95d8d71bfafb8a1d0571b66f324106

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

Title:
  RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not
  initialized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/caja-rename/+bug/1877718/+subscriptions


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

[Bug 1877718] Re: RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not initialized

2021-07-18 Thread Tormod Volden
FWIW, the error message also appears after upgrading to caja 1.25.3 and
caja-rename 21.4.11 (checked out latest git of both), on top of Ubuntu
20.04.2.

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

Title:
  RuntimeError: object at 0x7f3f983de500 of type RenameMenu is not
  initialized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/caja-rename/+bug/1877718/+subscriptions


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

[Bug 1862150] Re: Xscreensaver produces high cpu and fan on 18.04

2021-07-09 Thread Tormod Volden
Certain combinations of screensaver hacks, graphic drivers and cards
cause unexpectedly high CPU loads. In my PPA at
https://launchpad.net/~tormodvolden/+archive/ubuntu/ppa there is
xscreensaver 5.45 for focal, with an extra patch that displays a CPU
load summary for each hack in the verbose log. I hope this can help to
collect more data.

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

Title:
  Xscreensaver produces high cpu and fan on 18.04

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

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

[Bug 1874610] Re: error: failed to register the EFI boot entry: Operation not permitted.

2020-07-06 Thread Tormod Volden
I had this error on Ubuntu Mate 20.04, also when running grub-install
chroot'ed to the failed installation. After converting the partition
table from MBR to GPT, grub-install worked.

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

Title:
  error: failed to register the EFI boot entry: Operation not permitted.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1874610/+subscriptions

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

[Bug 628657] Re: freezes for > 10s when displaying long changelogs

2020-05-21 Thread Tormod Volden
Certainly happening in xenial, which is still supported. Clicking on a
kernel package makes it hang for a long time. Still have to apply my
above patch.

** Changed in: update-manager (Ubuntu)
   Status: Invalid => Confirmed

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

Title:
  freezes for > 10s when displaying long changelogs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/628657/+subscriptions

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

[Bug 1771914] Re: release-upgrade-motd can't update message via apt proxy

2019-10-28 Thread Tormod Volden
I think this xenial update (the change to dict) broke changelog display
- please see my patch in #1850208.

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

Title:
  release-upgrade-motd can't update message via apt proxy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1771914/+subscriptions

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

[Bug 1849004] Re: update-manager stop to load update descriptions / changelog

2019-10-28 Thread Tormod Volden
** Summary changed:

- update-manager stop to load update descriptions
+ update-manager stop to load update descriptions / changelog

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

Title:
  update-manager stop to load update descriptions / changelog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1849004/+subscriptions

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

[Bug 1850208] Re: [PATCH, regression] changelog not displayed (1:16.04.16)

2019-10-28 Thread Tormod Volden
*** This bug is a duplicate of bug 1849004 ***
https://bugs.launchpad.net/bugs/1849004

** This bug has been marked a duplicate of bug 1849004
   update-manager stop to load update descriptions

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

Title:
  [PATCH, regression] changelog not displayed (1:16.04.16)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1850208/+subscriptions

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

[Bug 1850208] [NEW] [PATCH, regression] changelog not displayed (1:16.04.16)

2019-10-28 Thread Tormod Volden
Public bug reported:

Because urlsplit() is returning None instead of "" in the username
member the logic in MyCache.py falsely thinks the URI contains a
username.


Exception in thread Thread-4:
Traceback (most recent call last):
  File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner
self.run()
  File "/usr/lib/python3.5/threading.py", line 862, in run
self._target(*self._args, **self._kwargs)
  File "/usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py", line 
320, in get_news_and_changelog
self.get_changelog(name)
  File "/usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py", line 
376, in get_changelog
changelog = self._get_changelog_or_news(name, "changelog")
  File "/usr/lib/python3/dist-packages/UpdateManager/Core/MyCache.py", line 
245, in _get_changelog_or_news
"https locations with username/password are not"
UpdateManager.Core.MyCache.HttpsChangelogsUnsupportedError: https locations 
with username/password are notsupported to fetch changelogs

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: regression

** Patch added: "Simple patch against version 1:16.04.16 in xenial"
   
https://bugs.launchpad.net/bugs/1850208/+attachment/5300970/+files/update-manager-patch

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

Title:
  [PATCH, regression] changelog not displayed (1:16.04.16)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1850208/+subscriptions

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

[Bug 1812138] Re: vlc on mpeg stream with radeon GPU driver produces errors and no video

2019-01-20 Thread Tormod Volden
About xserver-xorg-video-radeon: It is a binary package, one of many
built from the xserver-xorg-video-ati source package.

** Package changed: xserver-xorg-video-radeonhd (Ubuntu) => xserver-
xorg-video-ati (Ubuntu)

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

Title:
  vlc on mpeg stream with radeon GPU driver produces errors and no video

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

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

[Bug 1684123] Re: bus: MMIO read of 00000000 FAULT at 3e6684 [ IBUS ]

2017-12-09 Thread Tormod Volden
** Bug watch added: freedesktop.org Bugzilla #100423
   https://bugs.freedesktop.org/show_bug.cgi?id=100423

** Also affects: nouveau via
   https://bugs.freedesktop.org/show_bug.cgi?id=100423
   Importance: Unknown
   Status: Unknown

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

Title:
  bus: MMIO read of  FAULT at 3e6684 [ IBUS ]

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

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

[Bug 1590985] Re: Wifi non-functional after suspend (Intel 6205)

2017-02-25 Thread Tormod Volden
When I have the OP's original issue, lost connection after resume and
only one network listed, simply running "sudo iw wlp3s0 scan" makes
everything work again, without having to reload the module.

I am sure I have seen the lost connection after resume without any
network listed too. I have not yet determined if a scan will fix this
without reloading modules, otherwise I would believe I am actually
experiencing 3 different issues.

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

Title:
  Wifi non-functional after suspend (Intel 6205)

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

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


[Bug 1590985] Re: Wifi non-functional after suspend (Intel 6205)

2017-02-21 Thread Tormod Volden
There are possibly two independent issues here. In some cases the
connection is lost after resume, and the module must be reloaded (or
configured to be unloaded at suspend).

The other issue is that nm-applet shows no connection (or in my case it
shows a wired connection and no wifi bar or networks, although it is
connected to wifi). I can run "nmcli device" and "nmcli device wifi"
which works fine, so this issue seems limited to nm-applet and not
network-manager or drivers. In my case running "iw wlp3s0 scan" or
"iwlist scanning" does not fix up nm-applet.

Reloading the module (for the first issue) also gives nm-applet a kick
in the butt so that the second issue is remedied temporarily.

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

Title:
  Wifi non-functional after suspend (Intel 6205)

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

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


[Bug 1590985] Re: Wifi non-functional after suspend (Intel 6205)

2017-02-20 Thread Tormod Volden
Seeing the same as OP with "Intel Corporation Centrino Advanced-N 6235
(rev 24)" on 16.04.2 with 4.8.0-34-generic.

** Changed in: linux (Ubuntu)
   Status: Expired => Confirmed

** Bug watch added: Red Hat Bugzilla #737424
   https://bugzilla.redhat.com/show_bug.cgi?id=737424

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

Title:
  Wifi non-functional after suspend (Intel 6205)

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

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


[Bug 1590985] Re: Wifi non-functional after suspend (Intel 6205)

2017-02-20 Thread Tormod Volden
Other possible workarounds to try out:
https://bugzilla.redhat.com/show_bug.cgi?id=737424
https://ubuntuforums.org/showthread.php?t=2004690=4

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

Title:
  Wifi non-functional after suspend (Intel 6205)

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

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


[Bug 1624917] Re: external usb-3 disk crashes when writing.

2017-02-20 Thread Tormod Volden
Possible UAS module bug, see
https://bbs.archlinux.org/viewtopic.php?pid=1455956#p1455956

Blacklisting UAS for the given device is probably a workaround.

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

Title:
  external usb-3 disk crashes when writing.

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

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


[Bug 1458599] Re: Lenovo E330 Wifi is disabled by hardware switch Ubuntu 14.04

2016-04-26 Thread Tormod Volden
This is not related to the linux-wlan-ng package. Actually, make sure
you have linux-wlan-ng purged (uninstalled including configuration
files).

** Changed in: linux-wlan-ng (Ubuntu)
   Status: New => Invalid

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

Title:
  Lenovo E330 Wifi is disabled by hardware switch Ubuntu 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-friendly/+bug/1458599/+subscriptions

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


[Bug 1512931] Re: Additional Distro Versions Vuln to usn-2789-1

2016-01-17 Thread Tormod Volden
There are patches available in the Debian bug tracker (5.15 is a bit
different than the newer versions). I believe the issue is still present
in Trusty, Vivid and Wily, although it has been fixed in Precise.

** Changed in: xscreensaver (Ubuntu)
   Status: Expired => Confirmed

** Bug watch added: Debian Bug tracker #802914
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802914

** Also affects: xscreensaver (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802914
   Importance: Unknown
   Status: Unknown

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

Title:
  Additional Distro Versions Vuln to usn-2789-1

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

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


[Bug 840220] Re: Lubuntu : default screen saver should be blank

2015-07-23 Thread Tormod Volden
*** This bug is a duplicate of bug 521427 ***
https://bugs.launchpad.net/bugs/521427

** This bug has been marked a duplicate of bug 521427
   blank screen screensaver should be default

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

Title:
  Lubuntu : default screen saver should be blank

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

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


[Bug 602028] Re: xscreensaver crashed with SIGSEGV

2015-07-23 Thread Tormod Volden
This was most likely a one-off problem, maybe a hardware problem. Unless
it can be reproduced or confirmed by others, the report can be closed.

** Changed in: xscreensaver (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: xscreensaver (Ubuntu)
 Assignee: (unassigned) = Tormod Volden (tormodvolden)

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

Title:
  xscreensaver crashed with SIGSEGV

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

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


[Bug 795170] Re: [nvidia] system hangs (even networking) when GLText screensaver start

2015-07-23 Thread Tormod Volden
This was very likely a crash in the graphics driver, and there have been
many changes to them since then. Please tell if this is still an issue.

** Changed in: xscreensaver (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: xscreensaver (Ubuntu)
 Assignee: (unassigned) = Tormod Volden (tormodvolden)

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

Title:
  [nvidia] system hangs (even networking) when GLText screensaver start

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

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


[Bug 300756] Re: Screensaver launches even if the user is using keyboard.

2015-07-22 Thread Tormod Volden
** Bug watch added: Debian Bug tracker #678279
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678279

** Also affects: xscreensaver (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678279
   Importance: Unknown
   Status: Unknown

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

Title:
  Screensaver launches even if the user is using keyboard.

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

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


[Bug 611932] Re: xscreensaver-data-extra description lists retired t3d screensaver

2015-07-22 Thread Tormod Volden
I am pretty sure this has been fixed. There is no t3d in the Ubuntu
patch any longer.

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

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

Title:
  xscreensaver-data-extra description lists retired t3d screensaver

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

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


[Bug 1424413] Re: Missing german translation for an option

2015-07-21 Thread Tormod Volden
How is this workflow meant to work? I believe the translation teams
should send the updated translations upstream? Do they routinely check
if some random user has contributed some translation fixes in
translations.launchpad.net?

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

Title:
  Missing german translation for an option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/1424413/+subscriptions

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


[Bug 222367] Re: Star Wars screensaver doesn't handle non-ASCII well

2015-07-19 Thread Tormod Volden
** Bug watch added: Debian Bug tracker #180775
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=180775

** Also affects: xscreensaver (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=180775
   Importance: Unknown
   Status: Unknown

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

Title:
  Star Wars screensaver doesn't handle non-ASCII well

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

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


[Bug 628657] Re: freezes for 10s when displaying long changelogs

2015-05-08 Thread Tormod Volden
dino99, what do you mean, isn't 14.04 supported any longer?

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

Title:
  freezes for  10s when displaying long changelogs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/628657/+subscriptions

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


[Bug 1433047] Re: xorg: Unusable Unity Environment (15.04 - using the daily iso of 16.03.2015)

2015-05-08 Thread Tormod Volden
** Package changed: xserver-xorg-driver-ati (Ubuntu) = xserver-xorg-
video-ati (Ubuntu)

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

Title:
  xorg: Unusable Unity  Environment (15.04 - using the daily iso of
  16.03.2015)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1433047/+subscriptions

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


[Bug 1382775] Re: XScreenSaver doesn't lock screen on suspend

2014-10-21 Thread Tormod Volden
I wanted you to run sleep 2; xscreensaver-command -lock on the command
line in a terminal window. The sleep is there only to not trigger
anything when you release the Enter key.

If you are using Unity you cannot expect xscreensaver to work. Unity has
explicitly been made to only use its own screen lock functionality and
to not be compatible with other general screensaver daemons. You must
ask the Unity developers or switch to another desktop environment. I can
recommend LDXE (Lubuntu).

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

Title:
  XScreenSaver doesn't lock screen on suspend

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

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


[Bug 1382661] Re: Support for JLINK in 0.8.0 requires small patch

2014-10-19 Thread Tormod Volden
The Debian package build-depends on libusb-1.0-0-dev so the patch should
not be an issue here.

Johnny, does the 0.8.0-1 in the repos work fine for you?

https://launchpad.net/ubuntu/+source/openocd/0.8.0-1


** Changed in: openocd (Ubuntu)
   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/1382661

Title:
  Support for JLINK in 0.8.0 requires small patch

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

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


[Bug 1382775] Re: XScreenSaver doesn't lock screen on suspend

2014-10-19 Thread Tormod Volden
Does running sleep 2; xscreensaver-command -lock give you the
xscreensaver lock screen?

** Changed in: xscreensaver (Ubuntu)
   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/1382775

Title:
  XScreenSaver doesn't lock screen on suspend

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

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


[Bug 1382661] Re: Support for JLINK in 0.8.0 requires small patch

2014-10-17 Thread Tormod Volden
The post you linked is sent from review tool where patches go into the
official repo.

http://openocd.zylin.com/gitweb?p=openocd.git;a=commitdiff;h=96549bf0121a7cff08885ddca22ab7a1c362ea24

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

Title:
  Support for JLINK in 0.8.0 requires small patch

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

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


[Bug 1320560] Re: Removal of gdmflexiserver breaks user switching

2014-09-15 Thread Tormod Volden
IMO, the session manager which launches xscreensaver should also tell
xscreensaver (or other screensavers) how to do user switching. It does
not make sense that xscreensaver should try to keep up with various
combinations of desktop environments and display managers and guess the
right commands.

I think this would be something for a freedesktop standard. Until then,
xscreensaver reads the X resource XScreenSaver.newLoginCommand run-time
so the session managers can simply set this.

I made this wrapper once: http://anonscm.debian.org/cgit/collab-
maint/xscreensaver.git/commit/?id=f2136d9374bd072a0e6978c3a19c1a8cc2396726
but seriously this is not a good solution either.

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

Title:
  Removal of gdmflexiserver breaks user switching

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-panel/+bug/1320560/+subscriptions

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


[Bug 1287388] Re: screensaver fails to start

2014-09-15 Thread Tormod Volden
From the screenshots it looks like you are running Unity. Unity does not
support the free choice of screensavers, and only use the gnome
screensaver. You can definitely not start the xscreensaver daemon while
the gnome screensaver daemon is running.

** Changed in: xscreensaver (Ubuntu)
   Status: New = Invalid

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

Title:
  screensaver fails to start

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

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


[Bug 1357721] [NEW] logout dialog doesn't go away when I press ESC

2014-08-16 Thread Tormod Volden
Public bug reported:

After starting lxsession-logout (by clicking on the power symbol in the
corner of the screen, or manually) pressing ESC doesn't cancel it again.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: lxsession-logout 0.4.9.2+git20140410-0ubuntu1.1
ProcVersionSignature: Ubuntu 3.13.0-34.60-generic 3.13.11.4
Uname: Linux 3.13.0-34-generic i686
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: i386
CurrentDesktop: LXDE
Date: Sat Aug 16 15:27:27 2014
InstallationDate: Installed on 2014-04-20 (118 days ago)
InstallationMedia: Lubuntu 14.04 LTS Trusty Tahr - Release i386 (20140416.2)
SourcePackage: lxsession
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 trusty ui

** Tags added: ui

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

Title:
  logout dialog doesn't go away when I press ESC

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

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


[Bug 628657] Re: freezes for 10s when displaying long changelogs

2014-08-15 Thread Tormod Volden
This is bad as ever on 14.04. The current kernel updates have a  1
line changelog, and update-manager freezes around 20 seconds (on a quad-
core, 8 GB RAM desktop) before it refreshes the GUI when I click on
these packages.

I use the attached patch as a stop gap, it only lists up to 24 lines of
a changelog. A real fix is probably a bit more complex because of the
convoluted way the changelog is filtered and displayed. Maybe python
cannot do it efficiently enough, the match operations seem pretty slow
and limited and processing only line by line with all the hoops to get
the work done doesn't help.

The patch can be applied with: sudo patch /usr/lib/python3/dist-
packages/UpdateManager/UpdatesAvailable.py  update-manager-changelog-
slow-628657.patch

** Patch added: stop gap measure, for irritation relief
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/628657/+attachment/4178830/+files/update-manager-changelog-slow-628657.patch

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

Title:
  freezes for  10s when displaying long changelogs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/628657/+subscriptions

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


[Bug 1309917] Re: Unable to switch login at xscreensaver lock screen

2014-08-07 Thread Tormod Volden
XFCE (or whatever is launching the xscreensaver daemon) should tell
xscreensaver how a new session should be launched, like here:
http://anonscm.debian.org/cgit/collab-maint/xscreensaver.git/tree/debian
/xscreensaver-wrapper.sh

I guess Saucy had gdmflexiserver but Trusty doesn't.

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

Title:
  Unable to switch login at xscreensaver lock screen

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

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


[Bug 1342734] Re: corrupt pad rendering with OpenGL

2014-08-07 Thread Tormod Volden
** Also affects: xserver-xorg-video-ati (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- corrupt pad rendering with OpenGL
+ fragment shader corrupt rendering with OpenGL

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

Title:
  fragment shader corrupt rendering with OpenGL

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

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


[Bug 363695] Re: update-apt-xapian-index uses too much CPU and memory

2014-07-16 Thread Tormod Volden
** Changed in: apt-xapian-index (Ubuntu)
 Assignee: froedric (anjohnson) = (unassigned)

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

Title:
  update-apt-xapian-index uses too much CPU and memory

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

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


[Bug 1333676] Re: Screen disappear and show chunks from memory

2014-06-29 Thread Tormod Volden
** Package changed: xserver-xorg-driver-ati (Ubuntu) = xserver-xorg-
video-ati (Ubuntu)

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

Title:
  Screen disappear and show chunks from memory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1333676/+subscriptions

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


[Bug 1283459] Re: Please merge xscreensaver (5.26-1) from Debian unstable

2014-05-18 Thread Tormod Volden
Mattia, thanks for merging 5.26-1 ! However, have you seen the upgrade
bug reports? There might be some missing Replaces. Example bug #1320592
and bug #1319433.

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

Title:
  Please merge xscreensaver (5.26-1) from Debian unstable

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

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


[Bug 415357] Re: [gm45] Xorg consistently crashing when using some applications

2014-03-22 Thread Tormod Volden
** Bug watch added: Debian Bug tracker #716851
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=716851

** Also affects: xorg-server (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=716851
   Importance: Unknown
   Status: Unknown

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

Title:
  [gm45] Xorg consistently crashing  when using some applications

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/415357/+subscriptions

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


[Bug 415357] Re: [gm45] Xorg consistently crashing when using some applications

2014-03-22 Thread Tormod Volden
I am getting the same stack trace on Ubuntu 12.04.4 (Intel Arrandale
IGP) when using kicad. This is also reported in Kicad, bug #911963.

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

Title:
  [gm45] Xorg consistently crashing  when using some applications

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/415357/+subscriptions

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


[Bug 1261863] Re: Update xscreensaver to the latest version

2014-02-24 Thread Tormod Volden
A merge debdiff to 5.23-1 has been posted in bug #1283459.

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

Title:
  Update xscreensaver to the latest version

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

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


[Bug 493795] Re: [radeon KMS:M26:X700] broken display after resume (patch)

2014-02-24 Thread Tormod Volden
Brad, did you post in the wrong bug report?

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

Title:
  [radeon KMS:M26:X700] broken display after resume (patch)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/493795/+subscriptions

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


[Bug 1261863] Re: Update xscreensaver to the latest version

2014-02-17 Thread Tormod Volden
Daniel, thanks for the remainder, which I only discovered now. I forgot
about finishing off the release. I am waiting for it to be accepted now.
But note that 5.26 is not much different from 5.23, since most upstream
changes concerned the iOS port.

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

Title:
  Update xscreensaver to the latest version

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

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


[Bug 1275015] Re: apt-get remove xscreensaver No such file or directory

2014-02-17 Thread Tormod Volden
I think this was fixed in Debian: http://anonscm.debian.org/gitweb/?p
=collab-
maint/xscreensaver.git;a=commit;h=1f1ade01d25461a0481c6e56388ebf77b240c7d4

** Bug watch added: Debian Bug tracker #681613
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681613

** Also affects: xscreensaver (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681613
   Importance: Unknown
   Status: Unknown

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

Title:
  apt-get remove xscreensaver  No such file or directory

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

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


[Bug 1261863] Re: Update xscreensaver to the latest version

2013-12-19 Thread Tormod Volden
FYI, I will soon release 5.26-1 in Debian, available in git and in my
PPA for testing.

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

Title:
  Update xscreensaver to the latest version

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

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


[Bug 1248368] Re: Volume up/down keyboard keys stoped working after gnome-settings-daemon package update

2013-11-07 Thread Tormod Volden
Petar, what hardware is this?

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

Title:
  Volume up/down keyboard keys stoped working after gnome-settings-
  daemon package update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1248368/+subscriptions

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


[Bug 408903] Re: Does not handle microphone mute button (KEY_MICMUTE)

2013-11-07 Thread Tormod Volden
Verified on a T410 with Ubuntu 12.04.3: After installing gnome-settings-
daemon 3.4.2-0ubuntu0.6.5 and xkb-data 2.5-1ubuntu1.5 from precise-
proposed the Mic Mute button actually toggles mic mute. However, the LED
still does not light up.

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

Title:
  Does not handle microphone mute button (KEY_MICMUTE)

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/408903/+subscriptions

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


[Bug 1180986] Re: X Segmentation fault with dual-head config on Matrox G45FMDVP32DB /32MB /DVI /VGA

2013-10-31 Thread Tormod Volden
The posted patch + the 02- Debian patch (from Andy via Cyril) are now
both upstream.

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

Title:
  X Segmentation fault with dual-head config on Matrox G45FMDVP32DB
  /32MB /DVI /VGA

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

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


[Bug 1180986] Re: X Segmentation fault with dual-head config on Matrox G45FMDVP32DB /32MB /DVI /VGA

2013-10-31 Thread Tormod Volden
http://cgit.freedesktop.org/xorg/driver/xf86-video-
mga/commit/?id=cbcee5de1ba02c8a58bae932a0cb98093dccefd9

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

Title:
  X Segmentation fault with dual-head config on Matrox G45FMDVP32DB
  /32MB /DVI /VGA

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

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


[Bug 1242426] Re: ctrl+alt+lock xscreensaver not working ubuntu 13.10

2013-10-20 Thread Tormod Volden
Is this a bug report? What is the expected behaviour and what is the
actual one?

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

Title:
  ctrl+alt+lock xscreensaver not working ubuntu 13.10

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

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


[Bug 1054299] Re: screensaver doesn't hide screen during unsuspend

2013-10-20 Thread Tormod Volden
** Bug watch added: Xfce Bugzilla #10089
   https://bugzilla.xfce.org/show_bug.cgi?id=10089

** Also affects: xfce4-session via
   https://bugzilla.xfce.org/show_bug.cgi?id=10089
   Importance: Unknown
   Status: Unknown

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

Title:
  screensaver doesn't hide screen during unsuspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1054299/+subscriptions

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


[Bug 423930] Re: [SecurityRoadmap] xscreensaver delays locking and hiding screen

2013-10-20 Thread Tormod Volden
*** This bug is a duplicate of bug 1054299 ***
https://bugs.launchpad.net/bugs/1054299

** This bug has been marked a duplicate of bug 1054299
   screensaver doesn't hide screen during unsuspend

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

Title:
  [SecurityRoadmap] xscreensaver delays locking and hiding screen

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

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


[Bug 1229486] Re: Resuming from suspend flashes the desktop, then shows unlocking dialog

2013-10-20 Thread Tormod Volden
** Changed in: xfce4-session (Ubuntu)
   Status: Confirmed = Invalid

** Summary changed:

- Resuming from suspend flashes the desktop, then shows unlocking dialog
+ xscreensaver-command is slow at locking

** Changed in: xfce4-session
   Importance: Unknown = Undecided

** Changed in: xfce4-session
   Status: Unknown = New

** Changed in: xfce4-session
 Remote watch: Xfce Bugzilla #10089 = None

** Changed in: xfce4-session
   Status: New = Invalid

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

Title:
  xscreensaver-command is slow at locking

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1229486/+subscriptions

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


[Bug 1054299] Re: race condition in suspend scripts reveals desktop

2013-10-20 Thread Tormod Volden
** Summary changed:

- screensaver doesn't hide screen during unsuspend
+ race condition in suspend scripts reveals desktop

** Bug watch added: Debian Bug tracker #593303
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593303

** Changed in: acpi-support (Debian)
   Status: New = Unknown

** Changed in: acpi-support (Debian)
 Remote watch: Debian Bug tracker #700696 = Debian Bug tracker #593303

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

Title:
  race condition in suspend scripts reveals desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1054299/+subscriptions

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


[Bug 1054299] Re: screensaver doesn't hide screen during unsuspend

2013-10-19 Thread Tormod Volden
** Package changed: acpi-support (Ubuntu) = xfce4-session (Ubuntu)

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

Title:
  screensaver doesn't hide screen during unsuspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-session/+bug/1054299/+subscriptions

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


[Bug 1229486] Re: Resuming from suspend flashes the desktop, then shows unlocking dialog

2013-10-19 Thread Tormod Volden
** Patch added: patch from Debian
   
https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/1229486/+attachment/3883280/+files/15_upstream_activate_faster_nontty.patch

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

Title:
  Resuming from suspend flashes the desktop, then shows unlocking dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-session/+bug/1229486/+subscriptions

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


  1   2   3   4   5   6   7   8   9   10   >