[Touch-packages] [Bug 1362469] Re: AppArmor unrequested reply protection generates unallowable denials

2015-02-05 Thread Tyler Hicks
Also important to note is that this bug is no longer considered to be a
blocker when syncing the RTM archive with the Vivid packages. Outside of
the noisy denial message, the fact that AppArmor is blocking unrequested
replies should not result in any breakage of software relying on D-Bus
communications.

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

Title:
  AppArmor unrequested reply protection generates unallowable denials

Status in dbus package in Ubuntu:
  In Progress

Bug description:
  Starting with utopic's dbus 1.8.6-1ubuntu1 package, the new AppArmor
  unrequested reply protections can generate some denials that can't
  easily be allowed in policy. For example, when running a confined
  pasaffe, you see these denials when starting and closing pasaffe:

  apparmor=DENIED operation=dbus_error  bus=session
  error_name=org.freedesktop.DBus.Error.UnknownMethod mask=send
  name=:1.22 pid=4993 profile=/usr/bin/pasaffe peer_pid=3624
  peer_profile=unconfined

  It isn't obvious how to construct an AppArmor D-Bus rule to allow that
  operation. A bare dbus, rule allows it but that's not acceptable for
  profiles implementing tight D-Bus confinement.

  The code that implements unrequested reply protections should be
  reviewed for issues and, if everything looks good there,
  investigations into how to allow the operation that triggers the above
  denial should occur.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1362469/+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 1362469] Re: AppArmor unrequested reply protection generates unallowable denials

2015-02-05 Thread Tyler Hicks
I now have a good understanding of the problem as well as a standalone
reproducer. The issue stems from the NO_REPLY_EXPECTED flag in the
message header. When the sender of a message sets the NO_REPLY_EXPECTED
flag, it means tells the recipient that a reply, either in the form of a
method_return or an error message, is not needed even if the method
normally provides a reply message. The D-Bus spec
(http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages)
does not require that the receiver of the message honor the
NO_REPLY_EXPECTED flag. Here's the text:

  ... the reply can be omitted as an optimization. It is compliant with
   this specification to return the reply despite this flag, although
   doing so on a bus with a non-trivial security policy (such as the
   well-known system bus) may result in access denial messages being
   logged for the reply.

The dbus-daemon code has a mechanism for tracking whether or not a reply
message (method_return and error messages) is a reply that the sender of
the original message actually asked for. If the reply message was not
requested, the dbus-daemon code treats it as an unrequested reply.
This is important to the AppArmor mediation code in dbus-daemon because
it lets reply messages that *were* requested through without requiring
any sort of AppArmor policy query. The thought is that the AppArmor
security policy allowed the original message to go through so surely the
security policy author expects any corresponding reply message to go
through. That all works great except for when the original message has
the NO_REPLY_EXPECTED flag. The dbus-daemon code treats any replies to
that message as an unrequested reply. That means that it is subject to
the AppArmor policy and may be rejected if the process sending the reply
does not have send permissions.

The bug description for this bug mentions an AppArmor denial of pasaffe
sending an UnknownMethod error message to an unconfined process:

apparmor=DENIED operation=dbus_error bus=session
  error_name=org.freedesktop.DBus.Error.UnknownMethod mask=send
  name=:1.22 pid=4993 profile=/usr/bin/pasaffe peer_pid=3624
  peer_profile=unconfined

What is happening there is that some unconfined UI component (global
menus backend?) is communicating with the UI components of the confined
pasaffe process over D-Bus. The confined UI components are tearing
themselves down after the user enters their master password into a
pasaffe modal dialog box and presses Ok. This results in the confined
UI components unregistering the D-Bus object path corresponding to the
modal dialog box. After this happens, the unconfined UI components are
attempting to send one last message, with the NO_REPLY_EXPECTED flag
set, to the confined UI components (the End method call). This is an
error condition since the D-Bus object has already been unregistered.
The gdbus (glib) bindings notice that this is an error and send an
UnknownMethod error message reply, despite the fact that the
NO_REPLY_EXPECTED flag was set on the original message. This causes
dbus-daemon to treat the reply as an unrequested reply and the AppArmor
mediation code blocks the message and generates a denial message.

Outside of the noisy denial message, there is no harm in this. The
original sender of the message stated that a reply was not needed and
the gdbus bindings went ahead and sent an error reply message, which is
fine according to the D-Bus spec. The spec even warns that complex
security policy may result in a denial message for such a reply.

We could patch the gdbus bindings to not send an error reply message in
this situation but I'm not sure upstream would accept such a patch and
there may be other bindings or services that ignore the
NO_REPLY_EXPECTED flag.

In the lp1362469.tar.gz attachment, I have two example services (one
written against the python-dbus bindings and the other against the gdbus
bindgs) that demonstrate that these unrequested reply denials can come
from a service, too. If you gunzip it, untar it, and run 'make', it'll
test both services. It will result in two denials:

apparmor=DENIED operation=dbus_method_return  bus=session
  mask=send name=:1.154 pid=21732 profile=service peer_pid=21734
  peer_profile=unconfined
apparmor=DENIED operation=dbus_error  bus=session
  error_name=org.freedesktop.DBus.Error.UnknownMethod mask=send
  name=:1.154 pid=21732 profile=service peer_pid=21734
  peer_profile=unconfined

The second denial is the same sort of denial as the pasaffe denial that
I described above. The first denial is an example of a service receiving
a message with the NO_REPLY_EXPECTED flag set and still returning a
reply message. This also results in an unrequested reply denial.

I think this shows that it is unreasonable to try to fix every D-Bus
binding, service, and client that ignores the NO_REPLY_EXPECTED flag in
order to allow or quiet these types of denials.

Our policy language doesn't allow us to easily allow or quiet the

[Touch-packages] [Bug 993298] Re: Please make NetworkManager-controlled dnsmasq respect /etc/hosts

2015-02-05 Thread Sonia Hamilton
+1 affects me.

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

Title:
  Please make NetworkManager-controlled dnsmasq respect /etc/hosts

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  Since 12.04 NetworkManager uses the dnsmasq plugin by default to
  resolve DNS requests. Unfortunately the dnsmasq plug-in has --no-
  hosts, etc. hard coded [1] which means (among other things) that after
  the upgrade to 12.04 /etc/hosts will no longer be used to resolve DNS
  requests. This changes the prior behavior of NetworkManager without
  any visible warning to the end user. AFAICS there's no other way to
  work around this problem as to manually revert the change and disable
  the dnsmasq plug-in in the NetworkManager config, see [2,3]:

  To turn off dnsmasq in Network Manager, you need to edit
  /etc/NetworkManager/NetworkManager.conf and comment the 'dns=dnsmasq'
  line then do a 'sudo restart network-manager'.

  This is of course not a bug in the NetworkManager which just behaves
  as intended. The problem is in the change of the configuration of the
  Ubuntu packaging which will probably leave many wondering why their
  /etc/hosts suddenly no longer works. This cost me considerable time to
  debug and probably is a usability problem for others, too.

  Maybe you could provide a more visible documentation than that in [3]?
  E.g., *including a comment in /etc/hosts that explains the change* and
  how to work around it would have saved me a lot of time. It would have
  automatically alerted me on upgrade as manual changes to /etc/hosts
  would then have triggered a prompt while leaving those users with
  standard /etc/hosts in peace.

  Probably similar problems arise with other disabled config files and
  could be alerted to the users? Thinking of resolv.conf, etc.

  [1] 
http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/src/dnsmasq-manager/nm-dnsmasq-manager.c,
 line 285
  [2] i.e. http://ubuntuforums.org/showthread.php?t=1968061
  [3] http://www.stgraber.org/2012/02/24/dns-in-ubuntu-12-04/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/993298/+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 1413458] Re: Intermittent Intel GPU Lockup: intel_crtc_wait_for_pending_flips

2015-02-05 Thread Timo Aaltonen
technically it's a kernel bug but moving to -intel for now so we can
track it better

** Package changed: mesa (Ubuntu) = xserver-xorg-video-intel (Ubuntu)

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

Title:
  Intermittent Intel GPU Lockup: intel_crtc_wait_for_pending_flips

Status in xserver-xorg-video-intel package in Ubuntu:
  Incomplete

Bug description:
  Sometimes when playing a video (VLC) or browsing in chromium, the
  display stops updating except for the mouse pointer. Audio playback
  will continue. I can press ctrl-alt-F1 to get to another VT (though
  there is a delay of ~10 seconds before this occurs) and then switch
  back and things seem fine. I see this in the syslog after it's
  occurred:

  Jan 21 21:52:33 sydney kernel: [365284.305075] CPU: 7 PID: 1567 Comm: Xorg 
Tainted: GW 3.16.0-29-generic #39-Ubuntu
  Jan 21 21:52:33 sydney kernel: [365284.305077] Hardware name: Dell Inc. 
OptiPlex 9010/051FJ8, BIOS A19 08/18/2014
  Jan 21 21:52:33 sydney kernel: [365284.305079]  0009 
8803f9cebbf8 8278218a 
  Jan 21 21:52:33 sydney kernel: [365284.305083]  8803f9cebc30 
8206fedd  8804039fc000
  Jan 21 21:52:33 sydney kernel: [365284.305086]  880403788210 
880403ae6000 880403ae6000 8803f9cebc40
  Jan 21 21:52:33 sydney kernel: [365284.305089] Call Trace:
  Jan 21 21:52:33 sydney kernel: [365284.305097]  [8278218a] 
dump_stack+0x45/0x56
  Jan 21 21:52:33 sydney kernel: [365284.305102]  [8206fedd] 
warn_slowpath_common+0x7d/0xa0
  Jan 21 21:52:33 sydney kernel: [365284.305106]  [8206ffba] 
warn_slowpath_null+0x1a/0x20
  Jan 21 21:52:33 sydney kernel: [365284.305129]  [c061608c] 
intel_crtc_wait_for_pending_flips+0x16c/0x180 [i915]
  Jan 21 21:52:33 sydney kernel: [365284.305134]  [820b9730] ? 
prepare_to_wait_event+0x100/0x100
  Jan 21 21:52:33 sydney kernel: [365284.305155]  [c0618b53] 
intel_crtc_disable_planes+0x33/0x1c0 [i915]
  Jan 21 21:52:33 sydney kernel: [365284.305174]  [c0619120] 
ironlake_crtc_disable+0x50/0x980 [i915]
  Jan 21 21:52:33 sydney kernel: [365284.305193]  [c0559f53] ? 
drm_modeset_lock+0x33/0xf0 [drm]
  Jan 21 21:52:33 sydney kernel: [365284.305197]  [82787f72] ? 
mutex_lock+0x12/0x30
  Jan 21 21:52:33 sydney kernel: [365284.305217]  [c061a4e7] 
intel_crtc_update_dpms+0x67/0xa0 [i915]
  Jan 21 21:52:33 sydney kernel: [365284.305237]  [c061eb59] 
intel_connector_dpms+0x59/0x70 [i915]
  Jan 21 21:52:33 sydney kernel: [365284.305253]  [c0550e19] 
drm_mode_obj_set_property_ioctl+0x399/0x3a0 [drm]
  Jan 21 21:52:33 sydney kernel: [365284.305267]  [c0550e50] 
drm_mode_connector_property_set_ioctl+0x30/0x40 [drm]
  Jan 21 21:52:33 sydney kernel: [365284.305278]  [c053fa4f] 
drm_ioctl+0x1df/0x680 [drm]
  Jan 21 21:52:33 sydney kernel: [365284.305284]  [8222009c] ? 
fsnotify+0x27c/0x350
  Jan 21 21:52:33 sydney kernel: [365284.305287]  [8222009c] ? 
fsnotify+0x27c/0x350
  Jan 21 21:52:33 sydney kernel: [365284.305291]  [821f5208] 
do_vfs_ioctl+0x2c8/0x4a0
  Jan 21 21:52:33 sydney kernel: [365284.305295]  [821e3701] ? 
__sb_end_write+0x31/0x60
  Jan 21 21:52:33 sydney kernel: [365284.305299]  [821e1272] ? 
vfs_write+0x1b2/0x1f0
  Jan 21 21:52:33 sydney kernel: [365284.305302]  [821f5461] 
SyS_ioctl+0x81/0xa0
  Jan 21 21:52:33 sydney kernel: [365284.305306]  [8278a1ad] 
system_call_fastpath+0x1a/0x1f
  Jan 21 21:52:33 sydney kernel: [365284.305309] ---[ end trace 
491ebdb18d4be6c4 ]---

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: libgl1-mesa-dri 10.3.2-0ubuntu0.1
  ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
  Uname: Linux 3.16.0-29-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,decor,move,place,grid,mousepoll,session,snap,vpswitch,wall,neg,obs,compiztoolbox,regex,imgpng,resize,gnomecompat,animation,expo,ezoom,workarounds,unitymtgrabhandles,screenshot,fade,scale,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Wed Jan 21 21:55:30 2015
  DistUpgraded: Fresh install
  DistroCodename: utopic
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller 
[8086:0162] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:052c]
  InstallationDate: Installed on 2014-11-29 (53 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  MachineType: Dell Inc. OptiPlex 9010
  ProcKernelCmdLine: 

[Touch-packages] [Bug 1418808] [NEW] Group messages not received (Ubuntu Phone)

2015-02-05 Thread jtd
Public bug reported:

Device: mako
Release: Ubuntu Phone 14.10 (r13)
Package: Messaging
Expectation: When another user's mobile phone sends a group message that 
includes my phone number, I expect to receive that group message.
Reality: Others on the group message list receive the message, I do not.

** Affects: messaging-app (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: avengers

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

Title:
  Group messages not received (Ubuntu Phone)

Status in messaging-app package in Ubuntu:
  New

Bug description:
  Device: mako
  Release: Ubuntu Phone 14.10 (r13)
  Package: Messaging
  Expectation: When another user's mobile phone sends a group message that 
includes my phone number, I expect to receive that group message.
  Reality: Others on the group message list receive the message, I do not.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1418808/+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 1416233] Re: Sound indicator notification shows each time the a sound starts or stops

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package indicator-sound -
12.10.2+15.04.20150205-0ubuntu1

---
indicator-sound (12.10.2+15.04.20150205-0ubuntu1) vivid; urgency=medium

  [ Ted Gould ]
  * Don't show notification when output mode changes (LP: #1416233)
  * Initial support for indicator service testing from the GMenu/GAction
interfaces
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Thu, 05 Feb 2015 
17:19:42 +

** Branch linked: lp:ubuntu/vivid-proposed/indicator-sound

** Changed in: indicator-sound (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  Sound indicator notification shows each time the a sound starts or
  stops

Status in indicator-sound package in Ubuntu:
  Fix Released

Bug description:
  The latest Vivid image on mako (84)[1] causes the sound notification
  to popup each time the system starts or stops a sound. When the sound
  stops the notification indicates that the sound is muted, when it is
  in fact not. In the Music app, for instance, this is quite annoying.

  1 - http://people.canonical.com/~ogra/touch-image-stats/84.changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1416233/+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 1414706] Re: [20ALCTO1WW, Realtek ALC292, Black Mic, Left][Lenovo ThinkPad X240] external mic has no sound at all

2015-02-05 Thread David Henningsson
Thanks. Could you please also submit alsa-info for case select external
mic, plug external mic where the recording is noise?

In addition, could we check the jack detection in detail: Please install 
alsa-tools 1.0.28 (if you're running trusty, it's available from 
https://launchpad.net/~diwic/+archive/ubuntu/hda ) and the do the following:
 * Unplug headphone/headset
 * run sudo hdajacksensetest -c 1 -a and paste the result here
 * Plug headphone (not headset)
 * run sudo hdajacksensetest -c 1 -a and paste the result here
 * Plug CTIA headset in
 * run sudo hdajacksensetest -c 1 -a and paste the result here
 * Plug OMTP headset in
 * run sudo hdajacksensetest -c 1 -a and paste the result here

Thanks!

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

Title:
  [20ALCTO1WW, Realtek ALC292, Black Mic, Left][Lenovo ThinkPad X240]
  external mic has no sound at all

Status in HWE Next Project:
  Incomplete
Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  During this test, an error dialog was thrown, reading:

  The following mixer control(s) might be incorrectly set: 
  Mic is at 0.0%

  Mic is muted
  Please try to fix that (e g by running 
  alsamixer -D hw:PCH in a terminal) and see if that solves the problem.
  Would you like to continue troubleshooting anyway?

  However, the System Settings... - Sound UI shows the mic as not
  muted. When I tried running the alsamixer command, I saw mic and mic-
  boost were both showing 0; I cranked them up to 100, but it made no
  difference. I also tried re-running this command with the mic/mic-
  boost still set to 100 and it threw the same error.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  doctorow   2636 F pulseaudio
   /dev/snd/pcmC1D0c:   doctorow   2636 F...m pulseaudio
   /dev/snd/pcmC1D0p:   doctorow   2636 F...m pulseaudio
   /dev/snd/controlC0:  doctorow   2636 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Jan 26 16:20:49 2015
  InstallationDate: Installed on 2014-09-10 (138 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaRecordingTest: ALSA recording test through plughw:PCH failed
  Symptom_AlsaRecordingTestStderr: a r e c o r d :   p c m _ r e a d : 2 0 3 1 
:   r e a d   e r r o r :   I n p u t / o u t p u t   e r r o r
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  doctorow   2636 F pulseaudio
   /dev/snd/pcmC1D0c:   doctorow   2636 F...m pulseaudio
   /dev/snd/pcmC1D0p:   doctorow   2636 F...m pulseaudio
   /dev/snd/controlC0:  doctorow   2636 F pulseaudio
  Symptom_Jack: Black Mic, Left
  Symptom_Type: No sound at all
  Title: [20ALCTO1WW, Realtek ALC292, Black Mic, Left] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/24/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GIET75WW (2.25 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20ALCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: 0B98401 PRO
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrGIET75WW(2.25):bd06/24/2014:svnLENOVO:pn20ALCTO1WW:pvrThinkPadX240:rvnLENOVO:rn20ALCTO1WW:rvr0B98401PRO:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20ALCTO1WW
  dmi.product.version: ThinkPad X240
  dmi.sys.vendor: LENOVO
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2015-01-22T13:36:22.741441

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1414706/+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 1362469] Re: AppArmor unrequested reply protection generates unallowable denials

2015-02-05 Thread Tyler Hicks
** Changed in: dbus (Ubuntu)
   Status: In Progress = Triaged

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

Title:
  AppArmor unrequested reply protection generates unallowable denials

Status in dbus package in Ubuntu:
  Triaged

Bug description:
  Starting with utopic's dbus 1.8.6-1ubuntu1 package, the new AppArmor
  unrequested reply protections can generate some denials that can't
  easily be allowed in policy. For example, when running a confined
  pasaffe, you see these denials when starting and closing pasaffe:

  apparmor=DENIED operation=dbus_error  bus=session
  error_name=org.freedesktop.DBus.Error.UnknownMethod mask=send
  name=:1.22 pid=4993 profile=/usr/bin/pasaffe peer_pid=3624
  peer_profile=unconfined

  It isn't obvious how to construct an AppArmor D-Bus rule to allow that
  operation. A bare dbus, rule allows it but that's not acceptable for
  profiles implementing tight D-Bus confinement.

  The code that implements unrequested reply protections should be
  reviewed for issues and, if everything looks good there,
  investigations into how to allow the operation that triggers the above
  denial should occur.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1362469/+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 1418766] Re: ubuntu-bug launches in CLI mode under wayland session

2015-02-05 Thread Tim
** Branch linked: lp:~darkxst/apport/wayland_display

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

Title:
  ubuntu-bug launches in CLI mode under wayland session

Status in apport package in Ubuntu:
  New

Bug description:
  Launching ubuntu-bug from a terminal under wayland session launches in
  CLI mode, rather than in Xwayland. Presumably this is because $DISPLAY
  doesnt seem to be set under wayland by default.

  Perhaps apport should also check for WAYLAND_DISPLAY in
  ui_run_terminal(), since X is still available in that case via
  Xwayland.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15.1-0ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Feb  6 10:46:41 2015
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-01-09 (27 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1418766/+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 1418766] Re: ubuntu-bug launches in CLI mode under wayland session

2015-02-05 Thread Launchpad Bug Tracker
** Branch linked: lp:apport

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

Title:
  ubuntu-bug launches in CLI mode under wayland session

Status in apport package in Ubuntu:
  Fix Committed

Bug description:
  Launching ubuntu-bug from a terminal under wayland session launches in
  CLI mode, rather than in Xwayland. Presumably this is because $DISPLAY
  doesnt seem to be set under wayland by default.

  Perhaps apport should also check for WAYLAND_DISPLAY in
  ui_run_terminal(), since X is still available in that case via
  Xwayland.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15.1-0ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Feb  6 10:46:41 2015
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-01-09 (27 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1418766/+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 1418766] Re: ubuntu-bug launches in CLI mode under wayland session

2015-02-05 Thread Martin Pitt
Fixed in trunk.

** Changed in: apport (Ubuntu)
   Status: New = Fix Committed

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

Title:
  ubuntu-bug launches in CLI mode under wayland session

Status in apport package in Ubuntu:
  Fix Committed

Bug description:
  Launching ubuntu-bug from a terminal under wayland session launches in
  CLI mode, rather than in Xwayland. Presumably this is because $DISPLAY
  doesnt seem to be set under wayland by default.

  Perhaps apport should also check for WAYLAND_DISPLAY in
  ui_run_terminal(), since X is still available in that case via
  Xwayland.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15.1-0ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Feb  6 10:46:41 2015
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-01-09 (27 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1418766/+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 1362469] Re: AppArmor unrequested reply protection generates unallowable denials

2015-02-05 Thread John Johansen
thanks for finding this Tyler.

I concur with recommendation for how this should be fixed.

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

Title:
  AppArmor unrequested reply protection generates unallowable denials

Status in dbus package in Ubuntu:
  Triaged

Bug description:
  Starting with utopic's dbus 1.8.6-1ubuntu1 package, the new AppArmor
  unrequested reply protections can generate some denials that can't
  easily be allowed in policy. For example, when running a confined
  pasaffe, you see these denials when starting and closing pasaffe:

  apparmor=DENIED operation=dbus_error  bus=session
  error_name=org.freedesktop.DBus.Error.UnknownMethod mask=send
  name=:1.22 pid=4993 profile=/usr/bin/pasaffe peer_pid=3624
  peer_profile=unconfined

  It isn't obvious how to construct an AppArmor D-Bus rule to allow that
  operation. A bare dbus, rule allows it but that's not acceptable for
  profiles implementing tight D-Bus confinement.

  The code that implements unrequested reply protections should be
  reviewed for issues and, if everything looks good there,
  investigations into how to allow the operation that triggers the above
  denial should occur.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1362469/+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 1418262] Re: apport hook to detect wayland sessions

2015-02-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/ubuntu/vivid/apport/ubuntu

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

Title:
  apport hook to detect wayland sessions

Status in Ubuntu GNOME:
  New
Status in apport package in Ubuntu:
  Fix Committed

Bug description:
  Now that we have an experimental GNOME wayland session in vivid, it
  would be somewhat useful for apport to detect if a bug report is from
  a wayland session. It probably makes sense for this to be global
  since other projects will eventually offer wayland sessions as well.
  Not sure on the best place for this to live though in apport or in
  wayland packaging or elsewhere?

  detecting WAYLAND_DISPLAY env is probably enough to detect a running
  session, and there may be a few other useful env variables such as
  (GDK/CLUTTER)_BACKEND etc

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15.1-0ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportLog:
   
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Thu Feb  5 10:51:38 2015
  InstallationDate: Installed on 2012-09-23 (864 days ago)
  InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Alpha 
amd64(20120922)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-gnome/+bug/1418262/+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 1418262] Re: apport hook to detect wayland sessions

2015-02-05 Thread Martin Pitt
Committed to packaging branch, thanks!

** Changed in: apport (Ubuntu)
   Status: Triaged = Fix Committed

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

Title:
  apport hook to detect wayland sessions

Status in Ubuntu GNOME:
  New
Status in apport package in Ubuntu:
  Fix Committed

Bug description:
  Now that we have an experimental GNOME wayland session in vivid, it
  would be somewhat useful for apport to detect if a bug report is from
  a wayland session. It probably makes sense for this to be global
  since other projects will eventually offer wayland sessions as well.
  Not sure on the best place for this to live though in apport or in
  wayland packaging or elsewhere?

  detecting WAYLAND_DISPLAY env is probably enough to detect a running
  session, and there may be a few other useful env variables such as
  (GDK/CLUTTER)_BACKEND etc

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15.1-0ubuntu4
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportLog:
   
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Thu Feb  5 10:51:38 2015
  InstallationDate: Installed on 2012-09-23 (864 days ago)
  InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Alpha 
amd64(20120922)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-gnome/+bug/1418262/+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 1352809] Re: /usr/bin/lp on Trusty using -h option doesn't work as expected

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package cups - 1.7.5-10ubuntu2

