[Desktop-packages] [Bug 1915897] Re: libsecret not working with user account space for ubuntu2004

2021-02-16 Thread Sebastien Bacher
Thank you for your bug report, it's likely an upstream issue though so
it would be best if you could also report it to the upstream code
writers on https://gitlab.gnome.org/GNOME/libsecret/-/issues

** Changed in: gnome-keyring (Ubuntu)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-keyring in Ubuntu.
https://bugs.launchpad.net/bugs/1915897

Title:
  libsecret not working with user account space for ubuntu2004

Status in gnome-keyring package in Ubuntu:
  New

Bug description:
  I am using libsecret library and facing problem with ubuntu2004 gnome-keyring
  I have written below cpp code

  #include
  #include
  #include
  #defineSCHEMAgetSchema()
  #defineCREDENTIALS_TOKEN_LABEL"ubuntu2004test"

  
  constSecretSchema*getSchema(void)
  {

  staticconst SecretSchema schema = {
  "org.example.credentials",
  SECRET_SCHEMA_NONE,
  {
  {"username", SECRET_SCHEMA_ATTRIBUTE_STRING},
  {NULL, (SecretSchemaAttributeType)0}}};

  return 
  }

  voidputCredentials(std::stringusername,std::stringpassword)
  {
  GError *error = NULL;
  secret_password_store_sync(SCHEMA, SECRET_COLLECTION_DEFAULT, 
CREDENTIALS_TOKEN_LABEL, password.c_str(), NULL,
  , "username",username.c_str(),NULL);
  }
  voiddeleteAllCredentials(){
  std::cout<<"\nDeletting all credential\n";
  GError *error = NULL;
  SecretService *sec = secret_service_get_sync(SECRET_SERVICE_LOAD_COLLECTIONS, 
NULL, );
  _SecretCollection *collection = NULL;

  collection = secret_collection_for_alias_sync(sec, SECRET_COLLECTION_DEFAULT,
  SECRET_COLLECTION_LOAD_ITEMS, NULL, );
  GList *items = secret_collection_get_items(collection);
  for (unsignedinti = 0; i < g_list_length(items); i++)
  {
  SecretItem *item = (SecretItem *)g_list_nth_data(items, i);
  std::stringlabel(secret_item_get_label(item));
  if (label==CREDENTIALS_TOKEN_LABEL)
  {
  secret_item_delete_sync(item, NULL, );
  if (error != NULL)
  {
  std::cout<<"Error: Cannot delete item:"/dev/null

  fi


  
  I get below results "sh ./
  Ubuntu 1804: users added and removed in user account ,with and without sudo
  Ubuntu 2004: users added and removed in user account only without sudo, sudo 
run does not add and remove credentials to user account here.

  Any help for ubuntu2004 will be appreciated.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915897] [NEW] libsecret not working with user account space for ubuntu2004

2021-02-16 Thread avinash
Public bug reported:

I am using libsecret library and facing problem with ubuntu2004 gnome-keyring
I have written below cpp code

#include
#include
#include
#defineSCHEMAgetSchema()
#defineCREDENTIALS_TOKEN_LABEL"ubuntu2004test"


constSecretSchema*getSchema(void)
{

staticconst SecretSchema schema = {
"org.example.credentials",
SECRET_SCHEMA_NONE,
{
{"username", SECRET_SCHEMA_ATTRIBUTE_STRING},
{NULL, (SecretSchemaAttributeType)0}}};

return 
}

voidputCredentials(std::stringusername,std::stringpassword)
{
GError *error = NULL;
secret_password_store_sync(SCHEMA, SECRET_COLLECTION_DEFAULT, 
CREDENTIALS_TOKEN_LABEL, password.c_str(), NULL,
, "username",username.c_str(),NULL);
}
voiddeleteAllCredentials(){
std::cout<<"\nDeletting all credential\n";
GError *error = NULL;
SecretService *sec = secret_service_get_sync(SECRET_SERVICE_LOAD_COLLECTIONS, 
NULL, );
_SecretCollection *collection = NULL;

collection = secret_collection_for_alias_sync(sec, SECRET_COLLECTION_DEFAULT,
SECRET_COLLECTION_LOAD_ITEMS, NULL, );
GList *items = secret_collection_get_items(collection);
for (unsignedinti = 0; i < g_list_length(items); i++)
{
SecretItem *item = (SecretItem *)g_list_nth_data(items, i);
std::stringlabel(secret_item_get_label(item));
if (label==CREDENTIALS_TOKEN_LABEL)
{
secret_item_delete_sync(item, NULL, );
if (error != NULL)
{
std::cout<<"Error: Cannot delete item:"/dev/null

fi


I get below results "sh ./
Ubuntu 1804: users added and removed in user account ,with and without sudo
Ubuntu 2004: users added and removed in user account only without sudo, sudo 
run does not add and remove credentials to user account here.

Any help for ubuntu2004 will be appreciated.

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

** Attachment added: "test.sh"
   https://bugs.launchpad.net/bugs/1915897/+attachment/5464400/+files/test.sh

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-keyring in Ubuntu.
https://bugs.launchpad.net/bugs/1915897

Title:
  libsecret not working with user account space for ubuntu2004

Status in gnome-keyring package in Ubuntu:
  New

Bug description:
  I am using libsecret library and facing problem with ubuntu2004 gnome-keyring
  I have written below cpp code

  #include
  #include
  #include
  #defineSCHEMAgetSchema()
  #defineCREDENTIALS_TOKEN_LABEL"ubuntu2004test"

  
  constSecretSchema*getSchema(void)
  {

  staticconst SecretSchema schema = {
  "org.example.credentials",
  SECRET_SCHEMA_NONE,
  {
  {"username", SECRET_SCHEMA_ATTRIBUTE_STRING},
  {NULL, (SecretSchemaAttributeType)0}}};

  return 
  }

  voidputCredentials(std::stringusername,std::stringpassword)
  {
  GError *error = NULL;
  secret_password_store_sync(SCHEMA, SECRET_COLLECTION_DEFAULT, 
CREDENTIALS_TOKEN_LABEL, password.c_str(), NULL,
  , "username",username.c_str(),NULL);
  }
  voiddeleteAllCredentials(){
  std::cout<<"\nDeletting all credential\n";
  GError *error = NULL;
  SecretService *sec = secret_service_get_sync(SECRET_SERVICE_LOAD_COLLECTIONS, 
NULL, );
  _SecretCollection *collection = NULL;

  collection = secret_collection_for_alias_sync(sec, SECRET_COLLECTION_DEFAULT,
  SECRET_COLLECTION_LOAD_ITEMS, NULL, );
  GList *items = secret_collection_get_items(collection);
  for (unsignedinti = 0; i < g_list_length(items); i++)
  {
  SecretItem *item = (SecretItem *)g_list_nth_data(items, i);
  std::stringlabel(secret_item_get_label(item));
  if (label==CREDENTIALS_TOKEN_LABEL)
  {
  secret_item_delete_sync(item, NULL, );
  if (error != NULL)
  {
  std::cout<<"Error: Cannot delete item:"/dev/null

  fi


  
  I get below results "sh ./
  Ubuntu 1804: users added and removed in user account ,with and without sudo
  Ubuntu 2004: users added and removed in user account only without sudo, sudo 
run does not add and remove credentials to user account here.

  Any help for ubuntu2004 will be appreciated.

To manage notifications about this bug go to:

[Desktop-packages] [Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2021-02-16 Thread Simon Iremonger
** Changed in: jsunit (Ubuntu Bionic)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1895643

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

Status in thunderbird package in Ubuntu:
  Fix Released
Status in jsunit source package in Bionic:
  Confirmed
Status in thunderbird source package in Bionic:
  Triaged
Status in jsunit source package in Focal:
  Fix Committed
Status in thunderbird source package in Focal:
  Fix Committed
Status in tinyjsd source package in Focal:
  Fix Committed
Status in thunderbird source package in Groovy:
  Fix Released

Bug description:
  Upstream Thunderbird version 78.2.2 should be a candidate for
  backporting to stable Ubuntu releases.

  I've successfully built 78.2.1 against both with forcing nodejs
  version (20.04, 18.04) and disabling AV1 support due to too old nasm
  (18.04). Attaching debdiffs here.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
Just looking at the log, it seems that unused-parameter error is
enabled. I don't know how your pipeline works, but it's not dpkg-
buildpackage, so it makes sense that the default CFLAGS (or CXXFLAGS) is
set.

genesys/low.cpp:636:76: error: unused parameter 'sensor' [-Werror
=unused-parameter]

You can either change the compiler flags or change the function
signature from:

bool should_enable_gamma(const ScanSession& session, const
Genesys_Sensor& sensor)

to:

bool should_enable_gamma(const ScanSession& session, const
Genesys_Sensor&)

and it should be happy. If that fails too, a less elegant solution is to
leave the if condition that uses it in, and make it return true instead
of false.

But I don't think that build is important to the distro issue.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1902092] Re: No Yaru theme on libreoffice snap

2021-02-16 Thread Adolfo Jayme
** Changed in: libreoffice (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1902092

Title:
  No Yaru theme on libreoffice snap

Status in libreoffice package in Ubuntu:
  Fix Released

Bug description:
  There is no yaru icon theme on new Libreoffice snap. Since is
  available on Ubuntu 20.10 maybe it should be available on snap version

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1914051] Re: `ubuntu-drivers list-oem --package-list` is broken

2021-02-16 Thread Adolfo Jayme
** Changed in: ubuntu-drivers-common (Ubuntu)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ubuntu-drivers-common in Ubuntu.
https://bugs.launchpad.net/bugs/1914051

Title:
  `ubuntu-drivers list-oem --package-list` is broken

Status in ubuntu-drivers-common package in Ubuntu:
  Fix Released
Status in ubuntu-drivers-common source package in Focal:
  Fix Released

Bug description:
  This is the call Ubiquity is making to decide what OEM packages to
  install.

  With the current focal-updates version

  root@ubuntu-drivers-common-test:~# apt policy ubuntu-drivers-common
  ubuntu-drivers-common:
Installed: 1:0.8.6.3~0.20.04.2
Candidate: 1:0.8.6.3~0.20.04.2
Version table:
   *** 1:0.8.6.3~0.20.04.2 500
  500 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
  100 /var/lib/dpkg/status
   1:0.8.1 500
  500 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages
  root@ubuntu-drivers-common-test:~# ubuntu-drivers list-oem 
--package-list=/tmp/foo
  Usage: ubuntu-drivers list-oem [OPTIONS] [LIST_OEM]...
  Try "ubuntu-drivers list-oem -h" for help.

  Error: no such option: --package-list

  With the focal release version:

  root@ubuntu-drivers-common-test:~# ubuntu-drivers list-oem 
--package-list=/tmp/foo
  root@ubuntu-drivers-common-test:~#

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1913333] Re: Calc auto-filter menu inaccessible with fractional scaling enabled

2021-02-16 Thread Adolfo Jayme
** Changed in: libreoffice (Ubuntu)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/191

Title:
  Calc auto-filter menu inaccessible with fractional scaling enabled

Status in libreoffice package in Ubuntu:
  Incomplete

Bug description:
  PROBLEM
  The auto-filter pull-down menu becomes inaccessible the very moment I move 
the mouse down to access the filter menu. This happens most of the time, but 
not always, when fractional scaling is not 100% on my 4K monitor. The menu 
remains inaccessible for all other scaling factors but 100%.

  FREQUENCY
  This happens quite often, but not always, and makes working in CALC with 
fractional scaling on impossible. Sometimes changing fractional scaling back to 
100% and then say to 150% fixes the issue. But most of the time the only way 
out is to switch the screen to 100%.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: libreoffice-core 1:7.0.3-0ubuntu0.20.10.1
  ProcVersionSignature: Ubuntu 5.8.0-38.43-generic 5.8.18
  Uname: Linux 5.8.0-38-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu50.3
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Jan 26 18:19:16 2021
  ExecutablePath: /usr/lib/libreoffice/program/soffice.bin
  SourcePackage: libreoffice
  UpgradeStatus: Upgraded to groovy on 2020-10-24 (93 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915677] Re: [ snap ] libreoffice-style-* packages are missing ?

2021-02-16 Thread Adolfo Jayme
** Changed in: libreoffice (Ubuntu)
   Importance: Undecided => Wishlist

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915677

Title:
  [ snap ] libreoffice-style-* packages are missing ?

Status in libreoffice package in Ubuntu:
  New

Bug description:
  Hi,

  trying LibreOffice 7 as a snap on UbuntuBudgie 20.04.

  I generally use dark gtk theme style system wide - and some are available as 
snap ( Adapta ).
  I often use Papirus icons set - and those are also ( partly ) available as 
snap ( through Adpata gtk theme ).

  I can't see if the same choice exists while using LO as a snap : I can
  find some icons theme ( elementary, colibre, breeze, and so on ) but
  they all look designed for global light gtk themes.

  In other words icons in my LO are black on black.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915562] Re: Libreoffice not loading installed fonts

2021-02-16 Thread Danilo Alculete
I've downloaded new fonts from dafont.com to be used on a document. The 
extension for these fonts is ttf. These newly installed fonts are not showing 
on Libreoffice.
You can try installing any font from the website.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915562

Title:
  Libreoffice not loading installed fonts

Status in libreoffice package in Ubuntu:
  New

Bug description:
  I've downloaded news fonts to be used on LibreOffice when I try to use
  them, the fonts are not loading

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Feb 12 22:58:17 2021
  InstallationDate: Installed on 2020-10-15 (120 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Snap: libreoffice 7.0.4.2 (latest/stable)
  SnapSource: ubuntu/+source/libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915677] Re: [ snap ] libreoffice-style-* packages are missing ?

2021-02-16 Thread Heather Ellsworth
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

I quickly checked the icons in a regular 20.04 VM with a dark gtk theme
and it looked just fine so it could be a Budgie problem so I can try
that next. Could you quickly tell me what snaps exactly you installed
for the Adapta theme and the Papirus icons? Anything besides the adapta-
gtk-snap snap?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915677

Title:
  [ snap ] libreoffice-style-* packages are missing ?

Status in libreoffice package in Ubuntu:
  New

Bug description:
  Hi,

  trying LibreOffice 7 as a snap on UbuntuBudgie 20.04.

  I generally use dark gtk theme style system wide - and some are available as 
snap ( Adapta ).
  I often use Papirus icons set - and those are also ( partly ) available as 
snap ( through Adpata gtk theme ).

  I can't see if the same choice exists while using LO as a snap : I can
  find some icons theme ( elementary, colibre, breeze, and so on ) but
  they all look designed for global light gtk themes.

  In other words icons in my LO are black on black.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915677] Re: [ snap ] libreoffice-style-* packages are missing ?

2021-02-16 Thread Heather Ellsworth
** Tags added: snap

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915677

Title:
  [ snap ] libreoffice-style-* packages are missing ?

Status in libreoffice package in Ubuntu:
  New

Bug description:
  Hi,

  trying LibreOffice 7 as a snap on UbuntuBudgie 20.04.

  I generally use dark gtk theme style system wide - and some are available as 
snap ( Adapta ).
  I often use Papirus icons set - and those are also ( partly ) available as 
snap ( through Adpata gtk theme ).

  I can't see if the same choice exists while using LO as a snap : I can
  find some icons theme ( elementary, colibre, breeze, and so on ) but
  they all look designed for global light gtk themes.

  In other words icons in my LO are black on black.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1902673] Re: LibreOffice Base : connection to embedded HSQLDB impossible

2021-02-16 Thread Heather Ellsworth
Actually, could you just please try to install the hsqldb package and
try again?

$ sudo apt install libreoffice-sdbc-hsqldb

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1902673

Title:
  LibreOffice Base : connection to embedded HSQLDB impossible

Status in libreoffice package in Ubuntu:
  New

Bug description:
  Ubuntu 20.10 64 bits, GNOME
  LibreOffice 7.0.2.2 included in the distribution (not snap).
  French

  I try only to create a new database with LO Base using the default
  HSQLDB system.

  I create a new database choosing the first option : embedded HSQLBD 
  When I try to select the tables to create one, I get an error :
  
/build/libreoffice-pLFcgN/libreoffice-7.0.2/connectivity/source/-commmontools/dbexception.cxx:399

  The problem is the same with Ubuntu 20.04 (LO 6.4) but this problem
  doesn't exist with Ubuntu 18.04 (LO 6.0.7.3)

  Maybe same issue than n° 1875477

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1902673] Re: LibreOffice Base : connection to embedded HSQLDB impossible

2021-02-16 Thread Heather Ellsworth
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

To better troubleshoot this, could you please attach the apport data with:
$ apport-collect 1902673

You mention the issue occurs in French.. I wonder if it occurs in
English too. If you have a moment, could you please test this in English
as well and report back?

Also, does the issue occur with a previously existing database that you
then open up in 20.04 (like in 1875477)?

Could you also please attach the journalctl log from the time where the
crash occurred?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1902673

Title:
  LibreOffice Base : connection to embedded HSQLDB impossible

Status in libreoffice package in Ubuntu:
  New

Bug description:
  Ubuntu 20.10 64 bits, GNOME
  LibreOffice 7.0.2.2 included in the distribution (not snap).
  French

  I try only to create a new database with LO Base using the default
  HSQLDB system.

  I create a new database choosing the first option : embedded HSQLBD 
  When I try to select the tables to create one, I get an error :
  
/build/libreoffice-pLFcgN/libreoffice-7.0.2/connectivity/source/-commmontools/dbexception.cxx:399

  The problem is the same with Ubuntu 20.04 (LO 6.4) but this problem
  doesn't exist with Ubuntu 18.04 (LO 6.0.7.3)

  Maybe same issue than n° 1875477

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915562] Re: Libreoffice not loading installed fonts

2021-02-16 Thread Heather Ellsworth
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

When you say you've downloaded news fonts, can you be more specific? Did
you install a deb package from the ubuntu archive with apt? If so, what
is the package name? Or did you install the font from some website? If
so, can you provide a pointer to it?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915562

Title:
  Libreoffice not loading installed fonts

Status in libreoffice package in Ubuntu:
  New

Bug description:
  I've downloaded news fonts to be used on LibreOffice when I try to use
  them, the fonts are not loading

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Feb 12 22:58:17 2021
  InstallationDate: Installed on 2020-10-15 (120 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Snap: libreoffice 7.0.4.2 (latest/stable)
  SnapSource: ubuntu/+source/libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915001] Re: I can't present my powerpoint presentation.

2021-02-16 Thread Heather Ellsworth
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Does the crash always happen on the 3rd slide? Is it possible to attach
a presentation for you where this happens consistently (I do not have MS
365 to try and reproduce)? Could you please attach the journalctl logs
from the moment in time where the crash starts occurring?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915001

Title:
  I can't present my powerpoint presentation.

Status in libreoffice package in Ubuntu:
  New

Bug description:
  I created a powerpoint presentation with Microsoft 365 PowerPoint
  And in Another device when I am open the presentation with Libreoffice 
impress it opens
  When I am presenting it at first it's ok but when the 3rd slide comes and it 
crashed. It says due to some errors Libreoffice Impress crashed and it will 
recover when I close the message. And then it will say again and crashes and it 
will reopen. This will go infinite loop. I can't present my presentation on 
Libreoffice Impress on Ubuntu 20.04.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: libreoffice-impress 1:6.4.6-0ubuntu0.20.04.1
  ProcVersionSignature: hostname 5.8.0-41.46~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Feb  8 16:20:27 2021
  InstallationDate: Installed on 2021-02-05 (2 days ago)
  InstallationMedia: Ubuntu 20.04.2 LTS "Focal Fossa" - Release amd64 (20210204)
  SourcePackage: libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1914840] Re: while saving impress file to pptx its being crashed

2021-02-16 Thread Heather Ellsworth
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Is the crash repeatable? If so please attach steps on how to reproduce.
If not but it sporadically happens, then please attach the relavent
journalctl logs from that moment in time.

** Changed in: libreoffice (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1914840

Title:
  while saving impress file to  pptx its being crashed

Status in libreoffice package in Ubuntu:
  Invalid

Bug description:
  while converting the .odp file to pptx format . The impress is
  crashed. Afterthat the file again recovered by impress

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libreoffice-impress 1:6.0.7-0ubuntu0.18.04.10
  ProcVersionSignature: Ubuntu 4.15.0-45.48-generic 4.15.18
  Uname: Linux 4.15.0-45-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.9-0ubuntu7.6
  Architecture: amd64
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Sat Feb  6 07:09:36 2021
  InstallationDate: Installed on 2019-05-27 (620 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  SourcePackage: libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915890] [NEW] [snap] Add LDAP support

2021-02-16 Thread Heather Ellsworth
Public bug reported:

Libreoffice allows for including LDAP as an option for database
selection and this feature should be added to the snap.

It's not much but here's a bit about the LDAP support within LO:
https://help.libreoffice.org/latest/he/text/shared/explorer/database/dabawiz02ldap.html

** Affects: libreoffice (Ubuntu)
 Importance: Medium
 Assignee: Heather Ellsworth (hellsworth)
 Status: Triaged


** Tags: snap

** Tags added: snap

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

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

** Changed in: libreoffice (Ubuntu)
 Assignee: (unassigned) => Heather Ellsworth (hellsworth)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/1915890

Title:
  [snap] Add LDAP support

Status in libreoffice package in Ubuntu:
  Triaged

Bug description:
  Libreoffice allows for including LDAP as an option for database
  selection and this feature should be added to the snap.

  It's not much but here's a bit about the LDAP support within LO:
  
https://help.libreoffice.org/latest/he/text/shared/explorer/database/dabawiz02ldap.html

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915887] [NEW] systemd spams the syslog about lack of native systemd unit file

2021-02-16 Thread Rolf Leggewie
Public bug reported:

systemd in hirsute spams the syslog file several times per second about
services lacking native systemd unit files.  Two things should happen.

1) a systemd unit file ought to be created
2) systemd should be slowed down with regards to these messages

Feb 17 02:02:48 ubuntu-devel kernel: [  289.794825] 
systemd-sysv-generator[7105]: SysV service '/etc/init.d/n2n' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:02:49 ubuntu-devel kernel: [  290.165351] 
systemd-sysv-generator[7126]: SysV service '/etc/init.d/n2n' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:02:49 ubuntu-devel kernel: [  291.111278] 
systemd-sysv-generator[7170]: SysV service '/etc/init.d/n2n' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:02:50 ubuntu-devel kernel: [  291.507164] 
systemd-sysv-generator[7199]: SysV service '/etc/init.d/n2n' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.

Feb 17 02:05:57 ubuntu-devel kernel: [  478.386062] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/fam' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.386321] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/xl2tpd' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.386742] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/ipfm' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.386767] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/shadowsocks' lacks a 
native systemd unit file. Automatically generating a unit file for 
compatibility. Please update package to include a native systemd unit file, in 
order to make it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.387281] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/virtualbox' lacks a 
native systemd unit file. Automatically generating a unit file for 
compatibility. Please update package to include a native systemd unit file, in 
order to make it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.388931] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/sysfsutils' lacks a 
native systemd unit file. Automatically generating a unit file for 
compatibility. Please update package to include a native systemd unit file, in 
order to make it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.388955] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/apport' lacks a native 
systemd unit file. Automatically generating a unit file for compatibility. 
Please update package to include a native systemd unit file, in order to make 
it more safe and robust.
Feb 17 02:05:57 ubuntu-devel kernel: [  478.389412] 
systemd-sysv-generator[9909]: SysV service '/etc/init.d/freeradius' lacks a 
native systemd unit file. Automatically generating a unit file for 
compatibility. Please update package to include a native systemd unit file, in 
order to make it more safe and robust.

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

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

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

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

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

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

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

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

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

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

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


