[Touch-packages] [Bug 1636573] Re: xinit flooding syslog

2017-02-16 Thread Evgeny
I have the same problem & don't know what to do.
Linux Mint 18.1
Kodi version: 2:17.0~git20170210.1529-final-0xenial

Trying to get in third-party repo. Kodi's flooding into file /var/log/syslog 
>30gb of two strings:
extern "Python": function Cryptography_rand_bytes() called, but 
@ffi.def_extern() was not called in the current subinterpreter. Returning 0.
extern "Python": function Cryptography_rand_status() called, but 
@ffi.def_extern() was not called in the current subinterpreter. Returning 0.

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

Title:
  xinit flooding syslog

Status in pyopenssl package in Ubuntu:
  Confirmed
Status in xorg package in Ubuntu:
  Invalid

Bug description:
  I am using xinit (1.3.4-3ubuntu1) to start an X11 session as follows
  (kodi is a media center):

  /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /usr/bin/kodi-
  standalone -- :1 -nolisten tcp vt8

  This used to work fine with Ubuntu 16.04, but since the upgrade to
  16.10 lots of log messages are sent to syslog. They are all
  repetitions of the following two lines:

  Oct 24 22:54:50 tiger xinit[26430]: extern "Python": function 
Cryptography_rand_bytes() called, but @ffi.def_extern() was not called in the 
current subinterpreter.  Returning 0.
  Oct 24 22:54:50 tiger xinit[26430]: extern "Python": function 
Cryptography_rand_status() called, but @ffi.def_extern() was not called in the 
current subinterpreter.  Returning 0.

  These messages amount to >200 GB per day, so this is eating up all the
  disk space.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: xorg 1:7.7+13ubuntu4
  ProcVersionSignature: Ubuntu 4.8.0-22.24-generic 4.8.0
  Uname: Linux 4.8.0-22-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Tue Oct 25 18:41:22 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-01-06 (1753 days ago)
  InstallationMedia: Kubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to yakkety on 2016-10-13 (11 days ago)

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

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


[Touch-packages] [Bug 1665312] Re: [unity8][gtk] wrong tooltips position

2017-02-16 Thread dinamic
the apps are running native, i can tell just by resizing the window :(

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

Title:
  [unity8][gtk] wrong tooltips position

Status in Canonical System Image:
  Incomplete
Status in gtk+3.0 package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 17.04 Unity8
  launch some randome gtk3 apps (solitaire or terminix), hover some icons with 
the mouse. the tootip text possition is wrong. see attached screenshots

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1665312/+subscriptions

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


[Touch-packages] [Bug 1665559] Re: UbuntuListView dividers don't get updated on model changes

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

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New => Confirmed

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

Title:
  UbuntuListView dividers don't get updated on model changes

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

Bug description:
  I have an UbuntuListView with ListItems, and I add items into the model at 
runtime.
  I want to keep the list sorted, so I insert items at specific positions 
instead of appending them.
  The problem is that the divider only shows up for items that are inserted 
before the last one.
  I read in the API documentation for ListItem [1]:
  > When used in ListView or UbuntuListView, the last list item will not show 
the divider no matter of the visible property value set.

  So I suppose this is the reason. But shouldn't the divider become
  visible when the model changes and the ListItem is no longer the last
  one?

  For example, I add the following items, in order:
  * aaa
  * ccc
  * bbb

  Because the list is sorted, when adding `bbb` it is inserted in the
  middle and receives a divider. But `aaa` remains with no divider, and
  the list looks weird.

  Expected:
  aaa
  -
  bbb
  -
  ccc

  Actual:
  aaa
  bbb
  -
  ccc

  Here is the full source code:

  === Main.qml ===

  import QtQuick 2.4
  import QtQuick.Layouts 1.1

  import Ubuntu.Components 1.2

  MainView {

  width: units.gu(40)
  height: units.gu(40)

  Page {

  ColumnLayout {
  spacing: units.gu(1)
  anchors {
  margins: units.gu(2)
  fill: parent
  }

  TextField {
  id: textInput
  Layout.fillWidth: true;
  hasClearButton: true
  onAccepted: {
  addToList();
  }
  }

  MyList {
  id: myList
  anchors {
  left: parent.left
  right: parent.right
  }
  height: parent.height
  }
  }
  }

  function addToList() {
  if(textInput.text.length > 0) {
  myList.add(textInput.text);
  textInput.text = '';
  }
  }
  }

  === MyList.qml ===

  import QtQuick 2.4
  import Ubuntu.Components 1.2
  import Ubuntu.Components.ListItems 1.0

  Item {

  ListModel {
  id: listModel
  }

  UbuntuListView {
  anchors.fill: parent
  model: listModel

  delegate: ListItem {
  id: listItem
  height: units.gu(5)

  divider.visible: true; // doesn't help
  Label {
  text: itemName
  verticalAlignment: Text.AlignVCenter
  height: parent.height
  }

  onClicked: {
  divider.visible = true; // doesn't help
  }
  }
  }

  function add(text) {
  var indexToInsert = listModel.count;
  for(var i = 0; i < listModel.count; i++) {
  var compareResult = text.localeCompare(listModel.get(i).itemName);
  if(compareResult <= 0) {
  indexToInsert = i;
  break;
  }
  }
  listModel.insert(indexToInsert, {itemName: text});
  }
  }

  
  I'm not really sure if this is a bug, or if I'm not using the API correctly.

  [1]
  
https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.ListItem/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1665559/+subscriptions

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


[Touch-packages] [Bug 1623666] Re: iOS device contents not displayed in Ubuntu

2017-02-16 Thread Karli Sjöberg
Have confirmed #27 works on a Xubuntu 16.04 VM. Would be so glad if
package maintainers could repackage towards newer versions, which
obviously work, in contrast to what is packaged today.

Thanks in advance!
Karli Sjöberg

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

Title:
  iOS device contents not displayed in Ubuntu

Status in gnutls28 package in Ubuntu:
  Confirmed
Status in libimobiledevice package in Ubuntu:
  Confirmed

Bug description:
  Plug in iOS device, and it doesn't show the documents on it.

  Please package the recent fix in libimobiledevice*:

  Vauge discussion that mentions using the latest git HEAD*:
  https://github.com/libimobiledevice/libimobiledevice/issues/327

  *This discussion is quite vague. One comment points out "iOS 10
  devices don't allow SSLv3 anymore but require at least TLSv1", but not
  how or if that has been fixed in libimobiledevice git HEAD.

  This ppa packages the git version and may resolve the issue:
  
https://launchpad.net/~martin-salbaba/+archive/ubuntu/ppa+libimobiledevice/+packages

  There are several other upstream reports related to this problem.

  Partial success patch (idevicepair only) trying to keep GnuTLS:
  https://github.com/libimobiledevice/libimobiledevice/issues/413

  Failure with GnuTLS, Success with OpenSSL:
  https://gitlab.com/gnutls/gnutls/issues/145

  Ubuntu packages libimobiledevice with "--disable-openssl":
  https://github.com/libimobiledevice/ifuse/issues/32

  Duplicate bug 1638177 suggests to repackage libimobiledevice using
  OpenSSL to avoid this problem, as per comment 27 below.

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

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


[Touch-packages] [Bug 1665559] [NEW] UbuntuListView dividers don't get updated on model changes

2017-02-16 Thread Michał Sawicz
Public bug reported:

I have an UbuntuListView with ListItems, and I add items into the model at 
runtime.
I want to keep the list sorted, so I insert items at specific positions instead 
of appending them.
The problem is that the divider only shows up for items that are inserted 
before the last one.
I read in the API documentation for ListItem [1]:
> When used in ListView or UbuntuListView, the last list item will not show the 
> divider no matter of the visible property value set.

So I suppose this is the reason. But shouldn't the divider become
visible when the model changes and the ListItem is no longer the last
one?

For example, I add the following items, in order:
* aaa
* ccc
* bbb

Because the list is sorted, when adding `bbb` it is inserted in the
middle and receives a divider. But `aaa` remains with no divider, and
the list looks weird.

Expected:
aaa
-
bbb
-
ccc

Actual:
aaa
bbb
-
ccc

Here is the full source code:

=== Main.qml ===

import QtQuick 2.4
import QtQuick.Layouts 1.1

import Ubuntu.Components 1.2

MainView {

width: units.gu(40)
height: units.gu(40)

Page {

ColumnLayout {
spacing: units.gu(1)
anchors {
margins: units.gu(2)
fill: parent
}

TextField {
id: textInput
Layout.fillWidth: true;
hasClearButton: true
onAccepted: {
addToList();
}
}

MyList {
id: myList
anchors {
left: parent.left
right: parent.right
}
height: parent.height
}
}
}

function addToList() {
if(textInput.text.length > 0) {
myList.add(textInput.text);
textInput.text = '';
}
}
}

=== MyList.qml ===

import QtQuick 2.4
import Ubuntu.Components 1.2
import Ubuntu.Components.ListItems 1.0

Item {

ListModel {
id: listModel
}

UbuntuListView {
anchors.fill: parent
model: listModel

delegate: ListItem {
id: listItem
height: units.gu(5)

divider.visible: true; // doesn't help
Label {
text: itemName
verticalAlignment: Text.AlignVCenter
height: parent.height
}

onClicked: {
divider.visible = true; // doesn't help
}
}
}

function add(text) {
var indexToInsert = listModel.count;
for(var i = 0; i < listModel.count; i++) {
var compareResult = text.localeCompare(listModel.get(i).itemName);
if(compareResult <= 0) {
indexToInsert = i;
break;
}
}
listModel.insert(indexToInsert, {itemName: text});
}
}


I'm not really sure if this is a bug, or if I'm not using the API correctly.

[1]
https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.ListItem/

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: Confirmed

** Package changed: ubuntu => ubuntu-ui-toolkit (Ubuntu)

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

Title:
  UbuntuListView dividers don't get updated on model changes

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

Bug description:
  I have an UbuntuListView with ListItems, and I add items into the model at 
runtime.
  I want to keep the list sorted, so I insert items at specific positions 
instead of appending them.
  The problem is that the divider only shows up for items that are inserted 
before the last one.
  I read in the API documentation for ListItem [1]:
  > When used in ListView or UbuntuListView, the last list item will not show 
the divider no matter of the visible property value set.

  So I suppose this is the reason. But shouldn't the divider become
  visible when the model changes and the ListItem is no longer the last
  one?

  For example, I add the following items, in order:
  * aaa
  * ccc
  * bbb

  Because the list is sorted, when adding `bbb` it is inserted in the
  middle and receives a divider. But `aaa` remains with no divider, and
  the list looks weird.

  Expected:
  aaa
  -
  bbb
  -
  ccc

  Actual:
  aaa
  bbb
  -
  ccc

  Here is the full source code:

  === Main.qml ===

  import QtQuick 2.4
  import QtQuick.Layouts 1.1

  import Ubuntu.Components 1.2

  MainView {

  width: units.gu(40)
  height: units.gu(40)

  Page {

  ColumnLayout {
  spacing: units.gu(1)
  anchors {
  margins: units.gu(2)
  fill: parent

[Touch-packages] [Bug 1393578] Re: Subpixel order not included in Mir display information

2017-02-16 Thread Daniel van Vugt
Annoyingly it seems Linux doesn't know the subpixel order of my monitor
(DRM_MODE_SUBPIXEL_UNKNOWN). And Google seems to suggest this is pretty
common, because the information isn't available in EDIDs. So I can't
easily test any fix for nested just yet.

What I can do however is look at support for /setting/ the subpixel
order. Since it seems that's what most people will need to do. We may
also want to consider defaulting to HRGB if it's unknown.

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

Title:
  Subpixel order not included in Mir display information

Status in Mir:
  In Progress
Status in QtMir:
  Triaged
Status in qtubuntu:
  Triaged
Status in mir package in Ubuntu:
  Triaged
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  Just capturing something mentioned by Trevinho on IRC this morning.
  MirDisplayOutput does not include subpixel ordering, it could and
  should though. The information is exposed on the drm side
  (drmModeSubPixel). Marking as wishlist in absence of other
  information.

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

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


[Touch-packages] [Bug 1665559] [NEW] UbuntuListView dividers don't get updated on model changes

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

I have an UbuntuListView with ListItems, and I add items into the model at 
runtime.
I want to keep the list sorted, so I insert items at specific positions instead 
of appending them.
The problem is that the divider only shows up for items that are inserted 
before the last one.
I read in the API documentation for ListItem [1]:
> When used in ListView or UbuntuListView, the last list item will not show the 
> divider no matter of the visible property value set.

So I suppose this is the reason. But shouldn't the divider become
visible when the model changes and the ListItem is no longer the last
one?

For example, I add the following items, in order:
* aaa
* ccc
* bbb

Because the list is sorted, when adding `bbb` it is inserted in the
middle and receives a divider. But `aaa` remains with no divider, and
the list looks weird.

Expected:
aaa
-
bbb
-
ccc

Actual:
aaa
bbb
-
ccc

Here is the full source code:

=== Main.qml ===

import QtQuick 2.4
import QtQuick.Layouts 1.1

import Ubuntu.Components 1.2

MainView {

width: units.gu(40)
height: units.gu(40)

Page {

ColumnLayout {
spacing: units.gu(1)
anchors {
margins: units.gu(2)
fill: parent
}

TextField {
id: textInput
Layout.fillWidth: true;
hasClearButton: true
onAccepted: {
addToList();
}
}

MyList {
id: myList
anchors {
left: parent.left
right: parent.right
}
height: parent.height
}
}
}

function addToList() {
if(textInput.text.length > 0) {
myList.add(textInput.text);
textInput.text = '';
}
}
}

=== MyList.qml ===

import QtQuick 2.4
import Ubuntu.Components 1.2
import Ubuntu.Components.ListItems 1.0

Item {

ListModel {
id: listModel
}

UbuntuListView {
anchors.fill: parent
model: listModel

delegate: ListItem {
id: listItem
height: units.gu(5)

divider.visible: true; // doesn't help
Label {
text: itemName
verticalAlignment: Text.AlignVCenter
height: parent.height
}

onClicked: {
divider.visible = true; // doesn't help
}
}
}

function add(text) {
var indexToInsert = listModel.count;
for(var i = 0; i < listModel.count; i++) {
var compareResult = text.localeCompare(listModel.get(i).itemName);
if(compareResult <= 0) {
indexToInsert = i;
break;
}
}
listModel.insert(indexToInsert, {itemName: text});
}
}


I'm not really sure if this is a bug, or if I'm not using the API correctly.

[1]
https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.ListItem/

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

-- 
UbuntuListView dividers don't get updated on model changes
https://bugs.launchpad.net/bugs/1665559
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to ubuntu-ui-toolkit 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 1664610] Re: qtubuntu sends wrong text as part of QKeyEvent

2017-02-16 Thread mir-ci-bot
Fix committed into lp:mir at revision None, scheduled for release in
mir, milestone 1.0.0

** Changed in: mir
   Status: In Progress => Fix Committed

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

Title:
  qtubuntu sends wrong text as part of QKeyEvent

Status in Mir:
  Fix Committed
Status in mir package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  In Progress

Bug description:
  When using Unity7 or Plasma a key event created by Ctrl+C is
    QKeyEvent(KeyPress, Key_C, ControlModifier, text="\u0003")

  But Unity8+ qtubuntu send to the application
    QKeyEvent(KeyPress, Key_C, ControlModifier, text="c")

  This is most likely because QMirClientInput::dispatchKeyEvent is using
  xkb_keysym_to_utf8 to get the text of the event instead of using
  xkb_state_key_get_utf8

  This breaks for example Konsole that expects the correct text to be
  sent.

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

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


[Touch-packages] [Bug 1665556] [NEW] Pulseaudio crashes on startup of rhythmbox

2017-02-16 Thread BeowulfOF
Public bug reported:

Starting up rhythmbox lets pulseaudio crash. The applet in the ubuntu
status bar shows no audio possible, and hotkeys for audio level do also
refuse to work.

$ lsb_release -rd
Description:Ubuntu 16.04.2 LTS
Release:16.04
$ apt-cache policy rhythmbox
rhythmbox:
  Installiert:   3.3-1ubuntu7
  Installationskandidat: 3.3-1ubuntu7
  Versionstabelle:
 *** 3.3-1ubuntu7 500
500 http://de.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
100 /var/lib/dpkg/status
$ apt-cache policy pulseaudio
pulseaudio:
  Installiert:   1:8.0-0ubuntu3.2
  Installationskandidat: 1:8.0-0ubuntu3.2
  Versionstabelle:
 *** 1:8.0-0ubuntu3.2 500
500 http://de.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 1:8.0-0ubuntu3 500
500 http://de.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: pulseaudio 1:8.0-0ubuntu3.2
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/hwC0D2', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D3p', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
CurrentDesktop: Unity
Date: Fri Feb 17 07:48:08 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-04-22 (300 days ago)
InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
SourcePackage: pulseaudio
Symptom: audio
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/17/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.05.04
dmi.board.asset.tag: Tag 12345
dmi.board.name: W65_W67RZ
dmi.board.vendor: TUXEDO
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: TUXEDO
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.04:bd12/17/2015:svnTUXEDO:pnW65_W67RZ:pvrNotApplicable:rvnTUXEDO:rnW65_W67RZ:rvrNotApplicable:cvnTUXEDO:ct10:cvrN/A:
dmi.product.name: W65_W67RZ
dmi.product.version: Not Applicable
dmi.sys.vendor: TUXEDO
modified.conffile..etc.pulse.default.pa: [modified]
mtime.conffile..etc.pulse.default.pa: 2016-05-27T07:24:27.474424

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


** Tags: amd64 apport-bug xenial

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

Title:
  Pulseaudio crashes on startup of rhythmbox

Status in pulseaudio package in Ubuntu:
  New

Bug description:
  Starting up rhythmbox lets pulseaudio crash. The applet in the ubuntu
  status bar shows no audio possible, and hotkeys for audio level do
  also refuse to work.

  $ lsb_release -rd
  Description:  Ubuntu 16.04.2 LTS
  Release:  16.04
  $ apt-cache policy rhythmbox
  rhythmbox:
Installiert:   3.3-1ubuntu7
Installationskandidat: 3.3-1ubuntu7
Versionstabelle:
   *** 3.3-1ubuntu7 500
  500 http://de.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  100 /var/lib/dpkg/status
  $ apt-cache policy pulseaudio
  pulseaudio:
Installiert:   1:8.0-0ubuntu3.2
Installationskandidat: 1:8.0-0ubuntu3.2
Versionstabelle:
   *** 1:8.0-0ubuntu3.2 500
  500 http://de.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  100 /var/lib/dpkg/status
   1:8.0-0ubuntu3 500
  500 http://de.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pulseaudio 1:8.0-0ubuntu3.2
  ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
  Uname: Linux 4.4.0-62-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/hwC0D2', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D3p', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
  CurrentDesktop: Unity
  Date: Fri Feb 17 07:48:08 2017
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-04-22 (300 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  SourcePackage: pulseaudio
  Symptom: audio
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/17/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.05.04
  dmi.board.asset.tag: Tag 12345
  

[Touch-packages] [Bug 1628478] Re: Mir servers crash when using the Nvidia driver

2017-02-16 Thread Daniel van Vugt
** Branch linked: lp:~raof/mir/eglstream-platform

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

Title:
  Mir servers crash when using the Nvidia driver

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  Triaged

Bug description:
  I select Unity8 from the log in screen, type in my credentials and it
  just hangs.

  Intel® Core™ i7-4710HQ CPU @ 2.50GHz × 8 
  GeForce GTX 860M/PCIe/SSE2

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

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


[Touch-packages] [Bug 1664610] Re: qtubuntu sends wrong text as part of QKeyEvent

2017-02-16 Thread Daniel van Vugt
** Also affects: mir (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  qtubuntu sends wrong text as part of QKeyEvent

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  In Progress

Bug description:
  When using Unity7 or Plasma a key event created by Ctrl+C is
    QKeyEvent(KeyPress, Key_C, ControlModifier, text="\u0003")

  But Unity8+ qtubuntu send to the application
    QKeyEvent(KeyPress, Key_C, ControlModifier, text="c")

  This is most likely because QMirClientInput::dispatchKeyEvent is using
  xkb_keysym_to_utf8 to get the text of the event instead of using
  xkb_state_key_get_utf8

  This breaks for example Konsole that expects the correct text to be
  sent.

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

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


[Touch-packages] [Bug 1665535] [NEW] WebRTC webcam support broken in firefox due to apparmor

2017-02-16 Thread Jay Hennessey
Public bug reported:

In order to use sites that make use of WebRTC's webcam support, firefox
needs access to the /dev/videoN device. When I applied the latest
firefox update over the last week, apparmor was set to enforcing mode,
which broke sites that use WebRTC, like https://talky.io.

$ lsb_release -rd
Description:Ubuntu 16.10
Release:16.10
$ apt-cache policy firefox
firefox:
  Installed: 51.0.1+build2-0ubuntu0.16.10.2
  Candidate: 51.0.1+build2-0ubuntu0.16.10.2
  Version table:
 *** 51.0.1+build2-0ubuntu0.16.10.2 500
500 http://us.archive.ubuntu.com/ubuntu yakkety-updates/main amd64 
Packages
500 http://us.archive.ubuntu.com/ubuntu yakkety-security/main amd64 
Packages
100 /var/lib/dpkg/status
 49.0+build4-0ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu yakkety/main amd64 Packages

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

** Package changed: apparmor (Ubuntu) => firefox (Ubuntu)

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

Title:
  WebRTC webcam support broken in firefox due to apparmor

Status in firefox package in Ubuntu:
  New

Bug description:
  In order to use sites that make use of WebRTC's webcam support,
  firefox needs access to the /dev/videoN device. When I applied the
  latest firefox update over the last week, apparmor was set to
  enforcing mode, which broke sites that use WebRTC, like
  https://talky.io.

  $ lsb_release -rd
  Description:  Ubuntu 16.10
  Release:  16.10
  $ apt-cache policy firefox
  firefox:
Installed: 51.0.1+build2-0ubuntu0.16.10.2
Candidate: 51.0.1+build2-0ubuntu0.16.10.2
Version table:
   *** 51.0.1+build2-0ubuntu0.16.10.2 500
  500 http://us.archive.ubuntu.com/ubuntu yakkety-updates/main amd64 
Packages
  500 http://us.archive.ubuntu.com/ubuntu yakkety-security/main amd64 
Packages
  100 /var/lib/dpkg/status
   49.0+build4-0ubuntu2 500
  500 http://us.archive.ubuntu.com/ubuntu yakkety/main amd64 Packages

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

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


[Touch-packages] [Bug 1650842] Re: dont know

2017-02-16 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  dont know

Status in xorg package in Ubuntu:
  Expired

Bug description:
  i dont understand

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: xorg 1:7.7+13ubuntu4
  ProcVersionSignature: Ubuntu 4.8.0-30.32-generic 4.8.6
  Uname: Linux 4.8.0-30-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Sun Dec 18 06:29:59 2016
  DistUpgraded: Fresh install
  DistroCodename: yakkety
  DistroVariant: ubuntu
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV610/M74 [Mobility Radeon HD 2400 
XT] [1002:94c8] (prog-if 00 [VGA controller])
 Subsystem: Apple Inc. RV610/M74 [Mobility Radeon HD 2400 XT] [106b:0084]
  InstallationDate: Installed on 2016-11-26 (21 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  MachineType: Apple Inc. iMac8,1
  ProcEnviron:
   LANGUAGE=sv
   PATH=(custom, no user)
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.8.0-30-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/09/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM81.88Z.00C1.B00.0802091538
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F226BEC8
  dmi.board.vendor: Apple Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag#
  dmi.chassis.type: 13
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-F226BEC8
  dmi.modalias: 
dmi:bvnAppleInc.:bvrIM81.88Z.00C1.B00.0802091538:bd02/09/08:svnAppleInc.:pniMac8,1:pvr1.0:rvnAppleInc.:rnMac-F226BEC8:rvrPVT:cvnAppleInc.:ct13:cvrMac-F226BEC8:
  dmi.product.name: iMac8,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.
  version.compiz: compiz 1:0.9.13.0+16.10.20160818.2-0ubuntu2
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.70-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.3-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.3-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-1ubuntu6.1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.1-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160706-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-2
  xserver.bootTime: Sun Dec 18 00:15:19 2016
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.18.4-1ubuntu6.1
  xserver.video_driver: radeon

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

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


[Touch-packages] [Bug 1650874] Re: Bug

2017-02-16 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Bug

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Que dois je faire ?

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-53.74-generic 4.4.30
  Uname: Linux 4.4.0-53-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Sun Dec 18 11:26:34 2016
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6310] [1002:9802] 
(prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Wrestler [Radeon HD 6310] [1025:0602]
  InstallationDate: Installed on 2016-12-18 (0 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: Acer Aspire 5250
  ProcEnviron:
   LANGUAGE=fr_FR
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-53-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/17/2011
  dmi.bios.vendor: Acer
  dmi.bios.version: V1.06
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: HMA51-BZ
  dmi.board.vendor: Acer
  dmi.board.version: Base Board Version
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.06
  dmi.modalias: 
dmi:bvnAcer:bvrV1.06:bd11/17/2011:svnAcer:pnAspire5250:pvrV1.06:rvnAcer:rnHMA51-BZ:rvrBaseBoardVersion:cvnAcer:ct10:cvrV1.06:
  dmi.product.name: Aspire 5250
  dmi.product.version: V1.06
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-0ubuntu0.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.2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Sun Dec 18 11:06:17 2016
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.18.4-0ubuntu0.2
  xserver.video_driver: radeon

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

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


[Touch-packages] [Bug 1665018] Re: client tools ignore -h option without port number

2017-02-16 Thread Mathew Hodson
** Changed in: cups (Ubuntu Trusty)
   Importance: Undecided => Medium

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

Title:
  client tools ignore -h option without port number

Status in cups package in Ubuntu:
  New
Status in cups source package in Trusty:
  New

Bug description:
  [Impact]
  Prevents user from overriding default print server on cmdline if he's not 
aware of the fact that this bug may be overriden by giving a port number.

  [Test Case]
  1. Setup 2 cups servers with a shared printer set as default destination: 
server1, server2.
  2. On a trusty client try:
  export CUPS_SERVER=server1
  lpstat -h server2 -H
  3. Expected result:
  server2:631
  4. Actual result:
  server1:631
  (server given by CUPS_SERVER is used instead of the one given by -h option).

  [Regression Potential]
  Minimal. ipp_port is initialized to default value if not given explicitly. 
Fix is a backport from Xenial version and already present in upstream release.

  [Other Info]
   
  * Original bug description:

  Some commandline tools (e.g. lp, lpstat) ignore -h option if no port number 
is given.
  This version affects Trusty with cups-client 1.7.2-0ubuntu1.7. Xenial works 
fine.

  Test to reproduce:
  1. Setup 2 cups servers with a shared printer set as default destination: 
server1, server2.
  2. On a trusty client try:
  export CUPS_SERVER=server1
  lpstat -h server2 -H

  3. Expected result:
  server2:631

  4. Actual result:
  server1:631
  (server given by CUPS_SERVER is used instead of the one given by -h option).

  If a port number is given (e.g. server2:631) the commands work as
  expected.

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

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


[Touch-packages] [Bug 1657567] Re: "Content-Range: */" on non-416 responses considered invalid

2017-02-16 Thread Travisgevans
I thought it might be helpful to anyone still having this problem (where
the fix hasn't been backported yet) to mention that the workaround is
described in Bug #1607535 (essentially, delete the affected partial
download files in /var/lib/update-notifier/package-data-
downloads/partial/ and then try reinstalling again).

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

Title:
  "Content-Range: */" on non-416 responses considered invalid

Status in apt package in Ubuntu:
  Fix Released

Bug description:
  APT only allows Content-Range: */ to be specified on a 416
  response. Sourceforge sometimes replies with that in a 302 redirect.

  We should probably just accept and silently ignore that content-range
  field for other values.

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

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


[Touch-packages] [Bug 1660017] Re: EDID does not change when hotplugging a monitor

2017-02-16 Thread Daniel van Vugt
** Also affects: mir/0.26
   Importance: Undecided
   Status: New

** Changed in: mir/0.26
Milestone: None => 0.26.2

** Changed in: mir/0.26
   Importance: Undecided => Medium

** Changed in: mir/0.26
   Status: New => Triaged

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

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

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

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

Title:
  EDID does not change when hotplugging a monitor

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Triaged
Status in mir package in Ubuntu:
  Triaged

Bug description:
  EDID does not change when hotplugging a monitor

  It appears Mir only gets the EDID right if the monitor was plugged in
  before the server started.

  If you change monitors, then Mir continues to report the old monitor's
  EDID. And similarly if the server started before the monitor was
  plugged in, Mir always reports no EDID for it.

  Other attributes like physical size appear to change correctly when
  hotplugging. Only the EDID is wrong.

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

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


[Touch-packages] [Bug 1661163] Re: [regression] mirout crashes when connecting to unity8 or any nested server: [libprotobuf FATAL /usr/include/google/protobuf/repeated_field.h:1408] CHECK failed: (ind

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
Milestone: None => 0.26.2

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

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

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

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

Title:
  [regression] mirout crashes when connecting to unity8 or any nested
  server: [libprotobuf FATAL
  /usr/include/google/protobuf/repeated_field.h:1408] CHECK failed:
  (index) < (current_size_):

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Triaged
Status in mir package in Ubuntu:
  Triaged

Bug description:
  mirout crashes when connecting to unity8 or any nested server.

  $ mirout -- --desktop_file_hint=unity8
  Connected to server: 
  [libprotobuf FATAL /usr/include/google/protobuf/repeated_field.h:1408] CHECK 
failed: (index) < (current_size_):
  terminate called after throwing an instance of 
'google::protobuf::FatalException'
    what():  CHECK failed: (index) < (current_size_):
  Aborted (core dumped)

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

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


[Touch-packages] [Bug 1263317] Re: Not working on GTK 3 undecorated windows

2017-02-16 Thread OwN
You can fix the resize issue by doing the following on Ubuntu 16.10:

http://askubuntu.com/questions/733466/cant-resize-nautilus-window-in-
gnome-flashback-using-ambiance-theme/884230#884230

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

Title:
  Not working on GTK 3 undecorated windows

Status in Ubuntu theme:
  Confirmed
Status in ubuntu-themes package in Ubuntu:
  Confirmed

Bug description:
  Gnome-shell 3.10.2
  Fedora 20

  There appears to be no window decorations for any gtk3 windows.
  Nautilus, gnome control panel, gnome tweak tools etc

  There are no resize handles, shadows, borders, rounded corners etc

  This afftects Gnome-Shell 3.10 to 3.11, on both Fedora 19,&20 and
  Ubuntu 13.10 up

  I've tested the Ambiance and Radiance themes and both these aren't
  playing nicely.

  I hope this is still being maintained becuase this is my favourite gtk
  theme :P

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-themes/+bug/1263317/+subscriptions

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


[Touch-packages] [Bug 1661704] Re: mir_window_request_persistent_id_sync seg faults when called twice

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  mir_window_request_persistent_id_sync seg faults when called twice

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  Thread 1 "gtk3-widget-fac" received signal SIGSEGV, Segmentation fault.
  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  67  ../nptl/pthread_mutex_lock.c: No such file or directory.
  (gdb) bt
  #0  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  #1  0x737c1003 in __gthread_mutex_lock () at 
/usr/include/x86_64-linux-gnu/c++/6/bits/gthr-default.h:748
  #2  std::mutex::lock() (this=0x0) at /usr/include/c++/6/bits/std_mutex.h:103
  #3  std::unique_lock::lock() (this=0x7fffbad0) at 
/usr/include/c++/6/bits/std_mutex.h:267
  #4  std::unique_lock::unique_lock(std::mutex&) () at 
/usr/include/c++/6/bits/std_mutex.h:197
  #5  MirWaitHandle::wait_for_all() (this=0x0) at 
./src/client/mir_wait_handle.cpp:51
  #6  0x737d0623 in mir_surface_request_persistent_id_sync 
(surface=) at ./src/client/mir_surface_api.cpp:1266
  #7  0x77b7137a in gdk_mir_display_convert_selection 
(display=0x557ad010, requestor=0x56235af0, selection=0x45, target=0x52, 
time=34494073)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gdk/mir/gdkmirdisplay.c:845
  #8  0x77aee577 in gdk_selection_convert (requestor=0x56235af0, 
selection=0x45, target=0x52, time=34494073) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gdk/gdkselection.c:273
  #9  0x773f675e in gtk_selection_convert (widget=0x55fcaf80, 
selection=0x45, target=0x52, time_=34494073) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkselection.c:1162
  #10 0x77537a04 in gtk_clipboard_real_request_contents 
(clipboard=0x55fb7690, target=0x52, callback=0x774469cc 
, user_data=0x7fffc00037b0)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkclipboard.c:1023
  #11 0x7753793f in gtk_clipboard_request_contents 
(clipboard=0x55fb7690, target=0x52, callback=0x774469cc 
, user_data=0x7fffc00037b0)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkclipboard.c:994
  #12 0x774471be in gtk_text_buffer_paste_clipboard 
(buffer=0x5594b2f0, clipboard=0x55fb7690, override_location=0x0, 
default_editable=1)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtktextbuffer.c:3871
  #13 0x7747f7e6 in gtk_text_view_paste_clipboard 
(text_view=0x55ad28b0) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtktextview.c:7156
  #14 0x762b4fe7 in g_cclosure_marshal_VOID__VOID 
(closure=0x55cac020, return_value=0x0, n_param_values=1, 
param_values=0x5616a050, invocation_hint=0x7fffc0e0,
  marshal_data=0x7747f78d ) at 
/home/william/Code/jhbuild/checkout/glib/gobject/gmarshal.c:875
  #15 0x762b24a4 in g_type_class_meta_marshal (closure=0x55cac020, 
return_value=0x0, n_param_values=1, param_values=0x5616a050, 
invocation_hint=0x7fffc0e0, marshal_data=0x410)
  at /home/william/Code/jhbuild/checkout/glib/gobject/gclosure.c:997
  #16 0x762b1dc0 in g_closure_invoke (closure=0x55cac020, 
return_value=0x0, n_param_values=1, param_values=0x5616a050, 
invocation_hint=0x7fffc0e0)
  at /home/william/Code/jhbuild/checkout/glib/gobject/gclosure.c:804
  #17 0x762d0532 in signal_emit_unlocked_R (node=0x55cac050, 
detail=0, instance=0x55ad28b0, emission_return=0x0, 
instance_and_params=0x5616a050)
  at /home/william/Code/jhbuild/checkout/glib/gobject/gsignal.c:3673
  #18 0x762ce32d in g_signal_emitv (instance_and_params=0x5616a050, 
signal_id=450, detail=0, return_value=0x0) at 
/home/william/Code/jhbuild/checkout/glib/gobject/gsignal.c:3129
  #19 0x771a598c in gtk_binding_entry_activate (entry=0x55cc7c80, 
object=0x55ad28b0) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkbindings.c:646
  #20 0x771a7193 in binding_activate (binding_set=0x55cac760, 
entries=0x562609c0, object=0x55ad28b0, is_release=0, 
unbound=0x7fffc2ec)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkbindings.c:1446
  #21 0x771a7320 in gtk_bindings_activate_list (object=0x55ad28b0, 
entries=0x562609c0, is_release=0) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkbindings.c:1505
  #22 0x771a7594 in gtk_bindings_activate_event (object=0x55ad28b0, 