---
cups (1.7.5-10ubuntu2) vivid; urgency=medium

* Fix -h option not honoured when CUPS_SERVER variable
  is defined. (LP: #1352809)
 -- Louis Bouchard louis.bouch...@ubuntu.com   Wed, 04 Feb 2015 13:07:11 +0100

** Changed in: cups (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  /usr/bin/lp on Trusty using -h option doesn't work as expected

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Trusty:
  Confirmed
Status in cups source package in Utopic:
  Confirmed

Bug description:
  1) The release of Ubuntu you are using, via 'lsb_release -rd' or
  System - About Ubuntu

  Description:  Ubuntu 14.04 LTS
  Release:  14.04
  Codename: trusty

  
  2) The version of the package you are using, via 'apt-cache policy pkgname' 
or by checking in Software Center

  cups-client:
Installed: 1.7.2-0ubuntu1.1

  3) What you expected to happen

  When using lp -h to send a print job to a printer, I expected to the
  job to be sent to the printer and to override any env variables set or
  conf file setting

  4) What happened instead

  To summarise the behaviour I'm seeing

  1) with CUPS_SERVER env variable unset and no ServerName set in 
/etc/cups/client.conf, we see that using lp -h with hostnames gives us error 
lp: Error - add '/version=1.1' to server name.
  Using IPs sends the job to the printer as expected.

  2) with CUPS_SERVER env variable set using hostname with/without port
  and no ServerName set in /etc/cups/client.conf, we see that the only
  time it sends a job is when an IP and port are used. Otherwise it
  seems to error. I believe it's using the env variable, even though -h
  is being used.

  3) with CUPS_SERVER env variable set using IP address with/without
  port and no ServerName set in /etc/cups/client.conf we see that the
  job is always sent using lp -h but it is always sent to the value in
  env variable, thus ignoring the command line.

  ===

  with CUPS_SERVER env variable unset and no ServerName option set in
  /etc/cups/client.conf

  $ lp test2.txt
  lp: Error - scheduler not responding. (expected as no server is set or 
specified)

  Using hostname
  $ lp -h server1:631 test2.txt
  lp: Error - add '/version=1.1' to server name.

  $ lp -h server1 test2.txt
  lp: Error - add '/version=1.1' to server name.

  Using IP address
  $ lp -h 192.168.254.8 test2.txt
  request id is PDF-54 (1 file(s))

  $ lp -h 192.168.254.8:631 test2.txt
  request id is PDF-55 (1 file(s))

  ===

  With CUPS_SERVER env variable *set CUPS_SERVER=server1

  $ lp test2.txt
  lp: Error - add '/version=1.1' to server name.

  Using hostname
  $ lp -h server1 test2.txt
  lp: Error - add '/version=1.1' to server name.

  $ lp -h server1:631 test2.txt
  lp: Error - add '/version=1.1' to server name.

  Using IP address
  $ lp -h 192.168.254.8 test2.txt
  lp: Error - add '/version=1.1' to server name.

  $ lp -h 192.168.254.8:631 test2.txt
  request id is PDF-56 (1 file(s))

  ===

  With CUPS_SERVER env variable *set CUPS_SERVER=server:631

  Same results as above

  ===

  With CUPS_SERVER env variable *set CUPS_SERVER=192.168.254.8:631

  $ lp -h 555.555.555.555 test2.txt
  request id is PDF-66 (1 file(s))

  ===

  With CUPS_SERVER env variable *set CUPS_SERVER=192.168.254.8

  Same results as above

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1352809/+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 1417909] Re: Container fails to start with error mounting /sys/fs/cgroup

2015-02-05 Thread Christopher Townsend
Hey Serge,

Yes, adding 'lxc.mount.auto = sys' fixes the issue.

The container is an extracted ISO from http://cdimage.ubuntu.com/ubuntu-
desktop-next/daily-live/current/vivid-desktop-amd64.iso for the Unity 8
in LXC project.

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

Title:
  Container fails to start with error mounting /sys/fs/cgroup

Status in lxc package in Ubuntu:
  Incomplete

Bug description:
  It seems a fairly recent update to LXC has caused this.  This is a
  privileged container.  I will attach debug output when trying to start
  the container.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lxc 1.1.0~rc4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Feb  4 02:41:39 2015
  InstallationDate: Installed on 2013-03-18 (687 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  SourcePackage: lxc
  UpgradeStatus: Upgraded to vivid on 2014-10-20 (106 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1417909/+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 1414930] Re: Buttons of Synaptics trackpad doesn't work

2015-02-05 Thread Christopher M. Penalver
** Tags removed: latest-bios-1.02
** Tags added: bios-outdated-1.04

** Summary changed:

- Buttons of Synaptics trackpad doesn't work
+ [Lenovo ThinkPad X1 Carbon 20BT] Buttons of Synaptics trackpad doesn't work

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

Title:
  [Lenovo ThinkPad X1 Carbon 20BT] Buttons of Synaptics trackpad doesn't
  work

Status in HWE Next Project:
  Confirmed
Status in The Linux Kernel:
  In Progress
Status in libinput package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in systemd package in Ubuntu:
  Fix Committed
Status in xserver-xorg-input-synaptics package in Ubuntu:
  New
Status in libinput source package in Trusty:
  New
Status in linux source package in Trusty:
  New
Status in systemd source package in Trusty:
  New
Status in xserver-xorg-input-synaptics source package in Trusty:
  New
Status in libinput source package in Utopic:
  New
Status in linux source package in Utopic:
  New
Status in systemd source package in Utopic:
  New
Status in xserver-xorg-input-synaptics source package in Utopic:
  New

Bug description:
  Lenovo X1 3rd Carbon (201411-16196)

  Steps to reproduce the bug:
  1, Log in to system
  2, Click left/right/middle buttons of the touchpad

  Actual result:
  No response after clicking the buttons

  Expected results:
  Buttons work as expected behavirour

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-45-generic 3.13.0-45.74 [modified: 
boot/vmlinuz-3.13.0-45-generic]
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  u  1598 F pulseaudio
   /dev/snd/controlC0:  u  1598 F pulseaudio
  CurrentDesktop: Unity
  Date: Tue Jan 27 02:48:23 2015
  HibernationDevice: RESUME=UUID=c553e9ba-b74b-43ad-8cf2-496531261e0f
  InstallationDate: Installed on 2015-01-27 (0 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20150126)
  MachineType: LENOVO 20BTZ09ZUS
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1d34e685-c98b-41f3-b649-87770517b194 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-45-generic N/A
   linux-backports-modules-3.13.0-45-generic  N/A
   linux-firmware 1.127.11
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/27/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N14ET24W (1.02 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BTZ09ZUS
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN14ET24W(1.02):bd10/27/2014:svnLENOVO:pn20BTZ09ZUS:pvrThinkPadX1Carbon3rd:rvnLENOVO:rn20BTZ09ZUS:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20BTZ09ZUS
  dmi.product.version: ThinkPad X1 Carbon 3rd
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1414930/+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 1213123] Re: 045e:009c [H87I-PLUS] Microsoft Keyboard Elite for Bluetooth dead keys problem

2015-02-05 Thread Launchpad Bug Tracker
[Expired for bluez (Ubuntu) because there has been no activity for 60
days.]

** Changed in: bluez (Ubuntu)
   Status: Incomplete = Expired

-- 
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/1213123

Title:
  045e:009c [H87I-PLUS] Microsoft Keyboard Elite for Bluetooth dead keys
  problem

Status in bluez package in Ubuntu:
  Expired

Bug description:
  In Precise with 4.60 version of bluez I can pair my keyboard and mouse
  perfectly, but not with the 4.98 that is in Precise by default.

  === The problem is that dead keys of my keyboard (I mean -L or R-
  CTRL, ALT, SUPER, -L or R- SHIFT, ALT-GR) doesn't work with my current
  motherboard (whether application I opened, console included). It does
  work correctly with other motherboards. The new motherboard is an 1150
  Haswell one from Asus.

  What I can say is :
  1/ When booting, my BIOS recognize perfectly the dead keys of my keyboard, 
meaning that the bluetooth dongle or the motherboard is not directly concerned.
  2/ When doing a second installation of Ubuntu, same problem.
  3/ When trying the option 'keyboard layout' (whatever layout I choose), I 
don't see those dead keys flashing, meaning the system doesn't react at all 
when pressing them.
  4/ By chance, I found another keyboard (same model, same brand), same 
problem, meaning the keyboard is not concerned (it works on the older 
motherboard, then it was poor chance that the keyboard broked just before 
reinstalling).
  5/ Tried the setxkbmap command (with sudo or without), nothing's better
  6/ Tried the xmodmap command, I see the 0x codes for Left SHIFT, all dead 
keys are there (see attachment)
  7/ Normal keyboard (no wireless) works perfectly
  8/ Put the dongle on an other usb slot doesn't change anything
  9/ Command xev doesn't makes changes when pressing dead keys.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.5.0-37-generic 3.5.0-37.58~precise1
  ProcVersionSignature: Ubuntu 3.5.0-37.58~precise1-generic 3.5.7.16
  Uname: Linux 3.5.0-37-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.25.
  ApportVersion: 2.0.1-0ubuntu17.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lolo   2272 F pulseaudio
   /dev/snd/controlC0:  lolo   2272 F pulseaudio
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Card0.Amixer.info:
   Card hw:0 'MID'/'HDA Intel MID at 0xf0434000 irq 45'
 Mixer name : 'Intel Haswell HDMI'
 Components : 'HDA:80862807,80860101,0010'
 Controls  : 6
 Simple ctrls  : 1
  Card0.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  Card1.Amixer.info:
   Card hw:1 'PCH'/'HDA Intel PCH at 0xf043 irq 46'
 Mixer name : 'Realtek ALC887-VD'
 Components : 'HDA:10ec0887,10438576,00100302'
 Controls  : 41
 Simple ctrls  : 20
  Date: Fri Aug 16 16:34:35 2013
  HibernationDevice: RESUME=UUID=942aa693-ca21-4f2a-966c-97b0fa9ea5ae
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: ASUS All Series
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-37-generic 
root=UUID=9509f53e-1de4-4f9c-90dd-6c1ef7ded3a9 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.5.0-37-generic N/A
   linux-backports-modules-3.5.0-37-generic  N/A
   linux-firmware1.79.6
  RfKill:
   0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0306
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: H87I-PLUS
  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.:bvr0306:bd04/15/2013:svnASUS:pnAllSeries:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnH87I-PLUS:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: All Series
  dmi.product.version: System Version
  dmi.sys.vendor: ASUS
  --- 
  ApportVersion: 2.12.4-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.336ubuntu1
  DistroRelease: Ubuntu 13.10
  InterestingModules: btusb bnep rfcomm bluetooth
  LiveMediaBuild: Ubuntu 13.10 Saucy Salamander - Beta amd64 (20130925.1)
  MachineType: ASUS All Series
  MarkForUpload: True
  Package: bluez 4.101-0ubuntu8b1
  

[Touch-packages] [Bug 1410096] Re: unity8-dash stops running

2015-02-05 Thread HuangZhiquan
ok,i have tried it(pull unity-scopes-shell from launchpad、debuild and
install it),and then successed, thanks

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

Title:
  unity8-dash stops running

Status in unity8 package in Ubuntu:
  Incomplete
Status in qtmir package in Ubuntu RTM:
  New

Bug description:
  Conditions to reproduce are not clear but *sometimes* unity8-dash
  exits and there is no way to recover other than rebooting the phone by
  a long press on the power button.

  I can still launch apps from the launcher, but the process unity8-dash
  is not running.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: unity8 8.02+15.04.20150107~rtm-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: armhf
  Date: Tue Jan 13 09:14:17 2015
  InstallationDate: Installed on 2015-01-12 (1 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20150112-030205)
  SourcePackage: unity8
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1410096/+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 1001127] Re: calendar widget displays wrong day and date

2015-02-05 Thread arnoldbird
*** This bug is a duplicate of bug 793450 ***
https://bugs.launchpad.net/bugs/793450

I'm seeing this bug in 12.04 LTS.  The date at the top of the dropdown
is always Tuesday, 1 January 1980.  But the correct date is highlighted
in the calendar, and the date command gives the correct date.

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

Title:
  calendar widget displays wrong day and date

Status in The Date and Time Indicator:
  Confirmed
Status in indicator-datetime package in Ubuntu:
  Confirmed

