[Touch-packages] [Bug 1598920] Re: QML MouseArea CursorShape: not respected

2016-07-05 Thread Michael Zanetti
Adding unity8 & qtubuntu as I think this is more in there, not uitk

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

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

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

Title:
  QML MouseArea CursorShape: not respected

Status in Canonical System Image:
  New
Status in qtubuntu package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  The MouseArea CursorShape doesnt have any effect.

  Docs Here: http://doc.qt.io/qt-5/qml-qtquick-mousearea.html

  Expected Behavour: 
  Mouse image shows selected Qt cursor

  Experienced Behavour: 
  The regular arrow is displayed. 

  
  Example Code:

  import QtQuick 2.4
  import Ubuntu.Components 1.3

  
  MainView {
  objectName: "mainView"
  applicationName: "mouseTest"

  width: units.gu(100)
  height: units.gu(75)

  Page {
  header: PageHeader {
  id: pageHeader
  title: i18n.tr("Cursor Test")
  }

  Rectangle{
  anchors.fill: parent
  color: UbuntuColors.coolGrey


  MouseArea{
  anchors.fill: parent
  cursorShape: Qt.CrossCursor
  hoverEnabled: true
  onClicked: console.log("In MouseArea")

  }
  }
  }
  }

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598920/+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 1597672] Re: ubuntu-ui-toolkit-launcher doesn't support Window as root item

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-sdk-team/ubuntu-ui-toolkit/windowLauncher

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

Title:
  ubuntu-ui-toolkit-launcher doesn't support Window as root item

Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  Using a QtQuick.Window as a root item with ubuntu-ui-toolkit-launcher
  results in an error loading the QML:

  import QtQuick 2.4
  import QtQuick.Window 2.2
  import Ubuntu.Components 1.3
  Window {
  title: "Hello World"
  minimumWidth: units.gu(30)
  minimumHeight: units.gu(50)
  maximumWidth: units.gu(90)
  maximumHeight: units.gu(120)
  MainView {
  applicationName: "Hello World"
  }
  }

  QQuickView only supports loading of root objects that derive from QQuickItem. 
  If your example is using QML 2, (such as qmlscene) and the .qml file you 
  loaded has 'import QtQuick 1.0' or Qt 4.7', this error will occur. 
  To load files with 'import QtQuick 1.0' or Qt 4.7', use the 
  QDeclarativeView class in the Qt Quick 1 module.

  That same piece of code works with qmlscene.

  See also bug 1587431.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1597672/+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 1206164] Re: /etc/network/if-up.d/ntpdate does not detach correctly

2016-07-05 Thread ChristianEhrhardt
** Changed in: ntp (Ubuntu)
 Assignee: (unassigned) => ChristianEhrhardt (paelzer)

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

Title:
  /etc/network/if-up.d/ntpdate does not detach correctly

Status in NTP:
  New
Status in ntp package in Ubuntu:
  Triaged

Bug description:
  It seems that the intent of /etc/network/if-up.d/ntpdate is to
  background itself, as it creates a subshell with &.

  As reported in bug 1202758, this doesn't seem to work correctly.  That
  doesn't close the file descriptors.  As a result, if something is
  waiting on the output of 'ifup', it will sit and wait until ntpdate is
  finished.

  Example:
  $ time sudo sh -c 'o=$(sh -c "ifdown eth0 ; ifup eth0" 2>&1) ; echo $o'

  If we change the way it detaches itself to close stdout, stdderr, and
  stdin, then we're fine.

  I'm reporting this, but I'm not sure how much of a real problem it is.  As if 
th
  e command sends stdin and stdout to /dev/null, then debugging its output 
would b
  e more difficult.

  Example diff:
  $ diff -u /etc/network/if-up.d/ntpdate.dist /etc/network/if-up.d/ntpdate
  --- /etc/network/if-up.d/ntpdate.dist  2013-07-29 15:47:54.242781947 +
  +++ /etc/network/if-up.d/ntpdate 2013-07-29 15:48:06.946781947 +
  @@ -56,4 +56,4 @@
 lockfile-remove $LOCKFILE
   fi

  -) &
  +) /dev/null 2>&1 &

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: ntpdate 1:4.2.6.p5+dfsg-2ubuntu2
  ProcVersionSignature: User Name 3.10.0-5.15-generic 3.10.2
  Uname: Linux 3.10.0-5-generic x86_64
  ApportVersion: 2.11-0ubuntu1
  Architecture: amd64
  Date: Mon Jul 29 15:32:30 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ntp
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.network.if.up.d.ntpdate: 2013-07-29T15:32:03.567775

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/1206164/+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 1582767] Re: apparmor permissions missing for winbind

2016-07-05 Thread ChristianEhrhardt
Hi,
I was preparing to integrate this change together with a lot of others.
While testing I couldn't get it to trigger the issue you described.

Lacking a "real" ADS to link to I went for a being a PDC on my own - but
at least in that setup the issue didn't show up.

Fortunately the change is small and not very intrusive, so I think we can still 
keep it.
But as a heads up once this will be available in yakkety I'll have to ask you 
to verify this.
I'll ping this bug then to let you know.

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

Title:
  apparmor permissions missing for winbind

Status in ntp package in Ubuntu:
  Triaged

Bug description:
  When using Winbind, ntpd needs to access the Winbind pipe:

  May 17 16:23:15 bo kernel: [   27.598551] type=1400
  audit(1463494995.048:18): apparmor="DENIED" operation="connect"
  profile="/usr/sbin/ntpd" name="/run/samba/winbindd/pipe" pid=1517
  comm="ntpd" requested_mask="rw" denied_mask="rw" fsuid=0 ouid=0

  Would there be any reason not to allow this ? I added the following
  line to /etc/apparmor/init/network-interface-security/usr.sbin.ntpd:

  /run/samba/winbindd/pipe rw,

  Thanks!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/1582767/+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 427775] Re: ntpdate.dhcp always ignored

2016-07-05 Thread ChristianEhrhardt
** Changed in: ntp (Ubuntu)
 Assignee: (unassigned) => ChristianEhrhardt (paelzer)

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

Title:
  ntpdate.dhcp always ignored

Status in NTP:
  New
Status in ntp package in Ubuntu:
  Triaged
Status in ntp source package in Trusty:
  Triaged

Bug description:
  Ubuntu 9.04, affects the ntpdate binary package

  Problem: Using dhcp a file ntpdate.dhcp is created but never used.

  By default NTPDATE_USE_NTP_CONF in /etc/default/ntpdate is set to
  "yes". This has the following consequences:

  /usr/sbin/ntpdate-debian parses /etc/default/ntpdate and checks for
  /etc/ntp.conf.dhcp /etc/ntp.conf /etc/openntpd/ntpd.conf if
  NTPDATE_USE_NTP_CONF is set to yes.  By default ntpd is not installed
  therefore there is no  /etc/ntp.conf.dhcp /etc/ntp.conf or
  /etc/openntpd/ntpd.conf. ntpdate-debian then defaults to the
  NTPSERVERS set in /etc/default/ntpdate, namely "ntp.ubuntu.com". Only
  if NTPDATE_USE_NTP_CONF is set to "no" there will be a check for
  /etc/default/ntpdate.dhcp and consequently the server supplied by dhcp
  be used.

  I propose to set NTPDATE_USE_NTP_CONF to "no" by default. If ntpd is
  installed, this will override the use of ntpdate and
  /etc/ntpd.conf.dhcp and /etc/default/ntpdate.dhcp will both be created
  by DHCP anyway, therefore both packages will use the DHCP supplied
  servers in any case.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/427775/+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 1598973] Re: No way to set a background image on a scope

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

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

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

Title:
  No way to set a background image on a scope

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

Bug description:
  A scope header may have a custom background image (by setting
  PageHeader.Background in the scope.ini file), but the main body of a
  scope cannot. One can set a custom background _colour_ on the scope
  body, but not an image.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1598973/+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 1599069] [NEW] [pam] Module pam_env does not unset environment variables

2016-07-05 Thread Cade Forester
Public bug reported:

