[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Launchpad Bug Tracker
This bug was fixed in the package swig - 3.0.8-0ubuntu2

---
swig (3.0.8-0ubuntu2) xenial; urgency=medium

  * debian/rules: Disable PHP SWIG bindings for PHP7.0 transition
(LP: #1546823).

 -- Nishanth Aravamudan   Tue, 12 Jan
2016 13:20:42 -0800

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Released
Status in gdcm package in Ubuntu:
  Fix Released
Status in geos package in Ubuntu:
  Fix Released
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Released
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Released

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1547491] [NEW] [MIR] xserver-xorg-input-void

2016-02-19 Thread Timo Aaltonen
Public bug reported:

s390x wants this

** Affects: xserver-xorg-input-void (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-input-void in Ubuntu.
https://bugs.launchpad.net/bugs/1547491

Title:
  [MIR] xserver-xorg-input-void

Status in xserver-xorg-input-void package in Ubuntu:
  New

Bug description:
  s390x wants this

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-void/+bug/1547491/+subscriptions

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


[Desktop-packages] [Bug 1547417] Re: reset position of keyboard and icon

2016-02-19 Thread Tomasss
is the same on Onboard 1.2.0-0ppa~trusty1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to onboard in Ubuntu.
https://bugs.launchpad.net/bugs/1547417

Title:
  reset position of keyboard and icon

Status in onboard package in Ubuntu:
  New

Bug description:
  Hello,

  I have connected external monitor as second display above primary.
  Primary monitor has touch screen. There are onboard keybord and icon
  on primary display. After unplugging second monitor onboard keyboard
  and icon doesn't show on primary display.

  Linux Mint XFCE 17.3 Rosa
  Onboard 1.0.1-0ubuntu1

  thanks
  Tomas

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

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


[Desktop-packages] [Bug 1488254]

2016-02-19 Thread Dmitry-polukhin
Hi Stefan,

This is an important issue in Clang and I would like to move on with
patch http://reviews.llvm.org/D12834 (also see my last comment there).
If you don't mind, I'll get your patch split it into smaller patches and
start resolving reviewers comments. Please let me know if you have
cycles and would like to keep working on this patch yourself.

Best regards,
Dmitry
==
Software Engineer
Intel Compiler Teaml

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to llvm-toolchain-3.6 in Ubuntu.
https://bugs.launchpad.net/bugs/1488254

Title:
  clang++ no longer ABI-compatible with g++

Status in LLVM:
  Confirmed
Status in llvm-toolchain-3.6 package in Ubuntu:
  Confirmed

Bug description:
  $ cat foo.cc
  #include 
  std::string hello = "Hello, world!\n";
  $ cat bar.cc
  #include 
  #include 
  extern std::string hello;
  int main() {
  std::cout << hello;
  return 0;
  }
  $ g++ -c foo.cc && g++ foo.o bar.cc && ./a.out
  Hello, world!
  $ clang++ -c foo.cc && clang++ foo.o bar.cc && ./a.out
  Hello, world!
  $ g++ -c foo.cc && clang++ foo.o bar.cc && ./a.out
  /tmp/bar-34fb23.o: In function `main':
  bar.cc:(.text+0x14): undefined reference to `hello'
  clang: error: linker command failed with exit code 1 (use -v to see 
invocation)
  $ clang++ -c foo.cc && g++ foo.o bar.cc && ./a.out
  /tmp/ccqU38Mh.o: In function `main':
  bar.cc:(.text+0x5): undefined reference to `hello[abi:cxx11]'
  collect2: error: ld returned 1 exit status

  In practice, this means that many programs using C++ libraries other
  than libstdc++ fail to compile with clang++. For example, mosh fails
  with undefined references to
  google::protobuf::internal::empty_string_,
  google::protobuf::MessageLite::InitializationErrorString() const, and
  google::protobuf::MessageLite::SerializeAsString() const.

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

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


[Desktop-packages] [Bug 1488254]

2016-02-19 Thread Lighttpd-2
Hi Dmitry,

(In reply to comment #53)
> Hi Stefan,
> 
> This is an important issue in Clang and I would like to move on with patch
> http://reviews.llvm.org/D12834 (also see my last comment there). If you
> don't mind, I'll get your patch split it into smaller patches and start
> resolving reviewers comments. Please let me know if you have cycles and
> would like to keep working on this patch yourself.

I agree it is important, and it saddens me not having more time for
this.

I'm perfectly fine with you (and others) taking this over - thanks!

regards,
Stefan

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to llvm-toolchain-3.6 in Ubuntu.
https://bugs.launchpad.net/bugs/1488254

Title:
  clang++ no longer ABI-compatible with g++

Status in LLVM:
  Confirmed
Status in llvm-toolchain-3.6 package in Ubuntu:
  Confirmed

Bug description:
  $ cat foo.cc
  #include 
  std::string hello = "Hello, world!\n";
  $ cat bar.cc
  #include 
  #include 
  extern std::string hello;
  int main() {
  std::cout << hello;
  return 0;
  }
  $ g++ -c foo.cc && g++ foo.o bar.cc && ./a.out
  Hello, world!
  $ clang++ -c foo.cc && clang++ foo.o bar.cc && ./a.out
  Hello, world!
  $ g++ -c foo.cc && clang++ foo.o bar.cc && ./a.out
  /tmp/bar-34fb23.o: In function `main':
  bar.cc:(.text+0x14): undefined reference to `hello'
  clang: error: linker command failed with exit code 1 (use -v to see 
invocation)
  $ clang++ -c foo.cc && g++ foo.o bar.cc && ./a.out
  /tmp/ccqU38Mh.o: In function `main':
  bar.cc:(.text+0x5): undefined reference to `hello[abi:cxx11]'
  collect2: error: ld returned 1 exit status

  In practice, this means that many programs using C++ libraries other
  than libstdc++ fail to compile with clang++. For example, mosh fails
  with undefined references to
  google::protobuf::internal::empty_string_,
  google::protobuf::MessageLite::InitializationErrorString() const, and
  google::protobuf::MessageLite::SerializeAsString() const.

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

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


[Desktop-packages] [Bug 1041790]

2016-02-19 Thread Chris Wilson
*** Bug 93824 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1041790

Title:
  [snb] GPU lockup  IPEHR: 0x0b160001 IPEHR: 0x0b140001, workaround
  i915.semaphores=0

Status in xf86-video-intel:
  In Progress
Status in linux package in Ubuntu:
  Incomplete
Status in sandybridge-meta package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  Triaged

Bug description:
  X locks up periodically for a 2 to ten seconds at a time and this
  crash log gets generated. It's significantly more than several times a
  day but not quite continuous. If you indeed have this bug, that should
  stop the lockups from happening. Irrespective, please file a new bug
  report so your hardware may be tracked.

  WORKAROUND: Edit your /etc/default/grub from:
  GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

  to:
  GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.semaphores=0"

  run the following and reboot:
  sudo update-grub

  The side effects of this is rendering throughput is dropped by 10%
  with SNA, or as much as 3x with UXA. OpenGL performance is likely to
  be reduced by about 30%. More CPU time is spent waiting for the GPU
  with rc6 disabled, so increased power consumption.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.10
  Package: xserver-xorg-video-intel 2:2.20.3-0ubuntu1
  Uname: Linux 3.6.0-rc3-git-20120826.1015 x86_64
  ApportVersion: 2.5.1-0ubuntu2
  Architecture: amd64
  Chipset: sandybridge-m-gt2
  Date: Sun Aug 26 16:06:32 2012
  DistroCodename: quantal
  DistroVariant: ubuntu
  DuplicateSignature: [sandybridge-m-gt2] GPU lockup  IPEHR: 0x0b160001 IPEHR: 
0x0b140001 Ubuntu 12.10
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/apport/apport-gpu-error-intel.py
  GpuHangFrequency: Continuously
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120724.2)
  InterpreterPath: /usr/bin/python3.2mu
  MachineType: Dell Inc. Dell System XPS L502X
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apport-gpu-error-intel.py
  ProcEnviron:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.6.0-rc3-git-20120826.1015 
root=UUID=135c8090-427c-460a-909d-eff262cd44b6 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   xserver-xorg 1:7.7+1ubuntu3
   libdrm2  2.4.38-0ubuntu2
   xserver-xorg-video-intel 2:2.20.3-0ubuntu1
  SourcePackage: xserver-xorg-video-intel
  Title: [sandybridge-m-gt2] GPU lockup  IPEHR: 0x0b160001 IPEHR: 0x0b140001
  UdevDb: Error: [Errno 2] No such file or directory: 'udevadm'
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

  dmi.bios.date: 05/29/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A11
  dmi.board.name: 0NJT03
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnDellInc.:bvrA11:bd05/29/2012:svnDellInc.:pnDellSystemXPSL502X:pvr:rvnDellInc.:rn0NJT03:rvrA00:cvnDellInc.:ct8:cvr0.1:
  dmi.product.name: Dell System XPS L502X
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1041790/+subscriptions

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


[Desktop-packages] [Bug 1547483] [NEW] chromium-browser selects the first entry in srcset element

2016-02-19 Thread Vladimir Vitkov
Public bug reported:

The chormium browser (v37) if showing the first entry in a srcset
attribute for IMG tags.

Given: http://codepen.io/anon/pen/zxPZYM

Expected: largest image to be shown (running on Full HD res)

Actual: First entry in the srcset list is displayed.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: chromium-browser 37.0.2062.120-0ubuntu0.12.04.1~pkg917
ProcVersionSignature: Ubuntu 3.13.0-77.121~precise1-generic 3.13.11-ckt32
Uname: Linux 3.13.0-77-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.13
Architecture: amd64
Date: Fri Feb 19 13:00:34 2016
InstallationMedia: Ubuntu 12.04.2 LTS "Precise Pangolin" - Release amd64 
(20130213)
MarkForUpload: True
SourcePackage: chromium-browser
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.default.chromium.browser: [deleted]
mtime.conffile..etc.chromium.browser.default: 2016-01-22T23:46:52.310138

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1547483

Title:
  chromium-browser selects the first entry in srcset element

Status in chromium-browser package in Ubuntu:
  New

Bug description:
  The chormium browser (v37) if showing the first entry in a srcset
  attribute for IMG tags.

  Given: http://codepen.io/anon/pen/zxPZYM

  Expected: largest image to be shown (running on Full HD res)

  Actual: First entry in the srcset list is displayed.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: chromium-browser 37.0.2062.120-0ubuntu0.12.04.1~pkg917
  ProcVersionSignature: Ubuntu 3.13.0-77.121~precise1-generic 3.13.11-ckt32
  Uname: Linux 3.13.0-77-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu17.13
  Architecture: amd64
  Date: Fri Feb 19 13:00:34 2016
  InstallationMedia: Ubuntu 12.04.2 LTS "Precise Pangolin" - Release amd64 
(20130213)
  MarkForUpload: True
  SourcePackage: chromium-browser
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.default.chromium.browser: [deleted]
  mtime.conffile..etc.chromium.browser.default: 2016-01-22T23:46:52.310138

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Launchpad Bug Tracker
This bug was fixed in the package mapserver - 7.0.0-9ubuntu1

---
mapserver (7.0.0-9ubuntu1) xenial; urgency=medium

  * Disable php5-mapscript while swig does not support PHP 7.0
(LP: #1546823).

 -- Nishanth Aravamudan   Thu, 18 Feb
2016 16:24:09 -0800

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Released
Status in gdcm package in Ubuntu:
  Fix Released
Status in geos package in Ubuntu:
  Fix Released
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Released
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Launchpad Bug Tracker
This bug was fixed in the package gdcm - 2.6.3-1ubuntu1

---
gdcm (2.6.3-1ubuntu1) xenial; urgency=medium

  * Disable php5-gdcm and php5-vtkgdcm while swig does not support
PHP 7.0 (LP: #1546823).

 -- Nishanth Aravamudan   Fri, 12 Feb
2016 11:59:49 -0800

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

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Released
Status in gdcm package in Ubuntu:
  Fix Released
Status in geos package in Ubuntu:
  Fix Released
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Released
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1541857] Re: gvfsd-mtp crashed with SIGSEGV in g_vfs_daemon_close_active_channels()

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1352152 ***
https://bugs.launchpad.net/bugs/1352152

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1352152, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563763/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563765/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563766/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563767/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563768/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563769/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541857/+attachment/4563770/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1352152

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/1541857

Title:
  gvfsd-mtp crashed with SIGSEGV in g_vfs_daemon_close_active_channels()

Status in gvfs package in Ubuntu:
  New

Bug description:
  I have no idea what caused this as it happened during the early
  morning hours

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: gvfs-backends 1.20.3-0ubuntu1.2
  ProcVersionSignature: Ubuntu 3.19.0-47.53~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-47-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: GNOME
  Date: Wed Feb  3 22:05:12 2016
  ExecutablePath: /usr/lib/gvfs/gvfsd-mtp
  InstallationDate: Installed on 2014-10-24 (468 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  ProcCmdline: /usr/lib/gvfs/gvfsd-mtp --spawner :1.5 /org/gtk/gvfs/exec_spaw/79
  ProcEnviron:
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f1bb67534ea 
:mov0x48(%rdi),%rbx
   PC (0x7f1bb67534ea) ok
   source "0x48(%rdi)" (0x0048) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: gvfs
  StacktraceTop:
   g_vfs_daemon_close_active_channels () from 
/usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   ?? () from /usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   g_simple_async_result_complete () from 
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   g_simple_async_result_complete () from 
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: gvfsd-mtp crashed with SIGSEGV in g_vfs_daemon_close_active_channels()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1542878] Re: Xorg halt and restart randomly

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1543180 ***
https://bugs.launchpad.net/bugs/1543180

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1543180, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566120/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566123/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566134/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566136/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566137/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566138/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1542878/+attachment/4566139/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1543180

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1542878

Title:
  Xorg halt and restart randomly

Status in xorg-server package in Ubuntu:
  New

Bug description:
  Xorg assert failure: *** Error in `/usr/lib/xorg/Xorg': free():
  corrupted unsorted chunks: 0x55c54d9d8290 ***

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-core 2:1.17.3-2ubuntu2
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  AssertionMessage: *** Error in `/usr/lib/xorg/Xorg': free(): corrupted 
unsorted chunks: 0x55c54d9d8290 ***
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CrashCounter: 1
  Date: Sun Feb  7 16:29:32 2016
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  ExecutablePath: /usr/lib/xorg/Xorg
  ExtraDebuggingInterest: No
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Haswell-ULT Integrated Graphics 
Controller [1025:0775]
  InstallationDate: Installed on 2016-02-05 (2 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160204)
  MachineType: Acer Aspire E1-572
  ProcCmdline: /usr/lib/xorg/Xorg -core :0 -seat seat0 -auth 
/var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
  ProcEnviron:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-2-generic 
root=UUID=c4deeeaa-1af6-4802-afb5-ca93e6d81050 ro quiet splash vt.handoff=7
  Signal: 6
  SourcePackage: xorg-server
  StacktraceTop:
   __libc_message (do_abort=do_abort@entry=1, fmt=fmt@entry=0x7f91527f6128 "*** 
Error in `%s': %s: 0x%s ***\n") at ../sysdeps/posix/libc_fatal.c:175
   malloc_printerr (ptr=, str=0x7f91527f61c8 "free(): corrupted 
unsorted chunks", action=1) at malloc.c:4965
   _int_free (av=, p=, have_lock=1) at 
malloc.c:3834
   _int_realloc (av=av@entry=0x7f9152a29c00 , 
oldp=oldp@entry=0x55c54d9d5f90, oldsize=oldsize@entry=8048, nb=nb@entry=8944) 
at malloc.c:4351
   __GI___libc_realloc (oldmem=0x55c54d9d5fa0, bytes=8928) at malloc.c:3023
  Title: Xorg assert failure: *** Error in `/usr/lib/xorg/Xorg': free(): 
corrupted unsorted chunks: 0x55c54d9d8290 ***
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 11/04/2013
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V2.12
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: EA50_HW
  dmi.board.vendor: Acer
  dmi.board.version: V2.12
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV2.12:bd11/04/2013:svnAcer:pnAspireE1-572:pvrV2.12:rvnAcer:rnEA50_HW:rvrV2.12:cvnAcer:ct10:cvrChassisVersion:
  dmi.product.name: Aspire E1-572
  dmi.product.version: V2.12
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.12.2+16.04.20151211-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.lib

[Desktop-packages] [Bug 1547423] Re: "Assistant" type window UI components lack padding

2016-02-19 Thread Will Cooke
** Also affects: gtk+3.0 (Ubuntu Xenial)
   Importance: High
   Status: Triaged

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

Title:
  "Assistant" type window UI components lack padding

Status in GTK+:
  Unknown
Status in gtk+3.0 package in Ubuntu:
  Triaged
Status in gtk+3.0 source package in Xenial:
  Triaged

Bug description:
  Per this upstream bug:
  https://git.gnome.org/browse/gtk%2B/commit/?id=cfd85de

  Padding has been removed in gtk changing the assistant type window
  layout.

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

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


[Desktop-packages] [Bug 1541840] Re: transmission-gtk crashed with SIGABRT in event_errx()

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1421440 ***
https://bugs.launchpad.net/bugs/1421440

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1421440, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563742/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563744/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563747/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563748/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563749/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563750/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541840/+attachment/4563751/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1421440

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to transmission in Ubuntu.
https://bugs.launchpad.net/bugs/1541840

Title:
  transmission-gtk crashed with SIGABRT in event_errx()

Status in transmission package in Ubuntu:
  New

Bug description:
  Hello,

  transmission crashed at exit.

  Thank you for your help.

  LGDN

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: transmission-gtk 2.84-3ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Thu Feb  4 14:07:37 2016
  ExecutablePath: /usr/bin/transmission-gtk
  InstallationDate: Installed on 2012-07-07 (1307 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  ProcCmdline: transmission-gtk
  Signal: 6
  SourcePackage: transmission
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
   event_errx () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
   evdns_cancel_request () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
   evdns_getaddrinfo_cancel () from /usr/lib/x86_64-linux-gnu/libevent-2.0.so.5
   ?? ()
  Title: transmission-gtk crashed with SIGABRT in event_errx()
  UpgradeStatus: Upgraded to xenial on 2016-01-31 (3 days ago)
  UserGroups: adm cdrom dip input lp lpadmin plugdev sambashare sudo vboxusers

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

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


[Desktop-packages] [Bug 1547417] Re: reset position of keyboard and icon

2016-02-19 Thread Francesco Fumanti
You are running a version of Onboard that is a bit outdated. You can find our 
latest release that should not have your problem anymore in our stable PPA: 
https://launchpad.net/~onboard/+archive/ubuntu/snapshots

Please, let us know, whether the version of the stable PPA solves the
issue; otherwise, there has probably been a regression.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to onboard in Ubuntu.
https://bugs.launchpad.net/bugs/1547417

Title:
  reset position of keyboard and icon

Status in onboard package in Ubuntu:
  New

Bug description:
  Hello,

  I have connected external monitor as second display above primary.
  Primary monitor has touch screen. There are onboard keybord and icon
  on primary display. After unplugging second monitor onboard keyboard
  and icon doesn't show on primary display.

  Linux Mint XFCE 17.3 Rosa
  Onboard 1.0.1-0ubuntu1

  thanks
  Tomas

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Launchpad Bug Tracker
This bug was fixed in the package exactimage - 0.9.1-12ubuntu1

---
exactimage (0.9.1-12ubuntu1) xenial; urgency=medium

  * Disable php5-exactimage while swig does not support PHP 7.0
(LP: #1546823).

 -- Nishanth Aravamudan   Fri, 12 Feb
2016 11:38:35 -0800

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

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Released
Status in gdcm package in Ubuntu:
  Fix Committed
Status in geos package in Ubuntu:
  Fix Released
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Committed
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Launchpad Bug Tracker
This bug was fixed in the package geos - 3.5.0-1ubuntu1

---
geos (3.5.0-1ubuntu1) xenial; urgency=medium

  * Disable php5-geos while swig does not support PHP 7.0
(LP: #1546823).

 -- Nishanth Aravamudan   Fri, 12 Feb
2016 12:07:21 -0800

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Released
Status in gdcm package in Ubuntu:
  Fix Committed
Status in geos package in Ubuntu:
  Fix Released
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Committed
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1547423] Re: "Assistant" type window UI components lack padding

2016-02-19 Thread Sebastien Bacher
Reported upstream on https://bugzilla.gnome.org/show_bug.cgi?id=762315
let's see what they say, we can fix client code or revert the commit if
needed as we feel appropriate for this cycle

** Changed in: gtk+3.0 (Ubuntu)
   Importance: Undecided => High

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

** Tags added: rls-x-incoming

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

** Also affects: gtk via
   https://bugzilla.gnome.org/show_bug.cgi?id=762315
   Importance: Unknown
   Status: Unknown

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

Title:
  "Assistant" type window UI components lack padding

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

Bug description:
  Per this upstream bug:
  https://git.gnome.org/browse/gtk%2B/commit/?id=cfd85de

  Padding has been removed in gtk changing the assistant type window
  layout.

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

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


[Desktop-packages] [Bug 1541817] Re: gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1532151 ***
https://bugs.launchpad.net/bugs/1532151

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1532151, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563698/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563700/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563703/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563704/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563705/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563706/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1541817/+attachment/4563707/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1532151

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/1541817

Title:
  gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()

Status in gvfs package in Ubuntu:
  New

Bug description:
  gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event
  DistroRelease: Ubuntu 16.04

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: gvfs-backends 1.27.4-1ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Thu Feb  4 13:16:17 2016
  ExecutablePath: /usr/lib/gvfs/gvfsd-network
  InstallationDate: Installed on 2016-01-28 (7 days ago)
  InstallationMedia: Ubuntu-GNOME 16.04 LTS "Xenial Xerus" - Alpha amd64 
(20160127)
  ProcCmdline: /usr/lib/gvfs/gvfsd-network --spawner :1.1 
/org/gtk/gvfs/exec_spaw/5
  SegvAnalysis:
   Segfault happened at: 0x7fa98a96da75 :  mov
0x0(%rbp),%r13
   PC (0x7fa98a96da75) ok
   source "0x0(%rbp)" (0x6c0001) not located in a known VMA region (needed 
readable region)!
   destination "%r13" ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: gvfs
  StacktraceTop:
   g_vfs_monitor_emit_event () from 
/usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   ?? ()
   ?? ()
   g_main_context_dispatch () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm bumblebee cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1066529] Re: All jobs stopped, epson_inkjet_printer_filter failed

2016-02-19 Thread Mario Sánchez Prada
This looks to me as a duplicate of
https://bugs.launchpad.net/ubuntu/+source/lsb/+bug/840998

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to cups in Ubuntu.
https://bugs.launchpad.net/bugs/1066529

Title:
  All jobs stopped, epson_inkjet_printer_filter failed

Status in cups package in Ubuntu:
  Confirmed

Bug description:
  Kubuntu 12.04.1 64bit
  Cups 1.5.3-0ubuntu4
  EPSON WF-7520 - epson-inkjet-printer 1.0.0-1lsb3.2 - the last driver from 
Epson.
  Connected via USB.

  The printer just stopped to print - every job added in "stopped" state and 
this error:
  
"/opt/epson-inkjet-printer-201115w/cups/lib/filter/epson_inkjet_printer_filter 
failed"

  The printer screen says "Printing" endless.

  Will happy to provide additional info to resolve this issue.

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

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


[Desktop-packages] [Bug 1547428] [NEW] Fails to update packages in apport-retrace

2016-02-19 Thread Michał Sawicz
Public bug reported:

Since appstream landed on my machine, apport-retrace fails to update the
sandbox apt caches with:

ERROR: E:Problem executing scripts APT::Update::Post-Invoke-Success 'if
/usr/bin/test -e /usr/bin/appstreamcli; then appstreamcli refresh >
/dev/null; fi', E:Sub-process returned an error code

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: apport-retrace 2.20-0ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-6.21-generic 4.4.1
Uname: Linux 4.4.0-6-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Feb 19 11:08:18 2016
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

** No longer affects: apport (Ubuntu)

** Summary changed:

- Fails to update due to appstream
+ Fails to update packages in apport-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1547428

Title:
  Fails to update packages in apport-retrace

Status in appstream package in Ubuntu:
  New

Bug description:
  Since appstream landed on my machine, apport-retrace fails to update
  the sandbox apt caches with:

  ERROR: E:Problem executing scripts APT::Update::Post-Invoke-Success
  'if /usr/bin/test -e /usr/bin/appstreamcli; then appstreamcli refresh
  > /dev/null; fi', E:Sub-process returned an error code

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: apport-retrace 2.20-0ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-6.21-generic 4.4.1
  Uname: Linux 4.4.0-6-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Feb 19 11:08:18 2016
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1451728] Re: [master] kde-config-telepathy-accounts package install error

2016-02-19 Thread Alberto Mardegan
** Branch linked: lp:~online-accounts/libaccounts-glib/packaging

** Also affects: libaccounts-glib (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: libaccounts-glib (Ubuntu)
 Assignee: (unassigned) => Alberto Mardegan (mardy)

** Changed in: libaccounts-glib (Ubuntu)
   Importance: Undecided => Critical

** Changed in: libaccounts-glib (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libaccounts-glib in Ubuntu.
https://bugs.launchpad.net/bugs/1451728

Title:
  [master] kde-config-telepathy-accounts package install error

Status in Kubuntu PPA:
  Confirmed
Status in meta-telepathy:
  Confirmed
Status in kaccounts-providers package in Ubuntu:
  Triaged
Status in ktp-accounts-kcm package in Ubuntu:
  Triaged
Status in libaccounts-glib package in Ubuntu:
  In Progress
Status in kaccounts-providers source package in Wily:
  Triaged
Status in ktp-accounts-kcm source package in Wily:
  Triaged

Bug description:
  Installing from Kubuntu 15.04 backports:

  Unpacking kde-config-telepathy-accounts (15.04.0-0ubuntu1~ubuntu15.04~ppa1) 
over (0.9.0-0ubuntu1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/kde-config-telepathy-accounts_15.04.0-0ubuntu1~ubuntu15.04~ppa1_amd64.deb
 (--unpack):
   trying to overwrite '/usr/share/accounts/services/facebook-im.service', 
which is also in package account-plugin-facebook 0.12+15.04.20150415.1-0ubuntu1
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)

To manage notifications about this bug go to:
https://bugs.launchpad.net/kubuntu-ppa/+bug/1451728/+subscriptions

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


[Desktop-packages] [Bug 1540372] Re: [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or crackling sound

2016-02-19 Thread nour
one more thing

getting back to this
https://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt

I cant find any Hint String with key loopback


Hint Strings

The codec parser have several switches and adjustment knobs for
matching better with the actual codec or device behavior.  Many of
them can be adjusted dynamically via "hints" strings as mentioned in
the section above.  For example, by passing `jack_detect = no` string
via sysfs or a patch file, you can disable the jack detection, thus
the codec parser will skip the features like auto-mute or mic
auto-switch.  As a boolean value, either `yes`, `no`, `true`, `false`,
`1` or `0` can be passed.

The generic parser supports the following hints:

- jack_detect (bool): specify whether the jack detection is available
  at all on this machine; default true
- inv_jack_detect (bool): indicates that the jack detection logic is
  inverted
- trigger_sense (bool): indicates that the jack detection needs the
  explicit call of AC_VERB_SET_PIN_SENSE verb
- inv_eapd (bool): indicates that the EAPD is implemented in the
  inverted logic
- pcm_format_first (bool): sets the PCM format before the stream tag
  and channel ID
- sticky_stream (bool): keep the PCM format, stream tag and ID as long
  as possible; default true
- spdif_status_reset (bool): reset the SPDIF status bits at each time
  the SPDIF stream is set up
-  pin_amp_workaround (bool): the output pin may have multiple amp
  values
- single_adc_amp (bool): ADCs can have only single input amps
- auto_mute (bool): enable/disable the headphone auto-mute feature;
  default true
- auto_mic (bool): enable/disable the mic auto-switch feature; default
  true
- line_in_auto_switch (bool): enable/disable the line-in auto-switch
  feature; default false
- need_dac_fix (bool): limits the DACs depending on the channel count
- primary_hp (bool): probe headphone jacks as the primary outputs;
  default true
- multi_io (bool): try probing multi-I/O config (e.g. shared
  line-in/surround, mic/clfe jacks)
- multi_cap_vol (bool): provide multiple capture volumes
- inv_dmic_split (bool): provide split internal mic volume/switch for
  phase-inverted digital mics
- indep_hp (bool): provide the independent headphone PCM stream and
  the corresponding mixer control, if available
- add_stereo_mix_input (bool): add the stereo mix (analog-loopback
  mix) to the input mux if available
- add_jack_modes (bool): add "xxx Jack Mode" enum controls to each
  I/O jack for allowing to change the headphone amp and mic bias VREF
  capabilities
- power_save_node (bool): advanced power management for each widget,
  controlling the power sate (D0/D3) of each widget node depending on
  the actual pin and stream states
- power_down_unused (bool): power down the unused widgets, a subset of
  power_save_node, and will be dropped in future
- add_hp_mic (bool): add the headphone to capture source if possible
- hp_mic_detect (bool): enable/disable the hp/mic shared input for a
  single built-in mic case; default true
- mixer_nid (int): specifies the widget NID of the analog-loopback
  mixer

Could you advice please

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

Title:
  [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns,
  dropouts or crackling sound

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  I cant record or play on my sound card ubuntu 14.04.1

  Alsa is detecting the sound card
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: STAC9271D Analog [STAC9271D Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: STAC9271D Digital [STAC9271D Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  but PulseAudio is not detecting the card 

  attached the log file

  Thank you

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-47.53~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-47-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tuned  1851 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Feb  1 15:09:35 2016
  InstallationDate: Installed on 2015-10-26 (98 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Built-in Audio - HDA Intel
  Symptom_Jack: Green Speaker, Rear
  Symptom_Type: Underruns, dropouts, or "crackling" sound
  Title: [, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or 
crackling sound
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/

[Desktop-packages] [Bug 1540135] Re: Make this metapackage conflict with kaccounts-providers

2016-02-19 Thread Alberto Mardegan
Looks like we got a better solution. Please follow bug 1451728, I'm
closing this one as we won't make the packages conflict.

** Changed in: account-plugins (Ubuntu)
   Status: Incomplete => Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to account-plugins in Ubuntu.
https://bugs.launchpad.net/bugs/1540135

Title:
  Make this metapackage conflict with kaccounts-providers

Status in account-plugins package in Ubuntu:
  Invalid

Bug description:
  Anyone that tries to install Kubuntu-meta, or from Kubuntu tries to
  install Ubuntu-desktop, will hit conflicts with accounts-sso providers
  in /usr/share/accounts/providers (and possibly in service files in the
  future). As a result, many automatic bugs are being generated on both
  packages relating to this conflict in both directions, below are the
  most popular ones for each:

  https://bugs.launchpad.net/ubuntu/+source/account-plugins/+bug/1539988
  https://bugs.launchpad.net/ubuntu/+source/kaccounts-providers/+bug/1489507

  kaccounts-providers is imported from Debian directly without
  repackaging and Debian does not package the Ubuntu account-plugins
  anywhere. Upstream KDE is being forced to break accounts-sso standards
  and impose systemwide envvars to work around that this package should
  conflict with KDE's: https://bugs.kde.org/show_bug.cgi?id=347219

  Either Ubuntu / Kubuntu should be amending the Debian package to make
  it conflict with these plugin packages when importing it, or the
  psmteam should make this package conflict with kaccounts-providers.
  The later would be less work, since account-plugins is only packaged
  in Ubuntu for Unity.

  This change is necessary in Wily and beyond since those are the
  releases shipping kaccounts-providers.

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

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


[Desktop-packages] [Bug 1547423] [NEW] "Assistant" type window UI components lack padding

2016-02-19 Thread Will Cooke
Public bug reported:

Per this upstream bug:
https://git.gnome.org/browse/gtk%2B/commit/?id=cfd85de

Padding has been removed in gtk changing the assistant type window
layout.

** Affects: gtk+3.0 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  "Assistant" type window UI components lack padding

Status in gtk+3.0 package in Ubuntu:
  New

Bug description:
  Per this upstream bug:
  https://git.gnome.org/browse/gtk%2B/commit/?id=cfd85de

  Padding has been removed in gtk changing the assistant type window
  layout.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/1547423/+subscriptions

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


[Desktop-packages] [Bug 1520568] Re: All queries fails when 'google' is used: ERR_SSL_PROTOCOL_ERROR

2016-02-19 Thread Andreas Scherer
All is well with Chromium Version 48.0.2564.82 Built on Ubuntu 14.04, running 
on LinuxMint 17.2,
and libnss3 2:3.21-0ubuntu0.14.04.1.

I've noticed a recent pre-release of CB 48 for Precise that is currently marked 
as "unsafe to use".
I'll wait for the final version before updating libnss3 to 3.21 again.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1520568

Title:
  All queries fails when 'google' is used: ERR_SSL_PROTOCOL_ERROR

Status in chromium-browser package in Ubuntu:
  Fix Released

Bug description:
  Latest libnss3 upgrade have broken all the browser's queries; no
  matter of which is used. For example: url auto-completion fails

  ERR_SSL_PROTOCOL_ERROR
  Unable to make a secure connection to the server. This may be a problem with 
the server or it may be requiring a client authentication certificate that you 
don't have.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: libnss3 2:3.21-1ubuntu2
  ProcVersionSignature: Ubuntu 4.3.0-0.8-generic 4.3.0
  Uname: Linux 4.3.0-0-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.2-0ubuntu8
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Nov 27 13:50:26 2015
  SourcePackage: nss
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1544877] Re: gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1532151 ***
https://bugs.launchpad.net/bugs/1532151

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1532151, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569843/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569845/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569847/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569848/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569849/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569850/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544877/+attachment/4569851/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1532151

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/1544877

Title:
  gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()

Status in gvfs package in Ubuntu:
  New

Bug description:
  This error must have appeared when I logged in. It was in the
  background for almost 10 minutes  seems to happen @ random

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: gvfs-backends 1.27.4-1ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-4.19-generic 4.4.1
  Uname: Linux 4.4.0-4-generic x86_64
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Feb 12 08:56:14 2016
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/gvfs/gvfsd-network
  InstallationDate: Installed on 2016-02-06 (5 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160205)
  ProcCmdline: /usr/lib/gvfs/gvfsd-network --spawner :1.8 
/org/gtk/gvfs/exec_spaw/2
  ProcEnviron:
   XDG_RUNTIME_DIR=
   SHELL=/bin/bash
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7fc9e2f48a75 :  mov
0x0(%rbp),%r13
   PC (0x7fc9e2f48a75) ok
   source "0x0(%rbp)" (0x6c0001) not located in a known VMA region (needed 
readable region)!
   destination "%r13" ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: gvfs
  StacktraceTop:
   g_vfs_monitor_emit_event () from 
/usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so
   ?? ()
   ?? ()
   g_main_context_dispatch () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: gvfsd-network crashed with SIGSEGV in g_vfs_monitor_emit_event()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm avahi-autoipd cdrom dip ftp lightdm lpadmin plugdev root 
sambashare ssh sudo vboxusers wireshark

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

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


[Desktop-packages] [Bug 1547417] [NEW] reset position of keyboard and icon

2016-02-19 Thread Tomasss
Public bug reported:

Hello,

I have connected external monitor as second display above primary.
Primary monitor has touch screen. There are onboard keybord and icon on
primary display. After unplugging second monitor onboard keyboard and
icon doesn't show on primary display.

Linux Mint XFCE 17.3 Rosa
Onboard 1.0.1-0ubuntu1

thanks
Tomas

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to onboard in Ubuntu.
https://bugs.launchpad.net/bugs/1547417

Title:
  reset position of keyboard and icon

Status in onboard package in Ubuntu:
  New

Bug description:
  Hello,

  I have connected external monitor as second display above primary.
  Primary monitor has touch screen. There are onboard keybord and icon
  on primary display. After unplugging second monitor onboard keyboard
  and icon doesn't show on primary display.

  Linux Mint XFCE 17.3 Rosa
  Onboard 1.0.1-0ubuntu1

  thanks
  Tomas

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

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


[Desktop-packages] [Bug 1547395] Re: MIR: new dependencies for libquvi-scripts / libquvi

2016-02-19 Thread Matthias Klose
the MIR for lua-lpeg (dependency of lua-json) is tracked as lp: #1546957

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libquvi in Ubuntu.
https://bugs.launchpad.net/bugs/1547395

Title:
  MIR: new dependencies for libquvi-scripts / libquvi

Status in libquvi package in Ubuntu:
  New
Status in libquvi-scripts package in Ubuntu:
  New
Status in lua-bitop package in Ubuntu:
  New
Status in lua-expat package in Ubuntu:
  New
Status in lua-json package in Ubuntu:
  New
Status in luasocket package in Ubuntu:
  New

Bug description:
  MIR: new dependencies for libquvi-scripts / libquvi

  libquvi is owned by the desktop team, but not libquvi-scripts. Please
  subscribe to it.

  libquvi-scripts gained runtime dependencies on some lua packages which
  need the MIR:

  luasocket, lua-json, lua-expat, lua-bitop

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

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


[Desktop-packages] [Bug 1528735] Re: Suspend reboots every second time on Lenovo G50-45

2016-02-19 Thread David Cameron Staples
Just updated to 4.2.0-27-generic #32~14.04.1-Ubuntu SMP, and this is
still an issue.

This may not actually be directly related to pm-suspend, but I put it
here for lack of a better proximate cause. This may need to be
transferred to be a kernel bug.

I suspect it may be related to  a reaction to
http://www.intelsecurity.com/advanced-threat-
research/content/WP_Intel_ATR_S3_ResBS_Vuln.pdf

It can be reproduced by putting Ubuntu of just about any recent version
onto a Lenovo G50-45, and suspending it twice.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pm-utils in Ubuntu.
https://bugs.launchpad.net/bugs/1528735

Title:
  Suspend reboots every second time on Lenovo G50-45

Status in pm-utils package in Ubuntu:
  New

Bug description:
  Fresh install of Xubuntu 14.04.3, replacing existing OEM Windows 10.
  Install detected UEFI, and installed in UEFI mode. (I have attempted
  to change to legacy boot, and got it to a state where it was booting
  without /sys/firmware/efi/ being present, but behaviour persisted.)

  Suspending the laptop, whether by closing the lid, choosing the
  suspend option from the menu, or directly typing "sudo pm-suspend"
  works perfectly well... once.

  The second attempt to suspend, whether immediately or hours later,
  suspends the laptop (I can see the screen turn off, and hear the disk
  and fans stop, but a moment later the screen shows bright yellow
  console text declaring "Warning!!! Boot script table modified!!!
  Please contact your vendor.", and then it hard reboots.

  This appears to be a weird interaction between suspend and UEFI
  protection, but others have reported that they have had working
  suspend when installed alone (and presumably in legacy from the
  start), but this behaviour appeared when reinstalled as dual-boot
  (when presumably UEFI would have had to be on).
  (http://askubuntu.com/questions/675683/suspend-does-not-work-more-
  than-once-after-reboot-ubuntu-15-04-dual-boot/712232 and earlier
  http://askubuntu.com/questions/651481/boot-script-table-modified-
  please-contact-vendor, from different people.)

  Beyond the investigations I have done, I know next to nothing about
  UEFI, or how Suspend might be interacting with it. Much less why it
  appears to work perfectly exactly once.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pm-utils 1.4.1-13ubuntu0.1
  ProcVersionSignature: Ubuntu 4.2.0-22.27~14.04.1-generic 4.2.6
  Uname: Linux 4.2.0-22-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Wed Dec 23 13:27:11 2015
  InstallationDate: Installed on 2015-12-19 (3 days ago)
  InstallationMedia: Xubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  SourcePackage: pm-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1542599] Re: Xorg crashed after login

2016-02-19 Thread Apport retracing service
** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/1542599

Title:
  Xorg crashed after login

Status in nvidia-graphics-drivers package in Ubuntu:
  New

Bug description:
  Just login after boot and get a failure message.

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: xserver-xorg-core 2:1.17.3-2ubuntu2
  ProcVersionSignature: Ubuntu 4.4.0-2.16-generic 4.4.0
  Uname: Linux 4.4.0-2-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Fri Feb  5 10:49:15 2016
  ExecutablePath: /usr/lib/xorg/Xorg
  InstallationDate: Installed on 2016-01-22 (14 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160121)
  ProcCmdline: /usr/lib/xorg/Xorg -core :1 -seat seat0 -auth 
/var/run/lightdm/root/:1 -nolisten tcp vt8 -novtswitch
  ProcEnviron:
   
  Signal: 6
  SourcePackage: xorg-server
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
   ?? () from /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
   ?? () from /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
   ?? () from /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
   RRCrtcDetachScanoutPixmap ()
  Title: Xorg crashed with SIGABRT in RRCrtcDetachScanoutPixmap()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1542599/+subscriptions

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


[Desktop-packages] [Bug 1547395] [NEW] MIR: new dependencies for libquvi-scripts / libquvi

2016-02-19 Thread Matthias Klose
Public bug reported:

MIR: new dependencies for libquvi-scripts / libquvi

libquvi is owned by the desktop team, but not libquvi-scripts. Please
subscribe to it.

libquvi-scripts gained runtime dependencies on some lua packages which
need the MIR:

luasocket, lua-json, lua-expat, lua-bitop

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

** Affects: libquvi-scripts (Ubuntu)
 Importance: Undecided
 Assignee: Ubuntu Desktop (ubuntu-desktop)
 Status: New

** Affects: lua-bitop (Ubuntu)
 Importance: Undecided
 Assignee: Ubuntu Desktop (ubuntu-desktop)
 Status: New

** Affects: lua-expat (Ubuntu)
 Importance: Undecided
 Assignee: Ubuntu Desktop (ubuntu-desktop)
 Status: New

** Affects: lua-json (Ubuntu)
 Importance: Undecided
 Assignee: Ubuntu Desktop (ubuntu-desktop)
 Status: New

** Affects: luasocket (Ubuntu)
 Importance: Undecided
 Assignee: Ubuntu Desktop (ubuntu-desktop)
 Status: New


** Tags: ftbfs

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

** Also affects: lua-json (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: lua-expat (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: lua-bitop (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: libquvi-scripts (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop (ubuntu-desktop)

** Changed in: lua-bitop (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop (ubuntu-desktop)

** Changed in: lua-expat (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop (ubuntu-desktop)

** Changed in: lua-json (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop (ubuntu-desktop)

** Changed in: luasocket (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop (ubuntu-desktop)

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

** Tags added: ftbfs

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libquvi in Ubuntu.
https://bugs.launchpad.net/bugs/1547395

Title:
  MIR: new dependencies for libquvi-scripts / libquvi

Status in libquvi package in Ubuntu:
  New
Status in libquvi-scripts package in Ubuntu:
  New
Status in lua-bitop package in Ubuntu:
  New
Status in lua-expat package in Ubuntu:
  New
Status in lua-json package in Ubuntu:
  New
Status in luasocket package in Ubuntu:
  New

Bug description:
  MIR: new dependencies for libquvi-scripts / libquvi

  libquvi is owned by the desktop team, but not libquvi-scripts. Please
  subscribe to it.

  libquvi-scripts gained runtime dependencies on some lua packages which
  need the MIR:

  luasocket, lua-json, lua-expat, lua-bitop

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

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


[Desktop-packages] [Bug 1535689] Re: Avila tablet is not recognised by libmtp

2016-02-19 Thread Yuan-Chen Cheng
** Changed in: avila
   Status: Invalid => Triaged

** Changed in: avila
 Assignee: (unassigned) => Yuan-Chen Cheng (ycheng-twn)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libmtp in Ubuntu.
https://bugs.launchpad.net/bugs/1535689

Title:
   Avila tablet is not recognised by libmtp

Status in The Avila project:
  Triaged
Status in Canonical System Image:
  Confirmed
Status in libmtp package in Ubuntu:
  New

Bug description:
  The Avila tablet (product name is Frieza) is not recognised when in
  MTP file mode by Ubuntu.

   idVendor=2a47, idProduct=200D

  Tested on a trusty/precise/wily laptop and found the device is not
  listed in the desktop interface.

  The line below will make it work normally just for testing.
  ATTR{idVendor}=="2a47", ATTR{idProduct}=="200d", SYMLINK+="libmtp-%k", 
MODE="660", GROUP="audio", ENV{ID_MTP_DEVICE}="1", ENV{ID_MEDIA_PLAYER}="1"
  # Avila Frieza (MTP+ADB)

  Reproduction Proceedure:

   - Plug a tarblet into the Ubuntu desktop via a USB cable
   - Expect to see a natuilus window pop up, with the option to browse and copy 
files to the phone's file system

   - Actual result: no response from the Ubuntu host.

  Related OEM bug #1531494

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

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


[Desktop-packages] [Bug 1540372] Re: [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or crackling sound

2016-02-19 Thread nour
Sorry didn't attach the images

** Attachment added: "2016-02-19.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1540372/+attachment/4575349/+files/2016-02-19.jpg

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

Title:
  [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns,
  dropouts or crackling sound

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  I cant record or play on my sound card ubuntu 14.04.1

  Alsa is detecting the sound card
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: STAC9271D Analog [STAC9271D Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: STAC9271D Digital [STAC9271D Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  but PulseAudio is not detecting the card 

  attached the log file

  Thank you

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-47.53~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-47-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tuned  1851 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Feb  1 15:09:35 2016
  InstallationDate: Installed on 2015-10-26 (98 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Built-in Audio - HDA Intel
  Symptom_Jack: Green Speaker, Rear
  Symptom_Type: Underruns, dropouts, or "crackling" sound
  Title: [, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or 
crackling sound
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/02/2007
  dmi.bios.vendor: Intel Corp.
  dmi.bios.version: DPP3510J.86A.0293.2007.1002.1519
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: DP35DP
  dmi.board.vendor: Intel Corporation
  dmi.board.version: AAD81073-207
  dmi.chassis.type: 2
  dmi.modalias: 
dmi:bvnIntelCorp.:bvrDPP3510J.86A.0293.2007.1002.1519:bd10/02/2007:svn:pn:pvr:rvnIntelCorporation:rnDP35DP:rvrAAD81073-207:cvn:ct2:cvr:
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2016-01-29T17:09:52.179523

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

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


[Desktop-packages] [Bug 1540372] Re: [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or crackling sound

2016-02-19 Thread nour
Hi Raymond

I added the 5stack model to patchfile, I plugged the audio cable from
the TV to the front mic and alsamixer shows the below attached
screenshots

FromtMic is detected as a playback and capture device.

but I cant get any sound input.

concerning  optical spdif  I dont have anylight indicator.

one more thing, I got an Audio splitter, when I plug the gable from the
TV and speakers to the audio splitter and plug it in any mic or line in
jack, I can hear the sound of the  tV from the speaker.

Thanks.

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

Title:
  [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns,
  dropouts or crackling sound

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  I cant record or play on my sound card ubuntu 14.04.1

  Alsa is detecting the sound card
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: STAC9271D Analog [STAC9271D Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: STAC9271D Digital [STAC9271D Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  but PulseAudio is not detecting the card 

  attached the log file

  Thank you

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-47.53~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-47-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tuned  1851 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Feb  1 15:09:35 2016
  InstallationDate: Installed on 2015-10-26 (98 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Built-in Audio - HDA Intel
  Symptom_Jack: Green Speaker, Rear
  Symptom_Type: Underruns, dropouts, or "crackling" sound
  Title: [, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or 
crackling sound
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/02/2007
  dmi.bios.vendor: Intel Corp.
  dmi.bios.version: DPP3510J.86A.0293.2007.1002.1519
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: DP35DP
  dmi.board.vendor: Intel Corporation
  dmi.board.version: AAD81073-207
  dmi.chassis.type: 2
  dmi.modalias: 
dmi:bvnIntelCorp.:bvrDPP3510J.86A.0293.2007.1002.1519:bd10/02/2007:svn:pn:pvr:rvnIntelCorporation:rnDP35DP:rvrAAD81073-207:cvn:ct2:cvr:
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2016-01-29T17:09:52.179523

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

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


[Desktop-packages] [Bug 1540372] Re: [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or crackling sound

2016-02-19 Thread nour
** Attachment added: "2016-02-19-1.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1540372/+attachment/4575350/+files/2016-02-19-1.jpg

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

Title:
  [Intel DP35DP, SigmaTel STAC9271D, Green Speaker, Rear] Underruns,
  dropouts or crackling sound

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  I cant record or play on my sound card ubuntu 14.04.1

  Alsa is detecting the sound card
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: STAC9271D Analog [STAC9271D Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: STAC9271D Digital [STAC9271D Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  but PulseAudio is not detecting the card 

  attached the log file

  Thank you

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-47.53~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-47-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tuned  1851 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Feb  1 15:09:35 2016
  InstallationDate: Installed on 2015-10-26 (98 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Built-in Audio - HDA Intel
  Symptom_Jack: Green Speaker, Rear
  Symptom_Type: Underruns, dropouts, or "crackling" sound
  Title: [, SigmaTel STAC9271D, Green Speaker, Rear] Underruns, dropouts or 
crackling sound
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/02/2007
  dmi.bios.vendor: Intel Corp.
  dmi.bios.version: DPP3510J.86A.0293.2007.1002.1519
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: DP35DP
  dmi.board.vendor: Intel Corporation
  dmi.board.version: AAD81073-207
  dmi.chassis.type: 2
  dmi.modalias: 
dmi:bvnIntelCorp.:bvrDPP3510J.86A.0293.2007.1002.1519:bd10/02/2007:svn:pn:pvr:rvnIntelCorporation:rnDP35DP:rvrAAD81073-207:cvn:ct2:cvr:
  mtime.conffile..etc.modprobe.d.alsa.base.conf: 2016-01-29T17:09:52.179523

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

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


[Desktop-packages] [Bug 1544866] Re: nautilus crashed with SIGSEGV in g_closure_invoke()

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1544277 ***
https://bugs.launchpad.net/bugs/1544277

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1544277, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569816/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569818/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569820/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569821/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569822/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569823/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544866/+attachment/4569824/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1544277

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1544866

Title:
  nautilus crashed with SIGSEGV in g_closure_invoke()

Status in nautilus package in Ubuntu:
  New

Bug description:
  Just crashed. Sorry no more infos avail. 
  Keep up the great work. Thanks.

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: nautilus 1:3.18.4.is.3.14.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-4.19-generic 4.4.1
  Uname: Linux 4.4.0-4-generic x86_64
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Feb 12 08:50:42 2016
  ExecutablePath: /usr/bin/nautilus
  GsettingsChanges:
   b'org.gnome.nautilus.window-state' b'sidebar-width' b'206'
   b'org.gnome.nautilus.window-state' b'geometry' b"'636x1028+853+24'"
   b'org.gnome.nautilus.icon-view' b'default-zoom-level' b"'small'"
   b'org.gnome.nautilus.list-view' b'default-visible-columns' b"['name', 
'size', 'date_modified']"
   b'org.gnome.nautilus.list-view' b'default-column-order' b"['name', 'size', 
'type', 'owner', 'group', 'permissions', 'mime_type', 'where', 'date_modified', 
'date_modified_with_time', 'date_accessed']"
  InstallationDate: Installed on 2016-02-03 (8 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160203)
  ProcCmdline: nautilus -n
  ProcEnviron:
   LANGUAGE=de_DE
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x4ac4a4:  mov(%r14),%rax
   PC (0x004ac4a4) ok
   source "(%r14)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rax" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: nautilus
  StacktraceTop:
   ?? ()
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: nautilus crashed with SIGSEGV in g_closure_invoke()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Martin Pitt
Unsubscribing sponsors now to clean up the list. Please re-subscribe in
case there's anything further that needs uploading.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Committed
Status in gdcm package in Ubuntu:
  Fix Committed
Status in geos package in Ubuntu:
  Fix Committed
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Committed
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1546823] Re: swig: disable PHP bindings until PHP7 support exists

2016-02-19 Thread Martin Pitt
$ reverse-depends php5-mapscript
Reverse-Recommends
==
* gis-web
* science-geography

But that's ok, recommends only. I verified that all other dropped
binaries don't have any reverse build/binary depends.

All sponsored, thanks!

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

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

** Changed in: redland-bindings (Ubuntu)
   Status: New => Fix Committed

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

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

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

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

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to redland-bindings in Ubuntu.
https://bugs.launchpad.net/bugs/1546823

Title:
  swig: disable PHP bindings until PHP7 support exists

Status in exactimage package in Ubuntu:
  Fix Committed
Status in gdcm package in Ubuntu:
  Fix Committed
Status in geos package in Ubuntu:
  Fix Committed
Status in graphviz package in Ubuntu:
  Fix Committed
Status in mapserver package in Ubuntu:
  Fix Committed
Status in redland-bindings package in Ubuntu:
  Fix Committed
Status in swig package in Ubuntu:
  Fix Committed

Bug description:
  As a short-term solution, we need to disable swig's PHP bindings, as
  it does not currently support PHP7.0
  (https://github.com/swig/swig/issues/571).

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

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


[Desktop-packages] [Bug 1547374] [NEW] "Monospace Regular 8" became wider

2016-02-19 Thread Egmont Koblinger
Public bug reported:

I've been using gnome-terminal with "Monospace Regular 8" for years,
which always had a 6x13 px font size (the same size as xterm, just nicer
antialiasing).

With yesterday's update in Xenial, it became wider: 7x13 px each cell
(and less pleasing to my eyes).

The neighbor sizes "Monospace Regular 7" is 5px wide, "Monospace Regular
9" is 7px wide just as "Monospace Regular 8", only taller. So it doesn't
make sense for me for "Monospace Regular 8" to be 7px wide instead of
6px in between the two neighboring sizes as it used to be.

(No clue which package is the culprit, sorry.)

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: fontconfig 2.11.1-0ubuntu7
ProcVersionSignature: Ubuntu 4.4.0-6.21-generic 4.4.1
Uname: Linux 4.4.0-6-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Feb 19 09:11:41 2016
InstallationDate: Installed on 2012-05-30 (1359 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
SourcePackage: fontconfig
UpgradeStatus: Upgraded to xenial on 2016-02-13 (5 days ago)

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


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to fontconfig in Ubuntu.
https://bugs.launchpad.net/bugs/1547374

Title:
  "Monospace Regular 8" became wider

Status in fontconfig package in Ubuntu:
  New

Bug description:
  I've been using gnome-terminal with "Monospace Regular 8" for years,
  which always had a 6x13 px font size (the same size as xterm, just
  nicer antialiasing).

  With yesterday's update in Xenial, it became wider: 7x13 px each cell
  (and less pleasing to my eyes).

  The neighbor sizes "Monospace Regular 7" is 5px wide, "Monospace
  Regular 9" is 7px wide just as "Monospace Regular 8", only taller. So
  it doesn't make sense for me for "Monospace Regular 8" to be 7px wide
  instead of 6px in between the two neighboring sizes as it used to be.

  (No clue which package is the culprit, sorry.)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: fontconfig 2.11.1-0ubuntu7
  ProcVersionSignature: Ubuntu 4.4.0-6.21-generic 4.4.1
  Uname: Linux 4.4.0-6-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Feb 19 09:11:41 2016
  InstallationDate: Installed on 2012-05-30 (1359 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  SourcePackage: fontconfig
  UpgradeStatus: Upgraded to xenial on 2016-02-13 (5 days ago)

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

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


[Desktop-packages] [Bug 1544837] Re: nautilus crashed when in sudo mode

2016-02-19 Thread Apport retracing service
*** This bug is a duplicate of bug 1051625 ***
https://bugs.launchpad.net/bugs/1051625

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1051625, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569787/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569789/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569791/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569792/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569793/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569794/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1544837/+attachment/4569795/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1051625
   nautilus crashed with signal 5 in _XEventsQueued()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1544837

Title:
  nautilus crashed when in sudo mode

Status in nautilus package in Ubuntu:
  New

Bug description:
  When accessing nautilus in sudo mode to copy and paste on admin folder
  suddenly it crash..

  ProblemType: Crash
  DistroRelease: Ubuntu 16.04
  Package: nautilus 1:3.18.4.is.3.14.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-4.19-generic 4.4.1
  Uname: Linux 4.4.0-4-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.19.4-0ubuntu2
  Architecture: amd64
  Date: Fri Feb 12 12:39:09 2016
  ExecutablePath: /usr/bin/nautilus
  GsettingsChanges:
   
  InstallationDate: Installed on 2016-02-11 (0 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160203)
  ProcCmdline: nautilus
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_PH.UTF-8
   LANGUAGE=en_PH:en
   SHELL=/bin/bash
  Signal: 5
  SourcePackage: nautilus
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   _XEventsQueued () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   XPending () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
  Title: nautilus crashed with signal 5 in _XEventsQueued()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

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

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


[Desktop-packages] [Bug 1051625] Re: nautilus crashed with signal 5 in _XEventsQueued()

2016-02-19 Thread Apport retracing service
** Tags added: xenial

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1051625

Title:
  nautilus crashed with signal 5 in _XEventsQueued()

Status in nautilus package in Ubuntu:
  Confirmed
Status in nemo package in Ubuntu:
  Confirmed

Bug description:
  Bug report prompt appeared when printing in Libreoffice Calc. Not sure
  about the actual cause.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.10
  Package: nautilus 1:3.5.90.really.3.4.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.5.0-14.19-generic 3.5.3
  Uname: Linux 3.5.0-14-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.5.1-0ubuntu7
  Architecture: amd64
  Date: Mon Sep 17 00:02:19 2012
  ExecutablePath: /usr/bin/nautilus
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b"'800x550+478+220'"
  InstallationMedia: Ubuntu 12.04.1 LTS "Precise Pangolin" - Release amd64 
(20120823.1)
  ProcCmdline: nautilus trash://
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 5
  SourcePackage: nautilus
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   _XEventsQueued () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   XPending () from /usr/lib/x86_64-linux-gnu/libX11.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
  Title: nautilus crashed with signal 5 in _XEventsQueued()
  UpgradeStatus: Upgraded to quantal on 2012-09-08 (8 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

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


[Desktop-packages] [Bug 1545302] Re: wpa-roam broken by fix for ifupdown #1337873

2016-02-19 Thread Dariusz Gadomski
@Mike, @DavidS: thank you for feedback. I'm glad it's working for you.
The official fix will be on it's way.

@Robert: please confirm that your wpa-roam settings below "iface wlan0 inet 
manual" is in fact pointing to the right file as DavidS noticed. If it is 
please check:
sudo wpa_cli status

If the wpa_state is anything other than  COMPLETED - your WiFi
connection was not established. If it is ok - please let me know, I'll
need to check if this may be caused by anything else.

Thanks!

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to wpa in Ubuntu.
https://bugs.launchpad.net/bugs/1545302

Title:
  wpa-roam broken by fix for ifupdown #1337873

Status in wpa package in Ubuntu:
  Confirmed

Bug description:
  [Impact]

   * In some configurations recurrent ifup/down calls are broken due to
  a false-positive recursion detection.

   * In certain situations it leaves interfaces unconfigured (in this
  case: WLAN interface connected to WiFi network, but dhcp fails).

  [Test Case]

   * Setup wpa-roam configuration based on what is in comment #6
   
   * Wait until wpa_supplicant connects to a wifi network

   * Run ifconfig to check if the WLAN interface received dhcp info

   * Expected result: WLAN is fully configured according to dhcp settings
   
   * Actual result: WLAN is connected to WiFi but not configured

  [Regression Potential]

   * Fixed upstream, fix present in Xenial.

   * Debdiffs contain a backport of an upstream fix.

  [Other Info]
   
   * Original bug description:

  The following versions of ifupdown introduced a recursion check using 
"IFUPDOWN_" environment variables along with a new locking mechanism 
for ifup (see #1337873):
  0.7.47.2ubuntu4.2 (in Trusty)
  0.7.54ubuntu1.1 (in Wily)
  0.7.54ubuntu2 (in Xenial)

  This recursion check breaks the wpa-roam feature of wpasupplicant,
  preventing it from loading the logical interface specified by id_str
  after associating with an AP.  Specifically, after upgrading to one of
  the above ifupdown versions, the '/sbin/ifup -v --force
  "$WPA_IFACE=$WPA_LOGICAL_IFACE"' command run by wpa_action in
  functions.sh fails with an "ifup: recursion detected for parent
  interface wlan0 in post-up phase" error.

  To fix the issue, functions.sh needs to run `unset
  "IFDOWN_$WPA_IFACE"` before calling /sbin/ifup to prevent ifup from
  detecting the recursion.  The attached patch implements this change.

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

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