event=0x7fffdc002810) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkbindings.c:1592
  #23 0x77505621 in gtk_widget_real_key_press_event 
(widget=0x55ad28b0, event=0x7fffdc002810) at 

[Touch-packages] [Bug 1662997] Re: [regression] mirscreencast hangs during screencast creation

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] mirscreencast hangs during screencast creation

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  hmm, sometime between 3980 and tip, mirscreencast started hanging
  during screencast creation. Bound to generate some complaints.

  Thread 1 "mirscreencast.b" received signal SIGTSTP, Stopped (user).
  pthread_cond_wait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
  185   ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: No such file or 
directory.
  (gdb) bt
  #0  pthread_cond_wait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
  #1  0x77449afc in 
std::condition_variable::wait(std::unique_lock&) ()
 from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
  #2  0x77ea131a in 
std::condition_variable::wait 
>(std::unique_lock &, MirWaitHandle::) 
(this=0x555da6d0, __lock=..., __p=...)
  at /usr/include/c++/6/condition_variable:99
  #3  0x77ea1061 in MirWaitHandle::wait_for_all (this=0x555da6a8)
  at /home/kdub/source/mir/mir/src/client/mir_wait_handle.cpp:53
  #4  0x77ee5420 in (anonymous namespace)::create_screencast 
(spec=0x555d9bf0)
  at /home/kdub/source/mir/mir/src/client/mir_screencast_api.cpp:38
  #5  0x77ee5631 in mir_screencast_create_sync (spec=0x555d9bf0)
  at /home/kdub/source/mir/mir/src/client/mir_screencast_api.cpp:90
  #6  0x55591430 in main (argc=3, argv=0x7fffe478)
  at /home/kdub/source/mir/mir/src/utils/screencast.cpp:568

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

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


[Touch-packages] [Bug 1662942] Re: libmirclient-dev missing build depndency on libmircore-dev

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
Milestone: 0.26.1 => 0.26.2

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

Title:
  libmirclient-dev missing build depndency on libmircore-dev

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Triaged
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  There is a broken build-dep in the Mir 0.26 packaging.

  Dialogue taken from IRC revealing the details:

   alan_g, when I include mir_toolkit header files in chromium I get 
this error:
   In file included from 
/usr/include/mirclient/mir_toolkit/events/event.h:90:
   #include "mir_toolkit/mir_input_device_types.h"
   and apt-file search doesn't return anything
   I wonder what I am missing
   is this a bug or there's a lib I should have installed?
   locate also cant find this file
   that's in libmircore-dev.  What do you get from $ pkg-config 
--cflags mirclient
   $ pkg-config --cflags mirclient
   -pthread -I/usr/include/mirclient -I/usr/include/mircookie 
-I/usr/include/mircore
   that lib was missing :)
   Then /usr/include/mircore/mir_toolkit/mir_input_device_types.h ought 
to be there
   :s
   ok installing mircore-dev fixed that
   apt-file should return it though :/
   Hmm. $ apt depends libmirclient-dev doesn't list libmircore-dev - 
sounds like a bug
   yes, when I ran apt-get build-dep libmirclient-dev mircore-dev was 
not installed

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

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


[Touch-packages] [Bug 1663197] Re: mir_window_spec_set_cursor_name() doesn't trigger mir::scene::SurfaceObserver::cursor_image_set_to

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  mir_window_spec_set_cursor_name() doesn't trigger
  mir::scene::SurfaceObserver::cursor_image_set_to

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in MirAL:
  Invalid
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  qtmir relies on mir::scene::SurfaceObserver::cursor_image_set_to being
  called whenever the surface cursor name changes.

  qtubuntu still uses the deprecated API
  "mir_cursor_configuration_from_name() && mir_window_configure_cursor".
  With that, mir::scene::SurfaceObserver::cursor_image_set_to does get
  called in qtmir.

  But once qtubuntu uses the new Mir API for that[1],
  "mir_window_spec_set_cursor_name() && mir_window_apply_spec()", the
  SurfaceObserver in qtmir no longer gets notified

  
  [1] - 
https://code.launchpad.net/~albaguirre/qtubuntu/more-new-mir-apis/+merge/316646

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

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


[Touch-packages] [Bug 1661128] Re: [regression] Unity8 stutters constantly (like half frame rate) using Mir 0.26.0

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Unity8 stutters constantly (like half frame rate) using
  Mir 0.26.0

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Unity8 stutters constantly (like half frame rate) on a high-end
  desktop.

  This regression only happened recently, perhaps due to the
  introduction of Mir 0.26.0.

  Surprisingly though, using the same Mir release I can start a demo
  server on another VT and everything is silky-smooth. The problem only
  seems to occur with Unity8.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1661128/+subscriptions

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


[Touch-packages] [Bug 1661072] Re: [regression] Mir 0.26.0 - spinner loading animation, minimize, maximize too fast

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Mir 0.26.0 - spinner loading animation, minimize,
  maximize too fast

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in miral package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  mir 0.26 landed in overlay and now the loading animation is too fast and also 
i think all the animations are too fast (minimize, maximize etc) o_O
  aren't the animation fps independent? should be time based right?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1661072/+subscriptions

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


[Touch-packages] [Bug 1661521] Re: [regression] Windowed clients of nested servers are all black

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Windowed clients of nested servers are all black

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  [regression] Windowed clients of nested servers are all black

  FAILING:
  lp:mir r4008
  lp:mir/0.26 r4005

  WORKING:
  Mir 0.26.0 zesty binaries (lp:mir/0.26 r3994)
  lp:mir/0.25 r3822

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

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