Architecture: amd64
Date: 2016-07-05T07:10:34,326215642+ (printed by command "date --utc 
--iso-8601=ns")
DistroRelease: Ubuntu 14.04
Package: libpam-modules 1.1.8-1ubuntu2.2
PackageArchitecture: amd64
SourcePackage: pam
Uname: Linux 3.16.0-53-generic x86_64

Steps to reproduce.

1. Edit some files.

   Shell command:
  cat /etc/security/pam_env.conf

   Output of last shell command:
  TEST__SET_ME DEFAULT="value set successfully"
  TEST__CLEAR_ME DEFAULT="" OVERRIDE=""
  TEST__UNSET_ME DEFAULT=   OVERRIDE=

   Shell command:
  cat /etc/pam.d/su

   Output of last shell command:
  auth sufficient pam_rootok.so
  session required pam_env.so readenv=1 debug
  # /etc/pam.d/common-auth
  auth [success=1 default=ignore] pam_unix.so nullok_secure
  auth requisite pam_deny.so
  auth required pam_permit.so
  auth optional pam_ecryptfs.so unwrap
  auth optional pam_cap.so
  # /etc/pam.d/common-account
  account [success=1 new_authtok_reqd=done default=ignore] pam_unix.so
  account requisite pam_deny.so
  account required pam_permit.so
  # /etc/pam.d/common-session
  session [default=1] pam_permit.so
  session requisite pam_deny.so
  session required pam_permit.so
  session optional pam_umask.so
  session required pam_unix.so
  session optional pam_ecryptfs.so unwrap
  session optional pam_ck_connector.so nox11

2. Run shell commands:
  env --ignore-environment sh
  export TEST__CLEAR_ME="variable not cleared"
  export TEST__UNSET_ME="variable still set"
  su --command env | grep TEST__

   Type root password.

   Output of last shell command:
  TEST__UNSET_ME=variable still set
  TEST__SET_ME=value set successfully
  TEST__CLEAR_ME=

   Related syslog output:
  su[11338] Successful su for root by local_user
  su[11338] + /dev/pts/0 local_user:root
  su[11338] pam_env(su:session): pam_putenv("TEST__ SET_ME=value set 
successfully")
  su[11338] pam_env(su:session): pam_putenv("TEST__ CLEAR_ME=")
  su[11338] pam_env(su:session): remove variable "TEST__UNSET_ME"
  su[11338] pam_env(su:session): pam_putenv: delete non-existent entry; 
TEST__UNSET_ME
  su[11338] pam_env(su:session): 
pam_putenv("PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")
  su[11338] pam_unix(su:session): session opened for user root by 
local_user(uid=1000)
  su[11338] pam_unix(su:session): session closed for user root

Actual result:
environment variable
TEST__UNSET_ME
not unset.

Expected result:
unset environment variable
TEST__UNSET_ME.

Bugs:
- pam module "pam_env.so"
  does not unset environment variables;
- man page pam_env(8) describe,
  what module can
  unset environment variables,
  but does not describe,
  how to do that
  (answer found in
  "pam-1.1.8/modules/pam_env/pam_env.c",
  line 472).

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

** Package changed: ubuntu => pam (Ubuntu)

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

Title:
  [pam] Module pam_env does not unset environment variables

Status in pam package in Ubuntu:
  New

Bug description:
  Architecture: amd64
  Date: 2016-07-05T07:10:34,326215642+ (printed by command "date --utc 
--iso-8601=ns")
  DistroRelease: Ubuntu 14.04
  Package: libpam-modules 1.1.8-1ubuntu2.2
  PackageArchitecture: amd64
  SourcePackage: pam
  Uname: Linux 3.16.0-53-generic x86_64

  Steps to reproduce.

  1. Edit some files.

 Shell command:
cat /etc/security/pam_env.conf

 Output of last shell command:
TEST__SET_ME DEFAULT="value set successfully"
TEST__CLEAR_ME DEFAULT="" OVERRIDE=""
TEST__UNSET_ME DEFAULT=   OVERRIDE=

 Shell command:
cat /etc/pam.d/su

 Output of last shell command:
auth sufficient pam_rootok.so
session required pam_env.so readenv=1 debug
# /etc/pam.d/common-auth
auth [success=1 default=ignore] pam_unix.so nullok_secure
auth requisite pam_deny.so
auth required pam_permit.so
auth optional pam_ecryptfs.so unwrap
auth optional pam_cap.so
# /etc/pam.d/common-account
account [success=1 new_authtok_reqd=done default=ignore] pam_unix.so
account requisite pam_deny.so
account required pam_permit.so
# /etc/pam.d/common-session
session [default=1] pam_permit.so
session requisite pam_deny.so
session required pam_permit.so
session optional pam_umask.so
session required pam_unix.so
session optional pam_ecryptfs.so unwrap
session optional pam_ck_connector.so nox11

  2. Run shell commands:
env --ignore-environment sh
export TEST__CLEAR_ME="variable not cleared"
export TEST__UNSET_ME="variable 

[Touch-packages] [Bug 1598933] Re: ShapeImages in scope ini file is ignored

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

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

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

Title:
  ShapeImages in scope ini file is ignored

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

Bug description:
  I've set ShapeImages=false in my scope's ini file, and yet the images
  are still shaped. In particular, images with a transparent background
  get a shaped frame drawn around them, which looks terribly ugly.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1598933/+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 1598920] Re: QML MouseArea CursorShape: not respected

2016-07-05 Thread Jean-Baptiste Lallement
** Also affects: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  QML MouseArea CursorShape: not respected

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

Bug description:
  The MouseArea CursorShape doesnt have any effect.

  Docs Here: http://doc.qt.io/qt-5/qml-qtquick-mousearea.html

  Expected Behavour: 
  Mouse image shows selected Qt cursor

  Experienced Behavour: 
  The regular arrow is displayed. 

  
  Example Code:

  import QtQuick 2.4
  import Ubuntu.Components 1.3

  
  MainView {
  objectName: "mainView"
  applicationName: "mouseTest"

  width: units.gu(100)
  height: units.gu(75)

  Page {
  header: PageHeader {
  id: pageHeader
  title: i18n.tr("Cursor Test")
  }

  Rectangle{
  anchors.fill: parent
  color: UbuntuColors.coolGrey


  MouseArea{
  anchors.fill: parent
  cursorShape: Qt.CrossCursor
  hoverEnabled: true
  onClicked: console.log("In MouseArea")

  }
  }
  }
  }

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598920/+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 1573720] Re: Unencrypted private keys are insecure error reported even when key is encrypted

2016-07-05 Thread Tim Wahrendorff
This problems existed in 14.04 but was not a problem in 15.10, whith
16.04 my Wifi would not connect. Company Laptops. Thinkpad T450s -> does
not work flawlessly with 14.04 (no support for dual monitor via docking
station), 15.10 is depricated, in 16.04 WPS Enterprise Wifi does not
work, seemingly because of this bug.

This is a nogo for distribution that wants to be used in companys. What
shall I do when I need Wifi in a meeting? Of course I borrow a Windows
PC from an workmate. Me and ubuntu have the laughes on our side. :((( :/
:'(

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

Title:
  Unencrypted private keys are insecure error reported even when key is
  encrypted

Status in NetworkManager:
  Incomplete
Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  When I enter an EAP-TLS wifi config, I get the error:

  "Unencrypted private keys are insecure
  The selected private key does not appear to be protected by a password.  This 
could allow your security credentials to be compromised.  Please select a 
password-protected private key.

  (You can password-protect your private key with openssl)"

  I have verified that my key is, in fact, encrypted, and I have tried
  using both des3 and aes256. I have also verified the password used to
  encrypt the key.

  For a while, it wouldn't even let me save the config. I managed to
  save it eventually, but now when I try to connect to the saved
  connection, I get the same error.

  I am on Ubuntu mate 16.04

  network-manager 1.1.93

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: network-manager 1.1.93-0ubuntu4
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Fri Apr 22 13:25:16 2016
  InstallationDate: Installed on 2015-08-19 (246 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Release amd64 
(20150422.1)
  IpRoute:
   default via 192.168.151.254 dev eth1  proto static  metric 100 
   169.254.0.0/16 dev eth1  scope link  metric 1000 
   192.168.151.0/24 dev eth1  proto kernel  scope link  src 192.168.151.95  
metric 100
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to xenial on 2016-04-22 (0 days ago)
  nmcli-dev:
   DEVICE  TYPE  STATE DBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   eth1ethernet  connected /org/freedesktop/NetworkManager/Devices/2  
Wired connection 1  ed50d4f9-c810-4be0-b06c-8acd58015c50  
/org/freedesktop/NetworkManager/ActiveConnection/0 
   wlan0   wifi  disconnected  /org/freedesktop/NetworkManager/Devices/1  
--  ----
 
   eth0ethernet  unavailable   /org/freedesktop/NetworkManager/Devices/3  
--  ----
 
   lo  loopback  unmanaged /org/freedesktop/NetworkManager/Devices/0  
--  ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1573720/+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 1501346] Re: Unity8 never shows app window if preceded by a splash screen

2016-07-05 Thread Jean-Baptiste Lallement
** Changed in: canonical-pocket-desktop
   Status: Incomplete => Invalid

** Changed in: canonical-pocket-desktop
   Status: Invalid => 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/1501346

Title:
  Unity8 never shows app window if preceded by a splash screen

Status in Canonical Pocket Desktop:
  Fix Released
Status in QtMir:
  Expired
Status in qtmir package in Ubuntu:
  Expired
Status in unity8 package in Ubuntu:
  Expired
Status in xorg-server package in Ubuntu:
  Invalid

Bug description:
  I'm trying to run Gimp in a Vivid + overlay PPA Unity 8 desktop
  session using Xmir from the overlay PPA with the '-rootless -flatten'
  Xmir options. Gimp fails to start in this situation.

  I've attached the application and unity8 log files.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1501346/+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 1586673] Re: Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS

2016-07-05 Thread Matthias Klose
now properly stripped.

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

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

Title:
  Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS

Status in binutils package in Ubuntu:
  Fix Released
Status in gcc-5 package in Ubuntu:
  Fix Committed
Status in binutils source package in Xenial:
  Fix Committed
Status in gcc-5 source package in Xenial:
  Fix Committed

Bug description:
  Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS.  16.04 LTS ships
  binutils and gcc-5 versions taken from the release branches, which saw
  more regression fixes and support for new hardware until the 5.4.0 and
  2.26.1 point releases. The idea is to include these final point
  releases into 16.04.1 LTS, with test rebuilds done for all packages,
  and regression checks for seeded packages.

  Acceptance criteria should be no regressions for the seeded packages,
  plus a best effort for unseeded packages.  During the analysis of the
  build failures, one gcc regression (libstdc++ header reorg) was found
  and reverted, and validated, that these build failures are fixed (plus
  affected seeded packages were uploaded to xenial-proposed anyway).

  reference test rebuild:
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-baseline-xenial.html

  test rebuild (xenial-release):
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-xenial.html

  test rebuild (xenial-updates):
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-updates-xenial.html

  The test rebuild was done using packages from the ubuntu-
  toolchain-r/ppa.

  Attached is an analysis of the build failures, and whether they are
  regressions, or already are present in the xenial release.

  main component
  ==

  bzr
LP: #1592731, fixed in -proposed
  ecj
LP: #1592801, fixed in -updates
  freerdp
not a regression
  gcc-5-cross
needs update after gcc-5 acceptance
  gnutls28
LP: #1592693, fixed in -updates
  kmod
unrelated, tracked in LP: #1592722
  libnih
not a regression
  llvm-toolchain-3.6
not a regression
  migrate
unrelated (mysql-5.7), tracked in LP: #1592663
  neon27 (s390x)
unrelated, traked in LP: #1592698
  openvswitch
not a regression, tracked in LP: #1592793
  python-pymysql
unrelated (mysql-5.7), tracked in LP: #1592664
  python-tooz
unrelated, tracked in LP: #1592660
  sbsigntool
not a regression
  shim
not a regression
  strongswan
racy test, unrelated, tracked in LP: #1592706
  ubuntu-defaults-builder
unrelated, LP: #1597370, waiting for approval
  upstart
not a regression
  whoopsie
LP: #1592649, fixed in -updates
  yaboot
not a regression

  bzr package set
  ===

  bzr-builder
  bzr-upload
no regressions

  cli-mono package set
  

  gbrainy
  ikvm
  monodevelop
  tangerine
no regressions

  desktop-extra package set
  =

  java-gnome
not a regressions

  edubuntu package set
  

  atomix
  gbrainy
no regressions

  input-methods package set
  =

  fcitx-table-other
  libkkc
no regressions

  kubuntu package set (minus packages from main)
  ==

  avogadro
not a regression
  eigen2
not a regression
  fam
not a regression
  farstream-0.2
not a regression
  gst-plugins-base0.10
not a regression
  gst-plugins-good0.10
not a regression
  gstreamer0.10
not a regression
  kqoauth
not a regression
  kubuntu-web-shortcuts
not a regression
  libmpc
not a regression
  libmygpo-qt
not a regression
  libspe2
not a regression
  networkmanager-qt
obsoleted by version in -updates
  plotutils
not a regression
  qtcurve
not a regression
  tbb
not a regression
  telepathy-haze
not a regression
  telepathy-qt
not a regression

  
  lubuntu package set
  

  hardinfo
not a regression
  libguess
not a regression

  mozilla package set
  

  eclipse
  xiphos
no regressions

  mythbuntu package set
  =

  piston-mini-client
not a regression

  schooltool package set
  ==

  schooltool-book
not a regression

  ubuntu-cloud package set
  

  virtualbox
needs fix for bad GCC version check, in progress (LocutusOfBorg)

  ubuntu-qt-packages package set
  ==

  ciborium
not a regression

  ubuntukylin package set
  

[Touch-packages] [Bug 1599069] [NEW] [pam] Module pam_env does not unset environment variables

2016-07-05 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Architecture: amd64
Date: 2016-07-05T07:10:34,326215642+ (printed by command "date --utc 
--iso-8601=ns")
DistroRelease: Ubuntu 14.04
Package: libpam-modules 1.1.8-1ubuntu2.2
PackageArchitecture: amd64
SourcePackage: pam
Uname: Linux 3.16.0-53-generic x86_64

Steps to reproduce.

1. Edit some files.

   Shell command:
  cat /etc/security/pam_env.conf

   Output of last shell command:
  TEST__SET_ME DEFAULT="value set successfully"
  TEST__CLEAR_ME DEFAULT="" OVERRIDE=""
  TEST__UNSET_ME DEFAULT=   OVERRIDE=

   Shell command:
  cat /etc/pam.d/su

   Output of last shell command:
  auth sufficient pam_rootok.so
  session required pam_env.so readenv=1 debug
  # /etc/pam.d/common-auth
  auth [success=1 default=ignore] pam_unix.so nullok_secure
  auth requisite pam_deny.so
  auth required pam_permit.so
  auth optional pam_ecryptfs.so unwrap
  auth optional pam_cap.so
  # /etc/pam.d/common-account
  account [success=1 new_authtok_reqd=done default=ignore] pam_unix.so
  account requisite pam_deny.so
  account required pam_permit.so
  # /etc/pam.d/common-session
  session [default=1] pam_permit.so
  session requisite pam_deny.so
  session required pam_permit.so
  session optional pam_umask.so
  session required pam_unix.so
  session optional pam_ecryptfs.so unwrap
  session optional pam_ck_connector.so nox11

2. Run shell commands:
  env --ignore-environment sh
  export TEST__CLEAR_ME="variable not cleared"
  export TEST__UNSET_ME="variable still set"
  su --command env | grep TEST__

   Type root password.

   Output of last shell command:
  TEST__UNSET_ME=variable still set
  TEST__SET_ME=value set successfully
  TEST__CLEAR_ME=

   Related syslog output:
  su[11338] Successful su for root by local_user
  su[11338] + /dev/pts/0 local_user:root
  su[11338] pam_env(su:session): pam_putenv("TEST__ SET_ME=value set 
successfully")
  su[11338] pam_env(su:session): pam_putenv("TEST__ CLEAR_ME=")
  su[11338] pam_env(su:session): remove variable "TEST__UNSET_ME"
  su[11338] pam_env(su:session): pam_putenv: delete non-existent entry; 
TEST__UNSET_ME
  su[11338] pam_env(su:session): 
pam_putenv("PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")
  su[11338] pam_unix(su:session): session opened for user root by 
local_user(uid=1000)
  su[11338] pam_unix(su:session): session closed for user root

Actual result:
environment variable
TEST__UNSET_ME
not unset.

Expected result:
unset environment variable
TEST__UNSET_ME.

Bugs:
- pam module "pam_env.so"
  does not unset environment variables;
- man page pam_env(8) describe,
  what module can
  unset environment variables,
  but does not describe,
  how to do that
  (answer found in
  "pam-1.1.8/modules/pam_env/pam_env.c",
  line 472).

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

-- 
[pam] Module pam_env does not unset environment variables
https://bugs.launchpad.net/bugs/1599069
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to pam 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 1582767] Re: apparmor permissions missing for winbind

2016-07-05 Thread ChristianEhrhardt
If one can find slight modifications to this conf without needing an
actual real ADS, but still triggering the bug please let me know.

** Attachment added: "samba conf as PDC trying to trigger the bug"
   
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/1582767/+attachment/4695719/+files/smb.conf

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

Title:
  apparmor permissions missing for winbind

Status in ntp package in Ubuntu:
  Triaged

Bug description:
  When using Winbind, ntpd needs to access the Winbind pipe:

  May 17 16:23:15 bo kernel: [   27.598551] type=1400
  audit(1463494995.048:18): apparmor="DENIED" operation="connect"
  profile="/usr/sbin/ntpd" name="/run/samba/winbindd/pipe" pid=1517
  comm="ntpd" requested_mask="rw" denied_mask="rw" fsuid=0 ouid=0

  Would there be any reason not to allow this ? I added the following
  line to /etc/apparmor/init/network-interface-security/usr.sbin.ntpd:

  /run/samba/winbindd/pipe rw,

  Thanks!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/1582767/+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 1129696] Re: Cannot set config file in /etc/default/ntp

2016-07-05 Thread ChristianEhrhardt
** Changed in: ntp (Ubuntu)
 Assignee: (unassigned) => ChristianEhrhardt (paelzer)

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

Title:
  Cannot set config file in /etc/default/ntp

Status in NTP:
  New
Status in ntp package in Ubuntu:
  Triaged

Bug description:
  Description:Ubuntu 12.04 LTS
  Release:12.04

  ntp:
Installed: 1:4.2.6.p3+dfsg-1ubuntu3.1
Candidate: 1:4.2.6.p3+dfsg-1ubuntu3.1
Version table:
   *** 1:4.2.6.p3+dfsg-1ubuntu3.1 0
  500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
  100 /var/lib/dpkg/status
   1:4.2.6.p3+dfsg-1ubuntu3 0
  500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
  f
  I had a need to set a custom config file for ntp. I looked about and found 
that I could pass a '-c' option and that options for ntp are set in 
/etc/default/ntp in NTPD_OPTS. So I put it in there: NTPD_OPTS='-g -c 
/path/to/custom/ntp.conf'. It worked. Until I deployed to another box that was 
receiving NTP settings via DHCP. On that box, ntpd exited with an error because 
it had received two config files in its arguments. Not good.

  After reading through the init script, I opted to add a new variable
  to /etc/default/ntp specifically for holding a custom config file.
  Attached is a patch that will use that value if DHCP has not created
  its own ntp.conf. If NTP settings were passed via DCHP, then those
  settings will override the custom config file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/1129696/+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 1597683] Re: Cellular data switch visible on M10 tablet

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~unity-api-team/indicator-network/modem-switch-
depends-on-having-modem

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

Title:
  Cellular data switch visible on M10 tablet

Status in Canonical System Image:
  Confirmed
Status in indicator-network package in Ubuntu:
  Confirmed

Bug description:
  M10 FHD with rc-proposed (r130)

  When I pull down the indicators panel I can see greyed out 'Cellular data' 
and a switch next to it.
  Screenshot attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1597683/+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 1594452] Re: Add vulcan support

2016-07-05 Thread Matthias Klose
** 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 binutils in Ubuntu.
https://bugs.launchpad.net/bugs/1594452

Title:
  Add vulcan support

Status in binutils package in Ubuntu:
  Fix Released
Status in gcc-5 package in Ubuntu:
  Fix Released
Status in gcc-6 package in Ubuntu:
  Fix Released
Status in binutils source package in Xenial:
  Fix Committed
Status in gcc-5 source package in Xenial:
  Fix Committed

Bug description:
  Vulcan support has recently landed upstream. Please include this
  backport in Ubuntu.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/binutils/+bug/1594452/+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 1567540] Re: ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes up or down.)

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

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

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

Title:
  ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes
  up or down.)

Status in NTP:
  Fix Released
Status in ntp package in Ubuntu:
  Triaged
Status in ntp source package in Xenial:
  Confirmed

Bug description:
  ntp crashes every time the network goes up or down while the system is 
running and also crashes after booting up without network.
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (26 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu4
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-17-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-17.33-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (31 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-20.36-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-20-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-20.36-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-20-generic 

[Touch-packages] [Bug 1567540] Re: ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes up or down.)

2016-07-05 Thread ChristianEhrhardt
** Changed in: ntp (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: ntp (Ubuntu)
 Assignee: (unassigned) => ChristianEhrhardt (paelzer)

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

Title:
  ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes
  up or down.)

Status in NTP:
  Fix Released
Status in ntp package in Ubuntu:
  Triaged
Status in ntp source package in Xenial:
  Confirmed

Bug description:
  ntp crashes every time the network goes up or down while the system is 
running and also crashes after booting up without network.
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (26 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu4
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-17-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-17.33-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (31 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-20.36-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-20-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-20.36-generic 4.4.6
  Tags:  xenial
  Uname: Linux 

[Touch-packages] [Bug 1598917] Re: windows on external display are displaced when OSK appears on phone

2016-07-05 Thread Michał Sawicz
** Changed in: canonical-devices-system-image
   Status: Triaged => In Progress

** Changed in: unity8 (Ubuntu)
   Status: Triaged => In Progress

** Changed in: canonical-devices-system-image
Milestone: None => 12

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

Title:
  windows on external display are displaced when OSK appears on phone

Status in Canonical System Image:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Steps to reproduce:
  - Connect phone to external display
  - Move dash to the bottom of the screen
  - Tap on the search field

  Expected outcome:
  - Window doesn't move

  Actual outcome:
  - Window is moved up, as if the OSK were being displayed on the external 
screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598917/+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 1206164] Re: /etc/network/if-up.d/ntpdate does not detach correctly

2016-07-05 Thread ChristianEhrhardt
Testing has shown that an environment var there isn't working well as call -> 
ifup -> hook isn't transferring env.
But checking for alternatives this got even better.

ifup makes all options in e/n/i or ifup -o available (prepended and uppercased) 
to called scripts.
That way one can not only disable per call, but also per device in e/n/i.

So the behavior will be like:   
 
 1. default it is running on ifup (old default) 
  
 2. one can set a global disable in the config file 
  
 3. one disable per device in the devices e/n/i stanza via disable_ntpdate=1
   
 4. one can disable it per call via -o option setting -o disable_ntpdate=1

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

Title:
  /etc/network/if-up.d/ntpdate does not detach correctly

Status in NTP:
  New
Status in ntp package in Ubuntu:
  Triaged

Bug description:
  It seems that the intent of /etc/network/if-up.d/ntpdate is to
  background itself, as it creates a subshell with &.

  As reported in bug 1202758, this doesn't seem to work correctly.  That
  doesn't close the file descriptors.  As a result, if something is
  waiting on the output of 'ifup', it will sit and wait until ntpdate is
  finished.

  Example:
  $ time sudo sh -c 'o=$(sh -c "ifdown eth0 ; ifup eth0" 2>&1) ; echo $o'

  If we change the way it detaches itself to close stdout, stdderr, and
  stdin, then we're fine.

  I'm reporting this, but I'm not sure how much of a real problem it is.  As if 
th
  e command sends stdin and stdout to /dev/null, then debugging its output 
would b
  e more difficult.

  Example diff:
  $ diff -u /etc/network/if-up.d/ntpdate.dist /etc/network/if-up.d/ntpdate
  --- /etc/network/if-up.d/ntpdate.dist  2013-07-29 15:47:54.242781947 +
  +++ /etc/network/if-up.d/ntpdate 2013-07-29 15:48:06.946781947 +
  @@ -56,4 +56,4 @@
 lockfile-remove $LOCKFILE
   fi

  -) &
  +) /dev/null 2>&1 &

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: ntpdate 1:4.2.6.p5+dfsg-2ubuntu2
  ProcVersionSignature: User Name 3.10.0-5.15-generic 3.10.2
  Uname: Linux 3.10.0-5-generic x86_64
  ApportVersion: 2.11-0ubuntu1
  Architecture: amd64
  Date: Mon Jul 29 15:32:30 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ntp
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.network.if.up.d.ntpdate: 2013-07-29T15:32:03.567775

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp/+bug/1206164/+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 1573720] Re: Unencrypted private keys are insecure error reported even when key is encrypted

2016-07-05 Thread Aron Xu
** Tags added: desktop-trello-import

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

Title:
  Unencrypted private keys are insecure error reported even when key is
  encrypted

Status in NetworkManager:
  Incomplete
Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  When I enter an EAP-TLS wifi config, I get the error:

  "Unencrypted private keys are insecure
  The selected private key does not appear to be protected by a password.  This 
could allow your security credentials to be compromised.  Please select a 
password-protected private key.

  (You can password-protect your private key with openssl)"

  I have verified that my key is, in fact, encrypted, and I have tried
  using both des3 and aes256. I have also verified the password used to
  encrypt the key.

  For a while, it wouldn't even let me save the config. I managed to
  save it eventually, but now when I try to connect to the saved
  connection, I get the same error.

  I am on Ubuntu mate 16.04

  network-manager 1.1.93

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: network-manager 1.1.93-0ubuntu4
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Fri Apr 22 13:25:16 2016
  InstallationDate: Installed on 2015-08-19 (246 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Release amd64 
(20150422.1)
  IpRoute:
   default via 192.168.151.254 dev eth1  proto static  metric 100 
   169.254.0.0/16 dev eth1  scope link  metric 1000 
   192.168.151.0/24 dev eth1  proto kernel  scope link  src 192.168.151.95  
metric 100
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to xenial on 2016-04-22 (0 days ago)
  nmcli-dev:
   DEVICE  TYPE  STATE DBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   eth1ethernet  connected /org/freedesktop/NetworkManager/Devices/2  
Wired connection 1  ed50d4f9-c810-4be0-b06c-8acd58015c50  
/org/freedesktop/NetworkManager/ActiveConnection/0 
   wlan0   wifi  disconnected  /org/freedesktop/NetworkManager/Devices/1  
--  ----
 
   eth0ethernet  unavailable   /org/freedesktop/NetworkManager/Devices/3  
--  ----
 
   lo  loopback  unmanaged /org/freedesktop/NetworkManager/Devices/0  
--  ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1573720/+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 1595116] Re: Filters popup does not resize after screen rotation

2016-07-05 Thread Andrea Cimitan
** Branch linked: lp:~cimi/unity8/fix-1595116

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

