[Touch-packages] [Bug 1773897]

2019-03-25 Thread bugzilla
(In reply to Kai-Heng Feng from comment #9)
> My intention is to ask you to try adding this entry to pin-code-database.xml:
> 

See https://gitlab.gnome.org/GNOME/gnome-bluetooth/merge_requests/14

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1773897

Title:
  [regression] Logitech M337 mice are automatically disconnected after
  connected

Status in Bluez Utilities:
  Confirmed
Status in OEM Priority Project:
  New
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  The BT 3.0 mouse is disconnected automatically after connected with the 
notebook.
  The fail rate is around 9/10.

  1. The bug only occurs on the machine with intel 8265 module.
   I got three Dell XPS 13 (one is with Killer 1435, two are with intel 8265).
   This bug can not be reproduced on the machine with Killer 1435. 

  2. This bug can be reproduced since bluez 5.46.
   Using bluez 5.45, this bug can not be reproduced.

  
  Notebook: Dell XPS 13
  Wi-Fi/BT module: intel 8265, 8087:0a2b
  bluez: 5.48
  BT mouse: logitech M337
  --- 
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2018-05-29 (0 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  InterestingModules: rfcomm bnep btusb bluetooth
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 8087:0a2b Intel Corp. 
   Bus 001 Device 002: ID 0bda:58f4 Realtek Semiconductor Corp. 
   Bus 001 Device 004: ID 27c6:5385  
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Dell Inc. XPS 13 9370
  Package: bluez 5.48-0ubuntu3 [origin: unknown]
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-22-generic 
root=UUID=d6251f09-cbb5-4635-8f42-31e6c32f1c03 ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.15.0-22.24-generic 4.15.17
  Tags: third-party-packages bionic
  Uname: Linux 4.15.0-22-generic x86_64
  UnreportableReason: This is not an official Ubuntu package. Please remove any 
third party package and try again.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/03/2017
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 0.3.13
  dmi.board.name: 0173S1
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr0.3.13:bd11/03/2017:svnDellInc.:pnXPS139370:pvr:rvnDellInc.:rn0173S1:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9370
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: Primary  Bus: USB
BD Address: D4:25:8B:4F:7E:D6  ACL MTU: 1021:4  SCO MTU: 96:6
UP RUNNING PSCAN ISCAN 
RX bytes:61781 acl:382 sco:0 events:536 errors:0
TX bytes:7985 acl:69 sco:0 commands:168 errors:0

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

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


[Touch-packages] [Bug 619632]

2018-08-25 Thread Bugzilla-tecnocode
Comment on attachment 38166
Optionally use gettext for translations in .policy files

Review of attachment 38166:
-

It might be useful to also allow gettext-domain to be specified on the
 element, to avoid repeating it on every single
 in the file.

::: src/polkitbackend/polkitbackendactionpool.c
@@ +1131,4 @@
>   * _localize:
>   * @translations: a mapping from xml:lang to the value, e.g. 'da' -> 
> 'Smadre', 'en_CA' -> 'Punch, Aye!'
>   * @untranslated: the untranslated value, e.g. 'Punch'
> + * @domain: the gettext domain for this string. Make be NULL.

s/Make/May/

@@ +1153,5 @@
> +{
> +  gchar *old_locale;
> +
> +  old_locale = g_strdup (setlocale (LC_ALL, NULL));
> +  setlocale (LC_ALL, lang);

setlocale() is not thread safe. Since polkit could be being used from a
thread, we *cannot* call this.

We could use uselocale() instead, which only operates on the current
thread’s locale.
http://pubs.opengroup.org/onlinepubs/9699919799/functions/uselocale.html

Unfortunately, as far as I know, there is no gettext function which
allows the locale to be specified. The other approach I can think of
would be to load up the gettext catalogues manually for the desired
locale, but I don’t know if APIs exist for that.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to policykit-1 in Ubuntu.
https://bugs.launchpad.net/bugs/619632

Title:
  Use gettext for translating user messages

Status in PolicyKit:
  Unknown
Status in Ubuntu Translations:
  Fix Released
Status in policykit-1 package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: policykit-1

  PolicyKit currently requires translations to be in the XML, e.g.:

  Install system color profiles
  Instalovat systémové profily 
barev

  This makes it hard to modify translations after build-time and to
  provide only a set of translations (i.e. a language pack).

  It would be better to have:

  Install system
  color profiles

  And use the standard gettext system.

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

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


[Touch-packages] [Bug 1300462]

2015-04-03 Thread Cpblpublic+bugzilla
This problem continues to plague me on the upcoming Ubuntu release
15.04.

I do not understand your instructions, or maybe am not qualified. How do
I "debug the LightDM side of things"?

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1300462

Title:
  Login timed out after waking from suspend

Status in fprintd:
  Won't Fix
Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  I'm using fprint package for finger-print authentication.

  Half the time when my laptop recovers from suspend, I am able to enter a 
password (or, after pressing Enter, a finger print instead).
  But half the time when it recovers from suspend, the lightdm  (?) login 
screen  instead says that authentication has timed out. For some reason I then 
have to wait a good 25 seconds  before I get another chance. At that point, I 
am able to enter a password or fingerprint as normal.

  This "time out" should not be triggered during/after a suspend.
  Also, if there is a time out for some reason, it should just wait the normal 
2 seconds required after entering an incorrect password.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.9.13-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  ApportVersion: 2.14-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Mar 31 17:29:11 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-03-11 (20 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20140218)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1300462]

2015-04-03 Thread Bugzilla-x
File a bug against LightDM and let the LightDM developers fix it, if
they can.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1300462

Title:
  Login timed out after waking from suspend

Status in fprintd:
  Won't Fix
Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  I'm using fprint package for finger-print authentication.

  Half the time when my laptop recovers from suspend, I am able to enter a 
password (or, after pressing Enter, a finger print instead).
  But half the time when it recovers from suspend, the lightdm  (?) login 
screen  instead says that authentication has timed out. For some reason I then 
have to wait a good 25 seconds  before I get another chance. At that point, I 
am able to enter a password or fingerprint as normal.

  This "time out" should not be triggered during/after a suspend.
  Also, if there is a time out for some reason, it should just wait the normal 
2 seconds required after entering an incorrect password.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.9.13-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  ApportVersion: 2.14-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Mar 31 17:29:11 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-03-11 (20 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20140218)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1300462]

2015-04-03 Thread Cpblpublic+bugzilla
Thank you very much. I think it's been listed against LightDM on the Ubuntu bug 
site since (near) the beginning.  So it's just that it hasn't caught their 
attention yet, I suppose. Or maybe it needs another upstream link out of Ubuntu.
Thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1300462

Title:
  Login timed out after waking from suspend

Status in fprintd:
  Won't Fix
Status in lightdm package in Ubuntu:
  Confirmed

Bug description:
  I'm using fprint package for finger-print authentication.

  Half the time when my laptop recovers from suspend, I am able to enter a 
password (or, after pressing Enter, a finger print instead).
  But half the time when it recovers from suspend, the lightdm  (?) login 
screen  instead says that authentication has timed out. For some reason I then 
have to wait a good 25 seconds  before I get another chance. At that point, I 
am able to enter a password or fingerprint as normal.

  This "time out" should not be triggered during/after a suspend.
  Also, if there is a time out for some reason, it should just wait the normal 
2 seconds required after entering an incorrect password.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.9.13-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  ApportVersion: 2.14-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Mar 31 17:29:11 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-03-11 (20 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20140218)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1223181]

