[Touch-packages] [Bug 1512608] Re: No thumbnails generated for OGG audio

2016-01-06 Thread Michi Henning
Fred, the fix for this will become available with OTA-9, maybe a week or
two away. When you update, please run

thumbnailer-admin clear f

Otherwise, old failures will keep hanging around in the cache.

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

Title:
  No thumbnails generated for OGG audio

Status in music-app package in Ubuntu:
  Invalid
Status in thumbnailer package in Ubuntu:
  Fix Released

Bug description:
  Setup:
Core Music app 
BQ HD5
OTA-7 15.04 r6
Large collection of audio files in .ogg and .mp3 format on SD card
Audio files tagged with Artist, Album titile, Track title etc.

  Expected result:
Album covers and Artist images are displayed in Music app

  Actual result:
Only mp3 audio files generate thumbnails. No Album of Artist thumbnails are 
generated for any OGG files

  To test the situation I have
  a) Cleared the thumbnailer failure cache
  b) removed the whole thumbnail cache directory
  c) Removed and reinsterted the SD card
  d) Uninstallled and reinstalled the core Music app

  Before the OTA-7 upgrade the thumbnails were shown for .ogg and .mp3
  files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/music-app/+bug/1512608/+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 1515848] Re: (w, 0) and (0, h) requests are not scaled correctly

2016-01-06 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  (w,0) and (0,h) requests are not scaled correctly

Status in thumbnailer package in Ubuntu:
  Fix Released

Bug description:
  By definition, (w,0) and (0,h) should be the same as (w,w) and (h,h), 
respectively.
  They are not, and the qml test tests for the wrong outcome:

  function test_scale_vertical() {
  requestedSize = Qt.size(0, 240);
  loadThumbnail("orientation-1.jpg");
  compare(size.width, 320);
  compare(size.height, 240);
  }

  For this request, size.width() cannot possibly be larger than 240.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1515848/+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 1529998] Re: HTTP error 502 from remote server

2016-01-06 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  HTTP error 502 from remote server

Status in thumbnailer package in Ubuntu:
  Fix Released

Bug description:
  Just picked this up in the log during stress testing on the phone:

  thumbnailer-service: [00:20:58.767] unexpected QNetworkReply::NetworkError 
499 for 
"https://dash.ubuntu.com/musicproxy/v1/album-art?artist=Eagles&album=One of 
These Nights&key=0f450aa882a6125ebcbfb3d7f7aa25bc"
  thumbnailer-service: [00:20:58.767] HTTP error code 502 for 
"https://dash.ubuntu.com/musicproxy/v1/album-art?artist=Eagles&album=One of 
These Nights&key=0f450aa882a6125ebcbfb3d7f7aa25bc"

  502 means Bad Gateway, suggesting that something in the comms between 
dash.ubuntu.com and 7digital went wrong.
  The Qt 499 error is QNetworkReply::UnknownServerError.

  This causes a two-hour back-off in the thumbnailer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1529998/+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 1511553] Re: Crash in queueRequest

2016-01-06 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Crash in queueRequest

Status in thumbnailer package in Ubuntu:
  Fix Released

Bug description:
  https://errors.ubuntu.com/problem/fa22f0b18ff6dc949c4cdf768f32121d64a83b8d

  We hit this occasionally, but not very often. I suspect it is because
  of the way we shut down: we destroy the thumbnailer instance before
  the dbus interface so we don't hit the race condition where one
  instance of the service still has the database lock while a second
  instance of the service is activated by a new incoming request. But,
  destroying the thumbnailer first means that, if a request arrives at
  just the right time, the dbu sinterface fires the request at the
  already-destroyed thumbnailer.

  I recently hit a whole slew of issues in a test that destroyed the
  thumbnailer and dbus interface (in that order) while there were still
  requests sitting in the scheduler and thread pools, and fixed a bunch
  of these issues (see the request-cancellation branch.) In effect, via
  the handler class that calls back into the thumbnailer and the
  closures that sit in the thread pools, we have created a circular
  dependency between the dbus interface and thumbnailer, which makes it
  impossible to shut down either without causing problems.

  I think the best solution would be to add a shutdown() method to the
  dbus interface that prevents new requests from firing. We also need
  some way to wait for all *received* (not just scheduled) requests to
  finish executing before physically shutting down.

  Does DBus have a way to say "I'm in the process of shutting down. Send
  the request that just arrived and that I can't process anymore to a
  new instance of the service"? Ideally, I would like to "close the
  gate" on incoming requests such that they are transparently re-sent,
  and then wait for all currently executing requests to finish
  processing.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1511553/+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 1512608] Re: No thumbnails generated for OGG audio

2016-01-06 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  No thumbnails generated for OGG audio

Status in music-app package in Ubuntu:
  Invalid
Status in thumbnailer package in Ubuntu:
  Fix Released

Bug description:
  Setup:
Core Music app 
BQ HD5
OTA-7 15.04 r6
Large collection of audio files in .ogg and .mp3 format on SD card
Audio files tagged with Artist, Album titile, Track title etc.

  Expected result:
Album covers and Artist images are displayed in Music app

  Actual result:
Only mp3 audio files generate thumbnails. No Album of Artist thumbnails are 
generated for any OGG files

  To test the situation I have
  a) Cleared the thumbnailer failure cache
  b) removed the whole thumbnail cache directory
  c) Removed and reinsterted the SD card
  d) Uninstallled and reinstalled the core Music app

  Before the OTA-7 upgrade the thumbnails were shown for .ogg and .mp3
  files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/music-app/+bug/1512608/+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 1359439] Re: [ 7.287663] systemd-logind[1057]: Failed to start unit user@126.service: Unknown unit: user@126.service

2016-01-06 Thread anidotnet
I am getting same error like @pavel-petrovic in Ubuntu 15.10. I am not
able to get into the desktop. During boot up I am stuck in a console
screen where these error message comes in. What's the solution here?

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

Title:
  [7.287663] systemd-logind[1057]: Failed to start unit
  user@126.service: Unknown unit: user@126.service

Status in NULL Project:
  Invalid
Status in systemd package in Ubuntu:
  Won't Fix
Status in systemd-shim package in Ubuntu:
  Won't Fix
Status in systemd source package in Utopic:
  Won't Fix
Status in systemd-shim source package in Utopic:
  Won't Fix
Status in systemd-shim package in Debian:
  New

Bug description:
  [7.287663] systemd-logind[1057]: Failed to start unit user@126.service: 
Unknown unit: user@126.service
  [7.287677] systemd-logind[1057]: Failed to start user service: Unknown 
unit: user@126.service
  [7.293871] systemd-logind[1057]: New session c1 of user lightdm.
  [7.293902] systemd-logind[1057]: Linked /tmp/.X11-unix/X0 to 
/run/user/126/X11-display.
  [7.363706] ip_tables: (C) 2000-2006 Netfilter Core Team
  [7.421846] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
  [7.484529] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
  [9.903052] wlan0: authenticate with c8:d7:19:22:21:ec
  [9.912429] wlan0: send auth to c8:d7:19:22:21:ec (try 1/3)
  [9.920181] wlan0: authenticated
  [9.924352] wlan0: associate with c8:d7:19:22:21:ec (try 1/3)
  [9.925709] wlan0: RX AssocResp from c8:d7:19:22:21:ec (capab=0x11 
status=0 aid=2)
  [9.927753] wlan0: associated
  [9.927800] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
  [   12.677104] systemd-logind[1057]: Failed to abandon scope session-c1.scope
  [   12.677122] systemd-logind[1057]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc1_2escope
  [   12.683902] systemd-logind[1057]: Failed to start unit user@1000.service: 
Unknown unit: user@1000.service
  [   12.683912] systemd-logind[1057]: Failed to start user service: Unknown 
unit: user@1000.service
  [   12.685157] systemd-logind[1057]: New session c2 of user caravena.
  [   12.685190] systemd-logind[1057]: Linked /tmp/.X11-unix/X0 to 
/run/user/1000/X11-display.
  [  234.494462] systemd-logind[1057]: Failed to abandon scope session-c2.scope
  [  234.494478] systemd-logind[1057]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc2_2escope
  [  235.514349] systemd-logind[1057]: New session c3 of user lightdm.
  [  244.245908] systemd-logind[1057]: Failed to abandon scope session-c3.scope
  [  244.245923] systemd-logind[1057]: Failed to abandon session scope: No such 
interface 'org.freedesktop.systemd1.Scope' on object at path 
/org/freedesktop/systemd1/unit/session_2dc3_2escope

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: systemd 208-7ubuntu4 [modified: 
usr/share/dbus-1/system-services/org.freedesktop.systemd1.service]
  ProcVersionSignature: Ubuntu 3.16.0-9.14-generic 3.16.1
  Uname: Linux 3.16.0-9-generic x86_64
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  CurrentDesktop: LXDE
  Date: Wed Aug 20 18:26:06 2014
  InstallationDate: Installed on 2014-04-27 (115 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04 LTS "Trusty Tahr" - Release amd64 
(20140416.2)
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/1359439/+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 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Zoltan Balogh
** No longer affects: ubuntu-ui-toolkit (Ubuntu)

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1531703] [NEW] virsh save doesn't work for vm with hdd image in non-default location, AppArmor-related error

2016-01-06 Thread RussianNeuroMancer
Public bug reported:

virsh save does work for vm located in /var/lib/libvirt/images, but doesn't 
work for vm located for example in /mnt/storage/data/limages
Error message:
~$ LANG=C virsh save owncloud /mnt/storage/data/images/owncloud.dump
error: Failed to save domain owncloud to /mnt/storage/data/images/owncloud.dump
error: внутренняя ошибка: не удалось обновить профиль AppArmor 
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

Translation:
error: internal error: unable to update AppArmor profile  
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

I tried to dumpxml and then define it again from xml, but that doesn't help.
Ubuntu Server 15.10.

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

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

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

** Project changed: apparmor => apparmor (Ubuntu)

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

Title:
  virsh save doesn't work for vm with hdd image in non-default location,
  AppArmor-related error

Status in apparmor package in Ubuntu:
  New
Status in libvirt package in Ubuntu:
  New

Bug description:
  virsh save does work for vm located in /var/lib/libvirt/images, but doesn't 
work for vm located for example in /mnt/storage/data/limages
  Error message:
  ~$ LANG=C virsh save owncloud /mnt/storage/data/images/owncloud.dump
  error: Failed to save domain owncloud to 
/mnt/storage/data/images/owncloud.dump
  error: внутренняя ошибка: не удалось обновить профиль AppArmor 
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

  Translation:
  error: internal error: unable to update AppArmor profile  
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

  I tried to dumpxml and then define it again from xml, but that doesn't help.
  Ubuntu Server 15.10.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1531703/+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 1509689] Re: the system running low graphics mode

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  the system running low graphics mode

Status in xorg package in Ubuntu:
  Expired

Bug description:
  I installed ubuntu 4.14 with xfce, but the message "the system running
  low graphics mode" appears and now I can not get into the Graphical
  Ubuntu mode.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-51.69~14.04.1-generic 3.16.7-ckt17
  Uname: Linux 3.16.0-51-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.16
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Sat Oct 24 15:35:57 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: nvidia-304, 304.128, 3.16.0-51-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0116] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:3977]
  InstallationDate: Installed on 2015-03-13 (224 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  MachineType: LENOVO 20149
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-51-generic 
root=UUID=45388c46-5638-4327-bdaf-25ee64a3f3ea ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/19/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 5ECN95WW(V9.00)
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: INVALID
  dmi.board.vendor: LENOVO
  dmi.board.version: 3194WIN8 STD SGL
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo G480
  dmi.modalias: 
dmi:bvnLENOVO:bvr5ECN95WW(V9.00):bd12/19/2012:svnLENOVO:pn20149:pvrLenovoG480:rvnLENOVO:rnINVALID:rvr3194WIN8STDSGL:cvnLENOVO:ct10:cvrLenovoG480:
  dmi.product.name: 20149
  dmi.product.version: Lenovo G480
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.65+git20151019.3045523d-0ubuntu0ricotz~trusty
  version.libgl1-mesa-dri: libgl1-mesa-dri 
11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 
11.0.2+git20151008+11.0.b1230e3e-0ubuntu0ricotz~trusty
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151015.6861391f-0ubuntu0sarvatt~trusty
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sat Oct 24 15:28:08 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   17740 
   vendor SEC
  xserver.version: 2:1.15.1-0ubuntu2.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1509689/+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 1512066] Re: Desktop screen and icon corruption

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Desktop screen and icon corruption

Status in xorg package in Ubuntu:
  Expired

Bug description:
  This is now the 3 rd time to reinstall 15.10.  Previously the 15.04 version 
has been re-installed.
  Under 15.04 the problem (bug) was restricted to the desktop background image 
in that after a few days and new updates loaded the screen became corrupted 
with the appearance of a view like looking through opaque reed glass. The blame 
was put on 'Variety' which was in use. Peter Levi terms this problem a 'low key 
bug'? It makes no difference whether 'Variety' is in use or not
  As the problem (bug) only affected the desktop background then it was 
workable.
  The new release of 15.10 was hoped to iron out the problem, but once again 
after receiving updates corruption began, and is much more severe in that icons 
become distorted when the mouse passes over them sections of text work become 
a. invisible or b. distorted to be unreadable.
  To date I have re-installed 15.10 four times. Everything is stable until I 
begin to accept updates. and the corruption begins.
  I have brought up this problem before since 23 rd October. 
  I cannot be the only individual suffering from this problem. I have two 
machines and the results are the same on both. I have changed monitors to no 
avail. 
  The programme was re-installed yesterday and is stable without any updates.
  I run also windows 10 on this machine but have experienced no problems with 
display or documents text/ icons

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  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: Sun Nov  1 08:34:28 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation 4 Series Chipset Integrated Graphics Controller 
[8086:2e12] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:3034]
 Subsystem: Hewlett-Packard Company Device [103c:3034]
  InstallationDate: Installed on 2015-10-31 (0 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Hewlett-Packard HP Compaq dc7900 Small Form Factor
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-15-generic 
root=UUID=551edabd-9342-4276-8f47-bf3c3b2b5894 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/25/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786G1 v01.22
  dmi.board.asset.tag: CZC9468YXF
  dmi.board.name: 3031h
  dmi.board.vendor: Hewlett-Packard
  dmi.chassis.asset.tag: CZC9468YXF
  dmi.chassis.type: 4
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786G1v01.22:bd08/25/2009:svnHewlett-Packard:pnHPCompaqdc7900SmallFormFactor:pvr:rvnHewlett-Packard:rn3031h:rvr:cvnHewlett-Packard:ct4:cvr:
  dmi.product.name: HP Compaq dc7900 Small Form Factor
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  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.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2build1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Sun Nov  1 06:50:42 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.17.1-0ubuntu3

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

-- 
Maili

[Touch-packages] [Bug 1511380] Re: bug report was sent automaticly by computer bug report

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  bug report was sent automaticly by computer bug report

Status in xorg package in Ubuntu:
  Expired

Bug description:
  font issue kept coming up on boot

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-32.37~14.04.1-generic 3.19.8-ckt7
  Uname: Linux 3.19.0-32-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: kwin
  Date: Thu Oct 29 03:39:56 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   ndiswrapper, 1.59, 3.19.0-31-generic, x86_64: installed
   ndiswrapper, 1.59, 3.19.0-32-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RS780 [Radeon HD 3200] [1002:9610] 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:040f]
  InstallationDate: Installed on 2015-10-14 (15 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  MachineType: Dell Inc. Inspiron 400
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-32-generic 
root=UUID=185e2afa-a11e-4f55-9c48-6ffd2c8f6a4a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/04/2009
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A01
  dmi.board.name: 03D1TV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 3
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA01:bd09/04/2009:svnDellInc.:pnInspiron400:pvr00:rvnDellInc.:rn03D1TV:rvrA00:cvnDellInc.:ct3:cvrNotSpecified:
  dmi.product.name: Inspiron 400
  dmi.product.version: 00
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Thu Oct 29 03:16:28 2015
  xserver.configfile: default
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inputPower Button KEYBOARD, id 7
   inputUSB Optical MouseMOUSE, id 8
   inputLogitech K360KEYBOARD, id 9
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.17.1-0ubuntu3.1~trusty1
  xserver.video_driver: radeon

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1511380/+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 1512104] Re: video driver broken

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  video driver broken

Status in xorg package in Ubuntu:
  Expired

Bug description:
  since kernel update(3.16.0-51-generic), intel video driver not loaded, 