Title:
  Filters popup does not resize after screen rotation

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  bq M10 FHD rc-proposed with Libertine/X-Apps scope installed.

  Steps to reproduce:
  0. Rotate the tablet to landscape
  1. Open XApps scope
  2. Click "search" icon
  3. Click "filters" icon
  4. Click "down" icon to expand the list
  5. Rotate the tablet to portrait

  Expected result:
  Popup with the list resizes so you can see it

  What happens instead:
  Popup does not change its size, text of the list item is not visible

  Screenshots attached

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1595116/+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 1596878] Re: Mouse flickering and mouse trails with DL screen attached

2016-07-05 Thread Christina Lena Korosec
Thanks for alerting me to the new BIOS version. The UEFI updater said it was 
already up to date, but I could manually install the new BIOS version from the 
website.
The problem is still present after the update.
New BIOS info: (output of sudo dmidecode -s bios-version && sudo dmidecode -s 
bios-release-date)
L77 Ver. 01.36
04/25/2016

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

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

Title:
  Mouse flickering and mouse trails with DL screen attached

Status in xorg package in Ubuntu:
  New

Bug description:
  When attaching a screen on a DisplayLink device, the cursor will
  flicker on all non-DisplayLink screens. Additionally, the cursor will
  leave trails over various UI elements that update as the cursor passes
  (such as buttons, menus, progress bars, etc.)

  The issue occurs only when a DisplayLink device is attached and
  driving a display. However, DisplayLink told me the issue is not
  specific to their hardware, and to make a bug report here.

  Additional details:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Linux 4.4.0-24-generic
  DisplayLink 1.1.62 driver
  radeon/intel hybrid graphics
  xorg:
Installed: 1:7.7+13ubuntu3

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,move,imgpng,grid,vpswitch,place,session,unitymtgrabhandles,mousepoll,regex,gnomecompat,compiztoolbox,resize,animation,snap,workarounds,expo,wall,fade,ezoom,scale,unityshell]
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Tue Jun 28 11:26:02 2016
  DistUpgraded: 2016-06-08 13:08:40,498 DEBUG enabling apt cron job
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company 4th Gen Core Processor Integrated 
Graphics Controller [103c:1993]
   Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8730M] [1002:6601] 
(rev ff) (prog-if ff)
  InstallationDate: Installed on 2011-10-13 (1719 days ago)
  InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427)
  MachineType: Hewlett-Packard HP ProBook 650 G1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-24-generic 
root=UUID=b5298a65-447e-427d-8dbd-73939ed8edd7 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-06-08 (19 days ago)
  dmi.bios.date: 07/20/2015
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L77 Ver. 01.33
  dmi.board.name: 1993
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 16.3C
  dmi.chassis.asset.tag: 5CG4382GHB
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL77Ver.01.33:bd07/20/2015:svnHewlett-Packard:pnHPProBook650G1:pvrA3008DD10B03:rvnHewlett-Packard:rn1993:rvrKBCVersion16.3C:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 650 G1
  dmi.product.version: A3008DD10B03
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental 
9.2.0~git20131002+9.2.2eb55601-0ubuntu0sarvatt~precise
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Tue Jun 28 10:09:06 2016
  xserver.configfile: default
  xserver.errors:
   RADEON(G0): [XvMC] Failed to initialize extension.
   modeset(G1): glamor initialization failed
   modeset(G2): glamor initialization failed
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5699 
   vendor ACI
  xserver.version: 2:1.18.3-1ubuntu2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1596878/+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 1597672] Re: ubuntu-ui-toolkit-launcher doesn't support Window as root item

2016-07-05 Thread Christian Dywan
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  ubuntu-ui-toolkit-launcher doesn't support Window as root item

Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  Using a QtQuick.Window as a root item with ubuntu-ui-toolkit-launcher
  results in an error loading the QML:

  import QtQuick 2.4
  import QtQuick.Window 2.2
  import Ubuntu.Components 1.3
  Window {
  title: "Hello World"
  minimumWidth: units.gu(30)
  minimumHeight: units.gu(50)
  maximumWidth: units.gu(90)
  maximumHeight: units.gu(120)
  MainView {
  applicationName: "Hello World"
  }
  }

  QQuickView only supports loading of root objects that derive from QQuickItem. 
  If your example is using QML 2, (such as qmlscene) and the .qml file you 
  loaded has 'import QtQuick 1.0' or Qt 4.7', this error will occur. 
  To load files with 'import QtQuick 1.0' or Qt 4.7', use the 
  QDeclarativeView class in the Qt Quick 1 module.

  That same piece of code works with qmlscene.

  See also bug 1587431.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1597672/+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 1549369] Re: Updating the apparmor manifest and deploying the new code without increasing app version does not trigger apparmor profile update on the device.

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

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

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

Title:
  Updating the apparmor manifest and deploying the new code without
  increasing app version does not trigger apparmor profile update on the
  device.

Status in Client Developer Experience:
  Confirmed
Status in Canonical System Image:
  Confirmed
Status in click package in Ubuntu:
  Confirmed
Status in click-apparmor package in Ubuntu:
  Won't Fix

Bug description:
  On Krillin, as of rc-proposed r264,

  modifying the application apparmor manifest and then deploying the
  application to the device *without* increasing the app version will
  not trigger the apparmor profile update.

  As a consequence, the developer is left confused because the app is
  still complaining about apparmor denials even after he modified the
  apparmo manifest and deployed the new .click package.

  Deploying changes to an application without updating its version
  number is a quite common practice, especially while in development
  phase.

  That is why I believe we should fix this bug as soon as possible, to
  make life of developers easier.

  Reference of a similar bug, which was however more Snappy specific:
  https://bugs.launchpad.net/ubuntu/+source/click-apparmor/+bug/1422744

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-developer-experience/+bug/1549369/+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 1598916] Re: Allow fingerprint enrollment in OOBE

2016-07-05 Thread Michał Sawicz
** Changed in: canonical-devices-system-image
   Status: New => Triaged

** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Michał Sawicz (saviq)

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

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

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Lukáš Tinkl (lukas-kde)

** Changed in: ubuntu-settings-components (Ubuntu)
   Status: New => Incomplete

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

Title:
  Allow fingerprint enrollment in OOBE

Status in Canonical System Image:
  Triaged
Status in ubuntu-settings-components package in Ubuntu:
  Incomplete
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Reproduce:
  Run Wizard on device with fingerprint scanner

  What happens:
  No way to enroll fingerprint

  What should happen:
  Fingerprint enrollment should be possible.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598916/+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 1598917] Re: windows on external display are displaced when OSK appears on phone

2016-07-05 Thread Michał Sawicz
** Changed in: unity8 (Ubuntu)
   Status: New => Triaged

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

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

** Changed in: canonical-devices-system-image
   Status: New => Triaged

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

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Michał Sawicz (saviq)

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

Title:
  windows on external display are displaced when OSK appears on phone

Status in Canonical System Image:
  Triaged
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Steps to reproduce:
  - Connect phone to external display
  - Move dash to the bottom of the screen
  - Tap on the search field

  Expected outcome:
  - Window doesn't move

  Actual outcome:
  - Window is moved up, as if the OSK were being displayed on the external 
screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598917/+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 1574120] Re: Notebook doesn't suspend when lid is closed after update to 16.04

2016-07-05 Thread fabian
I have laptop Toshiba l300. After new install MINT 18 (Mate) after lip
is closed noting happen. Laptop steel work. In power management I set
every mode suspend, hibernate etc. Noting happen after close lip.

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

Title:
  Notebook doesn't suspend when lid is closed after update to 16.04

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  My notebook does not suspend after upgrading from 15.10 to 16.04.

  According to system settings the notebook should suspend when lid is
  closed but actually this does not happen. Instead it continues to run
  as if nothing had happened.

  With the previous versions of ubuntu (14.04-15.10) everything worked
  fine.

  My System: HP Pavilion dv7.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: acpi (not installed)
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Apr 23 23:11:15 2016
  InstallationDate: Installed on 2015-10-29 (176 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  SourcePackage: acpi
  UpgradeStatus: Upgraded to xenial on 2016-04-22 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1574120/+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 1597523] Re: SRU of LXC 2.0.3 (upstream bugfix release)

2016-07-05 Thread Stéphane Graber
I've had this running for the past few days on a few servers, no problem
found and we haven't received any negative feedback from yakkety, PPA or
backports users either.

** 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 lxc in Ubuntu.
https://bugs.launchpad.net/bugs/1597523

Title:
  SRU of LXC 2.0.3 (upstream bugfix release)

Status in lxc package in Ubuntu:
  Fix Released
Status in lxc source package in Trusty:
  Fix Released
Status in lxc source package in Xenial:
  Fix Committed

Bug description:
  LXC upstream released LXC 2.0.2 & 2.0.3 as bugfix releases with following 
changelog:
   - apparmor: Refresh generated file
   - apparmor: add make-rslave to usr.bin.lxc-start
   - apparmor: Allow bind-mounts and {r}shared/{r}private
   - apparmor: allow mount move
   - apparmor: Update mount states handling
   - core: Drop lxc-devsetup as unneeded by current autodev
   - core: Fix redefinition of struct in6_addr
   - core: Include all lxcmntent.h function declarations on Bionic
   - c/r: c/r: use criu's "full" mode for cgroups
   - systemd: start containers in foreground when using the lxc@.service
   - templates: debian: Make sure init is installed
   - templates: oracle: Fix console login
   - templates: plamo: Fix various issues
   - templates: ubuntu: Install apt-transport-https by default
   - travis: ensure 'make install' doesn't fail
   - travis: test VPATH builds
   - upstart: Force lxc-instance to behave like a good Upstart client

  Just like Ubuntu itself, upstream releases long term support releases,
  as is 2.0 and then periodic point releases including all the
  accumulated bugfixes.

  Only the latest upstream release gets full support from the upstream
  developers, everyone else is expected to first update to it before
  receiving any kind of support.

  This bugfix release has already been uploaded to Yakkety and
  automatically backported in the upstream PPAs for all Ubuntu releases.
  So far without any reported regression.

  This should qualify under the minor upstream bugfix release allowance
  of the SRU policy, letting us SRU this without paperwork for every
  single change included in this upstream release.

  Once the SRU hits -updates, we will be backporting this to trusty-
  backports as well, making sure we have the same version everywhere.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1597523/+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 1598136] Re: Fails to produce a loop-mountable FS on powerpc/armhf

2016-07-05 Thread Dan Watkins
** Changed in: cloud-images
   Status: New => In Progress

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

Title:
  Fails to produce a loop-mountable FS on powerpc/armhf

Status in cloud-images:
  In Progress
Status in e2fsprogs package in Ubuntu:
  New

Bug description:
  In yakkety cloud image builds for each of powerpc and armhf (but not
  amd64, i386, ppc64el, arm64 or s390x) we see the following failure:

  [2016-07-01 09:51:08] lb_binary_chroot
  P: Begin copying chroot...
  [2016-07-01 09:51:08] lb_binary_rootfs
  P: Begin building root filesystem image...
  0+0 records in
  0+0 records out
  0 bytes copied, 3.7116e-05 s, 0.0 kB/s
  mke2fs 1.43.1 (08-Jun-2016)
  ext2fs_check_if_mount: Can't check if filesystem is mounted due to missing 
mtab file while determining whether binary/boot/filesystem.ext4 is mounted.
  Suggestion: Use Linux kernel >= 3.18 for improved stability of the metadata 
and journal checksum features.
  Discarding device blocks:   4096/343040 
done
  Creating filesystem with 343040 4k blocks and 171600 inodes
  Filesystem UUID: 43ff7fc9-12bb-4151-8549-77c8e1e35e2c
  Superblock backups stored on blocks:
   32768, 98304, 163840, 229376, 294912

  Allocating group tables:  0/11 done
  Writing inode tables:  0/11 done
  Creating journal (8192 blocks): done
  Writing superblocks and filesystem accounting information:  0/11 
done

  mount: wrong fs type, bad option, bad superblock on /dev/loop0,
     missing codepage or helper program, or other error

     In some cases useful info is found in syslog - try
     dmesg | tail or so.

  This is caused by this code in live-build's lb_binary_rootfs script:

  dd if=/dev/zero of=binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} 
bs=1024k count=0 seek=${REAL_DIM}
  mkfs.${LB_CHROOT_FILESYSTEM} -F -b ${LB_EXT_BLOCKSIZE:-1024} -i 8192 -m 0 -L 
${LB_HDD_LABEL} ${LB_EXT_RESIZEBLOCKS:+-E resize=${LB_EXT_RESIZEBLOCKS}} 
binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}

  mkdir -p filesystem.tmp
  ${LB_ROOT_COMMAND} mount -o loop 
binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1598136/+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 1598916] Re: Allow fingerprint enrollment in OOBE

2016-07-05 Thread Paty Davila
** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

** Changed in: ubuntu-ux
 Assignee: (unassigned) => Paty Davila (dizzypaty)

** Changed in: ubuntu-ux
   Status: New => Triaged

** Changed in: ubuntu-ux
   Importance: Undecided => Medium

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

Title:
  Allow fingerprint enrollment in OOBE

Status in Canonical System Image:
  Triaged
Status in Ubuntu UX:
  Triaged
Status in ubuntu-settings-components package in Ubuntu:
  Incomplete
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Reproduce:
  Run Wizard on device with fingerprint scanner

  What happens:
  No way to enroll fingerprint

  What should happen:
  Fingerprint enrollment should be possible.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598916/+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 1576844] Re: Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

2016-07-05 Thread mash
>From /var/log/Xorg.0.log

(EE) SynPS/2 Synaptics TouchPad: Read error 19
[ 12554.829] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[ 12554.844] (II) UnloadModule: "synaptics"

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

Title:
  Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

Status in xorg package in Ubuntu:
  New

Bug description:
  $ lsb_release -rd
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

  Several times yesterday and today (April 28-29, 2016) the touchpad
  (trackpad) on the Dell XPS 13 9343 has frozen.  Other functions
  (keyboard, screen, etc.) have been fine but the pointer has been
  frozen in place.  Then after 1-3 minutes functionality returns.

  Thank you very much for your assistance and I'd be happy to provide
  more information.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-22.38-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  BootLog:

  CompizPlugins: [core,composite,opengl,cube,rotate]
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:Unity
  Date: Fri Apr 29 16:09:32 2016
  DistUpgraded: 2016-04-27 15:53:13,798 DEBUG icon theme changed, re-reading
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.2.0-36-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 4.4.0-22-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
     Subsystem: Dell Broadwell-U Integrated Graphics [1028:0665]
  InstallationDate: Installed on 2015-08-06 (267 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Dell Inc. XPS 13 9343
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-22-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-04-27 (2 days ago)
  dmi.bios.date: 07/14/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A05
  dmi.board.name: 0TM99H
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd07/14/2015:svnDellInc.:pnXPS139343:pvr:rvnDellInc.:rn0TM99H:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Wed Apr 27 15:54:22 2016
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5152
   vendor SHP
  xserver.version: 2:1.18.3-1ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1576844/+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 1595113] Re: Icons in scope filters look pixelated

2016-07-05 Thread Andrea Cimitan
** Changed in: unity8 (Ubuntu)
   Status: Triaged => 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/1595113

Title:
  Icons in scope filters look pixelated

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  bq M10 FHD rc-proposed with Libertine/X-Apps scope installed.

  Steps to reproduce:
  1. Open XApps scope
  2. Click "search" icon
  3. Click "filters" icon
  4. Click "down" icon to expand the list
  5. Click any list item to see "tick" icon

  Expected result:
  All icons are nice and smooth 

  What happens instead:
  Icons: "down", "up" and "tick" look pixelated

  Screenshot attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1595113/+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 1576844] Re: Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

2016-07-05 Thread mash
No, the problem is not resolved. It seems as if the lock-ups are
shorter, but it is still happening.

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

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

Title:
  Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

Status in xorg package in Ubuntu:
  New

Bug description:
  $ lsb_release -rd
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

  Several times yesterday and today (April 28-29, 2016) the touchpad
  (trackpad) on the Dell XPS 13 9343 has frozen.  Other functions
  (keyboard, screen, etc.) have been fine but the pointer has been
  frozen in place.  Then after 1-3 minutes functionality returns.

  Thank you very much for your assistance and I'd be happy to provide
  more information.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-22.38-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  BootLog:

  CompizPlugins: [core,composite,opengl,cube,rotate]
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:Unity
  Date: Fri Apr 29 16:09:32 2016
  DistUpgraded: 2016-04-27 15:53:13,798 DEBUG icon theme changed, re-reading
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.2.0-36-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 4.4.0-22-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
     Subsystem: Dell Broadwell-U Integrated Graphics [1028:0665]
  InstallationDate: Installed on 2015-08-06 (267 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Dell Inc. XPS 13 9343
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-22-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-04-27 (2 days ago)
  dmi.bios.date: 07/14/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A05
  dmi.board.name: 0TM99H
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd07/14/2015:svnDellInc.:pnXPS139343:pvr:rvnDellInc.:rn0TM99H:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Wed Apr 27 15:54:22 2016
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5152
   vendor SHP
  xserver.version: 2:1.18.3-1ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1576844/+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 1590838] Re: scheduled shutdown -r does not work without dbus in xenial LXC container

2016-07-05 Thread Andreas Hasenack
** Changed in: landscape-client
   Status: New => In Progress

** Changed in: landscape-client
 Assignee: (unassigned) => Andreas Hasenack (ahasenack)

** Branch linked: lp:~ahasenack/landscape-client/libpam-systemd-depends-
xenial-onwards

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

Title:
  scheduled shutdown -r  does not work without dbus in xenial LXC
  container

Status in Landscape Client:
  In Progress
Status in landscape-client package in Ubuntu:
  New
Status in systemd package in Ubuntu:
  Won't Fix