** Tags: hirsute

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

** Description 

[Desktop-packages] [Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2021-02-16 Thread Mathew Hodson
** Tags removed: verification-needed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1895643

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

Status in thunderbird package in Ubuntu:
  Fix Released
Status in jsunit source package in Bionic:
  New
Status in thunderbird source package in Bionic:
  Triaged
Status in jsunit source package in Focal:
  Fix Committed
Status in thunderbird source package in Focal:
  Fix Committed
Status in tinyjsd source package in Focal:
  Fix Committed
Status in thunderbird source package in Groovy:
  Fix Released

Bug description:
  Upstream Thunderbird version 78.2.2 should be a candidate for
  backporting to stable Ubuntu releases.

  I've successfully built 78.2.1 against both with forcing nodejs
  version (20.04, 18.04) and disabling AV1 support due to too old nasm
  (18.04). Attaching debdiffs here.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Gunnar Hjalmarsson
Thanks, that's what I thought (which is not exactly the same as in the
upstream issue...).

Anyway, I built for focal with that change in this PPA:

https://launchpad.net/~gunnarhj/+archive/ubuntu/sane-backends/+packages

That built successfully. However, the very same change in a fork of the
upstream repo results in some failures:

https://gitlab.com/gunnarhj/backends/-/pipelines/257247218

Not sure why they fail. Are you able to tell?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915605] Re: Firefox (circle spinning while run program) problem on Ubuntu bionic family - 18.04.5

2021-02-16 Thread Piotr
If this is helpful if I enable safe mode in firefox in this run this bug
is not affected. I noticed also that firefox run faster. Like I said my
firefox is clean. I don't have any extensions or other software. No
cookies also. System is also clean, fresh install. I tried reinstall
firefox, delete files at home directory for firefox. This not resolve
problem. Like I said on another machine I noticed also this problem. If
you don't want fix this bug I must go away from Ubuntu bionic. This
system have too much bugs.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1915605

Title:
  Firefox (circle spinning while run program) problem on Ubuntu bionic
  family - 18.04.5

Status in firefox package in Ubuntu:
  Incomplete

Bug description:
  Dear Launchpad Team,

  I have problem with Firefox on Ubuntu 18.04.5 system. When I run
  firefox  this loading too long (circle spinning - animation of my
  cursor). I noticed this bug also on Xubuntu 18.04.4 on another
  computer. On Lubuntu 18.04.5 system on another computer I don't have
  these kind of bug so it is problem with Ubuntu and Xubuntu system. On
  Ubuntu 20.04 and Ubuntu 20.04.1 I don't have these bug.

  Of course I have updated system.

  I noticed also that if I will run firefox for the first time after
  booting my system this bug is not exist. I have this bug for the
  second run of the firefox and next.

  
  I have this problem also booting my computer with live USB with clear system 
image with Ubuntu 18.04.5. Like I earlier said this is problem with the system. 
When I use Ubuntu 20.04 I don't have this problem.

  My system is clean this is fresh install. I don't know what is problem
  but I am sure that everyone with Ubuntu 18.04.5 have this problem.
  Firefox is the newest 85.0.1 version. On older vesion I also had this
  problem in Ubuntu 18.04.5.

  Firefox start with no errors. No errors is a shown in terminal.

  Problem is with spinning with the cursor. When I run firefox cursor is
  spinning but firefox normally works. This cursor spinning only when I
  move this cursor on GNOME environment (top of the screen I don't know
  what is the name of this. This is graphic bar? When I run firefox in
  this "graphic bar" are shown name of the program (in my case firefox).

  On Ubuntu 20.04 my cursor doesn't spinning. Like I said this is
  problem only with Ubuntu 18.04.5 and Xubuntu 18.04.4 system. So this
  is the problem with bionic family but on Lubuntu 18.04.4 and 18.04.5
  and doesn't have this problem too.

  I tried reinstall firefox but this doesn't help. I also deleted files
  for firex in /home but this also doesn't help. I think that this
  problem is more complicated.

  Can you fix it? I am sure that everyone have this problem.

  
  Some output from terminal:

  uname -a

  5.4.0-65-generic #73~18.04.1-Ubuntu SMP Tue Jan 19 09:02:24 UTC 2021
  x86_64 x86_64 x86_64 GNU/Linux

  lsb_release -crid

  Distributor ID: Ubuntu
  Description: Ubuntu 18.04.5 LTS
  Release: 18.04

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915605] Re: Firefox (circle spinning while run program) problem on Ubuntu bionic family - 18.04.5