unity_support_test shows 
  OpenGL vendor string:   VMware, Inc.
  OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.5, 128 bits)

  graphics performance really slow.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-51.69~14.04.1-generic 3.16.7-ckt17
  Uname: Linux 3.16.0-51-generic x86_64
  .tmp.unity.support.test.1:
   
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: amd64
  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: Sun Nov  1 15:46:55 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:215a]
  InstallationDate: Installed on 2015-05-08 (177 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  MachineType: LENOVO 36805B8
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-51-generic 
root=UUID=89e51720-795c-4552-afd6-a51269a8a429 ro splash quiet vt.handoff=7
  Renderer: Software
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/11/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6QET70WW (1.40 )
  dmi.board.name: 36805B8
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6QET70WW(1.40):bd10/11/2012:svnLENOVO:pn36805B8:pvrThinkPadX201:rvnLENOVO:rn36805B8:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 36805B8
  dmi.product.version: ThinkPad X201
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sun Nov  1 15:34:11 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1512104/+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 1512394] Re: Desktop icons are places outside visible area on a dual monitor system.

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Desktop icons are places outside visible area on a dual monitor
  system.

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Some of the desktop icons are placed outside of the visible area. It
  seems as if the actual desktop area is greater than what is displayed
  by the screen.

  I have a dual monitor setup. The primary screen is connected to the
  VGA port of my laptop. The laptop's screen is configured as secondary
  and is placed on the left.

  The native resolution of both screens is 1920x1080. However, since the
  built in screen of my laptop is small, it is set to 1360x768. The
  primary screen is set to its native resolution.

  If I sort the icons by name, the are moved to the secondary screen
  with the lower resolution and some of the icons are out of the visible
  range so I cannot access them.

  If I change the resolution of the secondary screen to its native
  resolution, I do find the icons in the top corner of the desktop.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-50.67~14.04.1-generic 3.16.7-ckt16
  Uname: Linux 3.16.0-50-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.15
  Architecture: amd64
  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: Mon Nov  2 14:59:16 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DpkgLog:
   
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:220c]
  InstallationDate: Installed on 2015-02-25 (249 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  MachineType: LENOVO 20ARS1NW00
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-50-generic.efi.signed 
root=UUID=6d760634-ce0e-46e1-aa6f-ec5438dfbf34 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/09/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GJET82WW (2.32 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20ARS1NW00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50512 STD
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrGJET82WW(2.32):bd01/09/2015:svnLENOVO:pn20ARS1NW00:pvrThinkPadT440s:rvnLENOVO:rn20ARS1NW00:rvrSDK0E50512STD:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20ARS1NW00
  dmi.product.version: ThinkPad T440s
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Mon Nov  2 14:42:39 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id2093 
   vendor SAM
  xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1512394/+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 1512634] Re: Mouse pointer gets distorted / broken on dual screen setup

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Mouse pointer gets distorted / broken on dual screen setup

Status in xorg package in Ubuntu:
  Expired

Bug description:
  The mouse pointer is fine at boot, but after working a couple of
  minutes it gets distorted. I move my mouse pointer back and forth
  between my two screens all the time. The actual distortion happends
  randomly on the "screen swich" and when I move my pointer on one of my
  screens. Sometimes I can see a slightly distortion and if I move my
  mouse pointer on top of a scrollbar its back to normal. But just for a
  little while, then its permanently distorted. And it happends only on
  one of the screens, never on both at the same time.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.13.0-66.108-generic 3.13.11-ckt27
  Uname: Linux 3.13.0-66-generic x86_64
  NonfreeKernelModules: fglrx
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: amd64
  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: Tue Nov  3 10:39:02 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   fglrx-core, 15.200, 3.13.0-62-generic, x86_64: installed
   fglrx-core, 15.200, 3.13.0-63-generic, x86_64: installed
   fglrx-core, 15.200, 3.13.0-65-generic, x86_64: installed
   fglrx-core, 15.200, 3.13.0-66-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Hawaii PRO [Radeon R9 290] 
[1002:67b1] (prog-if 00 [VGA controller])
 Subsystem: XFX Pine Group Inc. Device [1682:9295]
  InstallationDate: Installed on 2014-12-19 (318 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-66-generic 
root=UUID=f0b5450d-3c23-49f1-b3e8-4544b9af89d7 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/22/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0705
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: SABERTOOTH 990FX
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0705:bd08/22/2011:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKComputerINC.:rnSABERTOOTH990FX:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.fglrx-installer: fglrx-installer N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  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.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Tue Nov  3 08:41:57 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.1-0ubuntu2.7
  xserver.video_driver: fglrx

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1512634/+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 1512402] Re: Corrupted display of Qt4 Applications

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Corrupted display of Qt4 Applications

Status in xorg package in Ubuntu:
  Expired

Bug description:
  When I run Qt4 based Applications either from konsole or from Creator the 
windows' content will look very disturbed, rendering the program absolutely 
useless. This happens only if Android Studio is running at the same time 
(Version 1.4, JDK 1.7.0_79). If I close Ansroid Studio (almost) everything is 
fine again. (Well almost, as there's also a problem with Qt4 command link 
buttons and HiDPI displays, but that's another story.)
  The applies for file dialogs in chromium (it uses kde4 libs, I suppose?). 
When AS is running, the file dialogs will be unusable, if I close it all is 
good.
  I haven't tested it with other Java based applications yet, so it might just 
be the JDK. (It's the Oracle one, I think, or whatever Google makes you 
download.)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Mon Nov  2 17:05:36 2015
  InstallationDate: Installed on 2015-06-01 (154 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  ProcEnviron:
   LANGUAGE=
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to wily on 2015-10-26 (6 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1512402/+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 1512748] Re: blabla

2016-01-06 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  blabla

Status in xorg package in Ubuntu:
  Expired

Bug description:
  bla bla

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-55-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.18
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Tue Nov  3 16:18:27 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  GraphicsCard:
   Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:215a]
  InstallationDate: Installed on 2014-08-20 (439 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: LENOVO 2537KL6
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-55-generic 
root=/dev/mapper/ubuntu--vg-root ro drm.debug=0xe plymouth:debug
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/09/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6IET77WW (1.37 )
  dmi.board.name: 2537KL6
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6IET77WW(1.37):bd05/09/2011:svnLENOVO:pn2537KL6:pvrThinkPadT410:rvnLENOVO:rn2537KL6:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2537KL6
  dmi.product.version: ThinkPad T410
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  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.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Tue Nov  3 10:34:37 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   16438 
   vendor LEN
  xserver.version: 2:1.15.1-0ubuntu2.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1512748/+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 1531703] [NEW] virsh save doesn't work for vm with hdd image in non-default location, AppArmor-related error

2016-01-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

virsh save does work for vm located in /var/lib/libvirt/images, but doesn't 
work for vm located for example in /mnt/storage/data/limages
Error message:
~$ LANG=C virsh save owncloud /mnt/storage/data/images/owncloud.dump
error: Failed to save domain owncloud to /mnt/storage/data/images/owncloud.dump
error: внутренняя ошибка: не удалось обновить профиль AppArmor 
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

Translation:
error: internal error: unable to update AppArmor profile  
«libvirt-b9f02241-f8a7-4c11-86de-5eccbdff6511»

I tried to dumpxml and then define it again from xml, but that doesn't help.
Ubuntu Server 15.10.

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

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

-- 
virsh save doesn't work for vm with hdd image in non-default location, 
AppArmor-related error
https://bugs.launchpad.net/bugs/1531703
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to apparmor 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 1531696] [NEW] unable to "forget this device" after failed pairing

2016-01-06 Thread Joe Liau
Public bug reported:

Mako
Ubuntu 15.04 (r332)
channel: rc-proposed

Tired paring Nexus 4 with Hyundai Genesis car phone system.
No pin entry appears, and connection fails.

I am unable to "forget this device" or remove it in anyway (greyed out).
It also does not ever pair with the device.

** Affects: bluetooth-touch (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "screenshot20160106_193028138.png"
   
https://bugs.launchpad.net/bugs/1531696/+attachment/4545335/+files/screenshot20160106_193028138.png

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

Title:
  unable to "forget this device" after failed pairing

Status in bluetooth-touch package in Ubuntu:
  New

Bug description:
  Mako
  Ubuntu 15.04 (r332)
  channel: rc-proposed

  Tired paring Nexus 4 with Hyundai Genesis car phone system.
  No pin entry appears, and connection fails.

  I am unable to "forget this device" or remove it in anyway (greyed
  out). It also does not ever pair with the device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluetooth-touch/+bug/1531696/+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


Re: [Touch-packages] [Bug 1530617] Re: FUSE in wily image with upstart installed causes chaos

2016-01-06 Thread Serge Hallyn
Quoting Shimin (shi...@databricks.com):
> Thanks for looking into it. Are there any downsides to disabling udev in
> the container (by removing /etc/init/udev.conf for example) if we don't
> need the container to be notified of new devices?

hi, no this should have no downsides.  You can just

echo manual | sudo tee -a /etc/init/udev.conf.override

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

Title:
  FUSE in wily image with upstart installed causes chaos

Status in linux package in Ubuntu:
  Incomplete
Status in lxc package in Ubuntu:
  Confirmed
Status in upstart package in Ubuntu:
  New

Bug description:
  Host:
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=15.10
  DISTRIB_CODENAME=wily
  DISTRIB_DESCRIPTION="Ubuntu 15.10"

  lxc version: 1.1.4-0ubuntu1

  In a LXC container running Ubuntu 15.10, install upstart-sysv to
  replace systemd. Using FUSE then causes almost all processes in the
  container to be killed.

  The following steps reproduce the problem using sshfs:

  # create a wily container and attach to it
  sudo lxc-create -t download -n wily -- -d ubuntu -r wily -a amd64
  sudo lxc-start -n wily
  sudo lxc-attach -n wily

  # inside the container, install upstart-sysv and reboot
  apt-get update && apt-get -y install upstart-sysv
  reboot

  # on the host, reattach to the container
  sudo lxc-attach -n wily

  # back in the container, install ssh and sshfs
  apt-get -y install openssh-server sshfs

  # create an ssh key pair in /root/.ssh
  ssh-keygen

  # set up passwordless ssh
  mkdir ~ubuntu/.ssh
  cat /root/.ssh/id_rsa.pub >> ~ubuntu/.ssh/authorized_keys
  eval $(ssh-agent)
  ssh-add /root/.ssh/id_rsa

  # take a note of the running processes and their PIDs
  ps axjf

  # run sshfs
  mkdir /fuse
  sshfs ubuntu@localhost:/ /fuse

  # we are kicked out of the container
  # run ps again in the container
  sudo lxc-attach -n wily -- ps axjf

  # a whole bunch of processes are now gone. the getty processes now
  have new PIDs, indicating they have been restarted.

  
  Other debugging performed:
  - On a 14.10 host with lxc version 1.1.0~alpha2-0ubuntu3.3, the problem does 
not occur. FUSE works fine.
  - On the same 14.10 host with lxc upgraded to 1.1.5-0ubuntu3~ubuntu14.04.1, 
the problem occurs.
  - On a 15.10 host, when running a wily container without upstart, the problem 
does not occur.
  - On a 15.10 host, when running a trusty container, the problem does not 
occur.
  - The problem can't be reproduced outside a container (15.10 host, install 
upstart-sysv, then use FUSE)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1530617/+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 1531038] Re: Cancellation happens too late

2016-01-06 Thread Michi Henning
** Changed in: thumbnailer (Ubuntu)
   Status: New => In Progress

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

Title:
  Cancellation happens too late

Status in thumbnailer package in Ubuntu:
  In Progress

Bug description:
  I'm still not happy with cancellation. The thumbnailer handles
  cancellation correctly, that is, successfully cancels anything that
  hasn't been sent via dbus yet. But it doesn't work well at the UI
  level. When thumbnailing a large collection of MP3s without artwork
  and scrolling forward quickly, the requests that are scrolling off the
  top of the screen are not physically cancelled, so it takes a long
  time for the thumbnails for the visible section of the list to show
  up. In addition, more often than not, the application times out and
  shows "no artwork" images.

  Ideally, I'd like to see whatever is in the currently visible section
  to get priority.

  Need to investigate what exactly is going on here and whether there
  might be a way to mitigate the issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1531038/+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 1477838] Re: [MX4] Crackling sound after playing audio and suspended

2016-01-06 Thread Kamikaze
Also affected. I can reproduce this perhaps near 50% of the time by opening a 
terminal and running:
aplay /usr/share/sounds/alsa/Front_Left.wav
And immediately on pressing enter turning the screen off. 

You should do this somewhere reasonably quiet and you will hear the
crackle/static/hissing sound a few seconds after the sound finishes.

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

Title:
  [MX4] Crackling sound after playing audio and suspended

Status in Canonical System Image:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed

Bug description:
  The Meizu MX4 is doing a weird "tic tic tic..." after receive a
  notification (from telegram, mail...) and it's suspended.

  --

  When I press the screen lock button on the MX4 shortly after playing
  music or ending a phone call I hear a radio/fuzzy distorted noise
  coming from the phone. To make it stop I need to unlock and lock the
  screen again but this is not ideal.

  -

  When the screen is locked and the playing song is finished and waiting
  for a stopped signal, MX4 will do a weird lower sound.

  -

  How to reproduce (Note this does not always work, the phone needs to
  be in some specific state yet to be determined)

  Ensure MX4 is not plugged into USB
  Call the MX4 and hear the ringtone
  Dismiss the call
  Push the power button to turn off the screen
  Tick Tick Tick
  Push the power button to turn on the screen
  hissing
  Push the power button to turn off the screen
  Tick Tick Tick
  etc

  It will not clear until you play another sound
  Does not happen in silent mode of course

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1477838/+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 1531685] [NEW] package ifupdown 0.8.5ubuntu1 failed to install/upgrade: Unterprozess installiertes pre-removal-Skript gab den Fehlerwert 1 zurück

2016-01-06 Thread hardtoneselector
Public bug reported:

iz happend after a partly system upgrade

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: ifupdown 0.8.5ubuntu1
ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
Uname: Linux 4.3.0-5-generic x86_64
ApportVersion: 2.19.3-0ubuntu2
Architecture: amd64
Date: Tue Jan  5 18:06:39 2016
ErrorMessage: Unterprozess installiertes pre-removal-Skript gab den Fehlerwert 
1 zurück
InstallationDate: Installed on 2015-11-28 (39 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151128)
RelatedPackageVersions:
 dpkg 1.18.3ubuntu1
 apt  1.1.10
SourcePackage: ifupdown
Title: package ifupdown 0.8.5ubuntu1 failed to install/upgrade: Unterprozess 
installiertes pre-removal-Skript gab den Fehlerwert 1 zurück
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package ifupdown 0.8.5ubuntu1 failed to install/upgrade: Unterprozess
  installiertes pre-removal-Skript gab den Fehlerwert 1 zurück

Status in ifupdown package in Ubuntu:
  New

Bug description:
  iz happend after a partly system upgrade

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: ifupdown 0.8.5ubuntu1
  ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
  Uname: Linux 4.3.0-5-generic x86_64
  ApportVersion: 2.19.3-0ubuntu2
  Architecture: amd64
  Date: Tue Jan  5 18:06:39 2016
  ErrorMessage: Unterprozess installiertes pre-removal-Skript gab den 
Fehlerwert 1 zurück
  InstallationDate: Installed on 2015-11-28 (39 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151128)
  RelatedPackageVersions:
   dpkg 1.18.3ubuntu1
   apt  1.1.10
  SourcePackage: ifupdown
  Title: package ifupdown 0.8.5ubuntu1 failed to install/upgrade: Unterprozess 
installiertes pre-removal-Skript gab den Fehlerwert 1 zurück
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/1531685/+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 1377653] Re: HDMI sound output not detected / NVIDIA optimus laptop

2016-01-06 Thread Raymond
** Changed in: alsa-driver (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  HDMI sound output not detected / NVIDIA optimus laptop

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  Hi,

  not sure if this is an alsa or nvidia/nouveau bug.
  HDMI audio output doesn't appear in sound settings output panel.
  Audio works well on internal speakers, but it seems there is no way to make 
it output to hdmi...

  The laptop has optimus NVIDIA+Intel.
  The behaviour is the same with nouveau or nvidia proprietary driver.

  Please let me know if further testing is required

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
  Uname: Linux 3.13.0-36-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sam2295 F pulseaudio
  CurrentDesktop: Unity
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  Date: Sun Oct  5 17:05:35 2014
  InstallationDate: Installed on 2014-04-21 (166 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/02/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N56VZ.215
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N56VZ
  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.:bvrN56VZ.215:bd11/02/2012:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N56VZ
  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/alsa-driver/+bug/1377653/+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 1517597] Re: [regression] mouse pointer support on emulator is broken

2016-01-06 Thread Daniel van Vugt
** Also affects: mir/0.18
   Importance: Undecided
   Status: New

** Changed in: mir
   Status: New => Confirmed

** Changed in: mir/0.18
   Status: New => Confirmed

** Changed in: mir/0.18
   Importance: Undecided => High

** Changed in: mir/0.18
Milestone: None => 0.18.1

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

Title:
  [regression] mouse pointer support on emulator is broken

Status in Canonical System Image:
  Incomplete
Status in Mir:
  Confirmed
Status in Mir 0.18 series:
  Confirmed
Status in android package in Ubuntu:
  New
Status in mir package in Ubuntu:
  Confirmed
Status in phablet-tools package in Ubuntu:
  Confirmed

Bug description:
  STEPS:
  1. Flash with sudo ubuntu-emulator create --channel ubuntu-touch/rc/ubuntu 
rc-test
  2. Wait for it to build
  3. Run with ubuntu-emulator run rc-test
  4. Starts up but the mouse never moves meaning you can't leave the first page 
of the welcome wizard

  EXPECTED:
  I expect the emulator cursor to follow the mouse cursor and be able to click 
on things

  ACTUAL:
  Emulator cursors stay in the top left preventing movement.

  As noted below F6 toggles the input mode.
  The pointer movement is quite slow and jerky.
  You also can no longer initiate an edge swipe even in trackball mode.

  This is a major regression from how the emulator used to perform.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1517597/+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 1531038] Re: Cancellation happens too late

2016-01-06 Thread Michi Henning
Fixed. The backlog of 20 was too large, meaning that the UI could never
cancel requests quickly enough to actually be still in the queue
because, each time we dropped back to the event loop, we'd fire another
request. That turned all the cancel messages effectively into no-ops.

I also changed the rate limiter to use LIFO instead of FIFO. This gives
a cancel message a much better chance of still finding a request waiting
in the queue, so it can really be cancelled. This massively improves the
user experience with a cold cache when scrolling through a large
collection of songs because the requests that become visible once
scrolling stops are dealt with first. (Previously, the thumbnails for
songs visible at the end of the scroll would appear only once all
preceding thumbnails (now no longer visible) had been dealt with.)

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

Title:
  Cancellation happens too late

Status in thumbnailer package in Ubuntu:
  New

Bug description:
  I'm still not happy with cancellation. The thumbnailer handles
  cancellation correctly, that is, successfully cancels anything that
  hasn't been sent via dbus yet. But it doesn't work well at the UI
  level. When thumbnailing a large collection of MP3s without artwork
  and scrolling forward quickly, the requests that are scrolling off the
  top of the screen are not physically cancelled, so it takes a long
  time for the thumbnails for the visible section of the list to show
  up. In addition, more often than not, the application times out and
  shows "no artwork" images.

  Ideally, I'd like to see whatever is in the currently visible section
  to get priority.

  Need to investigate what exactly is going on here and whether there
  might be a way to mitigate the issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1531038/+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 1531517] Re: pinch to zoom not working reliably

2016-01-06 Thread Daniel van Vugt
** Also affects: mir
   Importance: Undecided
   Status: New

** Changed in: mir
   Importance: Undecided => High

** Changed in: mir
   Status: New => Confirmed

** Changed in: mir (Ubuntu)
   Importance: Undecided => High

** Changed in: mir
Milestone: None => 0.19.0

** Also affects: mir/0.18
   Importance: Undecided
   Status: New

** Changed in: mir/0.18
Milestone: None => 0.18.1

** Changed in: mir/0.18
   Status: New => Confirmed

** Changed in: mir/0.18
   Importance: Undecided => High

** Summary changed:

- pinch to zoom not working reliably
+ [regression] pinch to zoom not working reliably

** Tags added: regression

** Tags added: input

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

Title:
  [regression] pinch to zoom not working reliably

Status in Canonical System Image:
  Confirmed
Status in Mir:
  Confirmed
Status in Mir 0.18 series:
  Confirmed
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531517/+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 1531038] Re: Cancellation happens too late

2016-01-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~michihenning/thumbnailer/fix-1531038

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

Title:
  Cancellation happens too late

Status in thumbnailer package in Ubuntu:
  New

Bug description:
  I'm still not happy with cancellation. The thumbnailer handles
  cancellation correctly, that is, successfully cancels anything that
  hasn't been sent via dbus yet. But it doesn't work well at the UI
  level. When thumbnailing a large collection of MP3s without artwork
  and scrolling forward quickly, the requests that are scrolling off the
  top of the screen are not physically cancelled, so it takes a long
  time for the thumbnails for the visible section of the list to show
  up. In addition, more often than not, the application times out and
  shows "no artwork" images.

  Ideally, I'd like to see whatever is in the currently visible section
  to get priority.

  Need to investigate what exactly is going on here and whether there
  might be a way to mitigate the issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1531038/+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 1377653] Re: HDMI sound output not detected / NVIDIA optimus laptop

2016-01-06 Thread Raymond
Post output of

xrandr --verbose


Did the graphic driver support audio?

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

Title:
  HDMI sound output not detected / NVIDIA optimus laptop

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  not sure if this is an alsa or nvidia/nouveau bug.
  HDMI audio output doesn't appear in sound settings output panel.
  Audio works well on internal speakers, but it seems there is no way to make 