Bug description:
  Today is Friday:
  $ date
  Fri May 18 08:46:53 BST 2012

  The calendar widget in Unity is showing today as Wed 16 May on the
  dropdown as shown in the attached screenshot. My laptop was probably
  last rebooted on Wed, and has been asleep overnight since.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
  Uname: Linux 3.2.0-24-generic-pae i686
  NonfreeKernelModules: symap_custom_3.2.0_24_generic_pae_i686 
symev_custom_3.2.0_24_generic_pae_i686
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: i386
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  Date: Fri May 18 08:46:33 2012
  EcryptfsInUse: Yes
  InstallationMedia: Kubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-04-27 (20 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-datetime/+bug/1001127/+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 1418176] Re: /usr/bin/unity8-dash:11:constData:operator:qMapLessThanKey:lowerBound:QMapData

2015-02-05 Thread Marcus Tomlinson
** Changed in: unity-scopes-shell (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  /usr/bin/unity8-dash:11:constData:operator:qMapLessThanKey:lowerBound:QMapData

Status in unity-scopes-shell package in Ubuntu:
  Fix Released

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  8.02+15.04.20150123.3-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/0b21ff093fdef791c99d66c20106b49d3ee849bf
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1418176/+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 980519] Re: Random log off in Ubuntu 12.04 LTS

2015-02-05 Thread Quang Luong
I also got this bug recently.  At random clicks on random programs
(Chrome, web site links, etc), I would get logged out (black screen that
flutters constantly between the login until I click on the mouse, move
the mouse, type something, or in some cases wait long enough, in which a
stable login screen will appear to allow me to log back in).  However, I
was able to fix this issue by not using unity.  Instead I installed
gnome and logged out and back in with gnome (I'm using the class with no
effects version).  Hope this helps.

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

Title:
  Random log off in Ubuntu 12.04 LTS

Status in Unity:
  Fix Released
Status in nvidia-graphics-drivers package in Ubuntu:
  Fix Released
Status in unity package in Ubuntu:
  Fix Released
Status in xorg package in Ubuntu:
  Fix Released
Status in Fedora:
  New

Bug description:
  I get logged off from Ubuntu sometimes. There is no error message or
  any indication that it is going to log off. The screen goes black, and
  after 2-4 seconds, i get presented with the Ubuntu Log On Screen.

  There is no clear pattern (or at least if have not noticed any). One
  time i am working with Netbeans, another time i am using firefox. This
  also means that at present i can not clearly say what package might be
  causing this behaviour.

  I am fairly sure the problem lies in 12.04 (or more precise - the
  combination of 12.04 and the hardware i am using). I do not have the
  same problem running 11.04 or 11.10.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/980519/+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 1418626] Re: Embedded YouTube videos stuttering and not playing back smoothly

2015-02-05 Thread Justin McPherson
At this time, and from experimentation - a change of UA has no effect on
the container+codecs chosen by YT in the embedded case.

Changing the UA does affect the the mobile YT page.

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

Title:
  Embedded YouTube videos stuttering and not playing back smoothly

Status in Oxide Webview:
  New
Status in Web Browser App:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu RTM:
  Confirmed

Bug description:
  Related to bug https://bugs.launchpad.net/webbrowser-app/+bug/1417258.

  Embedded youtube videos, like this:
  
http://m.bleacherreport.com/articles/2352016-papa-johns-airs-wrong-commercial-congratulates-seahawks-after-super-bowl

  or this:
  http://pages.ebay.com/shoptheworld/

  do not play back correctly. They exhibit stuttering and stopping, with
  oxide-renderer process using over 100% CPU.

  This was worked around on YouTube.com (and webapp) by using overriden
  UA string which makes YouTube send us a stream that we can playback
  smoothly. But this UA string is not presented to embedded videos
  within other sites.

  We should figure out how we can send the UA override to embedded
  videos (if possible), and if not what change could we make to our
  default UA string such that YouTube gives us content that we can
  render more efficiently.

  Other ideas?

To manage notifications about this bug go to:
https://bugs.launchpad.net/oxide/+bug/1418626/+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 1417978] Re: vim improperly displaying text when loaded in gnome-terminal with altered geometry

2015-02-05 Thread Scott Sanbar
** Description changed:

  I use the following command to load vi(m) in a new gnome-terminal window
  with altered geometry:
  
  gnome-terminal --geometry 156x48+80+50 -e /usr/bin/vi .bashrc
  
  About 60% of the time, when I do this, it loads the text within vim as
  follows:
  
- 1.  The top line of text seems to be the next line after the line of text 
that would have been displayed had
-   I started vim in the default sized gnome-terminal window
- 2.  After what seems to be the text normally displayed below that offset, 
after what seems to be the
-  number of lines displayed as if it were in a default sized 
gnome-terminal window, the remaining lines
-  are blank
- 3.  The only way to correct the display is to scroll down until a full screen 
of text is normally displayed in vi,
-   then everything starts working normally
+ 1.  The top line of text seems to be the next line after the line of text 
that would have been displayed had I started vim in the default sized 
gnome-terminal window
+ 2.  After what seems to be the text normally displayed below that offset, 
after what seems to be the number of lines displayed as if it were in a default 
sized gnome-terminal window, the remaining lines are blank
+ 3.  The only way to correct the display is to scroll down until a full screen 
of text is normally displayed in vi(m), then everything starts working normally
  
  Note that this behavior happens only around 60-70% of the time -
  sometimes, issuing the command will work correctly, sometimes as
  described above.  It is very repeatable though on my machine.
  
  This behavior happens on my native Ubuntu 14.04 box as well as on my
  14.04.1 box within a virtual machine under Windows 8.1 (both for hyper-v
  and vmware)
  
  The reason I think it may be vim, not gnome-terminal, is that nano,
  irssi and the man pages all work fine every time when I issue the same
  command but substitute them inside the quotes above.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: vim-tiny 2:7.4.052-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
  Uname: Linux 3.13.0-32-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Feb  4 02:35:03 2015
  ExecutablePath: /usr/bin/vim.tiny
  InstallationDate: Installed on 2015-02-02 (1 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: vim
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  vim improperly displaying text when loaded in gnome-terminal with
  altered geometry

Status in vim package in Ubuntu:
  New

Bug description:
  I use the following command to load vi(m) in a new gnome-terminal
  window with altered geometry:

  gnome-terminal --geometry 156x48+80+50 -e /usr/bin/vi .bashrc

  About 60% of the time, when I do this, it loads the text within vim as
  follows:

  1.  The top line of text seems to be the next line after the line of text 
that would have been displayed had I started vim in the default sized 
gnome-terminal window
  2.  After what seems to be the text normally displayed below that offset, 
after what seems to be the number of lines displayed as if it were in a default 
sized gnome-terminal window, the remaining lines are blank
  3.  The only way to correct the display is to scroll down until a full screen 
of text is normally displayed in vi(m), then everything starts working normally

  Note that this behavior happens only around 60-70% of the time -
  sometimes, issuing the command will work correctly, sometimes as
  described above.  It is very repeatable though on my machine.

  This behavior happens on my native Ubuntu 14.04 box as well as on my
  14.04.1 box within a virtual machine under Windows 8.1 (both for
  hyper-v and vmware)

  The reason I think it may be vim, not gnome-terminal, is that nano,
  irssi and the man pages all work fine every time when I issue the same
  command but substitute them inside the quotes above.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: vim-tiny 2:7.4.052-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
  Uname: Linux 3.13.0-32-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Feb  4 02:35:03 2015
  ExecutablePath: /usr/bin/vim.tiny
  InstallationDate: Installed on 2015-02-02 (1 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: vim
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : 

[Touch-packages] [Bug 1411748] Re: [Arale] News aggregator scope has a white scope background in cards

2015-02-05 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/vivid-proposed/unity8

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

Title:
  [Arale] News aggregator scope has a white scope background in cards

Status in the base for Ubuntu mobile products:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu RTM:
  Triaged

Bug description:
  Open the news aggregator in Arale.
  Go to the section national news
  A white card background appears

  This seems to be only impacting vertical-jounal cards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1411748/+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 1363748] [NEW] Utopic crash on launch; Attempt to unlock mutex that was not locked

2015-02-05 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Recently updated to Ubuntu Utopic, and when I try to launch pyrenamer it
displays an empty window for a fraction of a second, and crashes with
the following:

/usr/lib/pymodules/python2.7/pyrenamer/pyrenamer.py:120: GtkWarning: 
GtkSpinButton: setting an adjustment with non-zero page size is deprecated
  self.glade_tree = gtk.glade.XML(pyrenamerglob.gladefile, main_window)
Attempt to unlock mutex that was not locked
Aborted

It launched and worked okay on Trusty. I created an Utopic debootstrap
and it fails to launch in there also.

lsb_release -rd:
Description:Ubuntu Utopic Unicorn (development branch)
Release:14.10

apt-cache policy pkgname:
pyrenamer:
  Installed: 0.6.0-1.1
  Candidate: 0.6.0-1.1
  Version table:
 *** 0.6.0-1.1 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
500 http://gb.archive.ubuntu.com/ubuntu/ utopic/universe amd64 Packages
100 /var/lib/dpkg/status

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: pyrenamer 0.6.0-1.1
ProcVersionSignature: Ubuntu 3.16.0-11.16-generic 3.16.1
Uname: Linux 3.16.0-11-generic x86_64
ApportVersion: 2.14.7-0ubuntu1
Architecture: amd64
Date: Sun Aug 31 23:43:14 2014
PackageArchitecture: all
SourcePackage: pyrenamer
UpgradeStatus: Upgraded to utopic on 2013-03-29 (520 days ago)

** Affects: pyrenamer
 Importance: Undecided
 Status: New

** Affects: gtk+2.0 (Ubuntu)
 Importance: Undecided
 Status: Fix Released


** Tags: amd64 apport-bug utopic
-- 
Utopic crash on launch; Attempt to unlock mutex that was not locked
https://bugs.launchpad.net/bugs/1363748
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to gtk+2.0 in Ubuntu.

-- 
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 998591] Re: Launcher icon missing for Wine windows

2015-02-05 Thread Andrea Azzarone
** Changed in: unity/7.2
Milestone: 7.2.4 = None

** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  Launcher icon missing for Wine windows

Status in Unity:
  Invalid
Status in Unity 5.0 series:
  Expired
Status in Unity 7.2 series:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Since upgrading from 11.10 to 12.04, The Wine Application Icon on the
  Unity Launcher does not always appear, I have tried installing wine
  1.5, to not difference, and 1.3, to no avail either.

  It happens quite often so if you need any logs/config files I'll get
  them done for you.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.12-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,gnomecompat,grid,regex,compiztoolbox,vpswitch,place,animation,resize,imgpng,expo,workarounds,unitymtgrabhandles,move,snap,mousepoll,session,ezoom,wall,fade,scale,unityshell]
  Date: Sun May 13 02:10:38 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-05-08 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/998591/+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 1036873] Re: HUD/Dash refuses to close

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  HUD/Dash refuses to close

Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Expired

Bug description:
  I was running chromium, a VM, IRC and a gnome-terminal. At some point,
  I hit the 'Alt' key and the HUD popped up, and it didn't go away.

  Running with quantal.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: unity 6.0.0-0ubuntu6
  ProcVersionSignature: Ubuntu 3.5.0-9.9-generic 3.5.0
  Uname: Linux 3.5.0-9-generic x86_64
  ApportVersion: 2.4-0ubuntu6
  Architecture: amd64
  Date: Tue Aug 14 16:53:08 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120626.1)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1036873/+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 1339016] Re: Initial sync of the calendar takes a prohibitive amount of time

2015-02-05 Thread Pat McGowan
Add to critical per product team

** Changed in: canonical-devices-system-image
   Importance: High = Critical

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

Title:
  Initial sync of the calendar takes a prohibitive amount of time

Status in the base for Ubuntu mobile products:
  In Progress
Status in Sync monitor for Ubuntu Touch:
  Fix Committed
Status in sync-monitor package in Ubuntu:
  Fix Committed
Status in syncevolution package in Ubuntu:
  Fix Released
Status in sync-monitor package in Ubuntu RTM:
  In Progress
Status in syncevolution package in Ubuntu RTM:
  In Progress

Bug description:
  Mako running 116

  Initial sync of default google calendar ran continuously for 90 mins before I 
terminated it
  The ics file grew to 8MB

  I can see two major things from the log:
  - it syncs all past events (I would suggest starting with the current or 
previous month if necessary)
  - it adds recurring events repeatedly (is the query using the wrong API and 
receiving events by timeframe rather than as raw event data?)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1339016/+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 1027028] Re: [regression] Drag and drop inside dash is much slower/laggy with unity 6.0

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  [regression] Drag and drop inside dash is much slower/laggy with unity
  6.0

Status in Unity:
  Invalid
Status in Unity 6.0 series:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  No problem with unity 5.12 and/or 5.14.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1027028/+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 1364070] Re: vivid, utopic and trusty unity (7.3.1+14.10.20140811-0ubuntu1) launcher addition through gsettings isn't picked up

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

** Changed in: unity
 Assignee: Andrea Azzarone (andyrock) = (unassigned)

** Changed in: unity (Ubuntu)
 Assignee: Andrea Azzarone (andyrock) = (unassigned)

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

Title:
  vivid, utopic and trusty unity (7.3.1+14.10.20140811-0ubuntu1)
  launcher addition through gsettings isn't picked up

Status in The G Library - GLib:
  New
Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  As discussed on IRC, I tried to change the favorites key, and 3 trials
  on 10 didn't make any change in what the launcher displays. seb128
  reproduced it as well. (just be aware that we just create the .desktop
  file just before).

  The exact same code seems to work 100% of the time on trusty.

  So, we:
  1. create the desktop file
  2. from gi.repository import GLib, Gio
  gsettings = Gio.Settings(schema_id=com.canonical.Unity.Launcher, 
path=/com/canonical/unity/launcher/)
  then, get the favorites list and add the desktop file.
  3. gsettings.set_strv(favorites, new_launcher_list)
  - No launcher icon added from new launcher list.
  However, a $ gsettings get shows that desktop file (which is present.
  Note that changing the list and changing it back works.

  This was first experimented on June 2014 and reported on IRC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/glib/+bug/1364070/+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 1390625] Re: mouse cursor gets corrupted

2015-02-05 Thread Vytis G
Workaround in Xubuntu 14.10:

1. Open Display in Settings Manager.
2. Change resolution to some other value and click Apply.
2. Change back to previous resolution and click Apply.

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

Title:
  mouse cursor gets corrupted

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 14.10, the mouse cursor graphic gets corrupted under certain
  occasions. It then looks flipped, sheared or shows fragments of a
  previous cursor.

  * when switching the cursor them forth and back in Gnome Tweak Tool
  * when dragdropping a document icon

  Maybe related, the cursor does not always show the correct image scale
  on a high-dpi display (this was working right in 14.04). For example
  after login, or when hovering specific areas, or on mouse down to
  start a dragdrop, the cursor appears 1/4 the expected size.

  Attached is a photo of a corrupted cursor (whereas a screenshot with
  Gimp showed the uncorrupted cursor).

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity 7.3.1+14.10.20141016-0ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
  Uname: Linux 3.16.0-24-generic x86_64
  .tmp.unity.support.test.0:

  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  BootLog:
   * Setting up X socket directories...   
  [ OK ]
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri Nov  7 22:12:52 2014
  DistUpgraded: 2014-11-04 18:35:56,188 DEBUG enabling apt cron job
  DistroCodename: utopic
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Device [17aa:3978]
  InstallationDate: Installed on 2014-02-02 (278 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04 Trusty Tahr - Alpha amd64 (20140201)
  MachineType: LENOVO 20266
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-24-generic.efi.signed 
root=UUID=4bfb3686-b9f7-487d-81f6-eceb41097ad9 ro quiet splash 
acpi_backlight=vendor
  SourcePackage: unity
  UpgradeStatus: Upgraded to utopic on 2014-11-04 (3 days ago)
  dmi.bios.date: 10/31/2013
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 76CN31WW
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: Yoga2
  dmi.board.vendor: LENOVO
  dmi.board.version: 31900058STD
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo Yoga 2 Pro
  dmi.modalias: 
dmi:bvnLENOVO:bvr76CN31WW:bd10/31/2013:svnLENOVO:pn20266:pvrLenovoYoga2Pro:rvnLENOVO:rnYoga2:rvr31900058STD:cvnLENOVO:ct10:cvrLenovoYoga2Pro:
  dmi.product.name: 20266
  dmi.product.version: Lenovo Yoga 2 Pro
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.56-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.0-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.0-0ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2
  xserver.bootTime: Fri Nov  7 14:54:59 2014
  xserver.configfile: /etc/X11/xorg.conf
  xserver.errors: [dix] ELAN Touchscreen: unable to find touch point 1
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   16970
   vendor SDC
  xserver.version: 2:1.16.0-1ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1390625/+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 1327419] Re: Infographic's language not updated until the metric value is changed

2015-02-05 Thread Noemí
Hi,
This is a list of things that appear in english while having the device in a 
different language:
German:
- Today Scope - Settings - Enable location data.
- Nearby scope - Settings - Enable location data
- App scope - Options - All os them in english
- Music scope: popular tracks on souncloud, popular tracks on youtube
- Music scope - Settings - Half of the options in english
- Video scope: vimeo features
- Video scope - Settings - Half in english
- System settings - Rotation lock

French:
- Today Scope - Settings - Enable location data.
- Nearby scope - Settings - Enable location data
- App scope - Options - All os them in english
- Music scope: popular tracks on souncloud, popular tracks on youtube
- Music scope - Settings - Half of the options in english
- Video scope - Settings - Half in english

Italian:
- Today Scope - Settings - Enable location data.
- Nearby scope - Settings - Enable location data
- App scope - Options - All os them in english
- Music scope: popular tracks on souncloud, popular tracks on youtube
- Music scope - Settings - Half of the options in english
- Video scope - Settings - Half in english
- Alarm - New alarm - All in english
- Notification bar - Rotation lock

Portugues:
- Today Scope - Settings - Enable location data.
- Today Scope - Add your fitbit account
- Nearby scope - Settings - Enable location data
- App scope - Options - All os them in english
- Music scope: popular tracks on souncloud, popular tracks on youtube
- Music scope - Settings - Half of the options in english
- Video scope - Settings - Half in english

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

Title:
  Infographic's language not updated until the metric value is changed

Status in the base for Ubuntu mobile products:
  Confirmed
Status in Music application for Ubuntu devices:
  New
Status in Ubuntu Translations:
  Triaged
Status in libusermetrics package in Ubuntu:
  In Progress

Bug description:
  1) Start the music app
  2) Play a track for more than 10 seconds to trigger the metric update
  3) Lock and unlock to show the infographic
  4) Note, for example, 1 song played today appears (double tap to cycle 
through to find music if required)
  5) Goto system settings and change the language
  6) Restart the device
  7) Note the infographic's language has not been updated and it still states 