2021-02-16 Thread Piotr
If this is helpful if I enable safe mode in firefox in this run this bug
is not affected. My firefox is clean. I don't have any extensions or
other software. No cookies also. I tried reinstall firefox, delete files
at home directory for firefox. This not resolve problem. Like I said on
another machine I noticed also this problem. If you don't want fix this
bug I must go away from Ubuntu bionic. This system have too much bugs. I
noticed also new bug for firefox I think for safe mode but I don't talk
about it because this bug with cursor is more important.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1915605

Title:
  Firefox (circle spinning while run program) problem on Ubuntu bionic
  family - 18.04.5

Status in firefox package in Ubuntu:
  Incomplete

Bug description:
  Dear Launchpad Team,

  I have problem with Firefox on Ubuntu 18.04.5 system. When I run
  firefox  this loading too long (circle spinning - animation of my
  cursor). I noticed this bug also on Xubuntu 18.04.4 on another
  computer. On Lubuntu 18.04.5 system on another computer I don't have
  these kind of bug so it is problem with Ubuntu and Xubuntu system. On
  Ubuntu 20.04 and Ubuntu 20.04.1 I don't have these bug.

  Of course I have updated system.

  I noticed also that if I will run firefox for the first time after
  booting my system this bug is not exist. I have this bug for the
  second run of the firefox and next.

  
  I have this problem also booting my computer with live USB with clear system 
image with Ubuntu 18.04.5. Like I earlier said this is problem with the system. 
When I use Ubuntu 20.04 I don't have this problem.

  My system is clean this is fresh install. I don't know what is problem
  but I am sure that everyone with Ubuntu 18.04.5 have this problem.
  Firefox is the newest 85.0.1 version. On older vesion I also had this
  problem in Ubuntu 18.04.5.

  Firefox start with no errors. No errors is a shown in terminal.

  Problem is with spinning with the cursor. When I run firefox cursor is
  spinning but firefox normally works. This cursor spinning only when I
  move this cursor on GNOME environment (top of the screen I don't know
  what is the name of this. This is graphic bar? When I run firefox in
  this "graphic bar" are shown name of the program (in my case firefox).

  On Ubuntu 20.04 my cursor doesn't spinning. Like I said this is
  problem only with Ubuntu 18.04.5 and Xubuntu 18.04.4 system. So this
  is the problem with bionic family but on Lubuntu 18.04.4 and 18.04.5
  and doesn't have this problem too.

  I tried reinstall firefox but this doesn't help. I also deleted files
  for firex in /home but this also doesn't help. I think that this
  problem is more complicated.

  Can you fix it? I am sure that everyone have this problem.

  
  Some output from terminal:

  uname -a

  5.4.0-65-generic #73~18.04.1-Ubuntu SMP Tue Jan 19 09:02:24 UTC 2021
  x86_64 x86_64 x86_64 GNU/Linux

  lsb_release -crid

  Distributor ID: Ubuntu
  Description: Ubuntu 18.04.5 LTS
  Release: 18.04

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915784] Re: Permissions of executables pointing to "buildd"

2021-02-16 Thread Thomas Karl Pietrowski
*** This bug is a duplicate of bug 1915250 ***
https://bugs.launchpad.net/bugs/1915250

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

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pipewire in Ubuntu.
https://bugs.launchpad.net/bugs/1915784

Title:
  Permissions of executables pointing to "buildd"

Status in apport package in Ubuntu:
  New
Status in ccache package in Ubuntu:
  New
Status in fuse3 package in Ubuntu:
  New
Status in lzma package in Ubuntu:
  New
Status in netstat-nat package in Ubuntu:
  New
Status in openssh package in Ubuntu:
  New
Status in pipewire package in Ubuntu:
  New
Status in psensor package in Ubuntu:
  New
Status in screen package in Ubuntu:
  New
Status in snap package in Ubuntu:
  Fix Released
Status in sudo package in Ubuntu:
  Fix Released
Status in wireshark package in Ubuntu:
  Fix Released
Status in xz-utils package in Ubuntu:
  New

Bug description:
  I've noticed this issue already with other applications, which have been 
updated recently, too.
  This morning I've updated the sudo package and it broke, too.

  The common issue is that fakeroot gets omitted or faulty in your build
  environment somehow.

  After looking into the current sudo package I've noticed that all
  files are owned by "buildd:buildd", which doesn't exist on my computer
  and thus the 2001:2501 on my local machine.

  I'll try to collect some other packages, too, which have the same
  problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: sudo 1.9.5p2-2ubuntu1
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Uname: Linux 5.10.0-14-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu58
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Feb 16 08:33:27 2021
  InstallationDate: Installed on 2020-01-27 (385 days ago)
  InstallationMedia: Kubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  SourcePackage: sudo
  UpgradeStatus: No upgrade log present (probably fresh install)
  VisudoCheck:
   /etc/sudoers: parsed OK
   /etc/sudoers.d/README: parsed OK

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
Sure, I used `dpkg-buildpackage -b``` to build it.

The change was just to remove the offending condition as was suggested:

diff -ur sane-backends-1.0.29.orig/backend/genesys/low.cpp 
sane-backends-1.0.29/backend/genesys/low.cpp
--- sane-backends-1.0.29.orig/backend/genesys/low.cpp   2021-02-16 
17:18:42.0 -0500
+++ sane-backends-1.0.29/backend/genesys/low.cpp2021-02-16 
11:10:24.655216925 -0500
@@ -650,12 +650,6 @@
 if ((session.params.flags & ScanFlag::DISABLE_GAMMA) != ScanFlag::NONE) {
 return false;
 }
-if (sensor.gamma[0] == 1.0f || sensor.gamma[1] == 1.0f || sensor.gamma[2] 
== 1.0f) {
-return false;
-}
-if (session.params.depth == 16)
-return false;
-
 return true;
 }

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Olivier Tilloy
Tentative implementation:
https://github.com/snapcore/snapcraft/pull/3437

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in Snapcraft:
  New
Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapcraft package in Ubuntu:
  New
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915881] [NEW] Networkmanager takes 3x longer to connect to wifi on wake on 20.10 compared to 20.04

2021-02-16 Thread Corbin
Public bug reported:

Networkmanager upstream has already created a patch to fix this bug,
which they backported to nm 1.26, which Groovy uses.

The upstream fix can be found here-

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/commit/5454681ab76ee02cfa85d65e29005b974efb3c52

This, as far as I can tell, meets the guidelines for ubuntu's SRU
policy.

In addition, given that Hirsute Hippo will also be using nm 1.26, this
fix will have a broader impact than just groovy.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: network-manager 1.22.10-1ubuntu2.2
ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Tue Feb 16 16:12:39 2021
InstallationDate: Installed on 2020-11-19 (89 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
IpRoute:
 default via 192.168.254.254 dev wlp3s0 proto dhcp metric 600 
 169.254.0.0/16 dev wlp3s0 scope link metric 1000 
 192.168.254.0/24 dev wlp3s0 proto kernel scope link src 192.168.254.56 metric 
600
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: network-manager
UpgradeStatus: No upgrade log present (probably fresh install)
nmcli-nm:
 RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  WIFI  
   WWAN-HW  WWAN
 running  1.22.10  connected  started  full  enabled enabled  
enabled  enabled  enabled

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


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1915881

Title:
  Networkmanager takes 3x longer to connect to wifi on wake on 20.10
  compared to 20.04

Status in network-manager package in Ubuntu:
  New

Bug description:
  Networkmanager upstream has already created a patch to fix this bug,
  which they backported to nm 1.26, which Groovy uses.

  The upstream fix can be found here-

  
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/commit/5454681ab76ee02cfa85d65e29005b974efb3c52

  This, as far as I can tell, meets the guidelines for ubuntu's SRU
  policy.

  In addition, given that Hirsute Hippo will also be using nm 1.26, this
  fix will have a broader impact than just groovy.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: network-manager 1.22.10-1ubuntu2.2
  ProcVersionSignature: Ubuntu 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Feb 16 16:12:39 2021
  InstallationDate: Installed on 2020-11-19 (89 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IpRoute:
   default via 192.168.254.254 dev wlp3s0 proto dhcp metric 600 
   169.254.0.0/16 dev wlp3s0 scope link metric 1000 
   192.168.254.0/24 dev wlp3s0 proto kernel scope link src 192.168.254.56 
metric 600
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.22.10  connected  started  full  enabled enabled  
enabled  enabled  enabled

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Gunnar Hjalmarsson
I see now that the change which is said to cause the issue was committed
on 2019-10-17 while 1.0.29 was released on 2020-02-02. So yes, it's
probably a mistake in the issue description.

I tried to apply the change proposed in the upstream issue, but it does
not compile: SCAN_FLAG_DISABLE_GAMMA not declared. Can you please let us
know exactly how you applied it. Did you possibly compile without
warnings?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915681] Re: Error in freeze/thaw accounting, GNOME Shell crashed with signal 5, resource:///org/gnome/shell/ui/windowManager.js:1384

2021-02-16 Thread Nemanja V
Hi,

(a) The version is correct:

nemanja@thinkpad:~$ gnome-shell --version
GNOME Shell 3.38.2

nemanja@thinkpad:~$ dpkg -l | grep gnome-shell
ii  gnome-shell 3.38.2-1ubuntu1~20.10.1 amd64 graphical shell for the GNOME 
desktop

(b) I'm not sure what do you mean?

Could the faulty GPU memory be also responsible for such behavior?
Randomly, I'm experiencing random graphics crashes (also on previous Ubuntu 
19.04) and I plan to do a GPU memory test.

Also, maybe related:
Enabled Gnome extensions:
- Dash to Panel (https://extensions.gnome.org/extension/1160/dash-to-panel/)
- Desktop icons (system extension)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1915681

Title:
  Error in freeze/thaw accounting, GNOME Shell crashed with signal 5,
  resource:///org/gnome/shell/ui/windowManager.js:1384

Status in gnome-shell package in Ubuntu:
  Incomplete

Bug description:
  Feb 12 09:10:29 thinkpad gnome-shell[85476]: Error in freeze/thaw accounting
  Feb 12 09:10:29 thinkpad gnome-shell[85476]: GNOME Shell crashed with signal 5
  Feb 12 09:10:29 thinkpad gnome-shell[85476]: == Stack trace for context 
0x561dd4480270 ==
  Feb 12 09:10:29 thinkpad gnome-shell[85476]: #0   561dd96ccf18 i   
resource:///org/gnome/shell/ui/windowManager.js:1384 (1c61e18d03d0 @ 589)
  Feb 12 09:10:29 thinkpad gnome-shell[85476]: #1   7ffc72c53090 b   
self-hosted:850 (22fd89d4e5b0 @ 454)

  Taken from https://bugs.launchpad.net/ubuntu/+source/gnome-
  shell/+bug/1897765/comments/38

  This crash will also show up in the existing error buckets from bug
  1897765:

  https://errors.ubuntu.com/problem/2f47b25de323a59b617efbd8ce4b9bc7789848bd
  https://errors.ubuntu.com/problem/fc9ef2077ed4ee125d73f018d3f8101a2beb0605

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1875015] Re: Ubuntu 20.04 and Displaylink is extremely slow

2021-02-16 Thread Jeff Wright
I am suffering from this problem as well (2020 Dell XPS 13", Ubuntu LTS
20.04), even after applying the fix at
https://www.displaylink.org/forum/showthread.php?t=67148. HOWEVER - I
have found that if I mirror my displays (laptop built-in + external
HP2511X vis DVI), the lag disappears. This is true even when connected
via an external USB 3.0 hub, so at least I can use my external mouse/KB
at the same time as enjoying the larger desktop.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1875015

Title:
  Ubuntu 20.04 and Displaylink is extremely slow

Status in X.Org X server:
  Unknown
Status in xorg-server package in Ubuntu:
  Confirmed

Bug description:
  Using ubuntu 20.04 on displaylink docking with external monitor is
  totally slow, unusable. The GUI responds very slow, if you click, the
  command of the click goes on after about 3 seconds... if you type, all
  the letters are with the same lag, so it is totally unusable.

  Was using displaylink without any problem on 19.10 until yesterday, when I 
upgraded to 20.04. 
  It is terrific.

  If i plug out the usb for the displaylink docking station, than the
  speed is back, and the system is ok, if I connect it to the docking
  station again, everything extremely slow again.

  Please investigate this asap, as it is unusable on displaylink docking
  stations.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1897765] Re: gnome-shell crashed with signal 5 in g_log("Error in freeze/thaw accounting") - JS ERROR: TypeError: actor.__animationInfo is undefined

2021-02-16 Thread Nemanja V
Thank you.

Cheers

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1897765