[Touch-packages] [Bug 1661508] Re: [regression] Nested server segfaults or rapidly logs exceptions when a fullscreen client starts [in mir_presentation_chain_set_dropping_mode ... std::exception::what

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Nested server segfaults or rapidly logs exceptions when a
  fullscreen client starts [in mir_presentation_chain_set_dropping_mode
  ... std::exception::what: Operation not permitted]

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  Nested server segfaults when a fullscreen client starts

  Using Mir 0.26.0 (zesty release):

  The client dies:

  [2017-02-03 15:05:44.315444]  Mesa/NativeSurface: Caught exception at 
Mir/EGL driver boundary (in advance_buffer): 
/build/mir-1Sl_GZ/mir-0.26.0+17.04.20170126.3/src/client/no_tls_future-inl.h(76):
 Throw in function void mir::client::PromiseStateBase::break_promise() [with 
T = std::shared_ptr]
  Dynamic exception type: 
boost::exception_detail::error_info_injector
  std::exception::what: broken_promise

  Because the server died:

  Segmentation fault (core dumped)
  (gdb) bt
  #0  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  #1  0x7fcceb7b4003 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirclient.so.9
  #2  0x7fcceb7d1961 in mir_presentation_chain_set_dropping_mode ()
     from /usr/lib/x86_64-linux-gnu/libmirclient.so.9
  #3  0x7fccec0e3a7a in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #4  0x7fccec09fd2d in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #5  0x7fccec09f018 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #6  0x7fccec0e2c79 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #7  0x7fccebcfab2f in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
  #8  0x7fcce95326ca in start_thread (arg=0x7fccde2b4700)
  at pthread_create.c:333
  #9  0x7fccec4710ff in clone ()
  at ../sysdeps/unix/sysv/linux/x86_64/clone.S:105

  However in development builds the server does not die and just floods
  the log instead:

  [2017-02-03 16:52:44.382460]  mirclient: Caught exception at client 
library boundary (in mir_presentation_chain_set_dropping_mode): Dynamic 
exception type: std::system_error
  std::exception::what: Operation not permitted

  [2017-02-03 16:52:44.399142]  mirclient: Caught exception at client 
library boundary (in mir_presentation_chain_set_dropping_mode): Dynamic 
exception type: std::system_error
  std::exception::what: Operation not permitted

  [2017-02-03 16:52:44.415823]  mirclient: Caught exception at client 
library boundary (in mir_presentation_chain_set_dropping_mode): Dynamic 
exception type: std::system_error
  std::exception::what: Operation not permitted

  [2017-02-03 16:52:44.432504]  mirclient: Caught exception at client 
library boundary (in mir_presentation_chain_set_dropping_mode): Dynamic 
exception type: std::system_error
  std::exception::what: Operation not permitted

  *** WORKAROUND ***
  Start your nested server with --nested-passthrough=OFF
  Which works on the 0.26.0 release, but not on anything newer because you'll 
then hit the more recent regression bug 1661521.

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

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


[Touch-packages] [Bug 1665471] Re: unknown, auto pop-up ????

2017-02-16 Thread Seth Arnold
** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/ubuntu/+source/hud/+bug/1665471/+attachment/4820457/+files/CoreDump.gz

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

Title:
  unknown, auto pop-up 

Status in hud package in Ubuntu:
  New

Bug description:
  The message states problem with 17.04, we're not even there yet. This
  16.10 version loaded corrupt from the beginning, can't find how to get
  around it. The initial download came up with a green screen, blew out
  all OS capability. Found a server version from the UK, it loaded OK.
  I'm not real savay with terminal applications, however, I got it to
  work. I would simply like to have a 'stable' OS, like it's always been
  until this time. Any suggestion would be appreciated. I have desktop
  on my other machine, but CD writer is missing, and I can't install
  one. Seems that any download OS I try won't install properly, and I
  don't know why. I'm waiting for 17.04, but in the meantime, it's very
  frustrating..and your help 'forums' don'tActually this is even the
  first time the 'send report' thing has actually worked...I've not had
  any problems with any version until this. I'm considering downloading
  16.04 and starting over, but I'd rather not have to do all that work,
  as I'm just a 'casual user, and 'basic' OS works just fine for me. Any
  information, suggestions, etc., would be greatly appreciated...Thank
  you..

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: hud 14.10+17.04.20170106.1-0ubuntu1
  ProcVersionSignature: Ubuntu 4.9.0-15.16-generic 4.9.5
  Uname: Linux 4.9.0-15-generic i686
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: i386
  CurrentDesktop: Unity
  Date: Thu Feb 16 13:27:43 2017
  ExecutablePath: /usr/lib/i386-linux-gnu/hud/hud-service
  InstallationDate: Installed on 2016-12-22 (55 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release i386 (20161012.2)
  ProcCmdline: /usr/lib/i386-linux-gnu/hud/hud-service
  ProcEnviron:
   LANG=en_US.UTF-8
   LANGUAGE=en_US
   PATH=(custom, user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  SegvAnalysis:
   Segfault happened at: 0xb7730a74:mov$0xa7,%ah
   PC (0xb7730a74) in non-executable VMA region: 0xb773-0xb7731000 rw-p 
/lib/i386-linux-gnu/ld-2.24.so
   source "$0xa7" ok
   destination "%ah" ok
  SegvReason: executing writable VMA /lib/i386-linux-gnu/ld-2.24.so
  Signal: 11
  SourcePackage: hud
  Stacktrace:
   #0  0xb7730a74 in ?? ()
   No symbol table info available.
   Backtrace stopped: Cannot access memory at address 0x7
  StacktraceTop: ?? ()
  Title: hud-service crashed with SIGSEGV
  UpgradeStatus: Upgraded to zesty on 2016-12-23 (55 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Touch-packages] [Bug 1662455] Re: Mir graphics platform ABI broke in series 0.26 but sonames never changed

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  Mir graphics platform ABI broke in series 0.26 but sonames never
  changed

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  An ABI break in series 0.26 arose from changes to:
  include/platform/mir/graphics/display_configuration.h
  include/platform/mir/graphics/graphic_buffer_allocator.h

  However the applicable ABI(s) never changed from series 0.25:
  MIR_SERVER_GRAPHICS_PLATFORM_ABI
  MIRPLATFORM_ABI

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

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


[Touch-packages] [Bug 1663062] Re: [regression] Software clients of nested servers with size >=480x480 are all black in Mir 0.25.0 and later (or stretched and distorted under Unity8)

2017-02-16 Thread Daniel van Vugt
** Changed in: mir/0.26
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Software clients of nested servers with size >=480x480
  are all black in Mir 0.25.0 and later (or stretched and distorted
  under Unity8)

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.25 series:
  Won't Fix
Status in Mir 0.26 series:
  Fix Released
Status in mesa package in Ubuntu:
  Invalid
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  GPU apps seem to work.

  CPU apps all get black screen.

  To repro :
  Under unity7 using mir-on-x:

  1- In a terminal, run :
  mir_demo_server -f /tmp/mysock

  2- In another terminal, run :
  mir_demo_server --host-socket /tmp/mysock

  3- In another terminal, run :
  mir_demo_client_progressbar

  Under Unity8 :
  In another terminal, run :
  mir_demo_client_progressbar

  Observe that, the window is black.

  Whereas, egl clients run fine.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1663062/+subscriptions

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


[Touch-packages] [Bug 1665307] Re: unity-system-compositor crashed with SIGSEGV

2017-02-16 Thread Daniel van Vugt
** Also affects: unity-system-compositor
   Importance: Undecided
   Status: New

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

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

** Changed in: unity-system-compositor
   Importance: Undecided => High

** Changed in: unity-system-compositor (Ubuntu)
   Importance: Medium => High

** Summary changed:

- unity-system-compositor crashed with SIGSEGV
+ unity-system-compositor crashed with SIGSEGV in 
mir::frontend::detail::invoke 1.0.0

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

Title:
  unity-system-compositor crashed with SIGSEGV in
  mir::frontend::detail::invokehttps://bugs.launchpad.net/mir/+bug/1665307/+subscriptions

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


[Touch-packages] [Bug 1665307] Re: unity-system-compositor crashed with SIGSEGV

2017-02-16 Thread Daniel van Vugt
** Information type changed from Private to Public

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

Title:
  unity-system-compositor crashed with SIGSEGV

Status in unity-system-compositor package in Ubuntu:
  New

Bug description:
  unity-system-compositor crashed with SIGSEGV

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: unity-system-compositor 0.9.1+17.04.20170207-0ubuntu1
  ProcVersionSignature: Ubuntu 4.10.0-8.10-generic 4.10.0-rc8
  Uname: Linux 4.10.0-8-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  Date: Wed Feb 15 20:06:43 2017
  ExecutablePath: /usr/sbin/unity-system-compositor
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0102] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASRock Incorporation 2nd Generation Core Processor Family 
Integrated Graphics Controller [1849:0102]
  InstallationDate: Installed on 2016-12-12 (65 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Alpha amd64 (20161108)
  ProcCmdline: /usr/sbin/unity-system-compositor 
--disable-inactivity-policy=true --on-fatal-error-abort --file /run/mir_socket 
--from-dm-fd 12 --to-dm-fd 21 --vt 8
  ProcEnviron:
   
  Signal: 11
  SourcePackage: unity-system-compositor
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
   ?? () from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
   ?? () from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
   ?? () from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
   ?? () from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  Title: unity-system-compositor crashed with SIGSEGV
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  version.libdrm: libdrm2 2.4.75-1
  version.lightdm: lightdm 1.21.4-0ubuntu1
  version.mesa: libegl1-mesa-dev 17.0.0-1ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-system-compositor/+bug/1665307/+subscriptions

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


[Touch-packages] [Bug 1665338] Re: [unity8][gtk] gtk apps with ambiance theme look weird, out of place on unity8

2017-02-16 Thread Daniel van Vugt
I think what you're asking for is a GTK theme that makes GTK apps look
more like Unity8?

I agree that we should be hiding GTK titlebars and using the Unity8 ones
at least (see bug 1398849). But let's make this bug about the overall
theme

** Summary changed:

- [unity8][gtk] gtk apps with ambiance theme look weird, out of place on unity8
+ [enhancement] Re-theme GTK under Unity8 to look more like Unity8

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

Title:
  [enhancement] Re-theme GTK under Unity8 to look more like Unity8

Status in Canonical System Image:
  New
Status in Ubuntu UX:
  New
Status in ubuntu-themes package in Ubuntu:
  New

Bug description:
  gtk apps with ambiance theme look weird, out of place on unity8

  launch some gtk apps, the ambiance theme is not consistent with unity8
  "theme", diff style etc, it just looks ewww eww ew

  see attached screenshot

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1665338/+subscriptions

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


[Touch-packages] [Bug 1665312] Re: [unity8][gtk] wrong tooltips position

2017-02-16 Thread Daniel van Vugt
Are you able to tell if the apps are running native GTK-on-Mir and not
using Xmir?

If under Xmir then this would be a duplicate of bug 1498738


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

** Changed in: gtk+3.0 (Ubuntu)
   Status: New => Incomplete

** Tags added: unity8-desktop

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

Title:
  [unity8][gtk] wrong tooltips position

Status in Canonical System Image:
  Incomplete
Status in gtk+3.0 package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 17.04 Unity8
  launch some randome gtk3 apps (solitaire or terminix), hover some icons with 
the mouse. the tootip text possition is wrong. see attached screenshots

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1665312/+subscriptions

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


[Touch-packages] [Bug 1393578] Re: Subpixel order not included in Mir display information

2017-02-16 Thread Daniel van Vugt
The subpixel information has never yet worked for me. My desktop reports
"unknown" subpixel order for a pretty common monitor:

$ sudo mirout
...
Output 48: DisplayPort, connected, "DELL U2413", 1920x1200+0+0, enabled, on, 
520mm x 320mm (24.0"), normal, 1.00x, unknown, monitor

"unknown" sounds like a bug. And that's without nesting.

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

Title:
  Subpixel order not included in Mir display information

Status in Mir:
  In Progress
Status in QtMir:
  Triaged
Status in qtubuntu:
  Triaged
Status in mir package in Ubuntu:
  Triaged
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  Just capturing something mentioned by Trevinho on IRC this morning.
  MirDisplayOutput does not include subpixel ordering, it could and
  should though. The information is exposed on the drm side
  (drmModeSubPixel). Marking as wishlist in absence of other
  information.

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

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


[Touch-packages] [Bug 1600136] Re: App indicator does not show icon for Qt apps or with custom icons

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~ci-train-bot/sni-qt/sni-qt-ubuntu-xenial-2488.1

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

Title:
  App indicator does not show icon for Qt apps or with custom icons

Status in Qt:
  In Progress
Status in Snappy:
  New
Status in appmenu-qt5 package in Ubuntu:
  Fix Released
Status in libappindicator package in Ubuntu:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  In Progress
Status in snapd package in Ubuntu:
  In Progress
Status in sni-qt package in Ubuntu:
  Fix Released

Bug description:
  Snaps that use the app indicator area via Qt can't display their icon
  there.

  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77

  Some research:

  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name

  didrocks mentions also:

  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp

  


  SRU bug for libappindicator:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator

  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.

  When snaps are generated in non updated systems, the icon will be
  still missing.

  [Regression potential]

  If $SNAP is defined for an app not running in snap confinement the
  icons couldn't be properly visible

  


  SRU bug for appmenu-qt5:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run qt5-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

  


  SRU bug for sni-qt:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/EZjQS5CH and save it as 
snapcraft.yaml
in any folder you want
  * Run:
- snapcraft prime
- sudo snap try prime
- snap run qt4-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

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

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


[Touch-packages] [Bug 1642973] Re: DNS stops working when changing networks

2017-02-16 Thread gpothier
The problem seems to have been resolved in 17.04, I haven't hit it since
I upgraded.

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

Title:
  DNS stops working when changing networks

Status in dnsmasq package in Ubuntu:
  Incomplete

Bug description:
  Since upgrading to 16.10 I am having frequent DNS failures. It usually 
happens when I change networks and after resume from suspend, for example going 
to home from work, or vice versa. When this happens, connectivity is fine (I 
can ping 8.8.8.8 for instance), but I cannot resolve names (eg. google.com).
  Restarting network-manager instantaneously fixes the issue.

  Curiously I have not found this bug on Launchpad. Here is some related
  stuff I've seen:

  https://bugs.launchpad.net/ubuntu/+source/resolvconf/+bug/1640286
  (as described, it seems specific to Chrome)

  https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1592721
  (DNS resolution issues with VPNs, but it looks like it has been solved; at 
least I am not affected anymore)

  http://askubuntu.com/questions/838948/16-10-fail-to-resolve-dns
  (forum post that describes a similar issue, but again for VPNs)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: resolvconf 1.79ubuntu1
  ProcVersionSignature: Ubuntu 4.8.0-27.29-generic 4.8.1
  Uname: Linux 4.8.0-27-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Nov 18 11:07:53 2016
  InstallationDate: Installed on 2015-01-23 (664 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  PackageArchitecture: all
  SourcePackage: resolvconf
  UpgradeStatus: Upgraded to yakkety on 2016-10-30 (19 days ago)

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

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


[Touch-packages] [Bug 1600136] Re: App indicator does not show icon for Qt apps or with custom icons

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~ci-train-bot/sni-qt/sni-qt-ubuntu-zesty-2488

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

Title:
  App indicator does not show icon for Qt apps or with custom icons

Status in Qt:
  In Progress
Status in Snappy:
  New
Status in appmenu-qt5 package in Ubuntu:
  Fix Released
Status in libappindicator package in Ubuntu:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  In Progress
Status in snapd package in Ubuntu:
  In Progress
Status in sni-qt package in Ubuntu:
  Fix Released

Bug description:
  Snaps that use the app indicator area via Qt can't display their icon
  there.

  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77

  Some research:

  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name

  didrocks mentions also:

  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp

  


  SRU bug for libappindicator:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator

  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.

  When snaps are generated in non updated systems, the icon will be
  still missing.

  [Regression potential]

  If $SNAP is defined for an app not running in snap confinement the
  icons couldn't be properly visible

  


  SRU bug for appmenu-qt5:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run qt5-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

  


  SRU bug for sni-qt:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/EZjQS5CH and save it as 
snapcraft.yaml
in any folder you want
  * Run:
- snapcraft prime
- sudo snap try prime
- snap run qt4-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

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

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


[Touch-packages] [Bug 1600136] Re: App indicator does not show icon for Qt apps or with custom icons

2017-02-16 Thread Treviño
** Description changed:

  Snaps that use the app indicator area via Qt can't display their icon
  there.
  
  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77
  
  Some research:
  
  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name
  
  didrocks mentions also:
  
  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp
  
  

  
  SRU bug for libappindicator:
  
  [Impact]
  
  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem
  
  [Test case]
  
  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator
  
  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.
  
  When snaps are generated in non updated systems, the icon will be still
  missing.
  
  [Regression potential]
  
  If $SNAP is defined for an app not running in snap confinement the icons
  couldn't be properly visible
  
  

  
  SRU bug for appmenu-qt5:
  
  [Impact]
  
  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem
  
  [Test case]
  
  * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
-   in any folder you want
+   in any folder you want
  * Run:
-   - snapcraft prime
-   - sudo snap try prime
-   - snap run qt5-systray
+   - snapcraft prime
+   - sudo snap try prime
+   - snap run qt5-systray
  
  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.
  
  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.
  
  [Regression potential]
  
  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible
+ 
+ 

+ 
+ SRU bug for sni-qt:
+ 
+ [Impact]
+ 
+ Indicator icons pointing to a position inside the snap aren't properly
+ found by unity, that shows a "missing icon" emblem
+ 
+ [Test case]
+ 
+ * Download this yaml file http://pastebin.com/raw/EZjQS5CH and save it as 
snapcraft.yaml
+   in any folder you want
+ * Run:
+   - snapcraft prime
+   - sudo snap try prime
+   - snap run qt4-systray
+ 
+ An indicator should open, with the proper icon showin. From the window
+ you can change the icon type, and all the types should work.
+ 
+ When snaps are generated in non updated systems, the icons (except the
+ Themed one) will be still missing.
+ 
+ [Regression potential]
+ 
+ If $SNAP env variable is defined for an app not running in snap
+ confinement the icons couldn't be properly visible

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

Title:
  App indicator does not show icon for Qt apps or with custom icons

Status in Qt:
  In Progress
Status in Snappy:
  New
Status in appmenu-qt5 package in Ubuntu:
  Fix Released
Status in libappindicator package in Ubuntu:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  In Progress
Status in snapd package in Ubuntu:
  In Progress
Status in sni-qt package in Ubuntu:
  Fix Released

Bug description:
  Snaps that use the app indicator area via Qt can't display their icon
  there.

  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77

  Some research:

  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name

  didrocks mentions also:

  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp

  


  SRU bug for libappindicator:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file 

[Touch-packages] [Bug 1600136] Re: App indicator does not show icon for Qt apps or with custom icons

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~3v1n0/sni-qt/xenial-sru1

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

Title:
  App indicator does not show icon for Qt apps or with custom icons

Status in Qt:
  In Progress
Status in Snappy:
  New
Status in appmenu-qt5 package in Ubuntu:
  Fix Released
Status in libappindicator package in Ubuntu:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  In Progress
Status in snapd package in Ubuntu:
  In Progress
Status in sni-qt package in Ubuntu:
  Fix Released

Bug description:
  Snaps that use the app indicator area via Qt can't display their icon
  there.

  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77

  Some research:

  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name

  didrocks mentions also:

  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp

  


  SRU bug for libappindicator:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator

  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.

  When snaps are generated in non updated systems, the icon will be
  still missing.

  [Regression potential]

  If $SNAP is defined for an app not running in snap confinement the
  icons couldn't be properly visible

  


  SRU bug for appmenu-qt5:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run qt5-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

  


  SRU bug for sni-qt:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/EZjQS5CH and save it as 
snapcraft.yaml
in any folder you want
  * Run:
- snapcraft prime
- sudo snap try prime
- snap run qt4-systray

  An indicator should open, with the proper icon showin. From the window
  you can change the icon type, and all the types should work.

  When snaps are generated in non updated systems, the icons (except the
  Themed one) will be still missing.

  [Regression potential]

  If $SNAP env variable is defined for an app not running in snap
  confinement the icons couldn't be properly visible

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

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


[Touch-packages] [Bug 1266675] Re: newusers error adding more than one user

2017-02-16 Thread SerP
I backport 1:4.2-3.1ubuntu5 from xenial to trusty, and problem was
resolved.

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

Title:
  newusers error adding more than one user

Status in shadow package in Ubuntu:
  Confirmed

Bug description:
  1)
  mcegielka@ftp-geodezja:~$ lsb_release -rd
  Description:Ubuntu 13.10
  Release:13.10

  2)
  mcegielka@ftp-geodezja:~$ sudo apt-cache policy passwd
  passwd:
Installed: 1:4.1.5.1-1ubuntu6
Candidate: 1:4.1.5.1-1ubuntu6

  3)
  Expected: add system users from file given as argument:

  mcegielka@ftp-geodezja:~$ cat testusers.txt
  test1:a:::test user 1,,,:/home/test1:/bin/bash
  test2:b:::test user 2,,,:/home/test2:/bin/bash

  4)
  Instead: errors:

  mcegielka@ftp-geodezja:~$ sudo newusers testusers.txt
  *** Error in `newusers': free(): invalid next size (fast): 0x09319cd0 ***
  *** Error in `newusers': malloc(): memory corruption: 0x09319d00 ***

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: passwd 1:4.1.5.1-1ubuntu6
  ProcVersionSignature: Ubuntu 3.11.0-15.23-generic 3.11.10
  Uname: Linux 3.11.0-15-generic i686
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  Date: Tue Jan  7 09:04:11 2014
  InstallationDate: Installed on 2014-01-07 (0 days ago)
  InstallationMedia: Ubuntu-Server 13.10 "Saucy Salamander" - Release i386 
(20131016)
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=pl_PL.UTF-8
   SHELL=/bin/bash
  SourcePackage: shadow
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1341559] Re: OptionSelector should have a count property like all the other model views

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~daker/ubuntu-ui-toolkit/fix.1341559

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

Title:
  OptionSelector should have a count property like all the other model
  views

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

Bug description:
  I think this component should have a count option to know how many
  children are present, as ListView has.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1341559/+subscriptions

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


[Touch-packages] [Bug 1600136] Re: App indicator does not show icon for Qt apps or with custom icons

2017-02-16 Thread Treviño
** Description changed:

  Snaps that use the app indicator area via Qt can't display their icon
  there.
  
  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77
  
  Some research:
  
  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name
  
  didrocks mentions also:
  
  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp
  
  

  
  SRU bug for libappindicator:
  
  [Impact]
  
  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem
  
  [Test case]
  
  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator
  
  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.
  
  When snaps are generated in non updated systems, the icon will be still
  missing.
  
  [Regression potential]
  
  If $SNAP is defined for an app not running in snap confinement the icons
  couldn't be properly visible
+ 
+ 

+ 
+ SRU bug for appmenu-qt5:
+ 
+ [Impact]
+ 
+ Indicator icons pointing to a position inside the snap aren't properly
+ found by unity, that shows a "missing icon" emblem
+ 
+ [Test case]
+ 
+ * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
+   in any folder you want
+ * Run:
+   - snapcraft prime
+   - sudo snap try prime
+   - snap run qt5-systray
+ 
+ An indicator should open, with the proper icon showin. From the window
+ you can change the icon type, and all the types should work.
+ 
+ When snaps are generated in non updated systems, the icons (except the
+ Themed one) will be still missing.
+ 
+ [Regression potential]
+ 
+ If $SNAP env variable is defined for an app not running in snap
+ confinement the icons couldn't be properly visible

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