it output to hdmi...

  The laptop has optimus NVIDIA+Intel.
  The behaviour is the same with nouveau or nvidia proprietary driver.

  Please let me know if further testing is required

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.13.0-36.63-generic 3.13.11.6
  Uname: Linux 3.13.0-36-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sam2295 F pulseaudio
  CurrentDesktop: Unity
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  Date: Sun Oct  5 17:05:35 2014
  InstallationDate: Installed on 2014-04-21 (166 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/02/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N56VZ.215
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N56VZ
  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.:bvrN56VZ.215:bd11/02/2012:svnASUSTeKCOMPUTERINC.:pnN56VZ:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VZ:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N56VZ
  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/alsa-driver/+bug/1377653/+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 1531380] Re: cannot get network status changes with connectivity-api

2016-01-06 Thread Lorn Potter
For at least the c++ example, it seems the example code connect call
should be at least:

QObject::connect(ns.data(),
 &NetworkingStatus::statusChanged,
 [=](NetworkingStatus::Status value)

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

Title:
  cannot get network status changes with connectivity-api

Status in indicator-network package in Ubuntu:
  New

Bug description:
  Using Nexus 4, Ubuntu 15.04 (r330) (rc-proposed)

  The bearer plugin that uses connectivity-api used to work (ubuntu touch) back 
in November :
  https://codereview.qt-project.org/#/c/140752/

  It still compiles, but now I get:

  2016-01-06T13:28:29 (unknown:0) - QObject::connect: Cannot queue arguments of 
type 'Status'
  (Make sure 'Status' is registered using qRegisterMetaType().)

  at the first time the next status changes.

  I also tried the connectivity-api example (after fixing up network-status.h 
include path)
  
https://developer.ubuntu.com/api/devel/ubuntu-14.10/cplusplus/connectivity-api/networking-status.html

  and never receive network status change signal.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-network/+bug/1531380/+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 885661] Re: I cannot raise a defect if I do not know the package name explicitly.

2016-01-06 Thread Mathew Hodson
** Changed in: apport (Ubuntu)
   Importance: Medium => Low

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

Title:
  I cannot raise a defect if I do not know the package name explicitly.

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  This documentation: 
https://help.ubuntu.com/community/ReportingBugs#Filing_a_general_bug_against_no_particular_package
  Says  that I can open a bug against "No particular package".

  This is untrue, if you run ubuntu-big and select other it says you
  must specify a PID. This is blocking me from raising another defect, I
  have diagnosed the root cause of the other bug but I am unable to
  report it as I cannot work out what package it is in!! There needs to
  be a way to raise a defect against no particular package, preferably
  from a web browser, what if the defect is in grub and I'm using
  another machine, maybe a Windows machine?

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: reportbug (not installed)
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Thu Nov  3 13:00:36 2011
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: reportbug
  UpgradeStatus: No upgrade log present (probably fresh install)

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


Re: [Touch-packages] [Bug 1530914] Re: sshd crashed with SIGSEGV in _IO_vfprintf_internal()

2016-01-06 Thread Seth Arnold
On Wed, Jan 06, 2016 at 02:07:59PM -, msp3k wrote:
> I tried following one of the links to ubuntu.com, but was told "Sorry,
> you are not a member of a group that is allowed to see the data from
> error reports."

Hmm, I thought you'd always be able to view your own reports.

> If you think it's safe to do so, I can reply with the last few links. 
> Would it be safe to assume that they are listed in a newest-first order?

I believe it is safe; I don't recall seeing anything private in the other
reports but didn't want to risk it.. but if you've got URLs for your
reports, then they probably are making it to the error tracker. The thing
is, very few reports are -- you may be the only one gettnig these.

Thanks

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

Title:
  sshd crashed with SIGSEGV in _IO_vfprintf_internal()

Status in openssh package in Ubuntu:
  New

Bug description:
  sshd crashes several times a day with the following information:

  ExecutablePath: /usr/sbin/sshd
  Package: openssh-server 1:6.6p1-2ubuntu2.3
  ProblemType: Crash
  Title: sshd crashed with SIGSEGV in _IO_vfprintf_internal()
  Architecture: amd64
  DistroRelease: Ubuntu 14.04

  I've been reporting this bug for months now through apport-gtk, but
  there never seems to be an entry for it on launchpad.  So just in case
  this isn't making it into the bug reports, for whatever reason, I'm
  reporting it manually here.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1530914/+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 137687] Re: "apport" automatic bug-reporting system doesn't (apparently) let you see what it reports to launchpad

2016-01-06 Thread Mathew Hodson
** Package changed: ubuntu => 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/137687

Title:
  "apport" automatic bug-reporting system doesn't (apparently) let you
  see what it reports to launchpad

Status in Apport:
  Invalid
Status in apport package in Ubuntu:
  Invalid

Bug description:
  Kubuntu gutsy has this nice feature that if something crashed on
  startup, logout or adept-upgrade, there will be a dialog box appearing
  (apport?) , that lets you automatically file info about the crash to
  launchpad.

  Wanting to be a "good citizen", I occasionally clicked yes on this,
  and went through with reporting the problem. However, apart from the
  subject, it doesn't let you see _what_ it reports... Most notably, the
  actual output (DpkgTerminalLog.gz etc.) is not easily visible, and so
  you've got no way of deciding whether what you are reporting is
  actually a bug, or is rather due to some local circumstances. I've
  been bitten by this on bug #137442 .

  Would it be possible to add a possibility to "view attachment" that is
  available before "Submit Bug Report"?

To manage notifications about this bug go to:
https://bugs.launchpad.net/apport/+bug/137687/+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 107103] Re: Allow user to suppress individual fields when sending a report

2016-01-06 Thread Mathew Hodson
** Changed in: apport (Ubuntu)
   Importance: Medium => Wishlist

** Information type changed from Public to Public Security

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

Title:
  Allow user to suppress individual fields when sending a report

Status in apport package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: apport

  When apport detects a crash in an application that handles passwords
  there is a huge opportunity for an unwitting user to upload an
  attachment (i.e. a core file) with their password in it!

  I'm not sure what the answer is to this problem.  Initially I thought
  that applications that even come remotely close to handling passwords
  should be flagged and their bug reports be marked private when
  uploaded.  That only limits possible password disclosure though.

  Probably what is needed is some kind of password scrubbing tool that
  iterates over all of the attachments looking for a list of strings
  (i.e. passwords) and replace them with something like "***" (enough to
  fill the string).  That would require that apport know a users
  password(s) in plain-text though.  As bad as that is, sending
  passwords to an open and public bug reporting system is even worse.

  Thots?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/107103/+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 137687] [NEW] "apport" automatic bug-reporting system doesn't (apparently) let you see what it reports to launchpad

2016-01-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Kubuntu gutsy has this nice feature that if something crashed on
startup, logout or adept-upgrade, there will be a dialog box appearing
(apport?) , that lets you automatically file info about the crash to
launchpad.

Wanting to be a "good citizen", I occasionally clicked yes on this, and
went through with reporting the problem. However, apart from the
subject, it doesn't let you see _what_ it reports... Most notably, the
actual output (DpkgTerminalLog.gz etc.) is not easily visible, and so
you've got no way of deciding whether what you are reporting is actually
a bug, or is rather due to some local circumstances. I've been bitten by
this on bug #137442 .

Would it be possible to add a possibility to "view attachment" that is
available before "Submit Bug Report"?

** Affects: apport
 Importance: Undecided
 Status: Invalid

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

-- 
"apport" automatic bug-reporting system doesn't (apparently) let you see what 
it reports to launchpad
https://bugs.launchpad.net/bugs/137687
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to apport 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 1268595] Re: Apport does not use default web browser

2016-01-06 Thread Mathew Hodson
I can't reproduce either. Feel free to reopen if anyone can provide
reproduction steps.

** Changed in: apport
   Status: Incomplete => Invalid

** Changed in: apport (Ubuntu)
   Importance: High => Medium

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

** Changed in: hundredpapercuts
   Status: Triaged => Invalid

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

Title:
  Apport does not use default web browser

Status in Apport:
  Invalid
Status in One Hundred Papercuts:
  Invalid
Status in apport package in Ubuntu:
  Invalid

Bug description:
  Apport does not use default web browser, here i'm using Firefox as
  default (and i checked it in Firefox menu Edition --> Preferences -->
  Advanced, General tab). I save any web page in a folder, then open it
  with double click, and Firefox opens.

  Apport insists on using Google Chrome.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: apport 2.13.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-2.17-generic 3.13.0-rc7
  Uname: Linux 3.13.0-2-generic x86_64
  ApportVersion: 2.13.1-0ubuntu1
  Architecture: amd64
  CrashReports:
   600:109:116:0:2014-01-10 14:55:37.287999178 +0100:2014-01-10 
14:55:37.287999178 +0100:/var/crash/_usr_sbin_lightdm-gtk-greeter.112.uploaded
   644:0:116:0:2014-01-10 14:21:57.65419 +0100:2014-01-13 
11:09:53.956548620 +0100:/var/crash/_usr_sbin_lightdm-gtk-greeter.112.upload
   640:112:116:4872917:2014-01-10 14:22:56.587999343 +0100:2014-01-10 
14:32:39.163999342 +0100:/var/crash/_usr_sbin_lightdm-gtk-greeter.112.crash
  Date: Mon Jan 13 14:24:47 2014
  InstallationDate: Installed on 2014-01-09 (3 days ago)
  InstallationMedia: Xubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20140109)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=fr_FR
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.apport.crashdb.conf: 2014-01-10T14:24:35.15

To manage notifications about this bug go to:
https://bugs.launchpad.net/apport/+bug/1268595/+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 1531571] Re: package ifupdown 0.7.54ubuntu2 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

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

** Changed in: ifupdown (Ubuntu)
   Status: New => Confirmed

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

Title:
  package ifupdown 0.7.54ubuntu2 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 1

Status in ifupdown package in Ubuntu:
  Confirmed

Bug description:
  Was brought here by apt-get. Can't give much more information about
  this.. bug..?

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: ifupdown 0.7.54ubuntu2
  ProcVersionSignature: Ubuntu 4.3.0-2.11-lowlatency 4.3.0
  Uname: Linux 4.3.0-2-lowlatency x86_64
  ApportVersion: 2.19.3-0ubuntu2
  Architecture: amd64
  Date: Wed Jan  6 18:54:18 2016
  DuplicateSignature:
   De-configuring udev (228-2ubuntu1) ...
   /var/lib/dpkg/info/udev.prerm called with unknown argument 'deconfigure'
   dpkg: error processing archive 
/var/cache/apt/archives/ifupdown_0.8.5ubuntu1_amd64.deb (--unpack):
subprocess installed pre-removal script returned error exit status 1
  ErrorMessage: subprocess installed pre-removal script returned error exit 
status 1
  InstallationDate: Installed on 2015-09-08 (119 days ago)
  InstallationMedia: Ubuntu-Studio 15.10 "Wily Werewolf" - Alpha amd64 
(20150906)
  RelatedPackageVersions:
   dpkg 1.18.3ubuntu1
   apt  1.1.10
  SourcePackage: ifupdown
  Title: package ifupdown 0.7.54ubuntu2 failed to install/upgrade: subprocess 
installed pre-removal script returned error exit status 1
  UpgradeStatus: Upgraded to xenial on 2015-11-22 (44 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/1531571/+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 1520548] Re: Volume slider in sound indicator ignores the "volume" action coming from indicator-sound in a particular case

2016-01-06 Thread Launchpad Bug Tracker
This bug was fixed in the package unity8 -
8.11+16.04.20160105.1-0ubuntu1

---
unity8 (8.11+16.04.20160105.1-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * Resync trunk.
  * Update translation template

  [ Nick Dedekind ]
  * Use volume-sync action to resync the volume control. (LP: #1520548)

 -- Xavi Garcia   Tue, 05 Jan 2016
13:55:38 +

** 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/1520548

Title:
  Volume slider in sound indicator ignores the "volume" action coming
  from indicator-sound in a particular case

Status in Canonical System Image:
  Fix Committed
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  To re-create this:

  Use last rc flash image.

  1. Plug headphones in
  2. Play audio multimedia
  3. Open the sound indicator
  4. Move the volume slider to the maximum
  A warning dialog should appear asking the user to approve high volume
  At this point the indicator-sound has clamped the volume to 75% waiting 
for the user to accept or decline the warning.
  5. Press cancel
  6. The slider shows the value over 75%

  I can see with dbus-monitor that the volume action signal is emitted
  with the 75% value, although it seems that the UI is ignoring it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1520548/+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 173591] Re: tool for fixing a LP bug with a .crash attachment

2016-01-06 Thread Mathew Hodson
** Changed in: apport (Ubuntu)
   Importance: Medium => Wishlist

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

Title:
  tool for fixing a LP bug with a .crash attachment

Status in apport package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: apport

  Sometimes, people attach the .crash file to a bug report, which is
  something the retracers cannot handle. The retracers do not even see
  them in the first place, since these bugs are not automatically
  tagged.

  We need a small tool to fix this which uses the existing apport
  machinery. It should probably be integrated into the CLI tool of bug
  124338.

   $ apport-collect --fix-monolithic 12345

  This would:
   - Look for a .crash attachment and download it.
   - Load it into an ApportReport object
   - Resubmit it to the existing bug, change the description appropriately, and 
set the retracing tags.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/173591/+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 962616] Re: mii-tool assumes NIC names of the form eth* when given no interface(s) as argument

2016-01-06 Thread Ben Humpert
Nearly five years later this bug still exists (biosdevname enabled / em1
& em2 / Ubuntu Server 14.04.3).

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

Title:
  mii-tool assumes NIC names of the form eth* when given no interface(s)
  as argument

Status in net-tools package in Ubuntu:
  New

Bug description:
  On a system with biosdevname enabled, which names NICs in the forms
  em* and p*p*, mii-tool will return the message "no MII interfaces
  found" if mii-tool is called without specifying an interface. The
  correct behavior would be to iterate through em* and p*p*. (More
  information on biosdevname can be found at
  
http://linux.dell.com/files/whitepapers/consistent_network_device_naming_in_linux.pdf.)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/net-tools/+bug/962616/+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 777861] Re: Improve bug association with specific Ubuntu releases

2016-01-06 Thread Mathew Hodson
** Changed in: apport (Ubuntu)
   Importance: High => Wishlist

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

Title:
  Improve bug association with specific Ubuntu releases

Status in apport package in Ubuntu:
  Triaged

Bug description:
  When a bug is generated automatically for a package,  automatically
  "nominate" it for the release where it was found.

  This will help sort the bug and help us recognize old bugs that may no
  longer be applicable (ie. bugs for Dapper, when release is no longer
  supported and package isn't in subsequent releases).By
  automatically nominating the bug it will more likely get focus by the
  release team for current development and for stable release
  consideration.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/777861/+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 1530617] Re: FUSE in wily image with upstart installed causes chaos

2016-01-06 Thread Shimin
Thanks for looking into it. Are there any downsides to disabling udev in
the container (by removing /etc/init/udev.conf for example) if we don't
need the container to be notified of new devices?

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

Title:
  FUSE in wily image with upstart installed causes chaos

Status in linux package in Ubuntu:
  Incomplete
Status in lxc package in Ubuntu:
  Confirmed
Status in upstart package in Ubuntu:
  New

Bug description:
  Host:
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=15.10
  DISTRIB_CODENAME=wily
  DISTRIB_DESCRIPTION="Ubuntu 15.10"

  lxc version: 1.1.4-0ubuntu1

  In a LXC container running Ubuntu 15.10, install upstart-sysv to
  replace systemd. Using FUSE then causes almost all processes in the
  container to be killed.

  The following steps reproduce the problem using sshfs:

  # create a wily container and attach to it
  sudo lxc-create -t download -n wily -- -d ubuntu -r wily -a amd64
  sudo lxc-start -n wily
  sudo lxc-attach -n wily

  # inside the container, install upstart-sysv and reboot
  apt-get update && apt-get -y install upstart-sysv
  reboot

  # on the host, reattach to the container
  sudo lxc-attach -n wily

  # back in the container, install ssh and sshfs
  apt-get -y install openssh-server sshfs

  # create an ssh key pair in /root/.ssh
  ssh-keygen

  # set up passwordless ssh
  mkdir ~ubuntu/.ssh
  cat /root/.ssh/id_rsa.pub >> ~ubuntu/.ssh/authorized_keys
  eval $(ssh-agent)
  ssh-add /root/.ssh/id_rsa

  # take a note of the running processes and their PIDs
  ps axjf

  # run sshfs
  mkdir /fuse
  sshfs ubuntu@localhost:/ /fuse

  # we are kicked out of the container
  # run ps again in the container
  sudo lxc-attach -n wily -- ps axjf

  # a whole bunch of processes are now gone. the getty processes now
  have new PIDs, indicating they have been restarted.

  
  Other debugging performed:
  - On a 14.10 host with lxc version 1.1.0~alpha2-0ubuntu3.3, the problem does 
not occur. FUSE works fine.
  - On the same 14.10 host with lxc upgraded to 1.1.5-0ubuntu3~ubuntu14.04.1, 
the problem occurs.
  - On a 15.10 host, when running a wily container without upstart, the problem 
does not occur.
  - On a 15.10 host, when running a trusty container, the problem does not 
occur.
  - The problem can't be reproduced outside a container (15.10 host, install 
upstart-sysv, then use FUSE)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1530617/+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 1513802] Re: [Wily] [armhf] Could not import PyQt5.QtCore

2016-01-06 Thread Mathew Hodson
** Changed in: apport (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  [Wily] [armhf] Could not import PyQt5.QtCore

Status in apport package in Ubuntu:
  New

Bug description:
  When trying to start apport from the iconbar or here via terminal, I get this:
  $ apport-collect 
  ERROR: Could not import module, is a package upgrade in progress?  Error: No 
module named PyQt5.QtCore

  But PyQt5.QtCore is definitly there, because running the python3
  interpreter and doing the import PyQt5.QtCore manually works well!

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: apport-kde 2.19.1-0ubuntu5
  ProcVersionSignature:
   
  Uname: Linux 3.8.13.30-hardkernel armv7l
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: armhf
  CurrentDesktop: KDE
  Date: Fri Nov  6 11:55:13 2015
  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/1513802/+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 1512902] Re: apport will create .upload files for incomplete or corrupt crash reports

2016-01-06 Thread Mathew Hodson
** Tags removed: verification-failed-precise verification-needed
** Tags added: verification-failed

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

Title:
  apport will create .upload files for incomplete or corrupt crash
  reports

Status in apport package in Ubuntu:
  Fix Released
Status in apport source package in Precise:
  Fix Committed
Status in apport source package in Trusty:
  Fix Released
Status in apport source package in Vivid:
  Fix Released
Status in apport source package in Wily:
  Fix Released