Bug description:
  The command "shutdown -r +5" doesn't work in a xenial lxc container. I
  found this out by trying to use Landscape to restart a xenial lxc
  container and the operation failed. I was told by the Landscape team
  that the restart button simply does a "shutdown -r +5".

  The problem seems to be that the dbus package is missing in the xenial
  lxc image.

  This is what happens:

  root@xenialtest:/# shutdown -r +5
  Failed to connect to bus: No such file or directory
  Failed to connect to bus: No such file or directory

  And if I install dbus:

  root@xenialtest:/# shutdown -r +5
  Shutdown scheduled for Wed 2016-06-08 19:28:44 UTC, use 'shutdown -c' to 
cancel.

  The issue happens whether I use the download template or the ubuntu
  template when creating the LXC container:

  root@davecorelaptop:/var/cache/lxc# lxc-create -t ubuntu -n test2
  root@davecorelaptop:/var/cache/lxc# lxc-start -d -n test2
  root@davecorelaptop:/var/cache/lxc# lxc-attach -n test2

  root@test2:/# lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Codename: xenial

  root@test2:/# shutdown -r +5
  Failed to connect to bus: No such file or directory
  Failed to connect to bus: No such file or directory

  
  or

  
  root@davecorelaptop:~# lxc-create -t download -n test
  Setting up the GPG keyring
  Downloading the image index

  ---
  DIST  RELEASE ARCHVARIANT BUILD
  ---
  alpine3.0 amd64   default 20160608_18:03
  alpine3.0 i386default 20160608_17:50
  alpine3.1 amd64   default 20160608_17:50
  alpine3.1 i386default 20160608_18:03
  alpine3.2 amd64   default 20160608_17:50
  alpine3.2 i386default 20160608_17:50
  alpine3.3 amd64   default 20160608_17:50
  alpine3.3 i386default 20160608_17:50
  alpineedgeamd64   default 20160608_17:50
  alpineedgei386default 20160608_17:50
  centos6   amd64   default 20160609_02:16
  centos6   i386default 20160609_02:16
  centos7   amd64   default 20160609_02:16
  debianjessie  amd64   default 20160608_22:42
  debianjessie  arm64   default 20160609_02:38
  debianjessie  armel   default 20160608_22:42
  debianjessie  armhf   default 20160608_22:42
  debianjessie  i386default 20160608_22:42
  debianjessie  powerpc default 20160608_22:42
  debianjessie  ppc64el default 20160608_22:42
  debianjessie  s390x   default 20160608_22:42
  debiansid amd64   default 20160608_22:42
  debiansid arm64   default 20160608_22:42
  debiansid armel   default 20160608_22:42
  debiansid armhf   default 20160608_22:42
  debiansid i386default 20160608_22:42
  debiansid powerpc default 20160608_22:42
  debiansid ppc64el default 20160608_22:42
  debiansid s390x   default 20160608_22:42
  debianstretch amd64   default 20160608_22:42
  debianstretch arm64   default 20160608_22:42
  debianstretch armel   default 20160608_22:42
  debianstretch armhf   default 20160608_22:42
  debianstretch i386default 20160608_22:42
  debianstretch powerpc default 20160608_22:42
  debianstretch ppc64el default 20160608_22:42
  debianstretch s390x   default 20160608_22:42
  debianwheezy  amd64   default 20160608_22:42
  debianwheezy  armel   default 20160608_22:42
  debianwheezy  armhf   default 20160608_22:42
  debianwheezy  i386default 20160608_22:42
  debianwheezy  powerpc default 20160609_02:38
  debianwheezy  s390x   default 20160608_22:42
  fedora22  amd64   default 20160609_01:27
  fedora22  armhf   default 20160112_01:27
  fedora22  i386default 20160609_01:27
  fedora23  amd64   default 20160609_01:27
  fedora23  i386default 20160609_01:27
  gentoocurrent amd64   default 20160608_14:12
  gentoocurrent i386default 20160608_14:12
  opensuse  13.2amd64   default 20160609_00:53
  oracle6   amd64   default 

[Touch-packages] [Bug 1587965] Re: [OTA11][m10] long swipe or home button doesn't "mazimize" dash

2016-07-05 Thread Pat McGowan
** Description changed:

  1) swipe from outside of the screen from the right to get the apps that are 
opened
  2) outside long swipe from the left, moves the most left app to move to the 
right but it doesn't "maximize" main scope.
  3) outside short swipe from the left shows dash but tapping on home button 
has no effect (before it was "maximizing" main scope)
  
  PS: All in all good work, OTA 11 feels really faster!
+ 
+ The key point is that the M10 works differently from the phones, so
+ something is different with the staged mode.

** Changed in: canonical-devices-system-image
   Status: Incomplete => Confirmed

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

Title:
  [OTA11][m10] long swipe or home button doesn't "mazimize" dash

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  1) swipe from outside of the screen from the right to get the apps that are 
opened
  2) outside long swipe from the left, moves the most left app to move to the 
right but it doesn't "maximize" main scope.
  3) outside short swipe from the left shows dash but tapping on home button 
has no effect (before it was "maximizing" main scope)

  PS: All in all good work, OTA 11 feels really faster!

  The key point is that the M10 works differently from the phones, so
  something is different with the staged mode.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1587965/+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 1583057] Re: Deny audio recording for all snap applications

2016-07-05 Thread Jamie Strandboge
@Simon, couple of small things:
* you should use 8.0-0ubuntu3.1 as the version instead of 8.0-0ubuntu4
* the changelog has a date of 'Tue, 17 May 2016 17:59:58 +0200' which is quite 
old, yet the diff was only recently uploaded. You can use 'dch -r' to update 
the date

More importantly:
 * the patch introduces compiler warnings. These should be cleaned up:
+modules/module-snappy-policy.c: In function ‘connect_record_hook’:
+modules/module-snappy-policy.c:57:5: warning: ISO C90 forbids mixed 
declarations and code [-Wdeclaration-after-statement]
+ char *label = NULL;
+ ^
+modules/module-snappy-policy.c:65:5: warning: ISO C90 forbids mixed 
declarations and code [-Wdeclaration-after-statement]
+ pa_hook_result_t decision = PA_HOOK_OK;
+ ^


* configure shows:
+Enable Snappy support: no
+Enable Apparmor:   yes

Can you comment on why snappy support was added to configure in this
patch if you aren't going to use it? It seems that snappy support is
compiled though, cause I see '-DHAVE_SNAPPY=1' in the build logs and see
usr/lib/pulse-8.0/modules/module-snappy-policy.so is now shipped.

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

Title:
  Deny audio recording for all snap applications

Status in pulseaudio package in Ubuntu:
  Fix Released
Status in pulseaudio source package in Xenial:
  In Progress
Status in pulseaudio source package in Yakkety:
  Fix Released

Bug description:
  Until we have a proper trust-store implementation with snappy and on
  the desktop/ubuntu core we want pulseaudio to simply deny any audio
  recording request coming from an app shipped as part of a snap.

  The implementation adds a module-snappy-policy module to pulseaudio
  which adds a hook for audio recording requests and checks on
  connection if the apparmor security label of the connecting peer
  starts with "snap." which will identify it as a snap application.

  Pulseaudio with the patch is available as part of the landing request
  at https://requests.ci-train.ubuntu.com/#/ticket/1428

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1583057/+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 1589703] Re: Alarm clock icon doesn't disappear (appears randomly) when alarm inactive

2016-07-05 Thread Anupam
I observed the same behaviour (i.e. false alarm clock icon appearing at
midnight, as in #8) each and every day for last 7-8 days. So probably
it's not a random behaviour. Can anyone else confirm?

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

Title:
  Alarm clock icon doesn't disappear (appears randomly) when alarm
  inactive

Status in Canonical System Image:
  Confirmed
Status in Ubuntu Clock App:
  New
Status in indicator-datetime package in Ubuntu:
  Confirmed

Bug description:
  As in description. In my bq i see sometimes an alarm clock icon even
  if the alarm time passed and the alarm clock is no longer active.

  Set the alarm clock
  Let it ring and turn it off. The icon stays visible for some time which i can 
not exactly specify.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1589703/+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 1594532] Re: Portrait mode is missing top

2016-07-05 Thread Sander Smit
Since the last reboot of my tablet this bug seems gone.
Strange because previous reboots did not help.

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

Title:
  Portrait mode is missing top

Status in unity-scope-click package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  When I open the apps scope in portrait mode on my m10 tablet. The top of the 
scope is missing.
  Contacts, camera etc + top 2 or 3 lines with apps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-click/+bug/1594532/+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 1587965] Re: [OTA11][m10] long swipe or home button doesn't "mazimize" dash

2016-07-05 Thread Joan CiberSheep
*Home button also works differnet

in app spread view, pressing home button behaves as long swipe:
 - in tablet moves Today Scope to the left and keeps the spread view
 - in phone shows Today Scope in full view

in full view always shows Today Scope no matter if in a scope or app,
phone or tablet.

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

Title:
  [OTA11][m10] long swipe or home button doesn't "mazimize" dash

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  1) swipe from outside of the screen from the right to get the apps that are 
opened
  2) outside long swipe from the left, moves the most left app to move to the 
right but it doesn't "maximize" main scope.
  3) outside short swipe from the left shows dash but tapping on home button 
has no effect (before it was "maximizing" main scope)

  PS: All in all good work, OTA 11 feels really faster!

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1587965/+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 1596698] Re: Strange font issue after awakening from suspend

2016-07-05 Thread Launching Dumplings
It should also be noted that this issue does not seem to affect gnome-
shell areas, that is it is not seemingly present in the Activities
Overview nor the Top Bar.

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

Title:
  Strange font issue after awakening from suspend

Status in GTK+:
  Unknown
Status in Ubuntu GNOME:
  Confirmed
Status in gtk+3.0 package in Ubuntu:
  Triaged

Bug description:
  When I awoke my computer from suspend last week on Thursday
  (23/06/2016) I found that all the text from all the title bars was
  missing, so I restarted gnome-shell as this normally fixes such
  problems, doing so seemed to make some text appear, but most not, as
  you can see from these images until I restarted my machine it was
  almost impossible to use:

  System_Monitor_No_Text.png
  Shutter_Main_Window_Font_Issue.png
  File_Chooser_Font_Issue.png
  Title_Bar_Partly_Missing.png
  Settings_Text_Issue.png

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: libgtk-3-0 3.20.6-1ubuntu1~ppa1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Mon Jun 27 21:23:02 2016
  InstallationDate: Installed on 2016-05-15 (43 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  SourcePackage: gtk+3.0
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/1596698/+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 1599290] [NEW] Hashsum error installing 101+ packages in 16.04 Docker image

2016-07-05 Thread Matt Bearup
Public bug reported:

When using the official Ubuntu 16.04 Docker image on a 16.04 Dockerhost (Docker 
version 1.11.2), if we run an apt-get command that installs > 100 packages, the 
101st package will fail as a hashsum mismatch. E.g.
Get:101 http://azure.archive.ubuntu.com/ubuntu xenial/main amd64 libldap-2.4-2 
amd64 2.4.42+dfsg-2ubuntu3 [160 kB]
Err:101 http://azure.archive.ubuntu.com/ubuntu xenial/main amd64 libldap-2.4-2 
amd64 2.4.42+dfsg-2ubuntu3
  Hash Sum mismatch

If the packages are installed via apt, or package installs are divided
so we never exceed 100 packages in a single command, the error never
occurs. But if we install 101 packages, the 101st is always a hashsum
mismatch. In testing thus far it only repros in the 16.04 Docker image
on a 16.04 Dockerhost. It doesn't repro if the 16.04 container is
running on a 14.04 host, nor in VM's hosted in the cloud (e.g. Azure) or
locally. Have not tried a bare metal server. Error occurs with latest
apt package (1.2.12~ubuntu16.04.1).

See below for a simplified example Dockerfile which will exceed 100
packages and trigger the error during build.

FROM ubuntu:16.04

RUN apt-get update -qq && apt-get install -y cifs-utils cmake clang llvm 
libc++1 libc++-dev \
libunwind-dev uuid-dev libxml2-dev libssl-dev libssh2-1-dev curl \
lttng-tools lttng-modules-dkms liblttng-ust-dev chrpath members sshpass \
nodejs nodejs-legacy npm

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

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

Title:
  Hashsum error installing 101+ packages in 16.04 Docker image

Status in apt package in Ubuntu:
  New

Bug description:
  When using the official Ubuntu 16.04 Docker image on a 16.04 Dockerhost 
(Docker version 1.11.2), if we run an apt-get command that installs > 100 
packages, the 101st package will fail as a hashsum mismatch. E.g.
  Get:101 http://azure.archive.ubuntu.com/ubuntu xenial/main amd64 
libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3 [160 kB]
  Err:101 http://azure.archive.ubuntu.com/ubuntu xenial/main amd64 
libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3
Hash Sum mismatch

  If the packages are installed via apt, or package installs are divided
  so we never exceed 100 packages in a single command, the error never
  occurs. But if we install 101 packages, the 101st is always a hashsum
  mismatch. In testing thus far it only repros in the 16.04 Docker image
  on a 16.04 Dockerhost. It doesn't repro if the 16.04 container is
  running on a 14.04 host, nor in VM's hosted in the cloud (e.g. Azure)
  or locally. Have not tried a bare metal server. Error occurs with
  latest apt package (1.2.12~ubuntu16.04.1).

  See below for a simplified example Dockerfile which will exceed 100
  packages and trigger the error during build.

  FROM ubuntu:16.04

  RUN apt-get update -qq && apt-get install -y cifs-utils cmake clang llvm 
libc++1 libc++-dev \
  libunwind-dev uuid-dev libxml2-dev libssl-dev libssh2-1-dev curl \
  lttng-tools lttng-modules-dkms liblttng-ust-dev chrpath members sshpass \
  nodejs nodejs-legacy npm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1599290/+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 1549733] Re: SystemSettings Language view: hitting Space on HW keyboard triggers switch even when it (or its list item) does not show any visual focus frame

2016-07-05 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Incomplete => Confirmed

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

Title:
  SystemSettings Language view: hitting Space on HW keyboard
  triggers switch even when it (or its list item) does not show any
  visual focus frame

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Fix Committed
Status in ubuntu-system-settings package in Ubuntu:
  Invalid
Status in ubuntu-ui-toolkit package in Ubuntu:
  Triaged
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  Confirmed

Bug description:
  Nexus7, rc-proposed, r373
  Ubuntu UI Toolkit version r1795

  1) Connect bluetooth keyboard
  2) Open system settings
  3) Open Language & Text view
  4) Press tab until the n-th switch shows its focus frame
  5) Now tap (using touchscreen) on the m-th list item, with  m < n (tap on the 
list item, not on the switch of that list item)
  NOTE: It is important that m < n, the bug will not trigger on listitems that 
have not been focused at least once!
  6) At this point the focus frame around the n-th switch has disappeared
  7) Now press Space on the keyboard

  Expected outcome:
  Nothing, because there is no focus frame anywhere on the screen
  This is confusing for the user as he can never be sure about which item will 
be actioned by the keyboard keys

  Actual outcome:
  The switch of the m-th list item is triggered, even though that list item or 
switch were not showing any focus frame

  : “To avoid errors from unintended focus and
  distraction from irrelevant focus rings, there should be three classes
  of control: … • Non-pointer-focusable: Focusable with Tab … Yes …
  Focusable with pointing device … No”

  : “To avoid distraction from irrelevant
  selection, there should be three classes of list: … • Non-pointer-
  selectable: Selectable with arrow keys … Yes … Selectable with
  pointing device … No … Any list that is non-pointer-selectable should
  be non-pointer-focusable.”

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1549733/+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 1598920] Re: MainView intercepts MouseArea's cursorShape property

2016-07-05 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Zoltan Balogh (bzoltan)

** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) => Zsombor Egri (zsombi)

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

Title:
  MainView intercepts MouseArea's cursorShape property

Status in Canonical System Image:
  Confirmed
Status in qtubuntu package in Ubuntu:
  Invalid
Status in ubuntu-ui-toolkit package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  The MouseArea CursorShape doesnt have any effect.

  Docs Here: http://doc.qt.io/qt-5/qml-qtquick-mousearea.html

  Expected Behavour:
  Mouse image shows selected Qt cursor

  Experienced Behavour:
  The regular arrow is displayed.

  Example Code:

  import QtQuick 2.4
  import Ubuntu.Components 1.3

  MainView {
  objectName: "mainView"
  applicationName: "mouseTest"

  width: units.gu(100)
  height: units.gu(75)

  Rectangle{
  anchors.fill: parent
  color: UbuntuColors.coolGrey

  MouseArea{
  anchors.fill: parent
  cursorShape: Qt.CrossCursor
  hoverEnabled: true
  onClicked: console.log("In MouseArea")
  }
  }
  }

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598920/+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 1589594] Re: incoming call box can be closed without hanging up

2016-07-05 Thread Pat McGowan
*** This bug is a duplicate of bug 1512430 ***
https://bugs.launchpad.net/bugs/1512430

** This bug is no longer a duplicate of bug 1586955
   User can swipe the incoming call notification dialog
** This bug has been marked a duplicate of bug 1512430
   [phone] Shouldn't be able to swipe away incoming call notification

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

Title:
  incoming call box can be closed without hanging up

Status in ofono package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  When I have an incoming call, a box saying who's calling and the buttons to 
hang up and to answer appears.
  You can swipe the whole box (not the little one to hang up and answer) to 
left or to right, like all notifications, and the big box disappear. The 
problem is: the phone continue ringing but you can't do nothing.
  this swipe can hang up the call or the box shouldn't swipe like all 
notifications

  Description: Ubuntu 15.04
  Release: 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ofono/+bug/1589594/+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 1565236] Re: AltGr not working on external keyboards

2016-07-05 Thread Einar Mostad
Same her on a Norwegian layout with M10 on OTA 11.

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