Title:
  App indicator does not show icon for Qt apps or with custom icons

Status in Qt:
  In Progress
Status in Snappy:
  New
Status in appmenu-qt5 package in Ubuntu:
  Fix Released
Status in libappindicator package in Ubuntu:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  In Progress
Status in snapd package in Ubuntu:
  In Progress
Status in sni-qt package in Ubuntu:
  Fix Released

Bug description:
  Snaps that use the app indicator area via Qt can't display their icon
  there.

  Steps to reproduce and screenshot:
  https://github.com/nuttyartist/notes/pull/77

  Some research:

  - Uses http://doc.qt.io/qt-5/qsystemtrayicon.html
  - The indicator icon is created under /tmp under a randomly generated 
directory name

  didrocks mentions also:

  1. The application says "this is my menu, and here is my icon at that 
address", the address being /tmp/blablabla
  2. appindicator receives the bus messages
  3. and says "let's have a look at this icon at that address"
  4. BUT! /tmp in the snap is different form system /tmp

  


  SRU bug for libappindicator:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/FpEvQYGN and save it as 
snapcraft.yaml
    in any folder you want
  * Run:
    - snapcraft prime
    - sudo snap try prime
    - snap run gtk3-appindicator

  An indicator should open (with proper icon), then if you select "Set
  icon with Full Path" and/or "Enable Local Theme" from its menu, you
  should see a proper icon.

  When snaps are generated in non updated systems, the icon will be
  still missing.

  [Regression potential]

  If $SNAP is defined for an app not running in snap confinement the
  icons couldn't be properly visible

  


  SRU bug for appmenu-qt5:

  [Impact]

  Indicator icons pointing to a position inside the snap aren't properly
  found by unity, that shows a "missing icon" emblem

  [Test case]

  * Download this yaml file http://pastebin.com/raw/KeZ1udjW and save it as 
snapcraft.yaml
in any folder you want
  * Run:
- snapcraft 