'1 song played today'
  8) Start the music app
  9) Play a track for more than 10 seconds to trigger the metric update
  10) Lock and unlock to show the infographic
  11) Now notice the infographic's language is now correct, for example 2 
Morceaux joues aujourd'hui

  It was expected that step 7 the infographic would show the correct
  language.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1327419/+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 1412001] Re: alt+backtick doesn't focus on selected one of many windows previously clicked

2015-02-05 Thread Alberto Salvia Novella
** Changed in: unity (Ubuntu)
   Importance: Undecided = Low

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

Title:
  alt+backtick doesn't focus on selected one of many windows previously
  clicked

Status in Unity:
  Triaged
Status in unity package in Ubuntu:
  Triaged

Bug description:
  This a user experience issue and easily reproducible.

  Open multiple instances of your favorite application. Then click on
  Unity's icon for the app when you are already focused on one instance
  of it. This opens up a tile of the instances of the application which
  you can select from with the mouse.

  Now while that tile is shown, use ATL+backtick to select the window
  you want instead of clicking with the mouse. The result is that the
  tile window doesn't go away.

  If you use ALT+backtick and switch to ALT+tab (or start from ALT+tab
  from the start) and select another kind of application, then the tile
  goes away correctly and the other application comes in the front.

  I can verify that the window you would select with ALT+backtick does
  actually get to the top of the view and is marked as the last visited
  instance, because if you switch to another application (using
  ALT+tab) and click back on the group of the original application you
  would see the one you previously selected with ALT+backtick.

  ---

  Here are step-by-step instructions.

  - Open a couple of terminals
  - Open firefox
  - Click on the terminal icon
* This should open a tile showing the various terminal windows you have open
* If that doesn't happen, click again (you were not on a terminal window 
before)
  - Use ALT+backtick to select one of the terminal windows

  Expected behavior: The tile of terminals goes away and the selected
  terminal is focused

  Observed behavior: The tile of terminals stays on the screen

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity 7.3.1+14.10.20141016-0ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
  Uname: Linux 3.16.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,place,grid,mousepoll,compiztoolbox,vpswitch,regex,gnomecompat,imgpng,snap,move,unitymtgrabhandles,resize,session,wall,animation,workarounds,fade,expo,scale,ezoom,unityshell]
  CurrentDesktop: Unity
  Date: Sat Jan 17 16:32:05 2015
  ExecutablePath: /usr/bin/compiz
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=en_US
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: Upgraded to utopic on 2014-11-01 (76 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1412001/+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 1418040] Re: Calling from car using bluetooth, call is placed on ril_0, even though ril_1 is default

2015-02-05 Thread Bill Filler
** Changed in: telephony-service (Ubuntu)
   Importance: Undecided = Critical

** Changed in: telephony-service (Ubuntu)
 Assignee: (unassigned) = Tiago Salem Herrmann (tiagosh)

** Also affects: telephony-service (Ubuntu RTM)
   Importance: Undecided
   Status: New

** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

** Also affects: telephony-service
   Importance: Undecided
   Status: New

** Tags added: ww07

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

Title:
  Calling from car using bluetooth, call is placed on ril_0, even though
  ril_1 is default

Status in the base for Ubuntu mobile products:
  New
Status in Telephony Service:
  New
Status in ofono package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  New
Status in telephony-service package in Ubuntu RTM:
  New

Bug description:
  What happened
  Placed call from car over bluetooth
  Call was placed on my first SIM card, even though I selected my second SIM as 
default for calls

  What should have happened
  The call should have been placed on my second SIM

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: telephony-service 0.1+15.04.20150124-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: armhf
  Date: Wed Feb  4 14:25:44 2015
  InstallationDate: Installed on 2015-02-02 (2 days ago)
  InstallationMedia: Ubuntu Vivid Vervet (development branch) - armhf 
(20150202-020204)
  SourcePackage: telephony-service
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1418040/+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 1417963] Re: webbrowser-app autopilot test regression with Qt 5.4

2015-02-05 Thread Albert Astals Cid
The change is actually needed in oxide

** Also affects: oxide-qt (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: oxide-qt (Ubuntu)
 Assignee: (unassigned) = Albert Astals Cid (aacid)

** Changed in: webbrowser-app (Ubuntu)
   Status: New = Invalid

** Changed in: oxide-qt (Ubuntu)
   Status: New = In Progress

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

Title:
  webbrowser-app autopilot test regression with Qt 5.4

Status in oxide-qt package in Ubuntu:
  In Progress
Status in webbrowser-app package in Ubuntu:
  Invalid

Bug description:
  It would look like the test
  webbrowser_app.tests.test_selection.TestSelection.test_resize_selection
  reliably fails with Qt 5.4 while it succeeds with Qt 5.3.2.

  Log attached.

  See https://wiki.ubuntu.com/Touch/QtTesting for more information about
  Qt 5.4.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oxide-qt/+bug/1417963/+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 1416128] Re: Moving the microphone volume slider bounces back

2015-02-05 Thread Alberto Salvia Novella
** Changed in: indicator-sound (Ubuntu)
   Importance: Undecided = Critical

** Project changed: unity = hundredpapercuts

** No longer affects: hundredpapercuts

** No longer affects: unity (Ubuntu)

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

Title:
  Moving the microphone volume slider bounces back

Status in indicator-sound package in Ubuntu:
  Confirmed

Bug description:
  When moving the microphone slider in the Unity sound menu or in Ubuntu
  Contorl Center / Sound, it starts moving back to the left and
  decreases volume again to the original position. As a consequence, it
  is hard to due phone/skype/hangout calls because the counterpart
  doesn't understand the recorded sound.

  This could be a UI issue related to high-dpi (scaling-factor=2),
  similar to bug #1299054.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity 7.3.1+14.10.20141016-0ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-30.40-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Thu Jan 29 22:56:36 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2015-01-13 (16 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1416128/+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 1418456] Re: unity8 assert failure: *** Error in `unity8': double free or corruption (fasttop): 0xb20055a0 ***

2015-02-05 Thread Alberto Mardegan
Attached the strace file from the command:

DESKTOP_SESSION=unity8-mir MIR_SOCKET=$XDG_RUNTIME_DIR/mir_socket
MIR_SERVER_PROMPT_FILE=1 MIR_SERVER_HOST_SOCKET=/run/lightdm-mir-0
MIR_SERVER_FILE=$XDG_RUNTIME_DIR/mir_socket MIR_SERVER_NAME=session-0
UNITY_INDICATOR_PROFILE=desktop QT_QPA_PLATFORM=mirserver strace
/usr/bin/unity8 2 unity8-strace.log

** Attachment added: unity8-strace.log
   
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1418456/+attachment/4313161/+files/unity8-strace.log

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

Title:
  unity8 assert failure: *** Error in `unity8': double free or
  corruption (fasttop): 0xb20055a0 ***

Status in unity8 package in Ubuntu:
  New

Bug description:
  Starting the unity8-desktop-session-mir in a Lenovo IdeaPad s3-10t. I
  get a black screen, with a mouse cursor. unity8 is not running.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.04
  Package: unity8 8.02+15.04.20150123.3-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic i686
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: i386
  AssertionMessage: *** Error in `unity8': double free or corruption (fasttop): 