Title:
  AltGr not working on external keyboards

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  Using my keyboard with Spanish layout:

   - PC: Everything works perfect.
   - Ubuntu Touch: I can't write accented characters (dead acute, áéíóú).

  Extra info:

  - Keyboard: https://goo.gl/photos/xZUE8kRsReW1VKPA6 
(http://www.logitech.com/en-hk/product/wireless-touch-keyboard-k400r2)
  - Ubuntu Desktop: 12.04
  - Ubuntu Touch: bq Aquaris E4.5 15.04 (r305)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1565236/+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 1586955] Re: User can swipe the incoming call notification dialog

2016-07-05 Thread Pat McGowan
*** This bug is a duplicate of bug 1512430 ***
https://bugs.launchpad.net/bugs/1512430

Yes its a dupe
@jibel I find I can swipe away the dialog at any time, without changing volume, 
just by grabbing above or below the slider. For me it results in the call going 
to voice mail, not continuing to ring.On another bug we theorized perhaps if 
voice mail isn't enabled the behavior is incorrect.

** This bug has been marked a duplicate of bug 1512430
   [phone] Shouldn't be able to swipe away incoming call notification

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

Title:
  User can swipe the incoming call notification dialog

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  Incomplete

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

  
  Test Case:
  1. With DUT locked and display turned off, send a call to the DUT
  2. On DUT, when the incoming call notification is displayed, change the 
volume with the hardware buttons
  3. Wait until the answer dialog is displayed again and do a left edge swipe

  Aktual result
  User can swipe the incoming call notification dialog, leaving no way to take 
or reject the call.

  Expected result
  The dialog cannot be dismissed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1586955/+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 1586955] User can swipe the incoming call notificationdialog

2016-07-05 Thread Mike
*** This bug is a duplicate of bug 1512430 ***
https://bugs.launchpad.net/bugs/1512430

What do you mean with “voice mail”?
Sorry I didn't understand 

Su martedì 5 luglio 2016 21:03:34 CEST, Pat McGowan 
 ha scritto:
> *** This bug is a duplicate of bug 1512430 ***
> https://bugs.launchpad.net/bugs/1512430
> 
> Yes its a dupe
> @jibel I find I can swipe away the dialog at any time, without 
> changing volume, just by grabbing above or below the slider. For 
> me it results in the call going to voice mail, not continuing to 
> ring.On another bug we theorized perhaps if voice mail isn't 
> enabled the behavior is incorrect.
> 
> ** This bug has been marked a duplicate of bug 1512430
>[phone] Shouldn't be able to swipe away incoming call notification
> 


-- 
Inviato dal mio dispositivo Ubuntu

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

Title:
  User can swipe the incoming call notification dialog

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  Incomplete

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

  
  Test Case:
  1. With DUT locked and display turned off, send a call to the DUT
  2. On DUT, when the incoming call notification is displayed, change the 
volume with the hardware buttons
  3. Wait until the answer dialog is displayed again and do a left edge swipe

  Aktual result
  User can swipe the incoming call notification dialog, leaving no way to take 
or reject the call.

  Expected result
  The dialog cannot be dismissed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1586955/+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 1590838] Re: scheduled shutdown -r does not work without dbus in xenial LXC container

2016-07-05 Thread Martin Pitt
** Also affects: landscape-client (Ubuntu Xenial)
   Importance: Undecided
   Status: New

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

** Also affects: landscape-client (Ubuntu Yakkety)
   Importance: Undecided
   Status: New

** Also affects: systemd (Ubuntu Yakkety)
   Importance: Undecided
   Status: Won't Fix

** Changed in: systemd (Ubuntu Yakkety)
   Status: Won't Fix => Fix Released

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

** Changed in: systemd (Ubuntu)
   Status: Won't Fix => Fix Released

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

Title:
  scheduled shutdown -r  does not work without dbus in xenial LXC
  container

Status in Landscape Client:
  In Progress
Status in landscape-client package in Ubuntu:
  New
Status in systemd package in Ubuntu:
  Fix Released
Status in landscape-client source package in Xenial:
  New
Status in systemd source package in Xenial:
  Won't Fix
Status in landscape-client source package in Yakkety:
  New
Status in systemd source package in Yakkety:
  Fix Released

Bug description:
  The command "shutdown -r +5" doesn't work in a xenial lxc container. I
  found this out by trying to use Landscape to restart a xenial lxc
  container and the operation failed. I was told by the Landscape team
  that the restart button simply does a "shutdown -r +5".

  The problem seems to be that the dbus package is missing in the xenial
  lxc image.

  This is what happens:

  root@xenialtest:/# shutdown -r +5
  Failed to connect to bus: No such file or directory
  Failed to connect to bus: No such file or directory

  And if I install dbus:

  root@xenialtest:/# shutdown -r +5
  Shutdown scheduled for Wed 2016-06-08 19:28:44 UTC, use 'shutdown -c' to 
cancel.

  The issue happens whether I use the download template or the ubuntu
  template when creating the LXC container:

  root@davecorelaptop:/var/cache/lxc# lxc-create -t ubuntu -n test2
  root@davecorelaptop:/var/cache/lxc# lxc-start -d -n test2
  root@davecorelaptop:/var/cache/lxc# lxc-attach -n test2

  root@test2:/# lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Codename: xenial

  root@test2:/# shutdown -r +5
  Failed to connect to bus: No such file or directory
  Failed to connect to bus: No such file or directory

  
  or

  
  root@davecorelaptop:~# lxc-create -t download -n test
  Setting up the GPG keyring
  Downloading the image index

  ---
  DIST  RELEASE ARCHVARIANT BUILD
  ---
  alpine3.0 amd64   default 20160608_18:03
  alpine3.0 i386default 20160608_17:50
  alpine3.1 amd64   default 20160608_17:50
  alpine3.1 i386default 20160608_18:03
  alpine3.2 amd64   default 20160608_17:50
  alpine3.2 i386default 20160608_17:50
  alpine3.3 amd64   default 20160608_17:50
  alpine3.3 i386default 20160608_17:50
  alpineedgeamd64   default 20160608_17:50
  alpineedgei386default 20160608_17:50
  centos6   amd64   default 20160609_02:16
  centos6   i386default 20160609_02:16
  centos7   amd64   default 20160609_02:16
  debianjessie  amd64   default 20160608_22:42
  debianjessie  arm64   default 20160609_02:38
  debianjessie  armel   default 20160608_22:42
  debianjessie  armhf   default 20160608_22:42
  debianjessie  i386default 20160608_22:42
  debianjessie  powerpc default 20160608_22:42
  debianjessie  ppc64el default 20160608_22:42
  debianjessie  s390x   default 20160608_22:42
  debiansid amd64   default 20160608_22:42
  debiansid arm64   default 20160608_22:42
  debiansid armel   default 20160608_22:42
  debiansid armhf   default 20160608_22:42
  debiansid i386default 20160608_22:42
  debiansid powerpc default 20160608_22:42
  debiansid ppc64el default 20160608_22:42
  debiansid s390x   default 20160608_22:42
  debianstretch amd64   default 20160608_22:42
  debianstretch arm64   default 20160608_22:42
  debianstretch armel   default 20160608_22:42
  debianstretch armhf   default 20160608_22:42
  debianstretch i386default 20160608_22:42
  debianstretch powerpc default 20160608_22:42
  debianstretch ppc64el default 20160608_22:42
  debianstretch s390x   default 20160608_22:42
  debianwheezy  amd64   default 20160608_22:42
  debianwheezy  armel   default 20160608_22:42
  debianwheezy  armhf   default 20160608_22:42
  debianwheezy  i386default 20160608_22:42
  debian 

Re: [Touch-packages] [Bug 1586955] User can swipe the incoming call notificationdialog

2016-07-05 Thread Mike
*** This bug is a duplicate of bug 1512430 ***
https://bugs.launchpad.net/bugs/1512430

Yeah.
I didn't see this bug

Su martedì 5 luglio 2016 18:13:16 CEST, Michal Predotka 
 ha scritto:
> Isn't this bug a duplicate of bug #1512430 ?
> 


-- 
Inviato dal mio dispositivo Ubuntu

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

Title:
  User can swipe the incoming call notification dialog

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  Incomplete

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

  
  Test Case:
  1. With DUT locked and display turned off, send a call to the DUT
  2. On DUT, when the incoming call notification is displayed, change the 
volume with the hardware buttons
  3. Wait until the answer dialog is displayed again and do a left edge swipe

  Aktual result
  User can swipe the incoming call notification dialog, leaving no way to take 
or reject the call.

  Expected result
  The dialog cannot be dismissed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1586955/+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 1596698] Re: Strange font issue after awakening from suspend

2016-07-05 Thread Launching Dumplings
Upstream said it's likely to be a driver problem, where should I report
this issue then? And is there any way to reload the driver or something
to fix this issue without having to completely restart the machine as it
is a bit annoying?

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

Title:
  Strange font issue after awakening from suspend

Status in GTK+:
  Unknown
Status in Ubuntu GNOME:
  Confirmed
Status in gtk+3.0 package in Ubuntu:
  Triaged

Bug description:
  When I awoke my computer from suspend last week on Thursday
  (23/06/2016) I found that all the text from all the title bars was
  missing, so I restarted gnome-shell as this normally fixes such
  problems, doing so seemed to make some text appear, but most not, as
  you can see from these images until I restarted my machine it was
  almost impossible to use:

  System_Monitor_No_Text.png
  Shutter_Main_Window_Font_Issue.png
  File_Chooser_Font_Issue.png
  Title_Bar_Partly_Missing.png
  Settings_Text_Issue.png

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: libgtk-3-0 3.20.6-1ubuntu1~ppa1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Mon Jun 27 21:23:02 2016
  InstallationDate: Installed on 2016-05-15 (43 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  SourcePackage: gtk+3.0
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/1596698/+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 1494889] Re: Play movies directly from Scope

2016-07-05 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

** Changed in: canonical-devices-system-image
Milestone: backlog => 12

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

Title:
  Play movies directly from Scope

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

Bug description:
  Hello,
  I think that instead of launching web browser, scopes should have possibility 
to play movies (local and from web (like YouTube)) directly from them. Example 
- I want to see some trailer of new movie from Film scope. I click and it 
launch web browser - and that's the part that makes me sad. Better would be to 
see movie from scope; if I need more information - I will click to open web 
browser and  get info about it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1494889/+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 1494889] Re: Play movies directly from Scope

2016-07-05 Thread Krzysztof Tataradziński
Does that fix mean that now we can watch YouTube videos directly from
YouTube Scope?

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

Title:
  Play movies directly from Scope

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

Bug description:
  Hello,
  I think that instead of launching web browser, scopes should have possibility 
to play movies (local and from web (like YouTube)) directly from them. Example 
- I want to see some trailer of new movie from Film scope. I click and it 
launch web browser - and that's the part that makes me sad. Better would be to 
see movie from scope; if I need more information - I will click to open web 
browser and  get info about it.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1494889/+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 1588349] Re: Checking for updates never finishes on 3G

2016-07-05 Thread Pat McGowan
I reproduced one case where there was an update available but something
may have failed during the download so the UI got into a confused state
with several different symptoms, the first was to get stuck on the
spinner indefinitely. Renetering the panel showed an already downloaded
system update.

So perhaps just generally racy logic. There is a rewrite of this panel
in progress to address similar symptoms.

** Changed in: ubuntu-system-settings (Ubuntu)
 Assignee: (unassigned) => Jonas G. Drange (jonas-drange)

** Changed in: canonical-devices-system-image
 Assignee: John McAleely (john.mcaleely) => Bill Filler (bfiller)

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

Title:
  Checking for updates never finishes on 3G

Status in Canonical System Image:
  Incomplete
Status in qtbase-opensource-src package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  If I'm using wi-fi and go to settings and then select updates, "Checking for 
updates..." screen appears with a spinner for a few seconds; if there is any 
update available it shows, otherwise informs about the unavailability of 
updates.
  But while using mobile data (3G/H) *if there is no update available*, it gets 
stuck on the "Checking for updates..." screen and the spinner keeps spinning. I 
waited as long as 10-15 minutes.
  Note: If there is an update available then the behaviour is normal, i.e. 
shows the available update(s) after a few seconds.
  I'm seeing this behaviour from the very beginning (OTA-6 days).

  Related to bug #1528886

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588349/+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 1588349] Re: Checking for updates never finishes on 3G

2016-07-05 Thread Pat McGowan
@anupam what is your auto download setting?

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

Title:
  Checking for updates never finishes on 3G

Status in Canonical System Image:
  Incomplete
Status in qtbase-opensource-src package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  If I'm using wi-fi and go to settings and then select updates, "Checking for 
updates..." screen appears with a spinner for a few seconds; if there is any 
update available it shows, otherwise informs about the unavailability of 
updates.
  But while using mobile data (3G/H) *if there is no update available*, it gets 
stuck on the "Checking for updates..." screen and the spinner keeps spinning. I 
waited as long as 10-15 minutes.
  Note: If there is an update available then the behaviour is normal, i.e. 
shows the available update(s) after a few seconds.
  I'm seeing this behaviour from the very beginning (OTA-6 days).

  Related to bug #1528886

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588349/+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 1583057] Re: Deny audio recording for all snap applications

2016-07-05 Thread Jamie Strandboge
** Changed in: pulseaudio (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: pulseaudio (Ubuntu Xenial)
 Assignee: (unassigned) => Simon Fels (morphis)

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

Title:
  Deny audio recording for all snap applications

Status in pulseaudio package in Ubuntu:
  Fix Released
Status in pulseaudio source package in Xenial:
  In Progress
Status in pulseaudio source package in Yakkety:
  Fix Released

Bug description:
  Until we have a proper trust-store implementation with snappy and on
  the desktop/ubuntu core we want pulseaudio to simply deny any audio
  recording request coming from an app shipped as part of a snap.

  The implementation adds a module-snappy-policy module to pulseaudio
  which adds a hook for audio recording requests and checks on
  connection if the apparmor security label of the connecting peer
  starts with "snap." which will identify it as a snap application.

  Pulseaudio with the patch is available as part of the landing request
  at https://requests.ci-train.ubuntu.com/#/ticket/1428

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1583057/+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 1596698] Re: Strange font issue after awakening from suspend

2016-07-05 Thread Launching Dumplings
This issue has now occurred again after awakening from a suspend.

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

Title:
  Strange font issue after awakening from suspend

Status in GTK+:
  Unknown
Status in Ubuntu GNOME:
  Confirmed
Status in gtk+3.0 package in Ubuntu:
  Triaged

Bug description:
  When I awoke my computer from suspend last week on Thursday
  (23/06/2016) I found that all the text from all the title bars was
  missing, so I restarted gnome-shell as this normally fixes such
  problems, doing so seemed to make some text appear, but most not, as
  you can see from these images until I restarted my machine it was
  almost impossible to use:

  System_Monitor_No_Text.png
  Shutter_Main_Window_Font_Issue.png
  File_Chooser_Font_Issue.png
  Title_Bar_Partly_Missing.png
  Settings_Text_Issue.png

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: libgtk-3-0 3.20.6-1ubuntu1~ppa1 [origin: 
LP-PPA-gnome3-team-gnome3-staging]
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Mon Jun 27 21:23:02 2016
  InstallationDate: Installed on 2016-05-15 (43 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Release amd64 
(20151021)
  SourcePackage: gtk+3.0
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/1596698/+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 1588349] Re: Checking for updates never finishes on 3G

2016-07-05 Thread Pat McGowan
I managed to repro it at 16:09 and 16:19 in the following log from
system-image. I got it both with download anytime and download wifi only
so that seems to not be related.

After 10 mins system-image reported a timeout error which resulted in
"Software is up to date" while a timeout error should really be reported
in the UI.


** Attachment added: "client.log"
   
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588349/+attachment/4696044/+files/client.log

** Also affects: system-image (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: qtbase-opensource-src (Ubuntu)

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

Title:
  Checking for updates never finishes on 3G

Status in Canonical System Image:
  Incomplete
Status in system-image package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  If I'm using wi-fi and go to settings and then select updates, "Checking for 
updates..." screen appears with a spinner for a few seconds; if there is any 
update available it shows, otherwise informs about the unavailability of 
updates.
  But while using mobile data (3G/H) *if there is no update available*, it gets 
stuck on the "Checking for updates..." screen and the spinner keeps spinning. I 
waited as long as 10-15 minutes.
  Note: If there is an update available then the behaviour is normal, i.e. 
shows the available update(s) after a few seconds.
  I'm seeing this behaviour from the very beginning (OTA-6 days).

  Related to bug #1528886

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588349/+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 1598680] Re: Share icon isn't discoverable by first glance since bottom bar is hidden

2016-07-05 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Alejandro J. Cura (alecu)

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

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

Title:
  Share icon isn't discoverable by first glance since bottom bar is
  hidden

Status in Canonical System Image:
  Confirmed
Status in unity-scope-mediascanner package in Ubuntu:
  New

Bug description:
  current build number: 375
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2016-07-04 10:27:43
  version version: 375
  version ubuntu: 20160702
  version device: 20160606-ab415b2
  version custom: 20160701-981-38-14

  steps:
  1.Go to Video scope
  2.Select a local video and open to preview page
  3.Check the thumbnal of the video

  actual:
  Bottom bar only appears until user tapping on thumbnail, that user cannot 
find the share icon by first glance.

  expected:
  Display the bottom bar by default, like my photo scope did

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598680/+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 1588349] Re: Checking for updates never finishes on 3G

2016-07-05 Thread Anupam
@Pat wi-fi only

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

Title:
  Checking for updates never finishes on 3G

Status in Canonical System Image:
  Incomplete
Status in qtbase-opensource-src package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  If I'm using wi-fi and go to settings and then select updates, "Checking for 
updates..." screen appears with a spinner for a few seconds; if there is any 
update available it shows, otherwise informs about the unavailability of 
updates.
  But while using mobile data (3G/H) *if there is no update available*, it gets 
