[Touch-packages] [Bug 1616727] Re: package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to install/upgrade: próba nadpisania "/usr/share/accounts/services/google-im.service", który istnie

2016-08-24 Thread Alberto Mardegan
*** This bug is a duplicate of bug 1451728 ***
https://bugs.launchpad.net/bugs/1451728

** This bug has been marked a duplicate of bug 1451728
   [master] kde-config-telepathy-accounts package install error

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

Title:
  package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to
  install/upgrade: próba nadpisania "/usr/share/accounts/services
  /google-im.service", który istnieje także w pakiecie kde-config-
  telepathy-accounts 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  after logging to the system

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-google 0.12+16.04.20160126-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  AptOrdering:
   account-plugin-google: Install
   account-plugin-google: Configure
   NULL: ConfigurePending
  Architecture: amd64
  Date: Thu Aug 25 06:04:32 2016
  DpkgTerminalLog:
   Przygotowywanie do rozpakowania pakietu 
.../account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb ...
   Rozpakowywanie pakietu account-plugin-google (0.12+16.04.20160126-0ubuntu1) 
...
   dpkg: błąd przetwarzania archiwum 
/var/cache/apt/archives/account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
próba nadpisania "/usr/share/accounts/services/google-im.service", który 
istnieje także w pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  ErrorMessage: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  InstallationDate: Installed on 2015-11-09 (289 days ago)
  InstallationMedia: Kubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to 