Bug description:
  SRU information appears in comment #3.

  apport will set an UnreportableReason in the following situations for
  crash reports where information collection fails or for packages that
  do not exist.  From apport/ui.py:

  1036 try:
  1037 icthread.exc_raise()
  1038 except (IOError, EOFError, zlib.error) as e:
  1039 # can happen with broken core dumps
  1040 self.report['UnreportableReason'] = '%s\n\n%s' % (
  1041 _('This problem report is damaged and cannot be 
processed.'),
  1042 repr(e))
  1043 except ValueError:  # package does not exist
  1044 self.report['UnreportableReason'] = _('The report 
belongs to a package that is not installed.')
  1045 except Exception as e:
  1046 apport.error(repr(e))
  1047 self.report['UnreportableReason'] = _('An error 
occurred while attempting to '
  1048   'process this 
problem report:') + '\n\n' + str(e)

  Because an UnreportableReason exists in the report, apport will stop
  collecting information. Subsequently, there is "_MarkForUpload" is
  left as True (the default) so apport calls mark_report_upload which
  creates a .upload file such that the report which is incomplete or
  corrupt is then uploaded to the Error Tracker.

  In these cases the "_MarkForUpload" key should be set to "False"
  thereby preventing uploads to the Error Tracker.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1512902/+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 1392176] Re: mounts cgroups unconditionally which causes undesired effects with cpu hotplug

2016-01-06 Thread Serge Hallyn
@Sqxm - thanks for that input.

For what it's worth you should be able to use ppa:serge-hallyn/systemd
in xenial to get cpusets not created by default.  Unfortunately I need
to make some more changes (in particular to use the systemd-created
cgroups when they exist) before pushing this to the archive.

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

Title:
  mounts cgroups unconditionally which causes undesired effects with cpu
  hotplug

Status in cgmanager package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  == Comment: #0 - Preeti U. Murthy  - 2014-10-20 
04:40:12 ==
  ---Problem Description---
  Systemd mounts cgroups explicitly every boot. Since the user had no say in 
it, undesired consequences are observed in reaction to cpu hotplug operations.  
Here is how.

  Systemd moves the tasks to the cgroup mounted by it. This cgroup 
automatically becomes the child of the root cgroup which is present by default. 
The children cgroups are not expected to remember their configured cpusets 
after hotplug operations in the kernel. Hence when cpus are taken offline and 
brought back online they are no longer used for load balancing of tasks and 
hence remain unused. 
 This is an undesired consequence because the user had not even asked for 
cgroups to be mounted, yet is not able to use the full capacity of the system.

  Only when the user himself creates cgroup hierarchies, should he be
  exposed to the side effects of cpu hotplug on cpusets. Else all online
  cpus must be made available to him which is not happening since
  systemd mounts cgroups on every boot.

  Hence please revert this feature or provide an explaination as to why this is 
being done.
   
  ---uname output---
  Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = Tuleta 8286-42A 
   ---Debugger---
  A debugger was configured, however the system did not enter into the debugger
   
  ---Steps to Reproduce---
   $ taskset -p $$
  $ 0-127
  $ echo 0 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
  $ echo 1 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
   
   
  Userspace tool common name: systemd 
   
  The userspace tool has the following bit modes: 64-bit 

  Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb

  Userspace tool obtained from project website:   208-8ubuntu8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1392176/+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 1529074] Re: Due to AppArmor profile restrictions Telepathy can't connect when networkd used instead of NetworkManager

2016-01-06 Thread RussianNeuroMancer
Thanks for fix!

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

Title:
  Due to AppArmor profile restrictions Telepathy can't connect when
  networkd used instead of NetworkManager

Status in apparmor package in Ubuntu:
  Fix Released

Bug description:
  Due to AppArmor profile restrictions Telepathy can't connect when
  networkd used instead of NetworkManager. That was tested with KDE
  Telepathy on Kubuntu 16.04. Error message:

  [ 2907.344638] audit: type=1400 audit(1450959038.587:32): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3758 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2907.345097] audit: type=1400 audit(1450959038.587:33): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3758 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2925.300267] audit: type=1400 audit(1450959056.544:34): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3765 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2925.300656] audit: type=1400 audit(1450959056.544:35): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3765 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2932.915149] audit: type=1400 audit(1450959064.156:36): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3772 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2932.915975] audit: type=1400 audit(1450959064.156:37): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3772 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2973.949765] audit: type=1400 audit(1450959105.184:38): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3833 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125
  [ 2973.951471] audit: type=1400 audit(1450959105.188:39): apparmor="DENIED" 
operation="open" profile="/usr/lib/telepathy/telepathy-*" 
name="/run/systemd/resolve/resolv.conf" pid=3833 comm="pool" requested_mask="r" 
denied_mask="r" fsuid=1000 ouid=125

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1529074/+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 1531656] Re: /usr/lib/arm-linux-gnueabihf/unity-scopes/scoperunner:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:boost::

2016-01-06 Thread Michi Henning
This looks like an unhanded exception in the click scope.

** Also affects: unity-scope-click (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: unity-scopes-api (Ubuntu)
   Status: New => Invalid

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

Title:
  /usr/lib/arm-linux-gnueabihf/unity-
  
scopes/scoperunner:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:boost::throw_exception

Status in unity-scope-click package in Ubuntu:
  New
Status in unity-scopes-api package in Ubuntu:
  Invalid

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity-scopes-api.  This problem was most recently seen with
  version 0.6.12+15.04.20150127.2-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/04dbea446c9b8c5970255171b4cef98ff7d08a1c
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-click/+bug/1531656/+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 1531666] Re: Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

2016-01-06 Thread LovesTha
I'm guessing this is because /usr/lib/x86_64-linux-
gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake has never been
removed as this box has been slowly upgraded over the years.

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

Title:
  Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

Status in qtbase-opensource-src package in Ubuntu:
  New

Bug description:
  When building a buildroot target I get the following error while it is 
attempting to compile cmake for the host system:
  loading initial cache file 
/data/Build/buildroot/output/build/host-cmake-3.3.2/Bootstrap.cmk/InitialCacheFlags.cmake
  CMake Error at 
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:27 (message):
The imported target "Qt5::Widgets" references the file

   "/usr/lib/x86_64-linux-
  gnu/qt5/plugins/accessible/libqtaccessiblewidgets.so"

but this file does not exist.  Possible reasons include:

* The file was deleted, renamed, or moved to another location.

* An install or uninstall procedure did not complete successfully.

* The installation package was faulty and contained

   "/usr/lib/x86_64-linux-
  gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake"

but not all the files it references.

  Call Stack (most recent call first):
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:145 
(_qt5_Widgets_check_file_exists)

/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake:4 
(_populate_Widgets_plugin_properties)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake:13 
(include)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:158 
(include)
Tests/CMakeLists.txt:1222 (find_package)

  
  -- Configuring incomplete, errors occurred!
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeOutput.log".
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeError.log".

  
  System details:
  > lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10
  > apt-cache policy libqt5widgets5 

  libqt5widgets5:
Installed: 5.4.2+dfsg-2ubuntu9
Candidate: 5.4.2+dfsg-2ubuntu9
Version table:
   *** 5.4.2+dfsg-2ubuntu9 0
  500 http://ftp.iinet.net.au/pub/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status
  >

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1531666/+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 1531650] Re: Crashes and other bad behavior while mediascanner is indexing

2016-01-06 Thread Michi Henning
Part of the problem might be the use of gstreamer to pull out the ID3
tags. The gstreamer API is brutally slow on the phone. Maybe there is a
different ID3 tag library we could use?

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

Title:
  Crashes and other bad behavior while mediascanner is indexing

Status in Ubuntu Music App:
  Confirmed
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  The attached archive contains 7000 "songs: of 1-second silence. Untar
  the archive into the music folder. The mediscanner will take several
  minutes to index the collection.

  Start the music app while the mediascanner is running. I'm seeing
  different kinds of errors every time I kill the music app and start it
  again while the mediscanner is indexing.

  Sometimes, it's an instant crash.

  Sometimes, I get the "No music found" page.

  Sometimes, I get the song list, but the song list is empty and will
  not fill.

  Sometimes, I get this in the application log:

  Error finalising statement: Could not finalize statement: database is locked
  Failed to retrieve rows: database is locked

  And this:

  Failed to start a new media-hub player session:  
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes 
include: the remote application did not send a reply, the message bus security 
policy blocked the reply, the reply timeout expired, or the network connection 
was broken.
  Failed to create a new media player backend. Video playback will not 
function. 

  Could not finish contructing new AalMediaPlayerService instance since
  m_hubPlayerSession is NULL.

  Basically, the application is completely unusable and broken while
  indexing is in progress. Once mediascanner finishes indexing, things
  behave normally again.

  This makes for a seriously bad user experience when someone inserts a
  flash card with their music collection and, almost certainly, will
  immediately go to the music app to start playing things.

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1531650/+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 1531650] Re: Crashes and other bad behavior while mediascanner is indexing

2016-01-06 Thread Michi Henning
I don't think this is a duplicate of bug #1529991 because, in this case,
it is the app that crashes, not qmlscene, and there are all sorts of
other weird behaviours mentioned here.

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

Title:
  Crashes and other bad behavior while mediascanner is indexing

Status in Ubuntu Music App:
  Confirmed
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  The attached archive contains 7000 "songs: of 1-second silence. Untar
  the archive into the music folder. The mediscanner will take several
  minutes to index the collection.

  Start the music app while the mediascanner is running. I'm seeing
  different kinds of errors every time I kill the music app and start it
  again while the mediscanner is indexing.

  Sometimes, it's an instant crash.

  Sometimes, I get the "No music found" page.

  Sometimes, I get the song list, but the song list is empty and will
  not fill.

  Sometimes, I get this in the application log:

  Error finalising statement: Could not finalize statement: database is locked
  Failed to retrieve rows: database is locked

  And this:

  Failed to start a new media-hub player session:  
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes 
include: the remote application did not send a reply, the message bus security 
policy blocked the reply, the reply timeout expired, or the network connection 
was broken.
  Failed to create a new media player backend. Video playback will not 
function. 

  Could not finish contructing new AalMediaPlayerService instance since
  m_hubPlayerSession is NULL.

  Basically, the application is completely unusable and broken while
  indexing is in progress. Once mediascanner finishes indexing, things
  behave normally again.

  This makes for a seriously bad user experience when someone inserts a
  flash card with their music collection and, almost certainly, will
  immediately go to the music app to start playing things.

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1531650/+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 1392176] Re: mounts cgroups unconditionally which causes undesired effects with cpu hotplug

2016-01-06 Thread Serge Hallyn
No - this being moot does not apply to wily.

Actually the xenial work has been delayed so it does not *yet* apply
there either.

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

Title:
  mounts cgroups unconditionally which causes undesired effects with cpu
  hotplug

Status in cgmanager package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  == Comment: #0 - Preeti U. Murthy  - 2014-10-20 
04:40:12 ==
  ---Problem Description---
  Systemd mounts cgroups explicitly every boot. Since the user had no say in 
it, undesired consequences are observed in reaction to cpu hotplug operations.  
Here is how.

  Systemd moves the tasks to the cgroup mounted by it. This cgroup 
automatically becomes the child of the root cgroup which is present by default. 
The children cgroups are not expected to remember their configured cpusets 
after hotplug operations in the kernel. Hence when cpus are taken offline and 
brought back online they are no longer used for load balancing of tasks and 
hence remain unused. 
 This is an undesired consequence because the user had not even asked for 
cgroups to be mounted, yet is not able to use the full capacity of the system.

  Only when the user himself creates cgroup hierarchies, should he be
  exposed to the side effects of cpu hotplug on cpusets. Else all online
  cpus must be made available to him which is not happening since
  systemd mounts cgroups on every boot.

  Hence please revert this feature or provide an explaination as to why this is 
being done.
   
  ---uname output---
  Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = Tuleta 8286-42A 
   ---Debugger---
  A debugger was configured, however the system did not enter into the debugger
   
  ---Steps to Reproduce---
   $ taskset -p $$
  $ 0-127
  $ echo 0 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
  $ echo 1 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
   
   
  Userspace tool common name: systemd 
   
  The userspace tool has the following bit modes: 64-bit 

  Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb

  Userspace tool obtained from project website:   208-8ubuntu8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1392176/+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 1531666] Re: Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

2016-01-06 Thread LovesTha
** Attachment added: "Second file listed as useful"
   
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1531666/+attachment/4545268/+files/CMakeError.log

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

Title:
  Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

Status in qtbase-opensource-src package in Ubuntu:
  New

Bug description:
  When building a buildroot target I get the following error while it is 
attempting to compile cmake for the host system:
  loading initial cache file 
/data/Build/buildroot/output/build/host-cmake-3.3.2/Bootstrap.cmk/InitialCacheFlags.cmake
  CMake Error at 
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:27 (message):
The imported target "Qt5::Widgets" references the file

   "/usr/lib/x86_64-linux-
  gnu/qt5/plugins/accessible/libqtaccessiblewidgets.so"

but this file does not exist.  Possible reasons include:

* The file was deleted, renamed, or moved to another location.

* An install or uninstall procedure did not complete successfully.

* The installation package was faulty and contained

   "/usr/lib/x86_64-linux-
  gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake"

but not all the files it references.

  Call Stack (most recent call first):
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:145 
(_qt5_Widgets_check_file_exists)

/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake:4 
(_populate_Widgets_plugin_properties)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake:13 
(include)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:158 
(include)
Tests/CMakeLists.txt:1222 (find_package)

  
  -- Configuring incomplete, errors occurred!
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeOutput.log".
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeError.log".

  
  System details:
  > lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10
  > apt-cache policy libqt5widgets5 

  libqt5widgets5:
Installed: 5.4.2+dfsg-2ubuntu9
Candidate: 5.4.2+dfsg-2ubuntu9
Version table:
   *** 5.4.2+dfsg-2ubuntu9 0
  500 http://ftp.iinet.net.au/pub/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status
  >

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1531666/+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 1531666] [NEW] Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

2016-01-06 Thread LovesTha
Public bug reported:

When building a buildroot target I get the following error while it is 
attempting to compile cmake for the host system:
loading initial cache file 
/data/Build/buildroot/output/build/host-cmake-3.3.2/Bootstrap.cmk/InitialCacheFlags.cmake
CMake Error at 
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:27 (message):
  The imported target "Qt5::Widgets" references the file

 "/usr/lib/x86_64-linux-
gnu/qt5/plugins/accessible/libqtaccessiblewidgets.so"

  but this file does not exist.  Possible reasons include:

  * The file was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and contained

 "/usr/lib/x86_64-linux-
gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake"

  but not all the files it references.

Call Stack (most recent call first):
  /usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:145 
(_qt5_Widgets_check_file_exists)
  
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake:4 
(_populate_Widgets_plugin_properties)
  /usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake:13 
(include)
  /usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:158 
(include)
  Tests/CMakeLists.txt:1222 (find_package)


-- Configuring incomplete, errors occurred!
See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeOutput.log".
See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeError.log".


System details:
> lsb_release -rd
Description:Ubuntu 15.10
Release:15.10
> apt-cache policy libqt5widgets5   
>   
libqt5widgets5:
  Installed: 5.4.2+dfsg-2ubuntu9
  Candidate: 5.4.2+dfsg-2ubuntu9
  Version table:
 *** 5.4.2+dfsg-2ubuntu9 0
500 http://ftp.iinet.net.au/pub/ubuntu/ wily/main amd64 Packages
100 /var/lib/dpkg/status
>

** Affects: qtbase-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "First of the two files referenced as useful in the error."
   
https://bugs.launchpad.net/bugs/1531666/+attachment/4545267/+files/CMakeOutput.log

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

Title:
  Qt5WidgetsConfig.cmake references missing libqtaccessiblewidgets.so

Status in qtbase-opensource-src package in Ubuntu:
  New

Bug description:
  When building a buildroot target I get the following error while it is 
attempting to compile cmake for the host system:
  loading initial cache file 
/data/Build/buildroot/output/build/host-cmake-3.3.2/Bootstrap.cmk/InitialCacheFlags.cmake
  CMake Error at 
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:27 (message):
The imported target "Qt5::Widgets" references the file

   "/usr/lib/x86_64-linux-
  gnu/qt5/plugins/accessible/libqtaccessiblewidgets.so"

but this file does not exist.  Possible reasons include:

* The file was deleted, renamed, or moved to another location.

* An install or uninstall procedure did not complete successfully.

* The installation package was faulty and contained

   "/usr/lib/x86_64-linux-
  gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake"

but not all the files it references.

  Call Stack (most recent call first):
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:145 
(_qt5_Widgets_check_file_exists)

/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5Widgets_AccessibleFactory.cmake:4 
(_populate_Widgets_plugin_properties)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake:13 
(include)
/usr/lib/x86_64-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake:158 
(include)
Tests/CMakeLists.txt:1222 (find_package)

  
  -- Configuring incomplete, errors occurred!
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeOutput.log".
  See also 
"/data/Build/buildroot/output/build/host-cmake-3.3.2/CMakeFiles/CMakeError.log".

  
  System details:
  > lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10
  > apt-cache policy libqt5widgets5 

  libqt5widgets5:
Installed: 5.4.2+dfsg-2ubuntu9
Candidate: 5.4.2+dfsg-2ubuntu9
Version table:
   *** 5.4.2+dfsg-2ubuntu9 0
  500 http://ftp.iinet.net.au/pub/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status
  >

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1531666/+subscriptions

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

[Touch-packages] [Bug 1531650] Re: Crashes and other bad behavior while mediascanner is indexing

2016-01-06 Thread Andrew Hayzen
Yup, while mediascanner2 is scanning the app is unusable :-/

This bug is probably a duplicate of bug 1529991 (qmlscene crashes if
music app is started while mediascanner is extracting) and linked to
others about high CPU (bug 1442035, bug 1237065).

It took 1 hour and 40 minutes for mediascanner2 to complete its scan on
my laptop [0], rendering the laptop useless due to the disk activity.
Upon analysis I could see the sqlite lock file appearing as it adds
every individual file to the store, which suggests it might be doing a
commit as each track/video/picture is added, if this is the case could
it not batch these into groups?

However, while scanning it would be better not to crash/be in a bad
state. So could the mediascanner always give a valid model to the music-
app, and if it doesn't exist already, is there a property to tell us
when mediascanner is scanning? As we could show up a notification while
this is occurring, to at least alert the user of what is happening?

This tends not to happen too often on the device, as by the time you
have transferred files to it via MTP mediascanner has scanned. But in
the case of the desktop where you can already have the media there or
when a SD card is plugged into the device, this appears to occur quite
often.


For reference Rhythmbox took around 2-3 minutes to scan the same data and 
didn't cause high disk usage, still allowing me to use the laptop.

0 - I have ~3600 audio files (~60GB), 10,600 photos (~7GB),  ~180 videos
(~30GB).

** Changed in: music-app
   Status: New => Confirmed

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

Title:
  Crashes and other bad behavior while mediascanner is indexing

Status in Ubuntu Music App:
  Confirmed
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  The attached archive contains 7000 "songs: of 1-second silence. Untar
  the archive into the music folder. The mediscanner will take several
  minutes to index the collection.

  Start the music app while the mediascanner is running. I'm seeing
  different kinds of errors every time I kill the music app and start it
  again while the mediscanner is indexing.

  Sometimes, it's an instant crash.

  Sometimes, I get the "No music found" page.

  Sometimes, I get the song list, but the song list is empty and will
  not fill.

  Sometimes, I get this in the application log:

  Error finalising statement: Could not finalize statement: database is locked
  Failed to retrieve rows: database is locked

  And this:

  Failed to start a new media-hub player session:  
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes 
include: the remote application did not send a reply, the message bus security 
policy blocked the reply, the reply timeout expired, or the network connection 
was broken.
  Failed to create a new media player backend. Video playback will not 
function. 

  Could not finish contructing new AalMediaPlayerService instance since
  m_hubPlayerSession is NULL.

  Basically, the application is completely unusable and broken while
  indexing is in progress. Once mediascanner finishes indexing, things
  behave normally again.

  This makes for a seriously bad user experience when someone inserts a
  flash card with their music collection and, almost certainly, will
  immediately go to the music app to start playing things.

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1531650/+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 1531663] [NEW] Music does not play for large collections

2016-01-06 Thread Michi Henning
Public bug reported:

This is *not* a duplicate of #1531650.

Untar the attached 7000 "song" collection and wait for mediascanner to
settle down, then start the music app. Once the song list appears,
scroll down a page or two and tap a song. After a delay of *several
seconds*, the player finally appears, but is unresponsive. The song
isn't played, and the play button does nothing.

Go back to the song list. In a terminal, cd ~/Music/music-no-artwork,
and remove all the single letter directories except for 0. (Or move the
directories to somewhere where the mediscanner won't index them.

It takes ages (10s of seconds) for song list to refresh and, during that
time, the app is catatonic.

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

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

Title:
  Music does not play for large collections

Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  This is *not* a duplicate of #1531650.

  Untar the attached 7000 "song" collection and wait for mediascanner to
  settle down, then start the music app. Once the song list appears,
  scroll down a page or two and tap a song. After a delay of *several
  seconds*, the player finally appears, but is unresponsive. The song
  isn't played, and the play button does nothing.

  Go back to the song list. In a terminal, cd ~/Music/music-no-artwork,
  and remove all the single letter directories except for 0. (Or move
  the directories to somewhere where the mediscanner won't index them.

  It takes ages (10s of seconds) for song list to refresh and, during
  that time, the app is catatonic.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mediascanner2/+bug/1531663/+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 1531517] Re: pinch to zoom not working reliably

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

** Changed in: mir (Ubuntu)
   Status: New => Confirmed

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

Title:
  pinch to zoom not working reliably

Status in Canonical System Image:
  Confirmed
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531517/+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 1531517] Re: pinch to zoom not working reliably

2016-01-06 Thread dinamic
same on MX4 rc-proposed

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

Title:
  pinch to zoom not working reliably

Status in Canonical System Image:
  Confirmed
Status in mir package in Ubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531517/+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 1531656] [NEW] /usr/lib/arm-linux-gnueabihf/unity-scopes/scoperunner:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:boost

2016-01-06 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding unity-scopes-api.  This problem was most recently seen with
version 0.6.12+15.04.20150127.2-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/04dbea446c9b8c5970255171b4cef98ff7d08a1c
contains more details.

** Affects: unity-scopes-api (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: vivid wily xenial

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

Title:
  /usr/lib/arm-linux-gnueabihf/unity-
  
scopes/scoperunner:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:boost::throw_exception

Status in unity-scopes-api package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity-scopes-api.  This problem was most recently seen with
  version 0.6.12+15.04.20150127.2-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/04dbea446c9b8c5970255171b4cef98ff7d08a1c
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1531656/+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 1529991] Re: qmlscene crashes if music app is started while mediascanner is extracting

2016-01-06 Thread Michi Henning
I've managed to start the music app without a crash. But it takes well
over 60 seconds (!) before the spinner goes away and the song list
appears.

Following the application log, it looks like qmlscene is being asked to
deal with the entire collection of 7000 songs up front. This is totally
non-scalable.

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

Title:
  qmlscene crashes if music app is started while mediascanner is
  extracting

Status in mediascanner2 package in Ubuntu:
  New
Status in music-app package in Ubuntu:
  New
Status in qtdeclarative-opensource-src package in Ubuntu:
  New

Bug description:
  I'm attaching an archive with about 7000 "songs" (each of which is a
  second of silence).

  To reproduce the problem, make sure that the music app isn't running
  and unpack the archive somewhere under the Music directory. This
  causes mediascanner to start indexing the files. (It'll take about 10
  minutes on Mako.)

  While mediascanner is still indexing, start the music app. A few
  seconds later, qmlscene crashes. (I'm seeing this with image 326 from
  rc-proposed.)

  I'm also attaching the crash file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mediascanner2/+bug/1529991/+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 1531655] [NEW] /usr/lib/arm-linux-gnueabihf/qt5/bin/qmlscene:11:__GI_getenv:qEnvironmentVariableIsEmpty:QThreadPrivate::createEventDispatcher:QThreadPrivate::start:start_thread

2016-01-06 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding qtdeclarative-opensource-src.  This problem was most recently
seen with version 5.5.1-2ubuntu3, the problem page at
https://errors.ubuntu.com/problem/e35345d457915842e1e83958ef17d35610a8f6be
contains more details.

** Affects: qtdeclarative-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: rtm-14.09 vivid wily xenial

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

Title:
  /usr/lib/arm-linux-
  
gnueabihf/qt5/bin/qmlscene:11:__GI_getenv:qEnvironmentVariableIsEmpty:QThreadPrivate::createEventDispatcher:QThreadPrivate::start:start_thread

Status in qtdeclarative-opensource-src package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding qtdeclarative-opensource-src.  This problem was most
  recently seen with version 5.5.1-2ubuntu3, the problem page at
  https://errors.ubuntu.com/problem/e35345d457915842e1e83958ef17d35610a8f6be
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1531655/+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 1531650] [NEW] Crashes and other bad behavior while mediascanner is indexing

2016-01-06 Thread Michi Henning
Public bug reported:

The attached archive contains 7000 "songs: of 1-second silence. Untar
the archive into the music folder. The mediscanner will take several
minutes to index the collection.

Start the music app while the mediascanner is running. I'm seeing
different kinds of errors every time I kill the music app and start it
again while the mediscanner is indexing.

Sometimes, it's an instant crash.

Sometimes, I get the "No music found" page.

Sometimes, I get the song list, but the song list is empty and will not
fill.

Sometimes, I get this in the application log:

Error finalising statement: Could not finalize statement: database is locked
Failed to retrieve rows: database is locked

And this:

Failed to start a new media-hub player session:  
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes 
include: the remote application did not send a reply, the message bus security 
policy blocked the reply, the reply timeout expired, or the network connection 
was broken.
Failed to create a new media player backend. Video playback will not function. 

Could not finish contructing new AalMediaPlayerService instance since
m_hubPlayerSession is NULL.

Basically, the application is completely unusable and broken while
indexing is in progress. Once mediascanner finishes indexing, things
behave normally again.

This makes for a seriously bad user experience when someone inserts a
flash card with their music collection and, almost certainly, will
immediately go to the music app to start playing things.

** Affects: music-app
 Importance: Undecided
 Status: New

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

** Attachment added: "music-no-artwork.tar.gz"
   
https://bugs.launchpad.net/bugs/1531650/+attachment/4545201/+files/music-no-artwork.tar.gz

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

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

Title:
  Crashes and other bad behavior while mediascanner is indexing

Status in Ubuntu Music App:
  New
Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  The attached archive contains 7000 "songs: of 1-second silence. Untar
  the archive into the music folder. The mediscanner will take several
  minutes to index the collection.

  Start the music app while the mediascanner is running. I'm seeing
  different kinds of errors every time I kill the music app and start it
  again while the mediscanner is indexing.

  Sometimes, it's an instant crash.

  Sometimes, I get the "No music found" page.

  Sometimes, I get the song list, but the song list is empty and will
  not fill.

  Sometimes, I get this in the application log:

  Error finalising statement: Could not finalize statement: database is locked
  Failed to retrieve rows: database is locked

  And this:

  Failed to start a new media-hub player session:  
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes 
include: the remote application did not send a reply, the message bus security 
policy blocked the reply, the reply timeout expired, or the network connection 
was broken.
  Failed to create a new media player backend. Video playback will not 
function. 

  Could not finish contructing new AalMediaPlayerService instance since
  m_hubPlayerSession is NULL.

  Basically, the application is completely unusable and broken while
  indexing is in progress. Once mediascanner finishes indexing, things
  behave normally again.

  This makes for a seriously bad user experience when someone inserts a
  flash card with their music collection and, almost certainly, will
  immediately go to the music app to start playing things.

To manage notifications about this bug go to:
https://bugs.launchpad.net/music-app/+bug/1531650/+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 1528422] Re: Additional drivers reports the wrong driver in use

2016-01-06 Thread Vadim Peretokin
None that I've ever touched myself - I believe changing drivers tries to
edit it. Here's how it looks like for me right now:

$ ls /etc/X11 | grep xorg.conf
xorg.conf.07212014
xorg.conf.07242014
xorg.conf.07252014
xorg.conf.07312014
xorg.conf.08062014
xorg.conf.10222014
xorg.conf.11052014
xorg.conf.11072014
xorg.conf.11082014
xorg.conf.11102014
xorg.conf.2014
xorg.conf-backup-141022083201
xorg.conf-backup-141022085225
xorg.conf-backup-141022085521
xorg.conf-backup-141107125850
xorg.conf-backup-141107130443
xorg.conf-backup-141107130805
xorg.conf-backup-141107140134
xorg.conf-backup-160106082034
xorg.conf.failsafe
xorg.conf.original-0

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

Title:
  Additional drivers reports the wrong driver in use

Status in software-properties package in Ubuntu:
  New

Bug description:
  See attached screenshot - it's reporting the AMD driver is in use,
  while in reality it is the Intel driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: software-properties-gtk 0.96.13.1
  ProcVersionSignature: Ubuntu 4.2.0-22.27-generic 4.2.6
  Uname: Linux 4.2.0-22-generic x86_64
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec 22 12:45:42 2015
  InstallationDate: Installed on 2014-06-26 (543 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  SourcePackage: software-properties
  UpgradeStatus: Upgraded to wily on 2015-10-26 (56 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1528422/+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 1531179] Re: [desktop] Crashes on startup in xenial: module "Ubuntu.Thumbnailer" is not installed

2016-01-06 Thread Winlux
I am also affected by the error and I attached the error I get when I
try to run for terminal

** Attachment added: "webbrowser-app-error.png"
   
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1531179/+attachment/4545180/+files/webbrowser-app-error.png

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

Title:
  [desktop] Crashes on startup in xenial: module "Ubuntu.Thumbnailer" is
  not installed

Status in Canonical System Image:
  In Progress
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  $ webbrowser-app

  (webbrowser-app:19925): dconf-CRITICAL **: unable to create file
  '/run/user/1001/dconf/user': Permission denied.  dconf will not work
  properly.

  (webbrowser-app:19925): dconf-CRITICAL **: unable to create file
  '/run/user/1001/dconf/user': Permission denied.  dconf will not work
  properly.

  (webbrowser-app:19925): dconf-CRITICAL **: unable to create file 
'/run/user/1001/dconf/user': Permission denied.  dconf will not work properly.
  "file:///usr/share/webbrowser-app/webbrowser/webbrowser-app.qml:41 Type 
Browser 
unavailable\nfile:///usr/share/webbrowser-app/webbrowser/Browser.qml:936 Type 
DownloadsPage 
unavailable\nfile:///usr/share/webbrowser-app/webbrowser/DownloadsPage.qml:23 
module \"Ubuntu.Thumbnailer\" is not installed\n"

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531179/+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 1531158] Re: Screen stays black if outgoing call is rejected

2016-01-06 Thread kevin gunn
** Changed in: dialer-app
   Status: Confirmed => Opinion

** Changed in: unity-system-compositor (Ubuntu)
   Importance: Undecided => Critical

** Changed in: unity-system-compositor (Ubuntu)
 Assignee: (unassigned) => Alexandros Frantzis (afrantzis)

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

Title:
  Screen stays black if outgoing call is rejected

Status in Canonical System Image:
  Confirmed
Status in dialer-app:
  Opinion
Status in unity-system-compositor package in Ubuntu:
  New

Bug description:
  current build number: 210
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en

  Test Case:
  1. On DUT1 make a call to DUT2 and cover the proximity sensor
  2. On DUT2:
    - If call forwarding is set to reject the call immediately (ie not redirect 
to the voicemail), reject the call
    - Alternatively, you can take the call and immediately hang up.
  3. On DUT1, once the call is terminated, uncover the proximity sensor

  Expected Result
  Screen is on

  Actual Result
  Screen stays black and cannot be switched on even with the power button. 
After a moment, the screen blinks and works normally again.

  It works as expected on stable.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531158/+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 1531647] [NEW] Dependency hell: "libgl1-mesa-dri-lts-vivid : Conflicts: libgl1-mesa-dri"

2016-01-06 Thread macho
Public bug reported:

I'm not entirely sure whether it's package updates or something I did
that caused this problem, but I'm getting this:

$ sudo aptitude dist-upgrade
The following NEW packages will be installed:
  libgl1-mesa-dri{a} libllvm3.6v5{ab} libxatracker2{a} xserver-xorg{a} 
  xserver-xorg-core{a} xserver-xorg-video-all{a} xserver-xorg-video-ati{a} 
  xserver-xorg-video-cirrus{a} xserver-xorg-video-fbdev{a} 
  xserver-xorg-video-intel{a} xserver-xorg-video-mach64{a} 
  xserver-xorg-video-mga{a} xserver-xorg-video-neomagic{a} 
  xserver-xorg-video-nouveau{a} xserver-xorg-video-openchrome{a} 
  xserver-xorg-video-qxl{a} xserver-xorg-video-r128{a} 
  xserver-xorg-video-radeon{a} xserver-xorg-video-savage{a} 
  xserver-xorg-video-siliconmotion{a} xserver-xorg-video-sisusb{a} 
  xserver-xorg-video-tdfx{a} xserver-xorg-video-trident{a} 
  xserver-xorg-video-vesa{a} xserver-xorg-video-vmware{a} 
The following packages will be upgraded:
  libgbm1 xorg 
2 packages upgraded, 25 newly installed, 0 to remove and 0 not upgraded.
Need to get 16.5 MB of archives. After unpacking 139 MB will be used.
The following packages have unmet dependencies:
 libgl1-mesa-dri-lts-vivid : Conflicts: libgl1-mesa-dri but 11.0.2-1ubuntu4 is 
to be installed.
 xserver-xorg-lts-vivid : Conflicts: libgl1-mesa-dri (>= 0~) but 
11.0.2-1ubuntu4 is to be installed.
  Conflicts: libxatracker2 (>= 0~) but 11.0.2-1ubuntu4 
is to be installed.
  Conflicts: xserver-xorg but 1:7.7+7ubuntu4 is to be 
installed.
  Conflicts: xserver-xorg-core (>= 0~) but 
2:1.17.2-1ubuntu9.1 is to be installed.
  Conflicts: xserver-xorg-video-all (>= 0~) but 
1:7.7+7ubuntu4 is to be installed.
 libllvm3.6v5 : Conflicts: libllvm3.6 but 1:3.6-2ubuntu1 is installed.
 xserver-xorg-core-lts-vivid : Conflicts: xserver-xorg-core but 
2:1.17.2-1ubuntu9.1 is to be installed.
   Conflicts: xserver-xorg-video-modesetting which 
is a virtual package, provided by:
   - xserver-xorg-core, but 
2:1.17.2-1ubuntu9.1 is to be installed. 
  - xserver-xorg-core, but 2:1.17.2-1ubuntu9.1 is to be installed.
The following actions will resolve these dependencies: 


Not sure how to proceed.
Thanks!

I'm running Ubuntu 15.10.

$ ubuntu-bug mesa # gives "The problem cannot be reported: \ The report
belongs to a package that is not installed."

$ dpkg -l | grep -e mesa -e xorg
ii  libegl1-mesa-lts-vivid:amd64
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the EGL API -- runtime
ii  libgl1-mesa-dri-lts-vivid:amd64 
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL API -- DRI modules
ii  libgl1-mesa-glx-lts-vivid:amd64 
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL API -- GLX runtime
ii  libglapi-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the GL API -- shared library
rc  libgles1-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL|ES 1.x API -- runtime
rc  libgles2-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL|ES 2.x API -- runtime
ii  libglu1-mesa:amd64  9.0.0-2 
   amd64Mesa OpenGL utility library (GLU)
ii  libwayland-egl1-mesa-lts-vivid:amd64
10.5.9-2ubuntu1~trusty2amd64implementation of the 
Wayland EGL platform -- runtime
ii  mesa-utils  8.2.0-1ubuntu1  
   amd64Miscellaneous Mesa GL utilities
rc  mir-client-platform-mesa2:amd64 
0.12.1+15.04.20150324-0ubuntu1 amd64Display server for 
Ubuntu - client platform library for Mesa
ii  python3-xkit0.5.0ubuntu2
   all  library for the manipulation of 
xorg.conf files (Python 3)
ii  xorg
1:7.7+1ubuntu8.1   amd64X.Org X Window System
ii  xorg-docs-core  
1:1.7.1-0ubuntu1   all  Core documentation for 
the X.org X Window System
ii  xserver-xorg-core-lts-vivid 
2:1.17.1-0ubuntu3.1~trusty1amd64Xorg X server - core 
server
ii  xserver-xorg-input-evdev-lts-vivid  
1:2.9.0-1ubuntu2~trusty1 

[Touch-packages] [Bug 1531517] Re: pinch to zoom not working reliably

2016-01-06 Thread Daniel d'Andrada
>From the attachment you can see that mir giving a bogus event stream.
When you lay two fingers on the screen at roughly the same time (like when 
doing a pinch gesture) it's common for mir to not generate or send the "down" 
event for the first touch point.

qtmir has a basic event stream sanity check and validation. It detects
this problem and transforms the action=change for the first touch event
with id=0 into a action=down instead. But then we end up with an input
event with *two* pressed touch points, which at least makes sense but I
think Qt does not like that. It probably expects a single touch up/down
per event, like android. I could make qtmir's event stream validator
more sophisticated and have it split those two touch down actions into
two separate input events, but mir should really send us a clean event
stream in the first place.

** Attachment added: "Typical qtmir log output on an unsuccessful pinch gesture"
   
https://bugs.launchpad.net/ubuntu/+source/qtmir/+bug/1531517/+attachment/4545169/+files/qtmir-mir-input.log

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

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

Title:
  pinch to zoom not working reliably

Status in Canonical System Image:
  Confirmed
Status in mir package in Ubuntu:
  New
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531517/+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 1479438] Re: IN CAR: Battery levels not shared via bluetooth for in car experience

2016-01-06 Thread Uranicus
I have an interesting finding about the battery status in the car.

I am on:
current build number: 222
device name: krillin
channel: ubuntu-touch/rc-proposed/bq-aquaris.en
last update: 2016-01-06 19:35:20
version version: 222
version ubuntu: 20160106
version device: 20151216-378d4f3
version custom: 2015--36-46-vivid

In this rc-proposed version and also the version before (January, 5th) I
have once the real battery status of the phone shown in the car and
after a restart of the car (not the phone) I have the indication of a
full battery level.

I have two SIM cards in my phone but the second SIM card is locked (I
have not entered the PIN code).

I have attached sys.log and dbus.log of today. I have changed to the
lastest rc-proposed today at 19:35 h ish and after this there was the
occasion that the real battery status was shown in the car and after I
re-started the car again (after a short break) the display in the car
showed a full battery level.

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

Title:
  IN CAR: Battery levels not shared via bluetooth for in car experience

Status in Canonical System Image:
  Fix Committed
Status in bluez package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu RTM:
  Fix Released

Bug description:
  STEPS:
  Requirements: DUT a car with bluetooth and phone connection kit (Skoda Superb 
2013 in my instance)

  1. Connect the DUT to the car
  2. On the display panel the battery always shows full

  EXPECTED:
  I expect to see the actual level of the battery on the device

  ACTUAL:
  The display always shows the battery at 100% I assume the default if no info 
is available.

  VERSIONS:
  current build number: 71
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-28 18:01:08
  version version: 71
  version ubuntu: 20150728
  version device: 20150709-8965e37
  version custom: 20150716-819-8-42

  MODIFICATIONS:
  Installation of silo19 for in car bt fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1479438/+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 1531517] Re: pinch to zoom not working reliably

2016-01-06 Thread Daniel d'Andrada
My guess is that this regression is related to mir changing from
android-input to libinput.

** Changed in: qtmir (Ubuntu)
   Status: In Progress => Won't Fix

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

Title:
  pinch to zoom not working reliably

Status in Canonical System Image:
  Confirmed
Status in mir package in Ubuntu:
  New
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531517/+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 1479438] Re: IN CAR: Battery levels not shared via bluetooth for in car experience

2016-01-06 Thread Uranicus
Attachement to my report.

** Attachment added: "20160106_2155.7z"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1479438/+attachment/4545171/+files/20160106_2155.7z

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

Title:
  IN CAR: Battery levels not shared via bluetooth for in car experience

Status in Canonical System Image:
  Fix Committed
Status in bluez package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu RTM:
  Fix Released

Bug description:
  STEPS:
  Requirements: DUT a car with bluetooth and phone connection kit (Skoda Superb 
2013 in my instance)

  1. Connect the DUT to the car
  2. On the display panel the battery always shows full

  EXPECTED:
  I expect to see the actual level of the battery on the device

  ACTUAL:
  The display always shows the battery at 100% I assume the default if no info 
is available.

  VERSIONS:
  current build number: 71
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-28 18:01:08
  version version: 71
  version ubuntu: 20150728
  version device: 20150709-8965e37
  version custom: 20150716-819-8-42

  MODIFICATIONS:
  Installation of silo19 for in car bt fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1479438/+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 1502446] Re: Cannot login on trac pages

2016-01-06 Thread Kevin Havens
*** This bug is a duplicate of bug 1422534 ***
https://bugs.launchpad.net/bugs/1422534

This IS NOT a duplicate!

I just tried to log into https://bugs.downthemall.net with my Launchpad
ID (https://launchpad.net/~bootloop) and I am getting the following:

 Trac detected an internal error:

error: illegal IP address string passed to inet_aton

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

Title:
  Cannot login on trac pages

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Using Ubuntu phone's browser, I cannot log into pages powered by the popular 
bug tracker 'trac'. For an example, try logging into trac's own site on 
http://trac.edgewall.org. (Klick the gray "login" link on the top right.)
  Don't bother you have no account -- you won't evrn get the chance to log in: 
The browser displays an error page right away.

  (For a second exmple, try the same on our web site http://paedml.kg-
  fds.de/trac.)

  I found a bug report that looks pretty much like it, but it is marked
  fixed since 2013. Could please someone check, if my problem is a
  regression of bug #1212980? Thank you!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1502446/+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 1531622] [NEW] default config still using a legacy keyword: KLogPermitNonKernelFacility

2016-01-06 Thread Simon Déziel
Public bug reported:

/etc/rsyslog.conf contains:

  $KLogPermitNonKernelFacility on

But this no longer supported and trigger this log message:

 Jan  5 08:56:16 simon-laptop rsyslogd-: command
'KLogPermitNonKernelFacility' is currently not permitted - did you
already set it via a RainerScript command (v6+ config)? [v8.14.0 try
http://www.rsyslog.com/e/ ]

Error  is described as "legacy parameter no longer permitted".

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: rsyslog 8.14.0-2ubuntu2
ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
Uname: Linux 4.3.0-5-generic x86_64
ApportVersion: 2.19.3-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Wed Jan  6 15:47:15 2016
SourcePackage: rsyslog
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.logcheck.ignore.d.server.rsyslog: [deleted]

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


** Tags: amd64 apport-bug package-from-proposed xenial

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

Title:
  default config still using a legacy keyword:
  KLogPermitNonKernelFacility

Status in rsyslog package in Ubuntu:
  New

Bug description:
  /etc/rsyslog.conf contains:

$KLogPermitNonKernelFacility on

  But this no longer supported and trigger this log message:

   Jan  5 08:56:16 simon-laptop rsyslogd-: command
  'KLogPermitNonKernelFacility' is currently not permitted - did you
  already set it via a RainerScript command (v6+ config)? [v8.14.0 try
  http://www.rsyslog.com/e/ ]

  Error  is described as "legacy parameter no longer permitted".

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: rsyslog 8.14.0-2ubuntu2
  ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
  Uname: Linux 4.3.0-5-generic x86_64
  ApportVersion: 2.19.3-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Jan  6 15:47:15 2016
  SourcePackage: rsyslog
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.logcheck.ignore.d.server.rsyslog: [deleted]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/1531622/+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 1362906] Re: internal compiler error: in comparison, at go/gofrontend/expressions.cc:6508

2016-01-06 Thread Michael Hudson-Doyle
I verified the fix in a lxd. Before enabling proposed:

root@trusty:~# gccgo --version
gccgo (Ubuntu 4.9.1-0ubuntu1) 4.9.1
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

root@trusty:~# gccgo test.go
In function 'main.$nested1':
go1: internal compiler error: in comparison, at 
go/gofrontend/expressions.cc:6508
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
root@trusty:~#

And after:

root@trusty:~# gccgo --version
gccgo (Ubuntu 4.9.3-0ubuntu4) 4.9.3
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

root@trusty:~# gccgo test.go
root@trusty:~#  


** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
   internal compiler error: in comparison, at
  go/gofrontend/expressions.cc:6508

Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.9 source package in Trusty:
  Invalid
Status in gccgo-4.9 source package in Trusty:
  Fix Committed
Status in gcc-4.9 source package in Utopic:
  Fix Released
Status in gccgo-4.9 source package in Utopic:
  Invalid

Bug description:
  Upstream bug report

  https://code.google.com/p/go/issues/detail?id=8612

  Test case in the upstream report: http://play.golang.org/p/SNDWCuDsPL

  Validation: the test case does not ICE

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.9/+bug/1362906/+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 1531316] Re: Totem in full screen crashes Xorg

2016-01-06 Thread forteller
Output of lshw says:

 *-display
 description: VGA compatible controller
 product: Haswell-ULT Integrated Graphics Controller
 vendor: Intel Corporation
 physical id: 2
 bus info: pci@:00:02.0
 version: 09
 width: 64 bits
 clock: 33MHz
 capabilities: msi pm vga_controller bus_master cap_list rom
 configuration: driver=i915 latency=0
 resources: irq:44 memory:f780-f7bf 
memory:e000-efff ioport:f000(size=64)

Not sure how to do the log and backtrace thing. I'd appreciate it if you
could walk me trough it or point me in the right direction to find out.
Thanks!

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

Title:
  Totem in full screen crashes Xorg

Status in xorg package in Ubuntu:
  New

Bug description:
  I tried reporting this to Totem[1], but they assured me this is an
  issue with X.

  I've tried playing both mkv and avi files in Totem in a almost totally
  newly installed Ubuntu Gnome 15.10 64 bit, updated to Gnome 3.18 with
  the Gnome Staging PPA.

  Every time I play the files in full screen mode the screen turns black
  and I'm logged out of my session. When I log back in I see that all
  programs are closed.

  This happens at different times after going to full screen mode. Some
  times after a second, other times after a few minutes.

  It only happens in full screen, I can play the video for as long as I
  want if I don't go full screen. It also only happens in Totem, I don't
  experience it in full screen in VLC.

  I don't know how to find the log files from the crash, but please let
  me know how to do that if it can help.

  This is quite critical for the adaptation of (Ubuntu) Gnome. Non
  technical people will soon give up Linux if their first meeting with
  it is that they can't play videos in full screen mode (they won't
  think of the possibility of installing some other video player). So I
  hope you will look into this closely even though it's a bit vague. If
  there's anything I can do to help, please let me know!

  Thanks!

  [1] https://bugzilla.gnome.org/show_bug.cgi?id=760078

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1531316/+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 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Michael Terry
OK, so that MR mentions that clear-search is suru-specific, and there's
a more standard "edit-clear" that should be used.  So that MP seems
harmless / correct.

But someone went one step further and removed clear-search from suru it
seems.  Even though apps are still using it.

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1392176] Re: mounts cgroups unconditionally which causes undesired effects with cpu hotplug

2016-01-06 Thread Matt Dirba
FYI:  My use case for hot plugging my x86 system like a drunken sailor
is to evaluate the amount of CPUs required to complete a given task
before I schedule it to run on other potentially CPU bound machines.

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

Title:
  mounts cgroups unconditionally which causes undesired effects with cpu
  hotplug

Status in cgmanager package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  == Comment: #0 - Preeti U. Murthy  - 2014-10-20 
04:40:12 ==
  ---Problem Description---
  Systemd mounts cgroups explicitly every boot. Since the user had no say in 
it, undesired consequences are observed in reaction to cpu hotplug operations.  
Here is how.

  Systemd moves the tasks to the cgroup mounted by it. This cgroup 
automatically becomes the child of the root cgroup which is present by default. 
The children cgroups are not expected to remember their configured cpusets 
after hotplug operations in the kernel. Hence when cpus are taken offline and 
brought back online they are no longer used for load balancing of tasks and 
hence remain unused. 
 This is an undesired consequence because the user had not even asked for 
cgroups to be mounted, yet is not able to use the full capacity of the system.

  Only when the user himself creates cgroup hierarchies, should he be
  exposed to the side effects of cpu hotplug on cpusets. Else all online
  cpus must be made available to him which is not happening since
  systemd mounts cgroups on every boot.

  Hence please revert this feature or provide an explaination as to why this is 
being done.
   
  ---uname output---
  Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = Tuleta 8286-42A 
   ---Debugger---
  A debugger was configured, however the system did not enter into the debugger
   
  ---Steps to Reproduce---
   $ taskset -p $$
  $ 0-127
  $ echo 0 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
  $ echo 1 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
   
   
  Userspace tool common name: systemd 
   
  The userspace tool has the following bit modes: 64-bit 

  Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb

  Userspace tool obtained from project website:   208-8ubuntu8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1392176/+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 1531339] Re: Clicking on empty space in launcher gives haptic feedback

2016-01-06 Thread Lukáš Tinkl
** Changed in: unity8 (Ubuntu)
   Status: Fix Released => In Progress

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

Title:
  Clicking on empty space in launcher gives haptic feedback

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  That can't be right, eh?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1531339/+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 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Tim Peeters
That change was made in this MR: https://code.launchpad.net/~ubuntu-sdk-
team/ubuntu-ui-toolkit/validClearIconName/+merge/280968

** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) => Christian Dywan (kalikiana)

** Changed in: ubuntu-ui-toolkit (Ubuntu RTM)
 Assignee: (unassigned) => Christian Dywan (kalikiana)

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1417664] Re: Unity8 build causes internal compiler error on armhf

2016-01-06 Thread Steve Langasek
This bug was not identified with gccgo, only with g++, which is not
applicable to the in-progress gccgo-4.9 SRU.


** Tags removed: verification-needed

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

Title:
  Unity8 build causes internal compiler error on armhf

Status in gcc:
  Fix Released
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in unity-scopes-shell package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  I've encountered this first today, thought this was a problem with
  some of my MPs, but have reduced them to no-op and the unity8 trunk
  does not build on armhf in the PPAs:

  In file included from 
/build/buildd/unity8-8.02+15.04.20150203.7/tests/mocks/Unity/fake_scopes.cpp:21:0:
  
/build/buildd/unity8-8.02+15.04.20150203.7/tests/mocks/Unity/fake_scopesoverview.h:
 At global scope:
  
/build/buildd/unity8-8.02+15.04.20150203.7/tests/mocks/Unity/fake_scopesoverview.h:27:7:
 internal compiler error: in symtab_remove_unreachable_nodes, at ipa.c:547
   class ScopesOverview : public Scope
 ^
  Please submit a full bug report,
  with preprocessed source if appropriate.
  See  for instructions.

  https://launchpad.net/~ci-train-ppa-
  service/+archive/ubuntu/landing-021/+sourcepub/4753156/+listing-
  archive-extra

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: gcc-4.9 4.9.2-10ubuntu3
  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: Tue Feb  3 17:59:59 2015
  SourcePackage: gcc-4.9
  SystemImageInfo:
   current build number: 0
   device name: 
   channel: daily
   last update: Unknown
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gcc/+bug/1417664/+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 1360404] Re: -dumpversion output inconsistent with upstream

2016-01-06 Thread Steve Langasek
This is not strictly required to be included in the gccgo-4.9 SRU, but
it was and I can confirm that the bug is fixed in the new version of
gccgo-4.9 in trusty-proposed.

** Changed in: gcc-4.8 (Ubuntu Trusty)
   Status: New => Won't Fix

** Changed in: gcc-4.9 (Ubuntu Trusty)
   Status: New => Invalid

** Changed in: gccgo-4.9 (Ubuntu)
   Status: New => Invalid

** Changed in: gccgo-4.9 (Ubuntu Trusty)
   Status: New => Fix Committed

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

Title:
  -dumpversion output inconsistent with upstream

Status in gcc-4.6 package in Ubuntu:
  Won't Fix
Status in gcc-4.7 package in Ubuntu:
  Won't Fix
Status in gcc-4.8 package in Ubuntu:
  Won't Fix
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.6 source package in Trusty:
  Won't Fix
Status in gcc-4.7 source package in Trusty:
  Won't Fix
Status in gcc-4.8 source package in Trusty:
  Won't Fix
Status in gcc-4.9 source package in Trusty:
  Invalid
Status in gccgo-4.9 source package in Trusty:
  Fix Committed

Bug description:
  Note: this bug also affects gcc-4.6, gcc-4.7, gcc-4.8, and possibly
  gcc-4.9

  Sometime between gcc-4.5.8 and gcc-4.6.3 debian (accidentally) changed
  the output of the -dumpversion flag; possibly in an attempt to fix
  this bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643891

  As a result, -dumpversion now reports MAJOR.MINOR version info. This
  is in contrast to upstream and other distributions of gcc which report
  MAJOR.MINOR.PATCH version info.  This prevents simple machine parsing
  of gcc/g++/gfortran versions to filter out misbehaving versions. (For
  instance gcc-4.7.0's and gcc-4.7.1's C++11 ABI incompatibilities.)
  This bug has trickled down through gcc-4.6, gcc-4.7, gcc-4.8, and
  possibly gcc-4.9, and affects their binary packages (gcc, g++,
  gfortran, others?).

  This bug can be fixed by applying the attached patch, after "debian
  patching".

  Additional information:

  1) Ubuntu version
  [maru:~] lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) package version
  [maru:~] apt-cache policy gcc-4.8
  gcc-4.8:
Installed: 4.8.2-19ubuntu1
Candidate: 4.8.2-19ubuntu1
Version table:
   *** 4.8.2-19ubuntu1 0
  500 http://mirrors.kernel.org/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What do you expect to happen?
  [avnas:~] lsb_release -rd
  Description:Fedora release 20 (Heisenbug)
  Release:20
  [avnas:~] gcc --version
  gcc (GCC) 4.8.2 20131212 (Red Hat 4.8.2-7)
  Copyright (C) 2013 Free Software Foundation, Inc.
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

  [avnas:~] gcc -dumpversion
  4.8.2
  [avnas:~] g++ -dumpversion
  4.8.2
  [avnas:~] gfortran -dumpversion
  4.8.2

  4) What happened instead?
  [maru:~] lsb_release -rd  
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04
  [maru:~] gcc --version
  gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
  Copyright (C) 2013 Free Software Foundation, Inc.
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

  [maru:~] gcc -dumpversion 
  4.8
  [maru:~] g++ -dumpversion
  4.8
  [maru:~] gfortran -dumpversion
  4.8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.6/+bug/1360404/+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 1374759] Re: >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is ufstype=old

2016-01-06 Thread Josu Lazkano
Same happens in Debian: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=772526

If you are not using multi boot, just remove the "os-prober" and it
should work.

Regards.

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

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

Title:
  >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is
  ufstype=old

Status in initramfs-tools package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Triaged
Status in os-prober package in Ubuntu:
  Confirmed

Bug description:
  [  556.734157] SGI XFS with ACLs, security attributes, realtime, large 
block/inode numbers, no debug enabled
  [  556.746268] JFS: nTxBlock = 8192, nTxLock = 65536
  [  556.763789] ntfs: driver 2.1.30 [Flags: R/O MODULE].
  [  556.792231] QNX4 filesystem 0.2.3 registered.
  [  557.922469] EXT4-fs (sda4): unable to read superblock
  [  557.925868] EXT4-fs (sda4): unable to read superblock
  [  557.928967] EXT4-fs (sda4): unable to read superblock
  [  557.931784] FAT-fs (sda4): bogus number of reserved sectors
  [  557.931791] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  557.946740] XFS (sda4): Invalid superblock magic number
  [  557.951904] FAT-fs (sda4): bogus number of reserved sectors
  [  557.951911] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  557.959099] MINIX-fs: unable to read superblock
  [  557.965712] attempt to access beyond end of device
  [  557.965721] sda4: rw=16, want=3, limit=2
  [  557.965725] hfsplus: unable to find HFS+ superblock
  [  557.968487] qnx4: no qnx4 filesystem (no root dir).
  [  557.971203] You didn't specify the type of your ufs filesystem

  mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep
  |nextstep-cd|openstep ...

  >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is 
ufstype=old
  [  557.974459] hfs: can't find a HFS filesystem on dev sda4
  [  564.034208] EXT4-fs (sda4): unable to read superblock
  [  564.040322] EXT4-fs (sda4): unable to read superblock
  [  564.043485] EXT4-fs (sda4): unable to read superblock
  [  564.047076] FAT-fs (sda4): bogus number of reserved sectors
  [  564.047083] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  564.059578] XFS (sda4): Invalid superblock magic number
  [  564.064473] FAT-fs (sda4): bogus number of reserved sectors
  [  564.064489] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  564.072080] MINIX-fs: unable to read superblock
  [  564.074564] attempt to access beyond end of device
  [  564.074571] sda4: rw=16, want=3, limit=2
  [  564.074576] hfsplus: unable to find HFS+ superblock
  [  564.076688] qnx4: no qnx4 filesystem (no root dir).
  [  564.078847] You didn't specify the type of your ufs filesystem

  mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep
  |nextstep-cd|openstep ...

  >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is 
ufstype=old
  [  564.080902] hfs: can't find a HFS filesystem on dev sda4
  [  570.554296] EXT4-fs (sda4): unable to read superblock
  [  570.557647] EXT4-fs (sda4): unable to read superblock
  [  570.560516] EXT4-fs (sda4): unable to read superblock
  [  570.563451] FAT-fs (sda4): bogus number of reserved sectors
  [  570.563460] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  570.574953] XFS (sda4): Invalid superblock magic number
  [  570.580796] FAT-fs (sda4): bogus number of reserved sectors
  [  570.580806] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  570.588340] MINIX-fs: unable to read superblock
  [  570.590983] attempt to access beyond end of device
  [  570.590993] sda4: rw=16, want=3, limit=2
  [  570.590999] hfsplus: unable to find HFS+ superblock
  [  570.593321] qnx4: no qnx4 filesystem (no root dir).
  [  570.595556] You didn't specify the type of your ufs filesystem

  mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep
  |nextstep-cd|openstep ...

  >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is 
ufstype=old
  [  570.597775] hfs: can't find a HFS filesystem on dev sda4
  [  576.795014] EXT4-fs (sda4): unable to read superblock
  [  576.797554] EXT4-fs (sda4): unable to read superblock
  [  576.800063] EXT4-fs (sda4): unable to read superblock
  [  576.802647] FAT-fs (sda4): bogus number of reserved sectors
  [  576.802655] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  576.813305] XFS (sda4): Invalid superblock magic number
  [  576.820257] FAT-fs (sda4): bogus number of reserved sectors
  [  576.820276] FAT-fs (sda4): Can't find a valid FAT filesystem
  [  576.830945] MINIX-fs: unable to read superblock
  [  576.834108] attempt to access beyond end of device
  [  576.834119] sda4: rw=16, want=3, limit=2
  [  576.834125] hfsplus: unable to find HFS+ superblock
  [  576.837264] qnx4: no qnx4 f

[Touch-packages] [Bug 1531604] [NEW] Missing package dependency for Ubuntu.Thumbnailer

2016-01-06 Thread Daniel d'Andrada
Public bug reported:

System:
Ubuntu Xenial desktop

Steps to reproduce the issue:
$ sudo apt-get install gallery-app
$ gallery-app

Expected outcome:
Gallery runs normally.

Actual outcome:
You get a blank screen and the following error is printed on the terminal:
"""
file:///usr/share/gallery-app/rc/qml/MainScreen.qml:221:21: Type PhotosOverview 
unavailable
file:///usr/share/gallery-app/rc/qml/PhotosOverview.qml:71:5: Type MediaGrid 
unavailable
file:///usr/share/gallery-app/rc/qml/Components/MediaGrid.qml:19:1: module 
"Ubuntu.Thumbnailer" is not installed
"""

The following command solved the problem:
$ sudo apt-get install qml-module-ubuntu-thumbnailer0.1

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

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

Title:
  Missing package dependency for Ubuntu.Thumbnailer

Status in gallery-app package in Ubuntu:
  New

Bug description:
  System:
  Ubuntu Xenial desktop

  Steps to reproduce the issue:
  $ sudo apt-get install gallery-app
  $ gallery-app

  Expected outcome:
  Gallery runs normally.

  Actual outcome:
  You get a blank screen and the following error is printed on the terminal:
  """
  file:///usr/share/gallery-app/rc/qml/MainScreen.qml:221:21: Type 
PhotosOverview unavailable
  file:///usr/share/gallery-app/rc/qml/PhotosOverview.qml:71:5: Type MediaGrid 
unavailable
  file:///usr/share/gallery-app/rc/qml/Components/MediaGrid.qml:19:1: module 
"Ubuntu.Thumbnailer" is not installed
  """

  The following command solved the problem:
  $ sudo apt-get install qml-module-ubuntu-thumbnailer0.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gallery-app/+bug/1531604/+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 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Jean-Baptiste Lallement
** Tags added: regression-proposed

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1392176] Re: mounts cgroups unconditionally which causes undesired effects with cpu hotplug

2016-01-06 Thread Ali
Serge,

Does the issue being moot apply to wiley or 16.04?

Thanks,
Ali

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

Title:
  mounts cgroups unconditionally which causes undesired effects with cpu
  hotplug

Status in cgmanager package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  == Comment: #0 - Preeti U. Murthy  - 2014-10-20 
04:40:12 ==
  ---Problem Description---
  Systemd mounts cgroups explicitly every boot. Since the user had no say in 
it, undesired consequences are observed in reaction to cpu hotplug operations.  
Here is how.

  Systemd moves the tasks to the cgroup mounted by it. This cgroup 
automatically becomes the child of the root cgroup which is present by default. 
The children cgroups are not expected to remember their configured cpusets 
after hotplug operations in the kernel. Hence when cpus are taken offline and 
brought back online they are no longer used for load balancing of tasks and 
hence remain unused. 
 This is an undesired consequence because the user had not even asked for 
cgroups to be mounted, yet is not able to use the full capacity of the system.

  Only when the user himself creates cgroup hierarchies, should he be
  exposed to the side effects of cpu hotplug on cpusets. Else all online
  cpus must be made available to him which is not happening since
  systemd mounts cgroups on every boot.

  Hence please revert this feature or provide an explaination as to why this is 
being done.
   
  ---uname output---
  Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = Tuleta 8286-42A 
   ---Debugger---
  A debugger was configured, however the system did not enter into the debugger
   
  ---Steps to Reproduce---
   $ taskset -p $$
  $ 0-127
  $ echo 0 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
  $ echo 1 > /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
   
   
  Userspace tool common name: systemd 
   
  The userspace tool has the following bit modes: 64-bit 

  Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb

  Userspace tool obtained from project website:   208-8ubuntu8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1392176/+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 1531118] Re: Cannot reinstall a previously uninstalled application

2016-01-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~michael-sheldon/ubuntu-download-
manager/fix-1531118

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

Title:
  Cannot reinstall a previously uninstalled application

Status in Canonical System Image:
  Confirmed
Status in ubuntu-download-manager package in Ubuntu:
  In Progress
Status in unity-scope-click package in Ubuntu:
  Confirmed

Bug description:
  current build number: 221
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en

  Test Case:
  1. Go to the app store, and install an app (I install sudoku from Sylvain 
Becker)
  2. Upon installation, go to the app scope, and verify that the app is 
installed
  3. Long press the app icon to go to the app details, and tap on 'uninstall'
  4. Verify that the app no longer appear in the app scope
  5. Go to the app store again, select the same app and try to re-install it.

  Expected Result
  The button 'Install' is displayed and the app can be installed

  Actual Result
  The button is labelled '0%' and is not clickable. The app cannot be 
resintalled.
  The state is cleared after a reboot and the app can be installed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531118/+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 1360404] Re: -dumpversion output inconsistent with upstream

2016-01-06 Thread Steve Langasek
** Also affects: gccgo-4.9 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: gcc-4.6 (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: gcc-4.7 (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: gcc-4.8 (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: gcc-4.9 (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: gccgo-4.9 (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: gcc-4.6 (Ubuntu Trusty)
   Status: New => Won't Fix

** Changed in: gcc-4.7 (Ubuntu Trusty)
   Status: New => Won't Fix

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

Title:
  -dumpversion output inconsistent with upstream

Status in gcc-4.6 package in Ubuntu:
  Won't Fix
Status in gcc-4.7 package in Ubuntu:
  Won't Fix
Status in gcc-4.8 package in Ubuntu:
  Won't Fix
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  New
Status in gcc-4.6 source package in Trusty:
  Won't Fix
Status in gcc-4.7 source package in Trusty:
  Won't Fix
Status in gcc-4.8 source package in Trusty:
  New
Status in gcc-4.9 source package in Trusty:
  New
Status in gccgo-4.9 source package in Trusty:
  New

Bug description:
  Note: this bug also affects gcc-4.6, gcc-4.7, gcc-4.8, and possibly
  gcc-4.9

  Sometime between gcc-4.5.8 and gcc-4.6.3 debian (accidentally) changed
  the output of the -dumpversion flag; possibly in an attempt to fix
  this bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643891

  As a result, -dumpversion now reports MAJOR.MINOR version info. This
  is in contrast to upstream and other distributions of gcc which report
  MAJOR.MINOR.PATCH version info.  This prevents simple machine parsing
  of gcc/g++/gfortran versions to filter out misbehaving versions. (For
  instance gcc-4.7.0's and gcc-4.7.1's C++11 ABI incompatibilities.)
  This bug has trickled down through gcc-4.6, gcc-4.7, gcc-4.8, and
  possibly gcc-4.9, and affects their binary packages (gcc, g++,
  gfortran, others?).

  This bug can be fixed by applying the attached patch, after "debian
  patching".

  Additional information:

  1) Ubuntu version
  [maru:~] lsb_release -rd
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  2) package version
  [maru:~] apt-cache policy gcc-4.8
  gcc-4.8:
Installed: 4.8.2-19ubuntu1
Candidate: 4.8.2-19ubuntu1
Version table:
   *** 4.8.2-19ubuntu1 0
  500 http://mirrors.kernel.org/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status

  3) What do you expect to happen?
  [avnas:~] lsb_release -rd
  Description:Fedora release 20 (Heisenbug)
  Release:20
  [avnas:~] gcc --version
  gcc (GCC) 4.8.2 20131212 (Red Hat 4.8.2-7)
  Copyright (C) 2013 Free Software Foundation, Inc.
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

  [avnas:~] gcc -dumpversion
  4.8.2
  [avnas:~] g++ -dumpversion
  4.8.2
  [avnas:~] gfortran -dumpversion
  4.8.2

  4) What happened instead?
  [maru:~] lsb_release -rd  
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04
  [maru:~] gcc --version
  gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
  Copyright (C) 2013 Free Software Foundation, Inc.
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

  [maru:~] gcc -dumpversion 
  4.8
  [maru:~] g++ -dumpversion
  4.8
  [maru:~] gfortran -dumpversion
  4.8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.6/+bug/1360404/+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 1531592] [NEW] low grafics

2016-01-06 Thread Josue Jauregui
Public bug reported:

it's to slow at run the laptop

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
Uname: Linux 4.3.0-040300-generic x86_64
.tmp.unity.support.test.1:
 
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Wed Jan  6 13:30:10 2016
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus:
 bcmwl, 6.30.223.248+bdcom, 3.13.0-74-generic, x86_64: installed
 bcmwl, 6.30.223.248+bdcom, 3.19.0-43-generic, x86_64: installed
 fglrx-core, 15.200: added
ExtraDebuggingInterest: I just need to know a workaround
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek [Radeon HD 6620G] 
[1002:9641] (prog-if 00 [VGA controller])
   Subsystem: Samsung Electronics Co Ltd Device [144d:c608]
InstallationDate: Installed on 2015-01-03 (368 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 305V4A/305V5A/3415VA
ProcEnviron:
 LANGUAGE=es_MX:es
 TERM=xterm
 PATH=(custom, no user)
 LANG=es_MX.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.3.0-040300-generic 
root=UUID=29348bdd-813e-4c29-9d8b-eb1ba9cc3c3b ro recovery nomodeset
Renderer: Software
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/01/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 06QN.MI13.20121101.SKK
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: 305V4A/305V4A
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: 06QN
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr06QN.MI13.20121101.SKK:bd11/01/2012:svnSAMSUNGELECTRONICSCO.,LTD.:pn305V4A/305V5A/3415VA:pvr06QN:rvnSAMSUNGELECTRONICSCO.,LTD.:rn305V4A/305V4A:rvr06QN:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
dmi.product.name: 305V4A/305V5A/3415VA
dmi.product.version: 06QN
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.65+git20151026.c745e541-0ubuntu0ricotz~trusty
version.libgl1-mesa-dri: libgl1-mesa-dri 
11.0.4~git20151026+11.0.ec14e6f8-0ubuntu0ricotz~trusty
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 
11.0.4~git20151026+11.0.ec14e6f8-0ubuntu0ricotz~trusty
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
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.4.99+git20140806.fbf575cb-0ubuntu0sarvatt~trusty
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20151202.da9ad388-0ubuntu0sarvatt~trusty
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11+git20141030.3fb97d78-0ubuntu0sarvatt~trusty2
xserver.bootTime: Wed Jan  6 13:23:08 2016
xserver.configfile: default
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2.7

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


** Tags: amd64 apport-bug compiz-0.9 third-party-packages 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/1531592

Title:
  low grafics

Status in xorg package in Ubuntu:
  New

Bug description:
  it's to slow at run the laptop

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  Uname: Linux 4.3.0-040300-generic x86_64
  .tmp.unity.support.test.1:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Jan  6 13:30:10 2016
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.13.0-74-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-43-generic, x86_64: installed
   fglrx-core, 15.200: added
  ExtraDebuggingInterest: I just need to know a workaround
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek [Radeon HD 6620G] 
[1002:9641] (prog-if 00 [VGA controller])
 Subsystem: Samsung Electronics Co Ltd Device [144d:c608]
  InstallationDate: Installed on 2015-01-03 (368 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 305V4A/305V5A/3415VA
  ProcEnviron:
   LANGUAGE=es_MX:es
   TERM=xterm
   P

[Touch-packages] [Bug 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Pat McGowan
This change to TextField.qml looks suspicious:


700 -name: control.hasClearButton && !control.readOnly ? 
"clear-search" : ""
701 +name: control.hasClearButton && !control.readOnly ? 
"edit-clear" : ""

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1531515] Re: Bluetooth cannot be enabled on Ubuntu Touch rc-proposed Nexus 4

2016-01-06 Thread Willem Ligtenberg
Luckily, I still had my terminal with the flash process open.
I flashed it and it rebooted at 14:38:13.
So 14:41:46 is indeed after rebooting, the first time, after the switch to 
rc-proposed.
A later manual shutdown and start of the device resolved the issue. It might 
have been one of those things that happen only in very specific circumstances. 
I didn't update anything after switching to rc-proposed, I did check if there 
were any updates, but there were none. (which makes sense)

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

Title:
  Bluetooth cannot be enabled on Ubuntu Touch rc-proposed Nexus 4

Status in bluez package in Ubuntu:
  Incomplete

Bug description:
  After switching from OTA8.5 to rc-proposed (to test if my BT keyboard would 
work with that) BT cannot be turned on any more.
  I can flip the switch, but after 30s it is switched off again (probably never 
turned on).
  I am unable to discover any BT devices.

  Running bluetoothctl on the devices from the terminal and then entering 
"show" results in:
  "No default controller available"

  I switched to rc-proposed for the Nexus 4 like this:
  ubuntu-device-flash touch --channel=ubuntu-touch/rc-proposed/ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1531515/+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 1531584] Re: [regression] Missing clear-search icon

2016-01-06 Thread Pat McGowan
** Also affects: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: ubuntu-ui-toolkit (Ubuntu RTM)
   Importance: Undecided
   Status: New

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

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-devices-system-image
Milestone: None => ww02-2016

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Zoltan Balogh (bzoltan)

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

Title:
  [regression] Missing clear-search icon

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  New

Bug description:
  In rc-proposed, there is no longer a "clear-search" icon.  Several
  apps reference it (like uReddit and webbrowser-app) and now they show
  no icon where it would be (usually a search box).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531584/+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 1512111] Re: "Ubuntu Light" font has heavier weight than "Ubuntu"

2016-01-06 Thread Paul Sladen
(For want of a better place to put it), useful ttx diffs + changelog
forwarded to me at the end of yesterday which gives more context on what
the above referenced .zip file delivery is.

[Kudos to DM Engineering to doing this in an automated fashion, and
those along the chain for passing it along].

** Attachment added: "ttx diffs + changelog"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-font-family-sources/+bug/1512111/+attachment/4545120/+files/2015-12-10_Ubuntu_0.831%20Engineering%20notes%20and%20Patches.zip

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

Title:
  "Ubuntu Light" font has heavier weight than "Ubuntu"

Status in One Hundred Papercuts:
  In Progress
Status in Ubuntu Font Family:
  In Progress
Status in ubuntu-font-family-sources package in Ubuntu:
  In Progress
Status in ubuntu-font-family-sources source package in Wily:
  New

Bug description:
  After upgrading from Vivid to Wily, pages using the "Ubuntu light" font 
actually renders with a weight heavier than the regular one in web pages.
  This happens with Chrome/Chromium and also the Ubuntu browser.

  After manually reinstalling the 0.80-0ubuntu6 version from Vivid (in
  place of 0.83-0ubuntu1), the issue is fixed.

  See the attached screenshot showing the result seen browing
  https://www.google.com/fonts#UsePlace:use/Collection:Ubuntu

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: ttf-ubuntu-font-family 0.83-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Nov  1 17:55:19 2015
  Dependencies:

  InstallationDate: Installed on 2014-10-14 (382 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140923)
  PackageArchitecture: all
  SourcePackage: ubuntu-font-family-sources
  UpgradeStatus: Upgraded to wily on 2015-10-31 (0 days ago)

  IMPACT: Ubuntu Light font renders incorrectly for all 15.10 users
  which impacts the usability and visual design.

  The new version of font package (0.831) corrects the relationship
  between Light and Medium weight to follow the commonly used naming
  standards:

  Ubuntu Light  Light   Light Italic
  UbuntuRegular Italic  BoldBold Italic
  Ubuntu Medium Medium  Medium Italic   
  Ubuntu Condensed  Regular 
  Ubuntu Mono   Regular Italic  BoldBold Italic

  TEST CASE: in 15.10, go to
  https://www.google.com/fonts#UsePlace:use/Collection:Ubuntu

  If the Light weight renders heavier than Normal weight, the bug is in
  place

  REGRESSION POTENTIAL

  0.831 was tested by manually running in 15.10 and no regression was
  noticed, while the bug was fixed. The potential for regression is
  small.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/1512111/+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 1347147] Re: krb5 database operations enter infinite loop

2016-01-06 Thread Steve Langasek
This is a bug specific to the C language, which is not applicable to the
in-progress gccgo-4.9 SRU.  Marking as resolved.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  krb5 database operations enter infinite loop

Status in gcc:
  Fix Released
Status in Kerberos:
  Unknown
Status in gcc-4.8 package in Ubuntu:
  Fix Released
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in krb5 package in Ubuntu:
  Fix Released
Status in gcc-4.8 source package in Trusty:
  Fix Released
Status in krb5 source package in Trusty:
  Fix Released

Bug description:
  [Impact]

  On krb5 KDC databases with more than a few hundred principals,
  operations can enter an infinite loop in the database library.  This
  affects both read and write operations.  If operators are fortunate,
  they will encounter this bug while testing a migration.  If they are
  not so fortunate, they will encounter this bug in a production KDC
  when the number of principals crosses the threshold where this bug
  manifests, resulting in a service outage and possible database
  corruption.  Probably the only way to restore service in that
  situation is to install a patched KDC or to downgrade to an unaffected
  version.

  Both Trusty and Utopic amd64 have been verified to have this issue.

  One concrete reported example is an invocation of kdb5_util load (as
  part of a slave KDC propagation) spinning:

  http://mailman.mit.edu/pipermail/kerberos/2014-July/020007.html

  Additional failure modes are likely

  A branch is linked including the upstream work around for this bug,
  along with two other patches to bugs already nominated for trusty
  applied to the krb5 in trusty.

  For utopic, the simplest fix is to rebuild krb5 with the compiler
  currently in utopic.  An alternative is to request that the Debian
  maintainers (both monitoring this bug for such a request) upload the
  upstream work around to Debian and sync that.  You could do an ubuntu-
  specific upload but it seems undesirable to introduce a change between
  Ubuntu and Debian when all the right parties are happy to avoid it.

  The upstream patch works around a compiler optimizer bug in the
  gcc-4.8 series, which incorrectly deduces that a strict aliasing
  violation has occurred and miscompiles part of the bundled libdb2
  library that the KDC database back end depends upon.  The
  miscompilation causes a data structure to contain an inappropriate
  cycle, which leads to an infinite loop when the structure is
  traversed.

  [Test Case]

  apt-get install krb5-kdc krb5-admin-server
  kdb5_util -W -r T create -s
  awk 'BEGIN{ for (i = 0; i < 1024; i++) { printf("ank -randkey a%06d\n", i) } 
}' /dev/null | kadmin.local -r T

  (Enter any password for the master key when requested.)

  On platforms with this issue, kadmin.local spins consuming 100% CPU
  after a few hundred principals have been created.  (This is "a000762"
  on two examples.)

  To clean up,

  rm /etc/krb5kdc/principal*

  or

  krb5kdc -r T destroy

  but the latter can possibly enter the same infinite loop.

  [Regression Potential]

  Negligible.

  It is theoretically possible that our upstream workaround, which
  involves using TAILQ macros instead of CIRCLEQ macros in the bundled
  libdb2 that backs the KDC database, will have some as-yet undiscovered
  bugs or compiler interactions with consequences worse than this
  current issue.  I think this is rather unlikely.

  The patched libdb2 passes both the extensive libdb2 test suite and the
  rest of the krb5 test suite.  Prior to patching, compiling krb5 with
  an affected gcc would cause the krb5 test suite to stall when it
  reached the libdb2 test suite.  (The test suite stall is how we became
  aware of the gcc optimizer bug.)

  The BSD TAILQ macros are generally considered to be safer than the
  CIRCLEQ macros, and the various open-source BSD derivatives have made
  the corresponding change to their libdb sources years ago, with no
  reported ill effects that I can see.

  Original report from Ben Kaduk:

  ==

  In some conditions, propagating a kerberos database to a slave KDC server can 
stall.
  This is due to a misoptimization by gcc 4.8 of the CIRCLEQ famliy of macros, 
apparently due to overzealous strict aliasing deductions.

  One case of this stall is reported at
  http://mailman.mit.edu/pipermail/kerberos/2014-July/020007.html (and
  the rest of the thread), and there is an entry in the upstream
  bugtracker at http://krbdev.mit.edu/rt/Ticket/Display.html?id=7860 .

  gcc 4.9 (as used in Debian unstable at present) is not believed to
  induce this problem.  Upstream has patched their code to use the TAILQ
  family of macros instead, as a workaround, but that workaround has not
  yet appeared in an upstream release:
  h

[Touch-packages] [Bug 1351227] Re: libwebp ftbfs on arm64

2016-01-06 Thread Steve Langasek
This is a bug specific to the C language, which is not applicable to the
in-progress gccgo-4.9 SRU. Marking as resolved.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  libwebp ftbfs on arm64

Status in gcc:
  Invalid
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in libwebp package in Ubuntu:
  Confirmed

Bug description:
  ICE

To manage notifications about this bug go to:
https://bugs.launchpad.net/gcc/+bug/1351227/+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 1353729] Re: [4.9 Regression] ICE in final_scan_insn, at final.c:2952 (aarch64-linux-gnu)

2016-01-06 Thread Steve Langasek
This bug was not identified with gccgo, only with g++, which is not
applicable to the in-progress gccgo-4.9 SRU. Marking as resolved.

** Tags removed: verification-needed

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

Title:
  [4.9 Regression] ICE in final_scan_insn, at final.c:2952 (aarch64
  -linux-gnu)

Status in Linaro:
  Fix Released
Status in gcc-4.8 package in Ubuntu:
  Confirmed
Status in gcc-4.9 package in Ubuntu:
  Fix Released

Bug description:
  https://bugs.linaro.org/show_bug.cgi?id=331

  seen with 4.9 linaro 2014.07, works with -O1

  $ g++ -c -O2 -fPIE pfs_host.ii
  /home/doko/tmp/mysql-5.6-5.6.19/storage/perfschema/pfs_host.cc: In function 
'PFS_host* find_or_create_host(PFS_thread*, const char*, uint)':
  /home/doko/tmp/mysql-5.6-5.6.19/storage/perfschema/pfs_host.cc:289:1: error: 
could not split insn
   }
   ^
  (insn:TI 304 300 305 (parallel [
  (set (reg:SI 2 x2 [orig:153 D.16667 ] [153])
  (mem/v:SI (reg/f:DI 1 x1 [orig:113 D.16671 ] [113]) [-1  S4 
A32]))
  (set (mem/v:SI (reg/f:DI 1 x1 [orig:113 D.16671 ] [113]) [-1  S4 
A32])
  (unspec_volatile:SI [
  (ior:SI (mem/v:SI (reg/f:DI 1 x1 [orig:113 D.16671 ] 
[113]) [-1  S4 A32])
  (const_int 0 [0]))
  (const_int 5 [0x5])
  ] UNSPECV_ATOMIC_OP))
  (clobber (reg:CC 66 cc))
  (clobber (reg:SI 3 x3 [330]))
  (clobber (reg:SI 4 x4 [331]))
  ]) /home/doko/tmp/mysql-5.6-5.6.19/include/my_atomic.h:217 2338 
{atomic_fetch_orsi}
   (expr_list:REG_UNUSED (reg:CC 66 cc)
  (expr_list:REG_UNUSED (reg:SI 4 x4 [331])
  (expr_list:REG_UNUSED (reg:SI 3 x3 [330])
  (nil)
  /home/doko/tmp/mysql-5.6-5.6.19/storage/perfschema/pfs_host.cc:289:1: 
internal compiler error: in final_scan_insn, at final.c:2952
  Please submit a full bug report,
  with preprocessed source if appropriate.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linaro/+bug/1353729/+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 1311128] Re: Please incorporate gcc 4.8 revision 209515

2016-01-06 Thread Steve Langasek
This change was already included in the previous sru of gccgo-4.9,
4.9.1-0ubuntu1; no re-verification is required.


** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  Please incorporate gcc 4.8 revision 209515

Status in gcc-4.8 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.8 source package in Trusty:
  Fix Released
Status in gccgo-4.9 source package in Trusty:
  Fix Released
Status in gcc-4.8 source package in Utopic:
  Fix Released
Status in gccgo-4.9 source package in Utopic:
  Invalid

Bug description:
  From another, less public, bug:

  Text by Bill Schmidt:

  A GCC bug was found in the little endian vector API that affects use
  of the vec_mergeh and vec_mergel interfaces when VSX is enabled (this
  is the default for Power8). These interfaces produce the wrong results
  for 4x32 vector types (vector int of either signedness, vector float).
  The upstream patch fixes this issue.

  
  (bug internally reported by Thierry Fauck; fixed upstream by Bill Schmidt.)

  SVN revision in FSF 4.8 branch: 209515
  http://gcc.gnu.org/viewcvs/gcc?view=revision&revision=209515

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.8/+bug/1311128/+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 1320292] Re: ABI incompatibility between POWER and Z HTM builtins and intrinsics

2016-01-06 Thread Steve Langasek
This change was already included in the previous sru of gccgo-4.9,
4.9.1-0ubuntu1; no re-verification is required.


** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  ABI incompatibility between POWER and Z HTM builtins and intrinsics

Status in gcc-4.8 package in Ubuntu:
  Fix Released
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.8 source package in Trusty:
  Fix Released
Status in gcc-4.9 source package in Trusty:
  Invalid
Status in gccgo-4.9 source package in Trusty:
  Fix Released
Status in gcc-4.8 source package in Utopic:
  Fix Released
Status in gcc-4.9 source package in Utopic:
  Fix Released
Status in gccgo-4.9 source package in Utopic:
  Invalid

Bug description:
  The IBM XL team defined a set of HTM intrinsic functions that were supposed
  to be API compatible across the XL and GCC compilers on both Power and S390.
  PR61193 describes an issue where the functions that begin a transaction
  are incompatible.  The Power intrinsics return non-zero on success, while
  the S390 intrinsics return zero on success.

  After discussing this with the XL compiler team, the S390 GCC team and
  the Power GCC team, we have decided to leave the incompatibility between
  Power and S390.  However, the XL and GCC compilers will be compatible
  with each other when targeting the same processor target.  To mitigate
  the incompatibility somewhat, we have decided to add a macro to the
  powerpc*-linux's htmintrin.h file that defines what the "successful"
  return status value of the __TM_simple_begin() and __TM_begin() intrinsic
  function is.  This macro is already defined in the S390's htmintrin.h
  header file and is used by the S390 to determine whether the transaction
  was successfully started or not.  By adding the same macro on Power, we
  allow users to write common code between Power and S390, even though our
  successful return status values are different.

  For example, the following code can be used on Power and S390, even
  though the actual value returned by __TM_simple_begin() is different.

if ((tx_state = __TM_simple_begin ()) == _HTM_TBEGIN_STARTED)
  {
/* Transaction State Initiated.  */
...
  }
else
  {
/* Transaction State Failed.  */
...
  }

  David approved this offline, so I'm committing this to GCC mainline as
  revision 210486, as well as the 4.9 (210487) and 4.8 (210488)
  branches.

  Peter

PR target/61193
* config/rs6000/htmxlintrin.h (_HTM_TBEGIN_STARTED): New define.
(__TM_simple_begin): Use it.
(__TM_begin): Likewise.

  Index: gcc/config/rs6000/htmxlintrin.h
  ===
  --- gcc/config/rs6000/htmxlintrin.h   (revision 210485)
  +++ gcc/config/rs6000/htmxlintrin.h   (working copy)
  @@ -46,12 +46,17 @@ extern "C" {

   typedef char TM_buff_type[16];

  +/* Compatibility macro with s390.  This macro can be used to determine
  +   whether a transaction was successfully started from the __TM_begin()
  +   and __TM_simple_begin() intrinsic functions below.  */
  +#define _HTM_TBEGIN_STARTED 1
  +
   extern __inline long
   __attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
   __TM_simple_begin (void)
   {
 if (__builtin_expect (__builtin_tbegin (0), 1))
  -return 1;
  +return _HTM_TBEGIN_STARTED;
 return 0;
   }

  @@ -61,7 +66,7 @@ __TM_begin (void* const TM_buff)
   {
 *_TEXASRL_PTR (TM_buff) = 0;
 if (__builtin_expect (__builtin_tbegin (0), 1))
  -return 1;
  +return _HTM_TBEGIN_STARTED;
   #ifdef __powerpc64__
 *_TEXASR_PTR (TM_buff) = __builtin_get_texasr ();
   #else

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-4.8/+bug/1320292/+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 1313102] Re: internal compiler error with std::array designated initialization

2016-01-06 Thread Steve Langasek
This is a C++-specific bug which is not applicable to the gccgo-4.9 SRU
in progress.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  internal compiler error with std::array designated initialization

Status in gcc:
  New
Status in gcc-4.8 package in Ubuntu:
  Fix Released
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.8 source package in Trusty:
  Fix Released
Status in gcc-4.9 source package in Trusty:
  Invalid
Status in gccgo-4.9 source package in Trusty:
  Fix Released

Bug description:
  The following code fails to compile with g++-4.8:

#include 
const int i = 0;
std::array bar = {
  [i] = 0
};

  I have since learned that designated initialization is not supported
  in (GNU) C++.  In that case I would have expected a syntax error.

  This is the compilation command and its output:

$ g++-4.8 -Wall -std=gnu++11 main.cpp
main.cpp:5:1: internal compiler error: in lookup_field_1, at 
cp/search.c:384 
 }; 
 
 ^
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
Preprocessed source stored into /tmp/ccUsV9BC.out file, please attach this 
to your bugreport.

  The preprocessed source file is attached.  g++-4.8 --version reports
  g++-4.8 (Ubuntu 4.8.1-2ubuntu1~12.04) 4.8.1.  I installed this package
  using the instructions given in this answer:
  http://askubuntu.com/a/271561.  Ubuntu release and package version
  are:

  $ lsb_release -rd
  Description:Ubuntu 12.04.4 LTS
  Release:12.04
  $ apt-cache policy g++-4.8
  g++-4.8:
Installed: 4.8.1-2ubuntu1~12.04
Candidate: 4.8.1-2ubuntu1~12.04
Version table:
   *** 4.8.1-2ubuntu1~12.04 0
  500 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu/ 
precise/main i386 Packages
  100 /var/lib/dpkg/status

To manage notifications about this bug go to:
https://bugs.launchpad.net/gcc/+bug/1313102/+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 1304754] Re: gccgo has issues when page size is not 4kB

2016-01-06 Thread Steve Langasek
This change was already included in the previous sru of gccgo-4.9,
4.9.1-0ubuntu1; no re-verification is required.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  gccgo has issues when page size is not 4kB

Status in gcc:
  Fix Released
Status in gcc-4.9 package in Ubuntu:
  Fix Released
Status in gccgo-4.9 package in Ubuntu:
  Invalid
Status in gcc-4.9 source package in Trusty:
  Invalid
Status in gccgo-4.9 source package in Trusty:
  Fix Released
Status in gcc-4.9 source package in Utopic:
  Fix Released
Status in gccgo-4.9 source package in Utopic:
  Invalid

Bug description:
  On kernels 3.13-18 and 3.13-23 (there may be others) the kernel is
  killing gccgo compiled binaries

  [18519.444748] jujud[19277]: bad frame in setup_rt_frame:
   nip  lr 
  [18519.673632] init: juju-agent-ubuntu-local main process (19220)
  killed by SEGV signal
  [18519.673651] init: juju-agent-ubuntu-local main process ended, respawning

  In powerpc/kernel/signal_64.c:

  sys_rt_sigreturn is jumping to the badframe: label and executing an
  unconditional force_sigsegv which is delivered to the userland
  process. Like C++, gccgo tries to decode SIGSEGV as a nil pointer
  access and blame some random function that happened to be the top
  stack frame.

  Reverting to the 3.13-08 kernel appears to resolve the issue which
  (weakly) points the finger at the recent switch to 64k pages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gcc/+bug/1304754/+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 1531583] [NEW] Webbrowser-app losing saved state upon restart

2016-01-06 Thread Michael Terry
Public bug reported:

I've noticed that lately on my rc-proposed dogfood mako that sometimes
webbrowser-app will be OOM (or crash?) and restarted but lose all its
previous tabs.  Which is super annoying.

I told myself I'd leave it alone next time it happened and grab the
logs.  Here they are.  Nothing super jumped out at me.

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

** Attachment added: "webbrowser-app.log"
   
https://bugs.launchpad.net/bugs/1531583/+attachment/4545116/+files/webbrowser-app.log

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

Title:
  Webbrowser-app losing saved state upon restart

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  I've noticed that lately on my rc-proposed dogfood mako that sometimes
  webbrowser-app will be OOM (or crash?) and restarted but lose all its
  previous tabs.  Which is super annoying.

  I told myself I'd leave it alone next time it happened and grab the
  logs.  Here they are.  Nothing super jumped out at me.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1531583/+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 1531118] Re: Cannot reinstall a previously uninstalled application

2016-01-06 Thread Michael Sheldon
** Changed in: ubuntu-download-manager (Ubuntu)
   Status: New => In Progress

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

Title:
  Cannot reinstall a previously uninstalled application

Status in Canonical System Image:
  Confirmed
Status in ubuntu-download-manager package in Ubuntu:
  In Progress
Status in unity-scope-click package in Ubuntu:
  Confirmed

Bug description:
  current build number: 221
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en

  Test Case:
  1. Go to the app store, and install an app (I install sudoku from Sylvain 
Becker)
  2. Upon installation, go to the app scope, and verify that the app is 
installed
  3. Long press the app icon to go to the app details, and tap on 'uninstall'
  4. Verify that the app no longer appear in the app scope
  5. Go to the app store again, select the same app and try to re-install it.

  Expected Result
  The button 'Install' is displayed and the app can be installed

  Actual Result
  The button is labelled '0%' and is not clickable. The app cannot be 
resintalled.
  The state is cleared after a reboot and the app can be installed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1531118/+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 1477838] Re: [MX4] Crackling sound after playing audio and suspended

2016-01-06 Thread Pat McGowan
** Description changed:

  The Meizu MX4 is doing a weird "tic tic tic..." after receive a
  notification (from telegram, mail...) and it's suspended.
  
  --
  
  When I press the screen lock button on the MX4 shortly after playing
  music or ending a phone call I hear a radio/fuzzy distorted noise coming
  from the phone. To make it stop I need to unlock and lock the screen
  again but this is not ideal.
  
  -
  
  When the screen is locked and the playing song is finished and waiting
  for a stopped signal, MX4 will do a weird lower sound.
  
- How to reproduce
+ -
+ 
+ How to reproduce (Note this does not always work, the phone needs to be
+ in some specific state yet to be determined)
  
  Ensure MX4 is not plugged into USB
  Call the MX4 and hear the ringtone
  Dismiss the call
  Push the power button to turn off the screen
  Tick Tick Tick
  Push the power button to turn on the screen
  hissing
  Push the power button to turn off the screen
  Tick Tick Tick
  etc
  
  It will not clear until you play another sound
  Does not happen in silent mode of course

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

Title:
  [MX4] Crackling sound after playing audio and suspended

Status in Canonical System Image:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed

Bug description:
  The Meizu MX4 is doing a weird "tic tic tic..." after receive a
  notification (from telegram, mail...) and it's suspended.

  --

  When I press the screen lock button on the MX4 shortly after playing
  music or ending a phone call I hear a radio/fuzzy distorted noise
  coming from the phone. To make it stop I need to unlock and lock the
  screen again but this is not ideal.

  -

  When the screen is locked and the playing song is finished and waiting
  for a stopped signal, MX4 will do a weird lower sound.

  -

  How to reproduce (Note this does not always work, the phone needs to
  be in some specific state yet to be determined)

  Ensure MX4 is not plugged into USB
  Call the MX4 and hear the ringtone
  Dismiss the call
  Push the power button to turn off the screen
  Tick Tick Tick
  Push the power button to turn on the screen
  hissing
  Push the power button to turn off the screen
  Tick Tick Tick
  etc

  It will not clear until you play another sound
  Does not happen in silent mode of course

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1477838/+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 1505241] Re: Phone does not suspend

2016-01-06 Thread Pat McGowan
Device part 20160106-6a15a0b

** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

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

Title:
  Phone does not suspend

Status in Canonical System Image:
  Fix Committed
Status in bluez package in Ubuntu:
  Won't Fix

Bug description:
  I am seeing both the MX4 on proposed and the E4.5 on stable exhibit similar 
behavior
  According to the logs they are not able to suspend due to active wakeup 
sources.
  (I am running a BT test kernel on the MX4 3.10.35+)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1505241/+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   >