0xb20055a0 ***
  CrashCounter: 1
  Date: Thu Feb  5 11:20:30 2015
  ExecutablePath: /usr/bin/unity8
  InstallationDate: Installed on 2012-10-07 (850 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
  ProcCmdline: unity8
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: unity8
  StacktraceTop:
   __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0xb616a89c *** 
Error in `%s': %s: 0x%s ***\n) at ../sysdeps/posix/libc_fatal.c:175
   malloc_printerr (action=optimized out, str=0xb616aa60 double free or 
corruption (fasttop), ptr=0xb20055a0) at malloc.c:4996
   _int_free (av=0xb210, p=optimized out, have_lock=0) at malloc.c:3840
   ?? () from /usr/lib/i386-linux-gnu/libgbm.so.1
   gbm_device_destroy () from /usr/lib/i386-linux-gnu/libgbm.so.1
  Title: unity8 assert failure: *** Error in `unity8': double free or 
corruption (fasttop): 0xb20055a0 ***
  UpgradeStatus: Upgraded to vivid on 2015-01-31 (4 days ago)
  UserGroups: adm lpadmin nopasswdlogin sambashare sudo
  upstart.unity8.log:
   ()
   [1423128879.172108] (II) SharedLibrary: Loading libmirplatform5driver.so
   qtmir.mir: MirServer created
   [1423128879.540845] (II) Server: Starting
   *** Error in `unity8': double free or corruption (fasttop): 0xb20055a0 ***

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1418456/+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 1363400] Re: [wizard] allows to Continue without connecting to network

2015-02-05 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/vivid-proposed/unity8

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

Title:
  [wizard] allows to Continue without connecting to network

Status in the base for Ubuntu mobile products:
  Fix Released
Status in Ubuntu UX bugs:
  Fix Committed
Status in ubuntu-system-settings package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu RTM:
  Fix Released

Bug description:
  The wifi page of the wizard lets you select the network, but doesn't
  wait for a connection to enable the Continue button.

  Until connected, the button should probably say Skip, and if there's
  a connection in progress, that should be cancelled. Or we need a modal
  dialog introduced (like the one we have for notifications in the
  shell) in the wizard as well, so that you need to cancel the password
  entry before being able to skip.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: ubuntu-system-settings-wizard 0.3+14.10.20140828.2~rtm-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: armhf
  Date: Sat Aug 30 11:17:34 2014
  InstallationDate: Installed on 2014-08-30 (0 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20140830-030204)
  SourcePackage: ubuntu-system-settings
  UpgradeStatus: No upgrade log present (probably fresh install)
  upstart.ubuntu-system-settings-wizard-cleanup.log:
   Ending wizard
   Resetting MIR_SOCKET to /run/mir_socket
   ()
   ubuntu-system-settings-wizard stop/waiting

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1363400/+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 1417963] Re: webbrowser-app autopilot test regression with Qt 5.4

2015-02-05 Thread Albert Astals Cid
** Branch linked: lp:~aacid/oxide/qt54_variantjs

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

Title:
  webbrowser-app autopilot test regression with Qt 5.4

Status in oxide-qt package in Ubuntu:
  In Progress
Status in webbrowser-app package in Ubuntu:
  Invalid

Bug description:
  It would look like the test
  webbrowser_app.tests.test_selection.TestSelection.test_resize_selection
  reliably fails with Qt 5.4 while it succeeds with Qt 5.3.2.

  Log attached.

  See https://wiki.ubuntu.com/Touch/QtTesting for more information about
  Qt 5.4.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oxide-qt/+bug/1417963/+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 1372413] Re: Extensive battery drain on RTM

2015-02-05 Thread Pat McGowan
(see also comment #5 above)

sudo add-apt-repository ppa:colin-king/white
sudo apt-get update
sudo apt-get install cpustat

cpustat blocks on a select() system call. While the phone is not suspended it 
will log all CPU process activity every 2 seconds.  This will consume ~0.25% of 
the CPU, so in real terms that's almost nothing.  cpustat will not block the 
phone from deep sleep. The kernel will freeze it when the phone goes into deep 
sleep. please do the following:
 
adb into the phone and type:

nohup cpustat 2  cpustat.log 
exit

then disconnect the USB and let it run.

Once the phone is drained, or whenever you want to stop the test,  copy
the cpustat.log over and we can analyze it.

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

Title:
  Extensive battery drain on RTM

Status in the base for Ubuntu mobile products:
  In Progress
Status in powerd package in Ubuntu:
  Confirmed

Bug description:
  Mako, RTM 1

  Since upgrading to RTM the battery life is really poor. What used to
  be a battery drain of 5-10% per hour (which is still high) is now
  10-15% per hour. Sometimes the phone runs really hot, so there seem to
  be something going on in the background that is consuming power. I
  mostly have bluetooth, GPS (which isn't always working), wifi and
  cellular on, but that's no difference from when I was running 'devel-
  proposed' with MultiROM with much less battery consumption.

  As an example, I started with a full charge at 7am. After some web
  surfing (15 mins) and watching a couple of youtube videos (on wifi)
  battery was down to 66% at 9:15. That's 34% in just over two hours! I
  recharged again before lunch and had the phone idle until coming back
  1 hour and 45 mins later to find only 75% of battery left, this time
  without the phone running particularly hot.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1372413/+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 1418552] [NEW] dhclient uses lots of memory on systems with many interfaces

2015-02-05 Thread Jan-Benedict Glaw
Public bug reported:

This is with 4.2.4-7ubuntu12, but since there's not a lot of code
changing in ISC dhcpd (and its client), I guess this is a quite general
problem: We're currently preapring a box to test a captive portal, thus
this system has a hugh amount (ie. 1000) interfaces bridged to a
physical network port.

Calling dhclient (with a custom script to configure the different
interfaces independently by using non-default routing tables) works
perfectly find for the first few interfaces. However, when there are
already a few hundred interfaces up, it takes longer and longer for each
new dhclient instance to get an IP address.

As strace reveals, it seems dhclient scans all interfaces, even several
times, during start-up. I guess that it prepares data for each interface
that's already configured with an IP address, thus wasting a lot of
memory for no good. This should be reported upstream.

** Affects: isc-dhcp (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  dhclient uses lots of memory on systems with many interfaces

Status in isc-dhcp package in Ubuntu:
  New

Bug description:
  This is with 4.2.4-7ubuntu12, but since there's not a lot of code
  changing in ISC dhcpd (and its client), I guess this is a quite
  general problem: We're currently preapring a box to test a captive
  portal, thus this system has a hugh amount (ie. 1000) interfaces
  bridged to a physical network port.

  Calling dhclient (with a custom script to configure the different
  interfaces independently by using non-default routing tables) works
  perfectly find for the first few interfaces. However, when there are
  already a few hundred interfaces up, it takes longer and longer for
  each new dhclient instance to get an IP address.

  As strace reveals, it seems dhclient scans all interfaces, even
  several times, during start-up. I guess that it prepares data for each
  interface that's already configured with an IP address, thus wasting a
  lot of memory for no good. This should be reported upstream.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1418552/+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 1418505] Re: QT5.4: Ciboriums scanning sdcard message is deleted but the indicator never turns off

2015-02-05 Thread Timo Jyrinki
** Description changed:

  STEPS:
  1. install vivid on krillin
  2. Add silo 5 with citrain
  3. Insert an sdcard
  4. Clear the message from the indicator
  5. Look at the indicator
  6. Let the phone sleep
  
  EXPECTED:
  The same behaviour as in RTM and Vivid in the indicator is cleared
  
  ACTUAL:
  The messaging indicator stays light up and the led flashes when the phone 
sleeps.
+ 
+ More information about using Qt 5.4 (targeted before Feature Freeze Feb
+ 19) at https://wiki.ubuntu.com/Touch/QtTesting

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

Title:
  QT5.4: Ciboriums scanning sdcard message is deleted but the indicator
  never turns off

Status in indicator-messages package in Ubuntu:
  New

Bug description:
  STEPS:
  1. install vivid on krillin
  2. Add silo 5 with citrain
  3. Insert an sdcard
  4. Clear the message from the indicator
  5. Look at the indicator
  6. Let the phone sleep

  EXPECTED:
  The same behaviour as in RTM and Vivid in the indicator is cleared

  ACTUAL:
  The messaging indicator stays light up and the led flashes when the phone 
sleeps.

  More information about using Qt 5.4 (targeted before Feature Freeze
  Feb 19) at https://wiki.ubuntu.com/Touch/QtTesting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1418505/+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 1076976] Re: When Unity is loaded, expo exits to the workspace being pointed at (not the one highlighted)

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

** Changed in: ayatana-design
   Status: Triaged = Invalid

** Changed in: unity
   Status: Incomplete = Invalid

** Changed in: unity (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  When Unity is loaded, expo exits to the workspace being pointed at
  (not the one highlighted)

Status in Ayatana Design:
  Invalid
Status in Unity:
  Invalid
Status in Unity 6.0 series:
  Won't Fix
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Since I upgraded to quantal I encounter the following issue:
  - press Super+S to quickly find the relevant workspace I want to go,
  - realize I'm in the right one
  - press Super+S again to come back to the normal display

  Oops, the workspace is switched to where the mouse pointer is.

  This happens only when pressing Super+S twice. If instead I press
  escape or navigate with direction keys and press return or click to
  the target workspace (obviously ;), I'm switched to the correct
  workspace.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/1076976/+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 1075614] Re: Unity leaks memory even when desktop is idle, screen locked in 12.10

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  Unity leaks memory even when desktop is idle, screen locked in 12.10

Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  You can see the memory usage growing on my work computer over the
  weekend (not the spikes where I started using the machine, just the
  slow growth on Sat/Sun): http://imgur.com/DpDdO

  That's all compiz, it leaks about 100 MB a day, even idle with the
  screen locked. I'm running Ubuntu 12.10 64 bit. That process will grow
  up to over 1.5 GB in a couple weeks and I'll have to reboot my machine
  just to reclaim memory. Normally I wouldn't care if apps leak some
  memory, but compiz is a core service, I haven't found a way to restart
  it without trashing my desktop.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1075614/+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 1301842] Re: lockscreen re-locks after unlocking if wallpaper chaged in the backgroud

2015-02-05 Thread Andrea Azzarone
** Changed in: unity/7.2
Milestone: 7.2.4 = None

** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  lockscreen re-locks after unlocking if wallpaper chaged in the
  backgroud

Status in Unity:
  Invalid
Status in Unity 7.2 series:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Lockscreen re-locks if rotating wallpaper changes in the background
  before unlocking .

  1. set to community wallpaper xml file which rotates wappers automatically
  2. Lock the screen and return after 10 mins
  3, unlock the screen using password
  4. After a few seconds, the screen will re-lock with the latest changed 
wallpaper in the background

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1301842/+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 934102] Re: unity dash drops its background effect sometimes

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

** Changed in: unity/5.0
Milestone: 5.22.0 = None

** Changed in: unity/6.0
Milestone: 6.16.0 = None

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

Title:
  unity dash drops its background effect sometimes

Status in Unity:
  Invalid
Status in Unity 5.0 series:
  Invalid
Status in Unity 6.0 series:
  Invalid
Status in Unity Distro Priority:
  Expired
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Using unity 5.4:

  - open the files lens
  - display the filters
  - set to fullscreen and back to normal

  the dash drops its background effects after a few tries

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/934102/+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 928822] Re: compiz crashed with SIGSEGV in std::__detail::_List_node_base::_M_hook() from unity::debug::Introspectable::AddChild()

2015-02-05 Thread Andrea Azzarone
** Changed in: unity
Milestone: 7.3.1 = None

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

Title:
  compiz crashed with SIGSEGV in
  std::__detail::_List_node_base::_M_hook() from
  unity::debug::Introspectable::AddChild()

Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Expired

Bug description:
  This crash happened when I was enabling some plug-ins in Compiz
  (CCSM). I enabled the plug-in Magnifier, tested it, and disabled it.
  The crash occurred after the plug-in was disabled.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: unity 5.2.0-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-14.23-generic 3.2.3
  Uname: Linux 3.2.0-14-generic x86_64
  ApportVersion: 1.91-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  Date: Wed Feb  8 11:01:48 2012
  ExecutablePath: /usr/bin/compiz
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 
(2029.1)
  ProcCmdline: compiz
  SegvAnalysis:
   Segfault happened at: 0x7fa88f5f2413 
_ZNSt8__detail15_List_node_base7_M_hookEPS0_+19:  mov%rdi,(%rax)
   PC (0x7fa88f5f2413) ok
   source %rdi ok
   destination (%rax) (0x005a1106) not located in a known VMA region (needed 
writable region)!
  SegvReason: writing unknown VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   std::__detail::_List_node_base::_M_hook(std::__detail::_List_node_base*) () 
from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
   unity::debug::Introspectable::AddChild(unity::debug::Introspectable*) () 
from /usr/lib/compiz/libunityshell.so
   unity::dash::Controller::SetupDashView() () from 
/usr/lib/compiz/libunityshell.so
   unity::dash::Controller::EnsureDash() () from 
/usr/lib/compiz/libunityshell.so
   ?? () from /usr/lib/compiz/libunityshell.so
  Title: compiz crashed with SIGSEGV in 
std::__detail::_List_node_base::_M_hook()
  UpgradeStatus: Upgraded to precise on 2012-02-07 (1 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/928822/+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 1277227] Re: LabelVisual.isInsideOverlay() performance issue

2015-02-05 Thread Zsombor Egri
Unfortunately there's no better way to detect in what context the label
is used, is it in a popover or not. Perhaps a better solution would be
to get subtheming to solve this. The new ListItem brings more
flexibility and this and almost all components from the
Ubuntu.Components.ListItems module will be deprecated, so maintaining
this component would be impossible.

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed = Won't Fix

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

Title:
  LabelVisual.isInsideOverlay() performance issue

Status in ubuntu-ui-toolkit package in Ubuntu:
  Won't Fix

Bug description:
  I ran my app (lp:ureadit) in the QtCreator analyzer and the following
  code accounted for 30% of the rendering time:

  http://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-
  
toolkit/trunk/view/head:/modules/Ubuntu/Components/ListItems/LabelVisual.qml#L28

  // FIXME: very ugly hack to detect whether the list item is inside a 
Popover
  property bool overlay: isInsideOverlay(label)
  function isInsideOverlay(item) {
  if (!item.parent) return false;
  return item.parent.hasOwnProperty(pointerTarget) || 
label.isInsideOverlay(item.parent)
  }

  Location  TypeTime in Percent Total Time  Calls   Mean Time   
Median Time Longest TimeShortest Time   Details
  LabelVisual.qml:27Binding 8.10 %  125.849 ms  152 827.955 µs  
894.083 µs  2.305 ms466.326 µs  property bool overlay: 
isInsideOverlay(label)

  Location  Time in Percent Total Time  Self Time in PercentSelf 
Time   Details
  LabelVisual.qml:28158.82 %885.349 ms  27.91 % 88.852 ms   
isInsideOverlay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1277227/+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 1418441] Re: package isc-dhcp-server 4.2.4-7ubuntu14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-02-05 Thread Thomas Oehlenschlæger
Fixed on my host, my isc-dhcp6-server file in /etc/init.d had the same
Provides name

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

Title:
  package isc-dhcp-server 4.2.4-7ubuntu14 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in isc-dhcp package in Ubuntu:
  New

Bug description:
  package isc-dhcp-server 4.2.4-7ubuntu14 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: isc-dhcp-server 4.2.4-7ubuntu14
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  Uname: Linux 3.13.0-37-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: amd64
  Date: Thu Feb  5 09:54:32 2015
  DhServerLeases:
   
  DuplicateSignature: package:isc-dhcp-server:4.2.4-7ubuntu14:subprocess 
installed post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2012-04-18 (1022 days ago)
  InstallationMedia: Ubuntu-Server 10.04.4 LTS Lucid Lynx - Release amd64 
(20120214.2)
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.13.0-37-generic 
root=UUID=98a82d8c-6ece-40ee-9684-ac4ff41c8aca ro quiet
  SourcePackage: isc-dhcp
  Title: package isc-dhcp-server 4.2.4-7ubuntu14 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to utopic on 2015-02-05 (0 days ago)
  modified.conffile..etc.dhcp.dhcpd.conf: [modified]
  mtime.conffile..etc.dhcp.dhcpd.conf: 2014-12-29T14:36:20.818033

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1418441/+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 1406952] Re: systemd-udevd[471]: Error calling EVIOCSKEYCODE: Invalid argument

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

** Changed in: systemd (Ubuntu)
   Status: New = Confirmed

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

Title:
  systemd-udevd[471]: Error calling EVIOCSKEYCODE: Invalid argument

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  during boot systemd-udevd reports:  Error calling EVIOCSKEYCODE:
  Invalid argument

  error message has been noted during boot and collected via dmesg. No
  device name associated with it.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: systemd-services 204-5ubuntu20.9
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: LXDE
  Date: Thu Jan  1 17:16:55 2015
  InstallationDate: Installed on 2013-05-01 (609 days ago)
  InstallationMedia: Lubuntu 12.10 Quantal Quetzal - Release amd64 
(20121017.1)
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1406952/+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 1363748] Re: Utopic crash on launch; Attempt to unlock mutex that was not locked

2015-02-05 Thread Monsta
** Package changed: pyrenamer (Ubuntu) = gtk+2.0 (Ubuntu)

-- 
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/1363748

Title:
  Utopic crash on launch; Attempt to unlock mutex that was not locked

Status in pyRenamer:
  New
Status in gtk+2.0 package in Ubuntu:
  Fix Released

Bug description:
  Recently updated to Ubuntu Utopic, and when I try to launch pyrenamer
  it displays an empty window for a fraction of a second, and crashes
  with the following:

  /usr/lib/pymodules/python2.7/pyrenamer/pyrenamer.py:120: GtkWarning: 
GtkSpinButton: setting an adjustment with non-zero page size is deprecated
self.glade_tree = gtk.glade.XML(pyrenamerglob.gladefile, main_window)
  Attempt to unlock mutex that was not locked
  Aborted

  It launched and worked okay on Trusty. I created an Utopic debootstrap
  and it fails to launch in there also.

  lsb_release -rd:
  Description:  Ubuntu Utopic Unicorn (development branch)
  Release:  14.10

  apt-cache policy pkgname:
  pyrenamer:
Installed: 0.6.0-1.1
Candidate: 0.6.0-1.1
Version table:
   *** 0.6.0-1.1 0
  500 http://gb.archive.ubuntu.com/ubuntu/ trusty/universe amd64 
Packages
  500 http://gb.archive.ubuntu.com/ubuntu/ utopic/universe amd64 
Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: pyrenamer 0.6.0-1.1
  ProcVersionSignature: Ubuntu 3.16.0-11.16-generic 3.16.1
  Uname: Linux 3.16.0-11-generic x86_64
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: amd64
  Date: Sun Aug 31 23:43:14 2014
  PackageArchitecture: all
  SourcePackage: pyrenamer
  UpgradeStatus: Upgraded to utopic on 2013-03-29 (520 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/pyrenamer/+bug/1363748/+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 1418456] Re: unity8 assert failure: *** Error in `unity8': double free or corruption (fasttop): 0xb20055a0 ***

2015-02-05 Thread Alberto Mardegan
Adding a valgrind of a qmlscene with a simple rectangle, with the same
environment as before.

** Attachment added: valgrind-qmlscene.txt
   
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1418456/+attachment/4313205/+files/valgrind-qmlscene.txt

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

Title:
  unity8 assert failure: *** Error in `unity8': double free or
  corruption (fasttop): 0xb20055a0 ***

Status in unity8 package in Ubuntu:
  New

Bug description:
  Starting the unity8-desktop-session-mir in a Lenovo IdeaPad s3-10t. I
  get a black screen, with a mouse cursor. unity8 is not running.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.04
  Package: unity8 8.02+15.04.20150123.3-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Uname: Linux 3.13.0-45-generic i686
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: i386
  AssertionMessage: *** Error in `unity8': double free or corruption (fasttop): 
0xb20055a0 ***
  CrashCounter: 1
  Date: Thu Feb  5 11:20:30 2015
  ExecutablePath: /usr/bin/unity8
  InstallationDate: Installed on 2012-10-07 (850 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
  ProcCmdline: unity8
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: unity8
  StacktraceTop:
   __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0xb616a89c *** 
Error in `%s': %s: 0x%s ***\n) at ../sysdeps/posix/libc_fatal.c:175
   malloc_printerr (action=optimized out, str=0xb616aa60 double free or 
corruption (fasttop), ptr=0xb20055a0) at malloc.c:4996
   _int_free (av=0xb210, p=optimized out, have_lock=0) at malloc.c:3840
   ?? () from /usr/lib/i386-linux-gnu/libgbm.so.1
   gbm_device_destroy () from /usr/lib/i386-linux-gnu/libgbm.so.1
  Title: unity8 assert failure: *** Error in `unity8': double free or 
corruption (fasttop): 0xb20055a0 ***
  UpgradeStatus: Upgraded to vivid on 2015-01-31 (4 days ago)
  UserGroups: adm lpadmin nopasswdlogin sambashare sudo
  upstart.unity8.log:
   ()
   [1423128879.172108] (II) SharedLibrary: Loading libmirplatform5driver.so
   qtmir.mir: MirServer created
   [1423128879.540845] (II) Server: Starting
   *** Error in `unity8': double free or corruption (fasttop): 0xb20055a0 ***

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1418456/+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 1418490] Re: Vivid: Popup appears on anything that uses sound.

2015-02-05 Thread Ted Gould
*** This bug is a duplicate of bug 1416233 ***
https://bugs.launchpad.net/bugs/1416233

** This bug has been marked a duplicate of bug 1416233
   Sound indicator notification shows each time the a sound starts or stops

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

Title:
  Vivid: Popup appears on anything that uses sound.

Status in indicator-sound package in Ubuntu:
  New

Bug description:
  STEPS:
  1. Put the latest vivid image on the device
  2. Put some music and videos on the device
  3. Swipe to the Music scope
  4. Tap on a track
  5. Tap play in the scope
  6. Tap pause
  7. Tap play in the music app
  8. Tap pause
  9. Tap play
  10. Swipe from the right as if you were closing the app
  11. Close the app
  12. Swipe to the video scope
  13. Tap on the video
  14. Tap play
  15. Tap pause
  16. Tap play
  17. Swipe from the right as if you were closing the app
  18. move back to the app and press play

  EXPECTED:
  I expect the behaviour to be the same as the device on rtm

  ACTUAL:
  Everytime an audio stream is triggered the volume osd pops up, this then sits 
there for a couple of seconds and blocks features you may need to access.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1418490/+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 1363400] Re: [wizard] allows to Continue without connecting to network

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package unity8 - 8.02+15.04.20150205-0ubuntu1

---
unity8 (8.02+15.04.20150205-0ubuntu1) vivid; urgency=medium

  [ Andrea Cimitan ]
  * Fix continue button in wifi wizard page, adds qml-module-
qtsysteminfo as unity8 dep (LP: #1363400)
  * Background needs to be specified to be visible in horizontal cards
(LP: #1411748)

  [ CI Train Bot ]
  * Resync trunk

  [ Michał Sawicz ]
  * Add workaround for gcc ICE.

  [ Albert Astals ]
  * Implement proper updateRanges for horizontal items (i.e. Carousel,
Horizontal List)

  [ Michael Terry ]
  * Don't accept multiple Finish clicks during the last step of the
wizard

  [ Daniel d'Andrada ]
  * Unify all liblightdm mocks
  * Ensure the greeter password field is not covered by the keyboard
  * Don't show() the lockscreen if it's already being shown
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Thu, 05 Feb 2015 
10:30:13 +

** Changed in: unity8 (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  [wizard] allows to Continue without connecting to network

Status in the base for Ubuntu mobile products:
  Fix Released
Status in Ubuntu UX bugs:
  Fix Committed
Status in ubuntu-system-settings package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings package in Ubuntu RTM:
  Fix Released

Bug description:
  The wifi page of the wizard lets you select the network, but doesn't
  wait for a connection to enable the Continue button.

  Until connected, the button should probably say Skip, and if there's
  a connection in progress, that should be cancelled. Or we need a modal
  dialog introduced (like the one we have for notifications in the
  shell) in the wizard as well, so that you need to cancel the password
  entry before being able to skip.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: ubuntu-system-settings-wizard 0.3+14.10.20140828.2~rtm-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: armhf
  Date: Sat Aug 30 11:17:34 2014
  InstallationDate: Installed on 2014-08-30 (0 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20140830-030204)
  SourcePackage: ubuntu-system-settings
  UpgradeStatus: No upgrade log present (probably fresh install)
  upstart.ubuntu-system-settings-wizard-cleanup.log:
   Ending wizard
   Resetting MIR_SOCKET to /run/mir_socket
   ()
   ubuntu-system-settings-wizard stop/waiting

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1363400/+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 1056427] Re: slight flicker in the application title when gnome-control-center is closed.

2015-02-05 Thread Andrea Azzarone
Marking as incomplete as for comment #3

** Changed in: unity
   Status: Confirmed = Incomplete

** Changed in: unity/7.2
   Status: Confirmed = Incomplete

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

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

Title:
  slight flicker in the application title when gnome-control-center is
  closed.

Status in Unity:
  Incomplete
Status in Unity 7.2 series:
  Incomplete
Status in unity package in Ubuntu:
  Incomplete

Bug description:
  1. open nautilus
  2. open gnome-control-center
  2. close control center

  What happens:
  there is a slight flicker in the panel.

  What should happen:
  no flicker.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: unity 6.6.0+stagingfuturebzr2741ubuntu0+785 [origin: 
LP-PPA-unity-team-staging-future]
  ProcVersionSignature: Ubuntu 3.5.0-15.22-generic 3.5.4
  Uname: Linux 3.5.0-15-generic x86_64
  ApportVersion: 2.5.2-0ubuntu4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CrashDB: unity
  Date: Wed Sep 26 01:05:21 2012
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120831)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1056427/+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 1408910] Re: Ubuntu Desktop Next fails to start; just black screen and mouse pointer (unity8.log: std::exception::what: Failed to create shared EGL context)

2015-02-05 Thread Alexandros Frantzis
Possible duplicate: bug 1418456 . It has some interesting backtraces and
valgrind logs.

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

Title:
  Ubuntu Desktop Next fails to start; just black screen and mouse
  pointer (unity8.log: std::exception::what: Failed to create shared EGL
  context)

Status in Mir:
  Confirmed
Status in Qt integration with the Mir display server:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu Desktop Next fails to start. I just get a black screen and
  mouse pointer. So unity-system-compositor is working fine. Only the
  nested unity8 can't run:

  unity8.log:
  ~~~
  ()
  [1420794321.348507] (II) SharedLibrary: Loading libmirplatform5driver.so
  qtmir.mir: MirServer created
  [1420794321.423199] (II) Server: Starting
  libEGL warning: unsupported platform (null)
  ERROR: 
/build/buildd/mir-0.10.0+15.04.20150107.2/src/server/graphics/nested/nested_display.cpp(85):
 Throw in function void 
mir::graphics::nested::detail::EGLDisplayHandle::initialize(MirPixelFormat)
  Dynamic exception type: 
N5boost16exception_detail10clone_implINS0_19error_info_injectorISt13runtime_error
  std::exception::what: Failed to create shared EGL context

  ERROR: QMirServer - Mir failed to start
  terminate called after throwing an instance of 
'boost::exception_detail::clone_implboost::exception_detail::error_info_injectorstd::logic_error
 '
what():  Cannot use configuration before apply_settings() call
  ~~~

  I've also verified mir_proving_server with mir_demo_client_* runs fine
  in another VT.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1408910/+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 1171917] Re: Unity stays gray'd out after canceling a drag'n'drop action

2015-02-05 Thread Thilo Cestonaro
I can't reproduce it neither! So can be closed!

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

Title:
  Unity stays gray'd out after canceling a drag'n'drop action

Status in Unity:
  Incomplete
Status in unity package in Ubuntu:
  Incomplete

Bug description:
  Hey,

  following steps can be used to reproduce the bug.

  1. open a nautilus windows
  2. have it unmaximized
  3. now start dragging a file or folder and drag it over the unity startbutton 
bar
  4. cancel drag operation by releasing the mouse button on the nautilus window 
top bar.

  Result:
  The unity startbutton bar stays gray'd out.
  (You can open the dash to revert it back to normal look)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1171917/+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 1401947] Re: ubuntu loses mouse click handler 14.04

2015-02-05 Thread Ulo
I have twekead Firefox in such a way that it does not open a second
window no matter of what (always opens the 2nd window in a tab instead).
So, I cannot currently reproduce the bug as I need to have the system
stable for working. Can you simply follow the explanation of how I have
reproduced it. Open one firefox window, then open another one. Now copy
from either of the two windows the text into another application. Say
libreoffice, and this should stop mouse operation. I have currently
apport disabled because of another conflict with apparmor (Estonian ID
card issue that I have solved meanwhile).

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

Title:
  ubuntu loses mouse click handler 14.04

Status in Unity:
  Incomplete
Status in unity package in Ubuntu:
  Incomplete

Bug description:
  When a second window is opened in Firefox (34.0 canonical) mouse clicks 
sometimes stop working. This typically occurs while copying text from the 
second Firefox window into another application. Opening the new window in a new 
tab instead suppresses this behaviour, but still opening popups lead to the 
same performance.
  Mouse moves, but clicks only work in unity launch bar. Mouse performance can 
be restored by restarting unity (from terminal with setid unity), although 
this does not always work.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1401947/+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 1416233] Re: Sound indicator notification shows each time the a sound starts or stops

2015-02-05 Thread Ted Gould
So we're going to land a branch that makes the a lot less annoying, but
there still are a couple of notifications we'd like to clean up. That's
because we're not filtering out the event changes at the core of the
roles. Once we fix the core, the notifications will in turn get cleaned
up. That core work is going to be tracked here:

https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1418210

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

Title:
  Sound indicator notification shows each time the a sound starts or
  stops

Status in indicator-sound package in Ubuntu:
  In Progress

Bug description:
  The latest Vivid image on mako (84)[1] causes the sound notification
  to popup each time the system starts or stops a sound. When the sound
  stops the notification indicates that the sound is muted, when it is
  in fact not. In the Music app, for instance, this is quite annoying.

  1 - http://people.canonical.com/~ogra/touch-image-stats/84.changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1416233/+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 1413194] Re: [regression] Cut/Copy/Paste options displayed off the top of the screen from the addressbar

2015-02-05 Thread Michał Sawicz
This also seems to be the cause of the dash search history appearing
off-screen.

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

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

Title:
  [regression] Cut/Copy/Paste options displayed off the top of the
  screen from the addressbar

Status in Web Browser App:
  Invalid
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce

  1) Long press on the addressbar

  Expected result

  Cut/Copy/Paste option should appear in a pop-up below the addressbar

  Actual result

  The pop-up is displayed above the addressbar, meaning only the bottom
  of it is visible, the rest is cut off by the notification area/top of
  the screen.

  mako, vivid-proposed #72

To manage notifications about this bug go to:
https://bugs.launchpad.net/webbrowser-app/+bug/1413194/+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 1387691] Re: Media Player should not be visible in the app scope and launcher

2015-02-05 Thread Michał Sawicz
Output from a chat with tvoss today:

We foresee two parallel approaches: a media player widget and a player
using trusted sessions.

1)
If your app has video playback caps + apparmor profile, you should just be able 
to go:

VideoPlayer { // name TBD, component to be ~extracted from the current media 
player app into the SDK
source: url://to/video
}

That's it. It should be an item as any other in your QML scene, and have
a button to put it fullscreen. Hardware decoding included.

2)
If you don't want to embed the player in your app, dispatching a URL to it 
should result in the video player opening as a trusted session for your app, 
covering it whole.

That might not necessarily be the behaviour we want for windowed mode,
where we might want an actual player app, but that we'll have to
determine when we get there.

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

Title:
  Media Player should not be visible in the app scope and launcher

Status in the base for Ubuntu mobile products:
  In Progress
Status in Ubuntu UX bugs:
  Fix Committed
Status in mediaplayer-app package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  Invalid
Status in url-dispatcher package in Ubuntu:
  In Progress
Status in mediaplayer-app package in Ubuntu RTM:
  In Progress
Status in url-dispatcher package in Ubuntu RTM:
  In Progress

Bug description:
  The mediaplayer is an 'auxiliary app' in the current design approach.
  That means that its purpouse it playback media launched by other apps
  (e.g Messaging) or scopes (e.g. Videos). It should not be launched
  from the App scopes.

  However, the 'Update' section System Settings should still display it
  when an update to mediaplayer is available.

  Current behaviour
  - Mediaplayer app displayed in App Scope, Launcher and Settings

  Desired behaviour
  - Mediaplayer app not displayed in App Scope or Launcher
  - Mediaplayer displayed in Settings  Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1387691/+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 1352251] Re: Reverse trust prompt hosting

2015-02-05 Thread Michał Sawicz
Alberto, having talked through this with tvoss we think we found a
sustainable solution for your use case. Just make sure to use
${MIR_SOCKET}_trusted for no-UI oxide thingy. You don't need anything
special to connect to that, no need to create a trusted session or
anything.

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

Title:
  Reverse trust prompt hosting

Status in the base for Ubuntu mobile products:
  Confirmed
Status in Qt integration with the Mir display server:
  Triaged
Status in unity8 package in Ubuntu:
  Triaged
Status in unity8 package in Ubuntu RTM:
  Triaged

Bug description:
  In order to keep continuity, keeping this original bug rather than
  spawning a new one.

  new description:
  currently non ui process are asking for trust prompts from related focused 
ui's, example scopes ask for dash to host a prompt. however, it needs to be the 
other way around, with the ui process having a list of pid's that it can host 
for.

  original description:

  On the phone, a splash screen is shown as soon as QGuiApplication is 
instantiated; however, a QWindow might be created much later, or not be created 
at all.
  We have for example a D-Bus service (ubuntu-system-settings-online-accounts) 
which is a QGuiApplication, but creates QWindows only as client requests 
arrive. In the common case, this works fine because the service is generally 
started when a window needs to be displayed, but we are now preparing for 
implementing trust session support, and that would require either this bug to 
be fixed, or a deeper refactoring of our code.

  see below, that the original description was simply incorrectly using
  the default socket, instead of the trust socket. the default socket
  causes the splash screen, whereas the trust socket won't

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1352251/+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 1364070] Re: vivid, utopic and trusty unity (7.3.1+14.10.20140811-0ubuntu1) launcher addition through gsettings isn't picked up

2015-02-05 Thread Bug Watch Updater
** Changed in: glib
   Status: Unknown = New

** Changed in: glib
   Importance: Unknown = Medium

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

Title:
  vivid, utopic and trusty unity (7.3.1+14.10.20140811-0ubuntu1)
  launcher addition through gsettings isn't picked up

Status in The G Library - GLib:
  New
Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  As discussed on IRC, I tried to change the favorites key, and 3 trials
  on 10 didn't make any change in what the launcher displays. seb128
  reproduced it as well. (just be aware that we just create the .desktop
  file just before).

  The exact same code seems to work 100% of the time on trusty.

  So, we:
  1. create the desktop file
  2. from gi.repository import GLib, Gio
  gsettings = Gio.Settings(schema_id=com.canonical.Unity.Launcher, 
path=/com/canonical/unity/launcher/)
  then, get the favorites list and add the desktop file.
  3. gsettings.set_strv(favorites, new_launcher_list)
  - No launcher icon added from new launcher list.
  However, a $ gsettings get shows that desktop file (which is present.
  Note that changing the list and changing it back works.

  This was first experimented on June 2014 and reported on IRC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/glib/+bug/1364070/+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 1417118] Re: test_looses_focus_when_reloading fails when run on desktop

2015-02-05 Thread Olivier Tilloy
I think I (finally) found the culprit. When the entire text in the
address bar is selected (which happens programatically when giving focus
to the address bar), the TextField widget displays selection handles to
allow the user to resize the selection. The mouse areas to interact with
them are wider than the actual handles, and the left one overlaps with
the action button. I’m attaching a screenshot that demonstrates this
visually (I added a semi-transparent green rectangle that outlines the
mouse areas for the handles).

** Attachment added: textcursor.png
   
https://bugs.launchpad.net/webbrowser-app/+bug/1417118/+attachment/4313039/+files/textcursor.png

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

Title:
  test_looses_focus_when_reloading fails when run on desktop

Status in Autopilot:
  New
Status in Web Browser App:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  Recently, the otto tests started runnning successfully again for the
  webbrowser-app CI job (they had been broken for a long time).

  Now they all pass but one:

  
webbrowser_app.tests.test_addressbar_states.TestAddressBarStates.test_looses_focus_when_reloading

  I’m attaching the test result output as well as a video capture of
  what happens when the test is run.

  It appears that clicking the reload button in the address bar doesn’t
  activate the reload action, but instead shows the contextual menu as
  if the click had gone through to the TextField below.

To manage notifications about this bug go to:
https://bugs.launchpad.net/autopilot/+bug/1417118/+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 1414285] Re: Logging into facebook from the photos scope didn't display any photos

2015-02-05 Thread Marcus Tomlinson
For the Instagram issue, see Bug #1415595.

** Changed in: unity-scopes-api (Ubuntu)
 Assignee: (unassigned) = Marcus Tomlinson (marcustomlinson)

** Branch linked: lp:~marcustomlinson/unity-scopes-api/fix_acl

** Branch linked: lp:~marcustomlinson/unity-scopes-shell/fix_acl

** Branch linked: lp:~marcustomlinson/unity-scopes-api/fix_acl-rtm

** Branch linked: lp:~marcustomlinson/unity-scopes-shell/fix_acl-rtm

** Changed in: unity-scopes-api (Ubuntu)
   Status: New = Fix Released

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

Title:
  Logging into facebook from the photos scope didn't display any photos

Status in unity-scopes-api package in Ubuntu:
  Fix Released

Bug description:
  STEPS:
  Pre-requisites:
  2 devices
  device 1 login to facebook ensure it displays photos in the scope

  1. On the DUT flash the latest RTM-proposed image
  2. citrain device-upgrade 0 your passcode/password/install latest code
  3. Scroll to the photo's scope
  4. Tap on the login to facebook link
  5. Add your facebook login detail
  6. Same message is on the scope that you need to login
  7. Goto Setting→accounts→Facebook
  8. ensure that photos and facebook photos are set to green tick

  EXPECTED:
  I expected that photos that are on the first phone to be displayed on the 
second

  ACTUAL:
  Nothing change and no photos were displayed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1414285/+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 924353] Re: New Dash Home has different recent apps/files than lenses

2015-02-05 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: Invalid = Fix Released

** Changed in: unity (Ubuntu)
   Importance: Undecided = High

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) = Mikkel Kamstrup Erlandsen (kamstrup)

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

Title:
  New Dash Home has different recent apps/files than lenses

Status in Dee:
  Fix Released
Status in Unity:
  Fix Released
Status in dee package in Ubuntu:
  Fix Released
Status in unity package in Ubuntu:
  Fix Released

Bug description:
  I'm using Unity 5.2.0~+bzr1883ubuntu0+626.

  The new Dash Home (without the big buttons) shows a different set of
  recently used apps than the application lens and a different set of
  recently used files than the files lens.

  It also uses different wording for apps (Recent vs Recently Used).
  Files uses the same Recent wording in both places.

  I've attached screenshots.

To manage notifications about this bug go to:
https://bugs.launchpad.net/dee/+bug/924353/+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 864478] Re: Window shading is broken

2015-02-05 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: Invalid = Fix Released

** Changed in: unity (Ubuntu)
   Importance: Undecided = High

** Changed in: unity (Ubuntu)
 Assignee: (unassigned) = Sam Spilsbury (smspillaz)

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

Title:
  Window shading is broken

Status in Compiz:
  Fix Released
Status in Compiz Core:
  Fix Released
Status in Unity:
  Fix Released
Status in compiz package in Ubuntu:
  Fix Released
Status in unity package in Ubuntu:
  Fix Released

Bug description:
  Shading a window results in an invisible frame and rendering
  artefacts. Also, shading doesn't happen reliably (eg, pressing the
  keybinding will not shade some windows)

  Testcase

  edit /apps/gwd/titlebar_action to 'shade'
  scroll up on a window titlebar

  The window should not disappear

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/864478/+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 777140] Re: launcher doesn't hide on its own after gesture reveal

2015-02-05 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: Expired = Incomplete

** Changed in: unity (Ubuntu)
   Importance: Wishlist = Medium

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

Title:
  launcher doesn't hide on its own after gesture reveal

Status in Ayatana Design:
  Incomplete
Status in Unity:
  Incomplete
Status in unity package in Ubuntu:
  Incomplete

Bug description:
  When i show the launcher with a 4 finger drag, it stays open until I
  manually dismiss it. It should go away on its own at some point.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/777140/+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 1332759] Re: unity-panel-service crashed with SIGABRT in g_assertion_message()

2015-02-05 Thread Apport retracing service
** Tags added: utopic

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

Title:
  unity-panel-service crashed with SIGABRT in g_assertion_message()

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  Not sure what happened here. My system slowed to a crawl, almost
  locked up, I killed a flash plugin via htop just to be sure, and then
  this unity-panel-service error popped up.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: indicator-application 12.10.1+14.04.20140407-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-30.54-generic 3.13.11.2
  Uname: Linux 3.13.0-30-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CrashDB: unity
  CurrentDesktop: Unity
  Date: Fri Jun 20 22:17:08 2014
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/unity/unity-panel-service
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=en_US
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: indicator-application
  StacktraceTop:
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   gdk_pixbuf_animation_new_from_file () from 
/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0
   gtk_image_set_from_file () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libindicator3.so.7
  Title: unity-panel-service crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: Upgraded to trusty on 2014-05-06 (45 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1332759/+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 1415070] Re: package linux-image-3.16.0-30-generic 3.16.0-30.40 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2015-02-05 Thread Alberto Salvia Novella
** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided = High

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

Title:
  package linux-image-3.16.0-30-generic 3.16.0-30.40 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  Confirmed

Bug description:
  I donno

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-30-generic 3.16.0-30.40
  ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
  Uname: Linux 3.16.0-29-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.7-0ubuntu8.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mani   2177 F pulseaudio
  Date: Tue Jan 27 20:25:51 2015
  DuplicateSignature: 
package:linux-image-3.16.0-30-generic:3.16.0-30.40:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=4ee8bf70-2c17-4a39-99d7-d522990e79b6
  InstallationDate: Installed on 2015-01-04 (23 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  MachineType: ASUSTeK COMPUTER INC. X550CC
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-29-generic.efi.signed 
root=UUID=d8494784-36e8-4d95-a3c3-18b82b6da1d8 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-3.16.0-30-generic 3.16.0-30.40 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/24/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: X550CC.222
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: X550CC
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX550CC.222:bd02/24/2014:svnASUSTeKCOMPUTERINC.:pnX550CC:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX550CC:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: X550CC
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1415070/+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 1377370] Re: ubuntu-desktop should depend on ibus-gtk

2015-02-05 Thread Alberto Salvia Novella
** Also affects: hundredpapercuts
   Importance: Undecided
   Status: New

** Changed in: ubuntu-meta (Ubuntu)
   Importance: Undecided = High

** Changed in: hundredpapercuts
   Importance: Undecided = High

** Changed in: hundredpapercuts
   Status: New = Confirmed

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

Title:
  ubuntu-desktop should depend on ibus-gtk

Status in One Hundred Papercuts:
  Confirmed
Status in ubuntu-meta package in Ubuntu:
  Confirmed

Bug description:
  Note that ubuntu-desktop depends on ibus-gtk3 already.

  Looking at /usr/share/im-config/data/21-ibus.rc
  GTK_IM_MODULE is only set to ibus if both gtk-2.0 and gtk-3.0 ibus modules 
are present.  Otherwise it's set to xim.

  If GTK_IM_MODULE=xim and ibus is running, then various bugs happen
  like LP: #1374721 and LP: #1375742.

  Installing ibus-gtk makes those problems go away.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: ubuntu-desktop 1.327
  ProcVersionSignature: Ubuntu 3.16.0-20.27-generic 3.16.3
  Uname: Linux 3.16.0-20-generic x86_64
  ApportVersion: 2.14.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Oct  4 13:49:55 2014
  InstallationDate: Installed on 2014-09-03 (30 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Alpha amd64 (20140902)
  SourcePackage: ubuntu-meta
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/1377370/+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 1375742] Re: ibus-daemon uses 100% CPU after a modifier key is pressed

2015-02-05 Thread Alberto Salvia Novella
*** This bug is a duplicate of bug 1377370 ***
https://bugs.launchpad.net/bugs/1377370

** This bug is no longer a duplicate of bug 1374721
   ibus-daemon uses 100% CPU when using gnome-calculator
** This bug has been marked a duplicate of bug 1377370
   ubuntu-desktop should depend on ibus-gtk

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

Title:
  ibus-daemon uses 100% CPU after a modifier key is pressed

Status in One Hundred Papercuts:
  Confirmed
Status in ibus package in Ubuntu:
  Confirmed

Bug description:
  1. Open a gtk app like gnome-calculator or gedit
  2. Press a modifier key (shift, ctrl...)
  3. Watch ibus-daemon and ibus-x11 use 100% cpu
  4. Can be stopped by right clicking, or switching windows

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-18.25-generic 3.16.3
  Uname: Linux 3.16.0-18-generic x86_64
  ApportVersion: 2.14.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Sep 30 21:26:06 2014
  InstallationDate: Installed on 2014-09-03 (27 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Alpha amd64 (20140902)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/1375742/+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 1390767] Re: trying to overwrite shared '/usr/share/man/man1/freetype-config.1.gz', which is different from other instances of package libfreetype6-dev:i386

2015-02-05 Thread Alberto Salvia Novella
** Changed in: freetype (Ubuntu)
   Importance: Undecided = High

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

Title:
  trying to overwrite shared '/usr/share/man/man1/freetype-config.1.gz',
  which is different from other instances of package
  libfreetype6-dev:i386

Status in freetype package in Ubuntu:
  Confirmed

Bug description:
  When installing libfreetype6-dev:i386 on a 64-bit machine:

  Unpacking libfreetype6-dev:i386 (2.5.2-2ubuntu1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/libfreetype6-dev_2.5.2-2ubuntu1_i386.deb (--unpack):
   trying to overwrite shared '/usr/share/man/man1/freetype-config.1.gz', which 
is different from other instances of package libfreetype6-dev:i386
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)

  Moving the /usr/share/man/man1/freetype-config.1.gz out of the way
  allows the package to install sucessfully. This is only a manual page
  conflict, as it seems.

  ProblemType: Package
  DistroRelease: Ubuntu 14.10
  Package: libfreetype6-dev 2.5.2-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
  Uname: Linux 3.16.0-24-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  AptOrdering:
   libpng12-dev: Install
   libfreetype6-dev: Install
   libpng12-dev: Configure
   libfreetype6-dev: Configure
  Architecture: amd64
  Date: Sat Nov  8 17:45:08 2014
  DuplicateSignature: package:libfreetype6-dev:2.5.2-2ubuntu1:trying to 
overwrite shared '/usr/share/man/man1/freetype-config.1.gz', which is different 
from other instances of package libfreetype6-dev:i386
  ErrorMessage: trying to overwrite shared 
'/usr/share/man/man1/freetype-config.1.gz', which is different from other 
instances of package libfreetype6-dev:i386
  InstallationDate: Installed on 2013-11-03 (369 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: freetype
  Title: package libfreetype6-dev 2.5.2-2ubuntu1 failed to install/upgrade: 
trying to overwrite shared '/usr/share/man/man1/freetype-config.1.gz', which is 
different from other instances of package libfreetype6-dev:i386
  UpgradeStatus: Upgraded to utopic on 2014-11-05 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freetype/+bug/1390767/+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 1418486] Re: Mir Mesa EGL platform leaks memory with every frame

2015-02-05 Thread Daniel van Vugt
** Changed in: mir
Milestone: None = 0.12.0

** No longer affects: mir

** Changed in: mesa (Ubuntu)
   Importance: Undecided = High

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

Title:
  Mir Mesa EGL platform leaks memory with every frame

Status in mesa package in Ubuntu:
  In Progress

Bug description:
  The Mir Mesa EGL platform leaks memory with every frame. This is the
  result of incorrect handling of the buffer objects we create from the
  incoming Mir buffers.

  The problem is exhibited in the attached 'massif.out.leak' file.  An
  excerpt from the result of ms_print for this file:

  

n   time(ms) total(B)   useful-heap(B) extra-heap(B)
stacks(B)
  

 
   23 11,5934,965,4324,503,871   461,5610
   24 12,0584,971,2564,509,023   462,2330
   25 12,6404,978,5364,515,463   463,0730
   26 13,2224,985,8324,521,903   463,9290
   27 13,8044,993,1124,528,343   464,7690
   28 14,3865,000,3924,534,783   465,6090
   29 14,7355,004,7604,538,647   466,1130
   30 15,4355,013,3844,546,326   467,0580
   31 16,0165,020,7764,552,815   467,9610
   32 16,7805,030,3604,561,279   469,0810
   33 17,1635,035,1444,565,511   469,6330

  I have attached a patch (fix-mir-mesa-egl-gbm-bo-leak.diff) to get
  some wider review before creating a final patch for the ubuntu
  package. With this patch the leak is fixed as shown in the attached
  'massif.out.fixed' file:

  

n   time(ms) total(B)   useful-heap(B) extra-heap(B)
stacks(B)
  

   56 11,7874,859,0804,410,063   449,0170
   57 11,9204,859,0804,410,063   449,0170
   58 12,0534,859,0804,410,063   449,0170
   59 12,1864,859,0804,410,063   449,0170
   60 12,3204,859,0804,410,063   449,0170
   61 12,4534,859,0804,410,063   449,0170
   62 12,5864,859,0804,410,063   449,0170
   63 12,7194,859,0804,410,063   449,0170
   64 12,8524,859,0804,410,063   449,0170
   65 12,9854,859,0804,410,063   449,0170

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1418486/+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 1403396] Re: crash while reporting

2015-02-05 Thread Alberto Salvia Novella
** Changed in: apport (Ubuntu)
   Importance: Undecided = High

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

Title:
  crash while reporting

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  Got that crash while i was creating an other report:

  oem@u32:~$ ubuntu-bug chromium-browser
  ERROR: hook /usr/share/apport/package-hooks/chromium-browser.py crashed:
  Traceback (most recent call last):
File /usr/lib/python3/dist-packages/apport/report.py, line 197, in 
_run_hook
  symb['add_info'](report, ui)
File /usr/share/apport/package-hooks/chromium-browser.py, line 185, in 
add_info
  report['etcconfig/default'] = \n.join(f.readlines())
File /usr/lib/python3/dist-packages/problem_report.py, line 563, in 
__setitem__
  assert k.replace('.', '').replace('-', '').replace('_', '').isalnum()
  AssertionError
  oem@u32:~$ [14774:14814:1217/094552:ERROR:nss_util.cc(819)] After loading 
Root Certs, loaded==false: NSS error code: -8018
  Created new window in existing browser session.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.15-0ubuntu3
  ProcVersionSignature: Ubuntu 3.18.0-7.8-generic 3.18.0
  Uname: Linux 3.18.0-7-generic i686
  NonfreeKernelModules: nvidia
  ApportLog:
   
  ApportVersion: 2.15-0ubuntu3
  Architecture: i386
  CurrentDesktop: GNOME
  Date: Wed Dec 17 09:53:13 2014
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1403396/+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 1417258] Re: YouTube videos stuttering and not playing back smoothly

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package webbrowser-app - 0.23+15.04.20150203
~rtm-0ubuntu1

---
webbrowser-app (0.23+15.04.20150203~rtm-0ubuntu1) 14.09; urgency=medium

  [ Olivier Tilloy ]
  * Revert the UA override for m.youtube.com as it was causing a lot of
stuttering (due to very high CPU usage) on krillin. In the meantime,
the issue with videos not playing that this update was meant to
address (bug #1415107) was resolved on youtube’s side. (LP:
#1417258, #1415107)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Tue, 03 Feb 2015 
17:35:26 +

** Changed in: webbrowser-app (Ubuntu RTM)
   Status: In Progress = Fix Released

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

Title:
  YouTube videos stuttering and not playing back smoothly

Status in the base for Ubuntu mobile products:
  Fix Released
Status in Oxide Webview:
  Invalid
Status in Web Browser App:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu RTM:
  Fix Released

Bug description:
  rtm build 224 on krillin
  on fast wifi connection

  - Go to videos scope
  - Choose the first YouTube video
  - Play it in YouTube and maximize the screen

  Expected results:
  - The video should play back smoothly

  Actual results:
  - The video pauses frequently and stutters
  - The progress bar shows it's not a buffering issue as most of the video has 
been downloaded already

  This is new. Wondering if it could be related to the YouTube user-
  agent string

  Note: oxide-renderer process is using 180% CPU according to top when
  the video is being played back

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1417258/+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 1418460] Re: libconnectivity-qt1-dev un-installable in click chroot

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

** Changed in: qtcreator-plugin-ubuntu (Ubuntu)
   Status: New = Confirmed

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

Title:
  libconnectivity-qt1-dev un-installable in click chroot

Status in qtcreator-plugin-ubuntu package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Invalid

Bug description:
  I am unable to install libconnectivity-qt1-dev in a click chroot. It
  hits dependency errors starting with qtbase5-dev.

  The following packages have unmet dependencies:
   libconnectivity-qt1-dev : Depends: qtbase5-dev
  E: Unable to correct problems, you have held broken packages.

  I would have thought this package would be already installed as it's a
  part of the SDK connectivity api.

  Both Dekko and Shorts app need access to this API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtcreator-plugin-ubuntu/+bug/1418460/+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 1418486] Re: Mir Mesa EGL platform leaks memory with every frame

2015-02-05 Thread Daniel van Vugt
** Changed in: mir
Milestone: None = 0.12.0

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

Title:
  Mir Mesa EGL platform leaks memory with every frame

Status in Mir:
  In Progress
Status in mesa package in Ubuntu:
  In Progress

Bug description:
  The Mir Mesa EGL platform leaks memory with every frame. This is the
  result of incorrect handling of the buffer objects we create from the
  incoming Mir buffers.

  The problem is exhibited in the attached 'massif.out.leak' file.  An
  excerpt from the result of ms_print for this file:

  

n   time(ms) total(B)   useful-heap(B) extra-heap(B)
stacks(B)
  

 
   23 11,5934,965,4324,503,871   461,5610
   24 12,0584,971,2564,509,023   462,2330
   25 12,6404,978,5364,515,463   463,0730
   26 13,2224,985,8324,521,903   463,9290
   27 13,8044,993,1124,528,343   464,7690
   28 14,3865,000,3924,534,783   465,6090
   29 14,7355,004,7604,538,647   466,1130
   30 15,4355,013,3844,546,326   467,0580
   31 16,0165,020,7764,552,815   467,9610
   32 16,7805,030,3604,561,279   469,0810
   33 17,1635,035,1444,565,511   469,6330

  I have attached a patch (fix-mir-mesa-egl-gbm-bo-leak.diff) to get
  some wider review before creating a final patch for the ubuntu
  package. With this patch the leak is fixed as shown in the attached
  'massif.out.fixed' file:

  

n   time(ms) total(B)   useful-heap(B) extra-heap(B)
stacks(B)
  

   56 11,7874,859,0804,410,063   449,0170
   57 11,9204,859,0804,410,063   449,0170
   58 12,0534,859,0804,410,063   449,0170
   59 12,1864,859,0804,410,063   449,0170
   60 12,3204,859,0804,410,063   449,0170
   61 12,4534,859,0804,410,063   449,0170
   62 12,5864,859,0804,410,063   449,0170
   63 12,7194,859,0804,410,063   449,0170
   64 12,8524,859,0804,410,063   449,0170
   65 12,9854,859,0804,410,063   449,0170

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1418486/+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 1418460] Re: libconnectivity-qt1-dev un-installable in click chroot

2015-02-05 Thread Joey Chan
Shorts-app needs the connectivity API  (in c++ way), so pls fix this bug
asap, thx   :)

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

Title:
  libconnectivity-qt1-dev un-installable in click chroot

Status in qtcreator-plugin-ubuntu package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Invalid

Bug description:
  I am unable to install libconnectivity-qt1-dev in a click chroot. It
  hits dependency errors starting with qtbase5-dev.

  The following packages have unmet dependencies:
   libconnectivity-qt1-dev : Depends: qtbase5-dev
  E: Unable to correct problems, you have held broken packages.

  I would have thought this package would be already installed as it's a
  part of the SDK connectivity api.

  Both Dekko and Shorts app need access to this API

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtcreator-plugin-ubuntu/+bug/1418460/+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 1418611] [NEW] Cannot move/resize two windows at the same time

2015-02-05 Thread Daniel d'Andrada
Public bug reported:

Preconditions:
- Be on windowed mode 
- Have two app windows on display (calling them A and B from now on)

Steps:
1 - touch the title bar of window A and start moving it a bit (do not release)
2 - with another finger, touch the title bar of window B and start moving it

Expected outcome:
I can manipulate windows A and B simultaneously and independently

Actual outcome:
window B goes crazy (gets moved and resized wildly)

** Affects: unity8 (Ubuntu)
 Importance: Undecided
 Assignee: Michael Zanetti (mzanetti)
 Status: New

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) = Michael Zanetti (mzanetti)

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

Title:
  Cannot move/resize two windows at the same time

Status in unity8 package in Ubuntu:
  New

Bug description:
  Preconditions:
  - Be on windowed mode 
  - Have two app windows on display (calling them A and B from now on)

  Steps:
  1 - touch the title bar of window A and start moving it a bit (do not release)
  2 - with another finger, touch the title bar of window B and start moving it

  Expected outcome:
  I can manipulate windows A and B simultaneously and independently

  Actual outcome:
  window B goes crazy (gets moved and resized wildly)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1418611/+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 1418370] Re: Orientation not working with Qt 5.4

2015-02-05 Thread Michał Sawicz
** Changed in: unity8 (Ubuntu)
   Status: New = In Progress

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) = Albert Astals Cid (aacid)

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

Title:
  Orientation not working with Qt 5.4

Status in qtubuntu-sensors package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  The accelerometer data seems still readable as usual, so I'm not sure
  where/how this is broken. But apps like web browser or media player do
  not rotate after upgrading to Qt 5.4.

  More information about testing Qt 5.4 at
  https://wiki.ubuntu.com/Touch/QtTesting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtubuntu-sensors/+bug/1418370/+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 1378883] Re: [system-settings] missing SIM unlock

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-system-settings -
0.3+15.04.20150204~rtm-0ubuntu1

---
ubuntu-system-settings (0.3+15.04.20150204~rtm-0ubuntu1) 14.09; urgency=medium

  [ Ken VanDine ]
  * Revoke any cached authorizations before trying to change password
mode. This makes sure that we authenticate the user again even if we
just did so (for UX consistency).
  * [about] properly display IMEI values for no devices (None), one
device and multiple devices. Remove test now redundant. (LP:
#1205294)
  * [security/privacy] add connectivity binding and let user unlock a
given SIM (LP: #1378883)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Wed, 04 Feb 2015 
17:38:10 +

** Changed in: ubuntu-system-settings (Ubuntu RTM)
   Status: Triaged = Fix Released

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

Title:
  [system-settings] missing SIM unlock

Status in the base for Ubuntu mobile products:
  Confirmed
Status in Network Menu:
  Triaged
Status in Ubuntu UX bugs:
  Fix Committed
Status in indicator-network package in Ubuntu:
  Triaged
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings package in Ubuntu RTM:
  Fix Released

Bug description:
  Build r91

  1. set up a SIM PIN or make sure the inserted SIM has already a set up SIM 
PIN (reboot device if needed)
  2. after reboot, don't unlock
  3. navigate to System Settings  Security  Privacy  SIM PIN

  What you see: A green tick on the toggle next to the SIM PIN and
  beneath that a Change PIN... button

  What you should see: Some way to unlock the SIM without turning off
  the SIM PIN.

  There are three relevant states for a SIM:
  (A) no SIM PIN set
  (B) SIM PIN set, SIM locked
  (C) SIM PIN set, SIM unlocked.

  If a SIM PIN is set, when you start up the phone you have the choice
  to unlock it (switch from B to C) or not (stay on B).

  If you don't unlock it, you can't make or receive calls, send or
  receive SMS, or use cellular data in any app. And you probably can't
  predict ahead of time whether you'll want to do any of those things.

  Currently System Settings only lets you turn the SIM PIN on (A to C)
  or off (C to A), not to unlock it. System Settings should let you do
  this too.

  https://wiki.ubuntu.com/SecurityAndPrivacySettings#sim-pin:
  Whenever it is locked, at the trailing end should be an 'Unlock…'
  button...

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1378883/+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 1418679] Re: Multiline text controls occasionally get corrupted on refresh

2015-02-05 Thread Michael von Glasow
** Package changed: ubuntu = xorg (Ubuntu)

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

Title:
  Multiline text controls occasionally get corrupted on refresh

Status in xorg package in Ubuntu:
  New

Bug description:
  I have recently updated from Ubuntu 12.04 (32-bit) to Ubuntu MATE
  14.10 (64-bit).

  After upgrading, I find that some text controls have a refresh issue
  that seems to get triggered either by scrolling or adding a new line
  when the text already contains more lines than can be displayed at a
  time. This happens infrequently and is not always reproducible.

  The issue is that some lines in the text control show as blank lines.
  I have noticed this happen in the following applications:

  * Eclipse 3.8
  * Thunderbird (various versions)
  * Firefox (various versions). In Firefox text is occasionally clipped, but 
not necessarily at line boundaries.

  Other applications seem fine, it might be related to the widget
  toolkit (OTOH, the apps above use two different widget toolkits –
  Eclipse uses SWT while the other two use XUL).

  I am also seeing a different kind of output corruption in Terminal,
  which may or may not be related. Similar to the above, it happens when
  I press ENTER while at the bottom of the terminal window.

  I have seen the same issue on a second computer running a custom Linux
  build based on Kubuntu 12.04 (32-bit) with some components (including
  the kernel) being later versions than what is included in 12.04.

  A third computer, also running Ubuntu MATE 14.10, does not seem to
  have this issue.

  This seems to be a bug introduced into Ubuntu after 12.04, though I
  can't tell which component is at fault. It is possibly related to
  https://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1239607.

  I will post more details (including screenshots) soon, so bear with
  me.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1418679/+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 120420] Re: iMac UK keyboard layouts incorrect or fail

2015-02-05 Thread TJ
This still affects 12.04, 14.04 and beyond. In particular, Apple
Bluetooth keyboard layouts (used with IBM-PC compatibles as well as
Apple hardware), including the numeric keypad not operating in numeric
mode and no obvious way to switch to it. # requires Right-alt+3, ~
and | keys reversed between Xorg and virtual terminals.

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

Title:
  iMac UK keyboard layouts incorrect or fail

Status in console-setup package in Ubuntu:
  Invalid

Bug description:
  I can't get the tilde to work properly in Feisty ubuntu for a 20 iMac
  in UK.

  TO REPRODUCE THE PROBLEM
  1. Select System  Preferences  Keyboard
  2. Select tab Layouts
  3. In the listbox Selected layouts, check the item United Kingdom 
Macintosh
  4. At keyboard Model, click the Choose button
  5. Highlight Macintosh
  6. Click OK

  This puts up a dialog box with the following text:
  Error activating XKB configuration.
  It can happen under various circumstances:
  - a bug in libxklavier library
  - a bug in X server (xkbcomp, xmodmap utilities)
  - X server with incompatible libxkbfile implementation

  X server version data:
  The X.Org Foundation
  7020

  If you report this situation as a bug, please include:
  - The result of xprop -root | grep XKB
  - The result of gconftool-2 -R /desktop/gnome/peripherals/keyboard/kbd

  
  WORKAROUND
  1. Select the tab Layout Options
  2. Expand the entry Miscellaneous compitability options
  3. Check the box Swap keycodes of two keys when Mac keyboards are 
misdetected by kernel
  4. Dismiss all open dialog boxes.

  Tilde now works.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/120420/+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 1386840] Re: [SRU] failure to start a container

2015-02-05 Thread Chris J Arges
Sponsored for Utopic.

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

Title:
  [SRU] failure to start a container

Status in lxc package in Ubuntu:
  Fix Released
Status in lxc source package in Trusty:
  Incomplete
Status in lxc source package in Utopic:
  In Progress

Bug description:
  [Impact]

  Without this patch containers that don't have a complete apparmor
  configuration fail to start. Making lxc unusable to run Debian Sid and Jessie
  (at least).

  This bug is not present in Trusty, which ships 1.0.7 (Debian Sid runs
  OK).

  [Test Case]

  - Create a debian sid container
$ sudo env SUITE=sid lxc-create -t debian -n sid

  - Start the container
$ sudo lxc-start -n sid

  Expected behavior:

  The container is started

  Actual behavior:

  $ sudo lxc-start -F -n sid
  lxc-start: lsm/apparmor.c: mount_feature_enabled: 61 Permission denied - 
Error mounting securityfs
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 186 If you really want 
to start this container, set
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 187 
lxc.aa_allow_incomplete = 1
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 188 in your container 
configuration file
  lxc-start: sync.c: __sync_wait: 51 invalid sequence number 1. expected 4
  lxc-start: start.c: __lxc_start: 1087 failed to spawn 'sid'
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
name=systemd:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
perf_event:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
net_prio:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
net_cls:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing memory:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
hugetlb:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
freezer:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
devices:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing cpuset:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
cpuacct:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing cpu:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing blkio:lxc/sid-2
  lxc-start: lxc_start.c: main: 337 The container failed to start.
  lxc-start: lxc_start.c: main: 341 Additional information can be obtained by 
setting the --logfile and --logpriority options.

  
  [Regression Potential]

  No regressions expected, different versions of Ubuntu and Debian containers
  were tested with this patch applied.

  [Other Info]

  On utopic using lxc version 1.1.0~alpha2-0ubuntu3, I was unable to
  start a container.

  $ sudo lxc-start -F -n lxc-errors
  lxc-start: lsm/apparmor.c: mount_feature_enabled: 61 Permission denied - 
Error mounting securityfs
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 186 If you really want 
to start this container, set
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 187 
lxc.aa_allow_incomplete = 1
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 188 in your container 
configuration file
  lxc-start: sync.c: __sync_wait: 51 invalid sequence number 1. expected 4
  lxc-start: start.c: __lxc_start: 1087 failed to spawn 'lxc-errors'
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
name=systemd:lxc/lxc-errors-2

  Switching to the version of lxc in 

[Touch-packages] [Bug 1418679] [NEW] Multiline text controls occasionally get corrupted on refresh

2015-02-05 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I have recently updated from Ubuntu 12.04 (32-bit) to Ubuntu MATE 14.10
(64-bit).

After upgrading, I find that some text controls have a refresh issue
that seems to get triggered either by scrolling or adding a new line
when the text already contains more lines than can be displayed at a
time. This happens infrequently and is not always reproducible.

The issue is that some lines in the text control show as blank lines. I
have noticed this happen in the following applications:

* Eclipse 3.8
* Thunderbird (various versions)
* Firefox (various versions). In Firefox text is occasionally clipped, but not 
necessarily at line boundaries.

Other applications seem fine, it might be related to the widget toolkit
(OTOH, the apps above use two different widget toolkits – Eclipse uses
SWT while the other two use XUL).

I am also seeing a different kind of output corruption in Terminal,
which may or may not be related. Similar to the above, it happens when I
press ENTER while at the bottom of the terminal window.

I have seen the same issue on a second computer running a custom Linux
build based on Kubuntu 12.04 (32-bit) with some components (including
the kernel) being later versions than what is included in 12.04.

A third computer, also running Ubuntu MATE 14.10, does not seem to have
this issue.

This seems to be a bug introduced into Ubuntu after 12.04, though I
can't tell which component is at fault. It is possibly related to
https://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1239607.

I will post more details (including screenshots) soon, so bear with me.

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


** Tags: bot-comment
-- 
Multiline text controls occasionally get corrupted on refresh
https://bugs.launchpad.net/bugs/1418679
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to xorg in Ubuntu.

-- 
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 1397578] Re: LTS release has outdated Ubuntu.mirrors file

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package python-apt - 0.8.3ubuntu7.3

---
python-apt (0.8.3ubuntu7.3) precise-proposed; urgency=medium

  * Update list of mirrors from launchpad, using pre-build.sh hook.
(LP: #1397578)
 -- Brian Murray br...@ubuntu.com   Tue, 06 Jan 2015 16:55:37 -0800

** Changed in: python-apt (Ubuntu Precise)
   Status: Fix Committed = Fix Released

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

Title:
  LTS release has outdated Ubuntu.mirrors file

Status in python-apt package in Ubuntu:
  Won't Fix
Status in python-apt source package in Precise:
  Fix Released
Status in python-apt source package in Trusty:
  Fix Released

Bug description:
  Seems it was not updated from the mirror list on
  https://launchpad.net/ubuntu/+archivemirrors for a long time

  for example, Yuan Ze
  University(https://launchpad.net/ubuntu/+mirror/ftp.yzu.edu.tw-
  archive) is not in it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-apt/+bug/1397578/+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 1400745] Re: lxc-create -t download and specifying Lucid for release ends w/only IPv6 addr

2015-02-05 Thread Serge Hallyn
Thanks for reporting this bug.  Lucid is apparently no longer available
through the download template, so i'm going to mark this invalid as it
cannot be reproduced.

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

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

Title:
  lxc-create -t download and specifying Lucid for release ends w/only
  IPv6 addr

Status in lxc package in Ubuntu:
  Invalid

Bug description:
  I don't know if this is considered an LXC bug or a bug in the
  download rootfs build process but I recently had a need to use a
  container with a lucid image.

  I created it using:

  $ sudo lxc-create -t download -n my_test

  and specified Lucid, amd64

  after creating the container and starting/attaching to it I found it
  only has an IPv6 address on its eth0 interface instead of a 10.x.x.x.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1400745/+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 1417909] Re: Container fails to start with error mounting /sys/fs/cgroup

2015-02-05 Thread Serge Hallyn
thanks for submitting this bug.  Could you tell us how you created the
container?

You should be able to solve this by adding

lxc.mount.auto = sys

as the first line of your configuration file.  Please let us know if
that does not fix the container start.

** Changed in: lxc (Ubuntu)
   Status: New = Incomplete

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

Title:
  Container fails to start with error mounting /sys/fs/cgroup

Status in lxc package in Ubuntu:
  Incomplete

Bug description:
  It seems a fairly recent update to LXC has caused this.  This is a
  privileged container.  I will attach debug output when trying to start
  the container.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lxc 1.1.0~rc4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic x86_64
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Feb  4 02:41:39 2015
  InstallationDate: Installed on 2013-03-18 (687 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  SourcePackage: lxc
  UpgradeStatus: Upgraded to vivid on 2014-10-20 (106 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1417909/+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 1413316] Re: Dialler shows 'No network' even though SIM is present (vivid)

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package telephony-service -
0.1+15.04.20150205.1-0ubuntu1

---
telephony-service (0.1+15.04.20150205.1-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Avoid using ofono to get the list of modems in ofono-setup. (LP:
#1413316)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Thu, 05 Feb 2015 
20:22:09 +

** Changed in: telephony-service (Ubuntu)
   Status: New = Fix Released

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

Title:
  Dialler shows 'No network' even though SIM is present (vivid)

Status in the base for Ubuntu mobile products:
  Confirmed
Status in telepathy-ofono package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Fix Released
Status in ubuntu-touch-session package in Ubuntu:
  Fix Released

Bug description:
  I have a SIM inserted in the first SIM slot, but dialler is showing a
  'No network' message and messaging says 'No SIM card selected' when
  trying to send. The output of /usr/share/ofono/scripts/list-modems
  seems okay so I'm assuming this is a telepathy-ofono issue.

  https://pastebin.canonical.com/123899/

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: telepathy-ofono 0.2+15.04.20141216-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.15.1-0ubuntu2
  Architecture: armhf
  Date: Wed Jan 21 17:22:33 2015
  InstallationDate: Installed on 2015-01-21 (0 days ago)
  InstallationMedia: Ubuntu Vivid Vervet (development branch) - armhf 
(20150121-020205)
  SourcePackage: telepathy-ofono
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1413316/+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 1418176] Re: /usr/bin/unity8-dash:11:constData:operator:qMapLessThanKey:lowerBound:QMapData

2015-02-05 Thread Michał Sawicz
** Package changed: unity8 (Ubuntu) = unity-scopes-shell (Ubuntu)

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

Title:
  /usr/bin/unity8-dash:11:constData:operator:qMapLessThanKey:lowerBound:QMapData

Status in unity-scopes-shell package in Ubuntu:
  Confirmed

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  8.02+15.04.20150123.3-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/0b21ff093fdef791c99d66c20106b49d3ee849bf
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1418176/+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 1368647] Re: GPS and location detection not working on Nexus 4

2015-02-05 Thread Nara Huang
I could also reproduce this issue on Mako using Vivid r88.

Package version:

ii  indicator-location   
13.10.0+14.10.20141007-0ubuntu1 
ii  libqt5location5:armhf5.3.2-2ubuntu1   
ii  libqt5location5-plugins:armhf5.3.2-2ubuntu1 
 
ii  libubuntu-location-service2:armhf
2.1+15.04.20150126.1-0ubuntu1   
ii  qml-module-qtlocation:armhf  5.3.2-2ubuntu1 

ii  ubuntu-location-provider-here
0.1+15.04.20141110-0ubuntu1  
ii  ubuntu-location-service-bin  
2.1+15.04.20150126.1-0ubuntu1

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

Title:
  GPS and location detection not working on Nexus 4

Status in location-service package in Ubuntu:
  Confirmed

Bug description:
  Mako with MultiROM, utopic r239

  None of the apps I have tried including Weather, Google maps, OSM
  Touch and SensorStatus are able to use the phone's GPS. The
  SensorStatus app actually reports Found supported backend, but finds
  no position or other GPS data.

  Location detection on the other hand is doing something, but it is
  really far off when it comes to determining the actual location of the
  device. The Weather app suggests my location as Vänsjö, Jämtland,
  which is about 400 km north of Stockholm where I am at. OSM Touch
  reports no location available and Google maps Your location could
  not be determined

  I don't know if the GPS has to waken up somehow, but it has not
  shown any form of life for me on Ubuntu Touch, even though it works
  perfectly fine when booting the phone as Android.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/location-service/+bug/1368647/+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 1319698] Re: Gallery app shows pictures abnormally if target directory or file name contained Chinese text .

2015-02-05 Thread Brian Murray
Hello Gabriel, or anyone else affected,

Accepted thumbnailer into trusty-proposed. The package will build now
and be available at
https://launchpad.net/ubuntu/+source/thumbnailer/1.1+14.04.20150205-0ubuntu1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: thumbnailer (Ubuntu Trusty)
   Status: In Progress = Fix Committed

** Tags added: verification-needed

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

Title:
  Gallery app shows pictures abnormally if target directory or file name
  contained Chinese text .

Status in Gallery App:
  Fix Released
Status in OEM Priority Project:
  New
Status in OEM Priority Project trusty series:
  New
Status in Thumbnail generator for all kinds of files:
  Fix Released
Status in thumbnailer package in Ubuntu:
  Fix Released
Status in thumbnailer source package in Trusty:
  Fix Committed

Bug description:
  Steps:
  1. Copy some pictures to ~/Pictures
  2. Launch Gallery app by entering gallery in Dash
  3. Observe what the Gallery shows.

  Actual results:
  There are some transparent frames in Gallery.

  Expected results:
  Gallery app should show pictures included in ~/Pictures directory in step 2.

  Platform:
  Lenovo S440s

  Note:
  Once Gallery's target directory or file name of the target directory contains 
Chinese text, the issue will be reproduced. Adverse, if Gallery's target 
directory or file name of the target directory in English, Gallery displays 
normally.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gallery-app/+bug/1319698/+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 1418698] [NEW] downloading photo from camera

2015-02-05 Thread Marius Varvaroi
Public bug reported:

I get error message Unable to fetch previews from the camera: Could not
claim the USB device (-53) when I try to connect my camera and download
photos to the PC using Shotwell

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8
ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
Uname: Linux 3.13.0-44-generic x86_64
NonfreeKernelModules: fglrx
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Thu Feb  5 20:59:34 2015
DistUpgraded: 2014-08-18 16:22:02,097 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
DpkgLog:
 
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6320] [1002:9806] 
(prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:3577]
InstallationDate: Installed on 2012-03-10 (1062 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
MachineType: Hewlett-Packard HP 635 Notebook PC
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-44-generic 
root=UUID=88555ba2-342e-4c47-94f9-8a411faeb88a ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to trusty on 2014-08-18 (171 days ago)
dmi.bios.date: 12/13/2011
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.43
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 3577
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 24.48
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.43:bd12/13/2011:svnHewlett-Packard:pnHP635NotebookPC:pvr058A10004C1000260:rvnHewlett-Packard:rn3577:rvr24.48:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.name: HP 635 Notebook PC
dmi.product.version: 058A10004C1000260
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
version.fglrx-installer: fglrx-installer N/A
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.56-1~ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.3
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.6
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.3
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Thu Feb  5 20:28:23 2015
xserver.configfile: /etc/X11/xorg.conf
xserver.errors:
 AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, 
error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object 
file: No such file or directory]
 AIGLX error: failed to open /usr/lib64/dri/fglrx_dri.so, 
error[/usr/lib64/dri/fglrx_dri.so: cannot open shared object file: No such file 
or directory]
 AIGLX error: failed to open /usr/X11R6/lib/modules/dri/fglrx_dri.so, 
error[/usr/X11R6/lib/modules/dri/fglrx_dri.so: cannot open shared object file: 
No such file or directory]
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2.6
xserver.video_driver: fglrx

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


** Tags: amd64 apport-bug trusty ubuntu

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

Title:
  downloading photo from camera

Status in xorg package in Ubuntu:
  New

Bug description:
  I get error message Unable to fetch previews from the camera: Could
  not claim the USB device (-53) when I try to connect my camera and
  download photos to the PC using Shotwell

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
  Uname: Linux 3.13.0-44-generic x86_64
  NonfreeKernelModules: fglrx
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  Date: Thu Feb  5 20:59:34 2015
  DistUpgraded: 2014-08-18 16:22:02,097 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  DpkgLog:
   
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6320] [1002:9806] 
(prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:3577]
  InstallationDate: Installed on 2012-03-10 (1062 days ago)
  InstallationMedia: Ubuntu 11.10 

[Touch-packages] [Bug 1415458] Re: Add support for MMS group chat

2015-02-05 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/vivid-proposed/telepathy-ofono

** Branch linked: lp:ubuntu/vivid-proposed/messaging-app

** Branch linked: lp:~ubuntu-branches/ubuntu/vivid/gsettings-ubuntu-
touch-schemas/vivid-proposed

** Branch linked: lp:ubuntu/vivid-proposed/telephony-service

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

Title:
  Add support for MMS group chat

Status in GSettings schemas for Ubuntu touch:
  New
Status in Messaging App:
  New
Status in Telepathy Ofono:
  New
Status in Telephony Service:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  New
Status in messaging-app package in Ubuntu:
  New
Status in telepathy-ofono package in Ubuntu:
  New
Status in telepathy-qt5 package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Currently when you send a message to multiple recipients, one SMS is
  sent per recipient, and they don't know about each other.

  Messaging-app needs to also support MMS group chat, which allows for
  true group conversations.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gsettings-ubuntu-touch-schemas/+bug/1415458/+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 1386840] Re: [SRU] failure to start a container

2015-02-05 Thread Felipe Reyes
Here I'm attaching a patch built on top of the latest version of the
package (1.1.0~alpha2-0ubuntu3.1)

** Patch removed: utopic_lp1386840.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1386840/+attachment/4311145/+files/utopic_lp1386840.debdiff

** Patch added: lp1386840_utopic.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1386840/+attachment/4313368/+files/lp1386840_utopic.debdiff

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

Title:
  [SRU] failure to start a container

Status in lxc package in Ubuntu:
  Fix Released
Status in lxc source package in Trusty:
  Incomplete
Status in lxc source package in Utopic:
  In Progress

Bug description:
  [Impact]

  Without this patch containers that don't have a complete apparmor
  configuration fail to start. Making lxc unusable to run Debian Sid and Jessie
  (at least).

  This bug is not present in Trusty, which ships 1.0.7 (Debian Sid runs
  OK).

  [Test Case]

  - Create a debian sid container
$ sudo env SUITE=sid lxc-create -t debian -n sid

  - Start the container
$ sudo lxc-start -n sid

  Expected behavior:

  The container is started

  Actual behavior:

  $ sudo lxc-start -F -n sid
  lxc-start: lsm/apparmor.c: mount_feature_enabled: 61 Permission denied - 
Error mounting securityfs
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 186 If you really want 
to start this container, set
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 187 
lxc.aa_allow_incomplete = 1
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 188 in your container 
configuration file
  lxc-start: sync.c: __sync_wait: 51 invalid sequence number 1. expected 4
  lxc-start: start.c: __lxc_start: 1087 failed to spawn 'sid'
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
name=systemd:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
perf_event:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
net_prio:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
net_cls:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing memory:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
hugetlb:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
freezer:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
devices:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing cpuset:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing 
cpuacct:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing cpu:lxc/sid-2
  lxc-start: cgmanager.c: cgm_remove_cgroup: 503 call to cgmanager_remove_sync 
failed: invalid request
  lxc-start: cgmanager.c: cgm_remove_cgroup: 505 Error removing blkio:lxc/sid-2
  lxc-start: lxc_start.c: main: 337 The container failed to start.
  lxc-start: lxc_start.c: main: 341 Additional information can be obtained by 
setting the --logfile and --logpriority options.

  
  [Regression Potential]

  No regressions expected, different versions of Ubuntu and Debian containers
  were tested with this patch applied.

  [Other Info]

  On utopic using lxc version 1.1.0~alpha2-0ubuntu3, I was unable to
  start a container.

  $ sudo lxc-start -F -n lxc-errors
  lxc-start: lsm/apparmor.c: mount_feature_enabled: 61 Permission denied - 
Error mounting securityfs
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 186 If you really want 
to start this container, set
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 187 
lxc.aa_allow_incomplete = 1
  lxc-start: lsm/apparmor.c: apparmor_process_label_set: 188 in your container 
configuration file
  

[Touch-packages] [Bug 1415458] Re: Add support for MMS group chat

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package telepathy-ofono -
0.2+15.04.20150204-0ubuntu1

---
telepathy-ofono (0.2+15.04.20150204-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Add initial MMS group chat support. (LP: #1415458)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Wed, 04 Feb 2015 
21:09:22 +

** Changed in: messaging-app (Ubuntu)
   Status: New = Fix Released

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

Title:
  Add support for MMS group chat

Status in GSettings schemas for Ubuntu touch:
  New
Status in Messaging App:
  New
Status in Telepathy Ofono:
  New
Status in Telephony Service:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released
Status in telepathy-ofono package in Ubuntu:
  Fix Released
Status in telepathy-qt5 package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  Currently when you send a message to multiple recipients, one SMS is
  sent per recipient, and they don't know about each other.

  Messaging-app needs to also support MMS group chat, which allows for
  true group conversations.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gsettings-ubuntu-touch-schemas/+bug/1415458/+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 1415458] Re: Add support for MMS group chat

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package messaging-app -
0.1+15.04.20150204-0ubuntu1

---
messaging-app (0.1+15.04.20150204-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Add initial MMS group chat support. (LP: #1415458)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Wed, 04 Feb 2015 
21:11:18 +

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

Title:
  Add support for MMS group chat

Status in GSettings schemas for Ubuntu touch:
  New
Status in Messaging App:
  New
Status in Telepathy Ofono:
  New
Status in Telephony Service:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released
Status in telepathy-ofono package in Ubuntu:
  Fix Released
Status in telepathy-qt5 package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  Currently when you send a message to multiple recipients, one SMS is
  sent per recipient, and they don't know about each other.

  Messaging-app needs to also support MMS group chat, which allows for
  true group conversations.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gsettings-ubuntu-touch-schemas/+bug/1415458/+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 1415458] Re: Add support for MMS group chat

2015-02-05 Thread Launchpad Bug Tracker
This bug was fixed in the package telephony-service -
0.1+15.04.20150205-0ubuntu1

---
telephony-service (0.1+15.04.20150205-0ubuntu1) vivid; urgency=medium

  [ Tiago Salem Herrmann ]
  * Add initial MMS group chat support. (LP: #1415458)
 -- Ubuntu daily release ps-jenk...@lists.canonical.com   Thu, 05 Feb 2015 
12:19:35 +

** Changed in: telepathy-ofono (Ubuntu)
   Status: New = Fix Released

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

Title:
  Add support for MMS group chat

Status in GSettings schemas for Ubuntu touch:
  New
Status in Messaging App:
  New
Status in Telepathy Ofono:
  New
Status in Telephony Service:
  New
Status in gsettings-ubuntu-touch-schemas package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released
Status in telepathy-ofono package in Ubuntu:
  Fix Released
Status in telepathy-qt5 package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  Currently when you send a message to multiple recipients, one SMS is
  sent per recipient, and they don't know about each other.

  Messaging-app needs to also support MMS group chat, which allows for
  true group conversations.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gsettings-ubuntu-touch-schemas/+bug/1415458/+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


  1   2   3   4   >