install/upgrade: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  UpgradeStatus: Upgraded to xenial on 2016-04-12 (134 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1616727/+subscriptions

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


[Touch-packages] [Bug 1611327] Re: Disabled ListItem inside ListView takes focus but does not show focus ring

2016-08-24 Thread Zsombor Egri
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  Disabled ListItem inside ListView takes focus but does not show focus
  ring

Status in Ubuntu UX:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  Items outside of a ListView are skipped when using keyboard navigation
  to change the focus. However, a ListItem inside a ListView takes the
  focus even when it is disabled, but it does not show the focus frame
  when focused.

  For example, execute this QML program:

  import QtQuick 2.4
  import Ubuntu.Components 1.3

  Item {
  width: units.gu(50)
  height: units.gu(50)

  ListView {
  anchors.fill: parent
  delegate: ListItem {
  enabled: index != 2
  Label {
  anchors.centerIn: parent
  text: parent.enabled ? "enabled" : "disabled"
  }
  }
  model: 5
  }
  }

  Press TAB to focus on the ListView. Then press the down-cursor-key
  twice to move the focus down inside the ListView. The focus will be on
  the disabled item, but not focus frame is visible This is confusing
  for the user since the focus seems to disappear, and the Item where
  the focus seems to be (although invisible) cannot be triggered because
  it is disabled.

  Note: When fixing this bug, also test the solution for Horizontal
  ListViews (and RightToLeft and BottomToTop directions), since I
  encountered this bug in the scrolling toolbar (in progress) that has a
  Horizontal, RightToLeft ListView.

  ==UX Fix===

  Bypass focus for a disabled item and show focus immediately for the
  next available enabled item.

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

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


[Touch-packages] [Bug 1616731] [NEW] Clang 3.6 only advertises SSE2

2016-08-24 Thread Jeffrey Walton
Public bug reported:

I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED, etc.

After installing Clang 3.6, the compiler claims SSE2 is all that is
available:

$ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE_MATH__ 1

$ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __AES__ 1
#define __AVX__ 1
#define __AVX2__ 1
#define __BMI__ 1
#define __BMI2__ 1
#define __core_avx2 1
#define __core_avx2__ 1
#define __RDRND__ 1
#define __RDSEED__ 1
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE3__ 1
#define __SSE4_1__ 1
#define __SSE4_2__ 1
#define __SSE_MATH__ 1
#define __SSSE3__ 1



This is nearly the same report as "Clang 3.4 only advertises SSE2",
http://bugs.launchpad.net/ubuntu/+source/llvm-
toolchain-3.4/+bug/1616723; and "Clang 3.5 only advertises SSE2",
https://bugs.launchpad.net/ubuntu/+source/llvm-
toolchain-3.4/+bug/1616729.

A separate report was provided in case they get worked separately.



$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 61
model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
stepping : 4
microcode : 0x16
cpu MHz : 800.058
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 20
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 
clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc 
aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 
fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer 
aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat epb pln pts dtherm 
tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep 
bmi2 erms invpcid rtm rdseed adx smap xsaveopt
...



$ uname -a
Linux qotom 3.19.0-66-generic #74~14.04.1-Ubuntu SMP Tue Jul 19 19:56:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty

$ clang -v
Ubuntu clang version 3.6.0-2ubuntu1~trusty1 (tags/RELEASE_360/final) (based on 
LLVM 3.6.0)
Target: x86_64-pc-linux-gnu
Thread model: posix

$ dpkg -l clang-3.6
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---=
ii  clang-3.6  1:3.6-2ubunt amd64C, C++ and Objective-C compiler (

** Affects: llvm-toolchain-3.4 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Clang 3.6 only advertises SSE2

Status in llvm-toolchain-3.4 package in Ubuntu:
  New

Bug description:
  I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
  CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED,
  etc.

  After installing Clang 3.6, the compiler claims SSE2 is all that is
  available:

  $ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE_MATH__ 1

  $ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __AES__ 1
  #define __AVX__ 1
  #define __AVX2__ 1
  #define __BMI__ 1
  #define __BMI2__ 1
  #define __core_avx2 1
  #define __core_avx2__ 1
  #define __RDRND__ 1
  #define __RDSEED__ 1
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE3__ 1
  #define __SSE4_1__ 1
  #define __SSE4_2__ 1
  #define __SSE_MATH__ 1
  #define __SSSE3__ 1

  

  This is nearly the same report as "Clang 3.4 only advertises SSE2",
  http://bugs.launchpad.net/ubuntu/+source/llvm-
  toolchain-3.4/+bug/1616723; and "Clang 3.5 only advertises SSE2",
  https://bugs.launchpad.net/ubuntu/+source/llvm-
  toolchain-3.4/+bug/1616729.

  A separate report was provided in case they get worked separately.

  

  $ cat /proc/cpuinfo
  processor : 0
  vendor_id : GenuineIntel
  cpu family : 6
  model : 61
  model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
  stepping : 4
  microcode : 0x16

[Touch-packages] [Bug 1616729] [NEW] Clang 3.5 only advertises SSE2

2016-08-24 Thread Jeffrey Walton
Public bug reported:

I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED, etc.

After installing Clang 3.5, the compiler claims SSE2 is all that is
available:

$ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE_MATH__ 1

$ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __AES__ 1
#define __AVX__ 1
#define __AVX2__ 1
#define __BMI__ 1
#define __BMI2__ 1
#define __core_avx2 1
#define __core_avx2__ 1
#define __RDRND__ 1
#define __RDSEED__ 1
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE3__ 1
#define __SSE4_1__ 1
#define __SSE4_2__ 1
#define __SSE_MATH__ 1
#define __SSSE3__ 1



This is nearly the same report as "Clang 3.4 only advertises SSE2",
http://bugs.launchpad.net/ubuntu/+source/llvm-
toolchain-3.4/+bug/1616723.

A separate report was provided in case they get worked separately.



$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 61
model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
stepping : 4
microcode : 0x16
cpu MHz : 800.058
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 20
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 
clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc 
aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 
fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer 
aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat epb pln pts dtherm 
tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep 
bmi2 erms invpcid rtm rdseed adx smap xsaveopt
...



$ uname -a
Linux qotom 3.19.0-66-generic #74~14.04.1-Ubuntu SMP Tue Jul 19 19:56:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty

$ clang -v
Ubuntu clang version 3.5.0-4ubuntu2~trusty2 (tags/RELEASE_350/final) (based on 
LLVM 3.5.0)

$ dpkg -l clang-3.5
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---=
ii  clang-3.5  1:3.5-4ubunt amd64C, C++ and Objective-C compiler (

** Affects: llvm-toolchain-3.4 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Clang 3.5 only advertises SSE2

Status in llvm-toolchain-3.4 package in Ubuntu:
  New

Bug description:
  I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
  CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED,
  etc.

  After installing Clang 3.5, the compiler claims SSE2 is all that is
  available:

  $ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE_MATH__ 1

  $ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __AES__ 1
  #define __AVX__ 1
  #define __AVX2__ 1
  #define __BMI__ 1
  #define __BMI2__ 1
  #define __core_avx2 1
  #define __core_avx2__ 1
  #define __RDRND__ 1
  #define __RDSEED__ 1
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE3__ 1
  #define __SSE4_1__ 1
  #define __SSE4_2__ 1
  #define __SSE_MATH__ 1
  #define __SSSE3__ 1

  

  This is nearly the same report as "Clang 3.4 only advertises SSE2",
  http://bugs.launchpad.net/ubuntu/+source/llvm-
  toolchain-3.4/+bug/1616723.

  A separate report was provided in case they get worked separately.

  

  $ cat /proc/cpuinfo
  processor : 0
  vendor_id : GenuineIntel
  cpu family : 6
  model : 61
  model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
  stepping : 4
  microcode : 0x16
  cpu MHz : 800.058
  cache size : 3072 KB
  physical id : 0
  siblings : 4
  core id : 0
  cpu cores : 2
  apicid : 0
  initial apicid : 0
  fpu : yes
  fpu_exception : yes
  cpuid level : 20
  wp : yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat 

[Touch-packages] [Bug 1616711] Re: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output error

2016-08-24 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your dmesg attachment in this bug report it
seems that there is a problem with your hardware.  I recommend
performing a back up and then investigating the situation.  Measures you
might take include checking cable connections and using software tools
to investigate the health of your hardware.  In the event that is is not
in fact an error with your hardware please set the bug's status back to
New.  Thanks and good luck!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: hardware-error

** Changed in: avahi (Ubuntu)
   Importance: Undecided => Low

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

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

Title:
  package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade:
  cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf':
  failed to read (Input/output error)

Status in avahi package in Ubuntu:
  Invalid

Bug description:
  error occured on update

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: avahi-daemon 0.6.31-4ubuntu1.1
  ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  Date: Wed Aug 24 20:17:34 2016
  DuplicateSignature: package:avahi-daemon:0.6.31-4ubuntu1.1:cannot compute MD5 
hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output 
error)
  ErrorMessage: cannot compute MD5 hash for file 
'/etc/avahi/avahi-daemon.conf': failed to read (Input/output error)
  InstallationDate: Installed on 2016-04-19 (128 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04.3 LTS "Trusty Tahr" - Beta amd64 
(20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.7
   apt  1.0.1ubuntu2.14
  SourcePackage: avahi
  Title: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: 
cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read 
(Input/output error)
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.avahi.avahi.daemon.conf: [inaccessible: [Errno 5] 
Input/output error]

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

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


[Touch-packages] [Bug 1409332] Re: Mouse cursor freezes, when using e.g. youtube in chromium, and stays that way

2016-08-24 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/1409332

Title:
  Mouse cursor freezes, when using e.g. youtube in chromium, and stays
  that way

Status in xorg package in Ubuntu:
  Expired

Bug description:
  I can not make this happen, if I use Firefox, but it happens, if I use
  Chromium browser and play youtube video. Visible mouse cursor stops
  moving. Still I can move mouse and use it, but it is hard, when you
  don't see where the cursor effectively is. This seems to happen only,
  if I have hardware acceleration enabled in advanced settings.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: chromium-browser 39.0.2171.65-0ubuntu0.14.04.1.1064
  ProcVersionSignature: Ubuntu 3.13.0-43.72-lowlatency 3.13.11.11
  Uname: Linux 3.13.0-43-lowlatency x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sat Jan 10 22:23:29 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-09-21 (111 days ago)
  InstallationMedia: Ubuntu-Studio 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.1)
  SourcePackage: chromium-browser
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.default.chromium.browser: [deleted]
  mtime.conffile..etc.chromium.browser.default: 2014-09-28T10:04:54.426898
  --- 
  ApportVersion: 2.14.1-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: XFCE
  CurrentDmesg: [  373.553548] perf samples too long (2509 > 2500), lowering 
kernel.perf_event_max_sample_rate to 5
  DRM.card0.VGA.1:
   edid-base64: 
AP///wAebW9DLDQEABEPAQNuIht46i7lpFdKnCURUFSla4AxT0VPYU+BgAEBAQEBAQEBMCoAmFEAKkAwcBMAUg4RAAAe/QA4Sx5TDgAKICAgICAg/ABMMTcxNVMKICAgICAg/AAKICAgICAgICAgICAgAJg=
   dpms: On
   modes: 1280x1024 1280x1024 1152x864 1024x768 1024x768 1024x768 832x624 
800x600 800x600 640x480 640x480 720x400
   enabled: enabled
   status: connected
  Desktop-Session:
   'ubuntustudio'
   '/etc/xdg/xdg-ubuntustudio:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg'
   
'/usr/share/ubuntustudio:/usr/share/xfce4:/usr/local/share/:/usr/share/:/usr/share'
  DetectedPlugins:
   
  DistroRelease: Ubuntu 14.04
  EcryptfsInUse: Yes
  Env:
   'None'
   'None'
  InstallationDate: Installed on 2014-09-21 (180 days ago)
  InstallationMedia: Ubuntu-Studio 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.1)
  Load-Avg-1min: 0.61
  Load-Processes-Running-Percent:   0.2%
  MachineType: Dell Inc. OptiPlex 745
  Package: xorg
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-46-lowlatency 
root=UUID=d012c1bd-7e56-4035-b321-38d20cb14421 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.13.0-46.79-lowlatency 3.13.11-ckt15
  Tags:  trusty
  Uname: Linux 3.13.0-46-lowlatency x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip lp lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/26/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 2.6.6
  dmi.board.name: 0RF703
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 6
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr2.6.6:bd06/26/2011:svnDellInc.:pnOptiPlex745:pvr:rvnDellInc.:rn0RF703:rvr:cvnDellInc.:ct6:cvr:
  dmi.product.name: OptiPlex 745
  dmi.sys.vendor: Dell Inc.
  modified.conffile..etc.default.chromium.browser: [deleted]
  mtime.conffile..etc.chromium.browser.default: 2014-09-28T10:04:54.426899

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

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


[Touch-packages] [Bug 1572679] Re: screen flickering and tearing kwin nouveau kubuntu 16.04

2016-08-24 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/1572679

Title:
  screen flickering and tearing kwin nouveau kubuntu 16.04

Status in xorg package in Ubuntu:
  Expired

Bug description:
  The bug I see on my Dell D830 (8GB RAM, Nvidia G86M [Quadro NVS 140M]
  (rev a1)) with nouveau driver using Kubuntu 16.04.

  After login everything seems to work fine for roughly 2 minutes. After
  that flickering and tearing starts (when moving windows around with
  the mouse) and gets more intense until the screen is full of "color-
  blobs" (which means: one cannot see anything anymore).  Starting a
  flash movie in Firefox provokes immediate tearing and flickering.

  Restarting the kwin compositor helps - for another 2 minutes, then the
  whole problem starts to catch on momentum again. I tried everything
  mentioned here:

  http://askubuntu.com/questions/672007/flickering-in-kde-plasma-5-4

  the only thing that helps for a longer period of time is turning off
  compositing completely.

  I am unsure where to further look for the problem: Is it kwin? xorg?
  nouveau? All of them? Whatever? The logs I checked (xorg, syslog,
  dmesg etc.) contain nothing that I can make sense of.

  I'd appreciate any hint to where (and: what) to look (for) and which
  more specific information to collect ...

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Wed Apr 20 19:22:50 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-03-22 (28 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160320)
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog:
   
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: kubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.4.0-22-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 4.4.0-24-generic, x86_64: installed
   vboxhost, 5.0.22, 4.4.0-22-generic, x86_64: installed
   vboxhost, 5.0.22, 4.4.0-24-generic, x86_64: installed
  EcryptfsInUse: Yes
  GraphicsCard:
   NVIDIA Corporation G86M [Quadro NVS 140M] [10de:0429] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: Dell G86M [Quadro NVS 140M] [1028:01fe]
  InstallationDate: Installed on 2016-05-02 (46 days ago)
  InstallationMedia: Kubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  MachineType: Dell Inc. Latitude D830
  NonfreeKernelModules: wl
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-24-generic 
root=UUID=5f4a29b4-76d7-473a-948b-6e916e79e20f ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Tags:  xenial kubuntu
  Uname: Linux 4.4.0-24-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark
  _MarkForUpload: True
  dmi.bios.date: 07/21/2008
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A13
  dmi.board.name: 0UY141
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd07/21/2008:svnDellInc.:pnLatitudeD830:pvr:rvnDellInc.:rn0UY141:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Latitude D830
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2

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

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

[Touch-packages] [Bug 1584498] Re: how to fix?

2016-08-24 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/1584498

Title:
  how to fix?

Status in xorg package in Ubuntu:
  Expired

Bug description:
  help

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  BootLog: /dev/sda6: clean, 258787/3948544 files, 2939821/15769600 blocks
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Mon May 23 00:34:36 2016
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Broadwell-U Integrated Graphics 
[1043:1a9d]
 Subsystem: ASUSTeK Computer Inc. GM108M [GeForce 940M] [1043:1a9d]
  InstallationDate: Installed on 2016-05-20 (1 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 04f2:b483 Chicony Electronics Co., Ltd 
   Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: ASUSTeK COMPUTER INC. K401LB
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-21-generic.efi.signed 
root=UUID=0a2c0c29-a90e-4365-858b-f7f83973875b ro quiet splash pcie_aspm=force 
acpi_backlight=vendor vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/09/2015
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: K401LB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: K401LB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: ATN12345678901234567
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrK401LB.205:bd10/09/2015:svnASUSTeKCOMPUTERINC.:pnK401LB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnK401LB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: K401LB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.12-1build2
  xserver.bootTime: Mon May 23 00:16:33 2016
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5289 
   vendor CMN
  xserver.version: 2:1.18.3-1ubuntu2

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

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


[Touch-packages] [Bug 1596213] Re: Apt Get Update - Failed to Fetch Wily Not found

2016-08-24 Thread Launchpad Bug Tracker
[Expired for apt (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Apt Get Update - Failed to Fetch Wily Not found

Status in apt package in Ubuntu:
  Expired

Bug description:
  I have Ubuntu 15.10, Release:   15.10

  I do

  > supo apt-get update

  and get

  W: There is no public key available for the following key IDs:
  1397BC53640DB551
  W: Failed to fetch 
http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu/dists/wily/main/source/Sources
  404  Not Found

  W: Failed to fetch http://ppa.launchpad.net/pidgin-
  developers/ppa/ubuntu/dists/wily/main/binary-amd64/Packages  404  Not
  Found

  W: Failed to fetch http://ppa.launchpad.net/pidgin-
  developers/ppa/ubuntu/dists/wily/main/binary-i386/Packages  404  Not
  Found

  E: Some index files failed to download. They have been ignored, or old
  ones used instead.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: ubuntu-release-upgrader-core 1:15.10.14.4
  ProcVersionSignature: Ubuntu 3.13.0-88.135-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-88-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  CrashDB: ubuntu
  CurrentDesktop: Unity
  Date: Sat Jun 25 20:05:59 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-04-22 (794 days ago)
  InstallationMedia: Ubuntu 12.04.3 LTS "Precise Pangolin" - Release i386 
(20130820.1)
  PackageArchitecture: all
  SourcePackage: ubuntu-release-upgrader
  Symptom: release-upgrade
  UpgradeStatus: Upgraded to wily on 2016-06-25 (0 days ago)
  VarLogDistupgradeAptlog: Log time: 2016-06-25 19:51:47.617018

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

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


[Touch-packages] [Bug 1616727] [NEW] package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to install/upgrade: próba nadpisania "/usr/share/accounts/services/google-im.service", który istn

2016-08-24 Thread roxy
Public bug reported:

after logging to the system

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: account-plugin-google 0.12+16.04.20160126-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
AptOrdering:
 account-plugin-google: Install
 account-plugin-google: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Thu Aug 25 06:04:32 2016
DpkgTerminalLog:
 Przygotowywanie do rozpakowania pakietu 
.../account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb ...
 Rozpakowywanie pakietu account-plugin-google (0.12+16.04.20160126-0ubuntu1) ...
 dpkg: błąd przetwarzania archiwum 
/var/cache/apt/archives/account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
  próba nadpisania "/usr/share/accounts/services/google-im.service", który 
istnieje także w pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
ErrorMessage: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
InstallationDate: Installed on 2015-11-09 (289 days ago)
InstallationMedia: Kubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: account-plugins
Title: package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to 
install/upgrade: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
UpgradeStatus: Upgraded to xenial on 2016-04-12 (134 days ago)

** Affects: account-plugins (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 account-plugins in Ubuntu.
https://bugs.launchpad.net/bugs/1616727

Title:
  package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to
  install/upgrade: próba nadpisania "/usr/share/accounts/services
  /google-im.service", który istnieje także w pakiecie kde-config-
  telepathy-accounts 4:15.12.3-0ubuntu1

Status in account-plugins package in Ubuntu:
  New

Bug description:
  after logging to the system

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: account-plugin-google 0.12+16.04.20160126-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  AptOrdering:
   account-plugin-google: Install
   account-plugin-google: Configure
   NULL: ConfigurePending
  Architecture: amd64
  Date: Thu Aug 25 06:04:32 2016
  DpkgTerminalLog:
   Przygotowywanie do rozpakowania pakietu 
.../account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb ...
   Rozpakowywanie pakietu account-plugin-google (0.12+16.04.20160126-0ubuntu1) 
...
   dpkg: błąd przetwarzania archiwum 
/var/cache/apt/archives/account-plugin-google_0.12+16.04.20160126-0ubuntu1_all.deb
 (--unpack):
próba nadpisania "/usr/share/accounts/services/google-im.service", który 
istnieje także w pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  ErrorMessage: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  InstallationDate: Installed on 2015-11-09 (289 days ago)
  InstallationMedia: Kubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: account-plugins
  Title: package account-plugin-google 0.12+16.04.20160126-0ubuntu1 failed to 
install/upgrade: próba nadpisania 
"/usr/share/accounts/services/google-im.service", który istnieje także w 
pakiecie kde-config-telepathy-accounts 4:15.12.3-0ubuntu1
  UpgradeStatus: Upgraded to xenial on 2016-04-12 (134 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1616727/+subscriptions

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


[Touch-packages] [Bug 1616723] Re: Clang 3.4 only advertises SSE2

2016-08-24 Thread Jeffrey Walton
I think this is related from LLVM: "Issue 20213 - clang-cl doesn't
support SSSE3", http://llvm.org/bugs/show_bug.cgi?id=20213. I can't find
a Debian report at the moment.

I was always aware there was some trouble due to working with OS X. I
was not aware it was this bad. I did not realize there was no Lauchpad
reports or remediations in place.

** Bug watch added: LLVM #20213
   https://llvm.org/bugs/show_bug.cgi?id=20213

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

Title:
  Clang 3.4 only advertises SSE2

Status in llvm-toolchain-3.4 package in Ubuntu:
  New

Bug description:
  I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
  CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED,
  etc.

  Ubuntu provides Clang 3.4. On this machine, the compiler claims SSE2
  is all that is available:

  $ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE_MATH__ 1

  $ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __AES__ 1
  #define __AVX__ 1
  #define __AVX2__ 1
  #define __BMI__ 1
  #define __BMI2__ 1
  #define __core_avx2 1
  #define __core_avx2__ 1
  #define __RDRND__ 1
  #define __RDSEED__ 1
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE3__ 1
  #define __SSE4_1__ 1
  #define __SSE4_2__ 1
  #define __SSE_MATH__ 1
  #define __SSSE3__ 1

  

  Clang's configuration is causing self tests to fail. The self tests
  verify configuration and code generation
  (http://github.com/weidai11/cryptopp/blob/master/cryptest.sh#L1013):

  $ CXX=clang++ ./cryptest.sh

  IS_LINUX: 1
  IS_X64: 1
  ...

  
  Testing: X86 AES-NI code generation

  clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c rijndael.cpp
  ERROR: failed to generate aesenc instruction
  ERROR: failed to generate aesenclast instruction
  ERROR: failed to generate aesdec instruction
  ERROR: failed to generate aesdeclast instruction
  ERROR: failed to generate aesimc instruction
  ERROR: failed to generate aeskeygenassist instruction

  
  Testing: X86 carryless multiply code generation

  clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c gcm.cpp
  ERROR: failed to generate pclmullqh instruction
  ERROR: failed to generate pclmullql instruction

  
  Testing: X86 RDRAND and RDSEED code generation

  clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c rdrand.cpp
  Verified rdrand and rdseed machine instructions

  
  Testing: X86 CRC32 code generation

  clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c crc.cpp
  ERROR: failed to generate crc32l instruction
  ERROR: failed to generate crc32b instruction

  

  $ cat /proc/cpuinfo
  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 61
  model name: Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
  stepping  : 4
  microcode : 0x16
  cpu MHz   : 800.058
  cache size: 3072 KB
  physical id   : 0
  siblings  : 4
  core id   : 0
  cpu cores : 2
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 20
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat 
epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust 
bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt
  ...

  

  $ uname -a
  Linux qotom 3.19.0-66-generic #74~14.04.1-Ubuntu SMP Tue Jul 19 19:56:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

  $ lsb_release  -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 14.04.5 LTS
  Release:  14.04
  Codename: trusty

  $ dpkg -l clang-3.4
  Desired=Unknown/Install/Remove/Purge/Hold
  | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
  |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
  ||/ Name   Version  Architecture Description
  +++-==---=
  ii  clang-3.4  1:3.4-1ubunt amd64C, C++ and Obj

[Touch-packages] [Bug 1616725] [NEW] package ubuntu-mono 14.04+16.04.20160415-0ubuntu1 failed to install/upgrade: 现在尚不能配置软件包 ubuntu-mono 不能配置(目前状态为 half-installed )

2016-08-24 Thread zyy
Public bug reported:

sudo apt-get install

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: ubuntu-mono 14.04+16.04.20160415-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
Uname: Linux 4.4.0-28-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
Date: Thu Aug 25 11:45:19 2016
DpkgHistoryLog:
 Start-Date: 2016-08-25  11:45:08
 Commandline: apt-get install -f
 Requested-By: zyy (1000)
 Upgrade: language-selector-common:amd64 (0.165, 0.165.4), 
language-selector-gnome:amd64 (0.165.3, 0.165.4)
ErrorMessage: 现在尚不能配置软件包 ubuntu-mono  不能配置(目前状态为 half-installed )
InstallationDate: Installed on 2016-05-21 (95 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: ubuntu-themes
Title: package ubuntu-mono 14.04+16.04.20160415-0ubuntu1 failed to 
install/upgrade: 现在尚不能配置软件包 ubuntu-mono  不能配置(目前状态为 half-installed )
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-themes (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 ubuntu-themes in Ubuntu.
https://bugs.launchpad.net/bugs/1616725

Title:
  package ubuntu-mono 14.04+16.04.20160415-0ubuntu1 failed to
  install/upgrade: 现在尚不能配置软件包 ubuntu-mono  不能配置(目前状态为 half-installed )

Status in ubuntu-themes package in Ubuntu:
  New

Bug description:
  sudo apt-get install

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: ubuntu-mono 14.04+16.04.20160415-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-28.47-generic 4.4.13
  Uname: Linux 4.4.0-28-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  Date: Thu Aug 25 11:45:19 2016
  DpkgHistoryLog:
   Start-Date: 2016-08-25  11:45:08
   Commandline: apt-get install -f
   Requested-By: zyy (1000)
   Upgrade: language-selector-common:amd64 (0.165, 0.165.4), 
language-selector-gnome:amd64 (0.165.3, 0.165.4)
  ErrorMessage: 现在尚不能配置软件包 ubuntu-mono  不能配置(目前状态为 half-installed )
  InstallationDate: Installed on 2016-05-21 (95 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: ubuntu-themes
  Title: package ubuntu-mono 14.04+16.04.20160415-0ubuntu1 failed to 
install/upgrade: 现在尚不能配置软件包 ubuntu-mono  不能配置(目前状态为 half-installed )
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1616723] [NEW] Clang 3.4 only advertises SSE2

2016-08-24 Thread Jeffrey Walton
Public bug reported:

I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED, etc.

Ubuntu provides Clang 3.4. On this machine, the compiler claims SSE2 is
all that is available:

$ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE_MATH__ 1

$ g++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
#define __AES__ 1
#define __AVX__ 1
#define __AVX2__ 1
#define __BMI__ 1
#define __BMI2__ 1
#define __core_avx2 1
#define __core_avx2__ 1
#define __RDRND__ 1
#define __RDSEED__ 1
#define __SSE__ 1
#define __SSE2__ 1
#define __SSE2_MATH__ 1
#define __SSE3__ 1
#define __SSE4_1__ 1
#define __SSE4_2__ 1
#define __SSE_MATH__ 1
#define __SSSE3__ 1



Clang's configuration is causing self tests to fail. The self tests
verify configuration and code generation
(http://github.com/weidai11/cryptopp/blob/master/cryptest.sh#L1013):

$ CXX=clang++ ./cryptest.sh

IS_LINUX: 1
IS_X64: 1
...


Testing: X86 AES-NI code generation

clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c rijndael.cpp
ERROR: failed to generate aesenc instruction
ERROR: failed to generate aesenclast instruction
ERROR: failed to generate aesdec instruction
ERROR: failed to generate aesdeclast instruction
ERROR: failed to generate aesimc instruction
ERROR: failed to generate aeskeygenassist instruction


Testing: X86 carryless multiply code generation

clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c gcm.cpp
ERROR: failed to generate pclmullqh instruction
ERROR: failed to generate pclmullql instruction


Testing: X86 RDRAND and RDSEED code generation

clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c rdrand.cpp
Verified rdrand and rdseed machine instructions


Testing: X86 CRC32 code generation

clang++ -DNDEBUG -g2 -O2  -fPIC -march=native -pipe -c crc.cpp
ERROR: failed to generate crc32l instruction
ERROR: failed to generate crc32b instruction



$ cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 61
model name  : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz
stepping: 4
microcode   : 0x16
cpu MHz : 800.058
cache size  : 3072 KB
physical id : 0
siblings: 4
core id : 0
cpu cores   : 2
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 20
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat 
epb pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust 
bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt
...



$ uname -a
Linux qotom 3.19.0-66-generic #74~14.04.1-Ubuntu SMP Tue Jul 19 19:56:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux

$ lsb_release  -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.04.5 LTS
Release:14.04
Codename:   trusty

$ dpkg -l clang-3.4
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---=
ii  clang-3.4  1:3.4-1ubunt amd64C, C++ and Objective-C compiler (

** Affects: llvm-toolchain-3.4 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Clang 3.4 only advertises SSE2

Status in llvm-toolchain-3.4 package in Ubuntu:
  New

Bug description:
  I'm working on a 5th generation Core i5 (see /proc/cpuinfo below). The
  CPU offers SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AES, RDRAND, RDSEED,
  etc.

  Ubuntu provides Clang 3.4. On this machine, the compiler claims SSE2
  is all that is available:

  $ clang++ -march=native -dM -E - < /dev/null | egrep -i 
'(sse|aes|rdrnd|rdseed|avx|bmi)' | sort
  #define __SSE__ 1
  #define __SSE2__ 1
  #define __SSE2_MATH__ 1
  #define __SSE_MATH__ 1

  $ g++ -march=native -dM -E - < /dev/null

[Touch-packages] [Bug 1613698] Re: curl: Problem with chunked encoded data

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

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

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

Title:
  curl: Problem with chunked encoded data

Status in curl package in Ubuntu:
  Confirmed

Bug description:
  curl in Ubuntu 14.0.4 suffers from a bug ("Problem (2) in the Chunked-
  Encoded data") introduced in curl 7.35.0
  
(https://github.com/curl/curl/commit/345891edba32312686e18d8ff185f4476b74e417).

  See the corresponding thread on the curl mailing list:
  * https://curl.haxx.se/mail/lib-2014-02/0100.html
  * https://curl.haxx.se/mail/lib-2014-02/0108.html

  Googling for "Problem (2) in the Chunked-Encoded data" shows that this seems 
to be a problem for other Ubuntu users, too. For example:
  * 
https://github.com/jackalope/jackalope-jackrabbit/issues/89#issuecomment-55084492
  * 
https://www.mastizada.com/blog/chunked-encoded-data-error-in-php-curl-requests/
  * https://bugs.php.net/bug.php?id=72131

  

  The issue was fixed in curl 7.36.0 with
  https://github.com/curl/curl/commit/0ab97ba0090f2609760c33000181f08757336a48

  If you apply that patch to curl in Ubuntu 14.04, I'm sure you'll make
  a lot of people happy - including me. Thanks!

  

  Ubuntu 14.04.4 LTS, curl-7.35.0-1ubuntu2.7

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

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


[Touch-packages] [Bug 1616711] Re: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output error

2016-08-24 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade:
  cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf':
  failed to read (Input/output error)

Status in avahi package in Ubuntu:
  New

Bug description:
  error occured on update

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: avahi-daemon 0.6.31-4ubuntu1.1
  ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  Date: Wed Aug 24 20:17:34 2016
  DuplicateSignature: package:avahi-daemon:0.6.31-4ubuntu1.1:cannot compute MD5 
hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output 
error)
  ErrorMessage: cannot compute MD5 hash for file 
'/etc/avahi/avahi-daemon.conf': failed to read (Input/output error)
  InstallationDate: Installed on 2016-04-19 (128 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04.3 LTS "Trusty Tahr" - Beta amd64 
(20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.7
   apt  1.0.1ubuntu2.14
  SourcePackage: avahi
  Title: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: 
cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read 
(Input/output error)
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.avahi.avahi.daemon.conf: [inaccessible: [Errno 5] 
Input/output error]

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

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


[Touch-packages] [Bug 1616711] [NEW] package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output err

2016-08-24 Thread aaron
Public bug reported:

error occured on update

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: avahi-daemon 0.6.31-4ubuntu1.1
ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
Uname: Linux 3.19.0-25-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
Date: Wed Aug 24 20:17:34 2016
DuplicateSignature: package:avahi-daemon:0.6.31-4ubuntu1.1:cannot compute MD5 
hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output 
error)
ErrorMessage: cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': 
failed to read (Input/output error)
InstallationDate: Installed on 2016-04-19 (128 days ago)
InstallationMedia: Ubuntu-GNOME 14.04.3 LTS "Trusty Tahr" - Beta amd64 
(20150805)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.7
 apt  1.0.1ubuntu2.14
SourcePackage: avahi
Title: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: cannot 
compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read 
(Input/output error)
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.avahi.avahi.daemon.conf: [inaccessible: [Errno 5] 
Input/output error]

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


** Tags: amd64 apport-package trusty

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

Title:
  package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade:
  cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf':
  failed to read (Input/output error)

Status in avahi package in Ubuntu:
  New

Bug description:
  error occured on update

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: avahi-daemon 0.6.31-4ubuntu1.1
  ProcVersionSignature: Ubuntu 3.19.0-25.26~14.04.1-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  Date: Wed Aug 24 20:17:34 2016
  DuplicateSignature: package:avahi-daemon:0.6.31-4ubuntu1.1:cannot compute MD5 
hash for file '/etc/avahi/avahi-daemon.conf': failed to read (Input/output 
error)
  ErrorMessage: cannot compute MD5 hash for file 
'/etc/avahi/avahi-daemon.conf': failed to read (Input/output error)
  InstallationDate: Installed on 2016-04-19 (128 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04.3 LTS "Trusty Tahr" - Beta amd64 
(20150805)
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.7
   apt  1.0.1ubuntu2.14
  SourcePackage: avahi
  Title: package avahi-daemon 0.6.31-4ubuntu1.1 failed to install/upgrade: 
cannot compute MD5 hash for file '/etc/avahi/avahi-daemon.conf': failed to read 
(Input/output error)
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.avahi.avahi.daemon.conf: [inaccessible: [Errno 5] 
Input/output error]

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

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


[Touch-packages] [Bug 1616341] Re: Home button on Pro 5 requires two presses to turn on screen

2016-08-24 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1615234 ***
https://bugs.launchpad.net/bugs/1615234

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 1615234, 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 1615234
   Pro 5 physical home button is unresponsive, takes multiple presses to work

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

Title:
  Home button on Pro 5 requires two presses to turn on screen

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

Bug description:
  Pro 5 on rc-proposed.

  Annoyingly often, about 75% or more of the cases, I need to press the
  home button twice in order to turn the screen on. Then of course
  another press or touch to unlock with my fingerprint. This behavior
  started a few updates back (I am now on r164).

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

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


[Touch-packages] [Bug 1573755] Re: Compose and dead keys stopped working with XIM after upgrade to 16.04

2016-08-24 Thread Otto Piscus
I am in the same situation as Rudiger, with the compose key working in
Terminal and Dash but not anywhere else I can find. System upgraded to
16.04. All fixes listed above attempted, with no improvement.

Not sure if this helps, but I also had a strange behaviour in terminal
for a while where the operation of the compose key appeared to be
reversed. ie. I would press ' then e and get é without having first
pressed compose. If I first pressed compose then I would get 'e. The
compose key still did nothing in libreoffice, firefox etc. This has now
stopped, but not sure which operation made it change.

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

Title:
  Compose and dead keys stopped working with XIM after upgrade to 16.04

Status in firefox package in Ubuntu:
  Invalid
Status in gnome-terminal package in Ubuntu:
  Invalid
Status in ibus package in Ubuntu:
  Confirmed
Status in libx11 package in Ubuntu:
  Confirmed
Status in nautilus package in Ubuntu:
  Invalid
Status in thunderbird package in Ubuntu:
  Invalid
Status in xkeyboard-config package in Ubuntu:
  Confirmed

Bug description:
  After upgrading to 16.04, entering characters using dead keys and
  using the Compose key stopped working in Gnome Terminal, acting like
  they are normal (non-dead) keys.

  Other applications, even those who use the same libvte (e.g. ROXTerm),
  don't have this issue.

  This happens with both the "Belgian" and "English international with
  AltGr dead keys" layouts.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: gnome-terminal 3.18.3-1ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Apr 22 20:45:33 2016
  InstallationDate: Installed on 2013-12-16 (857 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  SourcePackage: gnome-terminal
  UpgradeStatus: Upgraded to xenial on 2016-04-22 (0 days ago)

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

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


[Touch-packages] [Bug 1616695] [NEW] Bluetooth signal is unusably poor

2016-08-24 Thread ZachG
Public bug reported:

Brand new Macbook Pro 12,1.  Brand new Ubuntu 16.04 install (from
scratch).

In MacOS the machine can connect to my bluetooth speaker from across the
room and play A2DP no trouble at all.  In Ubuntu 16.04 I have to
literally hold up the macbook 1 inch away from the speaker to get it to
connect and play, and even then it's a bit choppy.  Turning off Wifi
seems to help a bit, which leads me to think this is some kind of
transmit power issue.

Syslog is chock full of warnings about skipping audio:

Aug 24 16:22:32 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 206099 us (= 36352 bytes) in audio stream
Aug 24 16:22:32 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 382089 us (= 67400 bytes) in audio stream
Aug 24 16:22:33 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 394108 us (= 69520 bytes) in audio stream
Aug 24 16:22:33 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 328125 us (= 57880 bytes) in audio stream
Aug 24 16:22:33 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 59087 us (= 10420 bytes) in audio stream
Aug 24 16:22:33 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 14036 us (= 2472 bytes) in audio stream
Aug 24 16:22:34 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 247134 us (= 43592 bytes) in audio stream
Aug 24 16:22:34 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 342190 us (= 60360 bytes) in audio stream
Aug 24 16:22:34 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 172035 us (= 30344 bytes) in audio stream
Aug 24 16:22:35 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 803140 us (= 141672 bytes) in audio stream
Aug 24 16:22:36 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 651085 us (= 114848 bytes) in audio stream
Aug 24 16:22:36 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 202043 us (= 35640 bytes) in audio stream
Aug 24 16:22:36 badassm pulseaudio[4655]: [bluetooth] module-bluez5-device.c: 
Skipping 265112 us (= 46764 bytes) in audio stream


$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS"

$ uname -a
Linux badassm 4.4.0-34-generic #53-Ubuntu SMP Wed Jul 27 16:06:39 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux

$ lsusb
Bus 002 Device 002: ID 05ac:8406 Apple, Inc. 
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 05ac:0273 Apple, Inc. 
Bus 001 Device 003: ID 05ac:8290 Apple, Inc. 
Bus 001 Device 006: ID 045e:00db Microsoft Corp. Natural Ergonomic Keyboard 
4000 V1.0
Bus 001 Device 005: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 001 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

$ hciconfig 
hci0:   Type: BR/EDR  Bus: USB
BD Address: 98:01:A7:A8:D4:6A  ACL MTU: 1021:8  SCO MTU: 64:1
UP RUNNING PSCAN 
RX bytes:5198 acl:2 sco:0 events:269 errors:0
TX bytes:7021 acl:2 sco:0 commands:218 errors:0

[bluetooth]# show
Controller 98:01:A7:A8:D4:6A
Name: badassm
Alias: badassm
Class: 0x1c010c
Powered: yes
Discoverable: no
Pairable: yes
UUID: Headset AG(1112--1000-8000-00805f9b34fb)
UUID: Generic Attribute Profile (1801--1000-8000-00805f9b34fb)
UUID: A/V Remote Control(110e--1000-8000-00805f9b34fb)
UUID: OBEX File Transfer(1106--1000-8000-00805f9b34fb)
UUID: Generic Access Profile(1800--1000-8000-00805f9b34fb)
UUID: OBEX Object Push  (1105--1000-8000-00805f9b34fb)
UUID: PnP Information   (1200--1000-8000-00805f9b34fb)
UUID: A/V Remote Control Target (110c--1000-8000-00805f9b34fb)
UUID: IrMC Sync (1104--1000-8000-00805f9b34fb)
UUID: Audio Sink(110b--1000-8000-00805f9b34fb)
UUID: Audio Source  (110a--1000-8000-00805f9b34fb)
UUID: Vendor specific   (5005--1000-8000-0002ee01)
UUID: Message Notification Se.. (1133--1000-8000-00805f9b34fb)
UUID: Phonebook Access Server   (112f--1000-8000-00805f9b34fb)
UUID: Message Access Server (1132--1000-8000-00805f9b34fb)
Modalias: usb:v1D6Bp0246d0525
Discovering: no

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: bluez 5.37-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: GNOME-Flashback:Unity
Date: Wed Aug 24 17:47:46 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-08-24 (0 days ago)
Install

[Touch-packages] [Bug 1615614] Re: dash is empty, scopes are missing

2016-08-24 Thread Michi Henning
The problem is caused by boost, and we are defenseless until we get 1.57
or later into the image. There is an earlier bug about this here:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1303637

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

Title:
  dash is empty, scopes are missing

Status in boost package in Ubuntu:
  New
Status in unity-scopes-api package in Ubuntu:
  Incomplete
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 16.10
  dash is empty, scopes are missing

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

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


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

2016-08-24 Thread Kim Scarborough
At the very least there could be a "dnsmasq_options" entry in
NetworkManager.conf that could override the default options that
NetworkManager calls dnsmasq with.

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

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

Status in network-manager package in Ubuntu:
  Confirmed

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

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

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

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

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/993298/+subscriptions

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


[Touch-packages] [Bug 1616679] [NEW] rdepends for apt-cache fails for virtual packages

2016-08-24 Thread Quanah
Public bug reported:

Example of problem:

The zimbra-mta package provides mail-transport-agent.

Packages that depend on mail-transport-agent are installed
(mailutils,logwatch).

apt-cache is unable to list either of those as depending on zimbra-mta:

root@zre-ldap004:/home/build# apt-cache rdepends --installed 
mail-transport-agent



aptitude does a little better:

root@zre-ldap004:/home/build# aptitude why zimbra-mta
iB  mailutils  Depends  default-mta | mail-transport-agent
ip  zimbra-mta Provides mail-transport-agent


so it finds mailutils (but not logwatch).  so 50% better than apt-cache

If we try to remove zimbra-mta, we find:

root@zre-ldap004:/home/build# dpkg --purge zimbra-mta
dpkg: dependency problems prevent removal of zimbra-mta:
 mailutils depends on default-mta | mail-transport-agent; however:
  Package default-mta is not installed.
  Package mail-transport-agent is not installed.
  Package zimbra-mta which provides mail-transport-agent is to be removed.
 logwatch depends on postfix | mail-transport-agent; however:
  Package postfix is not installed.
  Package mail-transport-agent is not installed.
  Package zimbra-mta which provides mail-transport-agent is to be removed.


apt-cache kind of functions with postfix as the rdepends:

root@zre-ldap004:/home/build# apt-cache rdepends --installed postfix
postfix
Reverse Depends:
 |logwatch
  libsasl2-2
 |cron


so we pick up logwatch in that case.

However, we *still* fail to find mailutils:

root@zre-ldap004:/home/build# apt-cache rdepends --installed default-mta



So the rdepends flag for apt-cache seems to be completely broken for virtual 
packages.

root@zre-ldap004:/home/build# apt-cache showpkg zimbra-mta
Package: zimbra-mta
Versions:
8.7.0.GA.1655.UBUNTU14.64 (/var/lib/dpkg/status)
 Description Language:
 File: /var/lib/dpkg/status
  MD5: b25f6328eb0ffec1cb7bcd41cb0ddc9b


Reverse Depends:
Dependencies:
8.7.0.GA.1655.UBUNTU14.64 - zimbra-core (0 (null)) zimbra-mta-components (0 
(null)) mail-transport-agent (0 (null)) mail-transport-agent:i386 (0 (null)) 
mail-transport-agent (0 (null)) mail-transport-agent:i386 (0 (null))
Provides:
8.7.0.GA.1655.UBUNTU14.64 - mail-transport-agent
Reverse Provides:


root@zre-ldap004:/home/build# apt-cache showpkg logwatch
Package: logwatch
Versions:
7.4.0+svn20130529rev144-1ubuntu1 
(/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_trusty_main_binary-amd64_Packages)
 (/var/lib/dpkg/status)
 Description Language:
 File: 
/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_trusty_main_binary-amd64_Packages
  MD5: ece539a8a87c5f861d7f0b865e42a03c
 Description Language: en
 File: 
/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_trusty_main_i18n_Translation-en
  MD5: ece539a8a87c5f861d7f0b865e42a03c


Reverse Depends:
Dependencies:
7.4.0+svn20130529rev144-1ubuntu1 - perl (0 (null)) postfix (16 (null)) 
mail-transport-agent (0 (null)) fortune-mod (0 (null)) libdate-manip-perl (0 
(null))
Provides:
7.4.0+svn20130529rev144-1ubuntu1 -
Reverse Provides:


root@zre-ldap004:/home/build# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.4 LTS"

root@zre-ldap004:/home/build# apt-cache policy apt
apt:
  Installed: 1.0.1ubuntu2.14
  Candidate: 1.0.1ubuntu2.14
  Version table:
 *** 1.0.1ubuntu2.14 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 1.0.1ubuntu2.13 0
500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
 1.0.1ubuntu2 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

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

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

Title:
  rdepends for apt-cache fails for virtual packages

Status in apt package in Ubuntu:
  New

Bug description:
  Example of problem:

  The zimbra-mta package provides mail-transport-agent.

  Packages that depend on mail-transport-agent are installed
  (mailutils,logwatch).

  apt-cache is unable to list either of those as depending on zimbra-
  mta:

  root@zre-ldap004:/home/build# apt-cache rdepends --installed 
mail-transport-agent
  

  
  aptitude does a little better:

  root@zre-ldap004:/home/build# aptitude why zimbra-mta
  iB  mailutils  Depends  default-mta | mail-transport-agent
  ip  zimbra-mta Provides mail-transport-agent

  
  so it finds mailutils (but not logwatch).  so 50% better than apt-cache

  If we try to remove zimbra-mta, we find:

  root@zre-ldap004:/home/build# dpkg --purge zimbra-mta
  dpkg: dependency problems prevent removal of zimbra-mta:
   mailutils depends on default-mta | mail-transport-agent; however:
Package default-mta is not installed.
 

[Touch-packages] [Bug 1536669] Re: "BottomEdge" component does not support automatic mouse detection

2016-08-24 Thread Lorn Potter
--- 
qtsystems-opensource-src-5.0~git20141206~44f70d99.orig/src/systeminfo/linux/qscreensaver_mir_p.h
+++ 
qtsystems-opensource-src-5.0~git20141206~44f70d99/src/systeminfo/linux/qscreensaver_mir_p.h
@@ -63,7 +63,7 @@ private:
 QScreenSaver * const q_ptr;
 Q_DECLARE_PUBLIC(QScreenSaver)
 
-int m_keepDisplayOnRequest;
+int m_keepDisplayOnRequestId;
 QDBusInterface m_iface;
 };
 


--- 
qtsystems-opensource-src-5.0~git20141206~44f70d99.orig/src/systeminfo/systeminfo.pro
+++ 
qtsystems-opensource-src-5.0~git20141206~44f70d99/src/systeminfo/systeminfo.pro
@@ -67,7 +67,7 @@ linux-*: !simulator: {
  qinputinfo.h \
  linux/qinputinfomanager_p.h
 
-contains(QT_CONFIG, mirclient) {
+config_mir {
 DEFINES += QT_UNITY8
 PRIVATE_HEADERS += linux/qscreensaver_mir_p.h
 SOURCES += linux/qscreensaver_mir.cpp

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

Title:
   "BottomEdge" component does not support automatic mouse detection

Status in Canonical System Image:
  In Progress
Status in Mir:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in qtsystems-opensource-src package in Ubuntu:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  BottomEdge component does not work property with mouse unless you set
  the:

  QuickUtils.mouseAttached  = true

  
  This should be done automatically by SDK.

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

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


[Touch-packages] [Bug 1616614] Re: package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 102

2016-08-24 Thread Seth Arnold
I suggest something like:

sudo dpkg --purge openssh-server
sudo rm -f /etc/rc*/*02ssh /etc/init.d/ssh
sudo apt-get install openssh-server

With the release of 16.04 LTS, some packages, including openssh-server,
are started via systemd unit files rather than the sysv-init
compatibility scripts. Once your sshd is installed again, check the
output of e.g. systemctl list-units '*ssh*'

Thanks

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

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

Title:
  package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 102

Status in openssh package in Ubuntu:
  Invalid

Bug description:
  I was trying to use ssh but it did not seem to be installed. the file
  "/usr/bin/ssh" was installed the init files were missing. I decided to
  add the init.d and rc5.d files. I was still unable to start ssh so I
  decided to just re-install openssh. As you can this did not go well.
  It seems I took careful aim at my foot and shot my kneecap off.

  
  root@sunup:/etc/init.d# apt install openssh-server
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  The following additional packages will be installed:
ncurses-term openssh-sftp-server ssh-import-id
  Suggested packages:
rssh molly-guard monkeysphere
  The following NEW packages will be installed:
ncurses-term openssh-server openssh-sftp-server ssh-import-id
  0 upgraded, 4 newly installed, 0 to remove and 17 not upgraded.
  Need to get 636 kB of archives.
  After this operation, 5,145 kB of additional disk space will be used.
  Do you want to continue? [Y/n] y
  Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 ncurses-term all 
6.0+20160213-1ubuntu1 [249 kB]
  Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
openssh-sftp-server amd64 1:7.2p2-4ubuntu2.1 [38.8 kB]
  Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
openssh-server amd64 1:7.2p2-4ubuntu2.1 [338 kB]
  Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 ssh-import-id all 
5.5-0ubuntu1 [10.2 kB]
  Fetched 636 kB in 1s (406 kB/s)   
  Preconfiguring packages ...
  Selecting previously unselected package ncurses-term.
  (Reading database ... 217890 files and directories currently installed.)
  Preparing to unpack .../ncurses-term_6.0+20160213-1ubuntu1_all.deb ...
  Unpacking ncurses-term (6.0+20160213-1ubuntu1) ...
  Selecting previously unselected package openssh-sftp-server.
  Preparing to unpack .../openssh-sftp-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
  Unpacking openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
  Selecting previously unselected package openssh-server.
  Preparing to unpack .../openssh-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
  Unpacking openssh-server (1:7.2p2-4ubuntu2.1) ...
  Selecting previously unselected package ssh-import-id.
  Preparing to unpack .../ssh-import-id_5.5-0ubuntu1_all.deb ...
  Unpacking ssh-import-id (5.5-0ubuntu1) ...
  Processing triggers for man-db (2.7.5-1) ...
  Processing triggers for systemd (229-4ubuntu7) ...
  Processing triggers for ureadahead (0.100.0-19) ...
  Processing triggers for ufw (0.35-0ubuntu2) ...
  Setting up ncurses-term (6.0+20160213-1ubuntu1) ...
  Setting up openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
  Setting up openssh-server (1:7.2p2-4ubuntu2.1) ...
  Creating SSH2 RSA key; this may take some time ...
  2048 SHA256:ifVt+zEPQJaCEM41tTJ7ioq5Nd+zitMECWf48VxwPYY root@sunup (RSA)
  Creating SSH2 DSA key; this may take some time ...
  1024 SHA256:Ffmc6+U+bC44zWx96s/j1Emff2gXzm7JDtpoDdx7AnM root@sunup (DSA)
  Creating SSH2 ECDSA key; this may take some time ...
  256 SHA256:w0a+E7GIGMKbX8p5Ke5jWVMMwwwdzhMcQrnMrywTHCc root@sunup (ECDSA)
  Creating SSH2 ED25519 key; this may take some time ...
  256 SHA256:VufVRjr+gAaupx7MxVN6khhtBgDIecB48rm6Rc2YQbU root@sunup (ED25519)
  insserv: warning: script is corrupt or invalid: /etc/init.d/../rc5.d/S02ssh
  invoke-rc.d: not a symlink: /etc/rc5.d/S02ssh
  dpkg: error processing package openssh-server (--configure):
   subprocess installed post-installation script returned error exit status 102
  Setting up ssh-import-id (5.5-0ubuntu1) ...
  Processing triggers for ureadahead (0.100.0-19) ...
  Processing triggers for ufw (0.35-0ubuntu2) ...
  Errors were encountered while processing:
   openssh-server
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  #
  1)
  root@sunup:/etc/init.d# lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  2)
  Unable to determine version information.
  3)
  I expected openssh server to be installed.
  4)
  Install of openssh failed (see the above)

  Thank You for your time and effort on my behalf.


[Touch-packages] [Bug 1466812] Re: aa-logprof crash

2016-08-24 Thread Jeff Feng
I'm having same problem in trusty. Using apparmor 2.8.95. Hope the fix
can be in this release as well.

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

Title:
  aa-logprof crash

Status in AppArmor:
  Fix Released
Status in AppArmor 2.9 series:
  Fix Released
Status in apparmor package in Ubuntu:
  Triaged
Status in apparmor source package in Trusty:
  Confirmed

Bug description:
  aa-logprof crash after adding generic profile of apache2.
  Reading log entries from /var/log/syslog.
  Updating AppArmor profiles in /etc/apparmor.d.
  Traceback (most recent call last):
File "/usr/sbin/aa-logprof", line 54, in 
  apparmor.do_logprof_pass(logmark)
File "/usr/lib/python3/dist-packages/apparmor/aa.py", line 2280, in 
do_logprof_pass
  log = log_reader.read_log(logmark)
File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 373, in 
read_log
  self.add_event_to_tree(event)
File "/usr/lib/python3/dist-packages/apparmor/logparser.py", line 278, in 
add_event_to_tree
  rmask = rmask.replace('c', 'w')
  AttributeError: 'set' object has no attribute 'replace'

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: apparmor-utils 2.8.95~2430-0ubuntu5.2
  ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  Date: Fri Jun 19 12:37:54 2015
  InstallationDate: Installed on 2015-04-23 (56 days ago)
  InstallationMedia: Ubuntu-Server 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  ProcKernelCmdline: BOOT_IMAGE=/vmlinuz-3.16.0-30-generic 
root=/dev/mapper/system-root ro
  SourcePackage: apparmor
  Syslog:
   
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1536669] Re: "BottomEdge" component does not support automatic mouse detection

2016-08-24 Thread Lorn Potter
Weird thing is when I load the source into qtcreator and build with same
qmake line (and building mirclient stuff), I don't get segfaults.

I did have to edit source to even get it compiling.
In qscreensaver_mir_p.h there is int m_keepDisplayOnRequest
but it is m_keepDisplayOnRequestId in qscreensaver_mir.cpp 
I don't see how that would even compile when mirclient is enabled

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

Title:
   "BottomEdge" component does not support automatic mouse detection

Status in Canonical System Image:
  In Progress
Status in Mir:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in qtsystems-opensource-src package in Ubuntu:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  BottomEdge component does not work property with mouse unless you set
  the:

  QuickUtils.mouseAttached  = true

  
  This should be done automatically by SDK.

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

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


[Touch-packages] [Bug 1615305] Re: Output when changing comment is weird and badly documented

2016-08-24 Thread Nish Aravamudan
Hello Karol,

Thank you for reporting this issue.

What led you to the "impression that this is not applicable to newer
keys"? The manpage specifically says, as you quoted "This operation is
only supported for RSA1 keys and keys stored in the newer OpenSSH
format." And this, in turn, specifically documents that you need to use
the "newer OpenSSH format" for any non-RSA1 key (afaict). And searching
the `man ssh-keygen` page, one gets:

" For RSA1 keys and keys stored in the newer OpenSSH format, there is also
 a comment field in the key file that is only for convenience to the user
 to help identify the key.  The comment can tell what the key is for, or
 whatever is useful.  The comment is initialized to “user@host” when the
 key is created, but can be changed using the -c option.
"

I agree that the comment being reported as '(null)' is probably a real
bug, but it most likely should be filed upstream if it reproducible with
the latest versions.

In which bug tracker is 811125 that you referred to? It is not an Ubuntu
bug, afaict.

Thanks,
Nish

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

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

Title:
  Output when changing comment is weird and badly documented

Status in openssh package in Ubuntu:
  Incomplete

Bug description:
  Changing a key comment within a private key might not be something you
  do on a daily basis, but it is mostly a frustrating task, since the
  documentation is incomplete and wrong. In particular the man page
  says:

 -c Requests changing the comment in the private and public key 
files.  This operation is only supported for RSA1 keys and keys stored in  the  
newer  OpenSSH
format.  The program will prompt for the file containing the 
private keys, for the passphrase if the key has one, and for the new comment.

  So, one gets the impression that this is not applicable to newer keys.
  However bug #811125 dealt with this, and there was a commit (see [1])
  that added support for basically all key types. In the case of RSA
  keys one has to use the new key format though (-o), which can only be
  find out with trial and error and is not documented at all.

  Furthermore the output of an actual ssh-keygen run is also confusing:

  [kbabioch@antares .ssh]$ ssh-keygen -c -C "new comment" -f id_rsa -o
  Enter passphrase: 
  Key now has comment '(null)'
  The comment in your key file has been changed.

  The output tells me that the key is now empty (null). However the
  comment is correctly set, so while this works as intended, it is
  confusing to the user.

  [1] https://github.com/openssh/openssh-
  portable/commit/4d90625b229cf6b3551d81550a9861897509a65f#diff-
  8a50ef3f3b9ea11be3c3b2fc1c0555b3

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

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


[Touch-packages] [Bug 1615209] Re: ip crashes after a few times adding and removing network namespaces

2016-08-24 Thread Nish Aravamudan
Hello,

Thank you for filing this bug report! I am unable to reproduce this in
16.10, which has the same version of iproute2 currently
(4.3.0-1ubuntu3). Do you have any local configuration that might be
relevant?

Thanks,
Nish

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

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

Title:
  ip crashes after a few times adding and removing network namespaces

Status in iproute2 package in Ubuntu:
  Incomplete

Bug description:
  # which ip
  /sbin/ip
  # valgrind ip netns add black2
  ==22804== Memcheck, a memory error detector
  ==22804== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
  ==22804== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
  ==22804== Command: ip netns add black2
  ==22804== 
  ==22804== Invalid write of size 1
  ==22804==at 0x4031F43: memcpy (in 
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
  ==22804==by 0x8059C83: ??? (in /bin/ip)
  ==22804==by 0x805AF9A: netns_map_init (in /bin/ip)
  ==22804==by 0x805B01F: do_netns (in /bin/ip)
  ==22804==by 0x804DF67: ??? (in /bin/ip)
  ==22804==by 0x804DA11: main (in /bin/ip)
  ==22804==  Address 0x4227094 is 0 bytes after a block of size 28 alloc'd
  ==22804==at 0x402D17C: malloc (in 
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
  ==22804==by 0x8059C5E: ??? (in /bin/ip)
  ==22804==by 0x805AF9A: netns_map_init (in /bin/ip)
  ==22804==by 0x805B01F: do_netns (in /bin/ip)
  ==22804==by 0x804DF67: ??? (in /bin/ip)
  ==22804==by 0x804DA11: main (in /bin/ip)
  ==22804== 
  Cannot create namespace file "/var/run/netns/black2": File exists
  ==22804== 
  ==22804== HEAP SUMMARY:
  ==22804== in use at exit: 28 bytes in 1 blocks
  ==22804==   total heap usage: 2 allocs, 1 frees, 32,824 bytes allocated
  ==22804== 
  ==22804== LEAK SUMMARY:
  ==22804==definitely lost: 0 bytes in 0 blocks
  ==22804==indirectly lost: 0 bytes in 0 blocks
  ==22804==  possibly lost: 0 bytes in 0 blocks
  ==22804==still reachable: 28 bytes in 1 blocks
  ==22804== suppressed: 0 bytes in 0 blocks
  ==22804== Rerun with --leak-check=full to see details of leaked memory
  ==22804== 
  ==22804== For counts of detected and suppressed errors, rerun with: -v
  ==22804== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)

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

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


[Touch-packages] [Bug 1378814] Re: greeter does not properly update infographic after unlock

2016-08-24 Thread Launchpad Bug Tracker
** Branch linked: lp:~tomas-tormo/unity8/bug_1378814

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

Title:
  greeter does not properly update infographic after unlock

Status in Band-aids for Ubuntu Phone:
  In Progress
Status in Canonical System Image:
  Confirmed
Status in unity-greeter package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This bug has been here since forever, but really needs to get cleaned
  up for rtm.

  Steps to reproduce:
  - send 2 text messages
  - lock your phone
  - unlock your phone
  - confirm infographic says "2 text messages sent today"
  - lock your phone for the night and go to sleep
  - unlock your phone the next day

  Expected results:
  - infographic should be cleared, or show relevant information for today

  Actual results:
  - infographic still says "2 text messages sent today"

  When the phone is unlocked the greeter should update the infographic
  text

To manage notifications about this bug go to:
https://bugs.launchpad.net/band-aids-uphone/+bug/1378814/+subscriptions

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


[Touch-packages] [Bug 1536669] Re: "BottomEdge" component does not support automatic mouse detection

2016-08-24 Thread Lorn Potter
comment in #26 was my fault, wrong library path used when it ran fine.

Program received signal SIGSEGV, Segmentation fault.
0x77fa0e30 in QInputInfoManagerPrivate::instance () at qinputinfo.cpp:68
68  if 
(QGuiApplication::platformNativeInterface()->nativeResourceForIntegration("mirconnection"))
(gdb) bt
#0  0x77fa0e30 in QInputInfoManagerPrivate::instance () at 
qinputinfo.cpp:68
#1  0x77fa10fc in QInputInfoManager::QInputInfoManager (this=0x423a50, 
parent=) at qinputinfo.cpp:260
#2  0x00402ec6 in Inputtest::Inputtest (this=0x7fffd4a0, 
parent=) at inputtest.cpp:42
#3  0x00402096 in main (argc=1, argv=) at main.cpp:41

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

Title:
   "BottomEdge" component does not support automatic mouse detection

Status in Canonical System Image:
  In Progress
Status in Mir:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in qtsystems-opensource-src package in Ubuntu:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  BottomEdge component does not work property with mouse unless you set
  the:

  QuickUtils.mouseAttached  = true

  
  This should be done automatically by SDK.

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

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


[Touch-packages] [Bug 1536669] Re: "BottomEdge" component does not support automatic mouse detection

2016-08-24 Thread Lorn Potter
Odd. The first time I built this package on my xenial laptop, inputinfo
crashed, but other builds (clean) it ran fine.

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

Title:
   "BottomEdge" component does not support automatic mouse detection

Status in Canonical System Image:
  In Progress
Status in Mir:
  Fix Released
Status in mir package in Ubuntu:
  Fix Released
Status in qtsystems-opensource-src package in Ubuntu:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  BottomEdge component does not work property with mouse unless you set
  the:

  QuickUtils.mouseAttached  = true

  
  This should be done automatically by SDK.

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

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


[Touch-packages] [Bug 1565245] Re: package dbus 1.10.6-1ubuntu3 failed to install/upgrade: triggers looping, abandoned

2016-08-24 Thread chris pollock
While installing Xfce with Synaptic it stuck at Processing triggers for
dbus (1.10.6-1ubuntu3) and just sat there.

chris@localhost:~$ lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04

chris@localhost:~$ apt-cache policy dbus
dbus:
  Installed: 1.10.6-1ubuntu3
  Candidate: 1.10.6-1ubuntu3
  Version table:
 *** 1.10.6-1ubuntu3 500
500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
100 /var/lib/dpkg/status

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

Title:
  package dbus 1.10.6-1ubuntu3 failed to install/upgrade: triggers
  looping, abandoned

Status in dbus package in Ubuntu:
  Confirmed

Bug description:
  package dbus 1.10.6-1ubuntu3 failed to install/upgrade: triggers
  looping, abandoned

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: dbus 1.10.6-1ubuntu3
  ProcVersionSignature: Ubuntu 4.2.0-34.39-generic 4.2.8-ckt4
  Uname: Linux 4.2.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu1
  Architecture: amd64
  Date: Sat Apr  2 17:51:32 2016
  ErrorMessage: triggers looping, abandoned
  InstallationDate: Installed on 2016-03-18 (15 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1
   apt  1.2.9
  SourcePackage: dbus
  Title: package dbus 1.10.6-1ubuntu3 failed to install/upgrade: triggers 
looping, abandoned
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1616534] Re: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-24 Thread Doobleshaft
Thanks. I'm not sure if this will be possible. I was trying to state but
in my haste typed too quickly that I quit the installer which transfered
me to the "Try Ubuntu" option after I had booted from a 64Gb flash drive
that booted from the ISO downloaded from the Ubuntu site.

Does this mean there is an error in the ISO that needs to be resolved?
I'll attempt it as I do have a persistence file of around 700Mb but such
updates tend not to work in my experience especially if there are
lengthy updates.

As I'm attempting to install though once I have used GParted to get
enough space on the drive I'll do exactly what's recommended once the
install is complete. I assume though that this error won't occur then
anyway though as I won't be running from USB flash drive.

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  Invalid

Bug description:
  I only know that Ubuntu desktop crashed after I decided to quite the
  installer and use GParted to check partitions. Don't know exactly what
  was the desktop was trying to do at the time as the screen went blank.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CasperVersion: 1.376
  Date: Wed Aug 24 16:12:03 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  LiveMediaBuild: It
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1616534/+subscriptions

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


[Touch-packages] [Bug 1378814] Re: greeter does not properly update infographic after unlock

2016-08-24 Thread Tomás Tormo
** Also affects: unity8 (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  greeter does not properly update infographic after unlock

Status in Band-aids for Ubuntu Phone:
  In Progress
Status in Canonical System Image:
  Confirmed
Status in unity-greeter package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This bug has been here since forever, but really needs to get cleaned
  up for rtm.

  Steps to reproduce:
  - send 2 text messages
  - lock your phone
  - unlock your phone
  - confirm infographic says "2 text messages sent today"
  - lock your phone for the night and go to sleep
  - unlock your phone the next day

  Expected results:
  - infographic should be cleared, or show relevant information for today

  Actual results:
  - infographic still says "2 text messages sent today"

  When the phone is unlocked the greeter should update the infographic
  text

To manage notifications about this bug go to:
https://bugs.launchpad.net/band-aids-uphone/+bug/1378814/+subscriptions

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


[Touch-packages] [Bug 1615222] Re: [REGRESSION] Unable to use czech diacritics from czech keyboard for two stroke combinations

2016-08-24 Thread Karl Koerner
I reinstalled ibus, which caused system settings to disappear.  While
mucking about with that an update was announced, but it did not seem to
have anything to do with input bus.  I went ahead an applied it.  To
resolve the system settings issue I reinstalled ubuntu-desktop

$ sudo apt-get install ubuntu-desktop

I then rebooted the laptop.  Unfortunately this did not end up being a
very deterministic approach to troubleshooting this issue.  However,
after reboot, the keyboard is working correctly again.

Teď můžu klavesnici použivat jako dřív.  Mňau!

Something went wrong during the upgrade, but since 16.04 has been out
now a few months, it is probably something peculiar to my system.  You
might want to close this with no change.

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

Title:
  [REGRESSION] Unable to use czech diacritics from czech keyboard for
  two stroke combinations

Status in ibus package in Ubuntu:
  New

Bug description:
  Upgrade REGRESSION

  $ lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  GENERAL DESCRIPTION

  I just upgraded from 15.10 to 16.04 this morning.  Everything seemed
  fine until I opened some translating work in libreoffice.  Trying to
  type the letter combination n with a háček  ˇ + n = ň, for example the
  word "Mňau", I found that whenever I hit the key with the háček symbol
  ˇ the háček automatically appears. In the traditional czech keyboard
  the first stroke of the ˇ should not produce anything until the second
  keystroke e.g. 'n', which will then produce the correct combination ň.
  The most common combinations are available through what would be the
  number keys in an english keyboard, however combinations with some
  consonants and with capital letters require two strokes.

  I also checked this in GVIM and the behaviour is the same.  The first stroke 
on the háček ˇ or the čárka ´ (same key but not shifted) immediately produces 
the character without waiting for the second stroke. I can work around this 
using spellcheck and replacing and then copying the correct combination where 
it might be needed.  However, this has long been working in earlier Ubuntu 
installations even across upgrades from 14.10 to 15.04 and from 15.04 to 15.10. 

 
  WHAT WAS EXPECTED

  Using the háček or čárka key on the czech keyboard [´|ˇ] the system
  would wait for a second keystroke to produce the correct diacritic and
  letter combination, as in the past.

  WHAT HAPPENED INSTEAD

  As soon as the  háček or čárka key was pressed, the diacritic appeared
  before the second keystroke.  The correct combination cannot be made.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: unity 7.4.0+16.04.20160801.2-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.1-0ubuntu2.1
  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: Sat Aug 20 13:10:06 2016
  DistUpgraded: 2016-08-20 11:19:30,354 DEBUG icon theme changed, re-reading
  DistroCodename: xenial
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/compiz
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Broadwell-U Integrated Graphics 
[103c:2249]
  InstallationDate: Installed on 2015-03-20 (518 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  MachineType: Hewlett-Packard HP ProBook 470 G2
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-34-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: Upgraded to xenial on 2016-08-20 (0 days ago)
  dmi.bios.date: 11/27/2014
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: M73 Ver. 01.00
  dmi.board.name: 2249
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 59.19
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrM73Ver.01.00:bd11/27/2014:svnHewlett-Packard:pnHPProBook470G2:pvrA3008DD10B03:rvnHewlett-Packard:rn2249:rvrKBCVersion59.19:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 470 G2
  dmi.product.version: A3008DD10B03
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+16.04.20160801.3-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-

[Touch-packages] [Bug 1616634] [NEW] Having trouble booting ubuntu

2016-08-24 Thread Marius
Public bug reported:

when i boot xubuntu i just get a black screen, then i have to shut down
by holding down the power button an i can then turn on and boot
properly.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: XFCE
Date: Wed Aug 24 23:14:33 2016
InstallationDate: Installed on 2016-08-21 (3 days ago)
InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: xorg (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 xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1616634

Title:
  Having trouble booting ubuntu

Status in xorg package in Ubuntu:
  New

Bug description:
  when i boot xubuntu i just get a black screen, then i have to shut
  down by holding down the power button an i can then turn on and boot
  properly.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Wed Aug 24 23:14:33 2016
  InstallationDate: Installed on 2016-08-21 (3 days ago)
  InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1270189] Re: Ubuntu Touch devices are using cellular DNS servers over wifi connection

2016-08-24 Thread Cédric Bellegarde
Same here on MX4 with OTA12...

No DNS while connected to my wifi

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

Title:
  Ubuntu Touch devices are using cellular DNS servers over wifi
  connection

Status in Canonical System Image:
  Confirmed
Status in network-manager package in Ubuntu:
  Confirmed
Status in network-manager package in Ubuntu RTM:
  New

Bug description:
  On my Nexus 4, build 121 with TMobile, when I am on wifi, I correctly
  get a 192.168 ip and DNS entries for this network (on wlan0) -- fine.
  When I am in range of cellular data, I get an ip address from TMobile
  and am given DNS entries that aren't on the same network as the
  TMobile ip address (on rmnet_usb0). The problem is, the DNS entries
  from TMobile are preferred over the ones from the wifi network such
  that while wlan0 is correctly setup as the default route, DNS queries
  are being made to the TMobile DNS servers over wlan0 because there are
  no explicit routes to these servers. This is problematic because the
  remote DNS server may not respond to queries coming from out of
  network or site policy may disallow the use of foreign DNS servers--
  both of which result in slow (or possibly failing) DNS queries since
  the cellular DNS is checked first. Also, where it did work, these
  queries could incur charges when the user is intending to use only
  wifi. In the case of (at least) TMobile, this could be a security
  concern because the well-known TMobile DNS servers are on the private
  '10.' network, which opens the possibility for a rogue DNS server to
  be on the private wifi network with this ip address.

  This could be fixed in (at least) four ways:
   1) when on wifi, don't merge the DNS servers on cellular networks at all 
which forces the device to use the ones available on the site (wlan0). This is 
guaranteed to not incur changes
   2) when on wifi, merge the DNS server from the cellular network, but add 
them after the ones on the wifi network. This will try the site's DNS first and 
only if they fail, fallback to the cellular DNS. This may incur charges under 
certain circumstances
   3) add an explicit route to the cellular DNS servers through rmnet_usb0. 
This will bypass the site DNS with all queries going through cellular DNS. This 
will incur charges and would make the device unable to resolve site-local names.
   4) same as '2', but also add explicit routes for the cellular name servers. 
This should only incur charges if wifi DNS fails

  I think '3' is out. '2' and '4' seems most intuitive (with '4' perhaps
  most correct). '1' seems also ok.

  # netstat -rn
  Kernel IP routing table
  Destination Gateway Genmask Flags   MSS Window  irtt Iface
  0.0.0.0 192.168.x.1 0.0.0.0 UG0 0  0 wlan0
  100.152.35.128  0.0.0.0 255.255.255.252 U 0 0  0 
rmnet_usb0
  192.168.x.0 0.0.0.0 255.255.255.0   U 0 0  0 wlan0

   Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  Auto-activating 
connection '/310260575949457/context1'.
  Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) starting connection '/310260575949457/context1'
  Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  (/ril_0): device 
state change: disconnected -> prepare (reason 'none') [30 40 0]
  Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 1 of 5 (Device Prepare) scheduled...
  Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 1 of 5 (Device Prepare) started...
  Jan 17 07:36:38 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 1 of 5 (Device Prepare) complete.
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  (/ril_0): IPv4 
static configuration:
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:address 
100.152.35.130/30
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:DNS 10.177.0.34
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:DNS 
10.168.183.116
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 2 of 5 (Device Configure) scheduled...
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 2 of 5 (Device Configure) starting...
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  (/ril_0): device 
state change: prepare -> config (reason 'none') [40 50 0]
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 2 of 5 (Device Configure) successful.
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 3 of 5 (IP Configure Start) scheduled.
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 2 of 5 (Device Configure) complete.
  Jan 17 07:36:41 ubuntu-phablet NetworkManager[1130]:  Activation 
(/ril_0) Stage 3 o

[Touch-packages] [Bug 1616628] [NEW] [S1-PDGJG, Realtek ALC880, speakers no sound

2016-08-24 Thread Henning
Public bug reported:

hello my name is henning i german (sorry i cant no write english)

my internes speakers no sound and headfones is ok

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic i686
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  henub  2913 F pulseaudio
CurrentDesktop: Unity
Date: Wed Aug 24 22:26:18 2016
InstallationDate: Installed on 2015-08-12 (378 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release i386 (20150218.1)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_DE
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_Card: Internes Audio - HDA Intel
Symptom_Jack: Line Out, Internal
Symptom_Type: No auto-mute between outputs
Title: [S1-PDGJG, Realtek ALC880, Line Out, Internal] No automute
UpgradeStatus: Upgraded to xenial on 2016-08-12 (11 days ago)
dmi.bios.date: 09/26/2006
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: RKYWSF1E
dmi.board.name: ROCKY
dmi.board.vendor: LG Electronics
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LG Electronics
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrRKYWSF1E:bd09/26/2006:svnLGElectronics:pnS1-PDGJG:pvrNotApplicable:rvnLGElectronics:rnROCKY:rvrNotApplicable:cvnLGElectronics:ct10:cvrN/A:
dmi.product.name: S1-PDGJG
dmi.product.version: Not Applicable
dmi.sys.vendor: LG Electronics

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


** Tags: apport-bug i386 xenial

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

Title:
  [S1-PDGJG, Realtek ALC880, speakers no sound

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  hello my name is henning i german (sorry i cant no write english)

  my internes speakers no sound and headfones is ok

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  henub  2913 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Aug 24 22:26:18 2016
  InstallationDate: Installed on 2015-08-12 (378 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release i386 
(20150218.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=de_DE
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_Card: Internes Audio - HDA Intel
  Symptom_Jack: Line Out, Internal
  Symptom_Type: No auto-mute between outputs
  Title: [S1-PDGJG, Realtek ALC880, Line Out, Internal] No automute
  UpgradeStatus: Upgraded to xenial on 2016-08-12 (11 days ago)
  dmi.bios.date: 09/26/2006
  dmi.bios.vendor: Phoenix Technologies LTD
  dmi.bios.version: RKYWSF1E
  dmi.board.name: ROCKY
  dmi.board.vendor: LG Electronics
  dmi.board.version: Not Applicable
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LG Electronics
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrRKYWSF1E:bd09/26/2006:svnLGElectronics:pnS1-PDGJG:pvrNotApplicable:rvnLGElectronics:rnROCKY:rvrNotApplicable:cvnLGElectronics:ct10:cvrN/A:
  dmi.product.name: S1-PDGJG
  dmi.product.version: Not Applicable
  dmi.sys.vendor: LG Electronics

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1616628/+subscriptions

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


[Touch-packages] [Bug 1616534] Re: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-24 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  The version of update-initramfs that you likely have
installed is unable to work on a persistent usb stick.  You can resolve
this issue by upgrading the version of casper on your system. This can
be done via the commands:

sudo apt-get update; sudo apt-get install casper

Then performing the software update or installation that you were
originally trying.  If this does not resolve your bug please set its
status back to New.  Thanks in advance!

** Tags added: needs-new-casper

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Invalid

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

Title:
  package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in initramfs-tools package in Ubuntu:
  Invalid

Bug description:
  I only know that Ubuntu desktop crashed after I decided to quite the
  installer and use GParted to check partitions. Don't know exactly what
  was the desktop was trying to do at the time as the screen went blank.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: initramfs-tools 0.122ubuntu8.1
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CasperVersion: 1.376
  Date: Wed Aug 24 16:12:03 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  LiveMediaBuild: It
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.12~ubuntu16.04.1
  SourcePackage: initramfs-tools
  Title: package initramfs-tools 0.122ubuntu8.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1616534/+subscriptions

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


[Touch-packages] [Bug 1616614] Re: package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 102

2016-08-24 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 102

Status in openssh package in Ubuntu:
  New

Bug description:
  I was trying to use ssh but it did not seem to be installed. the file
  "/usr/bin/ssh" was installed the init files were missing. I decided to
  add the init.d and rc5.d files. I was still unable to start ssh so I
  decided to just re-install openssh. As you can this did not go well.
  It seems I took careful aim at my foot and shot my kneecap off.

  
  root@sunup:/etc/init.d# apt install openssh-server
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  The following additional packages will be installed:
ncurses-term openssh-sftp-server ssh-import-id
  Suggested packages:
rssh molly-guard monkeysphere
  The following NEW packages will be installed:
ncurses-term openssh-server openssh-sftp-server ssh-import-id
  0 upgraded, 4 newly installed, 0 to remove and 17 not upgraded.
  Need to get 636 kB of archives.
  After this operation, 5,145 kB of additional disk space will be used.
  Do you want to continue? [Y/n] y
  Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 ncurses-term all 
6.0+20160213-1ubuntu1 [249 kB]
  Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
openssh-sftp-server amd64 1:7.2p2-4ubuntu2.1 [38.8 kB]
  Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
openssh-server amd64 1:7.2p2-4ubuntu2.1 [338 kB]
  Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 ssh-import-id all 
5.5-0ubuntu1 [10.2 kB]
  Fetched 636 kB in 1s (406 kB/s)   
  Preconfiguring packages ...
  Selecting previously unselected package ncurses-term.
  (Reading database ... 217890 files and directories currently installed.)
  Preparing to unpack .../ncurses-term_6.0+20160213-1ubuntu1_all.deb ...
  Unpacking ncurses-term (6.0+20160213-1ubuntu1) ...
  Selecting previously unselected package openssh-sftp-server.
  Preparing to unpack .../openssh-sftp-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
  Unpacking openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
  Selecting previously unselected package openssh-server.
  Preparing to unpack .../openssh-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
  Unpacking openssh-server (1:7.2p2-4ubuntu2.1) ...
  Selecting previously unselected package ssh-import-id.
  Preparing to unpack .../ssh-import-id_5.5-0ubuntu1_all.deb ...
  Unpacking ssh-import-id (5.5-0ubuntu1) ...
  Processing triggers for man-db (2.7.5-1) ...
  Processing triggers for systemd (229-4ubuntu7) ...
  Processing triggers for ureadahead (0.100.0-19) ...
  Processing triggers for ufw (0.35-0ubuntu2) ...
  Setting up ncurses-term (6.0+20160213-1ubuntu1) ...
  Setting up openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
  Setting up openssh-server (1:7.2p2-4ubuntu2.1) ...
  Creating SSH2 RSA key; this may take some time ...
  2048 SHA256:ifVt+zEPQJaCEM41tTJ7ioq5Nd+zitMECWf48VxwPYY root@sunup (RSA)
  Creating SSH2 DSA key; this may take some time ...
  1024 SHA256:Ffmc6+U+bC44zWx96s/j1Emff2gXzm7JDtpoDdx7AnM root@sunup (DSA)
  Creating SSH2 ECDSA key; this may take some time ...
  256 SHA256:w0a+E7GIGMKbX8p5Ke5jWVMMwwwdzhMcQrnMrywTHCc root@sunup (ECDSA)
  Creating SSH2 ED25519 key; this may take some time ...
  256 SHA256:VufVRjr+gAaupx7MxVN6khhtBgDIecB48rm6Rc2YQbU root@sunup (ED25519)
  insserv: warning: script is corrupt or invalid: /etc/init.d/../rc5.d/S02ssh
  invoke-rc.d: not a symlink: /etc/rc5.d/S02ssh
  dpkg: error processing package openssh-server (--configure):
   subprocess installed post-installation script returned error exit status 102
  Setting up ssh-import-id (5.5-0ubuntu1) ...
  Processing triggers for ureadahead (0.100.0-19) ...
  Processing triggers for ufw (0.35-0ubuntu2) ...
  Errors were encountered while processing:
   openssh-server
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  #
  1)
  root@sunup:/etc/init.d# lsb_release -rd
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  2)
  Unable to determine version information.
  3)
  I expected openssh server to be installed.
  4)
  Install of openssh failed (see the above)

  Thank You for your time and effort on my behalf.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: openssh-server 1:7.2p2-4ubuntu2.1
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  Date: Wed Aug 24 14:28:32 2016
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 102
  InstallationDate: Installed on 2016-06-09

[Touch-packages] [Bug 1598300] Re: cups hang after a while

2016-08-24 Thread Till Kamppeter
Please follow the instructions of the section "CUPS error_log" on
https://wiki.ubuntu.com/DebuggingPrintingProblems. Thanks.

** Changed in: cups (Ubuntu)
   Status: Confirmed => Incomplete

-- 
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 hang after a while

Status in cups package in Ubuntu:
  Incomplete

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.

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 1616614] [NEW] package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 102

2016-08-24 Thread Roger Campbell
Public bug reported:

I was trying to use ssh but it did not seem to be installed. the file
"/usr/bin/ssh" was installed the init files were missing. I decided to
add the init.d and rc5.d files. I was still unable to start ssh so I
decided to just re-install openssh. As you can this did not go well. It
seems I took careful aim at my foot and shot my kneecap off.


root@sunup:/etc/init.d# apt install openssh-server
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following additional packages will be installed:
  ncurses-term openssh-sftp-server ssh-import-id
Suggested packages:
  rssh molly-guard monkeysphere
The following NEW packages will be installed:
  ncurses-term openssh-server openssh-sftp-server ssh-import-id
0 upgraded, 4 newly installed, 0 to remove and 17 not upgraded.
Need to get 636 kB of archives.
After this operation, 5,145 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 ncurses-term all 
6.0+20160213-1ubuntu1 [249 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 
openssh-sftp-server amd64 1:7.2p2-4ubuntu2.1 [38.8 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssh-server 
amd64 1:7.2p2-4ubuntu2.1 [338 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 ssh-import-id all 
5.5-0ubuntu1 [10.2 kB]
Fetched 636 kB in 1s (406 kB/s)   
Preconfiguring packages ...
Selecting previously unselected package ncurses-term.
(Reading database ... 217890 files and directories currently installed.)
Preparing to unpack .../ncurses-term_6.0+20160213-1ubuntu1_all.deb ...
Unpacking ncurses-term (6.0+20160213-1ubuntu1) ...
Selecting previously unselected package openssh-sftp-server.
Preparing to unpack .../openssh-sftp-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
Unpacking openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
Selecting previously unselected package openssh-server.
Preparing to unpack .../openssh-server_1%3a7.2p2-4ubuntu2.1_amd64.deb ...
Unpacking openssh-server (1:7.2p2-4ubuntu2.1) ...
Selecting previously unselected package ssh-import-id.
Preparing to unpack .../ssh-import-id_5.5-0ubuntu1_all.deb ...
Unpacking ssh-import-id (5.5-0ubuntu1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for systemd (229-4ubuntu7) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Setting up ncurses-term (6.0+20160213-1ubuntu1) ...
Setting up openssh-sftp-server (1:7.2p2-4ubuntu2.1) ...
Setting up openssh-server (1:7.2p2-4ubuntu2.1) ...
Creating SSH2 RSA key; this may take some time ...
2048 SHA256:ifVt+zEPQJaCEM41tTJ7ioq5Nd+zitMECWf48VxwPYY root@sunup (RSA)
Creating SSH2 DSA key; this may take some time ...
1024 SHA256:Ffmc6+U+bC44zWx96s/j1Emff2gXzm7JDtpoDdx7AnM root@sunup (DSA)
Creating SSH2 ECDSA key; this may take some time ...
256 SHA256:w0a+E7GIGMKbX8p5Ke5jWVMMwwwdzhMcQrnMrywTHCc root@sunup (ECDSA)
Creating SSH2 ED25519 key; this may take some time ...
256 SHA256:VufVRjr+gAaupx7MxVN6khhtBgDIecB48rm6Rc2YQbU root@sunup (ED25519)
insserv: warning: script is corrupt or invalid: /etc/init.d/../rc5.d/S02ssh
invoke-rc.d: not a symlink: /etc/rc5.d/S02ssh
dpkg: error processing package openssh-server (--configure):
 subprocess installed post-installation script returned error exit status 102
Setting up ssh-import-id (5.5-0ubuntu1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Errors were encountered while processing:
 openssh-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

#
1)
root@sunup:/etc/init.d# lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04
2)
Unable to determine version information.
3)
I expected openssh server to be installed.
4)
Install of openssh failed (see the above)

Thank You for your time and effort on my behalf.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: openssh-server 1:7.2p2-4ubuntu2.1
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Wed Aug 24 14:28:32 2016
ErrorMessage: subprocess installed post-installation script returned error exit 
status 102
InstallationDate: Installed on 2016-06-09 (75 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.12~ubuntu16.04.1
SourcePackage: openssh
Title: package openssh-server 1:7.2p2-4ubuntu2.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 102
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

-- 
You received this bug notification because you are a mem

[Touch-packages] [Bug 1598300] Re: cups hang after a while

2016-08-24 Thread Janne Paalijarvi
I have exactly the same thing on 16.04 LTS with the minimal virtual machine 
install. I run the whole thing on ESXi 5.5 something. 
Status:


root@printserver:/var/log/cups# service cups status
● cups.service - CUPS Scheduler
   Loaded: loaded (/lib/systemd/system/cups.service; enabled; vendor preset: ena
   Active: inactive (dead) since Wed 2016-08-24 22:44:57 EEST; 12min ago
 Docs: man:cupsd(8)
  Process: 2177 ExecStart=/usr/sbin/cupsd -l (code=exited, status=0/SUCCESS)
 Main PID: 2177 (code=exited, status=0/SUCCESS)

Aug 24 22:38:23 printserver systemd[1]: Started CUPS Scheduler.


No mention of any abnormalities in any logs whatsoever. I'm afraid I need to go 
back to 14.04 LTS for this virtual machine.

-- 
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 hang after a while

Status in cups package in Ubuntu:
  Incomplete

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.

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 1598300] Re: cups hang after a while

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

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

-- 
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 hang after a while

Status in cups package in Ubuntu:
  Confirmed

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.

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 1616600] Re: Microsoft™ Windows Live Support +1 (888) 990-8801

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  Microsoft™ Windows Live Support +1 (888) 990-8801

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  Microsoft™ Windows Live Support   +1 888-990-8801
  Microsoft™ Live Support | Windows Live Support | Windows Vista Support | 
Windows 7 Support | Windows 8 Support | Windows 10 Support | Windows XP Support 
| Microsoft™ Live Support Number
  windows live tech support phone number, windows live technical support, 
windows live mail technical support, windows live mail tech support, windows 
live mail tech support phone number, windows live support, windows live support 
number, windows live mail support number, windows live support phone number, 
windows live one care support phone number, windows live messenger support 
contact, windows live one care support phone number, office live support phone 
number, microsoft support phone number, windows live support phone number, 
Microsoft office live support, microsoft live support email, microsoft office 
live support, microsoft live support phone, microsoft live support number, 
microsoft windows live support, microsoft windows update support, microsoft 
windows live support phone number, microsoft windows live support phone number, 
microsoft window vista support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, windows live support, windows live 
support, windows live support, microsoft live support number, microsoft windows 
live support, microsoft windows update support, microsoft windows live support 
phone number, microsoft windows live support phone number, microsoft window 
vista support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, 
  windows live tech support phone number, windows live technical support, 
windows live mail technical support, windows live mail tech support, windows 
live mail tech support phone number, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support,

[Touch-packages] [Bug 1616598] Re: +1 (888) 990-8801 Thunderbird Support Number

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  +1 (888)  990-8801  Thunderbird Support Number

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  +1 888-990-8801
   

  Has a variety of troubleshooting articles that help install, resolve and 
configure Thunderbird
  Mozilla Thunderbird Support | Mozilla Thunderbird Help | Mozilla Thunderbird 
Problems | Mozilla Thunderbird Assistance | Thunderbird Support Number | 
Thunderbird Exchange Support | Thunderbird Support Exchange | Thunderbird Help 
Desk Phone Number | Thunderbird Helpline |
  Thunderbird technical help contact number, thunderbird technical support 
contact number, thunderbird contact number,% thunderbird contact phone number, 
thunderbird contact telephone number, thunderbird 24 hour contact number, 
thunderbird customer support contact number, thunderbird customer service 
contact number, thunderbird official number, thunderbird official contact 
number, thunderbird 800 contact number, thunderbird toll free number, 800 
number for thunderbird tech support, thunderbird 24/7 support phone number 
thunderbird antivirus  support phone number,thunderbird antivirus  support 
phone number,thunderbird antivirus help phone number, thunderbird antivirus  
technical support number., thunderbird antivirus support number, thunderbird 
antivirus phone number, thunderbird antivirus tech supportnumber, thunderbird 
antivirus  customer support number, thunderbird antivirus customer support 
phone number, thunderbird antivirus  customer service phone number, thunderbird 
antivirus p
 ayroll customer service phone number, thunderbird antivirus  support phone 
number, help call 1 (888) 990-8801.thunderbird 24/7 support phone 
number,thunderbird telephone number for support? call 1 (888) 990-8801 
thunderbird contact number, thunderbird contact phone number, thunderbird 
contact telephone number,telephone number for thunderbird online support, 
thunderbird official support number,thunderbird official number,thunderbird 
payroll official phone number,phone number for thunderbird payroll 
support,thunderbird 24/7 support phone number, thunderbird tech 
supportnumber,thunderbird telephone number for support thunderbird phone 
number, thunderbird tech support phone number, mozilla support number, 
thunderbird support ending,thunderbird email support number, thunderbird 
support phone number, thunderbird support hotline. Thunderbird technical help 
contact number, thunderbird technical support contact number, thunderbird 
contact number, thunderbird contact phone number, thunderbird
  contact telephone number, thunderbird 24 hour contact number, thunderbird 
customer support contact number, thunderbird customer service contact number, 
thunderbird official number, thunderbird official contact number, thunderbird 
800 contact number, thunderbird toll free number, 800 number for thunderbird 
tech support, thunderbird 24/7 support phone number thunderbird antivirus  
support phone number,thunderbird antivirus  support phone number,thunderbird 
antivirus help phone number, thunderbird antivirus  technical support number., 
thunderbird antivirus support number, thunderbird antivirus phone number, 
thunderbird antivirus tech supportnumber, thunderbird antivirus  customer 
support number, thunderbird antivirus customer support phone number, 
thunderbird antivirus  customer service phone number, thunderbird antivirus 
payroll customer service phone number, thunderbird antivirus  support phone 
number, help call 1 (888) 990-8801.thunderbird 24/7 support phone 
number,thunderbird tele
 phone number for support? call 1 (888) 990-8801 thunderbird contact number, 
thunderbird contact phone number, thunderbird contact telephone 
number,telephone number for thunderbird online support, thunderbird official 
support number,thunderbird official number,thunderbird payroll official phone 
number,phone number for thunderbird payroll support,thunderbird 24/7 support 
phone number, thunderbird tech supportnumber,thunderbird telephone number for 
support thunderbird phone number, thunderbird tech support phone number, 
mozilla support number, thunderbird support ending,thunderbird email support 
number, thunderbird support phone number, thunderbird support hotline, 
Thunderbird technical help contact number, thunderbird technical support 
contact number, thunderbird contact number, thunderbird contact phone number, 
thunderbird contact telephone number, thunderbird 24 hour contact number, 
thunderbird customer support contact number, thunderbird customer service 
contact number, thunderbird
  official number, thunderbird official contact number, thunderbird 800 contact 
number, thunderbird toll free number, 800 number for thunderbird tech support, 
thunderbird 24/

[Touch-packages] [Bug 1616602] Re: +1 888-990-8801 Lenovo™ Products Support

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  +1 888-990-8801 Lenovo™ Products Support

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  +1 888-990-8801 Lenovo™ Products Support
  Lenovo™ Laptop Support | Lenovo™ Computer Support | Lenovo™ ThinkPad Support 
| Lenovo™ Help | Lenovo™ Laptop Help | Lenovo™ Printer Support | Lenovo™ 
Printer Help | Contact Lenovo™ Help.
  Need help? Why Choose Lenovo™ Support
  Problems with your computer, home network, software, or technology in 
general, can be very frustrating. Lenovo Services Premium Support is here to 
help, with best-in-class skills, technology, and processes to solve the problem 
right the first time and save you time and hassle.
  Experience the Lenovo Services Premium Support advantage.

  Call us at +1-888-990-8801 or Chat with an expert now or any day of the week.
  We having a go Lenovo yoga tech support number, Lenovo support, Lenovo 
customer service, Lenovo tech support, Lenovo support number1(888) 990-8801, 
Lenovo customer support1(888) 990-8801, support Lenovo, Lenovo tech support 
number, 1(888) 990-8801  Lenovo customer service number, Lenovo technical 
support phone number 1(888) 990-8801, Lenovo support phone number1(888) 
990-8801, Lenovo phone number, Lenovo help, 1(888) 990-8801  &Lenovo support 
chat, @ Lenovo customer support number, Lenovo laptop support, Lenovo customer 
service phone number, @ Lenovo customer care number,  Lenovo help desk, Lenovo 
com support1(888) 990-8801, Lenovo customer support phone number, lenova 
support, contact Lenovo support, Lenovo phone support, Lenovo computer support, 
Lenovo support phone, Lenovo help number, Lenovo technical support chat, 1(888) 
990-8801 & Lenovo tech support phone number usa, Lenovo contact support, Lenovo 
pc support, Lenovo online support, Lenovo tech support live chat@, Lenovo 
support contact, lenevo support, &Lenovo customer care phone number, 1(888) 
990-8801  Lenovo laptop support phone number, Lenovo support number us, contact 
Lenovo tech support, Lenovo live chat support, 1(888) 990-8801  @ Lenovo laptop 
technical support phone number, & Lenovo help phone number, @ Lenovo customer 
service phone, Lenovo us support number, Lenovo support contact number, Lenovo 
canada support, thinkpad support number, & Lenovo support telephone number, 
Lenovo 1800 number, Lenovo support phone number usa, 1(888) 990-8801  Lenovo 
service phone number, @ Lenovo support canada, Lenovo business support phone 
number, @Lenovo help desk phone number, 1(888) 990-8801  Lenovo computer tech 
support, @Lenovo computer support phone number, Lenovo tech support number usa, 
Lenovo help support, thinkpad support phone number, @ Lenovo support number 
usa, Lenovo contact support number, 1(888) 990-8801 @ Lenovo support usa phone 
number, 1(888) 990-8801  Lenovo customer care support, 1(888) 990-8801  Lenovo 
support hotline, Lenovo thinkpad support, Lenovo t61 support, Lenovo laptop 
support phone number, Lenovo tech support phone number, Lenovo thinkpad t60 
support, Lenovo thinkpad support phone number, Lenovo thinkpad support number, 
Lenovo thinkpad t61 support, Lenovo thinkpad support phone number, Lenovo 
thinkpad t60 support, Lenovo thinkpad t61 support, Lenovo thinkpad support 
phone number, Lenovo laptop support phone number, 
  Our Expert Technicians provides one of the best   tech support for Lenovo 
support.  Expert technician and they can resolve your issue and we are 
providing Lenovo tech support telephone number 24*7 . Our services are 
technical support Lenovo yoga tech support number, 1(888) 990-8801  Lenovo 
support, @ Lenovo customer service, 1(888) 990-8801  @ Lenovo tech support, 
1(888) 990-8801  Lenovo support number, Lenovo customer support, 1(888) 
990-8801  support Lenovo, Lenovo tech support number, Lenovo customer service 
number, 1(888) 990-8801  Lenovo technical support phone number, 1(888) 990-8801 
 Lenovo support phone number, Lenovo phone number, Lenovo help1(888) 990-8801, 
Lenovo support chat, Lenovo customer support number, 1(888) 990-8801  Lenovo 
laptop support, Lenovo customer service phone number, 1(888) 990-8801  Lenovo 
customer care number, 1(888) 990-8801   Lenovo help desk, 1(888) 990-8801  
Lenovo com support, 1(888) 990-8801  Lenovo customer support phone number, 
lenova support, contact Lenovo support, 1(888) 990-8801 1(888) 990-8801  Lenovo 
phone support, Lenovo computer support, Lenovo support phone, Lenovo help 
number, Lenovo technical support chat, 1(888) 990-8801  Lenovo tech support 
phone number usa, Lenovo contact support, Lenovo pc support, Lenovo online 
support, Lenovo tech support live chat, Lenovo support contact, lenevo support, 
Lenovo customer care phone number, Lenovo laptop support phone nu

[Touch-packages] [Bug 1616603] Re: +1 (888) 990-8801 Dell™ Product Support

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  +1 (888)  990-8801  Dell™ Product Support

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  +1 888-990-8801 Dell™ Product Support

  Dell™ Laptop Support | Dell™ Laptop Help | Dell™ Printer Support | Dell™ 
Products Support Center | Dell™ Latitude Support | Dell™ Computer Support | 
Dell™ Product Help | Dell™ Product Assistance | Dell™ Help |
  Call technical support if you would like our friendly agents to help you 
resolve an issue with your order. You’ll find the phone numbers for our support 
teams below. Remote monitoring and automated, proactive support.
  dell pro support contact, dell pro support plus for client, dell prosupport 
plus phone number, dell prosupport plus for pcs and tablets, dell prosupport 
plus service, dell prosupport plus mission critical, dell prosupport plus pdf, 
dell gold support phone number, dell laptop support number, dell laptop support 
chat, dell laptop support center, dell laptop support drivers, dell support, 
dell laptop stand, dell laptop accessories, dell latitude support, dell laptop 
support, dell computer support, dell help, dell laptop help, dell helpline 
number, dell number, dell help center, dell latitude help, contact dell 
support, call dell support, dell laptop support phone number, dell laptop 
support number uk, dell server support, dell server support, dell computer help 
phone number, dell gold support number, dell technical support phone number, 
dell technical support phone number united states, dell tech support, dell 
technical support chat, dell support, dell technical support phone number for 
laptops, dell tech support, dell pro support number, dell phone number, dell 
technical support phone number, dell customer support, computer maintenance, 
dell Canada, call dell support, conact dell support, contact dell support, 
computer repair services, dell support number, dell service, dell pro support, 
dell tech support number, dell support phone number, dell driver support, dell 
support drivers, support dell, dell warranty support, dell customer number, 
dell product key, dell official website, dell support, dell laptop service 
center, dell suppor, dell corporation, dell support, dell driver detect, dell 
alienware support, dell support center, dell drivers and support, dell support 
download, dell support and drivers, dell contact us, del support, dell official 
site, dell support com, dell pro support phone number, dell call center, dell 
support, dell software support, dell auto detect, dell suppot, dell support, 
dell laptop repair center, dell customer care number, dell telephone number, 
dell computer service, dell customer service phone number, delll support, dell 
business support number, dell premium support, dell number, dell contact, 
contact dell, dell computer help, call dell support, dell gold support, dell 
customer support phone number, dell troubleshooting, dell laptop customer 
service, dell support phone, dell repair center, phone number for dell 
computers, dell help desk, dell laptop support phone number, dell com support 
drivers, dell service number, dell printer support number, dell support email, 
dell server support phone number, dell help number, dell contact number, call 
dell technical support, dell printer customer support phone, call dell, dell 
monitor support, dell printer customer service phone, dell authorized service 
center, dell computer corporation, dell phone support, dell computer 
troubleshooting, dell computer support number, dell computer technical support, 
dell contact support, dell laptop troubleshooting, dell help and support, dell 
server warranty, dell customer support number, dell product support, contact 
dell technical support, dell computer phone number, call dell computers, dell 
online, dell printer support phone number, dell 800 number, dell tech, dell 
laptop technical support, dell computer repair, dell xps support, dell warranty 
phone number, phone number for dell, dell laptop repair, dell laptop help, dell 
printer tech support phone number, dell inspiron support, contact dell support, 
dell computer customer service, dell server support, dell business support, 
dell desktop problems, dell customer number lookup, fix my dell, dell computers 
customer service, dell repair service center, dell com customer service phone, 
dell phone technical support, phone number to dell, dell service number lookup, 
contacting dell, dell maintenance support, dell support telephone, dell 
alienware support phone number, dell business technical support number, fix 
dell laptop, my dell support center, dell xps customer support, my dell printer 
will not print, dell computer sales phone number, certified

[Touch-packages] [Bug 1616606] Re: +1 888-990-8801 Dell™ Help Support

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  +1 888-990-8801 Dell™ Help Support

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  +1 888-990-8801DELL™ PRODUCTS SUPPORT SERVICE
   Dial now 1(888) 990-8801. We are premium tech support provider 24*7*365. 
Call and get support for all products. We are here to help you.  dell support 
numberIs 1 888-990-8801, dell tech supportIs  1 888-990-8801, dell support 
phone numberIs  1 888-990-8801, dell customer support,^^ dell phone number, 
dell contact, dell tech support number, support dell, dell contact numberIs  1 
888-990-8801, dell technical support phone number,goo.gl/YkEXEwcontent_copydell 
help, dell online support, dell number, dell laptop support Is  1 888-990-8801, 
contact dell support, ontact dell, dell product support, dell helpline, dell 
service number, call dell, dell support contact number Is  1 888-990-8801, dell 
customer care number Is  1 888-990-8801, dell phone support, 
  
===
  dell tech support chat Is  1 888-990-8801, ^^call dell support, dell help 
number, dell support chat, dell customer care phone number, dell customer 
support phone number, dell 800 number, dell telephone number, dell laptop 
customer care number Is  1 888-990-8801, dell computer support phone number, 
dell support phone, dell computer phone number,^^ dell contact support, dell 
support laptop, dell computer technical support, dell inspiron support Is  1 
888-990-8801, dell support online, dell telephone support, dell computer help, 
dell pc support Is  1 888-990-8801, dell xps support, dell laptop support phone 
number, dell chat support, dell service phone number, dell it support, dell 
helpline number, phone number for dell Is  1 888-990-8801, dell customer 
number, dell tech support phone, dell gold support Is  1 888-990-8801, contact 
dell customer service, technical support dell, phone number for dell support, 
dell support telephone number, contact dell technical support Is  1 
888-990-8801, dell help phone number, dell laptop support number, dell 
troubleshooting Is  1 888-990-8801, dell computer support number, dell contact 
phone number,goo.gl/YkEXEwcontent_copy call dell technical support, dell laptop 
help, dell support center phone number Is  1 888-990-8801, dell online tech 
support, dell technical service, phone number for dell computers, dell help and 
support, ^^dell computer customer service number Is  1 888-990-8801, dell 
computer customer service phone number Is  1 888-990-8801,^^ dell computer 
technical support phone number, dell desktop support, support for dell, dell 
business tech support Is  1 888-990-8801, 
  
=
  Call on our toll free number 1(888) 990-8801 and get support for printer 
laptop computer and laptop. dell premium support Is  1 888-990-8801,^^ dell 
gold support number Is  1 888-990-8801, dell technical help, dell gold support 
phone number, dell help center, online dell support, dell laptop customer 
service, dell phone support number Is  1 888-990-8801, dell support centre, 
^^dell support call, dell support chat online, phone number for dell technical 
support, dell customer support chat Is  1 888-990-8801, dell help support, call 
dell customer service, dell support business, dell business support phone 
number, dell laptop technical , upport phone number Is  1 888-990-8801, dell 
laptop technical support, dell help desk, dell customer, call dell customer 
support, dell service center phone number, dell support telephone, dell 1 800 
number, dell service and support,goo.gl/YkEXEwcontent_copy dell hotline number 
Is  1 888-990-8801, dell helpline no, dell laptop customer service number Is  1 
888-990-8801, dell computer customer support, dell computer number, dell online 
help, dell company phone number, dell printer support Is  1 888-990-8801, dell 
support online chat, dell technical assistance, dell com phone number, dell 
phone number supportdell phone number technical support Is  1 888-990-8801, 
dell support services, dell on call, phone number 
  
=for
 dell computer support dell service support Is  1 888-990-8801, dell xps 
support phone number Is  1 888-990-8801, dell tech service, dell laptop 
customer care, number for dell, dell technical support contact number dell 
contacts Is  1 888-990-8801, dell computers customer service telephone number, 
contact dell customer support, dell customer service phone, dell laptop 
troubleshooting Is  1 888-990-8801, customer support dell, dell computer phone 
number for tech support, dell service center

[Touch-packages] [Bug 1616607] Re: Trojan Virus Removal +1 (888) 990-8801

2016-08-24 Thread Paul White
** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  Trojan Virus Removal +1 (888) 990-8801

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  +1 888-990-8801   Malware, Virus Removal (BSOD)
  Blue Screen of Death | BSOD Errors | Malware Removal | Spyware Removal | 
AdWare Removal | Virus Removal | Windows Blue Screen Error | Trojan Virus 
Removal | BSOD Error Windows | BSOD |
  Spyware removal, malware removal, trojan virus removal, virus removal mac, 
malwarebytes, virus scan, bsod error, windows 10 technical preview bsod, 
windows 10 causing bsod, bsod windows 8, bsod windows xp, windows 10 preview 
blue screen, blue screen during windows 10 upgrade, win 10 blue screen of 
death, troubleshoot blue screen errors, bsod error codes, bsod error windows 
10, bsod error 333, bsod error virus, bsod error mac, bsod error microsoft 
edge, bsod error 777, bsod error codes, ataport.sys windows 7 bsod virus, bsod 
virus removal, bsod error windows 10, bsod error 333, bsod error codes, bsod 
error mac, bsod error microsoft edge, bsod error 777, how to fix a computer 
blue screen, ataport.sys windows 7, bsod virus, fake bsod virus, bsod virus 
windows 10, remove fake bsod, how to remove bsod error 333, bsod error 333 
registry failure of operating system, my computer shows a blue screen, my 
computer keeps blue screening, why does my computer keep having a blue screen, 
what happens when you get a blue screen on your computer, how to fix a computer 
with a black screen, how to fix computer blue screen windows 7, blue screen of 
death, computer blue screen fix vista, my computer shows a blue screen when i 
turn it on, my computer shows a blue screen and restarts, how to fix a computer 
blue screen, why does my computer keep having a blue screen, what does it mean 
when you get a blue screen on your computer, blue screen comes up on computer, 
blue screen when starting computer, what to do if you get the blue screen of 
death, how to fix a computer blue screen, what does it mean when you get a blue 
screen on your computer, computer gets blue screen then restarts, why does my 
computer keep having a blue screen, what does the blue screen mean on my 
computer, my computer got a blue screen, desktop computer blue screen, blue 
screen when i start my computer, spyware removal, malware removal, trojan virus 
removal, virus removal mac, malwarebytes, virus scan, bsod error, windows 10 
technical preview bsod, windows 10 causing bsod, bsod windows 8, bsod windows 
xp, windows 10 preview blue screen, blue screen during windows 10 upgrade, win 
10 blue screen of death, troubleshoot blue screen errors, bsod error codes, 
bsod error windows 10, bsod error 333, bsod error virus, bsod error mac, bsod 
error microsoft edge, bsod error 777, bsod error codes, ataport.sys windows 7 
bsod virus, bsod virus removal, bsod error windows 10, bsod error 333, bsod 
error codes, bsod error mac, bsod error microsoft edge, bsod error 777, how to 
fix a computer blue screen, ataport.sys windows 7, bsod virus, fake bsod virus, 
bsod virus windows 10, remove fake bsod, how to remove bsod error 333, bsod 
error 333 registry failure of operating system, my computer shows a blue 
screen, my computer keeps blue screening, why does my computer keep having a 
blue screen, what happens when you get a blue screen on your computer, how to 
fix a computer with a black screen, how to fix computer blue screen windows 7, 
blue screen of death, computer blue screen fix vista, my computer shows a blue 
screen when i turn it on, my computer shows a blue screen and restarts, how to 
fix a computer blue screen, why does my computer keep having a blue screen, 
what does it mean when you get a blue screen on your computer, blue screen 
comes up on computer, blue screen when starting computer, what to do if you get 
the blue screen of death, how to fix a computer blue screen, what does it mean 
when you get a blue screen on your computer, computer gets blue screen then 
restarts, why does my computer keep having a blue screen, what does the blue 
screen mean on my computer, my computer got a blue screen, desktop computer 
blue screen, blue screen when i start my computer, spyware removal, malware 
removal, trojan virus removal, virus removal mac, malwarebytes, virus scan, 
bsod error, windows 10 technical preview bsod, windows 10 causing bsod, bsod 
windows 8, bsod windows xp, windows 10 preview blue screen, blue screen during 
windows 10 upgrade, win 10 blue screen of death, troubleshoot blue screen 
errors, bsod error codes, bsod error windows 10, bsod error 333, bsod error 
virus, bsod error mac, bsod error microsoft edge, bsod error 777, bsod error 
codes, ataport.sys windows 7 bsod virus, bsod virus removal, bsod error windows 

[Touch-packages] [Bug 1616517] Re: whoopsie does not send fields from some package management application crashes

2016-08-24 Thread Brian Murray
** Changed in: whoopsie (Ubuntu Xenial)
 Assignee: (unassigned) => Brian Murray (brian-murray)

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

Title:
  whoopsie does not send fields from some package management application
  crashes

Status in whoopsie package in Ubuntu:
  Triaged
Status in whoopsie source package in Trusty:
  Fix Committed
Status in whoopsie source package in Xenial:
  Triaged

Bug description:
  The package hook for update-manager and aptdaemon add information like
  /var/log/apt/term.log and /var/log/apt/history.log that would be
  useful in debugging crashes from those applications.  However, those
  files can be larger than 1 KB so whoopsie does not send them to the
  Error Tracker.  We should be sending those fields along.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe DpkgHistoryLog.txt in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe DpkgHistoryLog.txt not in it

  With the version of the package from -proposed DpkgHistoryLog.txt
  should appear on the OOPS page for the crash that was sent.

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

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


[Touch-packages] [Bug 1616597] Re: Sometimes (1in30?) system boots with no sound.Usually OK. As if PCI/internal sound card not detected

2016-08-24 Thread paulwill
Report generated in "NO sound state". All good again now after reboot.

** Summary changed:

- Sometimes (1 in 30?) system boots with no sound. Usually OK. PCI/internal 
sound card apparently not detected?
+ Sometimes (1in30?) system boots with no sound.Usually OK. As if PCI/internal 
sound card not detected

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

Title:
  Sometimes (1in30?) system boots with no sound.Usually OK. As if
  PCI/internal sound card not detected

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  Probably more a boot problem than a sound problem. Just sometimes
  doesn't happen. Never yet failed on a reboot. Either all there or
  nothing.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0c:   paul   4045 F...m pulseaudio
   /dev/snd/pcmC0D0p:   paul   4045 F...m pulseaudio
   /dev/snd/controlC0:  paul   4045 F pulseaudio
   /dev/snd/controlC1:  paul   4045 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Aug 24 19:57:24 2016
  InstallationDate: Installed on 2016-06-15 (69 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/22/2009
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0915
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: M4A785TD-M EVO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0915:bd12/22/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A785TD-MEVO:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1616597/+subscriptions

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


[Touch-packages] [Bug 1616606] [NEW] +1 888-990-8801 Dell™ Help Support

2016-08-24 Thread donald
Public bug reported:

+1 888-990-8801DELL™ PRODUCTS SUPPORT SERVICE
 Dial now 1(888) 990-8801. We are premium tech support provider 24*7*365. Call 
and get support for all products. We are here to help you.  dell support 
numberIs 1 888-990-8801, dell tech supportIs  1 888-990-8801, dell support 
phone numberIs  1 888-990-8801, dell customer support,^^ dell phone number, 
dell contact, dell tech support number, support dell, dell contact numberIs  1 
888-990-8801, dell technical support phone number,goo.gl/YkEXEwcontent_copydell 
help, dell online support, dell number, dell laptop support Is  1 888-990-8801, 
contact dell support, ontact dell, dell product support, dell helpline, dell 
service number, call dell, dell support contact number Is  1 888-990-8801, dell 
customer care number Is  1 888-990-8801, dell phone support, 
===
dell tech support chat Is  1 888-990-8801, ^^call dell support, dell help 
number, dell support chat, dell customer care phone number, dell customer 
support phone number, dell 800 number, dell telephone number, dell laptop 
customer care number Is  1 888-990-8801, dell computer support phone number, 
dell support phone, dell computer phone number,^^ dell contact support, dell 
support laptop, dell computer technical support, dell inspiron support Is  1 
888-990-8801, dell support online, dell telephone support, dell computer help, 
dell pc support Is  1 888-990-8801, dell xps support, dell laptop support phone 
number, dell chat support, dell service phone number, dell it support, dell 
helpline number, phone number for dell Is  1 888-990-8801, dell customer 
number, dell tech support phone, dell gold support Is  1 888-990-8801, contact 
dell customer service, technical support dell, phone number for dell support, 
dell support telephone number, contact dell technical support Is  1 
888-990-8801, dell help phone number, dell laptop support number, dell 
troubleshooting Is  1 888-990-8801, dell computer support number, dell contact 
phone number,goo.gl/YkEXEwcontent_copy call dell technical support, dell laptop 
help, dell support center phone number Is  1 888-990-8801, dell online tech 
support, dell technical service, phone number for dell computers, dell help and 
support, ^^dell computer customer service number Is  1 888-990-8801, dell 
computer customer service phone number Is  1 888-990-8801,^^ dell computer 
technical support phone number, dell desktop support, support for dell, dell 
business tech support Is  1 888-990-8801, 
=
Call on our toll free number 1(888) 990-8801 and get support for printer laptop 
computer and laptop. dell premium support Is  1 888-990-8801,^^ dell gold 
support number Is  1 888-990-8801, dell technical help, dell gold support phone 
number, dell help center, online dell support, dell laptop customer service, 
dell phone support number Is  1 888-990-8801, dell support centre, ^^dell 
support call, dell support chat online, phone number for dell technical 
support, dell customer support chat Is  1 888-990-8801, dell help support, call 
dell customer service, dell support business, dell business support phone 
number, dell laptop technical , upport phone number Is  1 888-990-8801, dell 
laptop technical support, dell help desk, dell customer, call dell customer 
support, dell service center phone number, dell support telephone, dell 1 800 
number, dell service and support,goo.gl/YkEXEwcontent_copy dell hotline number 
Is  1 888-990-8801, dell helpline no, dell laptop customer service number Is  1 
888-990-8801, dell computer customer support, dell computer number, dell online 
help, dell company phone number, dell printer support Is  1 888-990-8801, dell 
support online chat, dell technical assistance, dell com phone number, dell 
phone number supportdell phone number technical support Is  1 888-990-8801, 
dell support services, dell on call, phone number 
=for
 dell computer support dell service support Is  1 888-990-8801, dell xps 
support phone number Is  1 888-990-8801, dell tech service, dell laptop 
customer care, number for dell, dell technical support contact number dell 
contacts Is  1 888-990-8801, dell computers customer service telephone number, 
contact dell customer support, dell customer service phone, dell laptop 
troubleshooting Is  1 888-990-8801, customer support dell, dell computer phone 
number for tech support, dell service center contact number, dell customer 
service telephone number, dell laptop customer service phone number
dell support number Is 1 888-990-8801, dell tech supportIs  1 888-990-8801, 
dell support phone numberIs  1 888-990-8801, dell customer support, dell phone 
number, dell contact, dell tech support number, support dell, dell contact 
number Is  1 888-990-8801, 

[Touch-packages] [Bug 1616607] [NEW] Trojan Virus Removal +1 (888) 990-8801

2016-08-24 Thread donald
Public bug reported:

+1 888-990-8801 Malware, Virus Removal (BSOD)
Blue Screen of Death | BSOD Errors | Malware Removal | Spyware Removal | AdWare 
Removal | Virus Removal | Windows Blue Screen Error | Trojan Virus Removal | 
BSOD Error Windows | BSOD |
Spyware removal, malware removal, trojan virus removal, virus removal mac, 
malwarebytes, virus scan, bsod error, windows 10 technical preview bsod, 
windows 10 causing bsod, bsod windows 8, bsod windows xp, windows 10 preview 
blue screen, blue screen during windows 10 upgrade, win 10 blue screen of 
death, troubleshoot blue screen errors, bsod error codes, bsod error windows 
10, bsod error 333, bsod error virus, bsod error mac, bsod error microsoft 
edge, bsod error 777, bsod error codes, ataport.sys windows 7 bsod virus, bsod 
virus removal, bsod error windows 10, bsod error 333, bsod error codes, bsod 
error mac, bsod error microsoft edge, bsod error 777, how to fix a computer 
blue screen, ataport.sys windows 7, bsod virus, fake bsod virus, bsod virus 
windows 10, remove fake bsod, how to remove bsod error 333, bsod error 333 
registry failure of operating system, my computer shows a blue screen, my 
computer keeps blue screening, why does my computer keep having a blue screen, 
what happens when you get a blue screen on your computer, how to fix a computer 
with a black screen, how to fix computer blue screen windows 7, blue screen of 
death, computer blue screen fix vista, my computer shows a blue screen when i 
turn it on, my computer shows a blue screen and restarts, how to fix a computer 
blue screen, why does my computer keep having a blue screen, what does it mean 
when you get a blue screen on your computer, blue screen comes up on computer, 
blue screen when starting computer, what to do if you get the blue screen of 
death, how to fix a computer blue screen, what does it mean when you get a blue 
screen on your computer, computer gets blue screen then restarts, why does my 
computer keep having a blue screen, what does the blue screen mean on my 
computer, my computer got a blue screen, desktop computer blue screen, blue 
screen when i start my computer, spyware removal, malware removal, trojan virus 
removal, virus removal mac, malwarebytes, virus scan, bsod error, windows 10 
technical preview bsod, windows 10 causing bsod, bsod windows 8, bsod windows 
xp, windows 10 preview blue screen, blue screen during windows 10 upgrade, win 
10 blue screen of death, troubleshoot blue screen errors, bsod error codes, 
bsod error windows 10, bsod error 333, bsod error virus, bsod error mac, bsod 
error microsoft edge, bsod error 777, bsod error codes, ataport.sys windows 7 
bsod virus, bsod virus removal, bsod error windows 10, bsod error 333, bsod 
error codes, bsod error mac, bsod error microsoft edge, bsod error 777, how to 
fix a computer blue screen, ataport.sys windows 7, bsod virus, fake bsod virus, 
bsod virus windows 10, remove fake bsod, how to remove bsod error 333, bsod 
error 333 registry failure of operating system, my computer shows a blue 
screen, my computer keeps blue screening, why does my computer keep having a 
blue screen, what happens when you get a blue screen on your computer, how to 
fix a computer with a black screen, how to fix computer blue screen windows 7, 
blue screen of death, computer blue screen fix vista, my computer shows a blue 
screen when i turn it on, my computer shows a blue screen and restarts, how to 
fix a computer blue screen, why does my computer keep having a blue screen, 
what does it mean when you get a blue screen on your computer, blue screen 
comes up on computer, blue screen when starting computer, what to do if you get 
the blue screen of death, how to fix a computer blue screen, what does it mean 
when you get a blue screen on your computer, computer gets blue screen then 
restarts, why does my computer keep having a blue screen, what does the blue 
screen mean on my computer, my computer got a blue screen, desktop computer 
blue screen, blue screen when i start my computer, spyware removal, malware 
removal, trojan virus removal, virus removal mac, malwarebytes, virus scan, 
bsod error, windows 10 technical preview bsod, windows 10 causing bsod, bsod 
windows 8, bsod windows xp, windows 10 preview blue screen, blue screen during 
windows 10 upgrade, win 10 blue screen of death, troubleshoot blue screen 
errors, bsod error codes, bsod error windows 10, bsod error 333, bsod error 
virus, bsod error mac, bsod error microsoft edge, bsod error 777, bsod error 
codes, ataport.sys windows 7 bsod virus, bsod virus removal, bsod error windows 
10, bsod error 333, bsod error codes, bsod error mac, bsod error microsoft 
edge, bsod error 777, how to fix a computer blue screen, ataport.sys windows 7, 
bsod virus, fake bsod virus, bsod virus windows 10, remove fake bsod, how to 
remove bsod error 333, bsod error 333 registry failure of operating system, my 
computer shows a blue screen, my computer k

[Touch-packages] [Bug 1616602] [NEW] +1 888-990-8801 Lenovo™ Products Support

2016-08-24 Thread donald
Public bug reported:

+1 888-990-8801   Lenovo™ Products Support
Lenovo™ Laptop Support | Lenovo™ Computer Support | Lenovo™ ThinkPad Support | 
Lenovo™ Help | Lenovo™ Laptop Help | Lenovo™ Printer Support | Lenovo™ Printer 
Help | Contact Lenovo™ Help.
Need help? Why Choose Lenovo™ Support
Problems with your computer, home network, software, or technology in general, 
can be very frustrating. Lenovo Services Premium Support is here to help, with 
best-in-class skills, technology, and processes to solve the problem right the 
first time and save you time and hassle.
Experience the Lenovo Services Premium Support advantage.

Call us at +1-888-990-8801 or Chat with an expert now or any day of the week.
We having a go Lenovo yoga tech support number, Lenovo support, Lenovo customer 
service, Lenovo tech support, Lenovo support number1(888) 990-8801, Lenovo 
customer support1(888) 990-8801, support Lenovo, Lenovo tech support number, 
1(888) 990-8801  Lenovo customer service number, Lenovo technical support phone 
number 1(888) 990-8801, Lenovo support phone number1(888) 990-8801, Lenovo 
phone number, Lenovo help, 1(888) 990-8801  &Lenovo support chat, @ Lenovo 
customer support number, Lenovo laptop support, Lenovo customer service phone 
number, @ Lenovo customer care number,  Lenovo help desk, Lenovo com 
support1(888) 990-8801, Lenovo customer support phone number, lenova support, 
contact Lenovo support, Lenovo phone support, Lenovo computer support, Lenovo 
support phone, Lenovo help number, Lenovo technical support chat, 1(888) 
990-8801 & Lenovo tech support phone number usa, Lenovo contact support, Lenovo 
pc support, Lenovo online support, Lenovo tech support live chat@, Lenovo 
support contact, lenevo support, &Lenovo customer care phone number, 1(888) 
990-8801  Lenovo laptop support phone number, Lenovo support number us, contact 
Lenovo tech support, Lenovo live chat support, 1(888) 990-8801  @ Lenovo laptop 
technical support phone number, & Lenovo help phone number, @ Lenovo customer 
service phone, Lenovo us support number, Lenovo support contact number, Lenovo 
canada support, thinkpad support number, & Lenovo support telephone number, 
Lenovo 1800 number, Lenovo support phone number usa, 1(888) 990-8801  Lenovo 
service phone number, @ Lenovo support canada, Lenovo business support phone 
number, @Lenovo help desk phone number, 1(888) 990-8801  Lenovo computer tech 
support, @Lenovo computer support phone number, Lenovo tech support number usa, 
Lenovo help support, thinkpad support phone number, @ Lenovo support number 
usa, Lenovo contact support number, 1(888) 990-8801 @ Lenovo support usa phone 
number, 1(888) 990-8801  Lenovo customer care support, 1(888) 990-8801  Lenovo 
support hotline, Lenovo thinkpad support, Lenovo t61 support, Lenovo laptop 
support phone number, Lenovo tech support phone number, Lenovo thinkpad t60 
support, Lenovo thinkpad support phone number, Lenovo thinkpad support number, 
Lenovo thinkpad t61 support, Lenovo thinkpad support phone number, Lenovo 
thinkpad t60 support, Lenovo thinkpad t61 support, Lenovo thinkpad support 
phone number, Lenovo laptop support phone number, 
Our Expert Technicians provides one of the best   tech support for Lenovo 
support.  Expert technician and they can resolve your issue and we are 
providing Lenovo tech support telephone number 24*7 . Our services are 
technical support Lenovo yoga tech support number, 1(888) 990-8801  Lenovo 
support, @ Lenovo customer service, 1(888) 990-8801  @ Lenovo tech support, 
1(888) 990-8801  Lenovo support number, Lenovo customer support, 1(888) 
990-8801  support Lenovo, Lenovo tech support number, Lenovo customer service 
number, 1(888) 990-8801  Lenovo technical support phone number, 1(888) 990-8801 
 Lenovo support phone number, Lenovo phone number, Lenovo help1(888) 990-8801, 
Lenovo support chat, Lenovo customer support number, 1(888) 990-8801  Lenovo 
laptop support, Lenovo customer service phone number, 1(888) 990-8801  Lenovo 
customer care number, 1(888) 990-8801   Lenovo help desk, 1(888) 990-8801  
Lenovo com support, 1(888) 990-8801  Lenovo customer support phone number, 
lenova support, contact Lenovo support, 1(888) 990-8801 1(888) 990-8801  Lenovo 
phone support, Lenovo computer support, Lenovo support phone, Lenovo help 
number, Lenovo technical support chat, 1(888) 990-8801  Lenovo tech support 
phone number usa, Lenovo contact support, Lenovo pc support, Lenovo online 
support, Lenovo tech support live chat, Lenovo support contact, lenevo support, 
Lenovo customer care phone number, Lenovo laptop support phone number, Lenovo 
support number us, contact Lenovo tech support, 1(888) 990-8801  Lenovo live 
chat support, Lenovo laptop technical support phone number, Lenovo help phone 
number, Lenovo customer service phone, Lenovo us support number, Lenovo support 
contact number, Lenovo canada support, thinkpad support number, Lenovo support 
telephone number, 1(888) 990-8801  Leno

[Touch-packages] [Bug 1616603] [NEW] +1 (888) 990-8801 Dell™ Product Support

2016-08-24 Thread donald
Public bug reported:

+1 888-990-8801 Dell™ Product Support

Dell™ Laptop Support | Dell™ Laptop Help | Dell™ Printer Support | Dell™ 
Products Support Center | Dell™ Latitude Support | Dell™ Computer Support | 
Dell™ Product Help | Dell™ Product Assistance | Dell™ Help |
Call technical support if you would like our friendly agents to help you 
resolve an issue with your order. You’ll find the phone numbers for our support 
teams below. Remote monitoring and automated, proactive support.
dell pro support contact, dell pro support plus for client, dell prosupport 
plus phone number, dell prosupport plus for pcs and tablets, dell prosupport 
plus service, dell prosupport plus mission critical, dell prosupport plus pdf, 
dell gold support phone number, dell laptop support number, dell laptop support 
chat, dell laptop support center, dell laptop support drivers, dell support, 
dell laptop stand, dell laptop accessories, dell latitude support, dell laptop 
support, dell computer support, dell help, dell laptop help, dell helpline 
number, dell number, dell help center, dell latitude help, contact dell 
support, call dell support, dell laptop support phone number, dell laptop 
support number uk, dell server support, dell server support, dell computer help 
phone number, dell gold support number, dell technical support phone number, 
dell technical support phone number united states, dell tech support, dell 
technical support chat, dell support, dell technical support phone number for 
laptops, dell tech support, dell pro support number, dell phone number, dell 
technical support phone number, dell customer support, computer maintenance, 
dell Canada, call dell support, conact dell support, contact dell support, 
computer repair services, dell support number, dell service, dell pro support, 
dell tech support number, dell support phone number, dell driver support, dell 
support drivers, support dell, dell warranty support, dell customer number, 
dell product key, dell official website, dell support, dell laptop service 
center, dell suppor, dell corporation, dell support, dell driver detect, dell 
alienware support, dell support center, dell drivers and support, dell support 
download, dell support and drivers, dell contact us, del support, dell official 
site, dell support com, dell pro support phone number, dell call center, dell 
support, dell software support, dell auto detect, dell suppot, dell support, 
dell laptop repair center, dell customer care number, dell telephone number, 
dell computer service, dell customer service phone number, delll support, dell 
business support number, dell premium support, dell number, dell contact, 
contact dell, dell computer help, call dell support, dell gold support, dell 
customer support phone number, dell troubleshooting, dell laptop customer 
service, dell support phone, dell repair center, phone number for dell 
computers, dell help desk, dell laptop support phone number, dell com support 
drivers, dell service number, dell printer support number, dell support email, 
dell server support phone number, dell help number, dell contact number, call 
dell technical support, dell printer customer support phone, call dell, dell 
monitor support, dell printer customer service phone, dell authorized service 
center, dell computer corporation, dell phone support, dell computer 
troubleshooting, dell computer support number, dell computer technical support, 
dell contact support, dell laptop troubleshooting, dell help and support, dell 
server warranty, dell customer support number, dell product support, contact 
dell technical support, dell computer phone number, call dell computers, dell 
online, dell printer support phone number, dell 800 number, dell tech, dell 
laptop technical support, dell computer repair, dell xps support, dell warranty 
phone number, phone number for dell, dell laptop repair, dell laptop help, dell 
printer tech support phone number, dell inspiron support, contact dell support, 
dell computer customer service, dell server support, dell business support, 
dell desktop problems, dell customer number lookup, fix my dell, dell computers 
customer service, dell repair service center, dell com customer service phone, 
dell phone technical support, phone number to dell, dell service number lookup, 
contacting dell, dell maintenance support, dell support telephone, dell 
alienware support phone number, dell business technical support number, fix 
dell laptop, my dell support center, dell xps customer support, my dell printer 
will not print, dell computer sales phone number, certified dell repair center, 
dell support support, dell pro support contact, dell pro support plus for 
client, dell prosupport plus phone number, dell prosupport plus for pcs and 
tablets, dell prosupport plus service, dell prosupport plus mission critical, 
dell prosupport plus pdf, dell gold support phone number, dell authorized 
repair center, dell customer h

[Touch-packages] [Bug 1616598] [NEW] +1 (888) 990-8801 Thunderbird Support Number

2016-08-24 Thread donald
Public bug reported:

+1 888-990-8801
 

Has a variety of troubleshooting articles that help install, resolve and 
configure Thunderbird
Mozilla Thunderbird Support | Mozilla Thunderbird Help | Mozilla Thunderbird 
Problems | Mozilla Thunderbird Assistance | Thunderbird Support Number | 
Thunderbird Exchange Support | Thunderbird Support Exchange | Thunderbird Help 
Desk Phone Number | Thunderbird Helpline |
Thunderbird technical help contact number, thunderbird technical support 
contact number, thunderbird contact number,% thunderbird contact phone number, 
thunderbird contact telephone number, thunderbird 24 hour contact number, 
thunderbird customer support contact number, thunderbird customer service 
contact number, thunderbird official number, thunderbird official contact 
number, thunderbird 800 contact number, thunderbird toll free number, 800 
number for thunderbird tech support, thunderbird 24/7 support phone number 
thunderbird antivirus  support phone number,thunderbird antivirus  support 
phone number,thunderbird antivirus help phone number, thunderbird antivirus  
technical support number., thunderbird antivirus support number, thunderbird 
antivirus phone number, thunderbird antivirus tech supportnumber, thunderbird 
antivirus  customer support number, thunderbird antivirus customer support 
phone number, thunderbird antivirus  customer service phone number, thunderbird 
antivirus pay
 roll customer service phone number, thunderbird antivirus  support phone 
number, help call 1 (888) 990-8801.thunderbird 24/7 support phone 
number,thunderbird telephone number for support? call 1 (888) 990-8801 
thunderbird contact number, thunderbird contact phone number, thunderbird 
contact telephone number,telephone number for thunderbird online support, 
thunderbird official support number,thunderbird official number,thunderbird 
payroll official phone number,phone number for thunderbird payroll 
support,thunderbird 24/7 support phone number, thunderbird tech 
supportnumber,thunderbird telephone number for support thunderbird phone 
number, thunderbird tech support phone number, mozilla support number, 
thunderbird support ending,thunderbird email support number, thunderbird 
support phone number, thunderbird support hotline. Thunderbird technical help 
contact number, thunderbird technical support contact number, thunderbird 
contact number, thunderbird contact phone number, thunderbird c
 ontact telephone number, thunderbird 24 hour contact number, thunderbird 
customer support contact number, thunderbird customer service contact number, 
thunderbird official number, thunderbird official contact number, thunderbird 
800 contact number, thunderbird toll free number, 800 number for thunderbird 
tech support, thunderbird 24/7 support phone number thunderbird antivirus  
support phone number,thunderbird antivirus  support phone number,thunderbird 
antivirus help phone number, thunderbird antivirus  technical support number., 
thunderbird antivirus support number, thunderbird antivirus phone number, 
thunderbird antivirus tech supportnumber, thunderbird antivirus  customer 
support number, thunderbird antivirus customer support phone number, 
thunderbird antivirus  customer service phone number, thunderbird antivirus 
payroll customer service phone number, thunderbird antivirus  support phone 
number, help call 1 (888) 990-8801.thunderbird 24/7 support phone 
number,thunderbird teleph
 one number for support? call 1 (888) 990-8801 thunderbird contact number, 
thunderbird contact phone number, thunderbird contact telephone 
number,telephone number for thunderbird online support, thunderbird official 
support number,thunderbird official number,thunderbird payroll official phone 
number,phone number for thunderbird payroll support,thunderbird 24/7 support 
phone number, thunderbird tech supportnumber,thunderbird telephone number for 
support thunderbird phone number, thunderbird tech support phone number, 
mozilla support number, thunderbird support ending,thunderbird email support 
number, thunderbird support phone number, thunderbird support hotline, 
Thunderbird technical help contact number, thunderbird technical support 
contact number, thunderbird contact number, thunderbird contact phone number, 
thunderbird contact telephone number, thunderbird 24 hour contact number, 
thunderbird customer support contact number, thunderbird customer service 
contact number, thunderbird o
 fficial number, thunderbird official contact number, thunderbird 800 contact 
number, thunderbird toll free number, 800 number for thunderbird tech support, 
thunderbird 24/7 support phone number thunderbird antivirus  support phone 
number,thunderbird antivirus  support phone number,thunderbird antivirus help 
phone number, thunderbird antivirus  technical support number., thunderbird 
antivirus support number, thunderbird antivirus phone number, thunderbird 
antivirus tech supportnumber, thunderbird antivirus  customer support num

[Touch-packages] [Bug 1616597] [NEW] Sometimes (1 in 30?) system boots with no sound. Usually OK. PCI/internal sound card apparently not detected?

2016-08-24 Thread paulwill
Public bug reported:

Probably more a boot problem than a sound problem. Just sometimes
doesn't happen. Never yet failed on a reboot. Either all there or
nothing.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0c:   paul   4045 F...m pulseaudio
 /dev/snd/pcmC0D0p:   paul   4045 F...m pulseaudio
 /dev/snd/controlC0:  paul   4045 F pulseaudio
 /dev/snd/controlC1:  paul   4045 F pulseaudio
CurrentDesktop: Unity
Date: Wed Aug 24 19:57:24 2016
InstallationDate: Installed on 2016-06-15 (69 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Title: PCI/internal sound card not detected
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/22/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0915
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M4A785TD-M EVO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0915:bd12/22/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A785TD-MEVO:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: amd64 apport-bug xenial

** Summary changed:

- Sometimes (1in30?) system boots with no sound.Usually OKPCI/internal sound 
card not detected
+ Sometimes (1 in 30?) system boots with no sound. Usually OK. PCI/internal 
sound card apparently not detected?

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

Title:
  Sometimes (1 in 30?) system boots with no sound. Usually OK.
  PCI/internal sound card apparently not detected?

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  Probably more a boot problem than a sound problem. Just sometimes
  doesn't happen. Never yet failed on a reboot. Either all there or
  nothing.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0c:   paul   4045 F...m pulseaudio
   /dev/snd/pcmC0D0p:   paul   4045 F...m pulseaudio
   /dev/snd/controlC0:  paul   4045 F pulseaudio
   /dev/snd/controlC1:  paul   4045 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Aug 24 19:57:24 2016
  InstallationDate: Installed on 2016-06-15 (69 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Title: PCI/internal sound card not detected
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/22/2009
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0915
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: M4A785TD-M EVO
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0915:bd12/22/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A785TD-MEVO:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1616597/+subscriptions

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


[Touch-packages] [Bug 1616600] [NEW] Microsoft™ Windows Live Support +1 (888) 990-8801

2016-08-24 Thread donald
Public bug reported:

Microsoft™ Windows Live Support +1 888-990-8801
Microsoft™ Live Support | Windows Live Support | Windows Vista Support | 
Windows 7 Support | Windows 8 Support | Windows 10 Support | Windows XP Support 
| Microsoft™ Live Support Number
windows live tech support phone number, windows live technical support, windows 
live mail technical support, windows live mail tech support, windows live mail 
tech support phone number, windows live support, windows live support number, 
windows live mail support number, windows live support phone number, windows 
live one care support phone number, windows live messenger support contact, 
windows live one care support phone number, office live support phone number, 
microsoft support phone number, windows live support phone number, Microsoft 
office live support, microsoft live support email, microsoft office live 
support, microsoft live support phone, microsoft live support number, microsoft 
windows live support, microsoft windows update support, microsoft windows live 
support phone number, microsoft windows live support phone number, microsoft 
window vista support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, windows live support, windows live support, 
windows live support, microsoft live support number, microsoft windows live 
support, microsoft windows update support, microsoft windows live support phone 
number, microsoft windows live support phone number, microsoft window vista 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, 
windows live tech support phone number, windows live technical support, windows 
live mail technical support, windows live mail tech support, windows live mail 
tech support phone number, microsoft windows live support, microsoft windows 
live support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, windows live support, microsoft windows live support, microsoft 
windows live support, microsoft windows live support, microsoft windows live 
support, microsoft windows live support, microsoft windows live support, 
microsoft windows live support, microsoft windows live support, microsoft 
windows live support, windows live sup

[Touch-packages] [Bug 1616517] Re: whoopsie does not send fields from some package management application crashes

2016-08-24 Thread Brian Murray
bdmurray@upgrade-trusty-amd64:~$ grep whoopsie /var/log/syslog
Aug 24 12:04:55 upgrade-trusty-amd64 whoopsie[4310]: whoopsie 0.2.24.6ubuntu3 
starting up.
Aug 24 12:04:55 upgrade-trusty-amd64 whoopsie[4310]: Using lock path: 
/var/lock/whoopsie/lock
Aug 24 12:07:46 upgrade-trusty-amd64 whoopsie[4311]: Parsing 
/var/crash/_usr_bin_update-manager.1000.crash.
Aug 24 12:07:46 upgrade-trusty-amd64 whoopsie[4311]: Uploading 
/var/crash/_usr_bin_update-manager.1000.crash.
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Sent; server replied with: 
No error
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Response code: 200
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Reported OOPS ID 
0b455ae8-6a2e-11e6-a26a-fa163e30221b
Aug 24 12:08:11 upgrade-trusty-amd64 whoopsie[4311]: Sent; server replied with: 
No error
Aug 24 12:08:11 upgrade-trusty-amd64 whoopsie[4311]: Response code: 200

https://errors.ubuntu.com/oops/0b455ae8-6a2e-11e6-a26a-fa163e30221b

That OOPS contains DpkgTerminalLog.txt setting to verification-done.

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

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

Title:
  whoopsie does not send fields from some package management application
  crashes

Status in whoopsie package in Ubuntu:
  Triaged
Status in whoopsie source package in Trusty:
  Fix Committed
Status in whoopsie source package in Xenial:
  Triaged

Bug description:
  The package hook for update-manager and aptdaemon add information like
  /var/log/apt/term.log and /var/log/apt/history.log that would be
  useful in debugging crashes from those applications.  However, those
  files can be larger than 1 KB so whoopsie does not send them to the
  Error Tracker.  We should be sending those fields along.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe DpkgHistoryLog.txt in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe DpkgHistoryLog.txt not in it

  With the version of the package from -proposed DpkgHistoryLog.txt
  should appear on the OOPS page for the crash that was sent.

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

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


[Touch-packages] [Bug 1616559] Re: whoopsie should send more data to the Error Tracker

2016-08-24 Thread Brian Murray
bdmurray@upgrade-trusty-amd64:~$ grep whoopsie /var/log/syslog
Aug 24 12:04:55 upgrade-trusty-amd64 whoopsie[4310]: whoopsie 0.2.24.6ubuntu3 
starting up.
Aug 24 12:04:55 upgrade-trusty-amd64 whoopsie[4310]: Using lock path: 
/var/lock/whoopsie/lock
Aug 24 12:07:46 upgrade-trusty-amd64 whoopsie[4311]: Parsing 
/var/crash/_usr_bin_update-manager.1000.crash.
Aug 24 12:07:46 upgrade-trusty-amd64 whoopsie[4311]: Uploading 
/var/crash/_usr_bin_update-manager.1000.crash.
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Sent; server replied with: 
No error
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Response code: 200
Aug 24 12:07:48 upgrade-trusty-amd64 whoopsie[4311]: Reported OOPS ID 
0b455ae8-6a2e-11e6-a26a-fa163e30221b
Aug 24 12:08:11 upgrade-trusty-amd64 whoopsie[4311]: Sent; server replied with: 
No error
Aug 24 12:08:11 upgrade-trusty-amd64 whoopsie[4311]: Response code: 200

https://errors.ubuntu.com/oops/0b455ae8-6a2e-11e6-a26a-fa163e30221b

That OOPS contains GSettingsChanges, setting to verification-done.

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

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

Title:
  whoopsie should send more data to the Error Tracker

Status in whoopsie package in Ubuntu:
  Invalid
Status in whoopsie source package in Trusty:
  Fix Committed

Bug description:
  The whoopsie change which allows sending of any field less than 1 KB
  and creates a blacklist of not sent fields should be backported to
  Trusty.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe GsettingsChanges in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe GsettingsChanges not in it

  With the version of the package from -proposed GsettingsChanges should
  appear on the OOPS page for the crash that was sent.  An example can
  be found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
  fa163eec78fa

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

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


[Touch-packages] [Bug 1613469] Re: [MIR] ofono-qt

2016-08-24 Thread Michael Terry
Using ofono-phonesim and scripting the manual interactions (like
starting a call, restarting ofono) all seems like perfect a candidate
for autopkgtest (rather than a unit test, where you may not want to mess
up your dev system).

The custom patches to ofono-qt are all the more reason to migrate to
libqofono.  We have other code that is using libqofono and may benefit
from those patches, rather than just telephony-service.

Since telephony-ofono is the only rdepend of ofono-qt, moving it into
the t-ofono and dropping ofono-qt from the archive is a reasonable way
to avoid other packages depending on it once we 'bless' it.

But... that probably would make the security team's life a little harder
if/when there's a security patch.  They may not know we have an internal
copy in t-ofono, but they would notice an archive package.

Normally yes, we block needlessly duplicated libraries going into main
if we can.  It's an update and security burden (and a source of bugs
when apps don't work the same because they have different library
behaviors).

I'd be fine with promoting this in main on a temporary basis, if you
folks have a milestoned bug/plan to move everything over to libqofono.
It will be good to stop investing custom patches into a dead-end
library.

But no tests as well?  Is there not even a subset of tests that don't
require manual interaction that we can run, under phonesim as necessary?
Not having automated tests seems like a disaster waiting to happen, and
we have better standards in Touch than that.

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1398104] Re: Support multi-arch click build (single "fat" click package)

2016-08-24 Thread Sam Segers
It should be easy.
'make install DESTDIR=..' to a tmp directory for each kit.
Then merge the folders and to click build and change the manifest.
The sdk does this already. It only needs to do it for each configured kit.

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

Title:
  Support multi-arch click build (single "fat" click package)

Status in click package in Ubuntu:
  Confirmed

Bug description:
  It should be possible for click build to target more than one
  architecture so that I can build a single package that will support
  multi-architectures. This is useful for providing a single package in
  the click store instead of maintaining separate packages.

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

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


[Touch-packages] [Bug 1616548] Re: Cups causes LibreOffice unittests to loop in a sbuild

2016-08-24 Thread Till Kamppeter
Are there "audit" messages in the syslog file (of the host, of the
chroot)?

Can you try to run CUPS in aa-complain mode of AppArmor?

Can you run CUPS in debug mode and supply the error_log file?

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

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

Title:
  Cups causes LibreOffice unittests to loop in a sbuild

Status in cups package in Ubuntu:
  Incomplete

Bug description:
  When building LibreOffice 1:5.2.0-0ubuntu1 on a xenial host with a
  yakkety sbuild, e.g. by:

  sbuild -A -d yakkety-amd64 (...).dsc

  this loops/busy hangs with unittests. This was working ok up to
  5.2.0~rc4 (=final), it is a regression by a LibreOffice dependency,
  most likely CUPS, which was updated.

  I tried to inject debug symbols by running with a: --chroot-setup-
  command and then run something along the lines of:

   apt install cups
   wget http://launchpadlibrarian.net/278966811/cups-dbgsym_2.2~rc1-4_amd64.ddeb
   wget 
http://launchpadlibrarian.net/278966816/libcups2-dbgsym_2.2~rc1-4_amd64.ddeb
   dpkg -i cups-dbgsym_2.2~rc1-4_amd64.ddeb
   dpkg -i libcups2-dbgsym_2.2~rc1-4_amd64.ddeb

  before starting the build proper, but I got only marginally better
  debug info. The hanging LibreOffice test processes usually have 2-4
  child processes. The parent and one of the childs are busy, while the
  rest idle.

  Here is a stacktrace of the busy child:

  Program received signal SIGPIPE, Broken pipe.
  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  43in fgetspent.c
  (gdb) bt
  #0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  #1  0x001e in ?? ()
  #2  0x55c4976981e0 in ?? ()
  #3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
  #4  0x4002 in ?? ()
  #5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at emit.c:145
  #6  0x in ?? ()

  Here is a stacktrace of the busy parent:

  Thread 3 "CUPSManager cup" received signal SIGPIPE, Broken pipe.
  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  43in fgetspent.c
  (gdb) bt
  #0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  #1  0x001e in ?? ()
  #2  0x55c4976981e0 in ?? ()
  #3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
  #4  0x4002 in ?? ()
  #5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at emit.c:145
  #6  0x in ?? ()

  
  When pressing "c" in gdb to continue, both processes stop very quickly again 
with the SIGPIPE.
  Venturing a guess: Is the signal handling of CUPS b0rked? As fgetspent reads 
the shadow file[1], maybe there are missing permissions or other sandbox issues 
that CUPS doesnt handle error cases for properly?

  [1] http://linux.die.net/man/3/fgetspent

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

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


[Touch-packages] [Bug 1599695] Re: When running cmake from QtC on a webbrowser-app branch it fails

2016-08-24 Thread Launchpad Bug Tracker
** Branch linked: lp:~osomon/webbrowser-app/fix-chromiumVersion-1599695

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

Title:
  When running cmake from QtC on a webbrowser-app branch it fails

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  When running cmake from QtC on a webbrowser-app branch in Xenial it
  fails with the following error:

  CMake Error at src/Ubuntu/CMakeLists.txt:31 (message):
    Invalid chromium version: ''

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1599695/+subscriptions

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


[Touch-packages] [Bug 1607666] Re: sudo fails with host netgroup returned from freeipa

2016-08-24 Thread Timo Aaltonen
** Also affects: sudo (Ubuntu Xenial)
   Importance: Undecided
   Status: New

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

Title:
  sudo fails with host netgroup returned from freeipa

Status in sudo package in Ubuntu:
  New
Status in sudo source package in Xenial:
  New

Bug description:
  Sudo currently fails to validate netgroups against host netgroups
  returned from the sss plugin, see
  https://fedorahosted.org/freeipa/ticket/6139 for the glory details.

  This was fixed in sudo 1.8.17
  (https://www.sudo.ws/repos/sudo/rev/2eab4070dcf7 to be exact), which
  I'd very much like to see backported to Ubuntu 16.04. If possible,
  updating sudo completely to 1.8.17 would be nice, since there have
  been quite a few improvements with regards to sss and freeipa and it
  would be a shame if we could not benefit from them given that 16.04 is
  LTS.

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

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


[Touch-packages] [Bug 1615021] Re: Unable to network boot Ubuntu 16.04 installer normally on Briggs

2016-08-24 Thread Steve Langasek
If this screen output is for a case when the installer *did* show up, I
don't think it's going to tell us much about where things have hung in
the case that it *didn't* show up.

If there's a particular invocation of udev that lets you reproduce the
problem, I suggest sticking with that, and capturing the output of
'udevadm info -e' (possibly by using a fixed delay).

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

Title:
  Unable to network boot Ubuntu 16.04 installer normally on Briggs

Status in busybox package in Ubuntu:
  Fix Committed
Status in debian-installer package in Ubuntu:
  Triaged
Status in systemd package in Ubuntu:
  Fix Committed
Status in busybox source package in Xenial:
  Won't Fix
Status in debian-installer source package in Xenial:
  Triaged
Status in systemd source package in Xenial:
  In Progress
Status in busybox source package in Yakkety:
  Fix Committed
Status in debian-installer source package in Yakkety:
  Triaged
Status in systemd source package in Yakkety:
  Fix Committed

Bug description:
  == Comment: #7 - Guilherme Guaglianoni Piccoli  - 
2016-08-19 10:08:07 ==
  The normal procedure to perform a Netboot installation of Ubuntu 16.04 is to 
download the latest vmlinux and initrd.gz files available, and kexec them with 
no parameters (at least in ppc64el).

  We're experiencing a strange issue in which the installer freezes
  before menus are showed. The system hangs in the point specified
  below, right after the i40e driver initialization:

  [   11.052832] i40e 0002:01:00.0 enP2p1s0f0: renamed from eth0
  [   11.073976] i40e 0002:01:00.1 enP2p1s0f1: renamed from eth1
  [   11.117799] i40e 0002:01:00.2 enP2p1s0f2: renamed from eth2
  [   11.225745] i40e 0002:01:00.3 enP2p1s0f3: renamed from eth3
  ***HANG***

  The most difficult part in this issue is that it seems to be a timing
  issue/race condition, and many debug trials end up by avoiding the
  issue reproduction (heisenbug).

  We were successful though in getting logs by booting the kernel with
  the command-line "BOOT_DEBUG=2" and by changing the initrd in order to
  enable systemd debug; only the files "init" and "start-udev" were
  changed in initrd, both attached here.

  We've attached here a saved screen session that shows the entire boot
  process until it gets flooded with lots of messages like:

  "starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'

  seq 3244 queued, 'add' 'pci_bus'
  starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  passed 408 byte device to netlink monitor 0x1003cfe8020seq 3236 
running'/bin/readlink /etc/udev/rules.d/80-net-setup-l
  ink.rules'(err) 'failed to execute '/bin/readlink' '/bin/readlink 
/etc/udev/rules.d/80-net-setup-link.rules': No such
  file or directory'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'
  Process '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' failed with 
exit code 2.
  PROGRAM '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' 
/lib/udev/rules.d/73-usb-net-by-mac.rules:6
  passed device to netlink monitor 0x1003d01f730
  "

  Then it keeps hanged in this stage. We re-tested it by changing the
  file 73-usb-net-by-mac.rules in initrd, replacing "
  /etc/udev/rules.d/80-net-setup-link.rules" to  "/lib/udev/rules.d/80
  -net-setup-link.rules", since the former does not exist whereas the
  latter does. Same issue were observed!

  Notice that if we boot the installer with command-line "net.ifnames=0"
  or "net.ifnames=1", the problem does not reproduces anymore.

  We want to ask Canonical's help in investigating this issue.
  Thanks,

  Guilherme

  
  SRU INFORMATION for systemd
  ===

  Test case:
   * Check what happens for uevents on devices which are not USB network 
interfaces:
 udevadm test /sys/devices/virtual/mem/null
 udevadm test /sys/class/net/lo

   With the current version these will run

PROGRAM '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  /lib/udev/rules.d/73-usb-net-by-mac.rules:6

   which is pointless. With the proposed version these should be gone.

   * Ensure that the rule still works as intended by connecting an USB
  network device that has a permanent MAC address (e. g. Android
  tethering uses a temporary MAC): You should get a MAC-based name like
  "enx12345678" for it. Now disconnect it again, disable ifnames with

  sudo ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules

  and reconnect the device. You should now get a kernel name like "usb0"
  for it.

  * R

[Touch-packages] [Bug 1616573] [NEW] [2306CTO, Realtek ALC269VC, Speaker, Internal] fails after a while

2016-08-24 Thread hjc
Public bug reported:

I'm using a ThinkPad X230. Ever since the upgrade to 16.04 Ubuntu GNOME,
I will have intermittent sound failure both through internal speakers
and headphones. Everything will be fine, I won't play anything for a
while, and when I try to play something new, there is no audio.

I've confirmed that the audio is not muted. I tried "killall pulseaudio;
rm -r ~/.config/pulse/* ; rm -r ~/.pulse*" then "pulseaudio -k" and
while it restored sound when my headphones are plugged it, the internal
speakers are not restored.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
Uname: Linux 4.4.0-34-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  anon  15846 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Aug 24 12:58:26 2016
InstallationDate: Installed on 2016-04-24 (122 days ago)
InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_Card: Built-in Audio - HDA Intel PCH
Symptom_Jack: Speaker, Internal
Symptom_Type: Sound works for a while, then breaks
Title: [2306CTO, Realtek ALC269VC, Speaker, Internal] fails after a while
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/17/2015
dmi.bios.vendor: LENOVO
dmi.bios.version: G2ETA5WW (2.65 )
dmi.board.asset.tag: Not Available
dmi.board.name: 2306CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Defined
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvrG2ETA5WW(2.65):bd09/17/2015:svnLENOVO:pn2306CTO:pvrThinkPadX230:rvnLENOVO:rn2306CTO:rvrNotDefined:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2306CTO
dmi.product.version: ThinkPad X230
dmi.sys.vendor: LENOVO
mtime.conffile..etc.modprobe.d.alsa-base.conf: 2016-06-18T13:10:44.472710

** Affects: alsa-driver (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 alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/1616573

Title:
  [2306CTO, Realtek ALC269VC, Speaker, Internal] fails after a while

Status in alsa-driver package in Ubuntu:
  New

Bug description:
  I'm using a ThinkPad X230. Ever since the upgrade to 16.04 Ubuntu
  GNOME, I will have intermittent sound failure both through internal
  speakers and headphones. Everything will be fine, I won't play
  anything for a while, and when I try to play something new, there is
  no audio.

  I've confirmed that the audio is not muted. I tried "killall
  pulseaudio; rm -r ~/.config/pulse/* ; rm -r ~/.pulse*" then
  "pulseaudio -k" and while it restored sound when my headphones are
  plugged it, the internal speakers are not restored.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu5
  ProcVersionSignature: Ubuntu 4.4.0-34.53-generic 4.4.15
  Uname: Linux 4.4.0-34-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  anon  15846 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Aug 24 12:58:26 2016
  InstallationDate: Installed on 2016-04-24 (122 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Release amd64 
(20160421)
  PackageArchitecture: all
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_Jack: Speaker, Internal
  Symptom_Type: Sound works for a while, then breaks
  Title: [2306CTO, Realtek ALC269VC, Speaker, Internal] fails after a while
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/17/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: G2ETA5WW (2.65 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 2306CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrG2ETA5WW(2.65):bd09/17/2015:svnLENOVO:pn2306CTO:pvrThinkPadX230:rvnLENOVO:rn2306CTO:rvrNotDefined:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2306CTO
  dmi.product.version: ThinkPad X230
  dmi.sys.vendor: LENOVO
  mtime.conffile..etc.modprobe.d.alsa-base.conf: 2016-06-18T13:10:44.472710

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1616573/+subscriptions

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

[Touch-packages] [Bug 1613469] Re: [MIR] ofono-qt

2016-08-24 Thread Tiago Salem Herrmann
- libqofono did not exist by the time telepathy-ofono was created, and
ofono-qt was the only alternative. libqofono started as a fork of ofono-
qt IIRC.

- The tests work with ofono-phonesim (actually phonesim is required).

- Some tests require manual interaction:
http://paste.ubuntu.com/23085781/

- We don't have a roadmap AFAIK.

- It will be a lot of effort to move tp-ofono to link against libqofono.
We have patches in ofono-qt that change some internal logic and add
custom features that are probably not part of libqofono yet. Even the
telepathy-ofono tests are based on ofono-qt. There is a mock to simulate
a real modem using ofono-qt as base.

- If moving ofono-qt to main is really a blocker, as a short term
solution I would say we could move ofono-qt into telepathy-ofono (since
we already have part of the code there for tests), and than come up with
a roadmap to finally move telepathy-ofono to link against libqofono.

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1599695] Re: When running cmake from QtC on a webbrowser-app branch it fails

2016-08-24 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
 Assignee: (unassigned) => Olivier Tilloy (osomon)

** Changed in: webbrowser-app (Ubuntu)
   Importance: Undecided => High

** Changed in: webbrowser-app (Ubuntu)
   Status: Incomplete => In Progress

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

Title:
  When running cmake from QtC on a webbrowser-app branch it fails

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  When running cmake from QtC on a webbrowser-app branch in Xenial it
  fails with the following error:

  CMake Error at src/Ubuntu/CMakeLists.txt:31 (message):
    Invalid chromium version: ''

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1599695/+subscriptions

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


[Touch-packages] [Bug 1599695] Re: When running cmake from QtC on a webbrowser-app branch it fails

2016-08-24 Thread Launchpad Bug Tracker
** Branch linked: lp:~osomon/webbrowser-app/fix-crossbuild-1599695

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

Title:
  When running cmake from QtC on a webbrowser-app branch it fails

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  When running cmake from QtC on a webbrowser-app branch in Xenial it
  fails with the following error:

  CMake Error at src/Ubuntu/CMakeLists.txt:31 (message):
    Invalid chromium version: ''

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1599695/+subscriptions

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


[Touch-packages] [Bug 1616517] Re: whoopsie does not send fields from some package management application crashes

2016-08-24 Thread Chris J Arges
Hello Brian, or anyone else affected,

Accepted whoopsie into trusty-proposed. The package will build now and
be available at
https://launchpad.net/ubuntu/+source/whoopsie/0.2.24.6ubuntu3 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: whoopsie (Ubuntu Trusty)
   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 whoopsie in Ubuntu.
https://bugs.launchpad.net/bugs/1616517

Title:
  whoopsie does not send fields from some package management application
  crashes

Status in whoopsie package in Ubuntu:
  Triaged
Status in whoopsie source package in Trusty:
  Fix Committed
Status in whoopsie source package in Xenial:
  Triaged

Bug description:
  The package hook for update-manager and aptdaemon add information like
  /var/log/apt/term.log and /var/log/apt/history.log that would be
  useful in debugging crashes from those applications.  However, those
  files can be larger than 1 KB so whoopsie does not send them to the
  Error Tracker.  We should be sending those fields along.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe DpkgHistoryLog.txt in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe DpkgHistoryLog.txt not in it

  With the version of the package from -proposed DpkgHistoryLog.txt
  should appear on the OOPS page for the crash that was sent.

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

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


[Touch-packages] [Bug 1616559] Re: whoopsie should send more data to the Error Tracker

2016-08-24 Thread Chris J Arges
Hello Brian, or anyone else affected,

Accepted whoopsie into trusty-proposed. The package will build now and
be available at
https://launchpad.net/ubuntu/+source/whoopsie/0.2.24.6ubuntu3 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: whoopsie (Ubuntu Trusty)
   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 whoopsie in Ubuntu.
https://bugs.launchpad.net/bugs/1616559

Title:
  whoopsie should send more data to the Error Tracker

Status in whoopsie package in Ubuntu:
  Invalid
Status in whoopsie source package in Trusty:
  Fix Committed

Bug description:
  The whoopsie change which allows sending of any field less than 1 KB
  and creates a blacklist of not sent fields should be backported to
  Trusty.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe GsettingsChanges in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe GsettingsChanges not in it

  With the version of the package from -proposed GsettingsChanges should
  appear on the OOPS page for the crash that was sent.  An example can
  be found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
  fa163eec78fa

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

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


[Touch-packages] [Bug 1616517] Re: whoopsie does not send fields from some package management application crashes

2016-08-24 Thread Brian Murray
** Changed in: whoopsie (Ubuntu Trusty)
 Assignee: (unassigned) => Brian Murray (brian-murray)

** Description changed:

  The package hook for update-manager and aptdaemon add information like
  /var/log/apt/term.log and /var/log/apt/history.log that would be useful
  in debugging crashes from those applications.  However, those files can
  be larger than 1 KB so whoopsie does not send them to the Error Tracker.
  We should be sending those fields along.
+ 
+ Test Case
+ -
+ 1) launch update-manager
+ 2) kill -11 the update-manager process
+ 3) locate the update-manager .crash file and observe DpkgHistoryLog.txt in it
+ 4) send crash report to Error Tracker (look for .uploaded file)
+ 5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
+ 6) observe DpkgHistoryLog.txt not in it
+ 
+ With the version of the package from -proposed DpkgHistoryLog.txt should
+ appear on the OOPS page for the crash that was sent.

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

Title:
  whoopsie does not send fields from some package management application
  crashes

Status in whoopsie package in Ubuntu:
  Triaged
Status in whoopsie source package in Trusty:
  Triaged
Status in whoopsie source package in Xenial:
  Triaged

Bug description:
  The package hook for update-manager and aptdaemon add information like
  /var/log/apt/term.log and /var/log/apt/history.log that would be
  useful in debugging crashes from those applications.  However, those
  files can be larger than 1 KB so whoopsie does not send them to the
  Error Tracker.  We should be sending those fields along.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe DpkgHistoryLog.txt in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe DpkgHistoryLog.txt not in it

  With the version of the package from -proposed DpkgHistoryLog.txt
  should appear on the OOPS page for the crash that was sent.

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

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


[Touch-packages] [Bug 1616559] Re: whoopsie should send more data to the Error Tracker

2016-08-24 Thread Brian Murray
** Description changed:

  The whoopsie change which allows sending of any field less than 1 KB and
- creates a blacklist of not sent fields should be backported to Trusty
+ creates a blacklist of not sent fields should be backported to Trusty.
+ 
+ Test Case
+ -
+ 1) launch update-manager
+ 2) kill -11 the update-manager process
+ 3) locate the update-manager .crash file and observe GsettingsChanges in it
+ 4) send crash report to Error Tracker (look for .uploaded file)
+ 5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
+ 6) observe GsettingsChanges not in it
+ 
+ With the version of the package from -proposed GsettingsChanges should
+ appear on the OOPS page for the crash that was sent.  An example can be
+ found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
+ fa163eec78fa

** Changed in: whoopsie (Ubuntu Trusty)
 Assignee: (unassigned) => Brian Murray (brian-murray)

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

Title:
  whoopsie should send more data to the Error Tracker

Status in whoopsie package in Ubuntu:
  Invalid
Status in whoopsie source package in Trusty:
  Triaged

Bug description:
  The whoopsie change which allows sending of any field less than 1 KB
  and creates a blacklist of not sent fields should be backported to
  Trusty.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe GsettingsChanges in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe GsettingsChanges not in it

  With the version of the package from -proposed GsettingsChanges should
  appear on the OOPS page for the crash that was sent.  An example can
  be found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
  fa163eec78fa

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

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


[Touch-packages] [Bug 1590844] Re: Bluetooth headset not working with Meizu Pro 5 Ubuntu Edition

2016-08-24 Thread Konrad Zapałowicz
I have tried the Bluetooth chip firmware embedded in updates as on this
page http://www.flymeos.com/firmwarelist?modelId=10&type=1 and the .hcd
file there is exact the same that we already have on Ubuntu enabled
Pro5.

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

Title:
  Bluetooth headset not working with Meizu Pro 5 Ubuntu Edition

Status in Canonical System Image:
  Confirmed
Status in turbo:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  My bluetooth headset perfectly connects to my Meizu Pro 5. However,
  the sound quality is so poor (a lot of noise) such that you don't
  understand your communication partner. Note that the headset works
  perfectly together with Ubuntu on my Nexus 4.

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

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


[Touch-packages] [Bug 1616559] [NEW] whoopsie should send more data to the Error Tracker

2016-08-24 Thread Brian Murray
Public bug reported:

The whoopsie change which allows sending of any field less than 1 KB and
creates a blacklist of not sent fields should be backported to Trusty.

Test Case
-
1) launch update-manager
2) kill -11 the update-manager process
3) locate the update-manager .crash file and observe GsettingsChanges in it
4) send crash report to Error Tracker (look for .uploaded file)
5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
6) observe GsettingsChanges not in it

With the version of the package from -proposed GsettingsChanges should
appear on the OOPS page for the crash that was sent.  An example can be
found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
fa163eec78fa

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

** Affects: whoopsie (Ubuntu Trusty)
 Importance: High
 Assignee: Brian Murray (brian-murray)
 Status: Triaged


** Tags: trusty

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

** Also affects: whoopsie (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: whoopsie (Ubuntu)
   Status: Triaged => Invalid

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

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

** Summary changed:

- whoopsie still uses acceptable fields to decide what to upload
+ whoopsie should send more data to the Error Tracker

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

Title:
  whoopsie should send more data to the Error Tracker

Status in whoopsie package in Ubuntu:
  Invalid
Status in whoopsie source package in Trusty:
  Triaged

Bug description:
  The whoopsie change which allows sending of any field less than 1 KB
  and creates a blacklist of not sent fields should be backported to
  Trusty.

  Test Case
  -
  1) launch update-manager
  2) kill -11 the update-manager process
  3) locate the update-manager .crash file and observe GsettingsChanges in it
  4) send crash report to Error Tracker (look for .uploaded file)
  5) view crash report in Error Tracker (find OOPS ID by looking at syslog / 
whoopsie status)
  6) observe GsettingsChanges not in it

  With the version of the package from -proposed GsettingsChanges should
  appear on the OOPS page for the crash that was sent.  An example can
  be found at https://errors.ubuntu.com/oops/a33cc22e-699c-11e6-909a-
  fa163eec78fa

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

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


[Touch-packages] [Bug 1608822] Re: signon fails tests on Qt 5.6

2016-08-24 Thread Timo Jyrinki
The silo 42 version of signon now passes build against Qt 5.6.1 with the
added commit from upstream: https://launchpad.net/~canonical-
qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/6829102/+listing-
archive-extra

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

Title:
  signon fails tests on Qt 5.6

Status in signon package in Ubuntu:
  Confirmed

Bug description:
  See build logs at:

  https://launchpadlibrarian.net/276197217/buildlog_ubuntu-yakkety-
  
amd64.signon_8.58+16.04.20151106-0ubuntu2~~testrebuild1~~testrebuild1~1_BUILDING.txt.gz

  Qt 5.6 aims to be landed to the xenial-overlay so this should be
  fixed.

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

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

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


[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Richard
No issue with Epson printer, problem with scanner.

$ dpkg -l | grep -i epson

ii  epson-inkjet-printer-escpr  1.6.5-1lsb3.2   
amd64Epson Inkjet Printer 
Driver (ESC/P-R) for Linux
ii  iscan   2.30.2-2
amd64simple, easy to use 
scanner utility for EPSON scanners

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

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

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


[Touch-packages] [Bug 1596662] Re: pcscd fails to read CAC card data, errors out

2016-08-24 Thread Zach La Celle
I'm confirming that the info from @nunojpg seems to hold for my reader
as well.  It updated from 0a5c:5800 to 0a5c:5832, using the Dell
ControlVault2 update you listed above.

This firmware seems to work correctly (although now my security devices
in the browser aren't working, but that's another matter):

 debuglog.c:289:DebugLogSetLevel() debug level=debug
0012 debuglog.c:310:DebugLogSetCategory() Debug options: APDU
^[[36m0006^[[0m ^[[34mpcscdaemon.c:357:main() Force colored logs^[[0m
^[[36m0312^[[0m configfile.l:358:DBGetReaderList() Parsing conf file: 
/usr/local/etc/reader.conf.d
^[[36m0019^[[0m ^[[34mpcscdaemon.c:672:main() pcsc-lite 1.8.17 daemon 
ready.^[[0m
^[[36m2333^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0041^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0035^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x0A5C, PID: 0x5832, path: /dev/bus/usb/001/007
^[[36m0033^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x0A5C, PID: 0x5832, path: /dev/bus/usb/001/007
^[[36m0030^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0035^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1BCF, PID: 0x2B91, path: /dev/bus/usb/001/008
^[[36m0030^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1BCF, PID: 0x2B91, path: /dev/bus/usb/001/008
^[[36m0032^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0032^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x413C, PID: 0x2513, path: /dev/bus/usb/001/002
^[[36m0033^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x0C45, PID: 0x0133, path: /dev/bus/usb/001/004
^[[36m0033^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x0C45, PID: 0x0133, path: /dev/bus/usb/001/004
^[[36m0030^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x413C, PID: 0x2513, path: /dev/bus/usb/001/002
^[[36m0034^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x045E, PID: 0x0040, path: /dev/bus/usb/001/006
^[[36m0032^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x413C, PID: 0x2513, path: /dev/bus/usb/001/002
^[[36m0030^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0033^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x8087, PID: 0x0A2B, path: /dev/bus/usb/001/003
^[[36m0031^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x8087, PID: 0x0A2B, path: /dev/bus/usb/001/003
^[[36m0031^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0002, path: /dev/bus/usb/001/001
^[[36m0031^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x413C, PID: 0x2513, path: /dev/bus/usb/001/005
^[[36m0044^[[0m hotplug_libudev.c:294:get_driver() Looking for a driver for 
VID: 0x1D6B, PID: 0x0003, path: /dev/bus/usb/002/001
^[[36m17434070^[[0m winscard_msg_srv.c:251:ProcessEventsServer() Common channel 
packet arrival
^[[36m0047^[[0m winscard_msg_srv.c:263:ProcessEventsServer() 
ProcessCommonChannelRequest detects: 7
^[[36m0002^[[0m pcscdaemon.c:132:SVCServiceRunLoop() A new context thread 
creation is requested: 7
^[[36m0086^[[0m winscard_svc.c:329:ContextThread() Authorized PC/SC client
^[[36m0004^[[0m winscard_svc.c:333:ContextThread() Thread is started: 
dwClientID=7, threadContext @0x2497890
^[[36m0020^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_VERSION from client 7
^[[36m0003^[[0m winscard_svc.c:363:ContextThread() Client is protocol 
version 4:3
^[[36m0001^[[0m winscard_svc.c:383:ContextThread() CMD_VERSION rv=0x0 for 
client 7
^[[36m0113^[[0m winscard_svc.c:351:ContextThread() Received command: 
ESTABLISH_CONTEXT from client 7
^[[36m0022^[[0m winscard.c:213:SCardEstablishContext() Establishing 
Context: 0x7A22B4A6
^[[36m0002^[[0m winscard_svc.c:444:ContextThread() ESTABLISH_CONTEXT rv=0x0 
for client 7
^[[36m0181^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_GET_READERS_STATE from client 7
^[[36m0151^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_GET_READERS_STATE from client 7
^[[36m1811^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_GET_READERS_STATE from client 7
^[[36m01001014^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_GET_READERS_STATE from client 7
^[[36m01000993^[[0m winscard_svc.c:351:ContextThread() Received command: 
CMD_GET_READERS_STATE from client 7

--

[Touch-packages] [Bug 1616533] Re: "Forecast not available" error in GNOME Weather app

2016-08-24 Thread Bug Watch Updater
** Changed in: libgweather
   Status: Unknown => Confirmed

** Changed in: libgweather
   Importance: Unknown => High

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

Title:
  "Forecast not available" error in GNOME Weather app

Status in libgweather:
  Confirmed
Status in gnome-weather package in Ubuntu:
  Triaged
Status in libgweather package in Ubuntu:
  Triaged

Bug description:
  As reported at http://www.omgubuntu.co.uk/2016/08/gnome-weather-
  forecast-not-available

  The weather forecast provider used by the GNOME Weather app
  discontinued or moved its service.

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

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


[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-08-24 Thread Bartosz Kosiorek
** Changed in: ubuntu-calculator-app
   Status: Fix Committed => Fix Released

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  Fix Released
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  Fix Released
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Released
Status in Ubuntu Calendar App:
  Fix Released
Status in Ubuntu Clock App:
  Fix Released
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Released
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1544477] Re: No sound notification for new SMS (Ubuntu Touch)

2016-08-24 Thread Jim Hodapp
Added qtmultimedia to the affected list to capture future effort to more
permanently fix this bug. Recovery after a media-hub-server crash really
belongs in qtmultimedia so that every supported client is able to
continue playback even after a media-hub-server crash.

** Changed in: telephony-service (Ubuntu)
   Status: In Progress => Fix Committed

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

** Also affects: qtmultimedia-opensource-src (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: qtmultimedia-opensource-src (Ubuntu)
   Status: New => Confirmed

** Changed in: telephony-service (Ubuntu)
   Importance: Undecided => High

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

** Changed in: qtmultimedia-opensource-src (Ubuntu)
   Importance: Undecided => High

** Changed in: indicator-sound (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  No sound notification for new SMS (Ubuntu Touch)

Status in Canonical System Image:
  In Progress
Status in indicator-sound package in Ubuntu:
  Invalid
Status in media-hub package in Ubuntu:
  Incomplete
Status in pulseaudio package in Ubuntu:
  Incomplete
Status in qtmultimedia-opensource-src package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Fix Committed
Status in unity8 package in Ubuntu:
  Fix Committed

Bug description:
  I noticed for last 2-3 days there is no sound notification for a new
  SMS, but there's a blinking green LED notification. Also in the
  indicator menu the envelope icon turns green and the new SMS is listed
  as usual. Things are working alright for Telegram, Gmail etc.
  (sound+LED+indicator menu).

  Device: bq Aquaris E5 HD, Ubuntu 15.04 (OTA-9)

  UPDATE: Screenshots get silent too.

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

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


[Touch-packages] [Bug 1615021] NEW screen output

2016-08-24 Thread bugproxy
--- Comment (attachment only) From gpicc...@br.ibm.com 2016-08-24 12:39 
EDT---


** Attachment added: "NEW screen output"
   
https://bugs.launchpad.net/bugs/1615021/+attachment/4727113/+files/screen.output

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

Title:
  Unable to network boot Ubuntu 16.04 installer normally on Briggs

Status in busybox package in Ubuntu:
  Fix Committed
Status in debian-installer package in Ubuntu:
  Triaged
Status in systemd package in Ubuntu:
  Fix Committed
Status in busybox source package in Xenial:
  Won't Fix
Status in debian-installer source package in Xenial:
  Triaged
Status in systemd source package in Xenial:
  In Progress
Status in busybox source package in Yakkety:
  Fix Committed
Status in debian-installer source package in Yakkety:
  Triaged
Status in systemd source package in Yakkety:
  Fix Committed

Bug description:
  == Comment: #7 - Guilherme Guaglianoni Piccoli  - 
2016-08-19 10:08:07 ==
  The normal procedure to perform a Netboot installation of Ubuntu 16.04 is to 
download the latest vmlinux and initrd.gz files available, and kexec them with 
no parameters (at least in ppc64el).

  We're experiencing a strange issue in which the installer freezes
  before menus are showed. The system hangs in the point specified
  below, right after the i40e driver initialization:

  [   11.052832] i40e 0002:01:00.0 enP2p1s0f0: renamed from eth0
  [   11.073976] i40e 0002:01:00.1 enP2p1s0f1: renamed from eth1
  [   11.117799] i40e 0002:01:00.2 enP2p1s0f2: renamed from eth2
  [   11.225745] i40e 0002:01:00.3 enP2p1s0f3: renamed from eth3
  ***HANG***

  The most difficult part in this issue is that it seems to be a timing
  issue/race condition, and many debug trials end up by avoiding the
  issue reproduction (heisenbug).

  We were successful though in getting logs by booting the kernel with
  the command-line "BOOT_DEBUG=2" and by changing the initrd in order to
  enable systemd debug; only the files "init" and "start-udev" were
  changed in initrd, both attached here.

  We've attached here a saved screen session that shows the entire boot
  process until it gets flooded with lots of messages like:

  "starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'

  seq 3244 queued, 'add' 'pci_bus'
  starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  passed 408 byte device to netlink monitor 0x1003cfe8020seq 3236 
running'/bin/readlink /etc/udev/rules.d/80-net-setup-l
  ink.rules'(err) 'failed to execute '/bin/readlink' '/bin/readlink 
/etc/udev/rules.d/80-net-setup-link.rules': No such
  file or directory'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'
  Process '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' failed with 
exit code 2.
  PROGRAM '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' 
/lib/udev/rules.d/73-usb-net-by-mac.rules:6
  passed device to netlink monitor 0x1003d01f730
  "

  Then it keeps hanged in this stage. We re-tested it by changing the
  file 73-usb-net-by-mac.rules in initrd, replacing "
  /etc/udev/rules.d/80-net-setup-link.rules" to  "/lib/udev/rules.d/80
  -net-setup-link.rules", since the former does not exist whereas the
  latter does. Same issue were observed!

  Notice that if we boot the installer with command-line "net.ifnames=0"
  or "net.ifnames=1", the problem does not reproduces anymore.

  We want to ask Canonical's help in investigating this issue.
  Thanks,

  Guilherme

  
  SRU INFORMATION for systemd
  ===

  Test case:
   * Check what happens for uevents on devices which are not USB network 
interfaces:
 udevadm test /sys/devices/virtual/mem/null
 udevadm test /sys/class/net/lo

   With the current version these will run

PROGRAM '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  /lib/udev/rules.d/73-usb-net-by-mac.rules:6

   which is pointless. With the proposed version these should be gone.

   * Ensure that the rule still works as intended by connecting an USB
  network device that has a permanent MAC address (e. g. Android
  tethering uses a temporary MAC): You should get a MAC-based name like
  "enx12345678" for it. Now disconnect it again, disable ifnames with

  sudo ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules

  and reconnect the device. You should now get a kernel name like "usb0"
  for it.

  * Regression potential: Errors in the rule could break persistent
  naming - or its disabling - of USB network interfaces. Running the
  above test carefully

[Touch-packages] [Bug 1616548] [NEW] Cups causes LibreOffice unittests to loop in a sbuild

2016-08-24 Thread Björn Michaelsen
Public bug reported:

When building LibreOffice 1:5.2.0-0ubuntu1 on a xenial host with a
yakkety sbuild, e.g. by:

sbuild -A -d yakkety-amd64 (...).dsc

this loops/busy hangs with unittests. This was working ok up to
5.2.0~rc4 (=final), it is a regression by a LibreOffice dependency, most
likely CUPS, which was updated.

I tried to inject debug symbols by running with a: --chroot-setup-
command and then run something along the lines of:

 apt install cups
 wget http://launchpadlibrarian.net/278966811/cups-dbgsym_2.2~rc1-4_amd64.ddeb
 wget 
http://launchpadlibrarian.net/278966816/libcups2-dbgsym_2.2~rc1-4_amd64.ddeb
 dpkg -i cups-dbgsym_2.2~rc1-4_amd64.ddeb
 dpkg -i libcups2-dbgsym_2.2~rc1-4_amd64.ddeb

before starting the build proper, but I got only marginally better debug
info. The hanging LibreOffice test processes usually have 2-4 child
processes. The parent and one of the childs are busy, while the rest
idle.

Here is a stacktrace of the busy child:

Program received signal SIGPIPE, Broken pipe.
0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
43  in fgetspent.c
(gdb) bt
#0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
#1  0x001e in ?? ()
#2  0x55c4976981e0 in ?? ()
#3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
#4  0x4002 in ?? ()
#5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at emit.c:145
#6  0x in ?? ()

Here is a stacktrace of the busy parent:

Thread 3 "CUPSManager cup" received signal SIGPIPE, Broken pipe.
0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
43  in fgetspent.c
(gdb) bt
#0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
#1  0x001e in ?? ()
#2  0x55c4976981e0 in ?? ()
#3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
#4  0x4002 in ?? ()
#5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at emit.c:145
#6  0x in ?? ()


When pressing "c" in gdb to continue, both processes stop very quickly again 
with the SIGPIPE.
Venturing a guess: Is the signal handling of CUPS b0rked? As fgetspent reads 
the shadow file[1], maybe there are missing permissions or other sandbox issues 
that CUPS doesnt handle error cases for properly?

[1] http://linux.die.net/man/3/fgetspent

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

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

Title:
  Cups causes LibreOffice unittests to loop in a sbuild

Status in cups package in Ubuntu:
  New

Bug description:
  When building LibreOffice 1:5.2.0-0ubuntu1 on a xenial host with a
  yakkety sbuild, e.g. by:

  sbuild -A -d yakkety-amd64 (...).dsc

  this loops/busy hangs with unittests. This was working ok up to
  5.2.0~rc4 (=final), it is a regression by a LibreOffice dependency,
  most likely CUPS, which was updated.

  I tried to inject debug symbols by running with a: --chroot-setup-
  command and then run something along the lines of:

   apt install cups
   wget http://launchpadlibrarian.net/278966811/cups-dbgsym_2.2~rc1-4_amd64.ddeb
   wget 
http://launchpadlibrarian.net/278966816/libcups2-dbgsym_2.2~rc1-4_amd64.ddeb
   dpkg -i cups-dbgsym_2.2~rc1-4_amd64.ddeb
   dpkg -i libcups2-dbgsym_2.2~rc1-4_amd64.ddeb

  before starting the build proper, but I got only marginally better
  debug info. The hanging LibreOffice test processes usually have 2-4
  child processes. The parent and one of the childs are busy, while the
  rest idle.

  Here is a stacktrace of the busy child:

  Program received signal SIGPIPE, Broken pipe.
  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  43in fgetspent.c
  (gdb) bt
  #0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  #1  0x001e in ?? ()
  #2  0x55c4976981e0 in ?? ()
  #3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
  #4  0x4002 in ?? ()
  #5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at emit.c:145
  #6  0x in ?? ()

  Here is a stacktrace of the busy parent:

  Thread 3 "CUPSManager cup" received signal SIGPIPE, Broken pipe.
  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  43in fgetspent.c
  (gdb) bt
  #0  0x2b0a80dd615f in fgetspent (stream=0x11) at fgetspent.c:43
  #1  0x001e in ?? ()
  #2  0x55c4976981e0 in ?? ()
  #3  0x2b0a8aff8d20 in ipp_options () from 
/usr/lib/x86_64-linux-gnu/libcups.so.2
  #4  0x4002 in ?? ()
  #5  0x2b0a8ada9feb in ppdCollect2 (ppd=0x2b0a8ada9bdf 
, section=29, min_order=0, choices=0x2b0a8adad6f3 
) at 

[Touch-packages] [Bug 1613469] Re: [MIR] ofono-qt

2016-08-24 Thread Michael Terry
Especially since the rest of our stack apparently uses libqofono...  See
bug 1612702 that wants it in main for indicator-network, address-book-
app and ubuntu-system-settings.

Why did we choose onofo-qt for telepathy-ofono?  How much work would it
be to switch to libqofono and standardize, so we don't have duplicate
libraries in main?

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1615021] Comment bridged from LTC Bugzilla

2016-08-24 Thread bugproxy
--- Comment From gpicc...@br.ibm.com 2016-08-24 12:34 EDT---
Thanks very much vorlon and pitti. Pretty nice findings!

But...the issue still persists. I'll summarize the tests I made:

1) Firstly, I changed the link /usr/bin/readlink and, as vorlon
predicted, this didn't solve the issue.

2) Then, independently of (1), I applied pitti's patch to xenial's "73
-usb-net-by-mac.rules" and...unfortunately it also didn't solve the
issue.

What impress me more is the difficult/interference of the simplest debug
on the issue! After testing pitti's patch, still with the patch applied,
I changed the start-udev load like this:

(before)
SYSTEMD_LOG_LEVEL=notice /lib/systemd/systemd-udevd --daemon 
--resolve-names=never
(after my change)
SYSTEMD_LOG_LEVEL=debug /lib/systemd/systemd-udevd --daemon 
--resolve-names=never --debug

Well, the issue reproduced and I didn't see a single extra log message.

After this, I kept both pitti's patch and this systemd debug parameter,
but I booted with command-line "BOOT_DEBUG=1". Guess what? I was flooded
by messages but the installer showed up. This is really weird for
me...I'll attach a screen session of this last trial.

I appreciate any suggestion you have to debug the issue further - by the
way, using "net.ifnames=1" workarounds the issue too. Basically, any
command-line option seems to solve it, even the simplest debug
parameter.

Thanks very much for the help and advice,

Guilherme

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

Title:
  Unable to network boot Ubuntu 16.04 installer normally on Briggs

Status in busybox package in Ubuntu:
  Fix Committed
Status in debian-installer package in Ubuntu:
  Triaged
Status in systemd package in Ubuntu:
  Fix Committed
Status in busybox source package in Xenial:
  Won't Fix
Status in debian-installer source package in Xenial:
  Triaged
Status in systemd source package in Xenial:
  In Progress
Status in busybox source package in Yakkety:
  Fix Committed
Status in debian-installer source package in Yakkety:
  Triaged
Status in systemd source package in Yakkety:
  Fix Committed

Bug description:
  == Comment: #7 - Guilherme Guaglianoni Piccoli  - 
2016-08-19 10:08:07 ==
  The normal procedure to perform a Netboot installation of Ubuntu 16.04 is to 
download the latest vmlinux and initrd.gz files available, and kexec them with 
no parameters (at least in ppc64el).

  We're experiencing a strange issue in which the installer freezes
  before menus are showed. The system hangs in the point specified
  below, right after the i40e driver initialization:

  [   11.052832] i40e 0002:01:00.0 enP2p1s0f0: renamed from eth0
  [   11.073976] i40e 0002:01:00.1 enP2p1s0f1: renamed from eth1
  [   11.117799] i40e 0002:01:00.2 enP2p1s0f2: renamed from eth2
  [   11.225745] i40e 0002:01:00.3 enP2p1s0f3: renamed from eth3
  ***HANG***

  The most difficult part in this issue is that it seems to be a timing
  issue/race condition, and many debug trials end up by avoiding the
  issue reproduction (heisenbug).

  We were successful though in getting logs by booting the kernel with
  the command-line "BOOT_DEBUG=2" and by changing the initrd in order to
  enable systemd debug; only the files "init" and "start-udev" were
  changed in initrd, both attached here.

  We've attached here a saved screen session that shows the entire boot
  process until it gets flooded with lots of messages like:

  "starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'

  seq 3244 queued, 'add' 'pci_bus'
  starting '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'
  passed 408 byte device to netlink monitor 0x1003cfe8020seq 3236 
running'/bin/readlink /etc/udev/rules.d/80-net-setup-l
  ink.rules'(err) 'failed to execute '/bin/readlink' '/bin/readlink 
/etc/udev/rules.d/80-net-setup-link.rules': No such
  file or directory'
  '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules'(err) 'failed to 
execute '/bin/readlink' '/bin/readlink /etc/
  udev/rules.d/80-net-setup-link.rules': No such file or directory'
  Process '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' failed with 
exit code 2.
  PROGRAM '/bin/readlink /etc/udev/rules.d/80-net-setup-link.rules' 
/lib/udev/rules.d/73-usb-net-by-mac.rules:6
  passed device to netlink monitor 0x1003d01f730
  "

  Then it keeps hanged in this stage. We re-tested it by changing the
  file 73-usb-net-by-mac.rules in initrd, replacing "
  /etc/udev/rules.d/80-net-setup-link.rules" to  "/lib/udev/rules.d/80
  -net-setup-link.rules", since the former does not exist whereas the
  latter does. Same issue were observed!

  Notice that if we boot the installer with command-line "net.ifname

[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
/etc/sane.d/dll.d/iscan

** Attachment added: "iscan"
   
https://bugs.launchpad.net/ubuntu/+source/lsb/+bug/1536353/+attachment/4727110/+files/iscan

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

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

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


[Touch-packages] [Bug 1616538] [NEW] telepathyHelper.emergencyCallsAvailable no longer works

2016-08-24 Thread Michael Terry
Public bug reported:

I believe it used to.

I wanted to use it to control whether we show the "Emergency" button on
the lockscreen.

Here's a sample qml file that you can run like so to reproduce:

qmlscene test.qml --desktop_file_hint=webbrowser-app.desktop

"""
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Telephony 0.1 as Telephony

MainView {
height: units.gu(20)
width: units.gu(40)

Column {
anchors.fill: parent
spacing: units.gu(2)

Label {
text: "Ready: " + (telepathyHelper.ready ? "yes" : "no")
}

Label {
text: "Emergency Calls Available: " + 
(telepathyHelper.emergencyCallsAvailable ? "yes" : "no")
}

Label {
text: "Both: " + ((telepathyHelper.ready && 
telepathyHelper.emergencyCallsAvailable) ? "yes" : "no")
}
}
}
"""

** Affects: telephony-service (Ubuntu)
 Importance: Undecided
 Assignee: Gustavo Pichorim Boiko (boiko)
 Status: New

** Changed in: telephony-service (Ubuntu)
 Assignee: (unassigned) => Gustavo Pichorim Boiko (boiko)

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

Title:
  telepathyHelper.emergencyCallsAvailable no longer works

Status in telephony-service package in Ubuntu:
  New

Bug description:
  I believe it used to.

  I wanted to use it to control whether we show the "Emergency" button
  on the lockscreen.

  Here's a sample qml file that you can run like so to reproduce:

  qmlscene test.qml --desktop_file_hint=webbrowser-app.desktop

  """
  import QtQuick 2.4
  import Ubuntu.Components 1.3
  import Ubuntu.Telephony 0.1 as Telephony

  MainView {
  height: units.gu(20)
  width: units.gu(40)

  Column {
  anchors.fill: parent
  spacing: units.gu(2)

  Label {
  text: "Ready: " + (telepathyHelper.ready ? "yes" : "no")
  }

  Label {
  text: "Emergency Calls Available: " + 
(telepathyHelper.emergencyCallsAvailable ? "yes" : "no")
  }

  Label {
  text: "Both: " + ((telepathyHelper.ready && 
telepathyHelper.emergencyCallsAvailable) ? "yes" : "no")
  }
  }
  }
  """

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telephony-service/+bug/1616538/+subscriptions

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


[Touch-packages] [Bug 1612708] Re: Symbolic Link does not work in 16.04 LTS as in 14.04 LTS

2016-08-24 Thread prof2004
I am running ubuntu 16.04.1, sobthe patch cannot be applied.

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

Title:
  Symbolic Link does not work in 16.04 LTS as in 14.04 LTS

Status in colord package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 16.04.1 LTS

  colord:
Installiert:   1.2.12-1ubuntu1
Installationskandidat: 1.2.12-1ubuntu1
Versionstabelle:
   *** 1.2.12-1ubuntu1 500
  500 http://de.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  100 /var/lib/dpkg/status

  Under Ubuntu 14.04 LTS I have created NAS access by using 'gvfs-mount
  smb://nasdo/public'. It is linked to '/run/user/1000/gvfs/ als smb-
  share:server=nasdo,share=public' and I have created a Symbolic Link to
  this point with 'ln -s /run/user/1000/gvfs/smb-
  share\:server\=nasdo\,share\=public ~/nasdo_public'. Using this link
  folders, and files on the NAS have been accessable with r/w from
  Ubuntu 14.04 LTS. This is, what I expect from 16.04, too.

  Since I have upgraded to ubuntu 16.04 LTS a few days ago, all the
  links seem to be the same, but opening a file does not work. It comes
  to an input/output error. I can use the links to folders to navigate,
  but there is no chance to open e.g. an LibreOffice Calc Sheet, nor do
  I have access to mail folder via Thunderbird.

  Using gvfs-mount creates a shared folder in Nautilus called public.
  Using this way to access the NAS, and open the Calc file works with
  ubuntu 16.04 LTS fine.

  Locking to the syslog while trying to open a file creates the following 
entries:
  Aug 12 16:47:19 UDO systemd[1]: Started Hostname Service.
  Aug 12 16:47:22 UDO org.gtk.vfs.Daemon[3843]: ** (gvfsd:3924): WARNING **: 
dbus_mount_reply: Error from org.gtk.vfs.Mountable.mount(): Empfangen der 
Freigabenliste vom Server ist gescheitert: Verbindungsaufbau abgelehnt
  Aug 12 16:47:22 UDO org.gtk.vfs.Daemon[3843]: ** (process:8645): WARNING **: 
Couldn't create directory monitor on smb://x-gnome-default-workgroup/. Error: 
Der angegebene Ort ist nicht eingehängt
  Aug 12 16:47:25 UDO org.gtk.vfs.Daemon[3843]: ** (gvfsd:3924): WARNING **: 
dbus_mount_reply: Error from org.gtk.vfs.Mountable.mount(): Empfangen der 
Freigabenliste vom Server ist gescheitert: Verbindungsaufbau abgelehnt
  Aug 12 16:47:25 UDO org.gtk.vfs.Daemon[3843]: ** (process:8663): WARNING **: 
Couldn't create directory monitor on smb://x-gnome-default-workgroup/. Error: 
Der angegebene Ort ist nicht eingehängt
  Aug 12 16:47:48 UDO systemd[1]: Started CUPS Scheduler.
  Aug 12 16:47:48 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8722]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:47:48 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8722]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:50:15 UDO systemd[1]: Started CUPS Scheduler.
  Aug 12 16:50:15 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8842]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:50:15 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8842]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:54:32 UDO systemd[1]: Started CUPS Scheduler.
  Aug 12 16:54:32 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8936]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:54:32 UDO colord[2727]: (colord:2727): Cd-WARNING **: failed to get 
session [pid 8936]: Kein passendes Gerät bzw. keine passende Adresse gefunden
  Aug 12 16:55:01 UDO dbus[2427]: [system] Activating via systemd: service 
name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
  Aug 12 16:55:01 UDO systemd[1]: Starting Hostname Service...
  Aug 12 16:55:01 UDO dbus[2427]: [system] Successfully activated service 
'org.freedesktop.hostname1'
  Aug 12 16:55:01 UDO systemd[1]: Started Hostname Service.

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

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


[Touch-packages] [Bug 1435040] Re: Ubuntu Phone does not connect to car-bluetooth

2016-08-24 Thread Gerd Hammer
Meizu MX4 Ubuntu Edition
OTA-12
Mazda 6 (2015) handfree car system

I can pair my Meizu Mx4 ubuntu edition (OTA-13) with my handfree car system 
(Mazda 6). It connects and the device pairs, than it starts to connect and 
disconnect phone and audio and I cannot make any phone calls. It is also 
impossible to import contacts. I tried in normal mode and in developer mode. 
Nothing helps. The problems got worse from OTA-9 on until now.
With other devices like headset or bluetoth speaker bluetooth works well.
Help would be greatley appreciated!

Gerd

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

Title:
  Ubuntu Phone does not connect to car-bluetooth

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

Bug description:
  With my FORD Focus Car, pairing does not work. The bluetooth system in
  the car searches for devices and shows "Aquaris E4.5 Ubuntu Edition"
  and then prompts me to connect with a 4-digit pin code, but the Ubuntu
  phone doesn't react at all and after a while the car system says that
  it failed to connect.

  image: 20150310-3201c0a
  KRILIN01A-S15A_BQ_L100EN_2020_150312
  OS Build 20

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

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


[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
/etc/sane.d/epkowa.conf

** Attachment added: "epkowa.conf"
   
https://bugs.launchpad.net/ubuntu/+source/lsb/+bug/1536353/+attachment/4727111/+files/epkowa.conf

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

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

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


[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
swami@swami-TA990FXE:~$ ldd /usr/sbin/iscan-registry
not a dynamic executable
swami@swami-TA990FXE:~$

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

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

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


[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
swami@swami-TA990FXE:~$ ldd /usr/lib/libesmod.so.2.0.0  
  
linux-vdso.so.1 =>  (0x7ffd64bf6000)
  
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fa3ac91e000)   
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7fa3ac615000)   
  
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fa3ac24b000)   
  
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fa3ac035000) 
/lib64/ld-linux-x86-64.so.2 (0x5654cdc4f000)
  
swami@swami-TA990FXE:~$

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way (downloading a driver where no local driver is available)
  anymore.

  I see two possible solutions:

  - Add a proper replaces field to one of the remaining lsb-* packages,
  to hopefully fix missing lsb package (maybe it would be useful to also
  replace other compability packages that are not built anymore).

  - Re-introduce LSB compatibility packages, but that might be an
  overkill.

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

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

[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
swami@swami-TA990FXE:~$ ldd /usr/lib/sane/libsane-epkowa.so.1.0.15
linux-vdso.so.1 =>  (0x7ffcaf2d6000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7f5ddeb44000)
libxml2.so.2 => /usr/lib/x86_64-linux-gnu/libxml2.so.2 
(0x7f5dde78a000)
libusb-1.0.so.0 => /lib/x86_64-linux-gnu/libusb-1.0.so.0 
(0x7f5dde571000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x7f5dde369000)
libltdl.so.7 => /usr/lib/x86_64-linux-gnu/libltdl.so.7 
(0x7f5dde15f000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x7f5dddf5a000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7f5dddb91000)
/lib64/ld-linux-x86-64.so.2 (0x5597f7f0c000)
libicuuc.so.55 => /usr/lib/x86_64-linux-gnu/libicuuc.so.55 
(0x7f5ddd7fd000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x7f5ddd5e2000)
liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x7f5ddd3c)
libudev.so.1 => /lib/x86_64-linux-gnu/libudev.so.1 (0x7f5ddd3a)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7f5ddd182000) 
libicudata.so.55 => /usr/lib/x86_64-linux-gnu/libicudata.so.55 
(0x7f5ddb6cb000)   
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7f5ddb349000)   
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7f5ddb132000) 
swami@swami-TA990FXE:~$

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

Title:
  [Regression] Epson's printer driver packages cannot be installed as
  lsb package is not available anymore

Status in lsb:
  New
Status in cups-filters package in Ubuntu:
  Fix Released
Status in epson-inkjet-printer-escpr package in Ubuntu:
  Fix Released
Status in lsb package in Ubuntu:
  Fix Released
Status in cups-filters source package in Xenial:
  Fix Released
Status in epson-inkjet-printer-escpr source package in Xenial:
  Fix Released
Status in lsb source package in Xenial:
  Fix Released

Bug description:
  [SRU justification]
  Previous releases were compatible with third-party printer drivers provided 
in LSB package format (and also as .deb packages depending on the lsb package). 
 As of 16.04, because the LSB specifies ABIs for various libraries that are no 
longer supported in Ubuntu as obsolete, the packages for the lsb modules have 
been dropped in both Debian and Ubuntu.  This includes dropping of lsb-core, 
which is the component which provides the LSB-mandated ELF loader path - 
without which no lsb executable will work.

  This SRU will restore the bare minimum of LSB compatibility necessary
  to support known third-party LSB printer driver packages on Ubuntu
  16.04.

  [Regression potential]
  The reintroduced 'lsb' binary package is known to not fully satisfy the 
requirements for a complete LSB-compliant system.  This is a regression vs. 
Ubuntu 14.04; so anyone using LSB packages on Ubuntu 14.04 who upgrades to 
Ubuntu 16.04 may have the upgrade succeed without any warning from the package 
manager.

  As there are very few lsb packages in use in the wild, this is
  considered an acceptable regression, especially as this will land
  before the first 16.04 point release.

  [Test case]
  1. Download the epsion 201106w printer driver package from 
http://download.ebz.epson.net/dsc/op/stable/debian/dists/lsb3.2/main/binary-amd64/epson-inkjet-printer-201106w_1.0.1-1lsb3.2_amd64.deb
  2. Install the package and confirm that its dependencies are not satisfiable.
  3. Enable xenial-proposed.
  4. Install the package again and confirm that the dependencies are satisfied.
  5. Verify that 
/opt/epson-inkjet-printer-201106w/cups/lib/filter/epson_inkjet_printer_filter 
can be run without errors about missing lsb ld.so or missing libraries.

  Starting with Xenial, lsb compatibility packages were dropped (besides
  lsb-release and lsb-base):

  lsb (9.20150826) unstable; urgency=low

    * Drop all the LSB compatibility packages besides lsb-release and lsb-base
  - Drop packages-availability checking in lsb-release
  - Truncate README.Debian to a minimum
  - Document this in lsb-base.NEWS.Debian
    * Change the versioning number to avoid any ambiguity; use joeyh's
  version.date, with version being Debian next stable's

   -- Didier Raboud   Wed, 26 Aug 2015 12:00:00 +0200

  The problem is that downloadable printer drivers (like the ones from
  Openprinting, but also from other available providers) that are
  suggested when installing a printer on Ubuntu depends on lsb, which is
  not available anymore:

  epson-inkjet-printer-201106w:
   Dépend: lsb (>=3.2) but it is not installable

  This triggers a regression where it is not possible to setup a printer
  this way

[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
swami@swami-TA990FXE:~$ ldd /usr/lib/gimp/2.0/plug-ins/iscan
linux-vdso.so.1 =>  (0x7fff9cd5c000)
libesmod.so.2 => /usr/lib/libesmod.so.2 (0x7fdb72782000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x7fdb7257e000)
libltdl.so.7 => /usr/lib/x86_64-linux-gnu/libltdl.so.7 
(0x7fdb72373000)
libgtk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 
(0x7fdb71d28000)
libgdk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0 
(0x7fdb71a73000)
libgobject-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 
(0x7fdb7181f000)
libgthread-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0 
(0x7fdb7161d000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x7fdb71415000)
libglib-2.0.so.0 => /lib/x86_64-linux-gnu/libglib-2.0.so.0 
(0x7fdb71103000)
libsane.so.1 => /usr/lib/x86_64-linux-gnu/libsane.so.1 
(0x7fdb70efb000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fdb70b79000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7fdb7086f000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fdb70659000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7fdb7043c000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fdb70072000)
/lib64/ld-linux-x86-64.so.2 (0x5560e4861000)
libgmodule-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0 
(0x7fdb6fe6e000)
libpangocairo-1.0.so.0 => 
/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0 (0x7fdb6fc61000)
libX11.so.6 => /usr/lib/x86_64-linux-gnu/libX11.so.6 
(0x7fdb6f926000)
libXfixes.so.3 => /usr/lib/x86_64-linux-gnu/libXfixes.so.3 
(0x7fdb6f72)
libatk-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0 
(0x7fdb6f4fb000)
libcairo.so.2 => /usr/lib/x86_64-linux-gnu/libcairo.so.2 
(0x7fdb6f1e6000)
libgdk_pixbuf-2.0.so.0 => 
/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0 (0x7fdb6efc4000)
libgio-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0 
(0x7fdb6ec3c000)
libpangoft2-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0 
(0x7fdb6ea25000)
libpango-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0 
(0x7fdb6e7d9000)
libfontconfig.so.1 => /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 
(0x7fdb6e596000)
libXrender.so.1 => /usr/lib/x86_64-linux-gnu/libXrender.so.1 
(0x7fdb6e38b000)
libXinerama.so.1 => /usr/lib/x86_64-linux-gnu/libXinerama.so.1 
(0x7fdb6e188000)
libXi.so.6 => /usr/lib/x86_64-linux-gnu/libXi.so.6 (0x7fdb6df77000)
libXrandr.so.2 => /usr/lib/x86_64-linux-gnu/libXrandr.so.2 
(0x7fdb6dd6c000)
libXcursor.so.1 => /usr/lib/x86_64-linux-gnu/libXcursor.so.1 
(0x7fdb6db62000)
libXcomposite.so.1 => /usr/lib/x86_64-linux-gnu/libXcomposite.so.1 
(0x7fdb6d95f000)
libXdamage.so.1 => /usr/lib/x86_64-linux-gnu/libXdamage.so.1 
(0x7fdb6d75b000)
libXext.so.6 => /usr/lib/x86_64-linux-gnu/libXext.so.6 
(0x7fdb6d549000)
libffi.so.6 => /usr/lib/x86_64-linux-gnu/libffi.so.6 
(0x7fdb6d34)
libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x7fdb6d0d)
libfreetype.so.6 => /usr/lib/x86_64-linux-gnu/libfreetype.so.6 
(0x7fdb6ce26000)
libxcb.so.1 => /usr/lib/x86_64-linux-gnu/libxcb.so.1 
(0x7fdb6cc03000)
libpixman-1.so.0 => /usr/lib/x86_64-linux-gnu/libpixman-1.so.0 
(0x7fdb6c95b000)
libpng12.so.0 => /lib/x86_64-linux-gnu/libpng12.so.0 
(0x7fdb6c736000)
libxcb-shm.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0 
(0x7fdb6c531000)
libxcb-render.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-render.so.0 
(0x7fdb6c327000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x7fdb6c10d000)
libselinux.so.1 => /lib/x86_64-linux-gnu/libselinux.so.1 
(0x7fdb6beea000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 
(0x7fdb6bccf000)
libharfbuzz.so.0 => /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0 
(0x7fdb6ba71000)
libthai.so.0 => /usr/lib/x86_64-linux-gnu/libthai.so.0 
(0x7fdb6b867000)
libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1 
(0x7fdb6b63e000)
libXau.so.6 => /usr/lib/x86_64-linux-gnu/libXau.so.6 
(0x7fdb6b439000)
libXdmcp.so.6 => /usr/lib/x86_64-linux-gnu/libXdmcp.so.6 
(0x7fdb6b233000)
libgraphite2.so.3 => /usr/lib/x86_64-linux-gnu/libgraphite2.so.3 
(0x7fdb6b00d000)
libdatrie.so.1 => /usr/lib/x86_64-linux-gnu/libdatrie.so.1 
(0x7fdb6ae05000)
swami@swami-TA990FXE:~$

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

Title:
  [Regression] Ep

[Touch-packages] [Bug 1536353] Re: [Regression] Epson's printer driver packages cannot be installed as lsb package is not available anymore

2016-08-24 Thread Aravind Gopal
swami@swami-TA990FXE:~$ ldd /usr/bin/iscan  
  
linux-vdso.so.1 =>  (0x7ffe45f23000)
  
libesmod.so.2 => /usr/lib/libesmod.so.2 (0x7fce69c36000)
  
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x7fce69a32000) 
  
libltdl.so.7 => /usr/lib/x86_64-linux-gnu/libltdl.so.7 
(0x7fce69827000)
   
libgtk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 
(0x7fce691dc000) 
libgdk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0 
(0x7fce68f27000) 
libgobject-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 
(0x7fce68cd3000)
libgthread-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0 
(0x7fce68ad1000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x7fce688c9000)
libglib-2.0.so.0 => /lib/x86_64-linux-gnu/libglib-2.0.so.0 
(0x7fce685b7000)
libsane.so.1 => /usr/lib/x86_64-linux-gnu/libsane.so.1 
(0x7fce683af000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 
(0x7fce6802d000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x7fce67d23000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 
(0x7fce67b0d000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7fce678f)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x7fce67526000)
/lib64/ld-linux-x86-64.so.2 (0x561f1965)
libgmodule-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0 
(0x7fce67322000)
libpangocairo-1.0.so.0 => 
/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0 (0x7fce67115000)
libX11.so.6 => /usr/lib/x86_64-linux-gnu/libX11.so.6 
(0x7fce66dda000)
libXfixes.so.3 => /usr/lib/x86_64-linux-gnu/libXfixes.so.3 
(0x7fce66bd4000)
libatk-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0 
(0x7fce669af000)
libcairo.so.2 => /usr/lib/x86_64-linux-gnu/libcairo.so.2 
(0x7fce6669a000)
libgdk_pixbuf-2.0.so.0 => 
/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0 (0x7fce66478000)
libgio-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0 
(0x7fce660f)
libpangoft2-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0 
(0x7fce65ed9000)
libpango-1.0.so.0 => /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0 
(0x7fce65c8d000)
libfontconfig.so.1 => /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 
(0x7fce65a4a000)
libXrender.so.1 => /usr/lib/x86_64-linux-gnu/libXrender.so.1 
(0x7fce6583f000)
libXinerama.so.1 => /usr/lib/x86_64-linux-gnu/libXinerama.so.1 
(0x7fce6563c000)
libXi.so.6 => /usr/lib/x86_64-linux-gnu/libXi.so.6 (0x7fce6542b000)
libXrandr.so.2 => /usr/lib/x86_64-linux-gnu/libXrandr.so.2 
(0x7fce6522)
libXcursor.so.1 => /usr/lib/x86_64-linux-gnu/libXcursor.so.1 
(0x7fce65016000)
libXcomposite.so.1 => /usr/lib/x86_64-linux-gnu/libXcomposite.so.1 
(0x7fce64e13000)
libXdamage.so.1 => /usr/lib/x86_64-linux-gnu/libXdamage.so.1 
(0x7fce64c0f000)
libXext.so.6 => /usr/lib/x86_64-linux-gnu/libXext.so.6 
(0x7fce649fd000)
libffi.so.6 => /usr/lib/x86_64-linux-gnu/libffi.so.6 
(0x7fce647f4000)
libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x7fce64584000)
libfreetype.so.6 => /usr/lib/x86_64-linux-gnu/libfreetype.so.6 
(0x7fce642da000)
libxcb.so.1 => /usr/lib/x86_64-linux-gnu/libxcb.so.1 
(0x7fce640b7000)
libpixman-1.so.0 => /usr/lib/x86_64-linux-gnu/libpixman-1.so.0 
(0x7fce63e0f000)
libpng12.so.0 => /lib/x86_64-linux-gnu/libpng12.so.0 
(0x7fce63bea000)
libxcb-shm.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0 
(0x7fce639e5000)
libxcb-render.so.0 => /usr/lib/x86_64-linux-gnu/libxcb-render.so.0 
(0x7fce637db000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x7fce635c1000)
libselinux.so.1 => /lib/x86_64-linux-gnu/libselinux.so.1 
(0x7fce6339e000)
libresolv.so.2 => /lib/x86_64-linux-gnu/libresolv.so.2 
(0x7fce63183000)
libharfbuzz.so.0 => /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0 
(0x7fce62f25000)
libthai.so.0 => /usr/lib/x86_64-linux-gnu/libthai.so.0 
(0x7fce62d1b000)
libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1 
(0x7fce62af2000)
libXau.so.6 => /usr/lib/x86_64-linux-gnu/libXau.so.6 
(0x7fce628ed00

[Touch-packages] [Bug 1590844] Re: Bluetooth headset not working with Meizu Pro 5 Ubuntu Edition

2016-08-24 Thread Konrad Zapałowicz
I've spent time debugging this and it looks like the problem is with the
BT chip firmware that potentially contains not ideal parameters.

I've also captured an audio sample directly from pcm and the sound is
clear at the beginning however the quality decreases over time with the
noise overtaking the voice eventually [like the noise volume increases
step by step]. At the same time the voice through BT headset is polluted
with the noise from the beginning.

I have also used a different firmware for the BT chip and as it produced
no audio at all through the BT it has also made the pcm record perfectly
clean from the beginning till the end.

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

Title:
  Bluetooth headset not working with Meizu Pro 5 Ubuntu Edition

Status in Canonical System Image:
  Confirmed
Status in turbo:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  My bluetooth headset perfectly connects to my Meizu Pro 5. However,
  the sound quality is so poor (a lot of noise) such that you don't
  understand your communication partner. Note that the headset works
  perfectly together with Ubuntu on my Nexus 4.

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

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


[Touch-packages] [Bug 1574340] Re: package sysv-rc 2.88dsf-59.3ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-24 Thread Tarek Sherif
It seems this is caused by services installed by Dell on the 14.04 image
that comes with their Project Sputnik laptops:
https://bugs.launchpad.net/dell-sputnik/+bug/1605952

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

Title:
  package sysv-rc 2.88dsf-59.3ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in sysvinit package in Ubuntu:
  Incomplete

Bug description:
  Upgrading from 14.04 to 16.04 sysv-rc failed to install on my Dell
  M3800 Developer Edition laptop. Reinstalled 14.04 from Dell's
  restoration partition, did a dist-upgrade, and tried to upgrade again
  but had the same issue.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: sysv-rc 2.88dsf-59.3ubuntu2
  ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
  Uname: Linux 4.4.0-21-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  Date: Sun Apr 24 00:48:58 2016
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2016-04-23 (0 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1
   apt  1.2.10ubuntu1
  SourcePackage: sysvinit
  Title: package sysv-rc 2.88dsf-59.3ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to xenial on 2016-04-24 (0 days ago)

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

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


[Touch-packages] [Bug 1616533] Re: "Forecast not available" error in GNOME Weather app

2016-08-24 Thread Jeremy Bicha
** Tags added: iso-testing

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

Title:
  "Forecast not available" error in GNOME Weather app

Status in libgweather:
  Unknown
Status in gnome-weather package in Ubuntu:
  Triaged
Status in libgweather package in Ubuntu:
  Triaged

Bug description:
  As reported at http://www.omgubuntu.co.uk/2016/08/gnome-weather-
  forecast-not-available

  The weather forecast provider used by the GNOME Weather app
  discontinued or moved its service.

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

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


  1   2   3   >