Title:
  gnome-shell crashed with signal 5 in g_log("Error in freeze/thaw
  accounting") - JS ERROR: TypeError: actor.__animationInfo is undefined

Status in Mutter:
  Unknown
Status in gnome-shell package in Ubuntu:
  Fix Released
Status in gnome-shell source package in Groovy:
  Fix Released
Status in gnome-shell source package in Hirsute:
  Fix Released
Status in gnome-shell package in Debian:
  Unknown

Bug description:
  [ Impact ]

  Launching terminator crashes gnome-shell

  [ Test case ]

   - Launch terminator
   - GNOME Shell should not crash

  In any case these errors should not be reported anymore with gnome-shell 
3.38.2-1ubuntu1~20.10.1:
  - https://errors.ubuntu.com/problem/2f47b25de323a59b617efbd8ce4b9bc7789848bd
  - https://errors.ubuntu.com/problem/fc9ef2077ed4ee125d73f018d3f8101a2beb0605

  [ Regression potential ]

  A window could not be animated on size change.

  ---

  Launching terminator crashes gnome-shell, happens on two separate
  machines.

  ProblemType: CrashDistroRelease: Ubuntu 20.10
  Package: gnome-shell 3.38.0-1ubuntu2
  ProcVersionSignature: Ubuntu 5.8.0-19.20-generic 5.8.8
  Uname: Linux 5.8.0-19-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu48
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Sep 29 18:05:57 2020
  DisplayManager: gdm3
  ExecutablePath: /usr/bin/gnome-shell
  ExecutableTimestamp: 1600706451
  InstallationDate: Installed on 2019-10-14 (350 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Beta amd64 (20191012)
  ProcCmdline: /usr/bin/gnome-shell
  ProcCwd: /home/tjaalton
  ProcEnviron:
   LANG=fi_FI.UTF-8
   PATH=(custom, user)
   SHELL=/bin/zsh
   XDG_RUNTIME_DIR=
  RelatedPackageVersions: mutter-common 3.38.0-1ubuntu1
  Signal: 5SourcePackage: gnome-shell
  StacktraceTop:
   g_log_structured_array () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_log_default_handler () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
   g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_log () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: gnome-shell crashed with signal 5 in g_log_structured_array()
  UpgradeStatus: Upgraded to groovy on 2020-09-29 (0 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  separator:

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915872] [NEW] Ubuntu is auto toggling airplane

2021-02-16 Thread Flávio Vivório Salles
Public bug reported:

Everytime I boot and login to my computer the airplane mode is on. It
started when I upgraded the system to 20.04.2

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: network-manager 1.22.10-1ubuntu2.2
Uname: Linux 5.11.0-051100-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Tue Feb 16 16:58:20 2021
InstallationDate: Installed on 2020-11-06 (102 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
IpRoute:
 default via 192.168.100.1 dev wlp2s0 proto dhcp metric 600 
 169.254.0.0/16 dev wlp2s0 scope link metric 1000 
 192.168.100.0/24 dev wlp2s0 proto kernel scope link src 192.168.100.34 metric 
600
SourcePackage: network-manager
UpgradeStatus: No upgrade log present (probably fresh install)
nmcli-dev:
 DEVICE  TYPE  STATE IP4-CONNECTIVITY  IP6-CONNECTIVITY  
DBUS-PATH  CONNECTION  CON-UUID 
 CON-PATH   
 wlp2s0  wifi  connected full  full  
/org/freedesktop/NetworkManager/Devices/2  Flavio  
1970b109-b181-40d0-a44f-7bf1f234a921  
/org/freedesktop/NetworkManager/ActiveConnection/1 
 p2p-dev-wlp2s0  wifi-p2p  disconnected  none  none  
/org/freedesktop/NetworkManager/Devices/3  --  --   
 -- 
 lo  loopback  unmanaged unknown   unknown   
/org/freedesktop/NetworkManager/Devices/1  --  --   
 --
nmcli-nm:
 RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  WIFI  
   WWAN-HW  WWAN 
 running  1.22.10  connected  started  full  enabled enabled  
enabled  enabled  disabled

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


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to network-manager in Ubuntu.
https://bugs.launchpad.net/bugs/1915872

Title:
  Ubuntu is auto toggling airplane

Status in network-manager package in Ubuntu:
  New

Bug description:
  Everytime I boot and login to my computer the airplane mode is on. It
  started when I upgraded the system to 20.04.2

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: network-manager 1.22.10-1ubuntu2.2
  Uname: Linux 5.11.0-051100-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Feb 16 16:58:20 2021
  InstallationDate: Installed on 2020-11-06 (102 days ago)
  InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
  IpRoute:
   default via 192.168.100.1 dev wlp2s0 proto dhcp metric 600 
   169.254.0.0/16 dev wlp2s0 scope link metric 1000 
   192.168.100.0/24 dev wlp2s0 proto kernel scope link src 192.168.100.34 
metric 600
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-dev:
   DEVICE  TYPE  STATE IP4-CONNECTIVITY  IP6-CONNECTIVITY  
DBUS-PATH  CONNECTION  CON-UUID 
 CON-PATH   
   wlp2s0  wifi  connected full  full  
/org/freedesktop/NetworkManager/Devices/2  Flavio  
1970b109-b181-40d0-a44f-7bf1f234a921  
/org/freedesktop/NetworkManager/ActiveConnection/1 
   p2p-dev-wlp2s0  wifi-p2p  disconnected  none  none  
/org/freedesktop/NetworkManager/Devices/3  --  --   
 -- 
   lo  loopback  unmanaged unknown   unknown   
/org/freedesktop/NetworkManager/Devices/1  --  --   
 --
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN 
   running  1.22.10  connected  started  full  enabled enabled  
enabled  enabled  disabled

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915870] [NEW] gnome session not starting

2021-02-16 Thread Mark Muth
Public bug reported:

Graphical user interface is not coming up upon start. Only SSH is
possible.

lsb_release -rd:

Description:Ubuntu 20.10
Release:20.10

dmesg:

[   11.985343] gnome-session-c[1013]: segfault at 0 ip  sp 
7fff7679ca48 error 14 in 
gnome-session-check-accelerated-gl-helper[56020e238000+2000]
[   11.985352] Code: Unable to access opcode bytes at RIP 0xffd6.
[   14.216117] gnome-shell[1094]: segfault at 0 ip  sp 
7ffeddff9f88 error 14
[   14.216122] Code: Unable to access opcode bytes at RIP 0xffd6.
[   15.316292] gnome-shell[1109]: segfault at 0 ip  sp 
7ffc70716198 error 14
[   15.316297] Code: Unable to access opcode bytes at RIP 0xffd6.

apt-cache policy:

gnome-session:
  Installed: (none)
  Candidate: 3.38.0-1ubuntu1
  Version table:
 3.38.0-1ubuntu1 500
500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
500 http://de.archive.ubuntu.com/ubuntu groovy/main i386 Packages
gnome-session-bin:
  Installed: 3.38.0-1ubuntu1
  Candidate: 3.38.0-1ubuntu1
  Version table:
 *** 3.38.0-1ubuntu1 500
500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
100 /var/lib/dpkg/status
gnome-session-common:
  Installed: 3.38.0-1ubuntu1
  Candidate: 3.38.0-1ubuntu1
  Version table:
 *** 3.38.0-1ubuntu1 500
500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
500 http://de.archive.ubuntu.com/ubuntu groovy/main i386 Packages
100 /var/lib/dpkg/status

/var/crash: see attachment

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

** Attachment added: 
"_usr_libexec_gnome-session-check-accelerated-gl-helper.126.crash"
   
https://bugs.launchpad.net/bugs/1915870/+attachment/5464194/+files/_usr_libexec_gnome-session-check-accelerated-gl-helper.126.crash

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-session in Ubuntu.
https://bugs.launchpad.net/bugs/1915870

Title:
  gnome session not starting

Status in gnome-session package in Ubuntu:
  New

Bug description:
  Graphical user interface is not coming up upon start. Only SSH is
  possible.

  lsb_release -rd:

  Description:  Ubuntu 20.10
  Release:  20.10

  dmesg:

  [   11.985343] gnome-session-c[1013]: segfault at 0 ip  sp 
7fff7679ca48 error 14 in 
gnome-session-check-accelerated-gl-helper[56020e238000+2000]
  [   11.985352] Code: Unable to access opcode bytes at RIP 0xffd6.
  [   14.216117] gnome-shell[1094]: segfault at 0 ip  sp 
7ffeddff9f88 error 14
  [   14.216122] Code: Unable to access opcode bytes at RIP 0xffd6.
  [   15.316292] gnome-shell[1109]: segfault at 0 ip  sp 
7ffc70716198 error 14
  [   15.316297] Code: Unable to access opcode bytes at RIP 0xffd6.

  apt-cache policy:

  gnome-session:
Installed: (none)
Candidate: 3.38.0-1ubuntu1
Version table:
   3.38.0-1ubuntu1 500
  500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
  500 http://de.archive.ubuntu.com/ubuntu groovy/main i386 Packages
  gnome-session-bin:
Installed: 3.38.0-1ubuntu1
Candidate: 3.38.0-1ubuntu1
Version table:
   *** 3.38.0-1ubuntu1 500
  500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
  100 /var/lib/dpkg/status
  gnome-session-common:
Installed: 3.38.0-1ubuntu1
Candidate: 3.38.0-1ubuntu1
Version table:
   *** 3.38.0-1ubuntu1 500
  500 http://de.archive.ubuntu.com/ubuntu groovy/main amd64 Packages
  500 http://de.archive.ubuntu.com/ubuntu groovy/main i386 Packages
  100 /var/lib/dpkg/status

  /var/crash: see attachment

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915784] Re: Permissions of executables pointing to "buildd"

2021-02-16 Thread Thomas Karl Pietrowski
*** This bug is a duplicate of bug 1915250 ***
https://bugs.launchpad.net/bugs/1915250

Fixed as the faulty package has been removed from the proposed repo.

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pipewire in Ubuntu.
https://bugs.launchpad.net/bugs/1915784

Title:
  Permissions of executables pointing to "buildd"

Status in apport package in Ubuntu:
  New
Status in ccache package in Ubuntu:
  New
Status in fuse3 package in Ubuntu:
  New
Status in lzma package in Ubuntu:
  New
Status in netstat-nat package in Ubuntu:
  New
Status in openssh package in Ubuntu:
  New
Status in pipewire package in Ubuntu:
  New
Status in psensor package in Ubuntu:
  New
Status in screen package in Ubuntu:
  New
Status in snap package in Ubuntu:
  New
Status in sudo package in Ubuntu:
  Fix Released
Status in wireshark package in Ubuntu:
  New
Status in xz-utils package in Ubuntu:
  New

Bug description:
  I've noticed this issue already with other applications, which have been 
updated recently, too.
  This morning I've updated the sudo package and it broke, too.

  The common issue is that fakeroot gets omitted or faulty in your build
  environment somehow.

  After looking into the current sudo package I've noticed that all
  files are owned by "buildd:buildd", which doesn't exist on my computer
  and thus the 2001:2501 on my local machine.

  I'll try to collect some other packages, too, which have the same
  problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: sudo 1.9.5p2-2ubuntu1
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Uname: Linux 5.10.0-14-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu58
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Feb 16 08:33:27 2021
  InstallationDate: Installed on 2020-01-27 (385 days ago)
  InstallationMedia: Kubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  SourcePackage: sudo
  UpgradeStatus: No upgrade log present (probably fresh install)
  VisudoCheck:
   /etc/sudoers: parsed OK
   /etc/sudoers.d/README: parsed OK

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915751] Re: Sharing is enabled out of the box

2021-02-16 Thread fossfreedom
Ok - closing - I've tried to reproduce in today's daily build
with/without gnome-remote-desktop from proposed and can not see the
issue.  Sorry for the noise.

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1915751

Title:
  Sharing is enabled out of the box

Status in gnome-settings-daemon package in Ubuntu:
  Invalid

Bug description:
  Apologies if this is the wrong package.

  Using Ubuntu Budgie

  I note that GNOME Settings - Sharing is enabled by default and that
  "Remote Login" is ticked to be on.  This could be construed as a
  security issue.

  I would have expected a user to enable if sharing should be possible -
  certainly "Remote Login" shouldnt be enabled by default out-of-the-
  box.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: gnome-settings-daemon 3.38.1-3ubuntu2
  ProcVersionSignature: Ubuntu 5.8.0-36.40+21.04.1-generic 5.8.18
  Uname: Linux 5.8.0-36-generic x86_64
  ApportVersion: 2.20.11-0ubuntu57
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: Budgie:GNOME
  Date: Mon Feb 15 19:01:17 2021
  InstallationDate: Installed on 2021-02-08 (6 days ago)
  InstallationMedia: Ubuntu-Budgie 21.04 "Hirsute Hippo" - Alpha amd64 
(20210208)
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
Hi Gunnar,

Perhaps there is a mistake in that report. I certainly witnessed it in
1.0.29 on Ubuntu 20.04 and 20.10. I don't think it was an issue before
that version, and it's unlikely to have been, as the revision that broke
it was put in October 17, 2019; not certain about which specific release
it made it into, though.

My testing is on focal with sane-backends_1.0.29-0ubuntu5.2.dsc, updated
with the suggested changes.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Gunnar Hjalmarsson
Thanks for your research, Pat. However, on the upstream issue it's
stated that the problem is not present on sane-backends 1.0.29, while
you say you see it on Ubuntu 20.04 (which includes sane-backends
1.0.29). Are they different issues?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1878292] Re: firefox FTBFS on s390x

2021-02-16 Thread Olivier Tilloy
** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1878292

Title:
  firefox FTBFS on s390x

Status in firefox package in Ubuntu:
  Fix Released
Status in thunderbird package in Ubuntu:
  Fix Released

Bug description:
  Builds hang when trying to compile the third-party sqlite3 copy,
  during 7+ hours, before being killed. See e.g.
  
https://launchpad.net/ubuntu/+source/firefox/76.0.1+build1-0ubuntu1/+build/19276095:

  436:55.58 make[6]: *** 
[/<>/firefox-76.0.1+build1/config/rules.mk:673: sqlite3.o] Killed
  436:55.59 make[6]: Leaving directory 
'/<>/firefox-76.0.1+build1/obj-s390x-linux-gnu/third_party/sqlite3/src'
  436:55.59 make[5]: *** 
[/<>/firefox-76.0.1+build1/config/recurse.mk:74: 
third_party/sqlite3/src/target-objects] Error 2

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1866059] Re: firefox-locale-* packages do not enable localization => post-install localization is not complete

2021-02-16 Thread Olivier Tilloy
** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1866059

Title:
  firefox-locale-* packages do not enable localization => post-install
  localization is not complete

Status in firefox package in Ubuntu:
  Fix Released
Status in thunderbird package in Ubuntu:
  Fix Released

Bug description:
  On 2020-03-03 I installed a Focal system from the latest ISO image and
  chose the Italian localization at install time. The localization
  setting worked as expected, but not for Firefox: its interface is
  still in English. No "Italian" option shows up in the 'Preferences ->
  Language' menu (the menu is empty).

  The firefox-locale-it package is correctly installed. I tried
  installing firefox-locale-fr and restart Firefox, but I still got no
  French option in the Language menu.

  On the other hand letting Firefox download the language pack itself
  *does* work.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2021-02-16 Thread Olivier Tilloy
** Tags removed: verification-needed-focal verification-needed-groovy
** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1895643

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

Status in thunderbird package in Ubuntu:
  Fix Released
Status in jsunit source package in Bionic:
  New