2014-09-01 Thread Tim-myerscough+eclipse-bugzilla
Hi,

Environment:
* Fedora 20 - 3.15.10-200.fc20.x86_64
* Java 1.7.0_60
* Eclipse Luna
  Version: Luna Release (4.4.0)
  Build id: 20140612-0600

I have had Eclipse crash fairly regularly for me whilst debugging.

The following seems to have resolved it for me:

Fedora 20, KDE, System Settings -> Application Appearance ->

Changing Widget style from "Oxygen" to "GTK+ Style" has solved it for
me.

References:
* https://issues.apache.org/jira/browse/DIRSTUDIO-962

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1223181

Title:
  After upgrading to saucy, eclipse crashes in
  gtk_tree_view_get_background_area+0x8a while debugging

Status in Eclipse:
  Confirmed
Status in GTK+ GUI Toolkit:
  Unknown
Status in “gtk+2.0” package in Ubuntu:
  Confirmed

Bug description:
  to reproduce, I open the "Variables" view in eclipse and step through
  the application. the eclipse jvm crashes with:

  #
  # A fatal error has been detected by the Java Runtime Environment:
  #
  #  SIGSEGV (0xb) at pc=0x7f3dea4082aa, pid=11567, tid=139905336198912
  #
  # JRE version: 7.0_21-b11
  # Java VM: Java HotSpot(TM) 64-Bit Server VM (23.21-b01 mixed mode 
linux-amd64 compressed oops)
  # Problematic frame:
  # C  [libgtk-x11-2.0.so.0+0x2202aa]  gtk_tree_view_get_background_area+0x8a
  #
  # Core dump written. Default location: /home/juergen/core or core.11567
  #
  # An error report file with more information is saved as:
  # /home/juergen/hs_err_pid11567.log
  #
  # If you would like to submit a bug report, please visit:
  #   http://bugreport.sun.com/bugreport/crash.jsp
  # The crash happened outside the Java Virtual Machine in native code.
  # See problematic frame for where to report the bug.
  #

  This did not happen in ubuntu 13.04.

  using KDE as a desktop (installed ubuntu, installed kde packages)

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: libgtk2.0-0 2.24.20-1ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-5.11-generic 3.11.0
  Uname: Linux 3.11.0-5-generic x86_64
  ApportVersion: 2.12.1-0ubuntu3
  Architecture: amd64
  Date: Tue Sep 10 07:25:17 2013
  InstallationDate: Installed on 2010-11-24 (1020 days ago)
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
  MarkForUpload: True
  SourcePackage: gtk+2.0
  UpgradeStatus: Upgraded to saucy on 2013-08-29 (11 days ago)

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

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