[Bug 1908818] Re: pure packaging of libnss3

2021-04-06 Thread Christian Ehrhardt 
MP review complete and the build logs LGTM:

lrwxrwxrwx root/root 0 2021-04-06 10:10 
./usr/lib/s390x-linux-gnu/libfreebl3.so -> nss/libfreebl3.so
lrwxrwxrwx root/root 0 2021-04-06 10:10 
./usr/lib/i386-linux-gnu/libfreebl3.so -> nss/libfreebl3.so
lrwxrwxrwx root/root 0 2021-04-06 10:10 
./usr/lib/riscv64-linux-gnu/libfreebl3.so -> nss/libfreebl3.so


Uploading ...

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

Title:
  pure packaging of libnss3

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

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

[Bug 1922423] Re: Can't connect to some OpenVPN providers using openvpn 2.5.0 and nm-openvpn plugin

2021-04-06 Thread Olivier Tilloy
** Changed in: network-manager-openvpn (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  Can't connect to some OpenVPN providers using openvpn 2.5.0 and nm-
  openvpn plugin

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-openvpn/+bug/1922423/+subscriptions

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

Re: [Bug 1917300] Re: updated firefox 86.0 (64 bit)

2021-04-06 Thread J. Cherubini
Hallo Oliveier,

thank you!

The link you send give the message

> Mozilla Support Logo 
>
>   * Get Help 
>   * Volunteer 
>
>   * Sign In/Up 
>
>
>   Page Not Found
>
> Sorry, we couldn't find the page you were looking for. Please, try 
> searching our site using the form below.
>
> Enter your terms in the form below and click*Search*
>
have you another one?

greetings

Joe

Am 29.03.21 um 18:19 schrieb Olivier Tilloy:
> The fact that the problem doesn't happen in safe mode suggests that it's
> hardware-accelerated rendering/compositing that is to blame.
>
> After restarting firefox in normal mode, you might want to try
> instructions at https://support.mozilla.org/en-US/kb/upgrade-graphics-
> drivers-use-hardware-acceleration#w_i-still-have-problems-with-my-
> graphics-card-in-firefox.
>

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

Title:
  updated firefox 86.0 (64 bit)

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

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

[Bug 1922846] [NEW] KVM guest time accounting is broken

2021-04-06 Thread Christian Ehrhardt 
Public bug reported:

The kernel keeps track of the time spent in userspace, kernel space and
for quite a while (since 2.6.24) also guest_time.

This is accessible to userspace
a) globally via /proc/stat [1]
b) per process via /proc//stat

But since ~5.9 this accounting is broken by [3]

#An example of a busy guest reporting all zeros in a common userspace tool
ubuntu@node-horsea:~$ pidstat -p $(pidof qemu-system-x86_64) 5
Linux 5.11.0-13-generic (node-horsea)   04/07/21_x86_64_(12 CPU)
05:13:13  UID   PID%usr %system  %guest   %wait%CPU   CPU  
Command
05:13:1864055  8186   10.20   96.800.000.00  107.00 4  
qemu-system-x86
05:13:2364055  81865.00   51.000.000.00   56.00 5  
qemu-system-x86
05:13:2864055  81863.60  109.800.000.00  113.40 5  
qemu-system-x86
05:13:3364055  81861.80   14.200.000.00   16.00 5  
qemu-system-x86

This is due to these stats staying zero:
$ cat /proc/stat  | grep "cpu "
cpu  11345 154 10342 71506151 549 0 161 0 0 0

The Testcase for this is simple, run any KVM guest content for example even the 
following without any prep is enough
  $ sudo qemu-system-x86_64 -enable-kvm -nographic
That should execute at least a bit of time in the guest for startup code.
Surely, if you want anything for long term debugging you can run a full Guest 
and do any busy loop in the guest.

This was reported upstream to the kernel in [4] and Debian [5] and qemu
[6].

AFAIK there are two suggested [8][9], but no accepted solution yet.

If it would be "only" the global counter (a) this might be prio low-to-
mid, because while still inhibiting monitoring you'd at least still have
the per guest counters (b). But since both are broken one has no easy
means anymore to check if there is massive host-kernel (%sys) or host-
userspace (%usr) overhead over the guest (%guest) anymore. Therefore
(maybe due to my old perf-engineer heart) IMHO this is rather important
to be fixed soon.

Best in the next possible update for Hirsute, but that might be hard.
But at lest for an Hirsute based HWE kernel to Focal I'd consider this a
hard blocker.

[1]: https://www.kernel.org/doc/Documentation/filesystems/proc.txt see "1.8 
Miscellaneous kernel statistics in /proc/stat"
[2]: http://manpages.ubuntu.com/manpages/focal/man5/proc.5.html see "(43) 
guest_time  %lu"
[3]: 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=87fa7f3e98a1310ef1ac1900e7ee7f9610a038bc
[4]: https://bugzilla.kernel.org/show_bug.cgi?id=209831
[5]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=986371
[6]: https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg00732.html
[7]: 
https://lore.kernel.org/kvm/1617011036-11734-1-git-send-email-wanpen...@tencent.com/
[8]: https://lore.kernel.org/kvm/20210206004218.312023-1-sea...@google.com/

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: linux-image-5.11.0-13-generic 5.11.0-13.14
ProcVersionSignature: Ubuntu 5.11.0-13.14-generic 5.11.7
Uname: Linux 5.11.0-13-generic x86_64
AlsaDevices:
 total 0
 crw-rw 1 root audio 116,  1 Apr  6 12:56 seq
 crw-rw 1 root audio 116, 33 Apr  6 12:56 timer
AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
ApportVersion: 2.20.11-0ubuntu61
Architecture: amd64
ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
CasperMD5CheckResult: unknown
Date: Wed Apr  7 05:02:03 2021
IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig'
MachineType: HP ProLiant DL360 Gen9
PciMultimedia:

ProcFB: 0 mgag200drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-13-generic 
root=UUID=c941b173-e6b5-485a-a02b-8d966b8d3c73 ro --- console=ttyS1,115200
RelatedPackageVersions:
 linux-restricted-modules-5.11.0-13-generic N/A
 linux-backports-modules-5.11.0-13-generic  N/A
 linux-firmware 1.196
RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/22/2018
dmi.bios.release: 2.56
dmi.bios.vendor: HP
dmi.bios.version: P89
dmi.board.name: ProLiant DL360 Gen9
dmi.board.vendor: HP
dmi.chassis.type: 23
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 2.60
dmi.modalias: 
dmi:bvnHP:bvrP89:bd01/22/2018:br2.56:efr2.60:svnHP:pnProLiantDL360Gen9:pvr:rvnHP:rnProLiantDL360Gen9:rvr:cvnHP:ct23:cvr:
dmi.product.family: ProLiant
dmi.product.name: ProLiant DL360 Gen9
dmi.product.sku: 780018-S01
dmi.sys.vendor: HP

** Affects: linux
 Importance: Unknown
 Status: Unknown

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

** Affects: linux-hwe (Ubuntu)
 Importance: Critical
 Status: New

** Affects: linux (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: amd64 apport-bug hirsute package-from-proposed uec-images


[Bug 1922845] [NEW] octave-symbolic not compatible with sympy 1.7

2021-04-06 Thread Graham Inggs
Public bug reported:

Please remove octave-symbolic 2.9.0-3 from hirsute.
It was removed from Debian testing on 2021-03-02.

** Affects: octave-symbolic (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: octave-symbolic (Debian)
 Importance: Unknown
 Status: Unknown

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

** Also affects: octave-symbolic (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=980707
   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/1922845

Title:
  octave-symbolic not compatible with sympy 1.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/octave-symbolic/+bug/1922845/+subscriptions

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

[Bug 1874550] Re: "Cancel" button of Advanced Features and some other strings are not translatable

2021-04-06 Thread Yousuf 'Jay' Philips
Its not only the 'Cancel' button but the 'OK' button as well.

** Attachment added: "buttons not translated in spanish"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1874550/+attachment/5485028/+files/Screenshot_2021-04-07_09-12-15.png

** Tags added: hirsute

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

Title:
  "Cancel" button of Advanced Features and some other strings are not
  translatable

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

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

[Bug 1053391] Re: ipmipower fails if stdin returns EOF

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. Since this is a very old bug, I am wondering
if you're still facing the same problems in the recent versions of
freeipmi? In case you do, please reply to this bug or open a new open.

I am marking this as "Incomplete", but once you provide the details
mentioned above, please set the status to "New" again. Thank you!


** Changed in: freeipmi (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  ipmipower fails if stdin returns EOF

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

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

[Bug 1828551] Re: ipmipower ignores timeout settings during RMCP handshake

2021-04-06 Thread Utkarsh Gupta
Hi Pedro,

> I've pulled 1.6.3 from [1] and compiled on a brand new VM (to make
> sure only my commands were using ipmipower) and I've got the same
> result.

Can you please also test against the most recent version, v1.6.6?
Let me know if this is still a problem.

Thanks.

** Changed in: freeipmi (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/1828551

Title:
  ipmipower ignores timeout settings during RMCP handshake

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

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

[Bug 1892367] Re: [UBUNTU 20.04] udev rule change did not get applied

2021-04-06 Thread Frank Heimes
** Changed in: ubuntu-z-systems
   Status: Fix Committed => 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/1892367

Title:
  [UBUNTU 20.04] udev rule change did not get applied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1892367/+subscriptions

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

[Bug 1912347] Re: freeipmi-ipmiseld: missing '/var/cache/ipmiseld/' directory in package freeipmi-ipmiseld

2021-04-06 Thread Utkarsh Gupta
Ugh, please ignore the above comment. It was meant for some other bug,
not this one.

That said, I'm working on merging 1.6.6-3 from Debian to Ubuntu.
Hopefully that should fix this. Thanks and sorry for the noise.

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

Title:
  freeipmi-ipmiseld: missing '/var/cache/ipmiseld/' directory in package
  freeipmi-ipmiseld

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

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

[Bug 1912347] Re: freeipmi-ipmiseld: missing '/var/cache/ipmiseld/' directory in package freeipmi-ipmiseld

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. Since this is a very old bug, I am wondering
if you're still facing the same problems in the recent versions of
freeipmi? In case you do, please reply to this bug or open a new open.

Also, would it make sense to forward this patch upstream? Once done,
it'll be picked from there automatically after the sync/merge from
Debian.

I am marking this as "Incomplete", but once you provide the details
mentioned above, please set the status to "New" again. Thank you!


** Changed in: freeipmi (Ubuntu)
 Assignee: (unassigned) => Utkarsh Gupta (utkarsh)

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

Title:
  freeipmi-ipmiseld: missing '/var/cache/ipmiseld/' directory in package
  freeipmi-ipmiseld

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

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

[Bug 1921547] Re: [SRU] Update libjcat to newer release for focal

2021-04-06 Thread Robie Basak
> To support fixing other bugs in fwupd, libjcat needs to be upgraded to
a newer release in focal

Please could you expand on this? Paraphrasing, this reads to me as
equivalent to saying "we need to SRU this". This may be true, but merely
stating this does not help me review whether an SRU is justified. If
there is a specific bug or bugs needing this, please reference them at
least.

> [Regression Potential]
> Little to none

Please complete this section.

> An upload of libjcat to focal-proposed has been rejected from the
upload queue for the following reason: "This is objectively not a "no
change rebuild in focal" as claimed in the changelog.".

What I mean is: this is deeply misleading. I understand you're adding a
new entry on top of other entries that do explain the changes, but: 1)
The upload didn't use -v to create a proper changes entry that covers
the previous versions; and 2) even if it did, it's still misleading
because a reader might think that you're not changing anything in Focal,
even though you are. I suggest something like "Backport new version to
Focal" instead, at a minimum.

I usually try to avoid nitpicking/bikeshedding changelog texts, but I
think this crosses the bar into being misleading and/or outright
incorrect.

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

Title:
  [SRU] Update libjcat to newer release for focal

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

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

[Bug 1921547] Proposed package upload rejected

2021-04-06 Thread Robie Basak
An upload of libjcat to focal-proposed has been rejected from the upload
queue for the following reason: "This is objectively not a "no change
rebuild in focal" as claimed in the changelog.".

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

Title:
  [SRU] Update libjcat to newer release for focal

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

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

[Bug 1922839] Re: Opening new tab in gnome-terminal launched from nautilus loses most environment variables

2021-04-06 Thread Matthew Ruffell
Might also be related:
https://gitlab.gnome.org/GNOME/gnome-terminal/-/issues/303

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

Title:
  Opening new tab in gnome-terminal launched from nautilus loses most
  environment variables

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

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

[Bug 1922839] Re: Opening new tab in gnome-terminal launched from nautilus loses most environment variables

2021-04-06 Thread Matthew Ruffell
Seems this is a long running issue.

Upstream bug:
https://gitlab.gnome.org/GNOME/gnome-terminal/-/issues/253

** Bug watch added: gitlab.gnome.org/GNOME/gnome-terminal/-/issues #253
   https://gitlab.gnome.org/GNOME/gnome-terminal/-/issues/253

** Bug watch added: gitlab.gnome.org/GNOME/gnome-terminal/-/issues #303
   https://gitlab.gnome.org/GNOME/gnome-terminal/-/issues/303

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

Title:
  Opening new tab in gnome-terminal launched from nautilus loses most
  environment variables

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

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

[Bug 594827] Re: broken bmc-watchdog init script/logrotate config

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. Since this is a very old bug, I am wondering
if you're still facing the same problems in the recent versions of
freeipmi? In case you do, please reply to this bug or open a new open.

I am marking this as "Incomplete", but once you provide the details
mentioned above, please set the status to "New" again. Thank you!


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

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

Title:
  broken bmc-watchdog init script/logrotate config

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

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

[Bug 1341788] Re: requires manually loading i2c-dev module in SSIF driver mode

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. I am afraid that you're missing the version
number that you're using. Could you please provide more information so
that we can try to reproduce?

Furthermore, since this is a very old bug, I am wondering if you're
still facing the same problems in the recent versions of freeipmi? In
case you do, please reply to this bug or open a new open.

I am marking this as "Incomplete", but once you provide the details
mentioned above, please set the status to "New" again. Thank you!

** Changed in: freeipmi (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/1341788

Title:
  requires manually loading i2c-dev module in SSIF driver mode

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

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

[Bug 1920837] Re: apport bugs from official raspi or riscv images are not identified

2021-04-06 Thread Robie Basak
A couple of thoughts:

1)

In addition to future supported platforms, what about weird third party
hacked up things? Are we going to end up with reports from users who
have grabbed a custom image for some esoteric platform from someone who
is hacking something together for that platform by basing their work on
one of our official Raspberry Pi images? To be clear, they're welcome to
do that; we just don't want images mislabelled as Raspberry Pi causing
confusion in that case. Of course people can do that regardless of what
apport does, but labelling them as Raspberry Pi would exacerbate the
issue.

2)

+if 'ImageMediaBuild' in report:
+if report['Architecture'] in ('arm64', 'armhf'):
+add_tag(report, 'raspi-image')

Why not simply add tags arm64-image and armhf-image? Then you'll get the
same effect you want but without a potentially misleading tag. This may
be kicking the can down the road, but maybe that's exactly what we want
to do here?


This should presumably be settled in the development release before the SRU 
proceeds, so I'm deferring SRU review for now.

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

Title:
  apport bugs from official raspi or riscv images are not identified

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

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

[Bug 1920837] Re: apport bugs from official raspi or riscv images are not identified

2021-04-06 Thread Robie Basak
> labelling them as Raspberry Pi would exacerbate the issue

Sorry, I should have acknowledged that Dave's proposal would avoid this
issue.

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

Title:
  apport bugs from official raspi or riscv images are not identified

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

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

[Bug 1364617] Re: ipmipower returns a zero exit status when password invalid

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. Now that is fixed in the recent releases, I
am simply marking this as "Fix Released". Should you still be facing
problems related to this, please open a new bug and we can then work
something out. This is simply to clear and clean up old bugs.

Hope that makes sense. Thank you!


** Changed in: freeipmi (Ubuntu)
   Status: New => 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/1364617

Title:
  ipmipower returns a zero exit status when password invalid

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

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

[Bug 1419004] Re: package freeipmi-ipmidetect 0.8.12-3ubuntu1 failed to install/upgrade: Unterprozess installiertes pre-removal-Skript gab den Fehlerwert 143 zurück

2021-04-06 Thread Utkarsh Gupta
Hello,

Thanks for opening the bug. Now that is fixed in the recent releases, I
am simply marking this as "Fix Released". This is simply to clear and
clean up old bugs.

Hope that makes sense. Thank you!

** Changed in: freeipmi (Ubuntu)
   Status: New => 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/1419004

Title:
  package freeipmi-ipmidetect 0.8.12-3ubuntu1 failed to install/upgrade:
  Unterprozess installiertes pre-removal-Skript gab den Fehlerwert 143
  zurück

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

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

[Bug 1916770] Re: Font mismatch for shutdown menu in arctica-greeter

2021-04-06 Thread Sai Vinoba
** Description changed:

  Issue:
  The font for 'Shutdown' popup-window in the arctica-greeter is 'Cantarell' 
whereas generally it is 'Ubuntu' everywhere else. This is a visual 
inconsistency. Screenshot attached.
  
  Release: Ubuntu MATE daily-build (20210224) but guessing it affects
- 19.10 as well
+ 20.10 as well
  
  SW and version: arctica-greeter, 0.99.1.5-1

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

Title:
  Font mismatch for shutdown menu in arctica-greeter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/arctica-greeter/+bug/1916770/+subscriptions

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

[Bug 1922531] Re: upgrade breaks Lenovo Yoga 730 input i2c-WCOM516B pen + touch + eraser X11 and Wayland

2021-04-06 Thread Po-Hsu Lin
Hello Jordan,
there is a known issue for Wacom stylus with 5.8.0-45
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.8/+bug/1920632

Do you mind to give the kernel in -proposed pocket a try?
https://wiki.ubuntu.com/Testing/EnableProposed

Thanks

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

Title:
  upgrade breaks Lenovo Yoga 730 input i2c-WCOM516B  pen + touch +
  eraser X11 and Wayland

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.8/+bug/1922531/+subscriptions

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

[Bug 1922596] Re: linux ADT test failure with linux/4.4.0-208.240

2021-04-06 Thread Po-Hsu Lin
** Tags added: ubuntu-qrt-kernel-security

** Tags added: sru-20210315

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

Title:
  linux ADT test failure with linux/4.4.0-208.240

To manage notifications about this bug go to:
https://bugs.launchpad.net/qa-regression-testing/+bug/1922596/+subscriptions

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

[Bug 1922839] Re: Opening new tab in gnome-terminal launched from nautilus loses most environment variables

2021-04-06 Thread Matthew Ruffell
Version tested in hirsute is 3.38.1-1ubuntu1.
I checked Groovy, with 3.38.0-1ubuntu1.1, and the problem does not happen.

Both systems using Wayland session.

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

Title:
  Opening new tab in gnome-terminal launched from nautilus loses most
  environment variables

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

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

[Bug 1922839] [NEW] Opening new tab in gnome-terminal launched from nautilus loses most environment variables

2021-04-06 Thread Matthew Ruffell
Public bug reported:

[Impact]

If you launch gnome-terminal by right clicking a directory in Nautilus,
selecting "Open in Terminal", you get a fully functional terminal
window.

If you then press the new tab button, or ctrl-shift-t to open a new
terminal tab, you will find that most environment variables have become
unset, and you see the text:

To run a command as administrator (user "root"), use "sudo ".
See "man sudo_root" for details.

Comparing printenv between:

Normal terminal: https://paste.ubuntu.com/p/2hcCY9hbHQ/
Broken new terminal tab: https://paste.ubuntu.com/p/zYsjRHVJH7/

Most commands won't run in the new terminal tab, due to $HOME and $USER
not being set.

Note, if you launch gnome-terminal from gnome-shell or the dock, and
create a new tab, everything works perfectly. Is something wrong with
the Nautilus option for "Open in Terminal"?

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

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


** Tags: hirsute

** Also affects: gnome-terminal (Ubuntu Hirsute)
   Importance: Undecided
   Status: New

** Tags added: hirsute

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

Title:
  Opening new tab in gnome-terminal launched from nautilus loses most
  environment variables

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

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

[Bug 1808637] Re: freeipmi-ipmidetect postinst fails on default install

2021-04-06 Thread Utkarsh Gupta
Hello,

Now that Hirsute has already incorporated the fix from Debian (via
1.6.3-1.1 sync), I am marking this as "Fix Releases". This is simply to
clear and clean up old bugs.

Hope that makes sense. Thank you!

** Changed in: freeipmi (Ubuntu)
   Status: Triaged => 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/1808637

Title:
  freeipmi-ipmidetect postinst fails on default install

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

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

[Bug 1815897] Re: Please merge 1.6.3-1 into disco

2021-04-06 Thread Utkarsh Gupta
Now that this is super old, I am marking this as "Won't Fix". This is
simply to clear and clean up old bugs.

Hope this makes sense. Thank you!

** Changed in: freeipmi (Ubuntu)
   Status: New => Won't Fix

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

Title:
  Please merge 1.6.3-1 into disco

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

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

[Bug 1922583] Re: xfce4-sensors-plugin: FTBFS: NVCtrlLib.h:42:1: error: unknown type name ‘Bool’; did you mean ‘bool’?

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package nvidia-settings - 460.56-0ubuntu2

---
nvidia-settings (460.56-0ubuntu2) hirsute; urgency=medium

  * debian/patches/include-Xlib.patch: (LP: #1922583)
- NVCtrlLib.h uses macros from X11/Xlib.h. Include it.

 -- Thomas Ward   Mon, 05 Apr 2021 15:40:14 -0400

** Changed in: nvidia-settings (Ubuntu)
   Status: Fix Committed => 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/1922583

Title:
  xfce4-sensors-plugin: FTBFS: NVCtrlLib.h:42:1: error: unknown type
  name ‘Bool’; did you mean ‘bool’?

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

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

[Bug 1877085] Re: Log in with a fingerprint

2021-04-06 Thread Launchpad Bug Tracker
[Expired for ubuntu-docs (Ubuntu) because there has been no activity for
60 days.]

** Changed in: ubuntu-docs (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Log in with a fingerprint

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

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

[Bug 1912952] Re: simple-scan SANE_STATUS_NO_MEM

2021-04-06 Thread Launchpad Bug Tracker
[Expired for simple-scan (Ubuntu) because there has been no activity for
60 days.]

** Changed in: simple-scan (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  simple-scan SANE_STATUS_NO_MEM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1912952/+subscriptions

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

[Bug 1914586] Re: superusuario en root. manejo de sudo

2021-04-06 Thread Launchpad Bug Tracker
[Expired for Ubuntu because there has been no activity for 60 days.]

** Changed in: ubuntu
   Status: Incomplete => Expired

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

Title:
  superusuario en root. manejo de sudo

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

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

[Bug 1914731] Re: [Errno 30] Read-only file system 'usr/bin' -> 'target/bin'

2021-04-06 Thread Launchpad Bug Tracker
[Expired for ubiquity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: ubiquity (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [Errno 30] Read-only file system 'usr/bin' -> 'target/bin'

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

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

[Bug 1800354] Re: package golang-1.10-go 1.10-0ubuntu1~ppa2~ubuntu16.04.1 failed to install/upgrade: trying to overwrite '/usr/lib/go-1.10/src', which is also in package golang-1.10-race-detector-runt

2021-04-06 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: golang-1.10 (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/1800354

Title:
  package golang-1.10-go 1.10-0ubuntu1~ppa2~ubuntu16.04.1 failed to
  install/upgrade: trying to overwrite '/usr/lib/go-1.10/src', which is
  also in package golang-1.10-race-detector-runtime
  0.0+svn285455-0ubuntu1~16.04.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang-1.10/+bug/1800354/+subscriptions

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

[Bug 1913186] Re: Backport the adaptive engine from v2.4.1 upstream

2021-04-06 Thread Chris Halse Rogers
This is a *lot* of changes for Focal. This looks like hardware-
enablement, which would be appropriate to SRU, but we normally
accomplish that via wholesale backport.

I have two questions:
* What is the impact of the lack of thermald adaptive engine on 20.04?
* If we were to simply backport hirsute's thermald 2.4.3 how many and what sort 
of additional changes would we be pulling in?

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

Title:
  Backport the adaptive engine from v2.4.1 upstream

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

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

[Bug 1922596] Re: linux ADT test failure with linux/4.4.0-208.240

2021-04-06 Thread Steve Beattie
This was merged into q-r-t in https://git.launchpad.net/qa-regression-
testing/commit/?id=c1af010b49291e5526ccac85cd1fd334fa3bd0c5 .

Until this actually makes into a kernel in updates/security, the test
will fail for those kernels. Worth keeping in mind if we have to do any
respins.

Thanks!

** Changed in: qa-regression-testing
   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/1922596

Title:
  linux ADT test failure with linux/4.4.0-208.240

To manage notifications about this bug go to:
https://bugs.launchpad.net/qa-regression-testing/+bug/1922596/+subscriptions

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

[Bug 1922317] Re: [HP N5Z06UA#ABA] Bluetooth switch is grayed out and I cannot turn it off or on

2021-04-06 Thread You-Sheng Yang
https://support.hp.com/lv-en/document/c04773882
https://media.flixcar.com/f360cdn/HP-1468256368-c04802111.pdf
Your device doesn't have Bluetooth.

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

** Tags added: hwe-bluetooth

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

Title:
  [HP N5Z06UA#ABA] Bluetooth switch is grayed out and I cannot turn it
  off or on

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

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

[Bug 1922766] Re: UP and DOWN keys behave erratically

2021-04-06 Thread Daniel van Vugt
Thanks for the bug report. I can't seem to reproduce the problem in
20.04 here...

Please open two Terminal windows and in one run 'top' and in the other
run 'journalctl -f'. Then reproduce the bug again. While the bug is
happening, do you see high CPU usage in 'top' or any messages flooding
the log in the 'journalctl -f' window?

Please also try disabling extensions using the 'Extensions' app in case
any of those are the problem.


** Package changed: xorg (Ubuntu) => gnome-shell (Ubuntu)

** Changed in: gnome-shell (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/1922766

Title:
  UP and DOWN keys behave erratically

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

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

[Bug 1917939] Re: Windows maximise underneath dock after monitor sleep

2021-04-06 Thread Daniel van Vugt
Bug 1922795 seems to suggest this regression has crept into focal-
updates now.

** Tags added: focal

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

Title:
  Windows maximise underneath dock after monitor sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1917939/+subscriptions

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

[Bug 1922795] Re: Gnome panel got stuck

2021-04-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1917939 ***
https://bugs.launchpad.net/bugs/1917939

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1917939, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.


** Tags added: focal

** This bug has been marked a duplicate of bug 1917939
   Windows maximise underneath dock after monitor sleep

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

Title:
  Gnome panel got stuck

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

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

[Bug 1922723] Re: Weird CTRL+SHIFT+KEY behaviour in Xorg sessions

2021-04-06 Thread Daniel van Vugt
I can't seem to reproduce the problem using the steps provided above.
Can you please try with a USB keyboard? This might be hardware-
specific...

** Summary changed:

- Weird CTRL+SHIFT+KEY behaviour
+ Weird CTRL+SHIFT+KEY behaviour in Xorg sessions

** Package changed: xorg (Ubuntu) => xorg-server (Ubuntu)

** Changed in: xorg-server (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/1922723

Title:
  Weird CTRL+SHIFT+KEY behaviour in Xorg sessions

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

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

[Bug 1922822] Re: Please remove qtpowerd from Ubuntu

2021-04-06 Thread Logan Rosen
** Changed in: qtpowerd (Ubuntu)
   Status: Opinion => New

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

Title:
  Please remove qtpowerd from Ubuntu

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

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

[Bug 1922821] Re: Please remove qtubuntu-cameraplugin-fake from Ubuntu

2021-04-06 Thread Logan Rosen
** Changed in: qtubuntu-cameraplugin-fake (Ubuntu)
   Status: Opinion => New

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

Title:
  Please remove qtubuntu-cameraplugin-fake from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtubuntu-cameraplugin-fake/+bug/1922821/+subscriptions

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

[Bug 1922823] Re: Please remove poppler-qml-plugin from Ubuntu

2021-04-06 Thread Logan Rosen
Drew, I'm not sure why you changed all of the removal tickets I just
opened to the Opinion status, but that'll remove them from the archive
team's queue. Changing back to New accordingly.

** Changed in: poppler-qml-plugin (Ubuntu)
   Status: Opinion => New

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

Title:
  Please remove poppler-qml-plugin from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/poppler-qml-plugin/+bug/1922823/+subscriptions

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

[Bug 1914953] Re: grub2 incompatibility between at_keyboard and gfxterm modules lead to impossible to type passphrase or access ubuntu grub2 menu on a fully encrypted installation

2021-04-06 Thread John Doe
./autogen.sh
./configure --with-platform=efi --target=x86_64 --disable-werror
make

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

Title:
  grub2 incompatibility between at_keyboard and gfxterm modules lead to
  impossible to type passphrase or access ubuntu grub2 menu on a fully
  encrypted installation

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

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

[Bug 1838151] Re: Poor quality audio with modern Bluetooth headsets in HSP/HFP. Missing wide band speech support (Bluetooth A2DP codecs).

2021-04-06 Thread Daniel van Vugt
Maybe it was this we were waiting for:

https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/507

Regardless, PulseAudio version 15 (not yet released) is the goal.

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

Title:
  Poor quality audio with modern Bluetooth headsets in HSP/HFP.  Missing
  wide band speech support (Bluetooth A2DP codecs).

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

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

[Bug 1922772] Re: App search causes Ubuntu Dock to hide, desktop-icons-ng to restart and the new window to lose focus

2021-04-06 Thread Daniel van Vugt
It's a complicated series of events but in the end it's really just
Ubuntu Dock that's the problem...

1. Open the overview using Super.

2. Start typing in "Type to search". While you're typing the Ubuntu Dock
disappears.

3. Because the Ubuntu Dock disappeared, the workspace shape has changed
so the desktop icons disappear but you don't notice because you're still
in the overview.

4. Hit Enter to complete the search and launch the app.

5. The Ubuntu Dock reappears.

6. desktop-icons-ng restarts, which takes the focus away (because it too
is a window now) from the newly launched app.

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

Title:
  App search causes Ubuntu Dock to hide, desktop-icons-ng to restart and
  the new window to lose focus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1922772/+subscriptions

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

[Bug 1922772] Re: App search causes Ubuntu Dock to hide, desktop-icons-ng to restart and the new window to lose focus

2021-04-06 Thread Daniel van Vugt
Seems this is caused by the Ubuntu Dock extension.

** Summary changed:

- Application window looses focus when launched from search but not when 
launched from app grid
+ App search causes Ubuntu Dock to hide, desktop-icons-ng to restart and the 
new window to lose focus

** Changed in: gnome-shell (Ubuntu)
   Importance: Undecided => High

** Package changed: gnome-shell (Ubuntu) => gnome-shell-extension-
ubuntu-dock (Ubuntu)

** Tags added: regression-release rls-hh-incoming

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

Title:
  App search causes Ubuntu Dock to hide, desktop-icons-ng to restart and
  the new window to lose focus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1922772/+subscriptions

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

[Bug 1837035] Re: memcg_stat_rss from controllers in ubuntu_ltp failed

2021-04-06 Thread Kelsey Skunberg
** Tags added: sru-20210315

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

Title:
  memcg_stat_rss from controllers in ubuntu_ltp failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1837035/+subscriptions

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

[Bug 1922157] Re: Depend on gnome-software to prevent upgrade to snap-store-desktop

2021-04-06 Thread Drew Howden
** Changed in: xubuntu-meta (Ubuntu)
   Status: New => Opinion

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

Title:
  Depend on gnome-software to prevent upgrade to snap-store-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xubuntu-meta/+bug/1922157/+subscriptions

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

[Bug 1922821] Re: Please remove qtubuntu-cameraplugin-fake from Ubuntu

2021-04-06 Thread Drew Howden
** Changed in: qtubuntu-cameraplugin-fake (Ubuntu)
   Status: New => Opinion

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

Title:
  Please remove qtubuntu-cameraplugin-fake from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtubuntu-cameraplugin-fake/+bug/1922821/+subscriptions

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

[Bug 1922792] Re: Bluez should notify users when they need to reboot to apply changes

2021-04-06 Thread Daniel van Vugt
** Tags added: hirsute raspi

** Changed in: bluez (Ubuntu)
   Importance: Undecided => Low

** Changed in: bluez (Ubuntu)
   Status: New => Triaged

** Summary changed:

- Bluez should notify users when they need to reboot to apply changes
+ Bluez should notify users when they need to reboot to apply changes on arm64

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

Title:
  Bluez should notify users when they need to reboot to apply changes on
  arm64

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

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

[Bug 1922822] Re: Please remove qtpowerd from Ubuntu

2021-04-06 Thread Drew Howden
** Changed in: qtpowerd (Ubuntu)
   Status: New => Opinion

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

Title:
  Please remove qtpowerd from Ubuntu

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

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

[Bug 1922825] Re: systen identify as crashed intallation

2021-04-06 Thread Chris Guiver
Thank you for taking the time to report this issue and helping to make
Ubuntu better.

I see in your logs the following :-

Apr  7 02:18:36 ubuntu kernel: [ 9266.525114] EXT4-fs error (device sdb5): 
ext4_validate_block_bitmap:384: comm plugininstall.p: bg 1489: bad block bitmap 
checksum
Apr  7 02:18:36 ubuntu kernel: [ 9266.546373] Aborting journal on device sdb5-8.
Apr  7 02:18:36 ubuntu kernel: [ 9266.558380] EXT4-fs (sdb5): Remounting 
filesystem read-only
Apr  7 02:18:36 ubuntu kernel: [ 9266.558396] EXT4-fs error (device sdb5) in 
ext4_free_blocks:4974: Filesystem failed CRC

I've marked this bug as incomplete (due hardware issues), if you believe
I'm in error please leave a comment as to why, and you can return the
status to "New".

I suggest you validate the health of your hardware (esp. disk by
checking it's SMART status using `smartctl`, `gnome-disks` or whichever
tool you prefer), and possibly the integrity of your partition table
(https://help.ubuntu.com/community/Smartmontools). If you're unfamiliar
with these, I suggest seeking support, options available can be seen at
https://discourse.ubuntu.com/t/finding-help/709


** Changed in: ubiquity (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/1922825

Title:
  systen identify as crashed intallation

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

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

[Bug 1922823] Re: Please remove poppler-qml-plugin from Ubuntu

2021-04-06 Thread Drew Howden
** Changed in: poppler-qml-plugin (Ubuntu)
   Status: New => Opinion

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

Title:
  Please remove poppler-qml-plugin from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/poppler-qml-plugin/+bug/1922823/+subscriptions

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

[Bug 1892213] Re: psock_snd.sh in net from ubuntu_kernel_selftests ADT failure with focal/linux

2021-04-06 Thread Kelsey Skunberg
** Tags added: sru-20210315

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

Title:
  psock_snd.sh in net from ubuntu_kernel_selftests ADT failure with
  focal/linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1892213/+subscriptions

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

[Bug 1922437] Re: login into desktop is stuttering on wayland

2021-04-06 Thread Daniel van Vugt
The Tweaks app doesn't work with extensions anymore. Please disable the
extensions using the app called 'Extensions', then log out and log in
again and tell us if the problem is fixed. If it's not fixed by that
then please attach a screenshot of the resulting desktop by pressing
PrtScn.

** Changed in: gnome-shell (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/1922437

Title:
  login into desktop is stuttering on wayland

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

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

[Bug 1922548] Re: Error accessing Home of another user [Oops! Something went wrong. Unhandled error message: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Unix process subject does not have uid

2021-04-06 Thread Daniel van Vugt
** Also affects: policykit via
   https://gitlab.freedesktop.org/polkit/polkit/-/issues/136
   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/1922548

Title:
  Error accessing Home of another user [Oops! Something went wrong.
  Unhandled error message:
  GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Unix process
  subject does not have uid set]

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

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

[Bug 1922621] Re: PulseAudio Assertion 'section' in pa_alsa_element_get() when laptop in docking station

2021-04-06 Thread Daniel van Vugt
Thanks. That shows the stack trace is:

  pa_alsa_element_get → element_parse_volume_limit → pa_config_parse →
pa_config_parse → pa_alsa_path_new

Next please report the issue to the developers at:

  https://gitlab.freedesktop.org/groups/pulseaudio/-/issues

and then tell us the new issue ID.


** Description changed:

+ https://errors.ubuntu.com/problem/5bc83665288ea40e5ad4564ebe20d1ab81d04fd3
+ 
+ ---
+ 
  PulseAudio 1:13.99.1-1ubuntu3.10, Ubuntu 20.04.2
  Laptop: Lenovo ThinkPad X1 Carbon 7th
  
  Soundcards:
-  0 [sofhdadsp  ]: sof-hda-dsp - sof-hda-dsp
-   LENOVO-20QES01L00-ThinkPadX1Carbon7th
-  1 [Audio  ]: USB-Audio - ThinkPad Dock USB Audio
-   Generic ThinkPad Dock USB Audio at 
usb-:00:14.0-5.4.4, high speed
+  0 [sofhdadsp  ]: sof-hda-dsp - sof-hda-dsp
+   LENOVO-20QES01L00-ThinkPadX1Carbon7th
+  1 [Audio  ]: USB-Audio - ThinkPad Dock USB Audio
+   Generic ThinkPad Dock USB Audio at 
usb-:00:14.0-5.4.4, high speed
  
  When the laptop is not docked, everything works fine. Sound is played
  using the laptop internal speakers. When the laptop is in the docking
  station, the sound in KDE is not working (no sound devices are shown).
  Pulseaudio is crashing with an Assertion.
  
  D: [pulseaudio] alsa-mixer.c: Profile output:analog-stereo supported.
  D: [pulseaudio] conf-parser.c: Parsing configuration file 
'/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf'
  D: [pulseaudio] conf-parser.c: Parsing configuration file 
'/usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common'
  E: [pulseaudio] alsa-mixer.c: Assertion 'section' failed at 
modules/alsa/alsa-mixer.c:1954, function pa_alsa_element_get(). Aborting.
  
- 
- Prime suspect for the change is an "Embedded Controller Update" by fwupdmgr, 
which was installed a while ago, and applied during last reboot. This cannot be 
downgraded (Lenovo does not support that).
- 
+ Prime suspect for the change is an "Embedded Controller Update" by
+ fwupdmgr, which was installed a while ago, and applied during last
+ reboot. This cannot be downgraded (Lenovo does not support that).
  
  More details from "pulseaudio -", docked:
  
  I: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; 
argument: "").
  D: [pulseaudio] database-tdb.c: Opened TDB database 
'/home/ads/.pulse/8815a710d4ce4667b8c98403eec58bed-card-database.tdb'
  I: [pulseaudio] module-card-restore.c: Successfully opened database file 
'/home/ads/.pulse/8815a710d4ce4667b8c98403eec58bed-card-database'.
  I: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: 
"").
  I: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; 
argument: "").
  I: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: 
#4; argument: "").
  D: [pulseaudio] module.c: Checking for existence of 
'/usr/lib/pulse-13.99.1/modules/module-switch-on-connect.so': success
  I: [pulseaudio] module.c: Loaded "module-switch-on-connect" (index: #5; 
argument: "").
  D: [pulseaudio] module.c: Checking for existence of 
'/usr/lib/pulse-13.99.1/modules/module-udev-detect.so': success
  D: [pulseaudio] module-udev-detect.c: /dev/snd/controlC1 is accessible: yes
  D: [pulseaudio] module-udev-detect.c: 
/devices/pci:00/:00:14.0/usb1/1-5/1-5.4/1-5.4.4/1-5.4.4:1.0/sound/card1 
is busy: no
  D: [pulseaudio] module-udev-detect.c: Loading module-alsa-card with arguments 
'device_id="1" name="usb-Generic_ThinkPad_Dock_USB_Audio-00" 
card_name="alsa_card.usb-Generic_ThinkPad_Dock_USB_Audio-00" namereg_fail=false 
tsched=yes fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes 
avoid_resampling=no card_properties="module-udev-detect.discovered=1"'
  D: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus 
0dd0d23e5ac302eec692d2b2606b9c78 as :1.81
  D: [pulseaudio] reserve-wrap.c: Successfully acquired reservation lock on 
device 'Audio1'
  I: [pulseaudio] (alsa-lib)main.c: error: failed to import hw:1 use case 
configuration -2
  I: [pulseaudio] (alsa-lib)main.c: error: failed to import ThinkPad Dock USB 
Audio use case configuration -2
  I: [pulseaudio] alsa-ucm.c: UCM not available for card ThinkPad Dock USB Audio
  D: [pulseaudio] conf-parser.c: Parsing configuration file 
'/usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf'
  D: [pulseaudio] alsa-mixer.c: Looking at profile input:analog-stereo
  D: [pulseaudio] alsa-mixer.c: Checking for recording on Analog Stereo 
(analog-stereo)
  D: [pulseaudio] alsa-util.c: Trying front:1 with SND_PCM_NO_AUTO_FORMAT ...
- 
  
  Not docked:
  
  I: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; 
argument: "").
  D: [pulseaudio] database-tdb.c: Opened TDB database 
'/home/ads/.pulse/8815a710d4ce4667b8c98403eec58bed-card-database.tdb'
  I: [pulseaudio] module-card-restore.c: Successfully opened database file 

[Bug 1922825] [NEW] systen identify as crashed intallation

2021-04-06 Thread Jorge E del Valle
Public bug reported:

during installation it reports a crash

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubiquity 20.04.15.2
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.4
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.445.1
CurrentDesktop: ubuntu:GNOME
Date: Tue Apr  6 22:24:28 2021
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed initrd=/casper/initrd quiet 
splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal ubiquity-20.04.15.2 ubuntu

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

Title:
  systen identify as crashed intallation

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

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

[Bug 1922826] Re: /usr/bin/pulseaudio:6:pa_alsa_element_get:element_parse_volume_limit:pa_config_parse:pa_config_parse:pa_alsa_path_new

2021-04-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1922621 ***
https://bugs.launchpad.net/bugs/1922621

** This bug has been marked a duplicate of bug 1922621
   PulseAudio Assertion 'section' in pa_alsa_element_get() when laptop in 
docking station

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

Title:
  
/usr/bin/pulseaudio:6:pa_alsa_element_get:element_parse_volume_limit:pa_config_parse:pa_config_parse:pa_alsa_path_new

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

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

[Bug 1922826] [NEW] /usr/bin/pulseaudio:6:pa_alsa_element_get:element_parse_volume_limit:pa_config_parse:pa_config_parse:pa_alsa_path_new

2021-04-06 Thread errors.ubuntu.com bug bridge
*** This bug is a duplicate of bug 1922621 ***
https://bugs.launchpad.net/bugs/1922621

Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem regarding 
pulseaudio.  This problem was most recently seen with package version 
1:13.99.1-1ubuntu3.10, the problem page at 
https://errors.ubuntu.com/problem/5bc83665288ea40e5ad4564ebe20d1ab81d04fd3 
contains more details, including versions of packages affected, stacktrace or 
traceback, and individual crash reports.
If you do not have access to the Ubuntu Error Tracker and are a software 
developer, you can request it at http://forms.canonical.com/reports/.

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


** Tags: focal

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

Title:
  
/usr/bin/pulseaudio:6:pa_alsa_element_get:element_parse_volume_limit:pa_config_parse:pa_config_parse:pa_alsa_path_new

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

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

[Bug 1615381] Re: apt-get autoremove may remove current kernel

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  apt-get autoremove may remove current kernel

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

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

[Bug 1615381] Re: apt-get autoremove may remove current kernel

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1615381

Title:
  apt-get autoremove may remove current kernel

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

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

[Bug 1693900] Re: apt-get update should return exit code != 0 on error

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  apt-get update should return exit code != 0 on error

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

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

[Bug 1693900] Re: apt-get update should return exit code != 0 on error

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1693900

Title:
  apt-get update should return exit code != 0 on error

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

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

[Bug 1828026] Re: gicv2-mmio-up in ubuntu_kvm_unit_tests failed on X-hwe ARM64

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  gicv2-mmio-up in ubuntu_kvm_unit_tests failed on X-hwe ARM64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1828026/+subscriptions

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

[Bug 1806076] Re: unattended-upgrade --help raises UnicodeEncodeError when stdout encoding is ascii

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => 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/1806076

Title:
  unattended-upgrade --help raises UnicodeEncodeError when stdout
  encoding is ascii

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

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

[Bug 1806076] Update Released

2021-04-06 Thread Chris Halse Rogers
The verification of the Stable Release Update for apt has completed
successfully and the package is now being released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  unattended-upgrade --help raises UnicodeEncodeError when stdout
  encoding is ascii

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

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

[Bug 1829984] Re: memcg_usage_in_bytes from controllers test suite in LTP failed

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  memcg_usage_in_bytes from controllers test suite in LTP failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1829984/+subscriptions

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

[Bug 1829995] Re: getaddrinfo_01 from ipv6_lib test suite in LTP failed

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  getaddrinfo_01 from ipv6_lib test suite in LTP failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1829995/+subscriptions

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

[Bug 1834006] Re: cpuset_hotplug from controllers in ubuntu_ltp failed

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  cpuset_hotplug from controllers in ubuntu_ltp failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1834006/+subscriptions

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

[Bug 1836167] Re: cpuhotplug03 in cpuhotplug from ubuntu_ltp failed on some testing nodes

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  cpuhotplug03 in cpuhotplug from ubuntu_ltp failed on some testing
  nodes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1836167/+subscriptions

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

[Bug 1837543] Re: crypto_user02 in crypto from ubuntu_ltp failed

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  crypto_user02 in crypto from ubuntu_ltp failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1837543/+subscriptions

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

[Bug 1844493] Re: ubuntu_sysdig_smoke_test failed on 5.3 / 5.4 / 5.6 /5.8 / 5.10 kernels

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  ubuntu_sysdig_smoke_test failed on 5.3 / 5.4 / 5.6 /5.8 / 5.10 kernels

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1844493/+subscriptions

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

[Bug 1847982] Re: memcg_subgroup_charge from controllers in ubuntu_ltp failed on D/E

2021-04-06 Thread Kelsey Skunberg
** Tags added: 5.8 hwe

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

Title:
  memcg_subgroup_charge from controllers in ubuntu_ltp failed on D/E

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1847982/+subscriptions

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

[Bug 1853610] Re: mkfs01_ext3_sh / mkfs01_ext4_sh / nm01_sh from commands test in ubuntu_ltp fails

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  mkfs01_ext3_sh / mkfs01_ext4_sh / nm01_sh from commands test in
  ubuntu_ltp fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1853610/+subscriptions

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

[Bug 1871268] Re: Installation fails due to useless immediate configuration error when "Install Third-Party Drivers" is selected

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => 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/1871268

Title:
  Installation fails due to useless immediate configuration error when
  "Install Third-Party Drivers" is selected

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

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

[Bug 1877987] Re: apt search coredumping

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1877987

Title:
  apt search coredumping

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

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

[Bug 1877987] Update Released

2021-04-06 Thread Chris Halse Rogers
The verification of the Stable Release Update for apt has completed
successfully and the package is now being released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  apt search coredumping

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

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

[Bug 1878389] Re: tpci from kernel_misc in ubuntu_ltp failed with Test-case '13'

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  tpci from kernel_misc in ubuntu_ltp failed with Test-case '13'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1878389/+subscriptions

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

[Bug 1878490] Re: Big delay between pressing the applications grid icon in dock and the start of the spring animation

2021-04-06 Thread Daniel van Vugt
Closing due to no response for almost a year.

** Changed in: gnome-shell (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  Big delay between pressing the applications grid icon in dock and the
  start of the spring animation

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1878490/+subscriptions

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

[Bug 1880645] Re: icmp_redirect.sh in net from ubuntu_kernel_selftests failed on F-OEM-5.6 / G / H

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  icmp_redirect.sh in net from ubuntu_kernel_selftests failed on
  F-OEM-5.6 / G / H

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1880645/+subscriptions

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

[Bug 1892860] Re: af_alg07 in crypto / cve-2019-8912 in cve from ubuntu_ltp failed on B-arm64

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  af_alg07 in crypto / cve-2019-8912 in cve from ubuntu_ltp failed on
  B-arm64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1892860/+subscriptions

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

[Bug 1897764] Re: mem-on-off-test.sh from memory-hotplug in ubuntu_kernel_selftests failed on X-gcp-4.15 / F-5.4 zVM

2021-04-06 Thread Kelsey Skunberg
** Tags added: hwe

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

Title:
  mem-on-off-test.sh from memory-hotplug in ubuntu_kernel_selftests
  failed on X-gcp-4.15 / F-5.4 zVM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1897764/+subscriptions

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

[Bug 1907850] Re: Cache not generated for all translations

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  Cache not generated for all translations

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

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

[Bug 1907850] Re: Cache not generated for all translations

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1907850

Title:
  Cache not generated for all translations

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

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

[Bug 1916050] Re: Invalid base64 for high-bit characters

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  Invalid base64 for high-bit characters

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

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

[Bug 1916050] Re: Invalid base64 for high-bit characters

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1916050

Title:
  Invalid base64 for high-bit characters

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

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

[Bug 1919122] Re: net test from ubuntu_kernel_selftests / ubuntu_bpf failed to build on F-OEM-5.10

2021-04-06 Thread Kelsey Skunberg
** Tags added: 5.8 hwe

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

Title:
  net test from ubuntu_kernel_selftests / ubuntu_bpf failed to build on
  F-OEM-5.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1919122/+subscriptions

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

[Bug 1918907] Re: Default Acquire::AllowReleaseInfoChange::Suite to "true"

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  Default Acquire::AllowReleaseInfoChange::Suite to "true"

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

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

[Bug 1918907] Update Released

2021-04-06 Thread Chris Halse Rogers
The verification of the Stable Release Update for apt has completed
successfully and the package is now being released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  Default Acquire::AllowReleaseInfoChange::Suite to "true"

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

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

[Bug 1918907] Re: Default Acquire::AllowReleaseInfoChange::Suite to "true"

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1918907

Title:
  Default Acquire::AllowReleaseInfoChange::Suite to "true"

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

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

[Bug 1922115] Re: AMD Graphics delay when click "Show All Application"

2021-04-06 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1919972 ***
https://bugs.launchpad.net/bugs/1919972

The attached video doesn't seem to show a delay unless you count the
icons appearing prematurely before the animation. If that's the issue
the this is a duplicate of bug 1919972, which is fixed in 21.04 only at
the moment.

** Tags added: performance

** This bug has been marked a duplicate of bug 1919972
   Icon grid flashes briefly before the spring animation

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

Title:
  AMD Graphics delay when click "Show All Application"

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

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

[Bug 1916725] Re: Protected/Important packages are not deconfigured, require Force-LoopBreak

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  Protected/Important packages are not deconfigured, require Force-
  LoopBreak

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

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

[Bug 1916725] Re: Protected/Important packages are not deconfigured, require Force-LoopBreak

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1916725

Title:
  Protected/Important packages are not deconfigured, require Force-
  LoopBreak

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

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

[Bug 1918920] Re: Harden test for no new acquires after transaction abort

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 1.6.13

---
apt (1.6.13) bionic; urgency=medium

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

  [ Julian Andres Klode ]
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field
  * Do not require force-loopbreak on Important packages
(Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Improve immediate configuration handling (LP: #1871268)
- Do not immediately configure m-a: same packages in lockstep
- Ignore failures from immediate configuration. This does not change the
  actual installation ordering - we never passed the return code to the
  caller and installation went underway anyway if it could be ordered at a
  later stage, this just removes spurious after-the-fact errors.
  (Closes: #973305, #188161, #211075, #649588)
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ Balint Reczey ]
  * Set LC_ALL=C.UTF-8 for unattended-upgrades environment when parsing its 
--help
(LP: #1806076)

 -- Julian Andres Klode   Fri, 12 Mar 2021 14:09:15
+0100

** Changed in: apt (Ubuntu Bionic)
   Status: Fix Committed => Fix Released

** Changed in: apt (Ubuntu Focal)
   Status: Fix Committed => 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/1918920

Title:
  Harden test for no new acquires after transaction abort

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

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

[Bug 1918920] Re: Harden test for no new acquires after transaction abort

2021-04-06 Thread Launchpad Bug Tracker
This bug was fixed in the package apt - 2.0.5

---
apt (2.0.5) focal; urgency=medium

  [ Julian Andres Klode ]
  * private-search: Only use V.TranslatedDescription() if good (LP: #1877987)
  * Implement update --error-on=any (Closes: #594813) (LP: #1693900)
  * Include all translations when building the cache (LP: #1907850)
  * Add basic support for the Protected field, and do not require 
force-loopbreak
on Protected/Important packages (Closes: #983014) (LP: #1916725)
  * Protect currently running kernel at run-time (LP: #1615381)
  * Make ADDARG{,C}() macros expand to single statements
  * Default Acquire::AllowReleaseInfoChange::Suite to "true" (Closes: #931566)
(LP: #1918907)

  [ David Kalnischkies ]
  * Fix incorrect base64 encoding due to int promotion (LP: #1916050)
  * Harden test for no new acquires after transaction abort (Closes: #984966)
(LP: #1918920)

 -- Julian Andres Klode   Fri, 12 Mar 2021 12:47:30
+0100

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

Title:
  Harden test for no new acquires after transaction abort

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

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

[Bug 1919972] Re: Icon grid flashes briefly before the spring animation

2021-04-06 Thread Daniel van Vugt
** Tags added: groovy

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

Title:
  Icon grid flashes briefly before the spring animation

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1919972/+subscriptions

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

[Bug 1922823] [NEW] Please remove poppler-qml-plugin from Ubuntu

2021-04-06 Thread Logan Rosen
Public bug reported:

Unmaintained Ubuntu-only package that is part of the obsolete Ubuntu
Touch stack. FTBFS on rebuild and has no rdeps.

** Affects: poppler-qml-plugin (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/1922823

Title:
  Please remove poppler-qml-plugin from Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/poppler-qml-plugin/+bug/1922823/+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   >