stuck on the "Checking for updates..." screen and the spinner keeps spinning. I 
waited as long as 10-15 minutes.
  Note: If there is an update available then the behaviour is normal, i.e. 
shows the available update(s) after a few seconds.
  I'm seeing this behaviour from the very beginning (OTA-6 days).

  Related to bug #1528886

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588349/+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 1586673] Re: Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS

2016-07-05 Thread Matthias Klose
wcsaxes is now fixed, see LP: #1598152.

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

Title:
  Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS

Status in binutils package in Ubuntu:
  Fix Released
Status in gcc-5 package in Ubuntu:
  Fix Committed
Status in binutils source package in Xenial:
  Fix Committed
Status in gcc-5 source package in Xenial:
  Fix Committed

Bug description:
  Backport GCC 5.4.0 and binutils 2.26.1 to 16.04 LTS.  16.04 LTS ships
  binutils and gcc-5 versions taken from the release branches, which saw
  more regression fixes and support for new hardware until the 5.4.0 and
  2.26.1 point releases. The idea is to include these final point
  releases into 16.04.1 LTS, with test rebuilds done for all packages,
  and regression checks for seeded packages.

  Acceptance criteria should be no regressions for the seeded packages,
  plus a best effort for unseeded packages.  During the analysis of the
  build failures, one gcc regression (libstdc++ header reorg) was found
  and reverted, and validated, that these build failures are fixed (plus
  affected seeded packages were uploaded to xenial-proposed anyway).

  reference test rebuild:
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-baseline-xenial.html

  test rebuild (xenial-release):
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-xenial.html

  test rebuild (xenial-updates):
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-updates-xenial.html

  The test rebuild was done using packages from the ubuntu-
  toolchain-r/ppa.

  Attached is an analysis of the build failures, and whether they are
  regressions, or already are present in the xenial release.

  main component
  ==

  bzr
LP: #1592731, fixed in -proposed
  ecj
LP: #1592801, fixed in -updates
  freerdp
not a regression
  gcc-5-cross
needs update after gcc-5 acceptance
  gnutls28
LP: #1592693, fixed in -updates
  kmod
unrelated, tracked in LP: #1592722
  libnih
not a regression
  llvm-toolchain-3.6
not a regression
  migrate
unrelated (mysql-5.7), tracked in LP: #1592663
  neon27 (s390x)
unrelated, traked in LP: #1592698
  openvswitch
not a regression, tracked in LP: #1592793
  python-pymysql
unrelated (mysql-5.7), tracked in LP: #1592664
  python-tooz
unrelated, tracked in LP: #1592660
  sbsigntool
not a regression
  shim
not a regression
  strongswan
racy test, unrelated, tracked in LP: #1592706
  ubuntu-defaults-builder
unrelated, LP: #1597370, waiting for approval
  upstart
not a regression
  whoopsie
LP: #1592649, fixed in -updates
  yaboot
not a regression

  bzr package set
  ===

  bzr-builder
  bzr-upload
no regressions

  cli-mono package set
  

  gbrainy
  ikvm
  monodevelop
  tangerine
no regressions

  desktop-extra package set
  =

  java-gnome
not a regressions

  edubuntu package set
  

  atomix
  gbrainy
no regressions

  input-methods package set
  =

  fcitx-table-other
  libkkc
no regressions

  kubuntu package set (minus packages from main)
  ==

  avogadro
not a regression
  eigen2
not a regression
  fam
not a regression
  farstream-0.2
not a regression
  gst-plugins-base0.10
not a regression
  gst-plugins-good0.10
not a regression
  gstreamer0.10
not a regression
  kqoauth
not a regression
  kubuntu-web-shortcuts
not a regression
  libmpc
not a regression
  libmygpo-qt
not a regression
  libspe2
not a regression
  networkmanager-qt
obsoleted by version in -updates
  plotutils
not a regression
  qtcurve
not a regression
  tbb
not a regression
  telepathy-haze
not a regression
  telepathy-qt
not a regression

  
  lubuntu package set
  

  hardinfo
not a regression
  libguess
not a regression

  mozilla package set
  

  eclipse
  xiphos
no regressions

  mythbuntu package set
  =

  piston-mini-client
not a regression

  schooltool package set
  ==

  schooltool-book
not a regression

  ubuntu-cloud package set
  

  virtualbox
needs fix for bad GCC version check, in progress (LocutusOfBorg)

  ubuntu-qt-packages package set
  ==

  ciborium
not a regression

  ubuntukylin package set
  ===

  libguess
  piston-mini-client
  

[Touch-packages] [Bug 1597205] Re: Not sending relative mouse events to clients

2016-07-05 Thread Daniel d'Andrada
** Changed in: qtmir
   Status: Triaged => In Progress

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

Title:
  Not sending relative mouse events to clients

Status in QtMir:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  QtMir is not sending relative mouse movements in mouse events.

  Relevant code from mirsurface.cpp:

  
  mir::EventUPtr makeMirEvent(QMouseEvent *qtEvent, MirPointerAction action)
  {
  auto timestamp = 
uncompressTimestamp(qtmir::Timestamp(qtEvent->timestamp()));
  auto modifiers = getMirModifiersFromQt(qtEvent->modifiers());
  auto buttons = getMirButtonsFromQt(qtEvent->buttons());

  return mir::events::make_event(0 /*DeviceID */, timestamp, 
std::vector{} /* cookie */, modifiers, action,
 buttons, qtEvent->x(), qtEvent->y(), 0, 0, 
0, 0);

  
  The last 2 parameters in the make_event call should be the relative x & y 
motion.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qtmir/+bug/1597205/+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 1597615] Re: The cellular data option in network indicator is disabled after turning on and turning off the flight mode.

2016-07-05 Thread Pat McGowan
** 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 indicator-network in
Ubuntu.
https://bugs.launchpad.net/bugs/1597615

Title:
  The cellular data option in network indicator is disabled after
  turning on and turning off the flight mode.

Status in Canonical System Image:
  Fix Committed
Status in indicator-network package in Ubuntu:
  In Progress

Bug description:
  Information:
  current build number: 371
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2016-06-29 05:04:34
  version version: 371
  version ubuntu: 20160629
  version device: 20160606-ab415b2
  version custom: 2

  Precondition:
  SIM card is inserted and Cellular data is open.

  Steps:
  1.Pull down the network indicator,and turn on flight mode toggle.
  2.After a few seconds turn  off the flight mode and check the cellular data 
option.

  Actual result:
  The state is on but option bar is disable and cannot be tapping. Go to 
cellular settings page, it works fine there.

  Expected result:
  The cellular data option should be still enabled after turn on and turning 
off the flight mode.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1597615/+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 1557026] Re: [SRU]Network Manager sets powersave off by default in xenial

2016-07-05 Thread Aron Xu
** Changed in: network-manager (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  [SRU]Network Manager sets powersave off by default in xenial

Status in network-manager package in Ubuntu:
  In Progress

Bug description:
  [Impact]
  NetworkManager consumes more power than previous releases because powersave 
support is not updated.

  [Test Case]
  With the patch applied, network device power management should be on when 
supported, for example:

  $ sudo iwconfig wlan0 | grep "Power Management"
Power Management:on

  [Regression Potential]
  Regression may happen when the power management feature of certain device 
isn't implemented properly in kernel, but since we are quite conservative on 
enabling power management in kernel development such case should be rare.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1557026/+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 1582803] Re: [SRU]bug report script uses invalid nm options

2016-07-05 Thread Aron Xu
** Changed in: network-manager (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  [SRU]bug report script uses invalid nm options

Status in network-manager package in Ubuntu:
  In Progress

Bug description:
  [Impact]
  Xenial reports have those warnings "Error: Object 'nm' is unknown, try 'nmcli 
help'." the "nm-cli" syntax changed and the hook needs to be updated

  [Test Case]
  Future apport report to errors.ubuntu.com should have proper information 
output from nmcli command, rather than throwing an error message.

  [Regression Potential]
  This is a simple change of the command line option on information collection, 
which should be safe.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1582803/+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 1587965] Re: [OTA11][m10] long swipe or home button doesn't "mazimize" dash

2016-07-05 Thread Joan CiberSheep
Sorry for my confusing explanations ;)

I am not sure if that behavior is the intended as the phone works in a
different way (also tablet until OTA10).

If it is then I might have to merge this bug with:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598957.


In resume: the behavior on OTA11 is confusing for me because:
 long swipe from the left in App Spread
  -in tablet moves the app to the left (keeps app spread) and shows Today Scope.
  -in phone opens full size Today Scope

 long swipe from the left in full view
   -in tablet and phone does nothing if in any scope (except if in an Today 
Scope "section", ie: if tap on Weather from Today Scope or Scope has been 
opened from bottom swipe)
   -in tablet and phone shows full size Today Scope if in an app

I hope is a bit clear.

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

Title:
  [OTA11][m10] long swipe or home button doesn't "mazimize" dash

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  1) swipe from outside of the screen from the right to get the apps that are 
opened
  2) outside long swipe from the left, moves the most left app to move to the 
right but it doesn't "maximize" main scope.
  3) outside short swipe from the left shows dash but tapping on home button 
has no effect (before it was "maximizing" main scope)

  PS: All in all good work, OTA 11 feels really faster!

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1587965/+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 1593686] Re: Wi-Fi passphrase limit introduced in OTA-11

2016-07-05 Thread Albert Astals Cid
Agreeing with Pete, this morning i was having trouble connecting to my
wifi that uses a very long and random password until i copied and pasted
it so on next dialog i could just paste it (and then it worked) (FWIW i
*think* i may have similar issues in the desktop too)

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

Title:
  Wi-Fi passphrase limit introduced in OTA-11

Status in Canonical System Image:
  Incomplete
Status in network-manager package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  After installing OTA-11, connectivity to a Cisco AP1131AG AP (IOS
  12.4-25d.JA2) stopped working, possibly due to the length of the WPA
  pass-phrase, which was 29 characters long.  The pass-phrase
  requirement is from 8 to 63 characters.  After reducing the pass-
  phrase to 14 (and sometimes 15) characters connectivity is restored.

  Attempting to connect to a Cisco 1702i (IOS 15.3-3.JC1) which has both
  802.11 ac (wave 1) and 802.11n radios has similar problems: (a) it
  cannot "see" the 802.11ac radio at all (interface Dot11Radio0) and
  although it "sees" the 802.11n radio (interface Dot11Radio1) it cannot
  connect.  The pass-phrase length requirement on both radios is 18 to
  128 characters.

  In both cases the Cisco APs do not log any event.

  Prior to OTA 11 connectivity worked normally on OTA 10.1

  OS: Ubuntu 15.04 (OTA-11) on BQ Aquaris E5

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1593686/+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 1596878] Re: Mouse flickering and mouse trails with DL screen attached

2016-07-05 Thread Christopher M. Penalver
Christina Lena Korosec, to see if this already resolved, could you
please test http://cdimage.ubuntu.com/daily-live/current/ and advise to
the results?

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

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

Title:
  Mouse flickering and mouse trails with DL screen attached

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  When attaching a screen on a DisplayLink device, the cursor will
  flicker on all non-DisplayLink screens. Additionally, the cursor will
  leave trails over various UI elements that update as the cursor passes
  (such as buttons, menus, progress bars, etc.)

  The issue occurs only when a DisplayLink device is attached and
  driving a display. However, DisplayLink told me the issue is not
  specific to their hardware, and to make a bug report here.

  Additional details:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Linux 4.4.0-24-generic
  DisplayLink 1.1.62 driver
  radeon/intel hybrid graphics
  xorg:
Installed: 1:7.7+13ubuntu3

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,move,imgpng,grid,vpswitch,place,session,unitymtgrabhandles,mousepoll,regex,gnomecompat,compiztoolbox,resize,animation,snap,workarounds,expo,wall,fade,ezoom,scale,unityshell]
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Tue Jun 28 11:26:02 2016
  DistUpgraded: 2016-06-08 13:08:40,498 DEBUG enabling apt cron job
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company 4th Gen Core Processor Integrated 
Graphics Controller [103c:1993]
   Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8730M] [1002:6601] 
(rev ff) (prog-if ff)
  InstallationDate: Installed on 2011-10-13 (1719 days ago)
  InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427)
  MachineType: Hewlett-Packard HP ProBook 650 G1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-24-generic 
root=UUID=b5298a65-447e-427d-8dbd-73939ed8edd7 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-06-08 (19 days ago)
  dmi.bios.date: 07/20/2015
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L77 Ver. 01.33
  dmi.board.name: 1993
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 16.3C
  dmi.chassis.asset.tag: 5CG4382GHB
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL77Ver.01.33:bd07/20/2015:svnHewlett-Packard:pnHPProBook650G1:pvrA3008DD10B03:rvnHewlett-Packard:rn1993:rvrKBCVersion16.3C:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 650 G1
  dmi.product.version: A3008DD10B03
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental 
9.2.0~git20131002+9.2.2eb55601-0ubuntu0sarvatt~precise
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Tue Jun 28 10:09:06 2016
  xserver.configfile: default
  xserver.errors:
   RADEON(G0): [XvMC] Failed to initialize extension.
   modeset(G1): glamor initialization failed
   modeset(G2): glamor initialization failed
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5699 
   vendor ACI
  xserver.version: 2:1.18.3-1ubuntu2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1596878/+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 1580908] Re: Sim lock screen doesn't appear after restarting the device

2016-07-05 Thread Pete Woods
** Changed in: indicator-network (Ubuntu)
   Status: Fix Released => Invalid

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

Title:
   Sim lock screen doesn't appear after restarting the device

Status in Canonical System Image:
  In Progress
Status in indicator-network package in Ubuntu:
  Invalid
Status in ofono package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  From https://bugs.launchpad.net/zhongshan/+bug/1572886

  current build number: 4
  device name: turbo
  channel: ubuntu-touch/rc/meizu.en
  last update: 2016-04-19 10:38:50
  version version: 4
  version ubuntu: 20160418
  version device: 20160412-d272a77
  version custom: 20160324-945-18-69

  Steps:
  1.turn on sim pin lock
  2.reboot the device
  3.swipe to dismiss the greeter

  Actual result:
  phone lock screen is displayed

  Expected result:
  sim lock screen should appear before the phone lock screen

  It also happens sometimes on arale without any pattern to reproduce,
  just random on reboot.

  =

  After debugging it seems that this is caused by ofono removing the
  modems in the middle of the unlock process. You can see the difference
  for Turbo and Krillin below.

  Log for Turbo: http://paste.ubuntu.com/1147/

  Log for Krillin: http://paste.ubuntu.com/16675431/

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1580908/+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 1599126] [NEW] On return from a previous Log Out, Wi-Fi fails to restore.

2016-07-05 Thread David Chatterton
Public bug reported:

When returning from a previous Log Out, the previously connected Wi-Fi
fails to reconnect.

In contrast, when rebooting or performing a restart, the system connects
to the previously connected Wi-Fi.

Although the Enable Wi-Fi drop-down menu item is ticked, the connect
button on the appropriate panel is greyed out.

The only practical solution is to perform a restart which restores the
Wi-Fi connection without further action.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  On return from a previous Log Out, Wi-Fi fails to restore.

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  When returning from a previous Log Out, the previously connected Wi-Fi
  fails to reconnect.

  In contrast, when rebooting or performing a restart, the system
  connects to the previously connected Wi-Fi.

  Although the Enable Wi-Fi drop-down menu item is ticked, the connect
  button on the appropriate panel is greyed out.

  The only practical solution is to perform a restart which restores the
  Wi-Fi connection without further action.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1599126/+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 1578011] Re: Laptop sometimes doesn't detect external monitor when docked

2016-07-05 Thread Christopher M. Penalver
vik, as per http://support.lenovo.com/us/en/products/Laptops-and-
netbooks/ThinkPad-Yoga-Series-laptops/ThinkPad-
Yoga/20C0/S1CWAU?linkTrack=GPS%253ABody_Search%2BProducts==false
an update to your computer's buggy, insecure, and outdated BIOS is
available (1.29). When you update to this following
https://help.ubuntu.com/community/BIOSUpdate how does this improve the
situation?

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful.

Also, you don't have to create a new bug report.

Once the BIOS is updated, if the problem is still reproducible:
1) Please provide the output of the following terminal command (not perform an 
apport-collect):
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date
2) Please make a comment specifically advising on if there was an improvement 
or not.
3) Please mark this report Status New.

If it's not reproducible, please mark this as Invalid.

Thank you for your help.

** Tags added: bios-outdated-1.29

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