[Touch-packages] [Bug 1655839] Re: [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9 FAIL: test_rfc3961

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package heimdal - 7.1.0+dfsg-9ubuntu1

---
heimdal (7.1.0+dfsg-9ubuntu1) zesty; urgency=medium

  * debian/patches/fix_ld_library_path: Fix FTBFS due to LD_LIBRARY_PATH
in test script wrappers.  Closes LP: #1655839. Apply this via
d/rules, as we regenerate the libtool environment during the build.

 -- Nishanth Aravamudan   Thu, 16 Feb
2017 09:56:03 -0800

** Changed in: heimdal (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9  FAIL: test_rfc3961

Status in heimdal package in Ubuntu:
  Fix Released
Status in libtool package in Ubuntu:
  New

Bug description:
  A few builds have failed: amd64, ppc64el & s390x for Zesty proposed

  for example amd64 fails on test_rfc3961

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

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


[Touch-packages] [Bug 1537308] Re: [HP Pavilion Notebook - 15-ab153nr (ENERGY STAR)] System sends Control, Alt and Shift events without input.

2017-02-16 Thread Robert Stolorz
*** This bug is a duplicate of bug 1532746 ***
https://bugs.launchpad.net/bugs/1532746

I had the same issue, it's a problem with the BIOS.

Sadly you can only update this through Windows.

http://support.hp.com/ph-en/drivers/selfservice/hp-pavilion-15-ab100
-notebook-pc-series/8499302/model/8857403#Z7_3054ICK0K8UDA0AQC11TA930O2

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

Title:
  [HP Pavilion Notebook - 15-ab153nr (ENERGY STAR)] System sends
  Control, Alt and Shift events without input.

Status in xorg package in Ubuntu:
  Triaged

Bug description:
  I noticed strange behavior from my Ubuntu system.  While left idle,
  the screensaver would shut off with no interaction with the machine.
  While using the machine, webpages would zoom in or out when trying to
  scroll, and command windows would open while typing.

  Using xev, I found that these events corresponded with ALt_L,
  Control_L and Shift_R events, even though those buttons were not being
  pressed.  I'm attaching a xev log, searching for _L will show the
  events.  ((Shift_R events are, for some reason, much rarer and do not
  occur in the particular log I'm adding.)  In many (but not all)
  incidents, the KeyRelease event occurs without a preceding KeyPress
  event.  This problem starts a variable period of time after booting
  the machine; generally within 4 hours.  Once it starts, it persists
  until a reboot.

  Disabling the trackpad with xinput will stop the problem for several
  hours, but eventually something re-enables the trackpad and the
  problem reappears.

  WORKAROUND: Use kernel parameter:
  i8042.dumbkbd

  Running memtest on the box generates an error when one specific core
  runs one specific test, but I cannot rule out that being related to
  memtest's problems with UEFI systems.  (See
  passmark.com/forum/showthread.php?5638 for info on my memtest results
  and the UEFI issues.) I returned the machine to HP for service.  They
  replaced the keyboard, trackpad and memory.  This did not resolve the
  problem.

  I've recreated the problem in UbuntuMate, Ubuntu, and Debian, on both
  3.x and 4.x kernels.  I cannot reliably reproduce the issue on the
  Windows partition on the same box; I think I might have seen it once
  or twice while working on the machine, but can't rule out accidental
  keypresses by me at those times.  Leaving a keylogger running for over
  24 hours on the Windows partition did not show any unexpected keyboard
  events.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-43.49-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-43-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.17.2-0ubuntu1.8
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: MATE
  Date: Fri Jan 22 21:36:14 2016
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   fglrx-core, 15.200, 3.19.0-32-generic, x86_64: installed
   fglrx-core, 15.200, 3.19.0-33-generic, x86_64: installed
   fglrx-core, 15.200, 3.19.0-42-generic, x86_64: installed
   fglrx-core, 15.200, 3.19.0-43-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Device [1002:9874] (rev c5) (prog-if 
00 [VGA controller])
     Subsystem: Hewlett-Packard Company Device [103c:80af]
  InstallationDate: Installed on 2015-10-30 (84 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Release amd64 
(20150422.1)
  LightdmGreeterLog:
   ** (lightdm-gtk-greeter:938): WARNING **: [PIDs] Failed to execute command: 
upstart

   ** (lightdm-gtk-greeter:938): WARNING **: Failed to load user image: Failed 
to open file '/home/jbhelfrich/.face': No such file or directory
  LightdmGreeterLogOld:
   ** (lightdm-gtk-greeter:1191): WARNING **: [PIDs] Failed to execute command: 
upstart

   ** (lightdm-gtk-greeter:1191): WARNING **: Failed to load user image: Failed 
to open file '/home/jbhelfrich/.face': No such file or directory
  MachineType: HP HP Pavilion Notebook
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-43-generic.efi.signed 
root=UUID=613f6223-b665-4289-9dfa-7b003124dfdf ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/06/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: F.13
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 80AF
  dmi.board.vendor: HP
  dmi.board.version: 81.28
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 

[Touch-packages] [Bug 1665471] Re: unknown, auto pop-up ????

2017-02-16 Thread Emily Ratliff
** Information type changed from Private Security to Public

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

Title:
  unknown, auto pop-up 

Status in hud package in Ubuntu:
  New

Bug description:
  The message states problem with 17.04, we're not even there yet. This
  16.10 version loaded corrupt from the beginning, can't find how to get
  around it. The initial download came up with a green screen, blew out
  all OS capability. Found a server version from the UK, it loaded OK.
  I'm not real savay with terminal applications, however, I got it to
  work. I would simply like to have a 'stable' OS, like it's always been
  until this time. Any suggestion would be appreciated. I have desktop
  on my other machine, but CD writer is missing, and I can't install
  one. Seems that any download OS I try won't install properly, and I
  don't know why. I'm waiting for 17.04, but in the meantime, it's very
  frustrating..and your help 'forums' don'tActually this is even the
  first time the 'send report' thing has actually worked...I've not had
  any problems with any version until this. I'm considering downloading
  16.04 and starting over, but I'd rather not have to do all that work,
  as I'm just a 'casual user, and 'basic' OS works just fine for me. Any
  information, suggestions, etc., would be greatly appreciated...Thank
  you..

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: hud 14.10+17.04.20170106.1-0ubuntu1
  ProcVersionSignature: Ubuntu 4.9.0-15.16-generic 4.9.5
  Uname: Linux 4.9.0-15-generic i686
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: i386
  CurrentDesktop: Unity
  Date: Thu Feb 16 13:27:43 2017
  ExecutablePath: /usr/lib/i386-linux-gnu/hud/hud-service
  InstallationDate: Installed on 2016-12-22 (55 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release i386 (20161012.2)
  ProcCmdline: /usr/lib/i386-linux-gnu/hud/hud-service
  ProcEnviron:
   LANG=en_US.UTF-8
   LANGUAGE=en_US
   PATH=(custom, user)
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
  SegvAnalysis:
   Segfault happened at: 0xb7730a74:mov$0xa7,%ah
   PC (0xb7730a74) in non-executable VMA region: 0xb773-0xb7731000 rw-p 
/lib/i386-linux-gnu/ld-2.24.so
   source "$0xa7" ok
   destination "%ah" ok
  SegvReason: executing writable VMA /lib/i386-linux-gnu/ld-2.24.so
  Signal: 11
  SourcePackage: hud
  Stacktrace:
   #0  0xb7730a74 in ?? ()
   No symbol table info available.
   Backtrace stopped: Cannot access memory at address 0x7
  StacktraceTop: ?? ()
  Title: hud-service crashed with SIGSEGV
  UpgradeStatus: Upgraded to zesty on 2016-12-23 (55 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Touch-packages] [Bug 1661568] Re: logind fails to emit change signal for org.freedesktop.login1.Seat.ActiveSession DBus property

2017-02-16 Thread Dimitri John Ledkov
** Changed in: systemd (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  logind fails to emit change signal for
  org.freedesktop.login1.Seat.ActiveSession DBus property

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  logind fails to emit a DBus PropertiesChanged signal for the
  org.freedesktop.login1.Seat.ActiveSession DBus property. See
  https://github.com/systemd/systemd/issues/5210.

  This breaks repowerd on zesty since repowerd depends on this signal to
  track the active session.

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

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


[Touch-packages] [Bug 1647031] Re: systemd-resolved’s 127.0.0.53 server does not follow CNAME records

2017-02-16 Thread Barry Warsaw
I'll cherry pick back 98974a88 and 47c16359 now.

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

Title:
  systemd-resolved’s 127.0.0.53 server does not follow CNAME records

Status in systemd:
  New
Status in network-manager package in Ubuntu:
  Fix Released
Status in systemd package in Ubuntu:
  Fix Released

Bug description:
  $ systemd-resolve www.freedesktop.org
  www.freedesktop.org: 131.252.210.176
   2610:10:20:722:a800:ff:feda:470f
   (annarchy.freedesktop.org)

  -- Information acquired via protocol DNS in 673.6ms.
  -- Data is authenticated: no
  $ ping www.freedesktop.org
  ping: www.freedesktop.org: Name or service not known
  $ cat /etc/resolv.conf
  # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
  # 127.0.0.53 is the systemd-resolved stub resolver.
  # run "systemd-resolve --status" to see details about the actual nameservers.

  nameserver 127.0.0.53
  $ dig +no{cmd,comments,stats} www.freedesktop.org @127.0.0.53
  ;www.freedesktop.org. IN  A
  www.freedesktop.org.  7146IN  CNAME   annarchy.freedesktop.org.
  $ dig +no{cmd,comments,stats} www.freedesktop.org @8.8.8.8
  ;www.freedesktop.org. IN  A
  www.freedesktop.org.  14399   IN  CNAME   annarchy.freedesktop.org.
  annarchy.freedesktop.org. 14399   IN  A   131.252.210.176

  I trust it needn’t be explained why this makes the internet almost
  completely useless in zesty.

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

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


[Touch-packages] [Bug 1663924] Re: filterCaseSensitivity doesn't work when used in SortFilterModel

2017-02-16 Thread Adnane Belmadiaf
I can confirm that using new RegExp("^" + searchTerms, "i") solves the
issue, maybe we can add that to the docs ?

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

Title:
  filterCaseSensitivity doesn't work when used in SortFilterModel

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

Bug description:
  SortFilterModel does support sortCaseSensitivity but not
  filterCaseSensitivity or it doesn't work, demo attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1663924/+subscriptions

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


[Touch-packages] [Bug 1647031] Re: systemd-resolved’s 127.0.0.53 server does not follow CNAME records

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 232-17ubuntu1

---
systemd (232-17ubuntu1) zesty; urgency=medium

  * debian/patches/0001-resolved-follow-CNAMES-for-DNS-stub-
replies.patch: cherry-pick upstream fix for following CNAMEs in DNS
stub replies.  Closes LP: #1647031.

 -- Steve Langasek   Sun, 12 Feb 2017
22:54:55 -0800

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

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

Title:
  systemd-resolved’s 127.0.0.53 server does not follow CNAME records

Status in systemd:
  New
Status in network-manager package in Ubuntu:
  Fix Released
Status in systemd package in Ubuntu:
  Fix Released

Bug description:
  $ systemd-resolve www.freedesktop.org
  www.freedesktop.org: 131.252.210.176
   2610:10:20:722:a800:ff:feda:470f
   (annarchy.freedesktop.org)

  -- Information acquired via protocol DNS in 673.6ms.
  -- Data is authenticated: no
  $ ping www.freedesktop.org
  ping: www.freedesktop.org: Name or service not known
  $ cat /etc/resolv.conf
  # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
  # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
  # 127.0.0.53 is the systemd-resolved stub resolver.
  # run "systemd-resolve --status" to see details about the actual nameservers.

  nameserver 127.0.0.53
  $ dig +no{cmd,comments,stats} www.freedesktop.org @127.0.0.53
  ;www.freedesktop.org. IN  A
  www.freedesktop.org.  7146IN  CNAME   annarchy.freedesktop.org.
  $ dig +no{cmd,comments,stats} www.freedesktop.org @8.8.8.8
  ;www.freedesktop.org. IN  A
  www.freedesktop.org.  14399   IN  CNAME   annarchy.freedesktop.org.
  annarchy.freedesktop.org. 14399   IN  A   131.252.210.176

  I trust it needn’t be explained why this makes the internet almost
  completely useless in zesty.

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

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


[Touch-packages] [Bug 1647485] Re: NVMe symlinks broken by devices with spaces in model or serial strings

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 232-17ubuntu1

---
systemd (232-17ubuntu1) zesty; urgency=medium

  * debian/patches/0001-resolved-follow-CNAMES-for-DNS-stub-
replies.patch: cherry-pick upstream fix for following CNAMEs in DNS
stub replies.  Closes LP: #1647031.

 -- Steve Langasek   Sun, 12 Feb 2017
22:54:55 -0800

** Changed in: systemd (Ubuntu Zesty)
   Status: Fix Committed => 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/1647485

Title:
  NVMe symlinks broken by devices with spaces in model or serial strings

Status in maas-images:
  Fix Released
Status in systemd:
  New
Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Fix Released
Status in systemd source package in Xenial:
  Fix Released
Status in systemd source package in Yakkety:
  Fix Committed
Status in systemd source package in Zesty:
  Fix Released
Status in systemd package in Debian:
  Fix Released

Bug description:
  [Impact]

  After including the patch from bug 1642903, NVMe devices that include spaces 
in their model or serial strings result in incorrect symlinks, e.g. if the 
model string is "XYZ Corp NVMe drive" then instead of creating:
  /dev/disk/by-id/nvme-XYZ Corp NVMe drive_SERIAL -> ../../nvme0n1
  it creates:
  /dev/disk/by-id/nvme-XYZ -> ../../nvme0n1
  /dev/Corp -> nvme0n1
  /dev/NVMe -> nvme0n1
  /dev/drive_SERIAL -> nvme0n1

  This is because of the way udev handles the SYMLINK value strings; by
  default, it does not do any whitespace replacement.  To enable
  whitespace replacement of a symlink value, the rule must also include
  OPTIONS+="string_escape=replace".  This is done for 'md' and 'dm'
  devices in their rules.  However, there are no rules that actually
  want to specify multiple symlinks, and defaulting to not replacing
  whitespace makes no sense; instead, the default should be to replace
  all whitespace in each symlink value, unless the rule explicitly
  specifies OPTIONS+="string_escape=none".

  [Test Case]

  This assumes using udev with the patch from bug 1642903.

  Without this patch, when using a NVMe drive that contains spaces in
  its model and/or serial strings, check the /dev/disk/by-id/ directory.
  It should contain a partially-correct symlink to the NVMe drive, with
  the name up to the first space.  All following space-separated parts
  of the mode/serial string should have symlinks in the /dev/ directory.
  This is the incorrect behavior.

  With this patch, check the /dev/disk/by-id/ directory.  It should
  contain a fully-correct symlink to the NVMe drive, and no part of the
  drive's model/serial number string should be a link in the /dev
  directory.

  An example of the correct/incorrect naming is in the Impact section.

  There should be no other changes to any of the symlinks under /dev
  before and after this patch.  Typical locations for symlinks are
  /dev/, /dev/disk/by-name/, /dev/disk/by-id/, /dev/disk/by-uuid/,
  /dev/disk/by-label/

  [Regression Potential]

  Errors in udev rules can lead to an unbootable or otherwise completely
  broken system if they unintentionally break or clobber existing
  /dev/disks/ symlinks.

  [Other Info]

  This is also tracked with upstream systemd (udev) bug 4833:
  https://github.com/systemd/systemd/issues/4833

  Also note, this can be worked around in individual rules ONLY (i.e.
  not fixed for all rules) by appending OPTIONS+="string_escape=replace"
  to each of the NVMe rules with SYMLINK+="..." assignment, e.g.:

  KERNEL=="nvme*[0-9]n*[0-9]", ENV{DEVTYPE}=="disk", ATTRS{model}=="?*",
  ENV{ID_SERIAL_SHORT}=="?*",
  ENV{ID_SERIAL}="$attr{model}_$env{ID_SERIAL_SHORT}", SYMLINK+="disk
  /by-id/nvme-$env{ID_SERIAL}", OPTIONS+="string_escape=replace"

  Related bugs:
   * bug 1642903: introduce disk/by-id (model_serial) symlinks for NVMe drives
   * bug 1651602: NVMe driver regression for non-smp/1-cpu systems
   * bug 1649635: export nvme drive model/serial strings via sysfs (trusty)

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas-images/+bug/1647485/+subscriptions

-- 
Mailing list: https://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 1642966] Re: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2017-02-16 Thread andrew buffa
Brian:


how do I fix with no internet connection

the last update disconnected it

Andrew
On 2/16/2017 2:43 PM, Brian Murray wrote:
> Hello Mark, or anyone else affected,
>
> Accepted cups into xenial-proposed. The package will build now and be
> available at https://launchpad.net/ubuntu/+source/cups/2.1.3-4ubuntu0.2
> in a few hours, and then in the -proposed repository.
>
> Please help us by testing this new package.  See
> https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
> enable and use -proposed.  Your feedback will aid us getting this update
> out to other Ubuntu users.
>
> If this package fixes the bug for you, please add a comment to this bug,
> mentioning the version of the package you tested, and change the tag
> from verification-needed to verification-done. If it does not fix the
> bug for you, please add a comment stating that, and change the tag to
> verification-failed.  In either case, details of your testing will help
> us make a better decision.
>
> Further information regarding the verification process can be found at
> https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
> advance!
>
> ** Changed in: cups (Ubuntu Xenial)
> Status: Triaged => Fix Committed
>


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

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

Title:
  package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 1

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Xenial:
  Fix Committed
Status in cups source package in Yakkety:
  Fix Committed
Status in cups source package in Zesty:
  Fix Released

Bug description:
  This is in xenial-proposed, please block release to -updates
  accordingly :)

  [Impact]
  * fail to upgrade

  [testcase]
  Root cause is believed to be reproducible with:

  #!/bin/bash
  systemctl stop cups.path cups.service
  rm /var/cache/cups/org.cups.cupsd
  systemctl start cups.path
  touch /var/cache/cups/org.cups.cupsd
  sleep 1
  rm /var/cache/cups/org.cups.cupsd
  sleep 1
  systemctl stop cups.service
  echo $?

  
  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: cups-daemon 2.1.3-4
  ProcVersionSignature: Ubuntu 4.4.0-46.67-generic 4.4.24
  Uname: Linux 4.4.0-46-generic x86_64
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CupsErrorLog:

  Date: Fri Nov 18 11:13:15 2016
  ErrorMessage: subprocess new pre-removal script returned error exit status 1
  InstallationDate: Installed on 2016-05-02 (200 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lpstat: device for mallards-officejet-pro-8600: 
dnssd://Officejet%20Pro%208600%20%5BD63461%5D._ipp._tcp.local/?uuid=1c852a4d-b800-1f08-abcd-d89d67d63461
  MachineType: Dell Inc. XPS 15 9550
  Papersize: a4
  PpdFiles: mallards-officejet-pro-8600: HP Officejet Pro 8600, hpcups 3.16.3
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.15
  SourcePackage: cups
  Title: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new 
pre-removal script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  dmi.board.name: 0N7TVV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 15 9550
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1434986] Re: Not working network connection after boot

2017-02-16 Thread Erwin van Diermen
Same problem after upgrade from 14.04 to 16.04. (Dell Precision M4700)
After reboot, ifconfig displays IP address and all seems well. Connecting to 
local IP works, but internet fails.
I found another workaround by adding eth0 configuration to the 
/etc/network/interfaces, then, after reboot I stop the network manager: service 
network-manager stop
then: ifdown eth0
then: ifup eth0
and internet works. So, seems indeed a DNS problem.

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

Title:
  Not working network connection after boot

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

Bug description:
  Directly after boot the network connections are not working. I am
  connected and have an IP address, but I cannot establish a connection
  with any Internet server.

  I have the impression it is related to thee DNS lookup, which waits
  forever for a result.

  Cycling the connection (disconnect->reconnect) seems to fix the
  problem for some time.

  I am reporting this against network-manager, but I am not sure if it is 
directly in network manager or if it is systemd related.
  With 14.10 everything worked perfectly.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu11
  ProcVersionSignature: Ubuntu 3.19.0-9.9-generic 3.19.1
  Uname: Linux 3.19.0-9-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.16.2-0ubuntu4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Mar 22 12:38:26 2015
  EcryptfsInUse: Yes
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2015-01-30 (50 days ago)
  InstallationMedia: Ubuntu-GNOME 14.10 "Utopic Unicorn" - Release amd64 
(20141022.1)
  IpRoute:
   default via 192.168.1.1 dev eth0  proto static  metric 1024 
   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.26 
   192.168.1.0/24 dev eth0  proto kernel  scope link  src 192.168.1.29
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to vivid on 2015-03-19 (3 days ago)
  modified.conffile..etc.NetworkManager.NetworkManager.conf: [modified]
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2015-02-16T00:14:50.662693
  nmcli-dev:
   DEVICE  TYPE  STATE  DBUS-PATH  
CONNECTION CON-UUID  CON-PATH   

   eth0ethernet  connected  /org/freedesktop/NetworkManager/Devices/2  
Kabelnetzwerkverbindung 1  4a581685-6002-4401-a993-49aa649667eb  
/org/freedesktop/NetworkManager/ActiveConnection/4 
   wlan0   wifi  connected  /org/freedesktop/NetworkManager/Devices/1  
4A616E7320574C414E f45aa3a7-fb44-41b7-a02a-ea9720d79414  
/org/freedesktop/NetworkManager/ActiveConnection/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/1434986/+subscriptions

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


[Touch-packages] [Bug 1655839] Re: [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9 FAIL: test_rfc3961

2017-02-16 Thread Nish Aravamudan
** Also affects: libtool (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9  FAIL: test_rfc3961

Status in heimdal package in Ubuntu:
  Confirmed
Status in libtool package in Ubuntu:
  New

Bug description:
  A few builds have failed: amd64, ppc64el & s390x for Zesty proposed

  for example amd64 fails on test_rfc3961

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

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


[Touch-packages] [Bug 1598300] Re: CUPS web interface stops responding after a while

2017-02-16 Thread Brian Murray
I've let the new version of cups which fixes bug 1642966, into the
-proposed pocket for Xenial. My thought was that people would be
upgrading from 2.1.3-4 to 2.1.3-4ubuntu0.2 which contains the fix for
both bugs.

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

Title:
  CUPS web interface stops responding after a while

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Xenial:
  Fix Committed

Bug description:
  after 6 minutes or so, cups is not responding.
  it do not produce error on the log, just stop working, worse, it exit with 0

  
⌌—⌍
  |root@cupsmachine :~# systemctl status cups   
|
  |● cups.service - CUPS Scheduler  
|
  |   Loaded: loaded (/lib/systemd/system/cups.service; enabled; vendor preset: 
enabled)|
  |   Active: inactive (dead) since ven. 2016-07-01 10:31:32 TAHT; 2min 16s ago 
|
  | Docs: man:cupsd(8)  
|
  |  Process: 28686 ExecStart=/usr/sbin/cupsd -l (code=exited, 
status=0/SUCCESS)|
  | Main PID: 28686 (code=exited, status=0/SUCCESS) 
|
  | 
|
  |juil. 01 10:30:01 appli-client systemd[1]: Started CUPS Scheduler.   
|
  
⌎—⌏

  I got to launch it again, so I have finish with a cron job like
  */10 * * * * systemctl status cups.service|grep -q 'inactive (dead)' && 
systemctl start cups

  but it is a dirty solution. I have no idea of what make it stop.
  NB: I have seen problems related to apparmor, this machine has no apparmor 
package.

  [Impact]

  If you want to use the CUPS web interface in Xenial and therefore set
  "WebInterface Yes" in /etc/cups/cupsd.conf, CUPS could auto-shutdown
  when it is idle and then an attempt to access http://localhost:631/
  via a web browser fails. People get confused as other access to CUPS

  [Testcase]

  Take a CUPS setup on Xenial with no shared print queues and CUPS only
  listening on the domain socket. Activate the web interface via

  cupsctl WebInterface=Yes

  Now you are able to access the web interface via
  http://localhost:631/. Wait for some minutes without accessing CUPS
  until the CUPS daemon shuts down automatically. Try to open the web
  interface again and it will not work.

  With the fixed CUPS package CUPS will not auto-shutdown when the web
  interface is activated.

  [Regression Potential]

  Low, as we are removing a simple distro patch to get back to the
  original, upstream behavior.

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

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


[Touch-packages] [Bug 1557298] Re: [Xenial][Bluez5] Low Energy Keyboard is paired incorrectly

2017-02-16 Thread Gerd Stolpmann
Just ran into the same problem (I think) with a Logitech K780. The UI
said it is paired, but the keyboard did not work. What fixed the
problem: Running bluetoothctl and then switching once to unifying
receiver and then back to bluetooth (as a replacement for turning
bluetooth off+on at the keyboard, which doesn't have a switch).

My system is Xenial on HP Elitebook 820. Bluetooth chip: BCM20702A.
Kernel 4.4.0-62-generic.

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

Title:
  [Xenial][Bluez5] Low Energy Keyboard is paired incorrectly

Status in Unity Control Center:
  New
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  Failed to pair low energy(bluetooth smart, 4.0) keyboard correctly.

  Bluetooth smart keyboard is unable to use after bluetooth-wizard says
  "OK". Also the passcode input is also not acting interactively like
  when pairing with bluetooth 3.0(LegacyPairing) keyboard.

  Above scenario also being verified with bluetoothctl and blueman.

  Step to reproduce:

  1. open Bluetooth Settings
  2. click on Add New Device button
  3. select the bluetooth le keyboard
  4. input the passcode display on GUI

  Expected result:

  After bluetooth-wizard telling user is okay the keyboard should work

  
  Actual result:

  Pairing mode stop on keyboard, but still not work.

  
  -
  More details about versions:

  Environment:
  xenial daily (20160307)
  bluez 5.37-0ubuntu5
  gnome-bluetooth 3.18.2-1ubuntu2
  blueman  2.0.3-1ubuntu1
  bluetooth controller 0cf3:e005 Atheros Communications, Inc. (hci version: 4.1)

  Tested devices:
  Designer Mouse, bluetooth smart (pairable, work, re-pair work)
  Designer Keyboard, bluetooth smart (paired, not working)
  BT3.0 keyboard, bluetooth classic (pair and work)
  BT3.0 mouse, bluetooth classic (pair and work)

  -
  In control environment with the same hardware system and devices:
  trusty 14.04.1 + dist-upgrade (stay with 3.13 kernel)
  bluez5 5.35 (ppa: https://launchpad.net/~vidplace7/+archive/ubuntu/bluez5)

  It works with all above devices but can only be pairing through
  bluetoothctl manually, since the older bluetooth-wizard does not
  understand bluez 5.x.

  Everything seems works fine, although there are a lot more error
  messages, but since this bug is more about xenial, please let me know
  if we need more information about this, I'm able to reproduce this
  trusty scenario in anytime.

  -
  Additional note:
  A little clarification, since I'm not sure how far the Bluetooth SIG is going 
to use Bluetooth Smart(Low Energy, or even Smart-Ready) to cover the 
versioning, I decided to just use what ever I saw on the product box.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: bluez 5.37-0ubuntu5
  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: Tue Mar 15 11:40:12 2016
  InstallationDate: Installed on 2016-03-14 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: Dell Inc. Latitude E5550
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1079eca4-4293-4e51-ba0e-84f7d681cb2c ro quiet splash vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/18/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0141B2
  dmi.board.vendor: Dell Inc.
  dmi.board.version: X02
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd11/18/2015:svnDellInc.:pnLatitudeE5550:pvr:rvnDellInc.:rn0141B2:rvrX02:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5550
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
    BD Address: 00:71:CC:39:BD:22  ACL MTU: 1022:8  SCO MTU: 183:5
    UP RUNNING PSCAN ISCAN
    RX bytes:862538 acl:39687 sco:0 events:2668 errors:0
    TX bytes:26235 acl:904 sco:0 commands:1021 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-control-center/+bug/1557298/+subscriptions

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


[Touch-packages] [Bug 1642966] Re: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2017-02-16 Thread Brian Murray
Hello Mark, or anyone else affected,

Accepted cups into xenial-proposed. The package will build now and be
available at https://launchpad.net/ubuntu/+source/cups/2.1.3-4ubuntu0.2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: cups (Ubuntu Xenial)
   Status: Triaged => Fix Committed

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

Title:
  package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 1

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Xenial:
  Fix Committed
Status in cups source package in Yakkety:
  Fix Committed
Status in cups source package in Zesty:
  Fix Released

Bug description:
  This is in xenial-proposed, please block release to -updates
  accordingly :)

  [Impact]
  * fail to upgrade

  [testcase]
  Root cause is believed to be reproducible with:

  #!/bin/bash
  systemctl stop cups.path cups.service
  rm /var/cache/cups/org.cups.cupsd
  systemctl start cups.path
  touch /var/cache/cups/org.cups.cupsd
  sleep 1
  rm /var/cache/cups/org.cups.cupsd
  sleep 1
  systemctl stop cups.service
  echo $?

  
  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: cups-daemon 2.1.3-4
  ProcVersionSignature: Ubuntu 4.4.0-46.67-generic 4.4.24
  Uname: Linux 4.4.0-46-generic x86_64
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CupsErrorLog:

  Date: Fri Nov 18 11:13:15 2016
  ErrorMessage: subprocess new pre-removal script returned error exit status 1
  InstallationDate: Installed on 2016-05-02 (200 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lpstat: device for mallards-officejet-pro-8600: 
dnssd://Officejet%20Pro%208600%20%5BD63461%5D._ipp._tcp.local/?uuid=1c852a4d-b800-1f08-abcd-d89d67d63461
  MachineType: Dell Inc. XPS 15 9550
  Papersize: a4
  PpdFiles: mallards-officejet-pro-8600: HP Officejet Pro 8600, hpcups 3.16.3
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.15
  SourcePackage: cups
  Title: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new 
pre-removal script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  dmi.board.name: 0N7TVV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 15 9550
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1557298] Re: [Xenial][Bluez5] Low Energy Keyboard is paired incorrectly

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

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

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

Title:
  [Xenial][Bluez5] Low Energy Keyboard is paired incorrectly

Status in Unity Control Center:
  New
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  Failed to pair low energy(bluetooth smart, 4.0) keyboard correctly.

  Bluetooth smart keyboard is unable to use after bluetooth-wizard says
  "OK". Also the passcode input is also not acting interactively like
  when pairing with bluetooth 3.0(LegacyPairing) keyboard.

  Above scenario also being verified with bluetoothctl and blueman.

  Step to reproduce:

  1. open Bluetooth Settings
  2. click on Add New Device button
  3. select the bluetooth le keyboard
  4. input the passcode display on GUI

  Expected result:

  After bluetooth-wizard telling user is okay the keyboard should work

  
  Actual result:

  Pairing mode stop on keyboard, but still not work.

  
  -
  More details about versions:

  Environment:
  xenial daily (20160307)
  bluez 5.37-0ubuntu5
  gnome-bluetooth 3.18.2-1ubuntu2
  blueman  2.0.3-1ubuntu1
  bluetooth controller 0cf3:e005 Atheros Communications, Inc. (hci version: 4.1)

  Tested devices:
  Designer Mouse, bluetooth smart (pairable, work, re-pair work)
  Designer Keyboard, bluetooth smart (paired, not working)
  BT3.0 keyboard, bluetooth classic (pair and work)
  BT3.0 mouse, bluetooth classic (pair and work)

  -
  In control environment with the same hardware system and devices:
  trusty 14.04.1 + dist-upgrade (stay with 3.13 kernel)
  bluez5 5.35 (ppa: https://launchpad.net/~vidplace7/+archive/ubuntu/bluez5)

  It works with all above devices but can only be pairing through
  bluetoothctl manually, since the older bluetooth-wizard does not
  understand bluez 5.x.

  Everything seems works fine, although there are a lot more error
  messages, but since this bug is more about xenial, please let me know
  if we need more information about this, I'm able to reproduce this
  trusty scenario in anytime.

  -
  Additional note:
  A little clarification, since I'm not sure how far the Bluetooth SIG is going 
to use Bluetooth Smart(Low Energy, or even Smart-Ready) to cover the 
versioning, I decided to just use what ever I saw on the product box.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: bluez 5.37-0ubuntu5
  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: Tue Mar 15 11:40:12 2016
  InstallationDate: Installed on 2016-03-14 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160307)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: Dell Inc. Latitude E5550
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-12-generic.efi.signed 
root=UUID=1079eca4-4293-4e51-ba0e-84f7d681cb2c ro quiet splash vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/18/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0141B2
  dmi.board.vendor: Dell Inc.
  dmi.board.version: X02
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd11/18/2015:svnDellInc.:pnLatitudeE5550:pvr:rvnDellInc.:rn0141B2:rvrX02:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E5550
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
    BD Address: 00:71:CC:39:BD:22  ACL MTU: 1022:8  SCO MTU: 183:5
    UP RUNNING PSCAN ISCAN
    RX bytes:862538 acl:39687 sco:0 events:2668 errors:0
    TX bytes:26235 acl:904 sco:0 commands:1021 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-control-center/+bug/1557298/+subscriptions

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


[Touch-packages] [Bug 1550983] Re: Fails to start with "Couldn't open libGL.so.1" (missing dependency?)

2017-02-16 Thread Brian Murray
Hello Graham, or anyone else affected,

Accepted gtk+3.0 into yakkety-proposed. The package will build now and
be available at
https://launchpad.net/ubuntu/+source/gtk+3.0/3.20.9-1ubuntu2.1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: gtk+3.0 (Ubuntu Yakkety)
   Status: In Progress => Fix Committed

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

Title:
  Fails to start with "Couldn't open libGL.so.1" (missing dependency?)

Status in One Hundred Papercuts:
  Confirmed
Status in gtk+3.0 package in Ubuntu:
  Fix Released
Status in gtk+3.0 source package in Xenial:
  Fix Committed
Status in gtk+3.0 source package in Yakkety:
  Fix Committed
Status in gtk+3.0 package in Debian:
  Fix Released

Bug description:
  [Impact]
  There are some unlinked calls to libGL.so.1 undetected in the build process 
because of using libepoxy. Running an application that does not depend on 
libgl1 (directly or indirectly) may lead to aborting the process with an 
undefined reference to libGL.so.1.

  [Test Case]
  1. Deploy a server / cloud image of Xenial or Yakkety.
  2. Use a Windows or a Mac client with Cygwin/X and ssh -XY to Ubuntu machine.
  3. sudo apt install firefox; firefox

  Expected result:
  firefox is launched on the client machine.

  Actual result:
  "Couldn't open libGL.so.1" message is printed.

  [Regression Potential]
  Minimal, it is an upstream change already released to zesty. It performs a 
runtime check for GL support and disables GLX function calls in case they're 
not available.

  [Other Info]
  Original bug description:

  virt-manager fails to start:

  $ virt-manager --debug --no-fork
  [Sun, 28 Feb 2016 19:18:22 virt-manager 7592] DEBUG (cli:256) Launched with 
command line: /usr/share/virt-manager/virt-manager --debug --no-fork
  [Sun, 28 Feb 2016 19:18:22 virt-manager 7592] DEBUG (virt-manager:143) 
virt-manager version: 1.3.2
  [Sun, 28 Feb 2016 19:18:22 virt-manager 7592] DEBUG (virt-manager:144) 
virtManager import: 
  Couldn't open libGL.so.1: libGL.so.1: cannot open shared object file: No such 
file or directory
  $

  Installing the 'libgl1-mesa-glx' package resolves the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: virt-manager 1:1.3.2-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  Date: Sun Feb 28 19:19:27 2016
  InstallationDate: Installed on 2016-02-27 (0 days ago)
  InstallationMedia: Ubuntu-Server 16.04 LTS "Xenial Xerus" - Alpha amd64 
(20160206)
  PackageArchitecture: all
  SourcePackage: virt-manager
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1642966] Re: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2017-02-16 Thread Brian Murray
Hello Mark, or anyone else affected,

Accepted cups into yakkety-proposed. The package will build now and be
available at https://launchpad.net/ubuntu/+source/cups/2.2.0-2ubuntu0.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: cups (Ubuntu Yakkety)
   Status: Triaged => Fix Committed

** Tags added: verification-needed

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

Title:
  package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new
  pre-removal script returned error exit status 1

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Xenial:
  Triaged
Status in cups source package in Yakkety:
  Fix Committed
Status in cups source package in Zesty:
  Fix Released

Bug description:
  This is in xenial-proposed, please block release to -updates
  accordingly :)

  [Impact]
  * fail to upgrade

  [testcase]
  Root cause is believed to be reproducible with:

  #!/bin/bash
  systemctl stop cups.path cups.service
  rm /var/cache/cups/org.cups.cupsd
  systemctl start cups.path
  touch /var/cache/cups/org.cups.cupsd
  sleep 1
  rm /var/cache/cups/org.cups.cupsd
  sleep 1
  systemctl stop cups.service
  echo $?

  
  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: cups-daemon 2.1.3-4
  ProcVersionSignature: Ubuntu 4.4.0-46.67-generic 4.4.24
  Uname: Linux 4.4.0-46-generic x86_64
  NonfreeKernelModules: zfs zunicode zcommon znvpair zavl
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CupsErrorLog:

  Date: Fri Nov 18 11:13:15 2016
  ErrorMessage: subprocess new pre-removal script returned error exit status 1
  InstallationDate: Installed on 2016-05-02 (200 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lpstat: device for mallards-officejet-pro-8600: 
dnssd://Officejet%20Pro%208600%20%5BD63461%5D._ipp._tcp.local/?uuid=1c852a4d-b800-1f08-abcd-d89d67d63461
  MachineType: Dell Inc. XPS 15 9550
  Papersize: a4
  PpdFiles: mallards-officejet-pro-8600: HP Officejet Pro 8600, hpcups 3.16.3
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-46-generic.efi.signed 
root=UUID=3643ef37-7cee-41b3-9387-2faa819c44db ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.15
  SourcePackage: cups
  Title: package cups-daemon 2.1.3-4 failed to install/upgrade: subprocess new 
pre-removal script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/07/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.02.00
  dmi.board.name: 0N7TVV
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.02.00:bd04/07/2016:svnDellInc.:pnXPS159550:pvr:rvnDellInc.:rn0N7TVV:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 15 9550
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1650961] Re: ERROR:connection_factory_impl.cc(367)] Failed to connect to MCS endpoint with error -106

2017-02-16 Thread Charles de Bueger
I got this weird messages on a terminal today. Ubuntu had been acting
strangely, (a zombie process, everything grinding to a halt). The
messages just appeared - nothing else was running in the terminal:

776:3815:0216/221717.542851:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -118
[3776:3815:0216/222049.474716:ERROR:socket_stream.cc(101)] Socket was 
disconnected, closing input stream
[3776:3815:0216/222049.474737:ERROR:socket_stream.cc(210)] Closing stream with 
result -100
[3776:3815:0216/57.894857:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -118
[3776:3815:0216/223017.423604:ERROR:connection_handler_impl.cc(402)] Received 
message of invalid type 84
[3776:3815:0216/223225.830859:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -118
[1:1:0216/223733.894859:ERROR:KeyboardEventManager.cpp(424)] Not implemented 
reached in static bool blink::KeyboardEventManager::currentCapsLockState()
[1:1:0216/223734.619503:ERROR:KeyboardEventManager.cpp(424)] Not implemented 
reached in static bool blink::KeyboardEventManager::currentCapsLockState()
[1:1:0216/223738.335086:ERROR:KeyboardEventManager.cpp(424)] Not implemented 
reached in static bool blink::KeyboardEventManager::currentCapsLockState()
[1:1:0216/223738.338407:ERROR:KeyboardEventManager.cpp(424)] Not implemented 
reached in static bool blink::KeyboardEventManager::currentCapsLockState()

I have never seen the capslock thing before either - not sure if it's
related. I am on Ubuntu 16.04

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

Title:
  ERROR:connection_factory_impl.cc(367)] Failed to connect to MCS
  endpoint with error -106

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  caravena@caravena-530U3C-530U4C:~$ ubuntu-bug linux
  caravena@caravena-530U3C-530U4C:~$ 
[12375:12409:1218/134054:ERROR:nss_util.cc(809)] After loading Root Certs, 
loaded==false: NSS error code: -8018
  Se creó una nueva ventana en la sesión existente del navegador.
  [7185:7220:1218/142107:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/142111:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7318:1218/142115:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/142117:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -105
  [7185:7220:1218/143613:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/144540:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/145430:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/162533:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/162540:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -21
  [7185:7318:1218/162540:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  caravena@caravena-530U3C-530U4C:~$ ubuntu-bug linux
  caravena@caravena-530U3C-530U4C:~$ 
[18327:18362:1218/165822:ERROR:nss_util.cc(809)] After loading Root Certs, 
loaded==false: NSS error code: -8018

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: apport 2.20.4-0ubuntu1
  ProcVersionSignature: Ubuntu 4.9.0-11.12-generic 4.9.0
  Uname: Linux 4.9.0-11-generic x86_64
  ApportVersion: 2.20.4-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Dec 18 17:32:53 2016
  InstallationDate: Installed on 2015-07-26 (511 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to zesty on 2016-10-29 (50 days ago)

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

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


[Touch-packages] [Bug 1650961] Re: ERROR:connection_factory_impl.cc(367)] Failed to connect to MCS endpoint with error -106

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

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

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

Title:
  ERROR:connection_factory_impl.cc(367)] Failed to connect to MCS
  endpoint with error -106

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  caravena@caravena-530U3C-530U4C:~$ ubuntu-bug linux
  caravena@caravena-530U3C-530U4C:~$ 
[12375:12409:1218/134054:ERROR:nss_util.cc(809)] After loading Root Certs, 
loaded==false: NSS error code: -8018
  Se creó una nueva ventana en la sesión existente del navegador.
  [7185:7220:1218/142107:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/142111:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7318:1218/142115:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/142117:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -105
  [7185:7220:1218/143613:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/144540:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/145430:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -106
  [7185:7318:1218/162533:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  [7185:7220:1218/162540:ERROR:connection_factory_impl.cc(367)] Failed to 
connect to MCS endpoint with error -21
  [7185:7318:1218/162540:ERROR:get_updates_processor.cc(242)] 
PostClientToServerMessage() failed during GetUpdates
  caravena@caravena-530U3C-530U4C:~$ ubuntu-bug linux
  caravena@caravena-530U3C-530U4C:~$ 
[18327:18362:1218/165822:ERROR:nss_util.cc(809)] After loading Root Certs, 
loaded==false: NSS error code: -8018

  ProblemType: Bug
  DistroRelease: Ubuntu 17.04
  Package: apport 2.20.4-0ubuntu1
  ProcVersionSignature: Ubuntu 4.9.0-11.12-generic 4.9.0
  Uname: Linux 4.9.0-11-generic x86_64
  ApportVersion: 2.20.4-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Dec 18 17:32:53 2016
  InstallationDate: Installed on 2015-07-26 (511 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to zesty on 2016-10-29 (50 days ago)

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

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


[Touch-packages] [Bug 1655687] Re: webbrowser-app graphics garbled in unity8 session

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

** Changed in: webbrowser-app (Ubuntu)
   Status: New => 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/1655687

Title:
  webbrowser-app graphics garbled in unity8 session

Status in oxide-qt package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Invalid
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Web pages appear garbled and graphically corrupt when displayed on the
  webbrowser-app under unity8 on a Kabylake Dell Inspiron 5378 using the
  default unity8 session currently included with Ubuntu 16.10:


  This behavior occurs 100% of the time on this hardware under unity8
  and does not occur when webbrowser-app is started under unity7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oxide-qt/+bug/1655687/+subscriptions

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


[Touch-packages] [Bug 1655687] Re: webbrowser-app graphics garbled in unity8 session

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

** Changed in: oxide-qt (Ubuntu)
   Status: New => 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/1655687

Title:
  webbrowser-app graphics garbled in unity8 session

Status in oxide-qt package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Invalid
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Web pages appear garbled and graphically corrupt when displayed on the
  webbrowser-app under unity8 on a Kabylake Dell Inspiron 5378 using the
  default unity8 session currently included with Ubuntu 16.10:


  This behavior occurs 100% of the time on this hardware under unity8
  and does not occur when webbrowser-app is started under unity7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oxide-qt/+bug/1655687/+subscriptions

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


[Touch-packages] [Bug 1628478] Re: Mir servers crash when using the Nvidia driver

2017-02-16 Thread Ivan D. Sanders
I can confirm that this big still exists with Nvidia 378.13 and Unity 8
in Ubuntu 16.10 as of today.

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

Title:
  Mir servers crash when using the Nvidia driver

Status in Mir:
  In Progress
Status in mir package in Ubuntu:
  Triaged

Bug description:
  I select Unity8 from the log in screen, type in my credentials and it
  just hangs.

  Intel® Core™ i7-4710HQ CPU @ 2.50GHz × 8 
  GeForce GTX 860M/PCIe/SSE2

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

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


[Touch-packages] [Bug 1665384] Re: OEM switch to end user results in wifi not being available.

2017-02-16 Thread Mathieu Trudel-Lapierre
This is most likely a ubiquity bug; where the connection is created with
the wrong permission settings.

** Package changed: network-manager (Ubuntu) => ubiquity (Ubuntu)

** Changed in: ubiquity (Ubuntu)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (cyphermox)

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

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

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

Title:
  OEM switch to end user results in wifi not being available.

Status in ubiquity package in Ubuntu:
  Triaged

Bug description:
  STEPS:
  1. Grab the latest xenial iso from 
http://cdimages.ubuntu.com/xenial/daily-live/current/
  2. Install in oem mode
  3. In the OEM desktop double click on Prepare for end user type in your 
password and reboot
  4. Run through the end user wizard setting up wifi as you go
  5. Login to the end user session
  6. Note the empty Wifi symbol in indicator
  7. Run nmcli d and see something like
  DEVICE  TYPE  STATE CONNECTION
  enp3s0  ethernet  Unavailable   --
  wlo1wifi  Unavailable   --
  lo  loopback  Unmanagaed--

  WORKAROUND:
  reboot
  After reboot everything works as expected and the system autoconnects as 
expected.

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

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


[Touch-packages] [Bug 1029289] Re: Need to authorize my google account each time I boot the computer

2017-02-16 Thread PabloRQ
Hi! I can confirm that the issue appears when the 'Access your Google
Calendar' option is on.

Alberto, do you need a new bug to be filled when it seems to be a
regression?

Regards...

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

Title:
  Need to authorize my google account each time I boot the computer

Status in Online Accounts: Account plugins:
  Fix Released
Status in Online Accounts: Sign-on UI:
  Fix Released
Status in account-plugins package in Ubuntu:
  Fix Released
Status in evolution-data-server package in Ubuntu:
  Fix Released
Status in signon-plugin-oauth2 package in Ubuntu:
  Fix Released
Status in account-plugins source package in Quantal:
  Fix Released
Status in signon-plugin-oauth2 source package in Quantal:
  Fix Released
Status in account-plugins source package in Trusty:
  Fix Released
Status in evolution-data-server source package in Trusty:
  Fix Released
Status in signon-plugin-oauth2 source package in Trusty:
  Fix Released

Bug description:
  [Impact] Google calendar integration is broken, and users are
  requested to re-enter their Google password everytime they log in, or
  everytime they enable/disable their Google account from the System
  Settings.

  [Test Case] Disable/re-enable your Google account. When affected by
  this bug, a notification will appear and you'll be asked to enter your
  Google password in the Online Accounts panel in System Settings.

  [Regression Potential] Minimal: the fix is a backport of a patch from
  the evolution-data-server code which is already in 14.10, and which
  only touches the calendar code (which is currently broken).


  Old description
  ===

  [Test Case] Sometimes after one day, sometimes after one week, the
  system indicator will turn red and the Google account will be marked
  as needing reauthentication. Time can vary, but any period shorter
  than one month is a symptom of the bug.

  [Regression Potential] Minimal: the change to the Google plugin (in
  account-plugins) simply changes the authentication method, in a way
  that is well-documented. The change in signon-plugin-oauth2 affects
  only those accounts/providers which use the OAuth refresh tokens --
  which is only Google, at the moment -- and in a way that can't
  possibly break any existing functionality; if the new code had some
  mistake, the refresh token would be unusable and the system would
  automatically fall back to requesting a new access token (which is
  exactly what happens now, with this bug).

  I'll try to find why the account-plugins package was not uploaded;
  indeed, both are required in order to fix this bug.

To manage notifications about this bug go to:
https://bugs.launchpad.net/account-plugins/+bug/1029289/+subscriptions

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


[Touch-packages] [Bug 1364492] Re: findutils uses nearly 100% CPU and memory resources

2017-02-16 Thread Herwig Hochleitner
Bug has been fixed upstream:

http://git.savannah.gnu.org/cgit/findutils.git/commit/?id=c1556892a6
http://git.savannah.gnu.org/cgit/findutils.git/commit/?id=9d849f77d5

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

Title:
  findutils uses nearly 100% CPU and memory resources

Status in findutils package in Ubuntu:
  Confirmed

Bug description:
  findutils is using a find command, probably to auto-update indexing database.
  While this is normal behaviour, i found out that shortly after the indexing 
update started, findutils is using 100% of CPU resources (Haswell Pentium 
G3258), all of my system's memory (8GB RAM) and some of the swap, rendering the 
system completely unusable.

  Issueing the command 'ps ax | grep find' results in:
  29729 ?SN 0:00 /bin/sh /usr/bin/updatedb.findutils
  29737 ?SN 0:00 /bin/sh /usr/bin/updatedb.findutils
  29758 ?SN 0:00 su nobody -s /bin/sh -c /usr/bin/find / 
-ignore_readdir_race  \( -fstype NFS -o -fstype nfs -o -fstype nfs4 -o 
-fstype afs -o -fstype binfmt_misc -o -fstype proc -o -fstype smbfs -o -fstype 
autofs -o -fstype iso9660 -o -fstype ncpfs -o -fstype coda -o -fstype devpts -o 
-fstype ftpfs -o -fstype devfs -o -fstype mfs -o -fstype shfs -o -fstype sysfs 
-o -fstype cifs -o -fstype lustre_lite -o -fstype tmpfs -o -fstype usbfs -o 
-fstype udf -o -fstype ocfs2 -o  -type d -regex 
'\(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/afs$\)\|\(^/amd$\)\|\(^/alex$\)\|\(^/var/spool$\)\|\(^/sfs$\)\|\(^/media$\)\|\(^/var/lib/schroot/mount$\)'
 \) -prune -o -print0
  29767 ?SNs0:00 sh -c /usr/bin/find / -ignore_readdir_race  \( 
-fstype NFS -o -fstype nfs -o -fstype nfs4 -o -fstype afs -o -fstype 
binfmt_misc -o -fstype proc -o -fstype smbfs -o -fstype autofs -o -fstype 
iso9660 -o -fstype ncpfs -o -fstype coda -o -fstype devpts -o -fstype ftpfs -o 
-fstype devfs -o -fstype mfs -o -fstype shfs -o -fstype sysfs -o -fstype cifs 
-o -fstype lustre_lite -o -fstype tmpfs -o -fstype usbfs -o -fstype udf -o 
-fstype ocfs2 -o  -type d -regex 
'\(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/afs$\)\|\(^/amd$\)\|\(^/alex$\)\|\(^/var/spool$\)\|\(^/sfs$\)\|\(^/media$\)\|\(^/var/lib/schroot/mount$\)'
 \) -prune -o -print0
  29768 ?RN57:29 /usr/bin/find / -ignore_readdir_race ( -fstype NFS 
-o -fstype nfs -o -fstype nfs4 -o -fstype afs -o -fstype binfmt_misc -o -fstype 
proc -o -fstype smbfs -o -fstype autofs -o -fstype iso9660 -o -fstype ncpfs -o 
-fstype coda -o -fstype devpts -o -fstype ftpfs -o -fstype devfs -o -fstype mfs 
-o -fstype shfs -o -fstype sysfs -o -fstype cifs -o -fstype lustre_lite -o 
-fstype tmpfs -o -fstype usbfs -o -fstype udf -o -fstype ocfs2 -o -type d 
-regex 
\(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/afs$\)\|\(^/amd$\)\|\(^/alex$\)\|\(^/var/spool$\)\|\(^/sfs$\)\|\(^/media$\)\|\(^/var/lib/schroot/mount$\)
 ) -prune -o -print0

  Results from 'top':
  top - 19:16:00 up  1:40,  3 users,  load average: 1,14, 1,20, 1,53
  Tasks: 274 total,   2 running, 272 sleeping,   0 stopped,   0 zombie
  %Cpu(s):  2,9 us, 22,9 sy, 24,4 ni, 42,4 id,  7,6 wa,  0,0 hi,  0,0 si,  0,0 
st
  KiB Mem:   8086304 total,  7876904 used,   209400 free,   60 buffers
  KiB Swap: 20971516 total,   373796 used, 20597720 free.  4627412 cached Mem

PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND   
  
  29768 nobody30  10   14968   1556   1116 R  92,2  0,0  70:16.74 find  
  

  System installation is Ubuntu Utopic on Unity 7 desktop, using nouveau nvidia 
drivers.
  findutils version is  4.4.2-9

  Sorry for posting the commands output in here, if there is another
  guideline for this i'll be happy to edit that.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: findutils 4.4.2-9
  ProcVersionSignature: Ubuntu 3.16.0-11.16-generic 3.16.1
  Uname: Linux 3.16.0-11-generic x86_64
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Sep  2 19:03:25 2014
  Dependencies:
   gcc-4.9-base 4.9.1-10ubuntu2
   libc6 2.19-10ubuntu1
   libgcc1 1:4.9.1-10ubuntu2
   multiarch-support 2.19-10ubuntu1
  InstallationDate: Installed on 2014-08-19 (14 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140815)
  SourcePackage: findutils
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1665432] [NEW] Error with cups-daemon package when reinstalling many packages to recover wireless connection with QCA9377

2017-02-16 Thread Leonardo Müller
Public bug reported:

I had a issue with my Wireless and Bluetooth card, Qualcomm Atheros
Device [168c:0042] (rev 30), which appears on Windows 10 as QCA9377, and
to solve it I have searched and tried different alternatives. The one
that worked was to reinstall many packages, all the ones I have found
when searching for, firstly, "wireless", then "wifi" and then
"internet", on synaptic. When doing the "internet" reinstall, a error
happened on cups-daemon and it crashed. When I tried again, it worked. I
rebooted the computer and the Wireless is functioning again (Bluetooth
was already OK).

I am using the Kernel 4.9.10-040910-generic from
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.10/ because I was
trying to solve this issue and because the official Kernles 4.4 and 4.8
don't eject external HDDs from the USB 3.0 correctly. The notebook model
is Lenovo Ideapad 310-14ISK.

While this window to report the bug appeared saying cups is the culprit,
all this only happened because the wireless device QCA9377 was not
working.

usuario@usuario-Lenovo-ideapad-310-14ISK:~$ lsb_release -rd
Description:Ubuntu 16.04.2 LTS
Release:16.04

usuario@usuario-Lenovo-ideapad-310-14ISK:~$ uname -a
Linux usuario-Lenovo-ideapad-310-14ISK 4.9.10-040910-generic #201702141931 SMP 
Wed Feb 15 00:33:24 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

I hope this information may be helpful.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: cups-daemon 2.1.3-4
Uname: Linux 4.9.10-040910-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CupsErrorLog: W [16/Feb/2017:14:42:01 -0200] Notifier for subscription 298 
(dbus://) went away, retrying!
Date: Thu Feb 16 16:05:14 2017
ErrorMessage: sub-processo novo script pre-removal retornou estado de saída de 
erro 1
InstallationDate: Installed on 2016-12-31 (47 days ago)
InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Lpstat: device for Deskjet-2050-J510-series: 
hp:/usb/Deskjet_2050_J510_series?serial=BR1C1FK1K005D1
MachineType: LENOVO 80UG
Papersize: a4
PpdFiles: Deskjet-2050-J510-series: HP Deskjet 2050 j510 Series, hpcups 3.16.3
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-4.9.10-040910-generic 
root=UUID=0fbb0f28-6764-4447-a890-dc966d1f8adf ro
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.9.10-040910-generic 
root=UUID=0fbb0f28-6764-4447-a890-dc966d1f8adf ro
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: cups
Title: package cups-daemon 2.1.3-4 failed to install/upgrade: sub-processo novo 
script pre-removal retornou estado de saída de erro 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/03/2016
dmi.bios.vendor: LENOVO
dmi.bios.version: 0XCN37WW
dmi.board.asset.tag: NO Asset Tag
dmi.board.name: Toronto 4A2
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40679 WIN
dmi.chassis.asset.tag: NO Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo ideapad 310-14ISK
dmi.modalias: 
dmi:bvnLENOVO:bvr0XCN37WW:bd10/03/2016:svnLENOVO:pn80UG:pvrLenovoideapad310-14ISK:rvnLENOVO:rnToronto4A2:rvrSDK0J40679WIN:cvnLENOVO:ct10:cvrLenovoideapad310-14ISK:
dmi.product.name: 80UG
dmi.product.version: Lenovo ideapad 310-14ISK
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-package xenial

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

Title:
  Error with cups-daemon package when reinstalling many packages to
  recover wireless connection with QCA9377

Status in cups package in Ubuntu:
  New

Bug description:
  I had a issue with my Wireless and Bluetooth card, Qualcomm Atheros
  Device [168c:0042] (rev 30), which appears on Windows 10 as QCA9377,
  and to solve it I have searched and tried different alternatives. The
  one that worked was to reinstall many packages, all the ones I have
  found when searching for, firstly, "wireless", then "wifi" and then
  "internet", on synaptic. When doing the "internet" reinstall, a error
  happened on cups-daemon and it crashed. When I tried again, it worked.
  I rebooted the computer and the Wireless is functioning again
  (Bluetooth was already OK).

  I am using the Kernel 4.9.10-040910-generic from
  http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.10/ because I was
  trying to solve this issue and because the official Kernles 4.4 and
  4.8 don't eject external HDDs from the USB 3.0 correctly. The notebook
  model is Lenovo Ideapad 310-14ISK.

  While this window to report the bug appeared saying cups is the
  culprit, all this only happened because the wireless device QCA9377
  was not working.

  usuario@usuario-Lenovo-ideapad-310-14ISK:~$ lsb_release -rd
  Description:  Ubuntu 16.04.2 LTS
  Release:  16.04

  usuario@usuario-Lenovo-ideapad-310-14ISK:~$ uname -a
  Linux usuario-Lenovo-ideapad-310-14ISK 

[Touch-packages] [Bug 1645698] Update Released

2017-02-16 Thread Brian Murray
The verification of the Stable Release Update for network-manager has
completed successfully and the package has now been released to
-updates.  Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  [SRU] Upgrade network-manager to latest point release

Status in OEM Priority Project:
  Triaged
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager source package in Xenial:
  In Progress
Status in network-manager source package in Yakkety:
  Fix Released

Bug description:
  [Impact]

  This SRU would try to have the latest well-tested upstream point
  release (1.2.6) of 1.2.x land in Xenial, which is the successor of the
  current 1.2.2 version, fixing quite some bugs that's suitable to land
  in the stable branch.

  https://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/NEWS?h=nm-1-2

  [Test Case]

  After installing the updated version, users should be able to avoid
  some mem leaks in some cases and have generally improved DNS related
  experiences.

  Also, as this is a general point release update, cases described in
  https://wiki.ubuntu.com/NetworkManager/DistroTesting should be used
  for smoke testing.

  [Regression Potential]

  This is a bug/regression fix for 1.2.2 and 1.2.4, which is quite
  complete.

  [Other Info]
  The first attempt at SRUing this to xenial was for 1.2.4 but it failed 
verification. This second attempt matches yakkety with 1.2.6.

  Parallel building was enabled in xenial to keep the diff between
  xenial and yakkety minimal since they are basically in sync now.
  Parallel building was enabled in the yakkety package in May 2016 so
  it's been working fine for a while.

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1645698/+subscriptions

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


[Touch-packages] [Bug 1645698] Re: [SRU] Upgrade network-manager to latest point release

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package network-manager - 1.2.6-0ubuntu1

---
network-manager (1.2.6-0ubuntu1) yakkety; urgency=medium

  * Rebase to upstream point release 1.2.6 (LP: #1645698)
  * Refreshing patches, dropped ones that are merged upstream:
- wifi-clear-WiFi-requested_scan-if-suppl-exits.patch
- wifi-clear-WiFi-requested_scan-if-suppl-goes-INACTIV.patch

 -- Aron Xu   Tue, 20 Dec 2016 00:54:10 +0800

** Changed in: network-manager (Ubuntu Yakkety)
   Status: Fix Committed => Fix Released

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

Title:
  [SRU] Upgrade network-manager to latest point release

Status in OEM Priority Project:
  Triaged
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager source package in Xenial:
  In Progress
Status in network-manager source package in Yakkety:
  Fix Released

Bug description:
  [Impact]

  This SRU would try to have the latest well-tested upstream point
  release (1.2.6) of 1.2.x land in Xenial, which is the successor of the
  current 1.2.2 version, fixing quite some bugs that's suitable to land
  in the stable branch.

  https://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/NEWS?h=nm-1-2

  [Test Case]

  After installing the updated version, users should be able to avoid
  some mem leaks in some cases and have generally improved DNS related
  experiences.

  Also, as this is a general point release update, cases described in
  https://wiki.ubuntu.com/NetworkManager/DistroTesting should be used
  for smoke testing.

  [Regression Potential]

  This is a bug/regression fix for 1.2.2 and 1.2.4, which is quite
  complete.

  [Other Info]
  The first attempt at SRUing this to xenial was for 1.2.4 but it failed 
verification. This second attempt matches yakkety with 1.2.6.

  Parallel building was enabled in xenial to keep the diff between
  xenial and yakkety minimal since they are basically in sync now.
  Parallel building was enabled in the yakkety package in May 2016 so
  it's been working fine for a while.

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1645698/+subscriptions

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


[Touch-packages] [Bug 1663924] Re: filterCaseSensitivity doesn't work when used in SortFilterModel

2017-02-16 Thread Christian Dywan
It may be useful to have a dedicated unit test for this in any case, so
I proposed a branch.

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New => In Progress

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

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

Title:
  filterCaseSensitivity doesn't work when used in SortFilterModel

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

Bug description:
  SortFilterModel does support sortCaseSensitivity but not
  filterCaseSensitivity or it doesn't work, demo attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1663924/+subscriptions

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


[Touch-packages] [Bug 1663924] Re: filterCaseSensitivity doesn't work when used in SortFilterModel

2017-02-16 Thread Christian Dywan
The property can't work: QSortFilterProxyModel.sortCaseSensitivity
doesn't change the pattern and the superclass doesn't have any signals,
making it impossible to manually update the results.

We 'could' consider overriding the property to make this work. However,
I'm not sure it's particularly useful: in your example, new RegExp("^" +
searchTerms, "i") achieves the same as setting the superclass property,
as does using a literal regular expression such as /^B/i.

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

Title:
  filterCaseSensitivity doesn't work when used in SortFilterModel

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

Bug description:
  SortFilterModel does support sortCaseSensitivity but not
  filterCaseSensitivity or it doesn't work, demo attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1663924/+subscriptions

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


[Touch-packages] [Bug 1663924] Re: filterCaseSensitivity doesn't work when used in SortFilterModel

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-sdk-team/ubuntu-ui-
toolkit/insensitivePattern

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

Title:
  filterCaseSensitivity doesn't work when used in SortFilterModel

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

Bug description:
  SortFilterModel does support sortCaseSensitivity but not
  filterCaseSensitivity or it doesn't work, demo attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1663924/+subscriptions

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


[Touch-packages] [Bug 1665422] Re: unity-scope-loader crashed with SIGSEGV in malloc_consolidate()

2017-02-16 Thread Apport retracing service
*** This bug is a duplicate of bug 1624683 ***
https://bugs.launchpad.net/bugs/1624683

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1624683, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820358/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820360/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820363/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820364/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820365/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820366/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1665422/+attachment/4820367/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1624683

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  unity-scope-loader crashed with SIGSEGV in malloc_consolidate()

Status in libunity package in Ubuntu:
  New

Bug description:
  Install winehq and have come this issue

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: libunity9 7.1.4+16.10.20160516-0ubuntu1
  ProcVersionSignature: Ubuntu 4.9.0-15.16-generic 4.9.5
  Uname: Linux 4.9.0-15-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Feb 16 20:05:53 2017
  ExecutablePath: /usr/bin/unity-scope-loader
  InstallationDate: Installed on 2017-02-16 (0 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Alpha amd64 (20170216)
  ProcCmdline: /usr/bin/unity-scope-loader applications/applications.scope 
applications/scopes.scope commands.scope
  SegvAnalysis:
   Segfault happened at: 0x7f7e00d83ea1 <malloc_consolidate+321>:   mov
0x10(%rbx),%r10
   PC (0x7f7e00d83ea1) ok
   source "0x10(%rbx)" (0x96a0ee8c2105e95e) not located in a known VMA region 
(needed readable region)!
   destination "%r10" ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: libunity
  StacktraceTop:
   malloc_consolidate (av=av@entry=0x7f7e010c4b00 ) at malloc.c:4210
   _int_malloc (av=av@entry=0x7f7e010c4b00 , 
bytes=bytes@entry=4096) at malloc.c:3485
   __GI___libc_malloc (bytes=4096) at malloc.c:2925
   g_malloc () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0
  Title: unity-scope-loader crashed with SIGSEGV in malloc_consolidate()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Touch-packages] [Bug 1665367] Re: package console-setup-linux 1.108ubuntu15.2 failed to install/upgrade: trying to overwrite '/lib/systemd/system/console-setup.service', which is also in package keyb

2017-02-16 Thread Hans Joachim Desserud
*** This bug is a duplicate of bug 1588998 ***
https://bugs.launchpad.net/bugs/1588998

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 1588998, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 1588998
   [master] package console-setup-linux 1.108ubuntu15 failed to 
install/upgrade: trying to overwrite 
'/lib/systemd/system/console-setup.service', which is also in package 
keyboard-configuration 1.108ubuntu15

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

Title:
  package console-setup-linux 1.108ubuntu15.2 failed to install/upgrade:
  trying to overwrite '/lib/systemd/system/console-setup.service', which
  is also in package keyboard-configuration 1.108ubuntu15.2

Status in console-setup package in Ubuntu:
  New

Bug description:
  i don't know anything

  ProblemType: Package
  DistroRelease: Kali 2016.2
  Package: console-setup-linux 1.108ubuntu15.2
  ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
  Uname: Linux 4.4.0-62-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  Date: Thu Feb 16 19:14:11 2017
  ErrorMessage: trying to overwrite 
'/lib/systemd/system/console-setup.service', which is also in package 
keyboard-configuration 1.108ubuntu15.2
  InstallationDate: Installed on 2017-01-25 (21 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.22kali1
   apt  1.2.15ubuntu0.2
  SourcePackage: console-setup
  Title: package console-setup-linux 1.108ubuntu15.2 failed to install/upgrade: 
trying to overwrite '/lib/systemd/system/console-setup.service', which is also 
in package keyboard-configuration 1.108ubuntu15.2
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/1665367/+subscriptions

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


[Touch-packages] [Bug 1655839] Re: [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9 FAIL: test_rfc3961

2017-02-16 Thread Nish Aravamudan
** Changed in: heimdal (Ubuntu)
 Assignee: (unassigned) => Nish Aravamudan (nacc)

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

Title:
  [FTBFS] amd64 build of heimdal 7.1.0+dfsg-9  FAIL: test_rfc3961

Status in heimdal package in Ubuntu:
  Confirmed

Bug description:
  A few builds have failed: amd64, ppc64el & s390x for Zesty proposed

  for example amd64 fails on test_rfc3961

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

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


[Touch-packages] [Bug 1665147] Re: Closed GtkExpander exposes underlying elements

2017-02-16 Thread Hans Joachim Desserud
*** This bug is a duplicate of bug 1665148 ***
https://bugs.launchpad.net/bugs/1665148

** This bug has been marked a duplicate of bug 1665148
   Closed GtkExpander exposes underlying elements

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

Title:
  Closed GtkExpander exposes underlying elements

Status in gtk+3.0 package in Ubuntu:
  New

Bug description:
  This a very minor issue (and maybe a feature, not a bug)

  GTK3-based audio-recorder has a GtkExpander widget. It contains a
  listbox and some other elements. The listbox can be shown and
  activated event the GtkExpander is closed.

  Screenshot:
  http://bildr.no/view/dys1WkhP

  The application:
  https://launchpad.net/~audio-recorder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/1665147/+subscriptions

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


[Touch-packages] [Bug 1664880] Re: sed license mismatch

2017-02-16 Thread Hans Joachim Desserud
** Also affects: sed (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=281638
   Importance: Unknown
   Status: Unknown

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

Title:
  sed license mismatch

Status in sed package in Ubuntu:
  New
Status in sed package in Debian:
  Unknown

Bug description:
  The license specified in the /usr/share/doc/sed/copyright states that
  sed is GPLv2, whereas the license specified in "sed --version" is
  GPLv3.

  sed version: sed_4.2.2-4ubuntu1
  ubuntu: 14.04, trusty

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

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


[Touch-packages] [Bug 1659435] Re: browser stops rendering all pages instead shows new tab page

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:webbrowser-app/staging

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

Title:
  browser stops rendering all pages instead shows new tab page

Status in Oxide:
  Invalid
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  running unity8 deb session on my laptop, with latest xenial + overlay

  Browsing as normal, with 5 or 6 tabs open. All pages are rendering
  fine. Then when I click on a link in a page that opens a new tab, I
  get the new tab but the page is not displayed. It just displays the
  Top Sites, Bookmarks placeholder page. The url field has the correct
  url and the tab title is correct but the contents of the page never
  renders. Even when I press reload.

  What is worse, every tab then has this problem. None will show the
  page content, all show the Top Sites, Bookmark page.

  Attached is browser log, here are the relevant packages installed.

  bfiller1@blackhorse1:~$ dpkg -l | grep oxide
  ii  liboxideqt-qmlplugin:amd64   
1.19.7-0ubuntu0.16.04.1+overlay1 amd64Web browser 
engine for Qt (QML plugin)
  ii  liboxideqtcore0:amd64
1.19.7-0ubuntu0.16.04.1+overlay1 amd64Web browser 
engine for Qt (core library and components)
  ii  liboxideqtquick0:amd64   
1.19.7-0ubuntu0.16.04.1+overlay1 amd64Web browser 
engine for Qt (QtQuick library)
  ii  oxideqt-codecs-extra:amd64   
1.19.7-0ubuntu0.16.04.1+overlay1 amd64Web browser 
engine for Qt (codecs)
  bfiller1@blackhorse1:~$ dpkg -l | grep webbrowser-app
  ii  webbrowser-app   
0.23+16.04.20170110-0ubuntu1 amd64Ubuntu web 
browser
  bfiller1@blackhorse1:~$ dpkg -l | grep mir
  ii  libmiral2:amd64  
1.0.2+16.04.20170118.1-0ubuntu1  amd64Display 
server for Ubuntu - ABI preserving abstraction layer
  ii  libmirclient9:amd64  
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - client library
  ii  libmircommon5:amd64  
0.22.1+16.04.20160516.2-0ubuntu1 amd64Display 
server for Ubuntu - shared library
  ii  libmircommon7:amd64  
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - shared library
  ii  libmircookie2:amd64  
0.25.0+16.04.20161203-0ubuntu1   amd64Produce and 
verify spoof-resistant timestamps - runtime library
  ii  libmircore1:amd64
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - shared library
  ii  libmirplatform14:amd64   
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - platform library
  ii  libmirprotobuf3:amd64
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - RPC definitions
  ii  libmirserver42:amd64 
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - server library
  ii  mir-client-platform-mesa5:amd64  
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - client platform library for Mesa
  ii  mir-graphics-drivers-desktop:amd64   
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - desktop driver metapackage
  ii  mir-platform-graphics-mesa-kms11:amd64   
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - platform library for KMS Mesa
  ii  mir-platform-graphics-mesa-x11:amd64 
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - platform library for X11 Mesa
  ii  mir-platform-input-evdev6:amd64  
0.25.0+16.04.20161203-0ubuntu1   amd64Display 
server for Ubuntu - input platform library
  ii  qtdeclarative5-qtmir-plugin:amd64
0.5.1+16.04.20170124-0ubuntu1amd64Qt plugin for 
Unity specific Mir APIs
  ii  qtmir-desktop:amd64  
0.5.1+16.04.20170124-0ubuntu1amd64Qt platform 
abstraction (QPA) plugin for a Mir server (desktop)
  ii  xmir 2:1.18.4-0ubuntu0.2  

[Touch-packages] [Bug 1628792] Re: Add carddav scope to google-contacts.service (Zesty)

2017-02-16 Thread Khurshid Alam
Upstream-Bug: https://bugzilla.gnome.org/show_bug.cgi?id=778775

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

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

Title:
  Add carddav scope to google-contacts.service (Zesty)

Status in evolution-data-server package in Ubuntu:
  New

Bug description:
  It seems google-contacts.service file Google Contacts API (Gdata)
  https://www.google.com/m8/feeds/ which is NOT same as CardDav. As a
  result when some application( ex. Syncevolution) tries to access it
  (through oauth2), it gives “authentication failed error”.

  For example, running following command:

  '''

  SYNCEVOLUTION_DEBUG=1 syncevolution --print-databases –daemon=no\

  loglevel=2 backend=carddav username=uoa:3,google-contacts\

  syncURL=https://www.googleapis.com/.well-known/carddav

  '''
  gives following error:

   “헣헥헢헣헙헜헡헗: 헡헲헼헻 헲헿헿헼헿 헰헼헱헲 ퟭ: ퟰퟬퟯ 헙헼헿헯헶헱헱헲헻, 헺혂혀혁 헻헼혁 헿헲혁헿혆”

  Adding the carddav scope solves the issue.
  'https://www.googleapis.com/auth/carddav'

  evolution-data-server-online-accounts provides these files.

  Patch:

  --- a/modules/ubuntu-online-accounts/google-contacts.service.in.in
  +++ b/modules/ubuntu-online-accounts/google-contacts.service.in.in
  @@ -17,7 +17,7 @@
     https://localhost/
     796629365126-a2o58ak3l6nuk9bto6sr5aoku0vh5enc.apps.googleusercontent.com
     YVigZ5Po5p83_CrwQk-p5SwP
  -  ['https://www.googleapis.com/auth/userinfo.email','https://mail.google.com/','https://www.google.com/m8/feeds/','https://www.googleapis.com/auth/calendar']
  +  ['https://www.googleapis.com/auth/userinfo.email','https://mail.google.com/','https://www.google.com/m8/feeds/','https://www.googleapis.com/auth/calendar','https://www.googleapis.com/auth/carddav']]
   
     
   

  Note:

  1. Ubuntu already enabled carddav in google developer console
  (lp:1433943)

  2. It requires to grant access twice; one for UOA and one for
  Evolution (server side). Then only it works
  (https://bugs.launchpad.net/ubuntu/+source/unity-control-
  center/+bug/1522360)

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

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


[Touch-packages] [Bug 1393578] Re: Subpixel order not included in Mir display information

2017-02-16 Thread Gerry Boland
I've hacked qtmir to print the subpixel hint that Mir is supplying.

http://pastebin.ubuntu.com/24007971/ is my output. First I run a simple
qml demo shell as nested server under USC, get "0" hint.

Then I run again as host server, get a hint "1 = RGB".

The "Subpixel hint" output of the 2 cases do not match for me, hence the
complaint.

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

Title:
  Subpixel order not included in Mir display information

Status in Mir:
  In Progress
Status in QtMir:
  Triaged
Status in qtubuntu:
  Triaged
Status in mir package in Ubuntu:
  Triaged
Status in xorg-server package in Ubuntu:
  Triaged

Bug description:
  Just capturing something mentioned by Trevinho on IRC this morning.
  MirDisplayOutput does not include subpixel ordering, it could and
  should though. The information is exposed on the drm side
  (drmModeSubPixel). Marking as wishlist in absence of other
  information.

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

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


[Touch-packages] [Bug 1665394] Re: DNS resolution of irc.freenode.net or chat.freenode.net fails

2017-02-16 Thread Schiggn
iputils/ping was wrong.

On machines with this bug a "getent hosts chat.freenode.net" results in
no output! Perhaps we have to look at getaddrinfo()!

Thanks to the french ubuntu-channel #ubuntu-fr for this hint :)

** No longer affects: iputils (Ubuntu)

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

Title:
  DNS resolution of irc.freenode.net or chat.freenode.net fails

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  I am running Ubuntu 16.10 (from a base install upgraded several
  times), with proposed-updates enabled. Recently, I started having
  problems where I am unable to resolve irc.freenode.net.

  This is unrelated to the networks. I have been able to confirm that
  systemd-resolved is able to perform the name resolution. Yet,
  getaddrinfo() call returns -EAI_AGAIN error.

  This can be reproduced using getent:
  > $ getent ahosts irc.freenode.net
  > $

  While testing v4 or v6 directly returns something valid:
  > $ getent ahostsv4 irc.freenode.net
  > 38.229.70.22STREAM chat.freenode.net
  > 38.229.70.22DGRAM  
  > 38.229.70.22RAW
  > 130.239.18.119  STREAM 
  > 130.239.18.119  DGRAM  
  > 130.239.18.119  RAW
  [...]
  > $

  > $ getent ahostsv6 irc.freenode.net
  > 2001:5a0:3604:1:64:86:243:181 STREAM chat.freenode.net
  > 2001:5a0:3604:1:64:86:243:181 DGRAM  
  > 2001:5a0:3604:1:64:86:243:181 RAW
  > 2001:6b0:e:2a18::118 STREAM 
  > 2001:6b0:e:2a18::118 DGRAM  
  > 2001:6b0:e:2a18::118 RAW
  [...]
  > $

  dpkg.log shows there has been some upgrade of systemd recently, though
  I cannot tell for sure if that directly relates to the problem, I do
  use suspend-to-ram a lot and reboot not that often.

  > $ lsb_release -a
  > LSB Version:
core-9.20160110ubuntu5-amd64:core-9.20160110ubuntu5-noarch:printing-9.20160110ubuntu5-amd64:printing-9.20160110ubuntu5-noarch:security-9.20160110ubuntu5-amd64:security-9.20160110ubuntu5-noarch
  > Distributor ID: Ubuntu
  > Description:Ubuntu 16.10
  > Release:16.10
  > Codename:   yakkety

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

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


[Touch-packages] [Bug 1661072] Re: [regression] Mir 0.26.0 - spinner loading animation, minimize, maximize too fast

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  [regression] Mir 0.26.0 - spinner loading animation, minimize,
  maximize too fast

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released
Status in miral package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  mir 0.26 landed in overlay and now the loading animation is too fast and also 
i think all the animations are too fast (minimize, maximize etc) o_O
  aren't the animation fps independent? should be time based right?

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1661072/+subscriptions

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


[Touch-packages] [Bug 1661128] Re: [regression] Unity8 stutters constantly (like half frame rate) using Mir 0.26.0

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  [regression] Unity8 stutters constantly (like half frame rate) using
  Mir 0.26.0

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Unity8 stutters constantly (like half frame rate) on a high-end
  desktop.

  This regression only happened recently, perhaps due to the
  introduction of Mir 0.26.0.

  Surprisingly though, using the same Mir release I can start a demo
  server on another VT and everything is silky-smooth. The problem only
  seems to occur with Unity8.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1661128/+subscriptions

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


[Touch-packages] [Bug 1661521] Re: [regression] Windowed clients of nested servers are all black

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Invalid => Fix Released

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

Title:
  [regression] Windowed clients of nested servers are all black

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  [regression] Windowed clients of nested servers are all black

  FAILING:
  lp:mir r4008
  lp:mir/0.26 r4005

  WORKING:
  Mir 0.26.0 zesty binaries (lp:mir/0.26 r3994)
  lp:mir/0.25 r3822

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

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


[Touch-packages] [Bug 1662997] Re: [regression] mirscreencast hangs during screencast creation

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  [regression] mirscreencast hangs during screencast creation

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  hmm, sometime between 3980 and tip, mirscreencast started hanging
  during screencast creation. Bound to generate some complaints.

  Thread 1 "mirscreencast.b" received signal SIGTSTP, Stopped (user).
  pthread_cond_wait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
  185   ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: No such file or 
directory.
  (gdb) bt
  #0  pthread_cond_wait@@GLIBC_2.3.2 () at 
../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
  #1  0x77449afc in 
std::condition_variable::wait(std::unique_lock&) ()
 from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
  #2  0x77ea131a in 
std::condition_variable::wait 
>(std::unique_lock &, MirWaitHandle::) 
(this=0x555da6d0, __lock=..., __p=...)
  at /usr/include/c++/6/condition_variable:99
  #3  0x77ea1061 in MirWaitHandle::wait_for_all (this=0x555da6a8)
  at /home/kdub/source/mir/mir/src/client/mir_wait_handle.cpp:53
  #4  0x77ee5420 in (anonymous namespace)::create_screencast 
(spec=0x555d9bf0)
  at /home/kdub/source/mir/mir/src/client/mir_screencast_api.cpp:38
  #5  0x77ee5631 in mir_screencast_create_sync (spec=0x555d9bf0)
  at /home/kdub/source/mir/mir/src/client/mir_screencast_api.cpp:90
  #6  0x55591430 in main (argc=3, argv=0x7fffe478)
  at /home/kdub/source/mir/mir/src/utils/screencast.cpp:568

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

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

[Touch-packages] [Bug 1662942] Re: libmirclient-dev missing build depndency on libmircore-dev

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  libmirclient-dev missing build depndency on libmircore-dev

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Triaged
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  There is a broken build-dep in the Mir 0.26 packaging.

  Dialogue taken from IRC revealing the details:

   alan_g, when I include mir_toolkit header files in chromium I get 
this error:
   In file included from 
/usr/include/mirclient/mir_toolkit/events/event.h:90:
   #include "mir_toolkit/mir_input_device_types.h"
   and apt-file search doesn't return anything
   I wonder what I am missing
   is this a bug or there's a lib I should have installed?
   locate also cant find this file
   that's in libmircore-dev.  What do you get from $ pkg-config 
--cflags mirclient
   $ pkg-config --cflags mirclient
   -pthread -I/usr/include/mirclient -I/usr/include/mircookie 
-I/usr/include/mircore
   that lib was missing :)
   Then /usr/include/mircore/mir_toolkit/mir_input_device_types.h ought 
to be there
   :s
   ok installing mircore-dev fixed that
   apt-file should return it though :/
   Hmm. $ apt depends libmirclient-dev doesn't list libmircore-dev - 
sounds like a bug
   yes, when I ran apt-get build-dep libmirclient-dev mircore-dev was 
not installed

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

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


[Touch-packages] [Bug 1663062] Re: [regression] Software clients of nested servers with size >=480x480 are all black in Mir 0.25.0 and later (or stretched and distorted under Unity8)

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  [regression] Software clients of nested servers with size >=480x480
  are all black in Mir 0.25.0 and later (or stretched and distorted
  under Unity8)

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.25 series:
  Won't Fix
Status in Mir 0.26 series:
  Fix Committed
Status in mesa package in Ubuntu:
  Invalid
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  GPU apps seem to work.

  CPU apps all get black screen.

  To repro :
  Under unity7 using mir-on-x:

  1- In a terminal, run :
  mir_demo_server -f /tmp/mysock

  2- In another terminal, run :
  mir_demo_server --host-socket /tmp/mysock

  3- In another terminal, run :
  mir_demo_client_progressbar

  Under Unity8 :
  In another terminal, run :
  mir_demo_client_progressbar

  Observe that, the window is black.

  Whereas, egl clients run fine.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1663062/+subscriptions

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


[Touch-packages] [Bug 1662455] Re: Mir graphics platform ABI broke in series 0.26 but sonames never changed

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  Mir graphics platform ABI broke in series 0.26 but sonames never
  changed

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  An ABI break in series 0.26 arose from changes to:
  include/platform/mir/graphics/display_configuration.h
  include/platform/mir/graphics/graphic_buffer_allocator.h

  However the applicable ABI(s) never changed from series 0.25:
  MIR_SERVER_GRAPHICS_PLATFORM_ABI
  MIRPLATFORM_ABI

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

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


[Touch-packages] [Bug 1658117] Re: Chrome-less shell hint does not work any more

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package miral -
1.2.0+17.04.20170215.1-0ubuntu1

---
miral (1.2.0+17.04.20170215.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 1.2.0
(https://launchpad.net/miral/+milestone/1.2)

- ABI summary:
  . miral ABI unchanged at 2
- Enhancements:
  . New libmirclientcpp-dev package "C++ wrapper for libmirclient". (Split
from libmiral-dev)
  . Give miral-app and miral-desktop a good default for -bindir
  . More surface to window renaming to reflect Mir name changes
  . Refresh the "Building and Using MirAL" doc
- Bugs fixed:
  . Chrome-less shell hint does not work any more (LP: #1658117)
  . WindowSpec::set_state() wrapper for mir_window_spec_set_state()
(LP: #1661256)
  . "$ miral-app -kiosk" fails with "Unknown command line options:
--desktop_file_hint=miral-shell.desktop" (LP: #1660933)
  . libmiral] Fix focus and movement rules for Input Method and Satellite
 windows. (LP: #1660691)

 -- Alan Griffiths   Wed, 15 Feb 2017
14:05:46 +

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

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

Title:
  Chrome-less shell hint does not work any more

Status in Canonical System Image:
  Triaged
Status in miral package in Ubuntu:
  Fix Released
Status in qtmir package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Test case.
  - Open camera in device mode.

  Expected result.
  - Camera opens full screen and top menu hides.

  Actual result.
  - Camera opens full screen but top menu is not hidden.

  current build number: 127
  device name: frieza_arm64
  channel: ubuntu-touch/staging/ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1658117/+subscriptions

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


[Touch-packages] [Bug 1647283] Re: WiFi being detected as ethernet when race condition on renaming for persistent name

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package network-manager - 1.4.4-1ubuntu1

---
network-manager (1.4.4-1ubuntu1) zesty; urgency=medium

  * Rebase to upstream 1.4.4 release, base on Debian 1.4.4-1 (LP: #1647283)
  * Refresh patches, dropping ones that are included upstream:
- manager-fix-state-transition-on-resuming-from-sleep.patch
- wifi-notify-the-AccessPoint-change-after-an-AP-is-removed.patch
  * Updated patch:
- Ignore-p2p0-wifi-devices-from-android.patch:
  LOGD_HW is now LOGD_PLATFORM

 -- Aron Xu   Thu, 16 Feb 2017 18:35:11 +0800

** Changed in: network-manager (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  WiFi being detected as ethernet when race condition on renaming for
  persistent name

Status in HWE Next:
  New
Status in NetworkManager:
  Fix Released
Status in OEM Priority Project:
  Triaged
Status in OEM Priority Project xenial series:
  New
Status in network-manager package in Ubuntu:
  Fix Released

Bug description:
  Forwarded https://bugzilla.gnome.org/show_bug.cgi?id=775613

  Version: NetworkManager 1.4.2

  This bug happens after power-on with probability about 1/50.
  That means we need to reboot about 50 times to get into the buggy situation.
  "nmcli d" shows the device type is ethernet:

  DEVICE   TYPE  STATECONNECTION
  wlp1s0   ethernet  unavailable  --
  lo   loopback  unmanaged--

  The bug starts from a race condition. But it is not the root cause.
  I've also attach 2 logs. One is in good situation. Another is in bad 
situation.
  This log is generated by applying a "log patch" to network-manager 1.4.2 so 
we can see more stuff.

  In the bad situation. The bug starts with race condition. But the race 
condition is not the root cause. The race condition is:
   * During the renaming from "wlan0" to "wlp1s0". "wlan0" disappeared.
   * Inside the NM, it is still using "wlan0" in "_linktype_get_type()".
   * Since /sys/class/net/wlan0/uevent is disappeared. so the type matching 
failed in _linktype_get_type().
   * Also wifi_utils_is_wifi() failed to because /sys/class/net/wlan0 
disappeared.
   * And finally, devtype and kind are both NULL, so it returns 
NM_LINK_TYPE_ETHERNET for wlan0.

  Later, wlan0 is renamed to wlp1s0, and it seems to me that the Object inherit 
the type so it is still type ethernet.
  But from the log, I saw _linktype_get_type() is called several times later 
and return the correct type (wifi). But just, "nmcli d" still shows type 
ethernet.

  I'm wondering if we are missing to update the type in the Object
  created after renaming and re-detecting the type.

  fix need landing LP: #1645698

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1647283/+subscriptions

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


[Touch-packages] [Bug 1663197] Re: mir_window_spec_set_cursor_name() doesn't trigger mir::scene::SurfaceObserver::cursor_image_set_to

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  mir_window_spec_set_cursor_name() doesn't trigger
  mir::scene::SurfaceObserver::cursor_image_set_to

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in MirAL:
  Invalid
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  qtmir relies on mir::scene::SurfaceObserver::cursor_image_set_to being
  called whenever the surface cursor name changes.

  qtubuntu still uses the deprecated API
  "mir_cursor_configuration_from_name() && mir_window_configure_cursor".
  With that, mir::scene::SurfaceObserver::cursor_image_set_to does get
  called in qtmir.

  But once qtubuntu uses the new Mir API for that[1],
  "mir_window_spec_set_cursor_name() && mir_window_apply_spec()", the
  SurfaceObserver in qtmir no longer gets notified

  
  [1] - 
https://code.launchpad.net/~albaguirre/qtubuntu/more-new-mir-apis/+merge/316646

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

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


[Touch-packages] [Bug 1662608] Re: unity8 should not depend on unity8-tests

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package qtmir - 0.5.1+17.04.20170206-0ubuntu2

---
qtmir (0.5.1+17.04.20170206-0ubuntu2) zesty; urgency=medium

  * Update unity-application-impl Provides to -26, which was forgotten before.
This should stop unity8-tests being pulled in on upgrades (which is a
component-mismatch), and should restore unity8 to the desktop images. (LP:
#1662608)

 -- Iain Lane   Wed, 15 Feb 2017 12:43:39
+

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

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

Title:
  unity8 should not depend on unity8-tests

Status in qtmir package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Today's unity8 update installs a bunch of -dev packages. This doesn't
  seem intended.

  It looks to me like the virtual package unity-application-impl-26
  depends on unity8-tests but it shouldn't, right?

  
  $ apt-cache showpkg unity-application-impl-23
  Package: unity-application-impl-23
  Versions: 

  Reverse Depends: 
  Dependencies: 
  Provides: 
  Reverse Provides: 
  qtdeclarative5-qtmir-plugin 0.5.1+17.04.20170127-0ubuntu1 (= )
  qtdeclarative5-qtmir-plugin 0.5.1+17.04.20170206-0ubuntu1 (= )

  $ apt-cache showpkg unity-application-impl-26
  Package: unity-application-impl-26
  Versions: 

  Reverse Depends: 
unity8-common,unity-application-impl-26
  Dependencies: 
  Provides: 
  Reverse Provides: 
  unity8-tests 8.15+17.04.20170206-0ubuntu1 (= )

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

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


[Touch-packages] [Bug 1661704] Re: mir_window_request_persistent_id_sync seg faults when called twice

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  mir_window_request_persistent_id_sync seg faults when called twice

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  Thread 1 "gtk3-widget-fac" received signal SIGSEGV, Segmentation fault.
  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  67  ../nptl/pthread_mutex_lock.c: No such file or directory.
  (gdb) bt
  #0  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  #1  0x737c1003 in __gthread_mutex_lock () at 
/usr/include/x86_64-linux-gnu/c++/6/bits/gthr-default.h:748
  #2  std::mutex::lock() (this=0x0) at /usr/include/c++/6/bits/std_mutex.h:103
  #3  std::unique_lock::lock() (this=0x7fffbad0) at 
/usr/include/c++/6/bits/std_mutex.h:267
  #4  std::unique_lock::unique_lock(std::mutex&) () at 
/usr/include/c++/6/bits/std_mutex.h:197
  #5  MirWaitHandle::wait_for_all() (this=0x0) at 
./src/client/mir_wait_handle.cpp:51
  #6  0x737d0623 in mir_surface_request_persistent_id_sync 
(surface=) at ./src/client/mir_surface_api.cpp:1266
  #7  0x77b7137a in gdk_mir_display_convert_selection 
(display=0x557ad010, requestor=0x56235af0, selection=0x45, target=0x52, 
time=34494073)
  at /home/william/Code/jhbuild/checkout/gtk+-3/gdk/mir/gdkmirdisplay.c:845
  #8  0x77aee577 in gdk_selection_convert (requestor=0x56235af0, 
selection=0x45, target=0x52, time=34494073) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gdk/gdkselection.c:273
  #9  0x773f675e in gtk_selection_convert (widget=0x55fcaf80, 
selection=0x45, target=0x52, time_=34494073) at 
/home/william/Code/jhbuild/checkout/gtk+-3/gtk/gtkselection.c:1162
  #10 0x77537a04 in gtk_clipboard_real_request_contents 
(clipboard=0x55fb7690, target=0x52, callback=0x774469cc 
, user_data=0x7fffc00037b0)
  at 

[Touch-packages] [Bug 1661508] Re: [regression] Nested server segfaults or rapidly logs exceptions when a fullscreen client starts [in mir_presentation_chain_set_dropping_mode ... std::exception::what

2017-02-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mir - 0.26.1+17.04.20170209.1-0ubuntu1

---
mir (0.26.1+17.04.20170209.1-0ubuntu1) zesty; urgency=medium

  * New upstream release 0.26.1 (https://launchpad.net/mir/+milestone/0.26.1)
- ABI summary:
  . mirclient ABI unchanged at 9
  . mirserver ABI unchanged at 43
  . mircommon ABI unchanged at 7
  . mirplatform ABI bumped to 15
  . mirprotobuf ABI unchanged at 3
  . mirplatformgraphics ABI bumped to 12
  . mirclientplatform ABI unchanged at 5
  . mirinputplatform ABI unchanged at 6
  . mircore ABI unchanged at 1
- Enhancements:
  . Support for MirBuffer API that allows for better management of
hardware/software buffers.
  . Support for MirPresentationChain API that allows better control
over {de}queueing of individual buffers {from}to the server.
  . Interim support for MirRenderSurface API that provides a unit of
renderable for lower level content such as MirBufferStreams and
MirPresentationChains, etc.. MirRenderSurface API is marked
deprecated as it (and the relevant entry points) will be renamed to
MirSurface before general availability. It will initially be used for
revamping support for EGL drivers.
  . Synchronous version of mir_prompt_session_new_fds_for_prompt_providers()
API (mir_prompt_session_new_fds_for_prompt_providers_sync()) added for
convenience.
  . Better name for MirPersistentId-->MirWindowId. MirPersistentId has now
been deprecated.
- Bugs fixed:
  . [regression] Unity8 stutters constantly (like half frame rate).
(LP: #1661128)
  . mir 0.26 - spinner loading animation, minimize, maximize too fast.
(LP: #1661072)
  . [regression] Nested server segfaults or rapidly logs exceptions when a
fullscreen client starts [in mir_presentation_chain_set_dropping_mode
... std::exception::what: Operation not permitted] (LP: #1661508)
  . mir_window_request_persistent_id_sync seg faults when called twice.
(LP: #1661704)
  . [regression] Windowed clients of nested servers are all black.
(LP: #1661521)
  . Mir graphics platform ABI broke in series 0.26 but sonames never
changed (LP: #1662455)
  . Fixes for 0.26 changelog.
  . [regression] mirscreencast hangs during screencast creation. (LP: 
#1662997)
  . libmirclient-dev missing build dependency on libmircore-dev. (LP: 
#1662942)
  . mir_window_spec_set_cursor_name() doesn't trigger
mir::scene::SurfaceObserver::cursor_image_set_to. (LP: #1663197)
  . [regression] Software clients of nested servers are all black in Mir 
0.25.0
and later. (LP: #1663062)

 -- Cemil Azizoglu   Thu, 09 Feb 2017
21:46:32 +

** Changed in: mir (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  [regression] Nested server segfaults or rapidly logs exceptions when a
  fullscreen client starts [in mir_presentation_chain_set_dropping_mode
  ... std::exception::what: Operation not permitted]

Status in Mir:
  Fix Committed
Status in Mir 0.26 series:
  Fix Committed
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  Nested server segfaults when a fullscreen client starts

  Using Mir 0.26.0 (zesty release):

  The client dies:

  [2017-02-03 15:05:44.315444]  Mesa/NativeSurface: Caught exception at 
Mir/EGL driver boundary (in advance_buffer): 
/build/mir-1Sl_GZ/mir-0.26.0+17.04.20170126.3/src/client/no_tls_future-inl.h(76):
 Throw in function void mir::client::PromiseStateBase::break_promise() [with 
T = std::shared_ptr]
  Dynamic exception type: 
boost::exception_detail::error_info_injector
  std::exception::what: broken_promise

  Because the server died:

  Segmentation fault (core dumped)
  (gdb) bt
  #0  __GI___pthread_mutex_lock (mutex=0x0) at ../nptl/pthread_mutex_lock.c:67
  #1  0x7fcceb7b4003 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirclient.so.9
  #2  0x7fcceb7d1961 in mir_presentation_chain_set_dropping_mode ()
     from /usr/lib/x86_64-linux-gnu/libmirclient.so.9
  #3  0x7fccec0e3a7a in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #4  0x7fccec09fd2d in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #5  0x7fccec09f018 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #6  0x7fccec0e2c79 in ?? ()
     from /usr/lib/x86_64-linux-gnu/libmirserver.so.43
  #7  0x7fccebcfab2f in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
  #8  0x7fcce95326ca in start_thread (arg=0x7fccde2b4700)
  at pthread_create.c:333
  #9  0x7fccec4710ff in clone ()
  at ../sysdeps/unix/sysv/linux/x86_64/clone.S:105

  However in development builds the server 

[Touch-packages] [Bug 1664620] Re: [regression] webbrowser_app.tests.test_basic_authentication fail with latest UITK

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-sdk-team/ubuntu-ui-
toolkit/hiddenWindowPopup

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

Title:
  [regression] webbrowser_app.tests.test_basic_authentication fail with
  latest UITK

Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Running webbrowser-app on desktop xenial+overlay, I'm seeing the
  following autopilot tests fail:

  
webbrowser_app.tests.test_basic_authentication.TestBasicAuthentication.test_wrong_credentials
  
webbrowser_app.tests.test_basic_authentication.TestBasicAuthentication.test_right_credentials
  
webbrowser_app.tests.test_basic_authentication.TestBasicAuthentication.test_cancel

  Indeed, when browsing to e.g.
  https://www.httpwatch.com/httpgallery/authentication/ and clicking the
  "DISPLAY IMAGE" button, no dialog is shown, and I’m seeing the
  following error in the logs:

  file:///usr/lib/x86_64-linux-
  gnu/qt5/qml/Ubuntu/Components/Popups/1.3/popupUtils.js:75: TypeError:
  Cannot read property 'activeFocusItem' of null

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1664620/+subscriptions

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


[Touch-packages] [Bug 1665409] [NEW] nvidia-settings

2017-02-16 Thread Мария
Public bug reported:

When i switch in Nvidia X Server Settings - PRIME Profiles GPU From
"Power Saving Mode" to "Performance Mode" and log out it isn t switch,
when i log in again.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: xorg 1:7.7+13ubuntu4
ProcVersionSignature: Ubuntu 4.8.0-37.39-generic 4.8.16
Uname: Linux 4.8.0-37-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
.proc.driver.nvidia.gpus..08.00.0: Error: [Errno 21] Это каталог: 
'/proc/driver/nvidia/gpus/:08:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  367.57  Mon Oct  3 20:37:01 
PDT 2016
 GCC version:  gcc version 6.2.0 20161005 (Ubuntu 6.2.0-5ubuntu12)
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Thu Feb 16 19:28:23 2017
DistUpgraded: 2016-10-23 15:15:10,170 ERROR got error from PostInstallScript 
./xorg_fix_proprietary.py (g-exec-error-quark: Не удалось выполнить 
процесс-потомок «./xorg_fix_proprietary.py» (No such file or directory) (8))
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
DistroCodename: yakkety
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA 
controller])
   Subsystem: Dell HD Graphics 5500 [1028:06b0]
   Subsystem: Dell GK208M [GeForce 920M] [1028:06b0]
InstallationDate: Installed on 2016-10-22 (116 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
MachineType: Dell Inc. Inspiron 3558
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-37-generic 
root=UUID=cbe7da08-b9c3-4cb1-833c-df5b80cdbffa ro locale=ru_RU quiet splash 
video.use_native_backlight=1 vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: Upgraded to yakkety on 2016-10-23 (116 days ago)
dmi.bios.date: 04/22/2016
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A09
dmi.board.name: 0G1TDD
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd04/22/2016:svnDellInc.:pnInspiron3558:pvr:rvnDellInc.:rn0G1TDD:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.name: Inspiron 3558
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.13.0+16.10.20160818.2-0ubuntu2
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.70-1
version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.3-1ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.3-1ubuntu2
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-1ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160706-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-2

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


** Tags: amd64 apport-bug compiz-0.9 false-gpu-hang freeze ubuntu 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/1665409

Title:
  nvidia-settings

Status in xorg package in Ubuntu:
  New

Bug description:
  When i switch in Nvidia X Server Settings - PRIME Profiles GPU From
  "Power Saving Mode" to "Performance Mode" and log out it isn t switch,
  when i log in again.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: xorg 1:7.7+13ubuntu4
  ProcVersionSignature: Ubuntu 4.8.0-37.39-generic 4.8.16
  Uname: Linux 4.8.0-37-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..08.00.0: Error: [Errno 21] Это каталог: 
'/proc/driver/nvidia/gpus/:08:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  367.57  Mon Oct  3 20:37:01 
PDT 2016
   GCC version:  gcc version 6.2.0 20161005 (Ubuntu 6.2.0-5ubuntu12)
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.3-0ubuntu8.2
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Thu Feb 16 19:28:23 2017
  DistUpgraded: 

[Touch-packages] [Bug 1664447] Re: Mouse Flickering on Built-in display after connecting to external monitor

2017-02-16 Thread Kanishk Dudeja
Can i get an update on this bug? Atleast if the bug can be acknowledged
or some more debugging information is needed?

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

Title:
  Mouse Flickering on Built-in display after connecting to external
  monitor

Status in xorg package in Ubuntu:
  New

Bug description:
  When I connect my Dell XPS 9350 to an 1080p external Dell display, the
  mouse keeps flickering on my Dell XPS 9350.

  The mouse flickering is much more pronounced when i scroll pages in
  Chrome or some other application.

  I had followed these instructions to set up different DPI on both the
  screens:

  https://gist.github.com/DevNiall/3dcd04f4e12b1e75910f53acb1b965cd

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  Uname: Linux 4.9.9-040909-generic x86_64
  .tmp.unity_support_test.0:

  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Feb 14 11:00:13 2017
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Sky Lake Integrated Graphics [8086:1916] (rev 07) (prog-if 
00 [VGA controller])
     Subsystem: Dell Skylake Integrated Graphics [1028:0704]
  InstallationDate: Installed on 2016-12-15 (60 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: Dell Inc. XPS 13 9350
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.9.9-040909-generic 
root=UUID=360d680b-827b-4265-a822-21c8d6a5a9a3 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/12/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.4.10
  dmi.board.name: 07TYC2
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.4.10:bd10/12/2016:svnDellInc.:pnXPS139350:pvr:rvnDellInc.:rn07TYC2:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9350
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.70-1~ubuntu16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.6-0ubuntu0.16.04.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.6-0ubuntu0.16.04.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-0ubuntu0.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 N/A
  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/1664447/+subscriptions

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


[Touch-packages] [Bug 1659388] Re: maliit-server.conf isn't in a useful package

2017-02-16 Thread Launchpad Bug Tracker
** Branch linked: lp:~michael-sheldon/ubuntu-touch-session/fix-1659388

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

Title:
  maliit-server.conf isn't in a useful package

Status in ubuntu-keyboard package in Ubuntu:
  In Progress

Bug description:
  Not quite sure where this should go exactly, but the maliit-server
  Upstart config is in ubuntu-touch-session package. That's not a good
  place for it, is ubuntu-keyboard? Let's reassign this bug to the right
  place.

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

-- 
Mailing list: https://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   >