Status in thunderbird source package in Bionic:
  Triaged
Status in jsunit source package in Focal:
  Fix Committed
Status in thunderbird source package in Focal:
  Fix Committed
Status in tinyjsd source package in Focal:
  Fix Committed
Status in thunderbird source package in Groovy:
  Fix Released

Bug description:
  Upstream Thunderbird version 78.2.2 should be a candidate for
  backporting to stable Ubuntu releases.

  I've successfully built 78.2.1 against both with forcing nodejs
  version (20.04, 18.04) and disabling AV1 support due to too old nasm
  (18.04). Attaching debdiffs here.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Olivier Tilloy
That makes sense, thanks Ian. I'm adding a snapcraft task to update the
corresponding extension hooks to check for the connection before trying
to use the content snap.

** Also affects: snapcraft (Ubuntu)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in Snapcraft:
  New
Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapcraft package in Ubuntu:
  New
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915860] [NEW] The function 'bd_md_examine' called, but not implemented

2021-02-16 Thread geole0
Public bug reported:

Hello
Under ubuntu 20.04 version, I am reorganizing some RAIDS
I come across a message that I cannot understand.
Is something missing in the software?

It seems to be written every second


journalctl -b -g "The function 'bd_md_examine' called, but not implemented" 
>T.txt && wc T.txt -l
524 T.txt

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

** Attachment added: "Trace of the bug"
   https://bugs.launchpad.net/bugs/1915860/+attachment/5464177/+files/T.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to udisks2 in Ubuntu.
https://bugs.launchpad.net/bugs/1915860

Title:
  The function 'bd_md_examine' called, but not implemented

Status in udisks2 package in Ubuntu:
  New

Bug description:
  Hello
  Under ubuntu 20.04 version, I am reorganizing some RAIDS
  I come across a message that I cannot understand.
  Is something missing in the software?

  It seems to be written every second

  
  journalctl -b -g "The function 'bd_md_examine' called, but not implemented" 
>T.txt && wc T.txt -l
  524 T.txt

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

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

** Changed in: sane-backends (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Bartosz Kosiorek
** Also affects: sane-backends (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: simple-scan (Ubuntu)
   Status: Triaged => Invalid

** Also affects: sane-backends via
   https://gitlab.com/sane-project/backends/-/issues/271
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in sane-backends:
  Unknown
Status in sane-backends package in Ubuntu:
  Confirmed
Status in simple-scan package in Ubuntu:
  Invalid

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

To manage notifications about this bug go to:
https://bugs.launchpad.net/sane-backends/+bug/1327801/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1829401] Re: gi.repository.GLib.GError: pk-client-error-quark: could not do untrusted question as no klass support

2021-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package software-properties - 0.99.3.1

---
software-properties (0.99.3.1) groovy; urgency=medium

  * Fixing an incorrect variable being passed to GTK message dialog
creation function (LP: #1829401)

 -- William 'jawn-smith' Wilson   Wed, 27
Jan 2021 09:10:21 -0600

** Changed in: software-properties (Ubuntu Groovy)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-properties in Ubuntu.
https://bugs.launchpad.net/bugs/1829401

Title:
  gi.repository.GLib.GError: pk-client-error-quark: could not do
  untrusted question as no klass support

Status in software-properties package in Ubuntu:
  Fix Released
Status in software-properties source package in Eoan:
  Won't Fix
Status in software-properties source package in Focal:
  Fix Released
Status in software-properties source package in Groovy:
  Fix Released

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem regarding 
software-properties.  This problem was most recently seen with package version 
0.98.2, the problem page at 
https://errors.ubuntu.com/problem/300ff7bf9068dc50ace4c5db5c4a34ba0dfc926d 
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/.

  [Back trace]
  Traceback (most recent call last):
    File 
"/usr/lib/python3/dist-packages/softwareproperties/gtk/DialogCacheOutdated.py", 
line 86, in on_pktask_finish
  results = self._pktask.generic_finish(result)
  gi.repository.GLib.GError: pk-client-error-quark: could not do untrusted 
question as no klass support (8)

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File 
"/usr/lib/python3/dist-packages/softwareproperties/gtk/DialogCacheOutdated.py", 
line 89, in on_pktask_finish
  Gtk.ButtonsType.CANCEL, _("Error while refreshing cache"))
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/Gtk.py", line 575, in 
__init__
  self._init(*args, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/Gtk.py", line 521, in 
__init__
  _window_init(self, *args, **kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
  TypeError: could not convert value for property `transient_for' from 
DialogCacheOutdated to GtkWindow

  
  [Impact] 

   * If selected mirrors are not reachable or have
 expired GPG keys, software-properties-gtk
 would crash

  [Test Case]

   * Edit the file /usr/share/python-apt/templates/Ubuntu.mirrors

   * Find your locale in this file and add a non-existent URL
 to the list

   * Run software-properties-gtk and choose your newly added
 URL from the "Download From" dropdown menu

   * Press "Close" in the bottom right, and when
 prompted press "Reload"

   * You should be presented with an error window rather than
 the program crashing

  [Where problems could occur]

   * The new error window binds to the parent window. If the
 parent window has gotten into a bad state this could
 cause problems

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1829401] Re: gi.repository.GLib.GError: pk-client-error-quark: could not do untrusted question as no klass support

2021-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package software-properties - 0.98.9.4

---
software-properties (0.98.9.4) focal; urgency=medium

  * Fixing an incorrect variable being passed to GTK message dialog
creation function (LP: #1829401)

 -- William 'jawn-smith' Wilson   Tue, 26
Jan 2021 16:30:07 -0600

** Changed in: software-properties (Ubuntu Focal)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-properties in Ubuntu.
https://bugs.launchpad.net/bugs/1829401

Title:
  gi.repository.GLib.GError: pk-client-error-quark: could not do
  untrusted question as no klass support

Status in software-properties package in Ubuntu:
  Fix Released
Status in software-properties source package in Eoan:
  Won't Fix
Status in software-properties source package in Focal:
  Fix Released
Status in software-properties source package in Groovy:
  Fix Released

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem regarding 
software-properties.  This problem was most recently seen with package version 
0.98.2, the problem page at 
https://errors.ubuntu.com/problem/300ff7bf9068dc50ace4c5db5c4a34ba0dfc926d 
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/.

  [Back trace]
  Traceback (most recent call last):
    File 
"/usr/lib/python3/dist-packages/softwareproperties/gtk/DialogCacheOutdated.py", 
line 86, in on_pktask_finish
  results = self._pktask.generic_finish(result)
  gi.repository.GLib.GError: pk-client-error-quark: could not do untrusted 
question as no klass support (8)

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File 
"/usr/lib/python3/dist-packages/softwareproperties/gtk/DialogCacheOutdated.py", 
line 89, in on_pktask_finish
  Gtk.ButtonsType.CANCEL, _("Error while refreshing cache"))
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/Gtk.py", line 575, in 
__init__
  self._init(*args, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/Gtk.py", line 521, in 
__init__
  _window_init(self, *args, **kwargs)
    File "/usr/lib/python3/dist-packages/gi/overrides/__init__.py", line 319, 
in new_init
  return super_init_func(self, **new_kwargs)
  TypeError: could not convert value for property `transient_for' from 
DialogCacheOutdated to GtkWindow

  
  [Impact] 

   * If selected mirrors are not reachable or have
 expired GPG keys, software-properties-gtk
 would crash

  [Test Case]

   * Edit the file /usr/share/python-apt/templates/Ubuntu.mirrors

   * Find your locale in this file and add a non-existent URL
 to the list

   * Run software-properties-gtk and choose your newly added
 URL from the "Download From" dropdown menu

   * Press "Close" in the bottom right, and when
 prompted press "Reload"

   * You should be presented with an error window rather than
 the program crashing

  [Where problems could occur]

   * The new error window binds to the parent window. If the
 parent window has gotten into a bad state this could
 cause problems

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
I have tracked the issue down to an upstream issue with sane-backends,
with a fix here:

https://gitlab.com/sane-project/backends/-/issues/271

This is not a simple-scan bug.

** Bug watch added: gitlab.com/sane-project/backends/-/issues #271
   https://gitlab.com/sane-project/backends/-/issues/271

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in simple-scan package in Ubuntu:
  Triaged

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Ian Johnson
I think also that this means we should always ask for `snap list --all`
output when debugging these sorts of issues.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Ian Johnson
I don't think we could/should warn because we don't know for sure which
content slot should be used, just because the default-provider is
disabled doesn't mean that the user isn't trying to use some other
provider of the content interface.

We could maybe expose some additional property on interface slots which
forces a warning to be exposed, but that would be a fair amount of work.

What would be easier and more preferable I think (that would also
benefit more snaps) is to update the extension hook that is being used
here to use `snapctl is-connected ...` on all the content interface
plugs that should be coming from the platform snaps, that code if put
into upstream snapcraft would benefit all snaps built with the extension
that presumably all require using a platform snap.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915570] Re: Login screen password entry not working on systems with fingerprint support

2021-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package gnome-shell - 3.38.3-2ubuntu2

---
gnome-shell (3.38.3-2ubuntu2) hirsute; urgency=medium

  * d/p/gdm-Don-t-try-to-retry-authenticating-when-the-service-is.patch:
- gdm: Don't try to retry authenticating when the service is unavailable
  (LP: #1915570)

 -- Marco Trevisan (Treviño)   Tue, 16 Feb 2021
05:16:49 +0100

** Changed in: gnome-shell (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1915570

Title:
  Login screen password entry not working on systems with fingerprint
  support

Status in GNOME Shell:
  Unknown
Status in gnome-shell package in Ubuntu:
  Fix Released

Bug description:
  This bug is for the login package. This only affects users of the development 
release and does not affect stable users. The bug in the password entry causes 
either the password to be entered only for the login to hang, or when 
attempting to enter the password, the computer quickly deletes any characters 
entered as if backspace was being held therefore preventing a user from being 
able to log in.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu57
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.04
  InstallationDate: Installed on 2021-02-12 (0 days ago)
  InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Alpha amd64 (20210212)
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: gdm3 3.38.1-2ubuntu1.1
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Tags:  hirsute
  Uname: Linux 5.10.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  mtime.conffile..etc.gdm3.custom.conf: 2021-02-12T13:25:57.150125

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Olivier Tilloy
Interesting, thanks for this Stanislav.

Ian, do you think snapd could/should warn the user when a snap requests
connection to a content snap that is installed but disabled?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Stanislav Bocinec
So after further troubleshooting I found what was issue in my case -
having `gnome-3-28-1804` snap installed, but disabled.

After enabling it, `snap install chromium` now succeeds.

For the reference adding list of the related installed snaps:
```
$ snap list |egrep '(gnome|core|chromium|gtk)'
chromium  88.0.4324.150   1479   latest/stable
canonical*  -
core  16-2.48.2.1 10823  latest/stable
canonical*  core
core18202101281988   latest/stable
canonical*  base
core2020201210904latest/stable
canonical*  base
gnome-3-28-1804   3.28.0-19-g98f9e67.98f9e67  145latest/stable
canonical*  -
gnome-3-34-1804   0+git.3556cb3   66 latest/stable
canonical*  -
gnome-calculator  3.38.0+git7.c840c69c826latest/stable/…  
canonical*  -
gnome-characters  v3.34.0+git9.eeab5f2570latest/stable/…  
canonical*  -
gnome-logs3.36.0  103latest/stable/…  
canonical*  -
gnome-system-monitor  3.38.0-17-g38c1ce1d62   157latest/stable/…  
canonical*  -
gtk-common-themes 0.1-50-gf7627e4 1514   latest/stable/…  
canonical*  -
gtk2-common-themes0.1 13 latest/stable
canonical*  -
```

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915712] Re: [snap] configure hook fails because the gnome-3-28-1804 platform snap isn't connected

2021-02-16 Thread Stanislav Bocinec
I'm experiencing the same error on Ubuntu 20.04, that started to occur suddenly 
a few months ago (don't have the version numbers). Since then I was not able to 
update chromium, nor able to install it after remove & purge as it fails with 
the reported error:
```
# snap install chromium
error: cannot perform the following tasks:
- Run configure hook of "chromium" snap if present (run hook "configure": 
/snap/chromium/1479/snap/command-chain/hooks-configure-desktop: line 43: 
/snap/chromium/1479/gnome-platform/usr/bin/fc-cache: No such file or directory)
```

It seems to be an issue with `font-cache` not being properly mounted
from the host as you can read here https://forum.snapcraft.io/t/default-
chromium-fonts-are-missing-after-snapd-has-been-updated/21651/7.

The issue seems to be fixed in snapd upstream
https://github.com/snapcore/snapd/pull/9805 though not sure if and when
will this land in ubuntu.

Attaching the `snap changes` error output.

** Attachment added: "snap_changes_error-output.txt"
   
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1915712/+attachment/5464150/+files/snap_changes_error-output.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1915712

Title:
  [snap] configure hook fails because the gnome-3-28-1804 platform snap
  isn't connected

Status in chromium-browser package in Ubuntu:
  Incomplete
Status in snapd package in Ubuntu:
  Incomplete

Bug description:
  happened on do-release-upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: chromium-browser 87.0.4280.66-0ubuntu0.18.04.1
  ProcVersionSignature: Ubuntu 4.15.0-135.139-generic 4.15.18
  Uname: Linux 4.15.0-135-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.23
  Architecture: amd64
  DRM.card0-DP-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-HDMI-A-1:
   enabled: disabled
   dpms: Off
   status: disconnected
   edid-base64: 
   modes:
  DRM.card0-VGA-1:
   enabled: enabled
   dpms: On
   status: connected
   edid-base64: 
AP///wAEcmOt9h4RchURAQMIJh546JrlplhJmSMRUFS/7wABAQEBAQEBAQEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/wBMNzgwQzA1NDQwNDQK/ABBTDE5MTYKICAgICAgAGE=
   modes: 1280x1024 1280x1024 1024x768 1024x768 1024x768 832x624 800x600 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
  Date: Mon Feb 15 13:26:20 2021
  Desktop-Session:
   'None'
   'None'
   '/usr/local/share:/usr/share:/var/lib/snapd/desktop'
  Env:
   'None'
   'None'
  ErrorMessage: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  InstallationDate: Installed on 2017-06-27 (1328 days ago)
  InstallationMedia: Kubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215)
  InstalledPlugins:
   
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Hewlett-Packard HP Pro3500 Series
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-135-generic 
root=UUID=093e88ea-7b5e-4e39-b56c-03b28ad06dd2 ro quiet splash vt.handoff=1
  Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  SourcePackage: chromium-browser
  Title: package chromium-browser 87.0.4280.66-0ubuntu0.18.04.1 failed to 
install/upgrade: »neues chromium-browser-Skript des Paketes 
pre-installation«-Unterprozess gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to focal on 2021-02-15 (0 days ago)
  dmi.bios.date: 10/25/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2ABF
  dmi.board.vendor: Foxconn
  dmi.board.version: 3.20
  dmi.chassis.asset.tag: CZC34935PY
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd10/25/2013:svnHewlett-Packard:pnHPPro3500Series:pvr:rvnFoxconn:rn2ABF:rvr3.20:cvnHewlett-Packard:ct3:cvr:
  dmi.product.family: 103C_53307F G=D
  dmi.product.name: HP Pro3500 Series
  dmi.sys.vendor: Hewlett-Packard
  modified.conffile..etc.default.chromium-browser: [deleted]

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915840] [NEW] add-apt-repository does not remove URI if dist is different from local dist

2021-02-16 Thread Dan Streetman
Public bug reported:

if a configured repository has a 'dist' value different from the local
system's codename, add-apt-repository will not remove it.

For example, if this line is currently configured:

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

It will not be removed with the command:

sudo add-apt-repository -r -U http://dl.google.com/linux/chrome/deb/

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-properties in Ubuntu.
https://bugs.launchpad.net/bugs/1915840

Title:
  add-apt-repository does not remove URI if dist is different from local
  dist

Status in software-properties package in Ubuntu:
  New

Bug description:
  if a configured repository has a 'dist' value different from the local
  system's codename, add-apt-repository will not remove it.

  For example, if this line is currently configured:

  deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

  It will not be removed with the command:

  sudo add-apt-repository -r -U http://dl.google.com/linux/chrome/deb/

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
Here is some debug output when a scan is initiated.

The brightness and contrast values do seem to apply from the front-end:

[+16.68s] DEBUG: scanner.vala:1674: Scanner.scan
("genesys:libusb:001:010", dpi=600, scan_mode=ScanMode.GRAY, depth=2,
type=single, paper_width=2159, paper_height=2794, brightness=-100,
contrast=100, delay=3000ms)


(I did set -100 and 100 respectively for this test).

** Attachment added: "ss-canonlide35.txt"
   
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1327801/+attachment/5464149/+files/ss-canonlide35.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in simple-scan package in Ubuntu:
  Triaged

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1906671] Re: [MIR] usrmerge

2021-02-16 Thread Christian Ehrhardt 
This is already promoted, but new tasks were added and appear in the MIR
review queue but are not actually meant to also be promoted. If you
really need something prepare it accordingly and add back the mir Team
subscription.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ubuntu-meta in Ubuntu.
https://bugs.launchpad.net/bugs/1906671

Title:
  [MIR] usrmerge

Status in debootstrap package in Ubuntu:
  New
Status in ubuntu-meta package in Ubuntu:
  New
Status in usrmerge package in Ubuntu:
  Fix Released

Bug description:
  [Availability]

  In universe.

  [Rationale]

  Since Disco, Ubuntu has defaulted to merged usr systems, specifically
  that /lib is a symlink to /usr/lib.

  However, we have not yet completed this transition for systems that
  were installed pre-disco.

  This package performs such transition using maintainer scripts. It has
  been tested and improved thoroughly and has managed to work with all
  sorts of packages that happened to be installed on the system.

  For systems that were installed post disco, this package is
  effectively a no-op. Systems that use nfs mounting with split /usr
  care must be taken to ensure that initrd mounts nfs-backed /usr. The
  package aborts configuration if such rare configuration is detected to
  avoid potentially bracking reboot.

  For all other systems, we always provide a fallback initrd which has
  been mounting both / and /usr whenever possible.

  [Security]

  The package ships two perl scripts, which are executed by root from
  maintainer scripts.

  [Quality assurance]

  There is debconf question one can preseed to prevent the migration,
  there is README.Debian explaining what it does and how. It is a one-
  way / one-time migration, removing the package will not undo the
  migration.

  [Dependencies]

  Perl, and many documented conflicts to ensure that usrmerge compatible
  packages are on disk prior to migration.

  [Standards compliance]

  Adheres to Debian Policy.

  [Maintenance]

  Maintained in Debian, merged and supported by Foundations,
  foundations-bugs is subscribed.

  [Background information]

  This will complete usrmerge migration, and will allow to switch
  buildds to build packages with merged-usr by default.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1327801] Re: Bightness and contrast settings have no effect

2021-02-16 Thread Pat Suwalski
Like Michael in #17, I noticed that since around 20.04 my Canon LiDE 35
has no brightness-contrast control, making simple-scan unusable for me.

I've worked around by using other software, but it's starting to bug me
as more stuff needs to be submitted online in today's world.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1327801

Title:
  Bightness and contrast settings have no effect

Status in simple-scan package in Ubuntu:
  Triaged

Bug description:
  Scanner: Canon, Inc. CanoScan N1240U/LiDE 30
  Ubuntu 14.04, Simple Scan version 3.12.1.

  Adjusting the settings of brightness and contrast has no effect.

  With the default for scanning in "text" mode being too bright, this makes 
"Simple Scan" in text mode unusable for me.
  Brightness and contrast settings don't work in "foto" mode, too. But the 
default of the foto mode is usable.

  Brightness setting does work in program "Skanlite".

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1873052] Re: Showing two cursors after login