Title:
  Laptop sometimes doesn't detect external monitor when docked

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Lenovo Thinkpad Yoga S1 sometimes doesn't detect external monitor when
  docked with a Onelink Pro dock. Problem has also occurred on a non-Pro
  OneLink dock.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  BootLog: /dev/sda1: clean, 860723/30769152 files, 38024704/123073521 blocks
  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: Wed May  4 11:47:20 2016
  DistUpgraded: 2016-04-23 16:11:36,997 DEBUG icon theme changed, re-reading
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.18, 4.2.0-35-generic, x86_64: installed
   virtualbox, 5.0.18, 4.4.0-21-generic, x86_64: installed
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
     Subsystem: Lenovo Haswell-ULT Integrated Graphics Controller [17aa:2217]
  InstallationDate: Installed on 2015-12-02 (153 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: LENOVO 20C0S1CWAU
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-21-generic 
root=UUID=bbf6846f-7622-4638-8e7e-286b6badb71d ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-04-23 (10 days ago)
  dmi.bios.date: 01/14/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GQET48WW (1.28 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20C0S1CWAU
  dmi.board.vendor: LENOVO
  dmi.board.version: 0B98417 PRO
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrGQET48WW(1.28):bd01/14/2016:svnLENOVO:pn20C0S1CWAU:pvrThinkPadS1Yoga:rvnLENOVO:rn20C0S1CWAU:rvr0B98417PRO:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20C0S1CWAU
  dmi.product.version: ThinkPad S1 Yoga
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Wed May  4 08:27:55 2016
  xserver.configfile: default
  xserver.errors:
   Wacom ISDv4 EC Pen stylus: Invalid type 'cursor' for this device.
   Wacom ISDv4 EC Pen stylus: Invalid type 'touch' for this device.
   Wacom ISDv4 EC Pen stylus: Invalid type 'pad' for this device.
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1079
   vendor LGD
  xserver.version: 2:1.18.3-1ubuntu2

To manage notifications 

[Touch-packages] [Bug 1593686] Re: Wi-Fi passphrase limit introduced in OTA-11

2016-07-05 Thread Pete Woods
This sounds like a timeout issue in the comms between the secret agent
(the program that presents the dialog to the user) and indicator-
network.

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

Title:
  Wi-Fi passphrase limit introduced in OTA-11

Status in Canonical System Image:
  Incomplete
Status in network-manager package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  After installing OTA-11, connectivity to a Cisco AP1131AG AP (IOS
  12.4-25d.JA2) stopped working, possibly due to the length of the WPA
  pass-phrase, which was 29 characters long.  The pass-phrase
  requirement is from 8 to 63 characters.  After reducing the pass-
  phrase to 14 (and sometimes 15) characters connectivity is restored.

  Attempting to connect to a Cisco 1702i (IOS 15.3-3.JC1) which has both
  802.11 ac (wave 1) and 802.11n radios has similar problems: (a) it
  cannot "see" the 802.11ac radio at all (interface Dot11Radio0) and
  although it "sees" the 802.11n radio (interface Dot11Radio1) it cannot
  connect.  The pass-phrase length requirement on both radios is 18 to
  128 characters.

  In both cases the Cisco APs do not log any event.

  Prior to OTA 11 connectivity worked normally on OTA 10.1

  OS: Ubuntu 15.04 (OTA-11) on BQ Aquaris E5

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1593686/+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 1598973] Re: No way to set a background image on a scope

2016-07-05 Thread Pawel Stolowski
This is currently "by design", I'm not sure if there are any plans to
support background images, adding to UX.

** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

** Changed in: unity-scopes-api (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  No way to set a background image on a scope

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

Bug description:
  A scope header may have a custom background image (by setting
  PageHeader.Background in the scope.ini file), but the main body of a
  scope cannot. One can set a custom background _colour_ on the scope
  body, but not an image.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1598973/+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 1557026] Re: [SRU]Network Manager sets powersave off by default in xenial

2016-07-05 Thread Aron Xu
** Summary changed:

- Network Manager sets powersave off by default in xenial
+ [SRU]Network Manager sets powersave off by default in xenial

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

Title:
  [SRU]Network Manager sets powersave off by default in xenial

Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  Nwetwork Manager sets Power Management:off in iwconfig by default.

  It can be changed per connection by adding powersave=1.

  In 14.04 powersave was set on by default and could be disabled per connection.
  That seemed to be reasonable.

  If the default has been changed for some reason, it is better to make a NM 
global setting.
  It is not handy to change every connection manually, and most users will not 
be able to do it.

  After upgrade to 16.04 power consumption will increase.

  It is also funny that pm-tools set powersave on, but NM reverts this
  setting.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: network-manager 1.0.4-0ubuntu10
  ProcVersionSignature: Ubuntu 4.4.0-12.28-generic 4.4.4
  Uname: Linux 4.4.0-12-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Mar 14 18:41:38 2016
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2016-02-29 (13 days ago)
  InstallationMedia: Ubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 
(20160217.1)
  IpRoute:
   default via 192.168.1.1 dev wlan0  proto static  metric 600 
   169.254.0.0/16 dev wlan0  scope link  metric 1000 
   192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.125  
metric 600
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to xenial on 2016-03-12 (1 days ago)
  modified.conffile..etc.NetworkManager.NetworkManager.conf: [modified]
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2016-03-13T01:40:30.748775
  nmcli-dev:
   DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   wlan0   wifi  connected/org/freedesktop/NetworkManager/Devices/1  
Voxnet  eafa9e18-fa85-4d9a-a705-6a3e97a45fbc  
/org/freedesktop/NetworkManager/ActiveConnection/1 
   eth0ethernet  unavailable  /org/freedesktop/NetworkManager/Devices/2  -- 
 ----   
  
   lo  loopback  unmanaged/org/freedesktop/NetworkManager/Devices/0  -- 
 ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1557026/+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 1598770] Re: Unity in low-graphics mode has animations and unneded redraws

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~unity-team/unity/x-sru2

** Branch linked: lp:~ci-train-bot/unity/unity-ubuntu-xenial-landing-063

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

Title:
  Unity in low-graphics mode has animations and unneded redraws

Status in compiz package in Ubuntu:
  In Progress
Status in nux package in Ubuntu:
  In Progress
Status in unity package in Ubuntu:
  In Progress

Bug description:
  When unity is in Low graphics mode (because of software rendering)
  there are still window animations and fade effects which we should get
  rid of.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1598770/+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 1594814] Re: NetworkManager looking for signal strength in 'wlan0' instead of the apropriate 'wlxc46e1f1abe34"

2016-07-05 Thread Max Lehmann
I added the bug to the GNOME bugzilla:
https://bugzilla.gnome.org/show_bug.cgi?id=768433

** Bug watch added: GNOME Bug Tracker #768433
   https://bugzilla.gnome.org/show_bug.cgi?id=768433

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

Title:
  NetworkManager looking for signal strength in 'wlan0' instead of the
  apropriate 'wlxc46e1f1abe34"

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  I get this error in my log a lot:
  "Jun 21 15:04:00 basspistol NetworkManager[834]:   [1466514240.9769] 
(wlan0): error getting signal strength: No such device"

  My wireless device (TP-Link 150Mbps Wireless N Nano USB Adapter) is
  getting a very funky name: "wlxc46e1f1abe34". It's not too much of a
  problem since the connection is established and working, but it
  renders the wifi-strength icon as if it was receiving maximum signal
  strength.

  Restarting the network-manager with: "sudo systemctl restart network-
  manager.service" solves the problem.

  Not sure if it is related, but i am also affected by this bug:
  https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1589401
  Even after upgrading to: network-manager-gnome:amd64 (1.2.0-0ubuntu0.16.04.1, 
1.2.0-0ubuntu0.16.04.3) on 2016-06-19

  Let me know if there is any complementary information i can provide.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: network-manager 1.2.0-0ubuntu0.16.04.2
  ProcVersionSignature: Ubuntu 4.4.0-24.43-lowlatency 4.4.10
  Uname: Linux 4.4.0-24-lowlatency x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Jun 21 15:04:46 2016
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2016-04-21 (60 days ago)
  InstallationMedia: Ubuntu-Studio 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  IpRoute:
   default via 10.42.0.1 dev wlxc46e1f1abe34  proto static  metric 600
   10.42.0.0/24 dev wlxc46e1f1abe34  proto kernel  scope link  src 10.42.0.22  
metric 600
   169.254.0.0/16 dev wlxc46e1f1abe34  scope link  metric 1000
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
  RfKill:

  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-dev:
   DEVICE   TYPE  STATEDBUS-PATH
  CONNECTION   CON-UUID  CON-PATH
   wlxc46e1f1abe34  wifi  connected
/org/freedesktop/NetworkManager/Devices/0  sakrecoer 1  
7bfae379-b282-4335-8bfe-f1f55229ad51  
/org/freedesktop/NetworkManager/ActiveConnection/0
   enp3s0   ethernet  unavailable  
/org/freedesktop/NetworkManager/Devices/1  --   --  
  --
   lo   loopback  unmanaged
/org/freedesktop/NetworkManager/Devices/2  --   --  
  --
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1594814/+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 1584284] Re: Ubuntu 16.04 LiveCD does not boot on AMD A10 chip

2016-07-05 Thread Christopher M. Penalver
Roger Merritt, to further narrow this down, could you please test the
latest mainline kernel (4.7-rc6) following
https://wiki.ubuntu.com/Kernel/MainlineBuilds and advise to the results?

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

Title:
  Ubuntu 16.04 LiveCD does not boot on AMD A10 chip

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I want to boot a Ubuntu LiveCD of 16.04 on a desktop box with an AMD 
A10-5800K AGP,  Gigabyte FA-42A75M-HD2 motherboard, 8 GB of RAM, and no 
graphics card -- the Radeon HD 7660D graphics are done by the CPU. When I try 
to boot I get an error message, "ERROR: no UMS support in radeon module." When 
I edit the boot command line to add the parameter 'nomodeset' I first get an 
error message, "No UMS support on radeon module," then the familiar aubergine 
background with the ubuntu logo and the five dots below it changing from white 
to red and back again. After twenty or thirty seconds the background goes to 
black, I get the error message "No UMS support in radeon module," and the 
ubuntu logo disappears but the five dots continue. After another twenty or 
thirty seconds of that the screen clears, at the top is a line: "ubuntu 16.04 
ubuntu LTS tty1," below that the line "ubuntu login:" and after a second or 
less the screen goes black and I can't do anything except reboot. I've tried 
old Liv
 e CDs, from 10.10 to 15.10, and they all boot fine.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu5
  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
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus: virtualbox, 5.0.14, 4.2.0-36-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7660D] [1002:9901] 
(prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 
7660D] [1002:9901]
  InstallationDate: Installed on 2016-06-07 (27 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-36-generic 
root=UUID=376cfbdb-7508-4e73-9b25-421ca397ab8a ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-36.42-generic 4.2.8-ckt8
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-36-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 03/18/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: F2A75M-HD2
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF4:bd03/18/2013:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnF2A75M-HD2:rvrTobefilledbyO.E.M.:cvnGigabyteTechnologyCo.,Ltd.: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: Gigabyte Technology Co., Ltd.
  version.compiz: compiz 1:0.9.12.2+15.10.20151202-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Jul  5 00:55:16 2016
  xserver.configfile: default
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inputPower Button KEYBOARD, id 7
   inputUSB Optical Wheel Mouse MOUSE, id 8
   inputLogitech USB Keyboard KEYBOARD, id 9
   inputLogitech USB Keyboard KEYBOARD, id 10
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  

[Touch-packages] [Bug 1598917] Re: windows on external display are displaced when OSK appears on phone

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~mzanetti/unity8/no-displace-when-external

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

Title:
  windows on external display are displaced when OSK appears on phone

Status in Canonical System Image:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Steps to reproduce:
  - Connect phone to external display
  - Move dash to the bottom of the screen
  - Tap on the search field

  Expected outcome:
  - Window doesn't move

  Actual outcome:
  - Window is moved up, as if the OSK were being displayed on the external 
screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598917/+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 1598584] Re: M10 wifi slows to a crawl when bluetooth is enabled

2016-07-05 Thread Jean-Baptiste Lallement
I observed the same behaviour with an arale running rc-proposed (build 369 
today but earlier builds too). With the phone connected to a BT speaker (JBL 
Charge 3) and streaming music from the internet, I get frequent disconnections 
from either the internet stream or the speaker. 
Listening to the same streams with a wired headset works perfectly. 

I did the following speed tests measurement this morning:
1. Streaming + BT on, 5 runs
(kbps) 390, 794, 767, 618 and 455
avg: 604kbps

2. Steaming + BT off (loud speaker of the phone), 5 runs:
(Mbps) 8.26, 11.30, 11.33, 11.62 and 10.61
avg:  10.62Mbps

It is 17.6 times slower with BT on than off, and the reliability of the
internet and BT connections is really bad.

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Summary changed:

- M10 wifi slows to a crawl when bluetooth is enabled
+ wifi slows to a crawl when bluetooth is enabled

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

** Changed in: canonical-devices-system-image
Milestone: None => 13

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

Title:
  wifi slows to a crawl when bluetooth is enabled

Status in Canonical System Image:
  Confirmed
Status in indicator-network package in Ubuntu:
  Invalid

Bug description:
  I am having serious wifi performance issues on my Aquaris M10 (running
  rc-proposed r133). When measuring the wifi speed, I get download
  speeds of less than 1/20 compared to my Pro 5 at the same distance
  from the wifi router. This seems to be consistent through reboots. I
  had similar wifi performance also before recently upgrading to rc-
  proposed, which I thought would have fixed the issue.

  I am in the same place testing 3 different ubuntu devices and these are the 
readings of the wifi download speed:
  Laptop: 4 MB/s
  Pro 5: 3.5 MB/s
  Aquaris M10: 0.16 MB/s

  However, upload speed is about the same on all three devices.

  Turning bluetooth off gets Aquaris M10 wifi speed back to sort of
  normal, 2.5-3.4 MB/s. Bluetooth on, again 0.1-0.2 MB/s. Seems the two
  wireless technologies interfere with each other on the M10, while the
  Pro 5 doesn't have that problem.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1598584/+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 1598770] Re: Unity in low-graphics mode has animations and unneded redraws

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~unity-team/nux/x-sru1

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

Title:
  Unity in low-graphics mode has animations and unneded redraws

Status in compiz package in Ubuntu:
  In Progress
Status in nux package in Ubuntu:
  In Progress
Status in unity package in Ubuntu:
  In Progress

Bug description:
  When unity is in Low graphics mode (because of software rendering)
  there are still window animations and fade effects which we should get
  rid of.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1598770/+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 1596878] Re: Mouse flickering and mouse trails with DL screen attached

2016-07-05 Thread Christopher M. Penalver
Christina Lena Korosec, to clarify, did this issue not occur in a Ubuntu
release prior to Xenial?

** Tags removed: bios-outdated-1.36
** Tags added: latest-bios-1.36

** Changed in: xorg (Ubuntu)
   Importance: Low => Medium

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

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

Title:
  Mouse flickering and mouse trails with DL screen attached

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  When attaching a screen on a DisplayLink device, the cursor will
  flicker on all non-DisplayLink screens. Additionally, the cursor will
  leave trails over various UI elements that update as the cursor passes
  (such as buttons, menus, progress bars, etc.)

  The issue occurs only when a DisplayLink device is attached and
  driving a display. However, DisplayLink told me the issue is not
  specific to their hardware, and to make a bug report here.

  Additional details:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Linux 4.4.0-24-generic
  DisplayLink 1.1.62 driver
  radeon/intel hybrid graphics
  xorg:
Installed: 1:7.7+13ubuntu3

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,move,imgpng,grid,vpswitch,place,session,unitymtgrabhandles,mousepoll,regex,gnomecompat,compiztoolbox,resize,animation,snap,workarounds,expo,wall,fade,ezoom,scale,unityshell]
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Tue Jun 28 11:26:02 2016
  DistUpgraded: 2016-06-08 13:08:40,498 DEBUG enabling apt cron job
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company 4th Gen Core Processor Integrated 
Graphics Controller [103c:1993]
   Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8730M] [1002:6601] 
(rev ff) (prog-if ff)
  InstallationDate: Installed on 2011-10-13 (1719 days ago)
  InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427)
  MachineType: Hewlett-Packard HP ProBook 650 G1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-24-generic 
root=UUID=b5298a65-447e-427d-8dbd-73939ed8edd7 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-06-08 (19 days ago)
  dmi.bios.date: 07/20/2015
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L77 Ver. 01.33
  dmi.board.name: 1993
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 16.3C
  dmi.chassis.asset.tag: 5CG4382GHB
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL77Ver.01.33:bd07/20/2015:svnHewlett-Packard:pnHPProBook650G1:pvrA3008DD10B03:rvnHewlett-Packard:rn1993:rvrKBCVersion16.3C:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 650 G1
  dmi.product.version: A3008DD10B03
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental 
9.2.0~git20131002+9.2.2eb55601-0ubuntu0sarvatt~precise
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Tue Jun 28 10:09:06 2016
  xserver.configfile: default
  xserver.errors:
   RADEON(G0): [XvMC] Failed to initialize extension.
   modeset(G1): glamor initialization failed
   modeset(G2): glamor initialization failed
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5699 
   vendor ACI
  xserver.version: 2:1.18.3-1ubuntu2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1596878/+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 1567540] Re: ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes up or down.)

2016-07-05 Thread ChristianEhrhardt
FYI - Merge that will fix this in the development release created and entered 
review processing.
Once that is completed we have to think about SRU into Xenial (needs a rather 
complex backport from upstream)

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

Title:
  ntpd crashed with SIGABRT (was: ntp crashes everytime the network goes
  up or down.)

Status in NTP:
  Fix Released
Status in ntp package in Ubuntu:
  Triaged
Status in ntp source package in Xenial:
  Confirmed

Bug description:
  ntp crashes every time the network goes up or down while the system is 
running and also crashes after booting up without network.
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (26 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu4
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-17-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-17.33-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-03-12 (31 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=306314bc-efcb-4c2d-b0e9-e05ec92ed0f0 ro
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-13 (0 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-18-generic 
root=UUID=13f57794-2e19-4a56-836a-94185bba5ec5 ro quiet splash
  ProcVersionSignature: Ubuntu 4.4.0-18.34-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-18-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-20.36-generic 4.4.6
  Tags:  xenial
  Uname: Linux 4.4.0-20-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  --- 
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 16.04
  InstallationDate: Installed on 2016-04-14 (3 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160412)
  NtpStatus: ntpq: read: Connection refused
  Package: ntp 1:4.2.8p4+dfsg-3ubuntu5
  PackageArchitecture: amd64
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-20-generic 
root=UUID=b9c0528f-e81f-4b08-9b31-032f14f72ccd ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 

[Touch-packages] [Bug 1598770] Re: Unity in low-graphics mode has animations and unneded redraws

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~unity-team/compiz/x-sru2

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

Title:
  Unity in low-graphics mode has animations and unneded redraws

Status in compiz package in Ubuntu:
  In Progress
Status in nux package in Ubuntu:
  In Progress
Status in unity package in Ubuntu:
  In Progress

Bug description:
  When unity is in Low graphics mode (because of software rendering)
  there are still window animations and fade effects which we should get
  rid of.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1598770/+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 1598770] Re: Unity in low-graphics mode has animations and unneded redraws

2016-07-05 Thread Launchpad Bug Tracker
** Branch linked: lp:~ci-train-bot/nux/nux-ubuntu-xenial-landing-063

** Branch linked: lp:~ci-train-bot/compiz/compiz-ubuntu-xenial-
landing-063

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

Title:
  Unity in low-graphics mode has animations and unneded redraws

Status in compiz package in Ubuntu:
  In Progress
Status in nux package in Ubuntu:
  In Progress
Status in unity package in Ubuntu:
  In Progress

Bug description:
  When unity is in Low graphics mode (because of software rendering)
  there are still window animations and fade effects which we should get
  rid of.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1598770/+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 1576844] Re: Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

2016-07-05 Thread mash
On the advice of Chris Penalver (thank you, once again), I upgraded my
Dell XPS 13 (9343) from BIOS A05 to BIOS A07  (see thread above for
guidance on how to make the upgrade.  I downloaded the new BIOS
9343_BIOS_Rev_A07.exe from
http://www.dell.com/support/home/us/en/04/Drivers/DriversDetails?driverId=28M21
and followed the instructions above.

The following command(s) report the BIOS and release date:
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date

which are, after the upgrade:
A07
11/11/2015

The new BIOS appears to have resolved the problem, or at least I've had
no recurrences since making the BIOS upgrade

Thank you.

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

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

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

Title:
  Touchpad/Trackpad freezes then eventually unfreezes (repeatedly)

Status in xorg package in Ubuntu:
  Invalid

Bug description:
  $ lsb_release -rd
  Description:  Ubuntu 16.04 LTS
  Release:  16.04

  Several times yesterday and today (April 28-29, 2016) the touchpad
  (trackpad) on the Dell XPS 13 9343 has frozen.  Other functions
  (keyboard, screen, etc.) have been fine but the pointer has been
  frozen in place.  Then after 1-3 minutes functionality returns.

  Thank you very much for your assistance and I'd be happy to provide
  more information.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-22.38-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  BootLog:

  CompizPlugins: [core,composite,opengl,cube,rotate]
  CompositorRunning: None
  CurrentDesktop: GNOME-Flashback:Unity
  Date: Fri Apr 29 16:09:32 2016
  DistUpgraded: 2016-04-27 15:53:13,798 DEBUG icon theme changed, re-reading
  DistroCodename: xenial
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.2.0-36-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 4.4.0-22-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
     Subsystem: Dell Broadwell-U Integrated Graphics [1028:0665]
  InstallationDate: Installed on 2015-08-06 (267 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Dell Inc. XPS 13 9343
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-22-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-04-27 (2 days ago)
  dmi.bios.date: 07/14/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A05
  dmi.board.name: 0TM99H
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd07/14/2015:svnDellInc.:pnXPS139343:pvr:rvnDellInc.:rn0TM99H:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Wed Apr 27 15:54:22 2016
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5152
   vendor SHP
  xserver.version: 2:1.18.3-1ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1576844/+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 1584284] Re: Ubuntu 16.04 LiveCD does not boot on AMD A10 chip

2016-07-05 Thread Christopher M. Penalver
** Tags added: yakkety

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

Title:
  Ubuntu 16.04 LiveCD does not boot on AMD A10 chip

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I want to boot a Ubuntu LiveCD of 16.04 on a desktop box with an AMD 
A10-5800K AGP,  Gigabyte FA-42A75M-HD2 motherboard, 8 GB of RAM, and no 
graphics card -- the Radeon HD 7660D graphics are done by the CPU. When I try 
to boot I get an error message, "ERROR: no UMS support in radeon module." When 
I edit the boot command line to add the parameter 'nomodeset' I first get an 
error message, "No UMS support on radeon module," then the familiar aubergine 
background with the ubuntu logo and the five dots below it changing from white 
to red and back again. After twenty or thirty seconds the background goes to 
black, I get the error message "No UMS support in radeon module," and the 
ubuntu logo disappears but the five dots continue. After another twenty or 
thirty seconds of that the screen clears, at the top is a line: "ubuntu 16.04 
ubuntu LTS tty1," below that the line "ubuntu login:" and after a second or 
less the screen goes black and I can't do anything except reboot. I've tried 
old Liv
 e CDs, from 10.10 to 15.10, and they all boot fine.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.1-0ubuntu5
  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
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  DkmsStatus: virtualbox, 5.0.14, 4.2.0-36-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7660D] [1002:9901] 
(prog-if 00 [VGA controller])
 Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 
7660D] [1002:9901]
  InstallationDate: Installed on 2016-06-07 (27 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-36-generic 
root=UUID=376cfbdb-7508-4e73-9b25-421ca397ab8a ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.2.0-36.42-generic 4.2.8-ckt8
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-36-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 03/18/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F4
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: F2A75M-HD2
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF4:bd03/18/2013:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnF2A75M-HD2:rvrTobefilledbyO.E.M.:cvnGigabyteTechnologyCo.,Ltd.: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: Gigabyte Technology Co., Ltd.
  version.compiz: compiz 1:0.9.12.2+15.10.20151202-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.2-1ubuntu4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.2-1ubuntu4
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Jul  5 00:55:16 2016
  xserver.configfile: default
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inputPower Button KEYBOARD, id 7
   inputUSB Optical Wheel Mouse MOUSE, id 8
   inputLogitech USB Keyboard KEYBOARD, id 9
   inputLogitech USB Keyboard KEYBOARD, id 10
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.17.2-1ubuntu9.1
  xserver.video_driver: radeon

To manage notifications about this bug go to:

[Touch-packages] [Bug 1596878] Re: Mouse flickering and mouse trails with DL screen attached

2016-07-05 Thread Christina Lena Korosec
I have not had the use case in question on older versions so I don't know.
If you want me to I can install several older versions of Ubuntu later and see 
if the problem occurs in those versions as well.

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

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

Title:
  Mouse flickering and mouse trails with DL screen attached

Status in xorg package in Ubuntu:
  New

Bug description:
  When attaching a screen on a DisplayLink device, the cursor will
  flicker on all non-DisplayLink screens. Additionally, the cursor will
  leave trails over various UI elements that update as the cursor passes
  (such as buttons, menus, progress bars, etc.)

  The issue occurs only when a DisplayLink device is attached and
  driving a display. However, DisplayLink told me the issue is not
  specific to their hardware, and to make a bug report here.

  Additional details:
  Description:  Ubuntu 16.04 LTS
  Release:  16.04
  Linux 4.4.0-24-generic
  DisplayLink 1.1.62 driver
  radeon/intel hybrid graphics
  xorg:
Installed: 1:7.7+13ubuntu3

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,move,imgpng,grid,vpswitch,place,session,unitymtgrabhandles,mousepoll,regex,gnomecompat,compiztoolbox,resize,animation,snap,workarounds,expo,wall,fade,ezoom,scale,unityshell]
  CompositorRunning: None
  CurrentDesktop: XFCE
  Date: Tue Jun 28 11:26:02 2016
  DistUpgraded: 2016-06-08 13:08:40,498 DEBUG enabling apt cron job
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company 4th Gen Core Processor Integrated 
Graphics Controller [103c:1993]
   Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8730M] [1002:6601] 
(rev ff) (prog-if ff)
  InstallationDate: Installed on 2011-10-13 (1719 days ago)
  InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427)
  MachineType: Hewlett-Packard HP ProBook 650 G1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-24-generic 
root=UUID=b5298a65-447e-427d-8dbd-73939ed8edd7 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to xenial on 2016-06-08 (19 days ago)
  dmi.bios.date: 07/20/2015
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L77 Ver. 01.33
  dmi.board.name: 1993
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 16.3C
  dmi.chassis.asset.tag: 5CG4382GHB
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL77Ver.01.33:bd07/20/2015:svnHewlett-Packard:pnHPProBook650G1:pvrA3008DD10B03:rvnHewlett-Packard:rn1993:rvrKBCVersion16.3C:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 650 G1
  dmi.product.version: A3008DD10B03
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental 
9.2.0~git20131002+9.2.2eb55601-0ubuntu0sarvatt~precise
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Tue Jun 28 10:09:06 2016
  xserver.configfile: default
  xserver.errors:
   RADEON(G0): [XvMC] Failed to initialize extension.
   modeset(G1): glamor initialization failed
   modeset(G2): glamor initialization failed
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5699 
   vendor ACI
  xserver.version: 2:1.18.3-1ubuntu2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1596878/+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 1585942] Re: Mesa causes a segmentation fault on arm64 (wrong count of uniform locations)

2016-07-05 Thread Jean-Baptiste Lallement
** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

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

** Changed in: canonical-devices-system-image
Milestone: None => xenial

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

Title:
  Mesa causes a segmentation fault on arm64 (wrong count of uniform
  locations)

Status in Canonical System Image:
  Confirmed
Status in mesa package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  This error appeared when running unit tests for a QML app in our
  Jenkins/silo infrastructure, on arm64 only:
  https://launchpadlibrarian.net/261581280/buildlog_ubuntu-yakkety-arm64
  .ubuntu-system-settings-online-
  accounts_0.7+16.10.20160525.1-0ubuntu1_BUILDING.txt.gz

  Pasting the relevant lines here in case the link above goes away:

  ===
  QT_PLUGIN_PATH=/usr/lib/aarch64-linux-gnu/qt5/plugins 
LD_LIBRARY_PATH=/usr/lib/aarch64-linux-gnu${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} 
xvfb-run -s '-screen 0 640x480x24' -a dbus-test-runner -t   
./tst_online_accounts_qml
  DBus daemon: 
unix:abstract=/tmp/dbus-2tbhBHxLZq,guid=03f9df417d619b79067a68045745ad95
  task-0: Started with PID: 16930
  task-0: * Start testing of online_accounts_qml *
  task-0: Config: Using QtTest library 5.5.1, Qt 5.5.1 
(arm64-little_endian-lp64 shared (dynamic) release build; by GCC 5.3.1 20160519)
  task-0: PASS   : online_accounts_qml::AccountCreationPage::initTestCase()
  task-0: QWARN  : online_accounts_qml::AccountCreationPage::test_fallback() 
file:///dummy/path/testPlugin/Main.qml: File not found
  task-0: PASS   : online_accounts_qml::AccountCreationPage::test_fallback()
  task-0: QWARN  : online_accounts_qml::AccountCreationPage::test_flickable() 
file:///dummy/path/testPlugin/Main.qml: File not found
  task-0: PASS   : online_accounts_qml::AccountCreationPage::test_flickable()
  task-0: PASS   : online_accounts_qml::AccountCreationPage::cleanupTestCase()
  task-0: QWARN  : online_accounts_qml::UnknownTestFunc() QEGLPlatformContext: 
Failed to make temporary surface current, format not updated
  task-0: PASS   : online_accounts_qml::AuthorizationPage::initTestCase()
  task-0: QWARN  : online_accounts_qml::AuthorizationPage::test_1_one_account() 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:54:
 TypeError: Cannot call method 'indexOf' of undefined
  task-0: PASS   : online_accounts_qml::AuthorizationPage::test_1_one_account()
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(with button) 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:54:
 TypeError: Cannot call method 'indexOf' of undefined
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(with button) 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:79:23:
 Unable to assign [undefined] to QString
  task-0: PASS   : 
online_accounts_qml::AuthorizationPage::test_2_add_another(with button)
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(with button) 
[PERFORMANCE]: Last frame took 254 ms to render.
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(without button) 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:54:
 TypeError: Cannot call method 'indexOf' of undefined
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(without button) 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:79:23:
 Unable to assign [undefined] to QString
  task-0: PASS   : 
online_accounts_qml::AuthorizationPage::test_2_add_another(without button)
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_2_add_another(without button) 
[PERFORMANCE]: Last frame took 210 ms to render.
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_3_many_accounts(first account) 
[PERFORMANCE]: Last frame took 146 ms to render.
  task-0: QWARN  : 
online_accounts_qml::AuthorizationPage::test_3_many_accounts(first account) 
file:///«BUILDDIR»/ubuntu-system-settings-online-accounts-0.7+16.10.20160525.1/online-accounts-ui/qml/AuthorizationPage.qml:54:
 TypeError: Cannot call method 'indexOf' of undefined
  task-0: QWARN  : 

[Touch-packages] [Bug 1599145] Re: com.canonical.UnityGreeter dbus methods removed

2016-07-05 Thread Jean-Baptiste Lallement
** Also affects: unity8 (Ubuntu)
   Importance: Undecided
   Status: New

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

** Changed in: canonical-devices-system-image
Milestone: None => 12

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Michał Sawicz (saviq)

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Tags added: regression-proposed

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

Title:
  com.canonical.UnityGreeter dbus methods removed

Status in Canonical System Image:
  In Progress
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  channel: ubuntu-touch/rc-proposed/meizu.en
  image: 369
  device: arale

  The HideGreeter and ShowGreeter methods and IsActive property have
  been removed from com.canonical.UnityGreeter dbus interface.

  These are being used by autopkgtest to wait for device and unlock
  greeter. So its no longer working and this will block test automation.

  Example command to test:
  gdbus call --session --dest com.canonical.UnityGreeter --object-path / 
--method com.canonical.UnityGreeter.HideGreeter

  Error returned is:
  Error: GDBus.Error:org.freedesktop.DBus.Error.UnknownInterface: No such 
interface 'com.canonical.UnityGreeter' at object path '/'

  Or to check if greeter is active:
  gdbus call --timeout 5 --session --dest com.canonical.UnityGreeter 
--object-path / --method org.freedesktop.DBus.Properties.Get 
com.canonical.UnityGreeter IsActive

  returns:
  Error: GDBus.Error:org.freedesktop.DBus.Error.UnknownInterface: Interface 
com.canonical.UnityGreeter was not found in object /
  (According to introspection data, you need to pass 'ss')

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1599145/+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 1599145] Re: com.canonical.UnityGreeter dbus methods removed

2016-07-05 Thread Michał Sawicz
** Changed in: canonical-devices-system-image
   Status: Confirmed => Triaged

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

Title:
  com.canonical.UnityGreeter dbus methods removed

Status in Canonical System Image:
  In Progress
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  channel: ubuntu-touch/rc-proposed/meizu.en
  image: 369
  device: arale

  The HideGreeter and ShowGreeter methods and IsActive property have
  been removed from com.canonical.UnityGreeter dbus interface.

  These are being used by autopkgtest to wait for device and unlock
  greeter. So its no longer working and this will block test automation.

  Example command to test:
  gdbus call --session --dest com.canonical.UnityGreeter --object-path / 
--method com.canonical.UnityGreeter.HideGreeter

  Error returned is:
  Error: GDBus.Error:org.freedesktop.DBus.Error.UnknownInterface: No such 
interface 'com.canonical.UnityGreeter' at object path '/'

  Or to check if greeter is active:
  gdbus call --timeout 5 --session --dest com.canonical.UnityGreeter 
--object-path / --method org.freedesktop.DBus.Properties.Get 
com.canonical.UnityGreeter IsActive

  returns:
  Error: GDBus.Error:org.freedesktop.DBus.Error.UnknownInterface: Interface 
com.canonical.UnityGreeter was not found in object /
  (According to introspection data, you need to pass 'ss')

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1599145/+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 1598389] [NEW] Unintuitive user interface: search to find categories

2016-07-05 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When looking for apps and scopes in the Ubuntu store scope, it is hard
for the user to find more apps and scopes than the "Highlight of the
week", "Essentials" etc listed on the front page because there is no
category buttons or category menu. It is not intuitive to have to hit a
magnifying glass to search to find the categories of the apps and
scopes.

I would suggest adding buttons on the bottom of the front page with
every category, as well as "Installed apps", "Installed scopes" and "All
apps" to make it easier for users to discover apps and scopes. (Just
like in the desktop Ubuntu software centre / Gnome apps.)

I am on OTA-11 on the Bq M1 FHD with Norwegian localisation.

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


** Tags: categories discoverability interface search unintuitive user
-- 
Unintuitive user interface: search to find categories
https://bugs.launchpad.net/bugs/1598389
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to unity-scopes-shell 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 1584496] ProcEnviron.txt

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695853/+files/ProcEnviron.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1584496/+attachment/4695856/+files/UdevDb.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695855/+files/ProcModules.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695854/+files/ProcInterrupts.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695849/+files/JournalErrors.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695848/+files/DpkgLog.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1584496/+attachment/4695857/+files/XorgLog.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

2016-07-05 Thread Jason Yundt
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1584496/+attachment/4695851/+files/Lsusb.txt

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

Title:
  Nouveau randomly freezes system

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  I'm running kubuntu 16.04.
  If I'm running Nouveau, my system randomly lockups.
  I have a MSI Geforce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-video-nouveau 1:1.0.12-1build2
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sun May 22 12:38:07 2016
  InstallationDate: Installed on 2016-05-22 (0 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog: /dev/sdb2: clean, 287853/15499264 files, 3497348/61988608 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  ExtraDebuggingInterest: No
  GraphicsCard:
   NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1183] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: NVIDIA Corporation GK104 [GeForce GTX 660 Ti] [10de:1000]
  InstallationDate: Installed on 2016-06-16 (18 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Gigabyte Technology Co., Ltd. P55A-UD3
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-28-generic 
root=UUID=780df466-9725-4142-92c6-bb2bd6ce8291 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-28-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11
  dmi.board.name: P55A-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11:bd08/10/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55A-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55A-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55A-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

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


  1   2   3   >