2021-02-16 Thread Iain Lane
** Tags removed: rls-ff-incoming

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1873052

Title:
  Showing two cursors after login

Status in gnome-shell package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Fix Released
Status in mutter package in Ubuntu:
  Confirmed
Status in xorg-server package in Ubuntu:
  In Progress
Status in gnome-shell source package in Focal:
  Confirmed
Status in linux source package in Focal:
  Confirmed
Status in mutter source package in Focal:
  Confirmed
Status in xorg-server source package in Focal:
  Confirmed

Bug description:
  Showing two cursors after login to ubuntu-desktop.

  One cursor moves and is scaled, and one is stationary mid screen and
  not scaled.

  The moving cursor does not appear on screenshots, making it difficult
  to upload a screenshot.

  Previously reported:
  https://gitlab.gnome.org/GNOME/mutter/issues/904
  https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1827428

  Package: mutter 3.36.1-3ubuntu1

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: gnome-shell 3.36.1-4ubuntu1
  ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
  Uname: Linux 5.4.0-21-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.11-0ubuntu26
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Apr 15 20:06:53 2020
  DisplayManager: gdm3
  RelatedPackageVersions: mutter-common 3.36.1-3ubuntu1
  SourcePackage: gnome-shell
  UpgradeStatus: Upgraded to focal on 2020-03-31 (15 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1895643] Re: Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

2021-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package thunderbird -
1:78.7.1+build1-0ubuntu0.20.10.4

---
thunderbird (1:78.7.1+build1-0ubuntu0.20.10.4) groovy; urgency=medium

  * No-change rebuild to add SRU bug reference (LP: #1895643)

thunderbird (1:78.7.1+build1-0ubuntu0.20.10.3) groovy; urgency=medium

  * Update cbindgen to 0.17.0
- debian/build/create-tarball.py
  * Add versioned breaks on tinyjsd and jsunit to ensure they are removed when
upgrading from focal to groovy (these packages were removed from the
archive in groovy)
- debian/control{,.in}

thunderbird (1:78.7.1+build1-0ubuntu0.20.10.2) groovy; urgency=medium

  * Add a versioned Breaks declaration on enigmail, for a smooth upgrade
- debian/control{,.in}

thunderbird (1:78.7.1+build1-0ubuntu0.20.10.1) groovy; urgency=medium

  * New upstream stable release (78.7.1build1)

  * Update cbindgen to 0.17.0
- debian/build/create-tarball.py

thunderbird (1:78.7.0+build2-0ubuntu0.20.10.1) groovy; urgency=medium

  * New upstream stable release (78.7.0build2)

 -- Olivier Tilloy   Fri, 12 Feb 2021
15:21:49 +0100

** Changed in: thunderbird (Ubuntu Groovy)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to thunderbird in Ubuntu.
https://bugs.launchpad.net/bugs/1895643

Title:
  Backport Thunderbird 78 to 20.04 LTS and 18.04 LTS

Status in thunderbird package in Ubuntu:
  Fix Released
Status in jsunit source package in Bionic:
  New
Status in thunderbird source package in Bionic:
  Triaged
Status in jsunit source package in Focal:
  Fix Committed
Status in thunderbird source package in Focal:
  Fix Committed
Status in tinyjsd source package in Focal:
  Fix Committed
Status in thunderbird source package in Groovy:
  Fix Released

Bug description:
  Upstream Thunderbird version 78.2.2 should be a candidate for
  backporting to stable Ubuntu releases.

  I've successfully built 78.2.1 against both with forcing nodejs
  version (20.04, 18.04) and disabling AV1 support due to too old nasm
  (18.04). Attaching debdiffs here.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915449] Re: XWayland hangs at 100% of CPU causing gnome-shell to hang

2021-02-16 Thread Ken VanDine
** Tags removed: rls-hh-incoming

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1915449

Title:
  XWayland hangs at 100% of CPU causing gnome-shell to hang

Status in X.Org X server:
  Unknown
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  This is happening in Hirsute (running in vmware player) quite easily,
  just move around a firefox (or any other x11 window) around, hitting
  the shell edges and you'll get all freezing with Xwayland process at
  100%.

  Hangs seems to have this trace:

  0x55b9abfb69b1 in xwl_screen_post_damage (xwl_screen=0x55b9ac423dd0) at 
../../../../../hw/xwayland/xwayland.c:869
  869   ../../../../../hw/xwayland/xwayland.c: No such file or directory.
  (gdb) bt
  #0  0x55b9abfb69b1 in xwl_screen_post_damage (xwl_screen=0x55b9ac423dd0) 
at ../../../../../hw/xwayland/xwayland.c:869
  #1  block_handler (data=0x55b9ac423dd0, timeout=) at 
../../../../../hw/xwayland/xwayland.c:1037
  #2  0x55b9ac0ecf3e in BlockHandler 
(pTimeout=pTimeout@entry=0x7ffdc8574204) at ../../../../dix/dixutils.c:388
  #3  0x55b9ac119a52 in WaitForSomething (are_ready=0) at 
../../../../os/WaitFor.c:201
  #4  0x55b9ac0e8297 in Dispatch () at ../../../../dix/dispatch.c:421
  #5  0x55b9ac0ec5a4 in dix_main (argc=16, argv=0x7ffdc85743e8, 
envp=) at ../../../../dix/main.c:276
  #6  0x7f5ab299d565 in __libc_start_main (main=0x55b9abfb5a80 , 
argc=16, argv=0x7ffdc85743e8, init=,
  fini=, rtld_fini=, 
stack_end=0x7ffdc85743d8) at ../csu/libc-start.c:332
  #7  0x55b9abfb5abe in _start ()

  (gdb) info local
  xwl_window = 0x55b9acbf18f0
  next_xwl_window = 0x7ffdc8574150
  commit_window_list = {next = 0x55b9acbf1910, prev = 0x55b9acbf1910}
  xwl_window = 
  next_xwl_window = 
  commit_window_list = {next = , prev = }

  (gdb) print commit_window_list
  $1 = {next = 0x55b9acbf1910, prev = 0x55b9acbf1910}
  (gdb) print commit_window_list->next
  $2 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next
  $3 = (struct xorg_list *) 0x7ffdc8574170
  (gdb) print commit_window_list->next->next->next
  $4 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next->next->next
  $5 = (struct xorg_list *) 0x7ffdc8574170
  (gdb) print commit_window_list->next->next->next->next->next
  $6 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next->next->next->next->next
  $7 = (struct xorg_list *) 0x7ffdc8574170

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915449] Re: XWayland hangs at 100% of CPU causing gnome-shell to hang

2021-02-16 Thread Timo Aaltonen
** Changed in: xorg-server (Ubuntu)
 Assignee: (unassigned) => Timo Aaltonen (tjaalton)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1915449

Title:
  XWayland hangs at 100% of CPU causing gnome-shell to hang

Status in X.Org X server:
  Unknown
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  This is happening in Hirsute (running in vmware player) quite easily,
  just move around a firefox (or any other x11 window) around, hitting
  the shell edges and you'll get all freezing with Xwayland process at
  100%.

  Hangs seems to have this trace:

  0x55b9abfb69b1 in xwl_screen_post_damage (xwl_screen=0x55b9ac423dd0) at 
../../../../../hw/xwayland/xwayland.c:869
  869   ../../../../../hw/xwayland/xwayland.c: No such file or directory.
  (gdb) bt
  #0  0x55b9abfb69b1 in xwl_screen_post_damage (xwl_screen=0x55b9ac423dd0) 
at ../../../../../hw/xwayland/xwayland.c:869
  #1  block_handler (data=0x55b9ac423dd0, timeout=) at 
../../../../../hw/xwayland/xwayland.c:1037
  #2  0x55b9ac0ecf3e in BlockHandler 
(pTimeout=pTimeout@entry=0x7ffdc8574204) at ../../../../dix/dixutils.c:388
  #3  0x55b9ac119a52 in WaitForSomething (are_ready=0) at 
../../../../os/WaitFor.c:201
  #4  0x55b9ac0e8297 in Dispatch () at ../../../../dix/dispatch.c:421
  #5  0x55b9ac0ec5a4 in dix_main (argc=16, argv=0x7ffdc85743e8, 
envp=) at ../../../../dix/main.c:276
  #6  0x7f5ab299d565 in __libc_start_main (main=0x55b9abfb5a80 , 
argc=16, argv=0x7ffdc85743e8, init=,
  fini=, rtld_fini=, 
stack_end=0x7ffdc85743d8) at ../csu/libc-start.c:332
  #7  0x55b9abfb5abe in _start ()

  (gdb) info local
  xwl_window = 0x55b9acbf18f0
  next_xwl_window = 0x7ffdc8574150
  commit_window_list = {next = 0x55b9acbf1910, prev = 0x55b9acbf1910}
  xwl_window = 
  next_xwl_window = 
  commit_window_list = {next = , prev = }

  (gdb) print commit_window_list
  $1 = {next = 0x55b9acbf1910, prev = 0x55b9acbf1910}
  (gdb) print commit_window_list->next
  $2 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next
  $3 = (struct xorg_list *) 0x7ffdc8574170
  (gdb) print commit_window_list->next->next->next
  $4 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next->next->next
  $5 = (struct xorg_list *) 0x7ffdc8574170
  (gdb) print commit_window_list->next->next->next->next->next
  $6 = (struct xorg_list *) 0x55b9acbf1910
  (gdb) print commit_window_list->next->next->next->next->next->next
  $7 = (struct xorg_list *) 0x7ffdc8574170

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915802] Re: No screen sharing on Firefox with Wayland

2021-02-16 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1730612 ***
https://bugs.launchpad.net/bugs/1730612

The firefox side of things should be covered, but it's pending a mutter update 
in hirsute (bug #1730612).
It is highly unlikely that this will be backported to focal or groovy though.

I'm marking this bug as a duplicate of bug #1730612, if it still doesn't
work after the mutter fix lands in hirsute, please de-duplicate. Thanks!

** This bug has been marked a duplicate of bug 1730612
   Enable Remote desktop feature during build

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1915802

Title:
  No screen sharing on Firefox with Wayland

Status in firefox package in Ubuntu:
  New

Bug description:
  On Ubuntu 20.04.2 or 20.10, if I switch to a Wayland session, and open 
Firefox (currently 85.0.1) on a site using some screen sharing, Firefox does 
not list the available windows but only a line "Use operating system settings".
  After choosing this only option, nothing happens and my screen is not shared.

  When using the default Xorg session, Firefox lists the available
  windows and allows to share them.

  Steps to reproduce :
  - open a Wayland session
  - open Firefox on https://meet.jit.si/
  - start a conference and join it
  - try to share your screen (icon of a screen at the bottom left)

  Expected behavior : Firefox should ask me which window to share (like
  on Xorg)

  Actual behavior : Firefox does not list any window, but only a "Use
  operating system settings" line, and selecting it does nothing

  NB : installing and starting pipewire (as suggested in 
http://jgrulich.cz/2018/07/04/how-to-enable-and-use-screen-sharing-on-wayland/) 
does not help
  NB2 : the behavior is the same on other sites, like Google Meet

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915824] [NEW] High CPU load from gnome-shell

2021-02-16 Thread Robin Clarke
Public bug reported:

When doing nothing else, there is a constant base-line of CPU usage from
gnome-shell:

```
op - 14:55:09 up 6 days,  1:39,  1 user,  load average: 1.36, 1.52, 1.77
Tasks: 400 total,   3 running, 397 sleeping,   0 stopped,   0 zombie
%Cpu(s):  9.5 us,  2.9 sy,  0.0 ni, 85.0 id,  0.1 wa,  0.0 hi,  2.6 si,  0.0 st
MiB Mem :  31848.3 total,   4007.8 free,  12690.2 used,  15150.4 buff/cache
MiB Swap:980.0 total,946.3 free, 33.7 used.  18037.0 avail Mem 

PID USER  PR  NIVIRTRESSHR S  %CPU  %MEM TIME+ COMMAND  

 
   3236 myuser   20   0 5242476 902752 130032 R  41.9   2.8 278:24.48 
gnome-shell  
```

it is always burning one CPU somewhere between 30-60%

Using strace for the process ID:

```
% time seconds  usecs/call callserrors syscall
-- --- --- - - 
 48.141.000284   1697706645150 stat
 11.610.241121   3 62789 52442 recvmsg
  8.630.179359   4 43747   poll
  5.670.117864   2 44505   getpid
  4.940.102593   2 44238   getdents64
  4.330.089898   1 49124 22123 openat
  4.160.086467  16  5215   ioctl
  3.910.081323   5 14263   writev
  2.110.043793   1 27259   close
  1.680.034954   1 27001   fstat
  1.150.023988   3  7035   sched_yield
  1.100.022808   2  9373   read
  0.780.016186   3  5119   write
  0.520.010716   3  3541   189 futex
  0.440.009226   2  4094   mprotect
  0.330.006878   7   934   clock_nanosleep
  0.320.006646   3  2018   mmap
  0.170.003526   1  2040   munmap
  0.000.10   012   getrusage
  0.000.06   6 1   restart_syscall
  0.000.04   0 5   recvfrom
  0.000.00   0 2   lseek
  0.000.00   0 3   timerfd_create
  0.000.00   0 3   timerfd_settime
-- --- --- - - 
100.002.077650   1050027719904 total

```

What could be causing this?

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-shell 3.36.4-1ubuntu1~20.04.2
ProcVersionSignature: Ubuntu 5.4.0-65.73-generic 5.4.78
Uname: Linux 5.4.0-65-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Tue Feb 16 14:50:18 2021
DisplayManager: lightdm
InstallationDate: Installed on 2018-04-27 (1026 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
RelatedPackageVersions: mutter-common 3.36.7+git20201123-0.20.04.1
SourcePackage: gnome-shell
UpgradeStatus: Upgraded to focal on 2021-01-22 (25 days ago)

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


** Tags: amd64 apport-bug focal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1915824

Title:
  High CPU load from gnome-shell

Status in gnome-shell package in Ubuntu:
  New

Bug description:
  When doing nothing else, there is a constant base-line of CPU usage
  from gnome-shell:

  ```
  op - 14:55:09 up 6 days,  1:39,  1 user,  load average: 1.36, 1.52, 1.77
  Tasks: 400 total,   3 running, 397 sleeping,   0 stopped,   0 zombie
  %Cpu(s):  9.5 us,  2.9 sy,  0.0 ni, 85.0 id,  0.1 wa,  0.0 hi,  2.6 si,  0.0 
st
  MiB Mem :  31848.3 total,   4007.8 free,  12690.2 used,  15150.4 buff/cache
  MiB Swap:980.0 total,946.3 free, 33.7 used.  18037.0 avail Mem 

  PID USER  PR  NIVIRTRESSHR S  %CPU  %MEM TIME+ 
COMMAND 
  
 3236 myuser   20   0 5242476 902752 130032 R  41.9   2.8 278:24.48 
gnome-shell  
  ```

  it is always burning one CPU somewhere between 30-60%

  Using strace for the process ID:

  ```
  % time seconds  usecs/call callserrors syscall
  -- --- --- - - 
   48.141.000284   1697706645150 stat
   11.610.241121   3 62789 52442 recvmsg
8.630.179359   4 43747   poll
5.670.117864   2 44505   getpid
4.940.102593   2 44238   getdents64
4.330.089898   1 49124 

[Desktop-packages] [Bug 1915802] Re: No screen sharing on Firefox with Wayland

2021-02-16 Thread Paul White
** Package changed: ubuntu => firefox (Ubuntu)

** Tags added: focal groovy

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to firefox in Ubuntu.
https://bugs.launchpad.net/bugs/1915802

Title:
  No screen sharing on Firefox with Wayland

Status in firefox package in Ubuntu:
  New

Bug description:
  On Ubuntu 20.04.2 or 20.10, if I switch to a Wayland session, and open 
Firefox (currently 85.0.1) on a site using some screen sharing, Firefox does 
not list the available windows but only a line "Use operating system settings".
  After choosing this only option, nothing happens and my screen is not shared.

  When using the default Xorg session, Firefox lists the available
  windows and allows to share them.

  Steps to reproduce :
  - open a Wayland session
  - open Firefox on https://meet.jit.si/
  - start a conference and join it
  - try to share your screen (icon of a screen at the bottom left)

  Expected behavior : Firefox should ask me which window to share (like
  on Xorg)

  Actual behavior : Firefox does not list any window, but only a "Use
  operating system settings" line, and selecting it does nothing

  NB : installing and starting pipewire (as suggested in 
http://jgrulich.cz/2018/07/04/how-to-enable-and-use-screen-sharing-on-wayland/) 
does not help
  NB2 : the behavior is the same on other sites, like Google Meet

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915802] [NEW] No screen sharing on Firefox with Wayland

2021-02-16 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

On Ubuntu 20.04.2 or 20.10, if I switch to a Wayland session, and open Firefox 
(currently 85.0.1) on a site using some screen sharing, Firefox does not list 
the available windows but only a line "Use operating system settings".
After choosing this only option, nothing happens and my screen is not shared.

When using the default Xorg session, Firefox lists the available windows
and allows to share them.

Steps to reproduce :
- open a Wayland session
- open Firefox on https://meet.jit.si/
- start a conference and join it
- try to share your screen (icon of a screen at the bottom left)

Expected behavior : Firefox should ask me which window to share (like on
Xorg)

Actual behavior : Firefox does not list any window, but only a "Use
operating system settings" line, and selecting it does nothing

NB : installing and starting pipewire (as suggested in 
http://jgrulich.cz/2018/07/04/how-to-enable-and-use-screen-sharing-on-wayland/) 
does not help
NB2 : the behavior is the same on other sites, like Google Meet

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


** Tags: bot-comment wayland
-- 
No screen sharing on Firefox with Wayland
https://bugs.launchpad.net/bugs/1915802
You received this bug notification because you are a member of Desktop 
Packages, which is subscribed to firefox in Ubuntu.

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915796] [NEW] Xorg performance is worse than expected

2021-02-16 Thread Balashanmugam
Public bug reported:

when I am logging in it takes 30 seconds - 2 minutes to display.
At the worst case it takes 5 minutes.
And also when left idle for long hours it freezes or crashes and what i will do 
is SSH it and reboot
Logging to SSH itself taking 10 minutes when Xorg freezes or crashes
And also when I open Terminal and run sudo apt update
and then if it shown upgrades are available 
And then if I run sudo apt upgrade and minimize the window and open firefox 
suddenly Xorg freezes for few seconds 
Sometimes when I uninstall a program that is
sudo apt-get remove 
and open show applications it show animation slowly and then it freezes and 
crashed.
Then I have to reboot via SSH.
Description:Ubuntu 20.04.2 LTS
Release:20.04

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: xorg 1:7.7+19ubuntu14
ProcVersionSignature: hostname 5.8.0-43.49~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-43-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CompositorRunning: None
Date: Tue Feb 16 15:05:42 2021
DistUpgraded: Fresh install
DistroCodename: focal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 VMware SVGA II Adapter [15ad:0405] (prog-if 00 [VGA controller])
   Subsystem: VMware SVGA II Adapter [15ad:0405]
InstallationDate: Installed on 2021-02-05 (10 days ago)
InstallationMedia: Ubuntu 20.04.2 LTS "Focal Fossa" - Release amd64 (20210204)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 004: ID 0e0f:0008 VMware, Inc. VMware Virtual USB Mouse
 Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
 Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: VMware, Inc. VMware7,1
ProcEnviron:
 LANGUAGE=en_IN:en
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_IN
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-43-generic 
root=UUID=fd8451d8-78e6-471e-aa1e-cae417c043fb ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/10/2020
dmi.bios.vendor: VMware, Inc.
dmi.bios.version: VMW71.00V.16722896.B64.2008100651
dmi.board.name: 440BX Desktop Reference Platform
dmi.board.vendor: Intel Corporation
dmi.board.version: None
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 1
dmi.chassis.vendor: No Enclosure
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnVMware,Inc.:bvrVMW71.00V.16722896.B64.2008100651:bd08/10/2020:svnVMware,Inc.:pnVMware7,1:pvrNone:rvnIntelCorporation:rn440BXDesktopReferencePlatform:rvrNone:cvnNoEnclosure:ct1:cvrN/A:
dmi.product.name: VMware7,1
dmi.product.version: None
dmi.sys.vendor: VMware, Inc.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.102-1ubuntu1~20.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.6-0ubuntu0.20.04.1
version.libgl1-mesa-glx: libgl1-mesa-glx 20.2.6-0ubuntu0.20.04.1
version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1.2~20.04.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug focal ubuntu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1915796

Title:
  Xorg performance is worse than expected

Status in xorg package in Ubuntu:
  New

Bug description:
  when I am logging in it takes 30 seconds - 2 minutes to display.
  At the worst case it takes 5 minutes.
  And also when left idle for long hours it freezes or crashes and what i will 
do is SSH it and reboot
  Logging to SSH itself taking 10 minutes when Xorg freezes or crashes
  And also when I open Terminal and run sudo apt update
  and then if it shown upgrades are available 
  And then if I run sudo apt upgrade and minimize the window and open firefox 
suddenly Xorg freezes for few seconds 
  Sometimes when I uninstall a program that is
  sudo apt-get remove 
  and open show applications it show animation slowly and then it freezes and 
crashed.
  Then I have to reboot via SSH.
  Description:  Ubuntu 20.04.2 LTS
  Release:  20.04

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: hostname 5.8.0-43.49~20.04.1-generic 5.8.18
  Uname: Linux 5.8.0-43-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.16
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompositorRunning: None
  Date: Tue Feb 16 15:05:42 2021
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   VMware SVGA II Adapter [15ad:0405] (prog-if 00 [VGA controller])
 

[Desktop-packages] [Bug 1854371] Re: Input lag with Razer Naga Trinity mouse

2021-02-16 Thread Foulques
I am not on Ubuntu anymore and my hardware is not the same, but today I
cannot reproduce this bug one my system.

OS : Manjaro Linux
Kernel : 5.10.15-1-MANJARO
xorg-server : 1.20.10-3

CPU : Ryzen 5 3600
Graphic card : AMD Radeon RX 5700 XT 
Mesa : 20.3.4

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1854371

Title:
  Input lag with Razer Naga Trinity mouse

Status in xorg-server package in Ubuntu:
  Confirmed

Bug description:
  When pressing multiple keys on my keyboard (Roccat isku FX) and pressing 
repetitively the buttons on the "numpad" (side buttons) of my mouse (Razer Naga 
Trinity) at the same time, the system freeze while doing this. All become 
normal again when I stop doing this.
  While freezing, I can see the Xorg process going up to 60/70% of the CPU.

  Not sure if it is a Xorg or driver related problem, or anything else.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: xorg 1:7.7+19ubuntu12
  ProcVersionSignature: Ubuntu 5.3.0-23.25-generic 5.3.7
  Uname: Linux 5.3.0-23-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] est un dossier: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  435.21  Sun Aug 25 08:17:57 
CDT 2019
   GCC version:  gcc version 9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2)
  ApportVersion: 2.20.11-0ubuntu8.2
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission non accordée: '/var/log/boot.log'
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Nov 28 15:25:50 2019
  DistUpgraded: 2019-10-25 11:21:07,314 ERROR got error from PostInstallScript 
./xorg_fix_proprietary.py (g-exec-error-quark: L’exécution du processus fils « 
./xorg_fix_proprietary.py » a échoué (Aucun fichier ou dossier de ce type) (8))
  DistroCodename: eoan
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 435.21, 5.3.0-22-generic, x86_64: installed
   nvidia, 435.21, 5.3.0-23-generic, x86_64: installed
   openrazer-driver, 2.6.0, 5.3.0-23-generic, x86_64: installed
   virtualbox, 6.0.14, 5.3.0-22-generic, x86_64: installed
   virtualbox, 6.0.14, 5.3.0-23-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation GM206 [GeForce GTX 960] [10de:1401] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: ZOTAC International (MCO) Ltd. GM206 [GeForce GTX 960] 
[19da:1385]
  MachineType: System manufacturer System Product Name
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-23-generic 
root=UUID=eabe8e30-c27a-4b40-8af2-38ffd8bcbcc9 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to eoan on 2019-10-25 (34 days ago)
  dmi.bios.date: 02/28/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1801
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8Z77-V LX
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1801:bd02/28/2013:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8Z77-VLX:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.99-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.1-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.5+git20191008-0ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.0.1-1ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20190815-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1915751] Re: Sharing is enabled out of the box

2021-02-16 Thread fossfreedom
Hi Seb,

  I was actually using Ubuntu Budgie when I noticed this.  At the time
gnome-remote-desktop wasn't installed and it was the older mutter [in
the release pocket] (not the pipewire enabled version in proposed).

gnome-remote-desktop has a serious issue for us (separate bug report
on that package) due to a runtime dependency on gnome-shell.

I'll double check tonight on a clean install what happens with a newer
mutter (initially) and then check what happens when installing
gnome-remote-desktop.

David

On Tue, 16 Feb 2021 at 09:00, Sebastien Bacher
<1915...@bugs.launchpad.net> wrote:
>
> Thank you for your bug report, what shell version do you use? The newer
> one with pipewire enabled? is gnome-remote-desktop installed?
>
> ** Changed in: gnome-settings-daemon (Ubuntu)
>Importance: Undecided => High
>
> ** Tags added: rls-hh-incoming
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1915751
>
> Title:
>   Sharing is enabled out of the box
>
> Status in gnome-settings-daemon package in Ubuntu:
>   New
>
> Bug description:
>   Apologies if this is the wrong package.
>
>   Using Ubuntu Budgie
>
>   I note that GNOME Settings - Sharing is enabled by default and that
>   "Remote Login" is ticked to be on.  This could be construed as a
>   security issue.
>
>   I would have expected a user to enable if sharing should be possible -
>   certainly "Remote Login" shouldnt be enabled by default out-of-the-
>   box.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 21.04
>   Package: gnome-settings-daemon 3.38.1-3ubuntu2
>   ProcVersionSignature: Ubuntu 5.8.0-36.40+21.04.1-generic 5.8.18
>   Uname: Linux 5.8.0-36-generic x86_64
>   ApportVersion: 2.20.11-0ubuntu57
>   Architecture: amd64
>   CasperMD5CheckResult: unknown
>   CurrentDesktop: Budgie:GNOME
>   Date: Mon Feb 15 19:01:17 2021
>   InstallationDate: Installed on 2021-02-08 (6 days ago)
>   InstallationMedia: Ubuntu-Budgie 21.04 "Hirsute Hippo" - Alpha amd64 
> (20210208)
>   SourcePackage: gnome-settings-daemon
>   UpgradeStatus: No upgrade log present (probably fresh install)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1915751/+subscriptions

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1915751

Title:
  Sharing is enabled out of the box

Status in gnome-settings-daemon package in Ubuntu:
  New

Bug description:
  Apologies if this is the wrong package.

  Using Ubuntu Budgie

  I note that GNOME Settings - Sharing is enabled by default and that
  "Remote Login" is ticked to be on.  This could be construed as a
  security issue.

  I would have expected a user to enable if sharing should be possible -
  certainly "Remote Login" shouldnt be enabled by default out-of-the-
  box.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: gnome-settings-daemon 3.38.1-3ubuntu2
  ProcVersionSignature: Ubuntu 5.8.0-36.40+21.04.1-generic 5.8.18
  Uname: Linux 5.8.0-36-generic x86_64
  ApportVersion: 2.20.11-0ubuntu57
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: Budgie:GNOME
  Date: Mon Feb 15 19:01:17 2021
  InstallationDate: Installed on 2021-02-08 (6 days ago)
  InstallationMedia: Ubuntu-Budgie 21.04 "Hirsute Hippo" - Alpha amd64 
(20210208)
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915742] Re: gvfsd-google used too much memory

2021-02-16 Thread Sebastien Bacher
Thank you for your bug report, could you report it directly upstream on
https://gitlab.gnome.org/GNOME/gvfs/-/issues ?

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/1915742

Title:
  gvfsd-google used too much memory

Status in gvfs package in Ubuntu:
  New

Bug description:
  Problem with `gvfs-google`

  Description:  Ubuntu 20.10
  Release:  20.10

  Package already exist on machine.

  I want to copy a large file form google drive to my another drive. So
  i logged it my drive in account. This give me access to dive in
  nautilus. Now when i copy files between drive to some local drive.
  Then it should run smooth. And consume normal RAM.

  When you copy big files like 1-2 files total of 9 GB. Then this package 
`gvfsd-google` consume enough memory that causes the system to freeze. I have 8 
GB of Ram. And it consume all then I have to open tty3, When I used `top` 
command then I got that it uses enough memory to crash my system. Then i killed 
it. To regain my responsiveness to my system.
  This doesn't happened earlier. But it starts happening when i copy large 
file. 
  It also consume some memory in my 8 GB swapfile.
  I have added a screenshot of it.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1915751] Re: Sharing is enabled out of the box

2021-02-16 Thread Sebastien Bacher
Thank you for your bug report, what shell version do you use? The newer
one with pipewire enabled? is gnome-remote-desktop installed?

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

** Tags added: rls-hh-incoming

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1915751

Title:
  Sharing is enabled out of the box

Status in gnome-settings-daemon package in Ubuntu:
  New

Bug description:
  Apologies if this is the wrong package.

  Using Ubuntu Budgie

  I note that GNOME Settings - Sharing is enabled by default and that
  "Remote Login" is ticked to be on.  This could be construed as a
  security issue.

  I would have expected a user to enable if sharing should be possible -
  certainly "Remote Login" shouldnt be enabled by default out-of-the-
  box.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: gnome-settings-daemon 3.38.1-3ubuntu2
  ProcVersionSignature: Ubuntu 5.8.0-36.40+21.04.1-generic 5.8.18
  Uname: Linux 5.8.0-36-generic x86_64
  ApportVersion: 2.20.11-0ubuntu57
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: Budgie:GNOME
  Date: Mon Feb 15 19:01:17 2021
  InstallationDate: Installed on 2021-02-08 (6 days ago)
  InstallationMedia: Ubuntu-Budgie 21.04 "Hirsute Hippo" - Alpha amd64 
(20210208)
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2021-02-16 Thread Marton Danko
Hi Coiby,

Here are they:
$ sudo cat /sys/kernel/debug/gpio|grep pin130 -A1
pin130  Level trigger| Active low| interrupt is enabled| interrupt is unmasked| 
disable wakeup in S0i3 state| disable wakeup in S3 state|
 disable wakeup in S4/S5 state| input is high|   pull-up is disabled| Pull-down 
is disabled|   output is disabled| debouncing filter disabled|   0x51b00

I did a left, right and middle click. Between them 2-3 sec delay.

** Attachment added: "evtest"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1887190/+attachment/5464037/+files/evtest

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-input-libinput in Ubuntu.
https://bugs.launchpad.net/bugs/1887190

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

Status in Pop!_OS:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in xserver-xorg-input-libinput package in Ubuntu:
  Confirmed
Status in linux package in Arch Linux:
  Fix Committed
Status in linux package in Fedora:
  Confirmed
Status in linux package in openSUSE:
  New

Bug description:
  Update (based on #296)
  =

  The latest kernel tree
  (https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git)
  has the complete solution to fix this bug. So we can expect kernel
  v5.11 to fix this issue without any additional work.

  Before the release of v5.11, you are suggested to use #189 to save your 
touchpad. Note that for distributions like Ubuntu and Fedora, the pinctrl-amd 
driver is built into the initramfs. So you have to rebuild the initramfs after 
replacing the old module with new one.
  On Fedora, run `sudo dracut --force`; On ubuntu, run `sudo update-initramfs 
-u`.

  The complete solution is three patches,
   - 47a0001436352c9853d72bf2071e85b316d688a2 ("pinctrl: amd: remove debounce 
filter setting in IRQ type setting")
   - 06abe8291bc31839950f7d0362d9979edc88a666 ("pinctrl: amd: fix incorrect way 
to disable debounce filter")
   - 8dcb7a15a585b6d0fee15751ce11d7a68cfedd56 ("gpiolib: acpi: Take into 
account debounce settings")

  The first two patches has reached the stable tree. If the last one is
  also backported to LTS kernel, you won't need to install kernel 5.11.
  But I don't know when this will happen.

  Original bug report
  ===

  Hello

  The MSFT touchpad of this Lenovo Legion-5 15ARH05 laptop is not reacting at 
all (pointer and click never move when touchpad is touched). This has been 
reported by other users in various websites, with various linux systems 
including other Ubuntu systems, but I saw no launchpad bug so I post one. 
Example of websites covering the issue :
  - https://askubuntu.com/questions/1253830/lenovo-legion-5-touchpad (exactly 
the same laptop)
  - https://www.linux.org/threads/lenovo-legion-5-touchpad.29536/ (similar 
laptop)

  xinput indentifies it as MSFT0001:00 04F3:3140

  Virtual core pointer  id=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎜   ↳ MSFT0001:00 04F3:3140 Touchpad  id=17   [slave  pointer 
 (2)]
  ⎜   ↳ MSFT0001:00 04F3:3140 Mouse id=16   [slave  pointer 
 (2)]
  ⎜   ↳ ITE Tech. Inc. ITE Device(8910) Consumer Controlid=12   [slave  
pointer  (2)]
  ⎜   ↳ Logitech USB Optical Mouse  id=11   [slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
  ↳ Ideapad extra buttons   id=15   [slave  
keyboard (3)]
  ↳ Power Buttonid=6[slave  
keyboard (3)]
  ↳ Integrated Camera: Integrated C id=10   [slave  
keyboard (3)]
  ↳ Video Bus   id=7[slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Consumer Controlid=19   [slave  
keyboard (3)]
  ↳ Power Buttonid=9[slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Wireless Radio Control  id=13   [slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Keyboardid=14   [slave  
keyboard (3)]
  ↳ AT Translated Set 2 keyboardid=18   [slave  
keyboard (3)]
  ↳ Video Bus   id=8[slave  
keyboard (3)]

  Thanks a lot for your time. It does not help, but I can confirm what
  was reported on askubuntu by another user : the touchpad does work on
  Windows.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-40-generic 5.4.0-40.44
  ProcVersionSignature: Ubuntu 5.4.0-40.44-generic 5.4.44
  Uname: Linux 5.4.0-40-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27.3
  Architecture: amd64
  AudioDevicesInUse:
   USER

[Desktop-packages] [Bug 1915784] Re: Permissions of executables pointing to "buildd"

2021-02-16 Thread Thomas Karl Pietrowski
** Also affects: xz-utils (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: wireshark (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: openssh (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: snap (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: screen (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: psensor (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: pipewire (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: netstat-nat (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: lzma (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: fuse3 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: ccache (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: apport (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pipewire in Ubuntu.
https://bugs.launchpad.net/bugs/1915784

Title:
  Permissions of executables pointing to "buildd"

Status in apport package in Ubuntu:
  New
Status in ccache package in Ubuntu:
  New
Status in fuse3 package in Ubuntu:
  New
Status in lzma package in Ubuntu:
  New
Status in netstat-nat package in Ubuntu:
  New
Status in openssh package in Ubuntu:
  New
Status in pipewire package in Ubuntu:
  New
Status in psensor package in Ubuntu:
  New
Status in screen package in Ubuntu:
  New
Status in snap package in Ubuntu:
  New
Status in sudo package in Ubuntu:
  New
Status in wireshark package in Ubuntu:
  New
Status in xz-utils package in Ubuntu:
  New

Bug description:
  I've noticed this issue already with other applications, which have been 
updated recently, too.
  This morning I've updated the sudo package and it broke, too.

  The common issue is that fakeroot gets omitted or faulty in your build
  environment somehow.

  After looking into the current sudo package I've noticed that all
  files are owned by "buildd:buildd", which doesn't exist on my computer
  and thus the 2001:2501 on my local machine.

  I'll try to collect some other packages, too, which have the same
  problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: sudo 1.9.5p2-2ubuntu1
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Uname: Linux 5.10.0-14-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu58
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  Date: Tue Feb 16 08:33:27 2021
  InstallationDate: Installed on 2020-01-27 (385 days ago)
  InstallationMedia: Kubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  SourcePackage: sudo
  UpgradeStatus: No upgrade log present (probably fresh install)
  VisudoCheck:
   /etc/sudoers: parsed OK
   /etc/sudoers.d/README: parsed OK

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp