[Touch-packages] [Bug 1667407] Re: improve 2x-3x sha256sum performance on ppc64le due to current gcc optimization bug

2017-03-03 Thread Gustavo Serra Scalet
just to give an idea, to verify the sha256 of ubuntu-16.10-server-
ppc64el.iso:

8.25-2ubuntu2  : 0m15.204s
8.25-2ubuntu3~16.10: 0m4.952s

great!

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

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

Title:
   improve 2x-3x sha256sum performance on ppc64le due to current gcc
  optimization bug

Status in coreutils package in Ubuntu:
  Fix Released
Status in coreutils source package in Xenial:
  Fix Committed
Status in coreutils source package in Yakkety:
  Fix Committed
Status in coreutils package in Debian:
  Fix Released

Bug description:
  [Impact]

   * Performance drop of 2x-3x on ppc64le when using sha256sum

   * Please backport this bug to last LTS as this application is widely
  used.

   * This fix is due to a optimization issue found on gcc v4.9 to gcc
  v7.0.

  [Test Case]

   * Run sha256sum with a big file and measure the time it takes. The
  patch improves this timing up to 3 times faster.

  [Regression Potential]

   * This patch is specifically for the sha256.o object, affecting only
  this binary.

  [Other Info]

  Michael Stone's improved patch:

  Index: coreutils-8.26/Makefile.in
  ===
  --- coreutils-8.26.orig/Makefile.in 2016-11-30 13:34:55.0 -0500
  +++ coreutils-8.26/Makefile.in  2017-02-22 07:18:55.352394058 -0500
  @@ -14661,6 +14661,10 @@

  $(TEST_LOGS): $(PROGRAMS)

  +ifeq ($(DEB_TARGET_ARCH), ppc64el)
  +lib/sha256.o: CFLAGS+=-fno-schedule-insns
  +endif
  +
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
  .NOEXPORT:

  Original bug description:
   
  The sha256sum provided by coreutils (without openssl) is performing
  poorly with gcc versions >= 4.9 until 7.0 (currently under development).
  The reason for that is the -fschedule-insns optimization that is used
  with -O2. By simply deactivating it, there is a performance improvement
  of 2 to 3 times.

  I'm using Ubuntu 16.10 and the coreutils package version
  8.25-2ubuntu2.

  Please check the following closed debian bug report:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=854053

  Be aware of the following conditions that are required:
  * If ppc64le
  * If gcc being used is >= 4.9 and < 7.0

  Notes:
  1) gcc-7 is not affected by this bug (verified on 20170129 snapshot).
  2) clang is not affected by this bug (verified on v3.8 and v3.9).
  3) strangely the sha512 is not affected by this.

  Below a demonstration of how it performs on my POWER8 machine:

  ===
  $ (./configure && make -j9) > /dev/null && time src/sha256sum 
~/ubuntu-16.10-server-ppc64el.iso
  configure: WARNING: libacl development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without ACL support.
  configure: WARNING: libattr development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without xattr support.
  configure: WARNING: libcap library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without capability support.
  configure: WARNING: libgmp development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without GMP support.
  src/who.c: In function 'print_user':
  src/who.c:454:20: warning: initialization discards 'const' qualifier from 
pointer target type [-Wdiscarded-qualifiers]
   int   *a = utmp_ent->ut_addr_v6;
  ^~~~
  d14bdb413ea6cdc8d9354fcbc37a834b7de0c23f992deb0c6764d0fd5d65408e  
/home/gut/ubuntu-16.10-server-ppc64el.iso

  real0m18.670s
  user0m16.566s
  sys 0m0.745s

  $ # now with the following patch: ## Check Michael Stone's patch for an 
improved version.
  $ diff Makefile.in ../Makefile.in
  8989c8989
  < @am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ 
$< &&\
  ---
  > @am__fastdepCC_TRUE@  $(COMPILE) $$([ "$@" == "lib/sha256.o" ] && echo 
"-fno-schedule-insns") -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  $ cp ../Makefile.in Makefile.in
  $ (./configure && make -j9) > /dev/null && time src/sha256sum 
~/ubuntu-16.10-server-ppc64el.iso
  configure: WARNING: libacl development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without ACL support.
  configure: WARNING: libattr development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without xattr support.
  configure: WARNING: libcap library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without capability support.
  configure: WARNING: libgmp development library was not found or not usable.
  configure: WARNING: GNU coreutils will 

[Touch-packages] [Bug 1667407] Re: improve 2x-3x sha256sum performance on ppc64le due to current gcc optimization bug

2017-03-03 Thread Gustavo Serra Scalet
Fix verified on coreutils_8.25-2ubuntu3~16.10_ppc64el.deb

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

Title:
   improve 2x-3x sha256sum performance on ppc64le due to current gcc
  optimization bug

Status in coreutils package in Ubuntu:
  Fix Released
Status in coreutils source package in Xenial:
  Fix Committed
Status in coreutils source package in Yakkety:
  Fix Committed
Status in coreutils package in Debian:
  Fix Released

Bug description:
  [Impact]

   * Performance drop of 2x-3x on ppc64le when using sha256sum

   * Please backport this bug to last LTS as this application is widely
  used.

   * This fix is due to a optimization issue found on gcc v4.9 to gcc
  v7.0.

  [Test Case]

   * Run sha256sum with a big file and measure the time it takes. The
  patch improves this timing up to 3 times faster.

  [Regression Potential]

   * This patch is specifically for the sha256.o object, affecting only
  this binary.

  [Other Info]

  Michael Stone's improved patch:

  Index: coreutils-8.26/Makefile.in
  ===
  --- coreutils-8.26.orig/Makefile.in 2016-11-30 13:34:55.0 -0500
  +++ coreutils-8.26/Makefile.in  2017-02-22 07:18:55.352394058 -0500
  @@ -14661,6 +14661,10 @@

  $(TEST_LOGS): $(PROGRAMS)

  +ifeq ($(DEB_TARGET_ARCH), ppc64el)
  +lib/sha256.o: CFLAGS+=-fno-schedule-insns
  +endif
  +
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
  .NOEXPORT:

  Original bug description:
   
  The sha256sum provided by coreutils (without openssl) is performing
  poorly with gcc versions >= 4.9 until 7.0 (currently under development).
  The reason for that is the -fschedule-insns optimization that is used
  with -O2. By simply deactivating it, there is a performance improvement
  of 2 to 3 times.

  I'm using Ubuntu 16.10 and the coreutils package version
  8.25-2ubuntu2.

  Please check the following closed debian bug report:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=854053

  Be aware of the following conditions that are required:
  * If ppc64le
  * If gcc being used is >= 4.9 and < 7.0

  Notes:
  1) gcc-7 is not affected by this bug (verified on 20170129 snapshot).
  2) clang is not affected by this bug (verified on v3.8 and v3.9).
  3) strangely the sha512 is not affected by this.

  Below a demonstration of how it performs on my POWER8 machine:

  ===
  $ (./configure && make -j9) > /dev/null && time src/sha256sum 
~/ubuntu-16.10-server-ppc64el.iso
  configure: WARNING: libacl development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without ACL support.
  configure: WARNING: libattr development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without xattr support.
  configure: WARNING: libcap library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without capability support.
  configure: WARNING: libgmp development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without GMP support.
  src/who.c: In function 'print_user':
  src/who.c:454:20: warning: initialization discards 'const' qualifier from 
pointer target type [-Wdiscarded-qualifiers]
   int   *a = utmp_ent->ut_addr_v6;
  ^~~~
  d14bdb413ea6cdc8d9354fcbc37a834b7de0c23f992deb0c6764d0fd5d65408e  
/home/gut/ubuntu-16.10-server-ppc64el.iso

  real0m18.670s
  user0m16.566s
  sys 0m0.745s

  $ # now with the following patch: ## Check Michael Stone's patch for an 
improved version.
  $ diff Makefile.in ../Makefile.in
  8989c8989
  < @am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ 
$< &&\
  ---
  > @am__fastdepCC_TRUE@  $(COMPILE) $$([ "$@" == "lib/sha256.o" ] && echo 
"-fno-schedule-insns") -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  $ cp ../Makefile.in Makefile.in
  $ (./configure && make -j9) > /dev/null && time src/sha256sum 
~/ubuntu-16.10-server-ppc64el.iso
  configure: WARNING: libacl development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without ACL support.
  configure: WARNING: libattr development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without xattr support.
  configure: WARNING: libcap library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without capability support.
  configure: WARNING: libgmp development library was not found or not usable.
  configure: WARNING: GNU coreutils will be built without GMP support.
  src/who.c: In function 'print_user':
  src/who.c:454:20: warning: initialization discards 'const' qualifier from 
pointer target 

[Touch-packages] [Bug 1669524] Re: GTK window functions `Always on Top, Move and Resize' don't work in Mir/Unity8

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

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

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

Title:
  GTK window functions `Always on Top, Move and Resize' don't work in
  Mir/Unity8

Status in Canonical System Image:
  New
Status in Mir:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  Confirmed
Status in mir package in Ubuntu:
  Triaged
Status in qtmir package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  ubuntu 17.04 unity8
  [unity8] Always on Top, Move and Resize doesn't work

  open solitaire, right click on the title bar (see attachement) and
  then select Always on Top. the app doesn't stay on top. same with Move
  and Resize, does nothing

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

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


[Touch-packages] [Bug 1669524] Re: GTK window functions `Always on Top, Move and Resize' don't work in Mir/Unity8

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

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

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

Title:
  GTK window functions `Always on Top, Move and Resize' don't work in
  Mir/Unity8

Status in Canonical System Image:
  New
Status in Mir:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  Confirmed
Status in mir package in Ubuntu:
  Triaged
Status in qtmir package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  ubuntu 17.04 unity8
  [unity8] Always on Top, Move and Resize doesn't work

  open solitaire, right click on the title bar (see attachement) and
  then select Always on Top. the app doesn't stay on top. same with Move
  and Resize, does nothing

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

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


[Touch-packages] [Bug 1669524] Re: GTK window functions `Always on Top, Move and Resize' don't work in Mir/Unity8

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

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

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

Title:
  GTK window functions `Always on Top, Move and Resize' don't work in
  Mir/Unity8

Status in Canonical System Image:
  New
Status in Mir:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  Confirmed
Status in mir package in Ubuntu:
  Triaged
Status in qtmir package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  ubuntu 17.04 unity8
  [unity8] Always on Top, Move and Resize doesn't work

  open solitaire, right click on the title bar (see attachement) and
  then select Always on Top. the app doesn't stay on top. same with Move
  and Resize, does nothing

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

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


[Touch-packages] [Bug 1669819] Re: [unity8] strange behavior when maximizing snaped windows

2017-03-03 Thread dinamic
it looks like when you maximize a snapped windows it just reverts to the
last position before beeing snapped but this behavior is not very good
IMHO. see attached screenshot (the position of the windows before
snapped and if you maximize after it will return to that)


** Attachment added: "screenshot20170303_185823387.png"
   
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1669819/+attachment/4830849/+files/screenshot20170303_185823387.png

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

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

Title:
  [unity8] strange behavior  when maximizing snaped windows

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

Bug description:
  Ubuntu 17.04 Unity8

  open random app (terminal app), snap it randomly on the screen (right
  buttom corner) by draging the app by the title bar (see screenshot1).
  now click on maximize window, the window almost leaves the screen
  (screenshot2).

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

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


[Touch-packages] [Bug 1512992] Re: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package lib32z1-dev 1

2017-03-03 Thread Brian Murray
I managed to recreate this is a clean yakkety virtual machine by
installing zlib1g-dev:i386 and then installing lib32z1-dev.

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

Title:
  package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade:
  trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is
  also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4

Status in One Hundred Papercuts:
  Confirmed
Status in zlib package in Ubuntu:
  Confirmed

Bug description:
  The package did not install when I did a fresh install of 15.10.

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: zlib1g-dev 1:1.2.8.dfsg-2ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  Date: Wed Nov  4 10:36:43 2015
  DuplicateSignature: package:zlib1g-dev:1:1.2.8.dfsg-2ubuntu4:trying to 
overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package 
lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  ErrorMessage: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', 
which is also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  InstallationDate: Installed on 2015-11-04 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1
  SourcePackage: zlib
  Title: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: 
trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in 
package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1668535] Re: Ubuntu17.04-Failed to activate (encrypted) Swap Partition

2017-03-03 Thread Brian Murray
** Also affects: systemd (Ubuntu Zesty)
   Importance: High
 Assignee: Dimitri John Ledkov (xnox)
   Status: Confirmed

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

Title:
  Ubuntu17.04-Failed to activate (encrypted) Swap Partition

Status in systemd package in Ubuntu:
  Confirmed
Status in systemd source package in Zesty:
  Confirmed

Bug description:
  ---Problem Description---
  Ubuntu17.04 installation with swap encryption ,Fails to activate Swap 
Partition.

  ---uname output---
  Linux tuleta4u-lp7 4.9.0-11-generic #12-Ubuntu SMP Mon Dec 12 16:16:45 UTC 
2016 ppc64le ppc64le ppc64le GNU/Linux

  ---boot type---
  VDVD installtion 

  ---Steps to reproduce--
  1.Install creating a prep boot, swap and root partition.
  2.Encrypt swap partition.
  3.Installation completes, and after reboot can see the failed messages for 
activating swap partition.

  --Error--
  While booting,

  [  OK  ] Started AppArmor initialization.
  [FAILED] Failed to activate swap Swap Partition.
  See 'systemctl status dev-sda2.swap' for details.
  [FAILED] Failed to start Cryptography Setup for sda2_crypt.
  See 'systemctl status systemd-cryptsetup@sda2_crypt.service' for details.
  [DEPEND] Dependency failed for Encrypted Volumes.
   Starting Raise network interfaces...

  ---Logs---

  root@tuleta4u-lp7:~# systemctl status systemd-cryptsetup@sda2_crypt.service
  ? systemd-cryptsetup@sda2_crypt.service - Cryptography Setup for sda2_crypt
 Loaded: loaded (/etc/crypttab; generated; vendor preset: enabled)
 Active: failed (Result: exit-code) since Mon 2017-01-02 01:58:14 EST; 1min 
57
   Docs: man:crypttab(5)
 man:systemd-cryptsetup-generator(8)
 man:systemd-cryptsetup@.service(8)
   Main PID: 2023 (code=exited, status=0/SUCCESS)

  Jan 02 01:58:14 tuleta4u-lp7 systemd[1]: Starting Cryptography Setup for 
sda2_cr
  Jan 02 01:58:14 tuleta4u-lp7 mkswap[2057]: mkswap: error: 
/dev/mapper/sda2_crypt
  Jan 02 01:58:14 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service: 
  Jan 02 01:58:14 tuleta4u-lp7 systemd[1]: Failed to start Cryptography Setup 
for 
  Jan 02 01:58:14 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service: 
  Jan 02 01:58:14 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service: 

  
  root@tuleta4u-lp7:~# systemctl start systemd-cryptsetup@sda2_crypt.service
  Job for systemd-cryptsetup@sda2_crypt.service failed because the control 
process exited with error code.
  See "systemctl status systemd-cryptsetup@sda2_crypt.service" and "journalctl 
-xe" for details.

  root@tuleta4u-lp7:~# journalctl -xe
  -- The start-up result is done.
  Jan 02 03:17:01 tuleta4u-lp7 CRON[3955]: pam_unix(cron:session): session 
opened 
  Jan 02 03:17:01 tuleta4u-lp7 CRON[3956]: (root) CMD (   cd / && run-parts 
--repo
  Jan 02 03:17:01 tuleta4u-lp7 CRON[3955]: pam_unix(cron:session): session 
closed 
  Jan 02 03:37:57 tuleta4u-lp7 systemd[1]: Starting Cryptography Setup for 
sda2_cr
  -- Subject: Unit systemd-cryptsetup@sda2_crypt.service has begun start-up
  -- Defined-By: systemd
  -- Support: http://www.ubuntu.com/support
  -- 
  -- Unit systemd-cryptsetup@sda2_crypt.service has begun starting up.
  Jan 02 03:37:57 tuleta4u-lp7 systemd-cryptsetup[3960]: Volume sda2_crypt 
already
  Jan 02 03:37:57 tuleta4u-lp7 mkswap[3962]: mkswap: error: 
/dev/mapper/sda2_crypt
  Jan 02 03:37:57 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service: 
  Jan 02 03:37:57 tuleta4u-lp7 systemd[1]: Failed to start Cryptography Setup 
for 
  -- Subject: Unit systemd-cryptsetup@sda2_crypt.service has failed
  -- Defined-By: systemd
  -- Support: http://www.ubuntu.com/support
  -- 
  -- Unit systemd-cryptsetup@sda2_crypt.service has failed.
  -- 
  -- The result is failed.
  Jan 02 03:37:57 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service: 
  Jan 02 03:37:57 tuleta4u-lp7 systemd[1]: 
systemd-cryptsetup@sda2_crypt.service:

  root@tuleta4u-lp7:~# cat /etc/fstab
  # /etc/fstab: static file system information.
  #
  # Use 'blkid' to print the universally unique identifier for a
  # device; this may be used with UUID= as a more robust way to name devices
  # that works even if disks are added and removed. See fstab(5).
  #
  #
  # / was on /dev/sda3 during installation
  UUID=44e6ba68-4cbb-4978-8d90-6077796b3715 /   xfs defaults
0   0

  root@tuleta4u-lp7:~# lsblk
  NAME   MAJ:MIN RM   SIZE RO TYPE  MOUNTPOINT
  sda  8:00   235G  0 disk  
  ??sda1   8:10 7M  0 part  
  ??sda2   8:2028G  0 part  
  ? ??sda2_crypt 253:0028G  0 crypt [SWAP]
  ??sda3   8:30 167.7G  0 part  /
  ??sda4   8:4028G  0 part  
  sdb  8:16   0   235G  0 disk  
  sr0 11:01 631.3M  0 rom   

[Touch-packages] [Bug 1512992] Please test proposed package

2017-03-03 Thread Brian Murray
Hello robert, or anyone else affected,

Accepted zlib into xenial-proposed. The package will build now and be
available at https://launchpad.net/ubuntu/+source/zlib/1:1.2.8.dfsg-
2ubuntu4.1 in a few hours, and then in the -proposed repository.

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

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

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

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

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

Title:
  package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade:
  trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is
  also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4

Status in One Hundred Papercuts:
  Confirmed
Status in zlib package in Ubuntu:
  Fix Released
Status in zlib source package in Xenial:
  Fix Committed
Status in zlib source package in Yakkety:
  Fix Committed

Bug description:
  Test Case
  -
  1) Install zlib1g-dev:i386 
  2) Install lib32z1-dev.
  3) Observe a package installation failure

  After enabling -proposed you should be able to install both packages
  without an issue.

  Original Description
  

  The package did not install when I did a fresh install of 15.10.

  ProblemType: PackageDistroRelease: Ubuntu 15.10
  Package: zlib1g-dev 1:1.2.8.dfsg-2ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  Date: Wed Nov  4 10:36:43 2015
  DuplicateSignature: package:zlib1g-dev:1:1.2.8.dfsg-2ubuntu4:trying to 
overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package 
lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  ErrorMessage: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', 
which is also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  InstallationDate: Installed on 2015-11-04 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1SourcePackage: zlib
  Title: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: 
trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in 
package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1512992] Re: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package lib32z1-dev 1

2017-03-03 Thread Brian Murray
Hello robert, or anyone else affected,

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

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

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

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

** Description changed:

+ Test Case
+ -
+ 1) Install zlib1g-dev:i386 
+ 2) Install lib32z1-dev.
+ 3) Observe a package installation failure
+ 
+ After enabling -proposed you should be able to install both packages
+ without an issue.
+ 
+ Original Description
+ 
+ 
  The package did not install when I did a fresh install of 15.10.
  
- ProblemType: Package
- DistroRelease: Ubuntu 15.10
+ ProblemType: PackageDistroRelease: Ubuntu 15.10
  Package: zlib1g-dev 1:1.2.8.dfsg-2ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  Date: Wed Nov  4 10:36:43 2015
  DuplicateSignature: package:zlib1g-dev:1:1.2.8.dfsg-2ubuntu4:trying to 
overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package 
lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  ErrorMessage: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', 
which is also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  InstallationDate: Installed on 2015-11-04 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
-  dpkg 1.18.2ubuntu5
-  apt  1.0.10.2ubuntu1
- SourcePackage: zlib
+  dpkg 1.18.2ubuntu5
+  apt  1.0.10.2ubuntu1SourcePackage: zlib
  Title: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: 
trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in 
package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  UpgradeStatus: No upgrade log present (probably fresh install)

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

** Tags added: verification-needed

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

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

Title:
  package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade:
  trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is
  also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4

Status in One Hundred Papercuts:
  Confirmed
Status in zlib package in Ubuntu:
  Fix Released
Status in zlib source package in Xenial:
  Fix Committed
Status in zlib source package in Yakkety:
  Fix Committed

Bug description:
  Test Case
  -
  1) Install zlib1g-dev:i386 
  2) Install lib32z1-dev.
  3) Observe a package installation failure

  After enabling -proposed you should be able to install both packages
  without an issue.

  Original Description
  

  The package did not install when I did a fresh install of 15.10.

  ProblemType: PackageDistroRelease: Ubuntu 15.10
  Package: zlib1g-dev 1:1.2.8.dfsg-2ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  Date: Wed Nov  4 10:36:43 2015
  DuplicateSignature: package:zlib1g-dev:1:1.2.8.dfsg-2ubuntu4:trying to 
overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package 
lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  ErrorMessage: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', 
which is also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  InstallationDate: Installed on 2015-11-04 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1SourcePackage: zlib
  Title: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: 
trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in 
package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: 

[Touch-packages] [Bug 1669819] Re: [unity8] strange behavior when maximizing snaped windows

2017-03-03 Thread Michał Sawicz
Agreed, we should be restoring the position the window was before you
started dragging it.

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

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

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

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

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

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

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

Title:
  [unity8] strange behavior  when maximizing snaped windows

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

Bug description:
  Ubuntu 17.04 Unity8

  open random app (terminal app), snap it randomly on the screen (right
  buttom corner) by draging the app by the title bar (see screenshot1).
  now click on maximize window, the window almost leaves the screen
  (screenshot2).

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

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


[Touch-packages] [Bug 1669839] [NEW] [unity8] context menu in app drawer/search closes after the app drawer

2017-03-03 Thread dinamic
Public bug reported:

Ubuntu 17.04 Unity 8
open the app drawer, right click in the Search field to bring up the context 
menu, now click outside the app drawer to close. the context menu will stay on 
screen until the app drawer closes. can't take a screenshot because apparently 
the context menu is one level above :o) (the mouse goes under the context menu 
and you can't print screen the context menu)

** Affects: canonical-devices-system-image
 Importance: Undecided
 Status: New

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

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

** Description changed:

  Ubuntu 17.04 Unity 8
- open the app drawer, right click in the Search field to bring up the context 
menu, now click outside the app drawer to close. the context menu will stay on 
screen until the app drawer closes. can't take a screenshot because apparently 
the context menu is one level above :o)
+ open the app drawer, right click in the Search field to bring up the context 
menu, now click outside the app drawer to close. the context menu will stay on 
screen until the app drawer closes. can't take a screenshot because apparently 
the context menu is one level above :o) (the mouse goes under the context menu 
and you can't print screen the context menu)

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

Title:
  [unity8] context menu in app drawer/search closes after the app drawer

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

Bug description:
  Ubuntu 17.04 Unity 8
  open the app drawer, right click in the Search field to bring up the context 
menu, now click outside the app drawer to close. the context menu will stay on 
screen until the app drawer closes. can't take a screenshot because apparently 
the context menu is one level above :o) (the mouse goes under the context menu 
and you can't print screen the context menu)

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

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


[Touch-packages] [Bug 1663794] Re: Poweroff/Reboot Hangs :: Ubuntu 16.04

2017-03-03 Thread Renê Barbosa
I've installed AMDGPU-PRO 16.60 and booted the system with reboot=bios
parameter. Now the system is shutting down properly after a few seconds
of hang. I am Not sure about which of these 2 modifications has "fixed"
the issue.

The shuttdown is stuck at "Reboot: power down" for these seconds.

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

Title:
  Poweroff/Reboot Hangs :: Ubuntu 16.04

Status in systemd package in Ubuntu:
  New

Bug description:
  After upgrading my laptop (Dell Inspiron 5447) to Ubuntu 16.04 I saw
  that I can not shut down or restart after a few hours using the
  system. It hangs in Plymouth and stays that way until I force the
  shutdown by pressing the On / Off button.

  As this is a common bug (there are tons of questions on the Internet)
  I tried to fix it, but none of my attempts were effective. Already
  tried:

  1. Boot with acpi=force, acpi=noirq and pci=noacpi
  2. Disable Swap
  3. Run 'sync' before reboot or shutdown
  4. Use another kernel version (4.7, 4.8, 4.9 and 4.10 from mainline)
  5. Disabling USB 3.0
  6. Disabling TLP

  The most interesting thing is: I can shutdown/reboot normally using
  14.04 and the kernel from Xenial HWE and it's because of that I
  believe this is a systemd bug.

  The problem can also be reached just running "halt" of "systemctl
  halt" after booting 16.04 in this machine. Running these commands with
  "force" option is working fine.

  My Machine Specs:

  Dell Inspiron 5447 - BIOS A10
  Intel Core i5-4210 Processor
  8 GB RAM
  480 SSD Sandisk
  Hybrid Graphics (i915/amdgpu - Radeon R7 M265)

  --- BUG Information 

  Reproducible:
  Always

  Steps to Reproduce:
  1.Power on the machine
  2.Do something, anything or nothing for a few hours
  3.Try to shutdown/reboot using halt, shutdown, reboot, etc

  Actual Results:
  The computer is not shutting down: "Reached target shutdown" and hangs there.

  Expected Results:
  Powering off/rebooting the machine.
  ---
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 16.04
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2017-02-10 (3 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: Dell Inc. Inspiron 5447
  Package: systemd 229-4ubuntu16
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.8.0-36-generic 
root=UUID=d725c86b-f9f7-4ae9-8cd8-7c27f3a8a06a ro quiet xhci_hcd.quirks=270336 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 4.8.0-36.36~16.04.1-generic 4.8.11
  SystemdDelta:
   [EXTENDED]   /etc/systemd/system/display-manager.service → 
/lib/systemd/system/display-manager.service.d/xdiagnose.conf
   [EXTENDED]   /lib/systemd/system/systemd-timesyncd.service → 
/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
   [EXTENDED]   /lib/systemd/system/rc-local.service → 
/lib/systemd/system/rc-local.service.d/debian.conf

   3 overridden configuration files found.
  Tags:  xenial
  Uname: Linux 4.8.0-36-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 08/25/2016
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 0MHP6R
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A10
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd08/25/2016:svnDellInc.:pnInspiron5447:pvrA10:rvnDellInc.:rn0MHP6R:rvrA00:cvnDellInc.:ct8:cvrA10:
  dmi.product.name: Inspiron 5447
  dmi.product.version: A10
  dmi.sys.vendor: Dell Inc.
  mtime.conffile..etc.systemd.logind.conf: 2017-02-11T01:12:03.22
  mtime.conffile..etc.systemd.system.conf: 2017-02-09T22:18:49.885303
  mtime.conffile..etc.systemd.timesyncd.conf: 2017-02-09T22:19:05.646455

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

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


[Touch-packages] [Bug 1669800] Re: Liferea AppArmor profile

2017-03-03 Thread Raúl Vidal
Updated AppArmor Liferea profile with an additional member for the
MountTracker.

** Attachment added: "usr.bin.liferea"
   
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1669800/+attachment/4830845/+files/usr.bin.liferea

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

Title:
  Liferea AppArmor profile

Status in apparmor package in Ubuntu:
  New

Bug description:
  Test plan:
  1. Load Liferea from the unity launcher
  2. Add new RSS feed.
  3. Check for updates.
  4. Read an entry of a feed.
  5. Open entry in tab.
  6. Open entry in browser.
  7. Open entry in external browser.
  8. Close window.
  9. Open window from the message notifications.
  10. Export OPML RSS feed.
  11. Import OPML RSS feed.
  12. Close window.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: apparmor 2.10.95-4ubuntu5.1
  ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
  Uname: Linux 4.8.0-39-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8.2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Mar  3 15:14:29 2017
  InstallationDate: Installed on 2015-07-31 (580 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  ProcKernelCmdline: BOOT_IMAGE=/vmlinuz-4.8.0-39-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash noht
  SourcePackage: apparmor
  UpgradeStatus: Upgraded to yakkety on 2016-11-01 (121 days ago)
  mtime.conffile..etc.apparmor.d.abstractions.base: 2017-02-25T03:27:12.649925
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.java: 
2017-02-26T19:05:27.563689
  
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.ubuntu-integration:
 2017-02-20T21:15:58.771432
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.user-files: 
2017-02-18T19:33:07.157766
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-unity7-base: 
2017-02-23T22:37:50.022685
  mtime.conffile..etc.apparmor.d.tunables.xdg-user-dirs: 
2017-02-22T02:08:02.499216

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

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


[Touch-packages] [Bug 1512992] Re: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package lib32z1-dev 1

2017-03-03 Thread Brian Murray
This is *not* reproducible on zesty so the packaging changes in zesty
bear investigating.

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

Title:
  package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade:
  trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is
  also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4

Status in One Hundred Papercuts:
  Confirmed
Status in zlib package in Ubuntu:
  Confirmed

Bug description:
  The package did not install when I did a fresh install of 15.10.

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: zlib1g-dev 1:1.2.8.dfsg-2ubuntu4
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  Date: Wed Nov  4 10:36:43 2015
  DuplicateSignature: package:zlib1g-dev:1:1.2.8.dfsg-2ubuntu4:trying to 
overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in package 
lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  ErrorMessage: trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', 
which is also in package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  InstallationDate: Installed on 2015-11-04 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021)
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu5
   apt  1.0.10.2ubuntu1
  SourcePackage: zlib
  Title: package zlib1g-dev 1:1.2.8.dfsg-2ubuntu4 failed to install/upgrade: 
trying to overwrite '/usr/include/i386-linux-gnu/zconf.h', which is also in 
package lib32z1-dev 1:1.2.8.dfsg-2ubuntu4
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1669839] Re: [unity8] context menu in app drawer/search closes after the app drawer

2017-03-03 Thread Hans Joachim Desserud
** Tags added: zesty

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

Title:
  [unity8] context menu in app drawer/search closes after the app drawer

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

Bug description:
  Ubuntu 17.04 Unity 8
  open the app drawer, right click in the Search field to bring up the context 
menu, now click outside the app drawer to close. the context menu will stay on 
screen until the app drawer closes. can't take a screenshot because apparently 
the context menu is one level above :o) (the mouse goes under the context menu 
and you can't print screen the context menu)

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

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


[Touch-packages] [Bug 1667645] Re: If the only surface in a session cannot take focus the server crashes

2017-03-03 Thread Launchpad Bug Tracker
This bug was fixed in the package miral - 1.3.0+17.04.20170303-0ubuntu1

---
miral (1.3.0+17.04.20170303-0ubuntu1) zesty; urgency=medium

  * New upstream release 1.3.0
(https://launchpad.net/miral/+milestone/1.3)

- ABI summary:
  . miral ABI unchanged at 2
- Enhancements:
  . [libmiral] Support for workspaces
  . [libmiral] Add miral::WindowManagerTools::focus_prev_within_application
   (LP: #1668562)
  . [libmirclientcpp] A better description of libmirclientcpp-dev
  . [libmirclientcpp] Add RAII wrapper for MirDisplayConfig.
  . [libmirclientcpp] Prevent accidental double-release by deleting release
  functions for handle classes
  . [miral-shell] Example workspaces implementation
  . [miral-shell] Use background to show keyboard shortcuts
- Bugs fixed:
  . [libmiral] Join internal client threads before server shutdown
   (LP: #1668651)
  . [miral-shell] Workaround for crash on exit (LP: #1667645)

 -- Alan Griffiths   Fri, 03 Mar 2017
10:19:14 +

** Changed in: miral (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  If the only surface in a session cannot take focus the server crashes

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

Bug description:
  The problem is in ms::ApplicationSession::surface_after() it can
  dereference the surfaces.end() iterator.

  Original description:

  $ bin/miral-desktop
  ...
  terminate called after throwing an instance of 
'boost::exception_detail::clone_impl'
    what():  surface_after: surface is not a member of this session
  Aborted (core dumped)

  Using tiling WM doesn't exhibit this problem:

  $ bin/miral-desktop --window-manager tiling

  I would guess this is something to do with the recent addition of
  wallpaper. And possibly due to this test box being slow (14 years
  old), not due to Xenial/Mir 21.0.

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

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


[Touch-packages] [Bug 1669880] [NEW] [unity8] Launcher navigation stops working if you open the app drawer

2017-03-03 Thread dinamic
Public bug reported:

ubuntu 17.04 Unity 8

first, DO NOT OPEN THE APP DRAWER.
press ALT F1, now you should see the a blue outline on the ubuntu logo, now 
press TAB or the Arrow key UP and DOWN to navigate. 

now open the app drawer with the mouse or SUPER A then close the app
drower. now try to navigate again. ALT F1 and then up/down or tab. it
doesn't work anymore.

workaround: right click on the launcher to probably give focus again or
something

** Affects: canonical-devices-system-image
 Importance: Undecided
 Status: New

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

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

** Summary changed:

- [unity8] Launcher navigations stops working if you open the app drawer
+ [unity8] Launcher navigation stops working if you open the app drawer

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

Title:
  [unity8] Launcher navigation stops working if you open the app drawer

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

Bug description:
  ubuntu 17.04 Unity 8

  first, DO NOT OPEN THE APP DRAWER.
  press ALT F1, now you should see the a blue outline on the ubuntu logo, now 
press TAB or the Arrow key UP and DOWN to navigate. 

  now open the app drawer with the mouse or SUPER A then close the app
  drower. now try to navigate again. ALT F1 and then up/down or tab. it
  doesn't work anymore.

  workaround: right click on the launcher to probably give focus again
  or something

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

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


[Touch-packages] [Bug 945135] Re: 043_ubuntu_menu_proxy.patch does not build

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

** Changed in: gtk+2.0 (Ubuntu)
   Status: New => Confirmed

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

Title:
  043_ubuntu_menu_proxy.patch does not build

Status in gtk+2.0 package in Ubuntu:
  Confirmed

Bug description:
  The '043_ubuntu_menu_proxy.patch' patch causes the GTK2 build to fail
  with:

  In file included from gtkaccelgroup.c:39:0:
  gtkalias.h:6241:18: error: 'ubuntu_gtk_menu_shell_activate_mnemonic' 
undeclared here (not in a function)

  This is reproducible in Ubuntu (11.10 and 12.04) and Arch Linux (with
  latest updates, as of March 02) when compiling manually. György Balló
  has generously provided a patch that fixes the issue. It's attached to
  this bug report.

  Note: I don't know what magic the debian/rules packaging file does,
  but this is not reproducible when recompiling the DEB sources.

  Thanks in advance!

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

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


[Touch-packages] [Bug 1669901] [NEW] unity8 dash crash - bad url

2017-03-03 Thread dinamic
Public bug reported:

unity8 dash crash - bad url

ProblemType: RecoverableProblem
DistroRelease: Ubuntu 17.04
Package: unity8 8.15+17.04.20170221-0ubuntu1
ProcVersionSignature: Ubuntu 4.10.0-11.13-generic 4.10.1
Uname: Linux 4.10.0-11-generic x86_64
ApportVersion: 2.20.4-0ubuntu2
Architecture: amd64
BadURL: appid://ubuntu-calculator-app/ubuntu-calculator-app/current-user-version
CurrentDesktop: Unity:Unity8
Date: Fri Mar  3 20:36:14 2017
DuplicateSignature: /usr/bin/unity8-dash:url-dispatcher-bad-url
ExecutablePath: /usr/bin/unity8-dash
InstallationDate: Installed on 2016-12-12 (81 days ago)
InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Alpha amd64 (20161108)
ProcCmdline: unity8-dash --desktop_file_hint=unity8-dash.desktop
SourcePackage: unity8
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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


** Tags: amd64 apport-recoverableproblem need-duplicate-check 
package-from-proposed zesty

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

Title:
  unity8 dash crash - bad url

Status in unity8 package in Ubuntu:
  New

Bug description:
  unity8 dash crash - bad url

  ProblemType: RecoverableProblem
  DistroRelease: Ubuntu 17.04
  Package: unity8 8.15+17.04.20170221-0ubuntu1
  ProcVersionSignature: Ubuntu 4.10.0-11.13-generic 4.10.1
  Uname: Linux 4.10.0-11-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  BadURL: 
appid://ubuntu-calculator-app/ubuntu-calculator-app/current-user-version
  CurrentDesktop: Unity:Unity8
  Date: Fri Mar  3 20:36:14 2017
  DuplicateSignature: /usr/bin/unity8-dash:url-dispatcher-bad-url
  ExecutablePath: /usr/bin/unity8-dash
  InstallationDate: Installed on 2016-12-12 (81 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Alpha amd64 (20161108)
  ProcCmdline: unity8-dash --desktop_file_hint=unity8-dash.desktop
  SourcePackage: unity8
  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/unity8/+bug/1669901/+subscriptions

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


[Touch-packages] [Bug 316366] Re: keyboard layout add selection bug

2017-03-03 Thread Bug Watch Updater
** Changed in: gtk
   Status: New => Confirmed

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

Title:
  keyboard layout add selection bug

Status in GTK+:
  Confirmed
Status in gtk+2.0 package in Ubuntu:
  Triaged

Bug description:
  In the Keyboard Preferences section, when trying to add a new keyboard
  layout (either by country selection or by language selection), one
  cannot skip to the desired country/language by pressing the first
  letter of the word. The only navigation option is scrolling through
  the entire list.

  Skipping to a section after pressing the word's first key should be
  implemented. I consider this a usability problem.

  Problem encountered in: Ubuntu 8.10, Gnome 2.24.1

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

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


[Touch-packages] [Bug 1669926] [NEW] package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2017-03-03 Thread Anna
Public bug reported:

package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
exited with return code 1

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-59-generic 4.4.0-59.80
ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
Uname: Linux 4.4.0-64-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  anna   1608 F pulseaudio
Date: Fri Mar  3 15:12:07 2017
DuplicateSignature:
 package:linux-image-4.4.0-59-generic:4.4.0-59.80
 Removing linux-signed-image-4.4.0-59-generic (4.4.0-59.80) ...
 rm: cannot remove '/boot/vmlinuz-4.4.0-59-generic.efi.signed': Structure needs 
cleaning
 dpkg: error processing package linux-signed-image-4.4.0-59-generic (--remove):
  subprocess installed post-removal script returned error exit status 1
ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
HibernationDevice: RESUME=UUID=d6c57af0-68b8-4a5b-bc9d-e1040298404c
InstallationDate: Installed on 2016-09-21 (163 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
IwConfig:
 lono wireless extensions.
 
 enp5s0no wireless extensions.
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 003: ID 046d:c31c Logitech, Inc. Keyboard K120
 Bus 001 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Gigabyte Technology Co., Ltd. To be filled by O.E.M.
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-64-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc N/A
RfKill:
 
SourcePackage: initramfs-tools
Title: package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/23/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F6
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z170-HD3-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF6:bd02/23/2016:svnGigabyteTechnologyCo.,Ltd.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ170-HD3-CF:rvrx.x:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To be filled by O.E.M.
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  package linux-image-4.4.0-59-generic 4.4.0-59.80 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-59-generic 4.4.0-59.80
  ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
  Uname: Linux 4.4.0-64-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  anna   1608 F pulseaudio
  Date: Fri Mar  3 15:12:07 2017
  DuplicateSignature:
   package:linux-image-4.4.0-59-generic:4.4.0-59.80
   Removing linux-signed-image-4.4.0-59-generic (4.4.0-59.80) ...
   rm: cannot remove '/boot/vmlinuz-4.4.0-59-generic.efi.signed': Structure 
needs cleaning
   dpkg: error processing package linux-signed-image-4.4.0-59-generic 
(--remove):
subprocess installed post-removal script returned error exit status 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=d6c57af0-68b8-4a5b-bc9d-e1040298404c
  InstallationDate: Installed on 2016-09-21 (163 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  IwConfig:
   lono wireless extensions.
   
   enp5s0no wireless extensions.
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: 

[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
I assume /sys/fs/cgroup/systemd was used because that's where systemd
expected to see it.  I can't find any version which mounts it at
/sys/fs/cgroup/name=systemd - do you have a version that does that?

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

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

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


[Touch-packages] [Bug 1669932] [NEW] package python-dbus 1.2.0-3 failed to install/upgrade: サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました

2017-03-03 Thread Jerome Morrow
Public bug reported:

I don't know what exactly the problem is, but problem report is always
displayed.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: python-dbus 1.2.0-3
ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
Uname: Linux 4.4.0-64-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.4
Architecture: amd64
Date: Sat Mar  4 00:08:10 2017
ErrorMessage: サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました
InstallationDate: Installed on 2017-01-22 (40 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.15ubuntu0.2
SourcePackage: dbus-python
Title: package python-dbus 1.2.0-3 failed to install/upgrade: サブプロセス インストール済みの 
post-installation スクリプト はエラー終了ステータス 1 を返しました
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: dbus-python (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package xenial

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

Title:
  package python-dbus 1.2.0-3 failed to install/upgrade: サブプロセス
  インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました

Status in dbus-python package in Ubuntu:
  New

Bug description:
  I don't know what exactly the problem is, but problem report is always
  displayed.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: python-dbus 1.2.0-3
  ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
  Uname: Linux 4.4.0-64-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.4
  Architecture: amd64
  Date: Sat Mar  4 00:08:10 2017
  ErrorMessage: サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました
  InstallationDate: Installed on 2017-01-22 (40 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.15ubuntu0.2
  SourcePackage: dbus-python
  Title: package python-dbus 1.2.0-3 failed to install/upgrade: サブプロセス 
インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1669931] [NEW] apport not opening browser

2017-03-03 Thread taka k.
Public bug reported:

Ubuntu 14.04.5 LTS with apport 2.14.1-0ubuntu3.23.

After a system crash, apport launches and presents me with the "Send
problem report?" window
(https://help.ubuntu.com/community/ReportingBugs?action=AttachFile=get
=apport-problem-report.png).  I click to send the report but nothing
happens after that... not even the next dialog
(https://help.ubuntu.com/community/ReportingBugs?action=AttachFile=get
=information-upload.png) opens up, and launchpad isn't opened so i can
report the bug.

Expected: New browser tab is opened to login to launchpad and report the
bug.

Perhaps related to Bug #1486639 and Bug #1630720

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

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

Title:
  apport not opening browser

Status in apport package in Ubuntu:
  New

Bug description:
  Ubuntu 14.04.5 LTS with apport 2.14.1-0ubuntu3.23.

  After a system crash, apport launches and presents me with the "Send
  problem report?" window
  
(https://help.ubuntu.com/community/ReportingBugs?action=AttachFile=get
  =apport-problem-report.png).  I click to send the report but nothing
  happens after that... not even the next dialog
  
(https://help.ubuntu.com/community/ReportingBugs?action=AttachFile=get
  =information-upload.png) opens up, and launchpad isn't opened so i can
  report the bug.

  Expected: New browser tab is opened to login to launchpad and report
  the bug.

  Perhaps related to Bug #1486639 and Bug #1630720

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

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


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

2017-03-03 Thread Rahul Borkar
Hi

The Unity7.log is flooded with messages and is taking my entire disk
space.


"extern "Python": function Cryptography_rand_bytes() called, but 
@ffi.def_extern() was not called in the current subinterpreter. Returning 0."

My system is Ubuntu 16.04 
Kodi 16.1 version
python-openssl: 0.15.1-2build1 (http://gb.archive.ubuntu.com/ubuntu xenial/main 
amd64 Packages)

Please help.

Thanks
Rahul

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

Title:
  xinit flooding syslog

Status in pyOpenSSL:
  Fix Released
Status in pyopenssl package in Ubuntu:
  Fix Released
Status in xorg package in Ubuntu:
  Invalid
Status in pyopenssl source package in Yakkety:
  Triaged
Status in xorg source package in Yakkety:
  Invalid

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

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

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

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

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

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

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

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


[Touch-packages] [Bug 1577494] Re: application dies with 'VMware: vmw_ioctl_command error Invalid argument.'

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

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

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

Title:
  application dies with 'VMware: vmw_ioctl_command error Invalid
  argument.'

Status in ROS:
  New
Status in Stellarium:
  Incomplete
Status in blender package in Ubuntu:
  Confirmed
Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  running stellarium in ubuntu 16.04 in a VMWare 12.1.1 virtual machine.
  thanks.

  


  jstokes@ubuntu1604:~$ stellarium

  ** (stellarium:1768): WARNING **: Couldn't connect to accessibility bus: 
Failed to connect to socket /tmp/dbus-6Rt5CAvHFy: Connection refused
   ---
  [ This is Stellarium 0.14.3 - http://www.stellarium.org ]
  [ Copyright (C) 2000-2016 Fabien Chereau et al. ]
   ---
  Writing log file to: "/home/jstokes/.stellarium/log.txt"
  File search paths:
0 .  "/home/jstokes/.stellarium"
1 .  "/usr/share/stellarium"
  Config file is:  "/home/jstokes/.stellarium/config.ini"
  Detected: OpenGL "3.0"
  Driver version string: "3.0 Mesa 11.2.0"
  GL vendor is "VMware, Inc."
  GL renderer is "Gallium 0.4 on SVGA3D; build: RELEASE;  LLVM;"
  GL Shading Language version is "1.30"
  MESA Version Number detected:  11.2
  Mesa version is fine, we should not see a graphics problem.
  GLSL Version Number detected:  1.3
  GLSL version is fine, we should not see a graphics problem.
  Cache directory is:  "/home/jstokes/.cache/stellarium/stellarium"
  Sky language is  "en_US"
  Application language is  "en_US"
  Loading Solar System data ...
  Loading star data ...
  "Loading \"/usr/share/stellarium/stars/default/stars_0_0v0_5.cat\": 0_0v0_2; 
4963"
  "Loading \"/usr/share/stellarium/stars/default/stars_1_0v0_5.cat\": 1_0v0_2; 
21598"
  "Loading \"/usr/share/stellarium/stars/default/stars_2_0v0_5.cat\": 2_0v0_2; 
150090"
  "Loading \"/usr/share/stellarium/stars/default/stars_3_1v0_3.cat\": 3_1v0_3; 
428466"
  Finished loading star catalogue data, max_geodesic_level:  3
  navigation/preset_sky_time is a double - treating as jday: "2451514.25001"
  Reloading DSO data...
  Loaded 10756 DSO records
  Loading DSO name data ...
  Loaded 221 / 297 DSO name records successfully
  Loading star names from 
"/usr/share/stellarium/skycultures/western/star_names.fab"
  Loaded 339 / 339 common star names
  Loading star names from "/usr/share/stellarium/stars/default/name.fab"
  Loaded 4506 / 4506 scientific star names
  Loading variable stars from 
"/usr/share/stellarium/stars/default/gcvs_hip_part.dat"
  Loaded 6916 / 6916 variable stars
  Loading cross-index data from 
"/usr/share/stellarium/stars/default/cross-index.dat"
  Loaded 108279 / 108279 cross-index data records
  Loaded 88 / 88 constellation records successfully for culture "western"
  Loaded 85 / 85 constellation art records successfully for culture "western"
  Loaded 88 / 88 constellation names
  Loading constellation boundary data ... 
  Loaded 782 constellation boundary segments
  Initializing basic GL shaders... 
  Creating GUI ...
  Loaded plugin "Exoplanets"
  Exoplanets: version of the format of the catalog: 1
  Exoplanets: loading catalog file: 
"/home/jstokes/.stellarium/modules/Exoplanets/exoplanets.json"
  Loaded plugin "FOV"
  Loaded plugin "MeteorShowers"
  MeteorShowersMgr: Loading catalog file: 
"/home/jstokes/.stellarium/modules/MeteorShowers/showers.json"
  Loaded plugin "Novae"
  Novae: version of the catalog: 1
  Novae: loading catalog file: 
"/home/jstokes/.stellarium/modules/Novae/novae.json"
  Loaded plugin "Oculars"
  Ocular plugin - press Command-O to toggle eyepiece view mode. Press ALT-o for 
configuration.
  Oculars::validateIniFile ocular.ini exists at:  
"/home/jstokes/.stellarium/modules/Oculars/ocular.ini" . Checking version...
  Oculars::validateIniFile found existing ini file version  3
  Loaded plugin "Satellites"
  Satellites: loading catalog file: 
"/home/jstokes/.stellarium/modules/Satellites/satellites.json"
  Satellite has invalid orbit: "FLOCK 1B-27" "40422"
  Satellite has invalid orbit: "FLOCK 1B-22" "40428"
  Satellite has invalid orbit: "FLOCK 1B-10" "40429"
  Satellite has invalid orbit: "FLOCK 1B-5" "40453"
  Satellite has invalid orbit: "FLOCK 1B-6" "40454"
  Satellite has invalid orbit: "FLOCK 1B-12" "40460"
  Loaded plugin "SolarSystemEditor"
  Using the ssystem.ini file that already exists in the user directory...
  Unable to find module called "TimeZoneConfiguration"
  Loaded plugin "TimeZoneConfiguration"
  VMware: vmw_ioctl_command error Invalid argument.
  Aborted (core dumped)

To manage notifications about this bug go to:

[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
This bug incidentally also affects the cgroupfs-mount package.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
There is a bug (which is fixed in newer versions) in lxc in that it does
not ignore cgroups which are not used by the container.  So in your
particular case, if you're not using the co-mounted controllers, then
indeed fixing the lxc bug should work for you as well.

Nevertheless some people will want to run containers using those
controllers, so cgroup-lite (and cgroupfs-mount) will need to be fixed.
But that's not your problem :)  I understand if you want to leave it at
this - I'll just need to improve my awk skills :)  I just wanted to ask
to avoid duplication of effort.

Thanks for your help so far.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1668825] Re: Sync pango1.0 1.40.4-1 (main) from Debian unstable (main)

2017-03-03 Thread Jeremy Bicha
** Tags added: upgrade-software-version zesty

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

Title:
  Sync pango1.0 1.40.4-1 (main) from Debian unstable (main)

Status in pango1.0 package in Ubuntu:
  New

Bug description:
  Please sync pango1.0 1.40.4-1 (main) from Debian unstable (main)

  It's a new minimal bugfix release:
  https://git.gnome.org/browse/pango/tree/NEWS
  https://git.gnome.org/browse/pango/log

  Changelog entries since current zesty version 1.40.3-3:

  pango1.0 (1.40.4-1) unstable; urgency=medium

* New upstream release.
* Drop debian/patches/disable-layout-test.patch, no longer needed.
* Force update of pango-view.1.in to ensure it doesn't contain a dummy text.
  This requires a Build-Depends on help2man. (Closes: #774431)

   -- Michael Biebl   Tue, 28 Feb 2017 19:59:30 +0100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pango1.0/+bug/1668825/+subscriptions

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
** Also affects: cgroup-lite (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: cgroup-lite (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: cgroup-lite (Ubuntu Yakkety)
   Importance: Undecided
   Status: New

** Also affects: cgroup-lite (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Changed in: cgroup-lite (Ubuntu Precise)
   Importance: Undecided => High

** Changed in: cgroup-lite (Ubuntu Trusty)
   Importance: Undecided => High

** Changed in: cgroup-lite (Ubuntu Xenial)
   Importance: Undecided => High

** Changed in: cgroup-lite (Ubuntu Yakkety)
   Importance: Undecided => High

** Description changed:

  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the cgroups
  inside the containers has stopped working. This is because systemd now
  comounts multiple controllers on a single hierarchy, which prevents
  mounting them individually inside the container.
+ 
+ ===  SRU Justification 
+ Impact: nested containers fail to start
+ Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
+ Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
+ ===

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1669952] [NEW] package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with return code 2

2017-03-03 Thread cristiano felipe de mesquita castro
Public bug reported:

.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-64-generic 4.4.0-64.85
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  felipe 2094 F pulseaudio
 /dev/snd/controlC1:  felipe 2094 F pulseaudio
Date: Fri Mar  3 23:47:53 2017
ErrorMessage: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
HibernationDevice: RESUME=UUID=0d64cd5e-580a-4d9b-ae8f-c6d2ef2b4490
InstallationDate: Installed on 2016-08-15 (200 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: Positivo Informatica SA POSITIVO MASTER N130i
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-62-generic.efi.signed 
root=UUID=166dd080-1874-4857-bc80-22d652b0991a ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc N/A
SourcePackage: apt
Title: package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/27/2015
dmi.bios.vendor: Desenvolvida por Positivo Informatica SA
dmi.bios.version: 1.05.01RPOU
dmi.board.asset.tag: Tag 12345
dmi.board.name: POSITIVO MASTER N130i
dmi.board.vendor: Positivo Informatica SA
dmi.board.version: POSITIVO
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 10
dmi.chassis.vendor: Positivo Informatica SA
dmi.chassis.version: POSITIVO
dmi.modalias: 
dmi:bvnDesenvolvidaporPositivoInformaticaSA:bvr1.05.01RPOU:bd11/27/2015:svnPositivoInformaticaSA:pnPOSITIVOMASTERN130i:pvr1.05.01PO:rvnPositivoInformaticaSA:rnPOSITIVOMASTERN130i:rvrPOSITIVO:cvnPositivoInformaticaSA:ct10:cvrPOSITIVO:
dmi.product.name: POSITIVO MASTER N130i
dmi.product.version: 1.05.01PO
dmi.sys.vendor: Positivo Informatica SA

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


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal
  exited with return code 2

Status in apt package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-64-generic 4.4.0-64.85
  ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
  Uname: Linux 4.4.0-62-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  felipe 2094 F pulseaudio
   /dev/snd/controlC1:  felipe 2094 F pulseaudio
  Date: Fri Mar  3 23:47:53 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
  HibernationDevice: RESUME=UUID=0d64cd5e-580a-4d9b-ae8f-c6d2ef2b4490
  InstallationDate: Installed on 2016-08-15 (200 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Positivo Informatica SA POSITIVO MASTER N130i
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-62-generic.efi.signed 
root=UUID=166dd080-1874-4857-bc80-22d652b0991a ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: apt
  Title: package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/27/2015
  dmi.bios.vendor: Desenvolvida por Positivo Informatica SA
  dmi.bios.version: 1.05.01RPOU
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: POSITIVO MASTER N130i
  dmi.board.vendor: Positivo Informatica SA
  dmi.board.version: POSITIVO
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Positivo Informatica SA
  dmi.chassis.version: POSITIVO
  dmi.modalias: 
dmi:bvnDesenvolvidaporPositivoInformaticaSA:bvr1.05.01RPOU:bd11/27/2015:svnPositivoInformaticaSA:pnPOSITIVOMASTERN130i:pvr1.05.01PO:rvnPositivoInformaticaSA:rnPOSITIVOMASTERN130i:rvrPOSITIVO:cvnPositivoInformaticaSA:ct10:cvrPOSITIVO:
  dmi.product.name: POSITIVO MASTER N130i
  dmi.product.version: 1.05.01PO
  dmi.sys.vendor: Positivo Informatica SA

To manage notifications about this bug go to:

[Touch-packages] [Bug 1669953] [NEW] package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with return code 2

2017-03-03 Thread cristiano felipe de mesquita castro
Public bug reported:

.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-64-generic 4.4.0-64.85
ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
Uname: Linux 4.4.0-62-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  felipe 2094 F pulseaudio
 /dev/snd/controlC1:  felipe 2094 F pulseaudio
Date: Fri Mar  3 23:47:53 2017
ErrorMessage: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
HibernationDevice: RESUME=UUID=0d64cd5e-580a-4d9b-ae8f-c6d2ef2b4490
InstallationDate: Installed on 2016-08-15 (200 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
MachineType: Positivo Informatica SA POSITIVO MASTER N130i
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-62-generic.efi.signed 
root=UUID=166dd080-1874-4857-bc80-22d652b0991a ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc N/A
SourcePackage: apt
Title: package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/27/2015
dmi.bios.vendor: Desenvolvida por Positivo Informatica SA
dmi.bios.version: 1.05.01RPOU
dmi.board.asset.tag: Tag 12345
dmi.board.name: POSITIVO MASTER N130i
dmi.board.vendor: Positivo Informatica SA
dmi.board.version: POSITIVO
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 10
dmi.chassis.vendor: Positivo Informatica SA
dmi.chassis.version: POSITIVO
dmi.modalias: 
dmi:bvnDesenvolvidaporPositivoInformaticaSA:bvr1.05.01RPOU:bd11/27/2015:svnPositivoInformaticaSA:pnPOSITIVOMASTERN130i:pvr1.05.01PO:rvnPositivoInformaticaSA:rnPOSITIVOMASTERN130i:rvrPOSITIVO:cvnPositivoInformaticaSA:ct10:cvrPOSITIVO:
dmi.product.name: POSITIVO MASTER N130i
dmi.product.version: 1.05.01PO
dmi.sys.vendor: Positivo Informatica SA

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


** Tags: amd64 apport-package need-duplicate-check xenial

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

Title:
  package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal
  exited with return code 2

Status in apt package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-64-generic 4.4.0-64.85
  ProcVersionSignature: Ubuntu 4.4.0-62.83-generic 4.4.40
  Uname: Linux 4.4.0-62-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  felipe 2094 F pulseaudio
   /dev/snd/controlC1:  felipe 2094 F pulseaudio
  Date: Fri Mar  3 23:47:53 2017
  ErrorMessage: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
  HibernationDevice: RESUME=UUID=0d64cd5e-580a-4d9b-ae8f-c6d2ef2b4490
  InstallationDate: Installed on 2016-08-15 (200 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Positivo Informatica SA POSITIVO MASTER N130i
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-62-generic.efi.signed 
root=UUID=166dd080-1874-4857-bc80-22d652b0991a ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: apt
  Title: package linux-image-4.4.0-64-generic 4.4.0-64.85 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/apt-auto-removal exited with 
return code 2
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/27/2015
  dmi.bios.vendor: Desenvolvida por Positivo Informatica SA
  dmi.bios.version: 1.05.01RPOU
  dmi.board.asset.tag: Tag 12345
  dmi.board.name: POSITIVO MASTER N130i
  dmi.board.vendor: Positivo Informatica SA
  dmi.board.version: POSITIVO
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Positivo Informatica SA
  dmi.chassis.version: POSITIVO
  dmi.modalias: 
dmi:bvnDesenvolvidaporPositivoInformaticaSA:bvr1.05.01RPOU:bd11/27/2015:svnPositivoInformaticaSA:pnPOSITIVOMASTERN130i:pvr1.05.01PO:rvnPositivoInformaticaSA:rnPOSITIVOMASTERN130i:rvrPOSITIVO:cvnPositivoInformaticaSA:ct10:cvrPOSITIVO:
  dmi.product.name: POSITIVO MASTER N130i
  dmi.product.version: 1.05.01PO
  dmi.sys.vendor: Positivo Informatica SA

To manage notifications about this bug go to:

[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
Hm, yes i see (hierarchy 0).  I do worry that means that systems with
the unified hierarchy will be still more of a problem, since it is
mounted as hierarchy 0.  But then it's probably fine to just say that
cgroup-lite doesn't support unified hierarchy.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
(Note - this means the patch I just pushed to zesty is in fact wrong.
Since zesty requires systemd this doesn't really matter, but we must get
a working patch before pushing SRU patches)

@ccope, please let me know if you care to write an update patch.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


Re: [Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Cam Cope
I'm happy to provide a patch, but if the root cause of my issue is in lxc
it may be easier to patch that than worrying about backwards compatibility
for cgroups on older distro releases.

On Mar 3, 2017 20:11, "Serge Hallyn" <1668...@bugs.launchpad.net> wrote:

> This bug incidentally also affects the cgroupfs-mount package.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1668724
>
> Title:
>   fails to mount cgroupfs inside containers running on 16.04
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/cgroup-lite/+
> bug/1668724/+subscriptions
>

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 437309] Re: Ability: start typing item to select in drop-down menu

2017-03-03 Thread Bug Watch Updater
** Changed in: libgtk
   Status: New => Confirmed

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

Title:
  Ability: start typing item to select in drop-down menu

Status in One Hundred Papercuts:
  Invalid
Status in LibGTK:
  Confirmed
Status in gtk+2.0 package in Ubuntu:
  Triaged

Bug description:
  For example: during the Ubuntu installation when the time-zone selection 
window appearing or when I would like to change keyboard layout in the 
installed system, I can't select e.g.: Hungary by type "H" (it should jump to 
the first line starting with "H" when I press it), I only can select the 
country manually and it's very annoying when the list is very long.
  It's a very old missing feature in gnome. KDE, MAC, and Windows already have 
for ages.

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

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Cam Cope
Hm, I found a bug in my last version of this patch. Freshly booted machines 
which had not mounted the cgroupfs had all the hierarchies as 0, causing all 
cgroups to get mounted onto a single directory. I can work around this by 
detecting this scenario.
However, I wonder if I am actually seeing a bug in LXC. On my 12.04 hosts 
spawning 12.04 containers with the nesting.conf include, the cgroupfs gets 
automounted inside the container even without this package. This is not the 
case on 16.04 hosts. I'm currently using LXC 2.0.6.

RE: name=systemd, I had modified an older version of our scripts to
mount name=systemd, because that was how it showed up in
/proc/self/cgroups, but everywhere I see the systemd cgroup mentioned on
the internet has it mounted at /sys/fs/cgroup/systemd, so I guess that's
an implementation detail I just have to deal with.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1240757] Re: Bridge not created if bind9 is on

2017-03-03 Thread Stéphane Graber
Marking this won't fix for LXD since LXD is now letting API users create
bridges dynamically which makes generating .d files very impractical for
us. We may however be able to add a check for this issue and at least
report a better error to the user.

For LXC, we could still use a .d mechanism since we have a fixed bridge
there.

** Changed in: lxd (Ubuntu)
   Status: Triaged => Won't Fix

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

Title:
  Bridge not created if bind9 is on

Status in bind9 package in Ubuntu:
  Triaged
Status in lxc package in Ubuntu:
  Triaged
Status in lxd package in Ubuntu:
  Won't Fix

Bug description:
  LXC will not create the lxcbr0 bridge if bind9 is on, as it can not
  take the 10.0.3.1 address. If bind9 is stopped, then LXC successfully
  creates the bridge.

  Expected result: LXC will create the bridge, even if bind9 is on.
  --- 
  ApportVersion: 2.9.2-0ubuntu8.3
  Architecture: i386
  DistroRelease: Ubuntu 13.04
  InstallationDate: Installed on 2013-06-29 (110 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release i386 (20130424)
  MarkForUpload: True
  Package: lxc
  PackageArchitecture: i386
  ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.8.0-31-generic 
root=UUID=4c07e19b-cf33-4cbd-ab6d-fe300398b22b ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.8.0-31.46-generic 3.8.13.8
  RelatedPackageVersions:
   bind9utils 1:9.9.2.dfsg.P1-2ubuntu2.1
   apparmor   2.8.0-0ubuntu11
  Tags:  raring
  Uname: Linux 3.8.0-31-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  modified.conffile..etc.bind.named.conf.local: [modified]
  mtime.conffile..etc.bind.named.conf.local: 2013-08-01T12:03:20.742316

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

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


[Touch-packages] [Bug 1656785] Re: nc -d -l does not return data (only empty strings)

2017-03-03 Thread Bug Watch Updater
** Changed in: netcat-openbsd (Debian)
   Status: New => Won't Fix

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

Title:
  nc -d -l does not return data (only empty strings)

Status in netcat-openbsd package in Ubuntu:
  New
Status in netcat-openbsd package in Debian:
  Won't Fix

Bug description:
  The Zesty (17.04) version of nc (1.130-1ubuntu1) no longer returns the
  received data when using the '-d' (do not listen on stdin) flag
  together with the '-l' (listen on socket) flag. This used to work in
  previous releases (1.105-7ubuntu1 Trusty-Yakkety). In fact, in the
  previous version, the '-d' flag seems to be required to make the data
  transfer more reliable in scripts.

  Testcase: Attached script passes on older versions, fails with the
  current version of nc.

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

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
FWIW something like:

for d in `tail -n +2 /tmp/2 | awk '{
if ($2 == 0)
print $1
else if (a[$2])
a[$2] = a[$2]","$1
else
a[$2]=$1
};END{
for(i in a) {
print a[i]
}
}'`; do
mkdir -p /sys/fs/cgroup/$d
mountpoint -q /sys/fs/cgroup/$d || (mount -n -t cgroup -o $d cgroup 
/sys/fs/cgroup/$d || rmdir /sys/fs/cgroup/$d || true)
 done

seems to work.  Again excluding the possibility of unified hierarchy,
which I've not tested.

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1668724] Re: fails to mount cgroupfs inside containers running on 16.04

2017-03-03 Thread Serge Hallyn
(s@/tmp/2@/proc/cgroups@ of course)

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

Title:
  fails to mount cgroupfs inside containers running on 16.04

Status in cgroup-lite package in Ubuntu:
  Triaged
Status in cgroup-lite source package in Precise:
  New
Status in cgroup-lite source package in Trusty:
  New
Status in cgroup-lite source package in Xenial:
  New
Status in cgroup-lite source package in Yakkety:
  New

Bug description:
  I need to run nested Ubuntu 12.04 and 14.04 containers on 16.04 hosts,
  and have noticed that the cgroups-mount script for mounting the
  cgroups inside the containers has stopped working. This is because
  systemd now comounts multiple controllers on a single hierarchy, which
  prevents mounting them individually inside the container.

  ===  SRU Justification 
  Impact: nested containers fail to start
  Reproduce:  create a root owned container;  install lxc and cgroup-lite;  
create a container, and try to start it.  Starting will fail if cgroup-lite is 
running in the first level container without this patch.
  Regression potential:  should be low, it's possible that the regexp is simply 
wrong for some cases.
  ===

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

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


[Touch-packages] [Bug 1640970] Re: 16.10: VPN Connections -> Configure VPN grayed out

2017-03-03 Thread vanadium
This also happens to me on a fresh reinstall (2017-03-03) of the Ubuntu
16.04.01 ISO and all updates. Linux vanadium 4.4.0-64-generic #85-Ubuntu
SMP Mon Feb 20 11:50:30 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux,
network-manager: 1.2.2-0Ubuntu0.16.04.3; network-manager-gnome:
1.2.6-0ubuntu0.16.04.1; network-manager-vpnc-gnome: 1.1.93-1

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

Title:
  16.10: VPN Connections -> Configure VPN grayed out

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 16.04 to 16.10, in the nm applet menu, VPN
  Connections -> Configure VPN is grayed out.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: network-manager 1.2.4-0ubuntu1
  ProcVersionSignature: Ubuntu 4.8.0-27.29-generic 4.8.1
  Uname: Linux 4.8.0-27-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Nov 10 16:04:49 2016
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2014-04-04 (951 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140326)
  IpRoute:
   default via 172.28.77.1 dev wlan0  proto static  metric 600 
   169.254.0.0/16 dev wlan0  scope link  metric 1000 
   172.28.77.0/24 dev wlan0  proto kernel  scope link  src 172.28.77.23  metric 
600
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to yakkety on 2016-11-07 (3 days ago)
  modified.conffile..etc.NetworkManager.NetworkManager.conf: [modified]
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2016-03-07T11:36:55.286063
  nmcli-dev:
   DEVICE  TYPE  STATE DBUS-PATH  
CONNECTION   CON-UUID  CON-PATH 
  
   wlan0   wifi  connected /org/freedesktop/NetworkManager/Devices/0  
BlueCedar-GUEST  f7b79954-9427-47eb-adba-875b5b152f37  
/org/freedesktop/NetworkManager/ActiveConnection/0 
   eth0ethernet  disconnected  /org/freedesktop/NetworkManager/Devices/1  
--   ----   
  
   lo  loopback  unmanaged /org/freedesktop/NetworkManager/Devices/2  
--   ----
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.2.4connected  started  full  enabled enabled  
enabled  enabled  enabled

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

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


[Touch-packages] [Bug 1668741] Re: libcurl4-gnutls-dev:i386 and libcurl4-gnutls-dev:amd64 conflict on shared file '/usr/include/curl/curlbuild.h'

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

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

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

Title:
  libcurl4-gnutls-dev:i386 and libcurl4-gnutls-dev:amd64 conflict on
  shared file '/usr/include/curl/curlbuild.h'

Status in curl package in Ubuntu:
  Confirmed

Bug description:
  libcurl4-gnutls-dev:i386 and libcurl4-gnutls-dev:amd64 can't be
  installed together because they both contain a file
  '/usr/include/curl/curlbuild.h' but it's different.

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libcurl4-gnutls-dev (not installed)
  ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
  Uname: Linux 4.4.0-64-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  AptOrdering:
   libcurl4-gnutls-dev: Install
   libcurl4-gnutls-dev: Configure
   NULL: ConfigurePending
  Architecture: amd64
  Date: Tue Feb 28 20:54:17 2017
  DpkgTerminalLog:
   Preparing to unpack .../libcurl4-gnutls-dev_7.47.0-1ubuntu2.2_amd64.deb ...
   Unpacking libcurl4-gnutls-dev:amd64 (7.47.0-1ubuntu2.2) ...
   dpkg: error processing archive 
/var/cache/apt/archives/libcurl4-gnutls-dev_7.47.0-1ubuntu2.2_amd64.deb 
(--unpack):
trying to overwrite shared '/usr/include/curl/curlbuild.h', which is 
different from other instances of package libcurl4-gnutls-dev:amd64
  DuplicateSignature:
   package:libcurl4-gnutls-dev:(not installed)
   Unpacking libcurl4-gnutls-dev:amd64 (7.47.0-1ubuntu2.2) ...
   dpkg: error processing archive 
/var/cache/apt/archives/libcurl4-gnutls-dev_7.47.0-1ubuntu2.2_amd64.deb 
(--unpack):
trying to overwrite shared '/usr/include/curl/curlbuild.h', which is 
different from other instances of package libcurl4-gnutls-dev:amd64
  ErrorMessage: trying to overwrite shared '/usr/include/curl/curlbuild.h', 
which is different from other instances of package libcurl4-gnutls-dev:amd64
  InstallationDate: Installed on 2016-08-25 (187 days ago)
  InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  RelatedPackageVersions:
   dpkg 1.18.4ubuntu1.1
   apt  1.2.19
  SourcePackage: curl
  Title: package libcurl4-gnutls-dev (not installed) failed to install/upgrade: 
trying to overwrite shared '/usr/include/curl/curlbuild.h', which is different 
from other instances of package libcurl4-gnutls-dev:amd64
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1669731] Re: avahi-daemon crashed with SIGABRT in avahi_malloc()

2017-03-03 Thread Apport retracing service
*** This bug is a duplicate of bug 1668559 ***
https://bugs.launchpad.net/bugs/1668559

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 #1668559, 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/1669731/+attachment/4830588/+files/CoreDump.gz

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

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

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

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

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

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

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

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  avahi-daemon crashed with SIGABRT in avahi_malloc()

Status in avahi package in Ubuntu:
  New

Bug description:
  crash on boot

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: avahi-daemon 0.6.32-1ubuntu1
  ProcVersionSignature: Ubuntu 4.10.0-8.10-generic 4.10.0-rc8
  Uname: Linux 4.10.0-8-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  CrashCounter: 1
  Date: Thu Mar  2 10:09:10 2017
  ExecutablePath: /usr/sbin/avahi-daemon
  InstallationDate: Installed on 2017-02-13 (17 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  ProcCmdline: avahi-daemon:\ running\ [hostname.local]
  ProcEnviron:
   
  Signal: 6
  SourcePackage: avahi
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libavahi-common.so.3
   avahi_malloc () from /usr/lib/x86_64-linux-gnu/libavahi-common.so.3
   avahi_prio_queue_put () from /usr/lib/x86_64-linux-gnu/libavahi-core.so.7
   avahi_time_event_new () from /usr/lib/x86_64-linux-gnu/libavahi-core.so.7
   ?? () from /usr/lib/x86_64-linux-gnu/libavahi-core.so.7
  Title: avahi-daemon crashed with SIGABRT in avahi_malloc()
  UpgradeStatus: Upgraded to zesty on 2017-02-23 (7 days ago)
  UserGroups:

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

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


[Touch-packages] [Bug 1667645] Re: If the only surface in a session cannot take focus the server crashes

2017-03-03 Thread Launchpad Bug Tracker
** Branch linked: lp:~ci-train-bot/miral/miral-ubuntu-zesty-2534

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

Title:
  If the only surface in a session cannot take focus the server crashes

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

Bug description:
  The problem is in ms::ApplicationSession::surface_after() it can
  dereference the surfaces.end() iterator.

  Original description:

  $ bin/miral-desktop
  ...
  terminate called after throwing an instance of 
'boost::exception_detail::clone_impl'
    what():  surface_after: surface is not a member of this session
  Aborted (core dumped)

  Using tiling WM doesn't exhibit this problem:

  $ bin/miral-desktop --window-manager tiling

  I would guess this is something to do with the recent addition of
  wallpaper. And possibly due to this test box being slow (14 years
  old), not due to Xenial/Mir 21.0.

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

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


[Touch-packages] [Bug 1669536] Re: [unity8] you can break the App Drawer if you press ESC while draging

2017-03-03 Thread Launchpad Bug Tracker
** Branch linked: lp:~mzanetti/unity8/fix-drawer-dragging-esc

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

Title:
  [unity8] you can break the App Drawer if you press ESC while draging

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

Bug description:
  Ubuntu 17.04 Unity8
  [unity8] you can break the App Drawer if you press ESC while draging

  hit the left side of the screen (hard, with some velocity) with your
  mouse pointer to reveal the App Drawer

  then click on the App Drawer and drag to the left but don't let go(see
  the attached screenshot). now press ESC. the App Drawer will close.
  now try to open it again, the animation is gone and you can't scroll
  up/down any more

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

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


[Touch-packages] [Bug 1664990] Re: Restore focus on parent tab when closing child tab

2017-03-03 Thread Olivier Tilloy
I looked into chromium’s implementation, and it’s a bit more complex
than what I described in the description. Details are in
TabStripModelOrderController::DetermineNewSelectedIndex(…)¹.

I think it would be worth identifying what in chromium’s implementation we want 
to replicate.
One thing that wasn’t reported as part of this bug is that when opening 
background tabs from a given page, they should be placed to the right of the 
opener, in sequence (i.e. if I open B, C and D as background tabs from A, the 
order of the tabs should be A-B-C-D, not A-D-C-B as it is currently). This 
should probably be implemented as part of this bug.


¹ 
https://cs.chromium.org/chromium/src/chrome/browser/ui/tabs/tab_strip_model_order_controller.cc?l=52

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

Title:
  Restore focus on parent tab when closing child tab

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  (follow-up to https://code.launchpad.net/~fboucault/webbrowser-
  app/background_open_tabs_adjacent/+merge/316226)

  In chromium on desktop, when opening a link in a new tab (for instance when 
Ctrl+clicking on a hyperlink), the new tab is open next to the parent tab. When 
closing that child tab, the parent tab is the one that becomes current.
  In webbrowser-app, when closing the child tab, the next one in the list 
becomes current. It would be nice if webbrowser-app implemented the same 
behaviour as chromium.

  Steps to reproduce:
   1) Start webbrowser-app, and open two tabs, e.g. http://example.org and 
http://start.ubuntu.com
   2) Focus the first tab (example.org) and right click on the "More 
information…" link (this opens a new tab in second position and focuses it
   3) Press Ctrl+W to close the current tab

  Expected result: the first tab (example.org) is the one that gets
  focused.

  Actual result: the second tab (start.ubuntu.com) is the one that gets
  focused.

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

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


[Touch-packages] [Bug 1669646] [NEW] Vim on Xenial not build with python2/3 and lua

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

The Feature included as follow on Xenial, but no python2/3 and lua:

➜  ~ vim --version  
VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Mar 02 2017 10:44:27)
Included patches: 1-313, 315-398
Modified by pkg-vim-maintain...@lists.alioth.debian.org
Compiled by pkg-vim-maintain...@lists.alioth.debian.org
Huge version without GUI.  Features included (+) or not (-):
+acl +file_in_path+mouse_sgr   +tag_old_static
+arabic  +find_in_path-mouse_sysmouse  -tag_any_white
+autocmd +float   +mouse_urxvt -tcl
-balloon_eval+folding +mouse_xterm +termguicolors
-browse  -footer  +multi_byte  +terminfo
++builtin_terms  +fork()  +multi_lang  +termresponse
+byte_offset +gettext -mzscheme+textobjects
+channel -hangul_input+netbeans_intg   +timers
+cindent +iconv   +num64   +title
-clientserver+insert_expand   +packages-toolbar
-clipboard   +job +path_extra  +user_commands
+cmdline_compl   +jumplist-perl+vertsplit
+cmdline_hist+keymap  +persistent_undo +virtualedit
+cmdline_info+lambda  +postscript  +visual
+comments+langmap +printer +visualextra
+conceal +libcall +profile +viminfo
+cryptv  +linebreak   -python  +vreplace
+cscope  +lispindent  -python3 +wildignore
+cursorbind  +listcmds+quickfix+wildmenu
+cursorshape +localmap+reltime +windows
+dialog_con  -lua +rightleft   +writebackup
+diff+menu-ruby-X11
+digraphs+mksession   +scrollbind  -xfontset
-dnd +modify_fname+signs   -xim
-ebcdic  +mouse   +smartindent -xpm
+emacs_tags  -mouseshape  +startuptime -xsmp
+eval+mouse_dec   +statusline  -xterm_clipboard
+ex_extra+mouse_gpm   -sun_workshop-xterm_save
+extra_search-mouse_jsbterm   +syntax  
+farsi   +mouse_netterm   +tag_binary

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

-- 
Vim on Xenial not build with python2/3 and lua
https://bugs.launchpad.net/bugs/1669646
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to vim in Ubuntu.

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


[Touch-packages] [Bug 1654600] Re: unattended-upgrade-shutdown hangs when /var is a separate filesystem

2017-03-03 Thread Launchpad Bug Tracker
This bug was fixed in the package unattended-upgrades - 0.93.1ubuntu2

---
unattended-upgrades (0.93.1ubuntu2) zesty; urgency=medium

  * The systemd unit needs to be an ExecStop since it is is activated on
shutdown. Otherwise, it will get scheduled after completion of
the local-fs.target. In the case where /var is a separate
filesystem, unattended-upgrade-shutdown will hang until timeout
since /var/run is expected but no longer there (LP: #1654600)

 -- Louis Bouchard   Thu, 02 Mar 2017
16:55:26 +0100

** Changed in: unattended-upgrades (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  unattended-upgrade-shutdown hangs when /var is a separate filesystem

Status in unattended-upgrades package in Ubuntu:
  Fix Released
Status in unattended-upgrades source package in Xenial:
  Confirmed
Status in unattended-upgrades source package in Yakkety:
  Confirmed
Status in unattended-upgrades package in Debian:
  New

Bug description:
  The systemd unit file unattended-upgrades.service is used to stop a running 
unattended-upgrade
  process during shutdown. This unit file is running together with all 
filesystem
  unmount services.

  The unattended-upgrades service checks if the lockfile for unattended-upgrade
  (in /var/run) exists, and if it does, there is an unattended-upgrade in 
progress
  and the service will wait until it finishes (and therefore automatically wait 
at
  shutdown).

  However, if /var is a separate filesystem, it will get unmounted even though 
/var/run
  is a tmpfs that's still mounted on top of the /var/run directory in the /var 
filesystem.
  The unattended-upgrade script will fail to find lockfile, sleeps for 5 
seconds, and
  tries to check the lockfile again. After 10 minutes (the default timeout), it 
will finally
  exit and the system will continue shutdown.

  The problem is the error handling in 
/usr/share/unattended-upgrades/unattended-upgrade-shutdown
  where it tries to lock itself:

  while True:
  res = apt_pkg.get_lock(options.lock_file)
  logging.debug("get_lock returned %i" % res)
  # exit here if there is no lock
  if res > 0:
  logging.debug("lock not taken")
  break
  lock_was_taken = True

  The function apt_pkg.get_lock() either returns a file descriptor, or -1 on an 
error.
  File descriptors are just C file descriptors, so they are always positive 
integers.
  The code should check the result to be negative, not positive. I have 
attached a patch
  to reverse the logic.

  Additional information:

  1)
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04

  2)
  unattended-upgrades:
Installed: 0.90ubuntu0.3
Candidate: 0.90ubuntu0.3
Version table:
   *** 0.90ubuntu0.3 500
  500 http://nl.archive.ubuntu.com/ubuntu xenial-updates/main amd64 
Packages
  500 http://nl.archive.ubuntu.com/ubuntu xenial-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   0.90 500
  500 http://nl.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
  500 http://nl.archive.ubuntu.com/ubuntu xenial/main i386 Packages
  3)
  Fast reboot
  4)
  Very slow reboot (after a 10 minutes timeout)

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

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


[Touch-packages] [Bug 1669646] Re: Vim on Xenial not build with python2/3 and lua

2017-03-03 Thread Colin Watson
** Project changed: launchpad => vim (Ubuntu)

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

Title:
  Vim on Xenial not build with python2/3 and lua

Status in vim package in Ubuntu:
  New

Bug description:
  The Feature included as follow on Xenial, but no python2/3 and lua:

  ➜  ~ vim --version  
  VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Mar 02 2017 10:44:27)
  Included patches: 1-313, 315-398
  Modified by pkg-vim-maintain...@lists.alioth.debian.org
  Compiled by pkg-vim-maintain...@lists.alioth.debian.org
  Huge version without GUI.  Features included (+) or not (-):
  +acl +file_in_path+mouse_sgr   +tag_old_static
  +arabic  +find_in_path-mouse_sysmouse  -tag_any_white
  +autocmd +float   +mouse_urxvt -tcl
  -balloon_eval+folding +mouse_xterm +termguicolors
  -browse  -footer  +multi_byte  +terminfo
  ++builtin_terms  +fork()  +multi_lang  +termresponse
  +byte_offset +gettext -mzscheme+textobjects
  +channel -hangul_input+netbeans_intg   +timers
  +cindent +iconv   +num64   +title
  -clientserver+insert_expand   +packages-toolbar
  -clipboard   +job +path_extra  +user_commands
  +cmdline_compl   +jumplist-perl+vertsplit
  +cmdline_hist+keymap  +persistent_undo +virtualedit
  +cmdline_info+lambda  +postscript  +visual
  +comments+langmap +printer +visualextra
  +conceal +libcall +profile +viminfo
  +cryptv  +linebreak   -python  +vreplace
  +cscope  +lispindent  -python3 +wildignore
  +cursorbind  +listcmds+quickfix+wildmenu
  +cursorshape +localmap+reltime +windows
  +dialog_con  -lua +rightleft   +writebackup
  +diff+menu-ruby-X11
  +digraphs+mksession   +scrollbind  -xfontset
  -dnd +modify_fname+signs   -xim
  -ebcdic  +mouse   +smartindent -xpm
  +emacs_tags  -mouseshape  +startuptime -xsmp
  +eval+mouse_dec   +statusline  -xterm_clipboard
  +ex_extra+mouse_gpm   -sun_workshop-xterm_save
  +extra_search-mouse_jsbterm   +syntax  
  +farsi   +mouse_netterm   +tag_binary

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

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


[Touch-packages] [Bug 1665802] Re: [regression] mir_demo_client_eglplasma results in 100% cpu and hardly any updates in dragonboard

2017-03-03 Thread Daniel van Vugt
** Branch linked: lp:~vanvugt/mir/schedule-nonblocking

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

Title:
  [regression] mir_demo_client_eglplasma results in 100% cpu and hardly
  any updates in dragonboard

Status in Mir:
  In Progress
Status in Mir 0.26 series:
  Triaged
Status in mesa package in Ubuntu:
  New

Bug description:
  On a dragonboard 410c,

  With Mir 0.25 mir_demo_client_eglplasma renders steadily at 15FPS and
  with low cpu usage.

  With mir 0.26.1, the process takes 100% cpu (according to top) and
  frames hardly update on screen, but the client performance is
  60-27FPS.

  To replicate:

  mir_demo_server --arw-file --launch-client mir_demo_client_eglplasma

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

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


[Touch-packages] [Bug 1669709] Re: content-hub-service crashed with SIGABRT in __gnu_cxx::__verbose_terminate_handler()

2017-03-03 Thread Apport retracing service
*** This bug is a duplicate of bug 1662710 ***
https://bugs.launchpad.net/bugs/1662710

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 #1662710, 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/1669709/+attachment/4830546/+files/CoreDump.gz

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

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

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

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

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

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

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

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  content-hub-service crashed with SIGABRT in
  __gnu_cxx::__verbose_terminate_handler()

Status in content-hub package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Crash
  DistroRelease: Ubuntu 17.04
  Package: content-hub 0.3+17.04.20161219-0ubuntu1
  ProcVersionSignature: Ubuntu 4.10.0-8.10-generic 4.10.0-rc8
  Uname: Linux 4.10.0-8-generic x86_64
  ApportVersion: 2.20.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity:Unity7
  Date: Fri Mar  3 08:59:24 2017
  ExecutablePath: /usr/bin/content-hub-service
  ExecutableTimestamp: 1482161810
  InstallationDate: Installed on 2017-01-08 (53 days ago)
  InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  ProcCmdline: /usr/bin/content-hub-service
  ProcCwd: /home/vigo
  Signal: 6
  SourcePackage: content-hub
  StacktraceTop:
   __gnu_cxx::__verbose_terminate_handler() () from 
/usr/lib/x86_64-linux-gnu/libstdc++.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
   std::terminate() () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
   ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
   start_thread (arg=0x7f7c10c5c700) at pthread_create.c:333
  Title: content-hub-service crashed with SIGABRT in 
__gnu_cxx::__verbose_terminate_handler()
  UpgradeStatus: Upgraded to zesty on 2017-01-17 (44 days ago)
  UserGroups: adm autopilot cdrom dip lpadmin plugdev sambashare sudo

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

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


[Touch-packages] [Bug 1211700] Re: [gallium] EGL clients using a gallium driver (radeon, nouveau, freedreno) that saturate the GPU cause the Mir server to slow, freeze and stutter, displaying very few

2017-03-03 Thread Daniel van Vugt
** Branch linked: lp:~vanvugt/mir/schedule-nonblocking

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

Title:
  [gallium] EGL clients using a gallium driver (radeon, nouveau,
  freedreno) that saturate the GPU cause the Mir server to slow, freeze
  and stutter, displaying very few frames

Status in Mir:
  In Progress
Status in mesa package in Ubuntu:
  New

Bug description:
  GPU-heavy clients on Mesa gallium drivers (e.g. radeon, nouveau and
  freedreno) cause the Mir server to slow, sometimes to a halt. This is
  seen as a frozen screen, unable to move surfaces, or unable to switch
  VTs (for a while).

  For example:
     mir_demo_client_egltriangle -n
     mir_demo_client_eglplasma -n

  The -n flag (swapinterval = 0) seems to cause the client to overload
  the mir server to the point where it cannot render physical frames
  very often.

  $ es2_info
  EGL_VERSION = 1.4 (Gallium)
  EGL_VENDOR = Mesa Project
  EGL_EXTENSIONS = EGL_WL_bind_wayland_display EGL_KHR_image_base 
EGL_KHR_image_pixmap EGL_KHR_image EGL_KHR_reusable_sync EGL_KHR_fence_sync 
EGL_KHR_surfaceless_context EGL_NOK_swap_region EGL_NV_post_sub_buffer
  EGL_CLIENT_APIS = OpenGL OpenGL_ES OpenGL_ES2 OpenVG
  GL_VERSION: OpenGL ES 3.0 Mesa 9.2.0-devel
  GL_RENDERER: Gallium 0.4 on AMD CEDAR
  ...
  $ es2_info
  EGL_VERSION = 1.4 (Gallium)
  EGL_VENDOR = Mesa Project
  EGL_EXTENSIONS = EGL_WL_bind_wayland_display EGL_KHR_image_base 
EGL_KHR_image_pixmap EGL_KHR_image EGL_KHR_reusable_sync EGL_KHR_fence_sync 
EGL_KHR_surfaceless_context EGL_NOK_swap_region EGL_NV_post_sub_buffer
  EGL_CLIENT_APIS = OpenGL OpenGL_ES OpenGL_ES2 OpenVG
  GL_VERSION: OpenGL ES 3.0 Mesa 9.2.0-devel
  GL_RENDERER: Gallium 0.4 on NVA8
  ...

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

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


[Touch-packages] [Bug 1654600] Re: unattended-upgrade-shutdown hangs when /var is a separate filesystem

2017-03-03 Thread kay
Tested the fix. It works. Thanks!

quick fix:

sed -i "s#ExecStart=#RemainAfterExit=yes\nExecStop=#;"
/lib/systemd/system/unattended-upgrades.service

But now it seems that it doesn't run it on shutdown. I used the
following debug service:

ExecStop=/bin/bash -c 'echo -e "\nhello##\n" >
/dev/ttyS0'

And it doesn't print message in serial console. But when you start and
stop this unit manually - it prints.

[  OK  ] Stopped target Graphical Interface.
 Stopping Accounts Service...
 Stopping User Manager for UID 1000...
 Stopping Session 1 of user ubuntu.
 Stopping ACPI event daemon...
[  OK  ] Stopped target Cloud-init target.
[  OK  ] Stopped Execute cloud user/final scripts.
[  OK  ] Stopped target Multi-User System.
 Stopping Deferred execution scheduler...
 Stopping LXD - container startup/shutdown...
 Stopping D-Bus System Message Bus...
 Stopping LSB: daemon to balance interrupts for SMP systems...
 Stopping LSB: Set the CPU Frequency Scaling governor to "ondemand"...
 Stopping LSB: MD monitoring daemon...
 Stopping Regular background program processing daemon...
 Stopping FUSE filesystem for LXC...
 Stopping OpenBSD Secure Shell server...
 Stopping LSB: Record successful boot for GRUB...
[  OK  ] Stopped target Timers.
[  OK  ] Stopped Timer to automatically refresh installed snaps.
[  OK  ] Stopped Daily apt activities.
[  OK  ] Stopped Daily Cleanup of Temporary Directories.
[  OK  ] Stopped target Login Prompts.
 Stopping Getty on tty1...
 Stopping Serial Getty on ttyS0...
[  OK  ] Stopped Apply the settings specified in cloud-config.
[  OK  ] Stopped target Cloud-config availability.
 Stopping Snappy daemon...
 Stopping System Logging Service...
[  OK  ] Stopped target System Time Synchronized.
 Stopping LSB: automatic crash report generation...
[  OK  ] Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
 Stopping Authenticate and Authorize Users to Run Privileged Tasks...
[  OK  ] Unmounted /var/lib/lxcfs.
[  OK  ] Stopped System Logging Service.
[  OK  ] Stopped Deferred execution scheduler.
[  OK  ] Stopped OpenBSD Secure Shell server.
[  OK  ] Stopped Accounts Service.
[  OK  ] Stopped Snappy daemon.
[  OK  ] Stopped ACPI event daemon.
[  OK  ] Stopped Authenticate and Authorize Users to Run Privileged Tasks.
[  OK  ] Stopped Serial Getty on ttyS0.
[  OK  ] Stopped Regular background program processing daemon.
[  OK  ] Stopped Getty on tty1.
[  OK  ] Stopped User Manager for UID 1000.
[  OK  ] Stopped Session 1 of user ubuntu.
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped FUSE filesystem for LXC.
[  OK  ] Stopped LXD - container startup/shutdown.
[  OK  ] Stopped LSB: MD monitoring daemon.
[  OK  ] Stopped LSB: Record successful boot for GRUB.
[  OK  ] Stopped LSB: daemon to balance interrupts for SMP systems.
[  OK  ] Stopped LSB: automatic crash report generation.
[  OK  ] Stopped LSB: Set the CPU Frequency Scaling governor to "ondemand".
[  OK  ] Stopped User Manager for UID 1000.
[  OK  ] Removed slice User Slice of ubuntu.
 Stopping Login Service...
[  OK  ] Removed slice system-getty.slice.
[  OK  ] Removed slice system-serial\x2dgetty.slice.
[  OK  ] Stopped /etc/rc.local Compatibility.
 Stopping Permit User Sessions...
[  OK  ] Stopped Login Service.
[  OK  ] Stopped Permit User Sessions.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Remote File Systems (Pre).
 Stopping Login to default iSCSI targets...
[  OK  ] Stopped target User and Group Name Lookups.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped Forward Password Requests to Wall Directory Watch.
[  OK  ] Stopped Trigger resolvconf update for networkd DNS.
[  OK  ] Stopped Dispatch Password Requests to Console Directory Watch.
[  OK  ] Stopped ACPI Events Check.
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target Sockets.
[  OK  ] Closed ACPID Listen Socket.
[  OK  ] Closed UUID daemon activation socket.
[  OK  ] Closed LXD - unix socket.
[  OK  ] Closed Syslog Socket.
[  OK  ] Closed D-Bus System Message Bus Socket.
[  OK  ] Closed Socket activation for snappy daemon.
[  OK  ] Stopped target System Initialization.
 Stopping Network Time Synchronization...
[  OK  ] Stopped target Encrypted Volumes.
 Stopping Load/Save Random Seed...
[  OK  ] Stopped target Swap.
[  OK  ] Stopped Network Time Synchronization.
[  OK  ] Stopped Load/Save Random Seed.
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Unmounted /home.
[  OK  ] Unmounted /boot.
[  OK  ] Stopped Login to default iSCSI targets.
 Stopping iSCSI initiator daemon (iscsid)...
[  OK  ] Stopped iSCSI initiator daemon (iscsid).
[  OK  ] Stopped target Network is Online.
[  OK  ] Stopped target Network.
[  

[Touch-packages] [Bug 1669769] [NEW] Downloading files does not work when using browser from a snap

2017-03-03 Thread Florian Boucault
Public bug reported:

Downloading files does not work when using browser from a snap. That is
because browser app being strictly confined we do not have access to the
download manager service (over D-Bus). A new interface to allow that is
coming soon: 'ubuntu-download-manager'.

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

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

Title:
  Downloading files does not work when using browser from a snap

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Downloading files does not work when using browser from a snap. That
  is because browser app being strictly confined we do not have access
  to the download manager service (over D-Bus). A new interface to allow
  that is coming soon: 'ubuntu-download-manager'.

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

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


[Touch-packages] [Bug 1669758] [NEW] Centrino Wireless-N 1000 not working on 16.10

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

Summary
Wifi is not working on Centrino Wireless-N 1000 not working on 16.10, but does 
work on windows.

Please see following

http://paste.ubuntu.com/24101344/
http://askubuntu.com/questions/887257/device-not-ready-wifi-not-working-on-ubuntu-16-10
https://ubuntuforums.org/showthread.php?t=2354116=13615105#post13615105

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: bot-comment
-- 
Centrino Wireless-N 1000 not working on 16.10
https://bugs.launchpad.net/bugs/1669758
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to network-manager in Ubuntu.

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


[Touch-packages] [Bug 991666] Re: VPN Connects Successfully & Then Shortly Thereafter Fails

2017-03-03 Thread radioheaded
I've had the same problem for about a year, and now, I think, I've
finally found the way to fix it (at least somehow).

Looks like in my case it was the same as in
https://bugs.launchpad.net/ubuntu/+source/network-
manager/+bug/991666/comments/16 (duplicate routes entries).

So what I've done.

- run `sudo route -n` before connecting to VPN and after
- found entries that were pushed from the VPN server
- found duplicate entry
- manually added all but duplicate pushed entries to routes (Network 
connections -> your VPN connection -> IPv4 settings -> Routes -> Add ...) and 
checked "Ignore automatically obtained routes" checkbox.
- restarted VPN connection

Since that all works just fine.

Thanks to @botevmg!

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

Title:
  VPN Connects Successfully & Then Shortly Thereafter Fails

Status in network-manager-pptp:
  New
Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  I am able to successfully establish a PPTP VPN connection in Ubuntu
  12.04 (kernel 3.2.0-24-generic) but after approximately 30 seconds to
  1.5 minutes it will fail.  During the connection time I am only able
  to load about 1-2 webpages and then they freeze and I cannot access
  resources on the VPN network.  I do not believe this is related to my
  VPN server as I am able to establish VPN connections with my Windows
  machines and Smartphones all day long with no problems.  Is there a
  solution to this problem?

  Description:  Ubuntu 12.04 LTS
  Release:  12.04

  network-manager: 0.9.4.0-0ubuntu3

  Here is the syslog:

  Apr 30 00:17:50 satellite-p755 NetworkManager[994]:  Starting VPN 
service 'pptp'...
  Apr 30 00:17:50 satellite-p755 NetworkManager[994]:  VPN service 'pptp' 
started (org.freedesktop.NetworkManager.pptp), PID 15069
  Apr 30 00:17:50 satellite-p755 NetworkManager[994]:  VPN service 'pptp' 
appeared; activating connections
  Apr 30 00:17:50 satellite-p755 NetworkManager[994]:  VPN plugin state 
changed: starting (3)
  Apr 30 00:17:51 satellite-p755 NetworkManager[994]:  VPN connection 
'Schaefer Law Group' (Connect) reply received.
  Apr 30 00:17:51 satellite-p755 pppd[15073]: Plugin 
/usr/lib/pppd/2.4.5/nm-pptp-pppd-plugin.so loaded.
  Apr 30 00:17:51 satellite-p755 pppd[15073]: pppd 2.4.5 started by root, uid 0
  Apr 30 00:17:51 satellite-p755 pppd[15073]: Using interface ppp0
  Apr 30 00:17:51 satellite-p755 pppd[15073]: Connect: ppp0 <--> /dev/pts/2
  Apr 30 00:17:51 satellite-p755 NetworkManager[994]:SCPlugin-Ifupdown: 
devices added (path: /sys/devices/virtual/net/ppp0, iface: ppp0)
  Apr 30 00:17:51 satellite-p755 NetworkManager[994]:SCPlugin-Ifupdown: 
device added (path: /sys/devices/virtual/net/ppp0, iface: ppp0): no ifupdown 
configuration found.
  Apr 30 00:17:51 satellite-p755 pptp[15076]: nm-pptp-service-15069 
log[main:pptp.c:314]: The synchronous pptp option is NOT activated
  Apr 30 00:17:51 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 1 
'Start-Control-Connection-Request'
  Apr 30 00:17:51 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_disp:pptp_ctrl.c:739]: Received Start Control Connection Reply
  Apr 30 00:17:51 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_disp:pptp_ctrl.c:773]: Client connection established.
  Apr 30 00:17:52 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_rep:pptp_ctrl.c:251]: Sent control packet type is 7 
'Outgoing-Call-Request'
  Apr 30 00:17:52 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_disp:pptp_ctrl.c:858]: Received Outgoing Call Reply.
  Apr 30 00:17:52 satellite-p755 pptp[15084]: nm-pptp-service-15069 
log[ctrlp_disp:pptp_ctrl.c:897]: Outgoing call established (call ID 0, peer's 
call ID 0).
  Apr 30 00:17:55 satellite-p755 pppd[15073]: CHAP authentication succeeded
  Apr 30 00:17:55 satellite-p755 pppd[15073]: MPPE 128-bit stateless 
compression enabled
  Apr 30 00:17:55 satellite-p755 pppd[15073]: local  IP address 192.168.1.20
  Apr 30 00:17:55 satellite-p755 pppd[15073]: remote IP address 192.168.1.1
  Apr 30 00:17:55 satellite-p755 pppd[15073]: primary   DNS address 8.8.8.8
  Apr 30 00:17:55 satellite-p755 pppd[15073]: secondary DNS address 8.8.4.4
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  VPN connection 
'Schaefer Law Group' (IP Config Get) reply received.
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  VPN Gateway: 
75.75.79.330
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  Tunnel Device: ppp0
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  Internal IP4 
Address: 192.168.1.20
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  Internal IP4 
Prefix: 32
  Apr 30 00:17:55 satellite-p755 NetworkManager[994]:  Internal IP4 
Point-to-Point Address: 192.168.1.1
  Apr 30 00:17:55 

[Touch-packages] [Bug 798414] Re: update-initramfs should produce a more helpful error when there isn't enough free space

2017-03-03 Thread richud
It is bugs like this that make me question whether I am doing the right
thing converting people to using Ubuntu...

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

Title:
  update-initramfs should produce a more helpful error when there isn't
  enough  free space

Status in initramfs-tools:
  Confirmed
Status in initramfs-tools package in Ubuntu:
  In Progress

Bug description:
  Binary package hint: initramfs-tools

  When generating a new initramfs there is no check for available free
  space, subsequently its possible for update-initramfs to fail due to a
  lack of free space.  This is resulting in package installation
  failures for initramfs-tools.  For example:

  Setting up initramfs-tools (0.98.8ubuntu3) ...
  update-initramfs: deferring update (trigger activated)
  Processing triggers for initramfs-tools ...
  update-initramfs: Generating /boot/initrd.img-2.6.38-8-generic

  gzip: stdout: No space left on device
  E: mkinitramfs failure cpio 141 gzip 1
  update-initramfs: failed for /boot/initrd.img-2.6.38-8-generic
  dpkg: error processing initramfs-tools (--configure):
   subprocess installed post-installation script returned error exit status 1

  WORKAROUND:

  Remove unused kernels using computer janitor (not in repositories for
  14.04 or later) or manually free space on your partition containing
  the /boot file system.

  See instructions here
  https://help.ubuntu.com/community/RemoveOldKernels

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

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


[Touch-packages] [Bug 219057] Re: Bluetooth does not coexist with WiFi

2017-03-03 Thread Will Schmidt
This is so interesting, and such an old thread that keeps on going.

I have the exact *opposite* of this problem. On Windows 10, this:

>>"For example, if I play a music file from another machine through the
network using a BT headset, only the first few seconds of the file will
play until the player runs out of buffered data. No further data is
downloaded. Web pages also do not download, and I even lose connection
to AP from time to time."<<

is *exactly* what happens. The file buffers/downloads, the sound begins
playback, and the Bluetooth signal interferes with its own download.
Turning off the Bluetooth speakers instantly returns Wlan activity.

And more, amazingly, it works perfectly fine on Linux (Mint, Kali tested
so far). I have to conclude at this point that this is a software
problem.

Obviously I'm not looking for Win10 assistance here, but I thought it
was too interesting a thread not to post in.

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

Title:
  Bluetooth does not coexist with WiFi

Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  On my system bluetooth and wifi are unusable together. I have a built-
  in CSR-based bluetooth module in my laptop, and an Atheros wifi. Wifi
  transfers slow to a halt whenever there is BT traffic.

  For example, if I play a music file from another machine through the
  network using a BT headset, only the first few seconds of the file
  will play until the player runs out of buffered data. No further data
  is downloaded. Web pages also do not download, and I even lose
  connection to AP from time to time.

  At the same time, it looks like AFH is trying to work. If I monitor
  the value returned by 'hcitool afh', it changes. But this seems to
  have little effect on connection quality.

  Is this a problem with my hardware, or the AFH implementation? Is
  there a way to force bluetooth to not use the channels in use by WiFi?

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

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


[Touch-packages] [Bug 1669769] Re: Downloading files does not work when using browser from a snap

2017-03-03 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
   Status: New => Confirmed

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

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

Title:
  Downloading files does not work when using browser from a snap

Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Downloading files does not work when using browser from a snap. That
  is because browser app being strictly confined we do not have access
  to the download manager service (over D-Bus). A new interface to allow
  that is coming soon: 'ubuntu-download-manager'.

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

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


[Touch-packages] [Bug 1669787] [NEW] My file manager started blinking

2017-03-03 Thread Arturo Rivero
Public bug reported:

My file manager started blinking and I couldnt access any file

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: xorg 1:7.7+13ubuntu4
ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
Uname: Linux 4.8.0-39-generic i686
NonfreeKernelModules: wl
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Fri Mar  3 08:37:44 2017
DistUpgraded: Fresh install
DistroCodename: yakkety
DistroVariant: ubuntu
DkmsStatus:
 bcmwl, 6.30.223.248+bdcom, 4.8.0-22-generic, i686: installed
 bcmwl, 6.30.223.248+bdcom, 4.8.0-37-generic, i686: installed
 bcmwl, 6.30.223.248+bdcom, 4.8.0-38-generic, i686: installed
 bcmwl, 6.30.223.248+bdcom, 4.8.0-39-generic, i686: installed
GraphicsCard:
 Intel Corporation Mobile 945GSE Express Integrated Graphics Controller 
[8086:27ae] (rev 03) (prog-if 00 [VGA controller])
   Subsystem: COMPAL Electronics Inc Mobile 945GSE Express Integrated Graphics 
Controller [14c0:0041]
   Subsystem: COMPAL Electronics Inc Mobile 945GM/GMS/GME, 943/940GML Express 
Integrated Graphics Controller [14c0:0041]
MachineType: BenQ Joybook Lite U102
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-39-generic 
root=UUID=224aa726-0d49-427f-a585-ca2ba44a5b35 ro quiet splash
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/03/2009
dmi.bios.vendor: Be Q
dmi.bios.version: 1.01
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: KTV00
dmi.board.vendor: BenQ
dmi.board.version: Base Board Version
dmi.chassis.type: 1
dmi.chassis.vendor: BenQ
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnBeQ:bvr1.01:bd07/03/2009:svnBenQ:pnJoybookLiteU102:pvrVenus5.0:rvnBenQ:rnKTV00:rvrBaseBoardVersion:cvnBenQ:ct1:cvrChassisVersion:
dmi.product.name: Joybook Lite U102
dmi.product.version: Venus 5.0
dmi.sys.vendor: BenQ
version.compiz: compiz 1:0.9.13.0+16.10.20160818.2-0ubuntu2
version.libdrm2: libdrm2 2.4.70-1
version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.3-1ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.3-1ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-1ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160706-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-2
xserver.bootTime: Fri Mar  3 08:22:42 2017
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   12498 
 vendor AUO
xserver.version: 2:1.18.4-1ubuntu6.1

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


** Tags: apport-bug i386 ubuntu yakkety

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

Title:
  My file manager started blinking

Status in xorg package in Ubuntu:
  New

Bug description:
  My file manager started blinking and I couldnt access any file

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: xorg 1:7.7+13ubuntu4
  ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
  Uname: Linux 4.8.0-39-generic i686
  NonfreeKernelModules: wl
  .tmp.unity_support_test.0:
   
  ApportVersion: 2.20.3-0ubuntu8.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  Date: Fri Mar  3 08:37:44 2017
  DistUpgraded: Fresh install
  DistroCodename: yakkety
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.8.0-22-generic, i686: installed
   bcmwl, 6.30.223.248+bdcom, 4.8.0-37-generic, i686: installed
   bcmwl, 6.30.223.248+bdcom, 4.8.0-38-generic, i686: installed
   bcmwl, 6.30.223.248+bdcom, 4.8.0-39-generic, i686: installed
  GraphicsCard:
   Intel Corporation Mobile 945GSE Express Integrated Graphics Controller 
[8086:27ae] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: COMPAL Electronics Inc Mobile 945GSE Express Integrated 
Graphics Controller [14c0:0041]
 Subsystem: COMPAL Electronics Inc Mobile 945GM/GMS/GME, 943/940GML Express 
Integrated Graphics Controller [14c0:0041]
  MachineType: BenQ Joybook Lite U102
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-39-generic 
root=UUID=224aa726-0d49-427f-a585-ca2ba44a5b35 ro quiet splash
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/03/2009
  dmi.bios.vendor: Be Q
  dmi.bios.version: 1.01
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: KTV00
  dmi.board.vendor: BenQ
  dmi.board.version: Base Board Version
  dmi.chassis.type: 1

[Touch-packages] [Bug 1669758] Re: Centrino Wireless-N 1000 not working on 16.10

2017-03-03 Thread Anton Hughes
** Package changed: ubuntu => network-manager (Ubuntu)

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

Title:
  Centrino Wireless-N 1000 not working on 16.10

Status in network-manager package in Ubuntu:
  New

Bug description:
  Summary
  Wifi is not working on Centrino Wireless-N 1000 not working on 16.10, but 
does work on windows.

  Please see following

  http://paste.ubuntu.com/24101344/
  
http://askubuntu.com/questions/887257/device-not-ready-wifi-not-working-on-ubuntu-16-10
  https://ubuntuforums.org/showthread.php?t=2354116=13615105#post13615105

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

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


[Touch-packages] [Bug 1240336] Re: After release upgrade, the user looses permissions for several basic actions in the system

2017-03-03 Thread Christophe Gras
Got same issue after an upgrade from Ubuntu 14.04 to 16.04 and the
following actions solved the problem :

sudo pam-auth-update --force
sudo vi/etc/pam.d/lightdm

=> add following lines at the end : 
session required pam_loginuid.so
session required pam_systemd.so

sudo reboot

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

Title:
  After release upgrade, the user looses permissions for several basic
  actions in the system

Status in gdm package in Ubuntu:
  Triaged
Status in lightdm package in Ubuntu:
  Triaged
Status in lxdm package in Ubuntu:
  Triaged
Status in policykit-desktop-privileges package in Ubuntu:
  Triaged

Bug description:
  HOW TO REPRODUCE:
  - Upgrade Ubuntu to the next release.

  RESULT:
  - The user looses permissions for several basic actions in the system.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: policykit-desktop-privileges 0.16
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Tue Oct 15 20:20:55 2013
  InstallationDate: Installed on 2013-10-09 (7 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Beta amd64 (20131008)
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: policykit-desktop-privileges
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1669536] Re: [unity8] you can break the App Drawer if you press ESC while draging

2017-03-03 Thread Michael Zanetti
** Changed in: unity8 (Ubuntu)
   Status: New => In Progress

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

Title:
  [unity8] you can break the App Drawer if you press ESC while draging

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

Bug description:
  Ubuntu 17.04 Unity8
  [unity8] you can break the App Drawer if you press ESC while draging

  hit the left side of the screen (hard, with some velocity) with your
  mouse pointer to reveal the App Drawer

  then click on the App Drawer and drag to the left but don't let go(see
  the attached screenshot). now press ESC. the App Drawer will close.
  now try to open it again, the animation is gone and you can't scroll
  up/down any more

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

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


[Touch-packages] [Bug 1669524] Re: GTK window functions `Always on Top, Move and Resize' don't work in Mir/Unity8

2017-03-03 Thread kevin gunn
** Tags added: unity8-desktop

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

Title:
  GTK window functions `Always on Top, Move and Resize' don't work in
  Mir/Unity8

Status in Canonical System Image:
  New
Status in Mir:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  New
Status in mir package in Ubuntu:
  Triaged
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  ubuntu 17.04 unity8
  [unity8] Always on Top, Move and Resize doesn't work

  open solitaire, right click on the title bar (see attachement) and
  then select Always on Top. the app doesn't stay on top. same with Move
  and Resize, does nothing

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

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


[Touch-packages] [Bug 1669810] [NEW] Drag operations can get stuck with two mouse devices

2017-03-03 Thread James Henstridge
Public bug reported:

I was occasionally noticing stuck drag operations (e.g. window resizing,
or scrolling the settings app) on my ThinkPad laptop using Unity 8, and
finally managed to work out how to reliably reproduce it.

 1. Ensure you've got two mouse-like devices attached to the system.  On my 
laptop I was using the track pad and track point.
 2. With one device press the left button and start resizing a window (or some 
other drag operation).
 3. Press and release the left button on the second mouse device
 4. Release the left button on the first mouse device.

The drag operation will continue even though no buttons are pressed.
The drag can be ended pressing and releasing the left button on the
second mouse.  Doing the same with the mouse that initiated the drag
doesn't seem to end it.

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

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

Title:
  Drag operations can get stuck with two mouse devices

Status in unity8 package in Ubuntu:
  New

Bug description:
  I was occasionally noticing stuck drag operations (e.g. window
  resizing, or scrolling the settings app) on my ThinkPad laptop using
  Unity 8, and finally managed to work out how to reliably reproduce it.

   1. Ensure you've got two mouse-like devices attached to the system.  On my 
laptop I was using the track pad and track point.
   2. With one device press the left button and start resizing a window (or 
some other drag operation).
   3. Press and release the left button on the second mouse device
   4. Release the left button on the first mouse device.

  The drag operation will continue even though no buttons are pressed.
  The drag can be ended pressing and releasing the left button on the
  second mouse.  Doing the same with the mouse that initiated the drag
  doesn't seem to end it.

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

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


[Touch-packages] [Bug 1534771] Re: Automatically switching to downloads page awkward in large layout

2017-03-03 Thread Florian Boucault
** Changed in: webbrowser-app (Ubuntu)
 Assignee: Olivier Tilloy (osomon) => Florian Boucault (fboucault)

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

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

Title:
  Automatically switching to downloads page awkward in large layout

Status in Canonical System Image:
  Confirmed
Status in Canonical Pocket Desktop:
  Confirmed
Status in Ubuntu UX:
  Triaged
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  Currently in small or expanded mode, we automatically switch to the
  Downloads page when requesting to download a file from the browser. We
  should consider changing this behavior, especially on expanded mode,
  the main reason being it's quite disruptive if you want to download a
  file and continue to browse. In expanded mode, all of the tabs get
  obscured by the Downloads header and page and you have to use the back
  arrow to get back to the tabs.

  Couple of possible options:

  1. In expanded mode, don't switch to page but instead show some sort
  of download icon while it's in progress, possibly next to the drawer
  icon or in the tab bar if there is room. Clicking on it would bring
  you to the downloads page. Note there is already a download indicator
  in the top system toolbar but it's not super obvious, especially on a
  large screen. Might be better for app to display it in addition..

  2. Prompt with dialog when downloading, with options to "Automatically
  show Downloads", "Never show Downloads", "Prompt each time.." or
  something along those lines

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

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


[Touch-packages] [Bug 1665727] Re: Window stuck in fullscreen mode

2017-03-03 Thread Launchpad Bug Tracker
** Branch linked: lp:webbrowser-app/staging

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

Title:
  Window stuck in fullscreen mode

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  Tested in unity8 deb session on xenial + overlay

  - Launcher set to always show in system-settings
  1) open youtube.com
  2) F11 to fullscreen browser
  3) play a video
  4) click fullscreen button to fullscreen video
  5) press esc, F11 or click the fullscreen button in bottom right to exist 
fullscreen
  6) Expected result: browser window still fullscreen, but esc or F11 should 
exist fullscreen 

  Actual result: browser window stuck in fullscreen, no way to exit it

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

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


[Touch-packages] [Bug 1669655] Re: Adapt to new Nautilus icon name

2017-03-03 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntu-themes -
16.10+17.04.20170303-0ubuntu1

---
ubuntu-themes (16.10+17.04.20170303-0ubuntu1) zesty; urgency=medium

  * Add symlinks to handle Nautilus 3.24's new icon name (LP: #1669655)

 -- Jeremy Bicha   Fri, 03 Mar 2017 03:51:08 +

** Changed in: ubuntu-themes (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Adapt to new Nautilus icon name

Status in humanity-icon-theme package in Ubuntu:
  Triaged
Status in ubuntu-themes package in Ubuntu:
  Fix Released

Bug description:
  Nautilus 3.24's app icon name is org.gnome.Nautilus instead of system-
  file-manager for better flatpak compatibility.

  I have updated ubuntu-themes and humanity-icon-theme for this change
  (adding a new symlink pointing to system-file-manager).

  ubuntu-themes is handled via bileto so I'll ask the appropriate people
  to sponsor that separately. DONE

  I pushed my change to the humanity bzr branch but I don't have upload rights 
for it so I'll need sponsorship for this:
  https://code.launchpad.net/~ubuntu-art-pkg/humanity/release/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/1669655/+subscriptions

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


[Touch-packages] [Bug 1534771] Re: Automatically switching to downloads page awkward in large layout

2017-03-03 Thread Launchpad Bug Tracker
** Branch linked: lp:~fboucault/webbrowser-
app/downloads_no_flow_interruption

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

Title:
  Automatically switching to downloads page awkward in large layout

Status in Canonical System Image:
  Confirmed
Status in Canonical Pocket Desktop:
  Confirmed
Status in Ubuntu UX:
  Triaged
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  Currently in small or expanded mode, we automatically switch to the
  Downloads page when requesting to download a file from the browser. We
  should consider changing this behavior, especially on expanded mode,
  the main reason being it's quite disruptive if you want to download a
  file and continue to browse. In expanded mode, all of the tabs get
  obscured by the Downloads header and page and you have to use the back
  arrow to get back to the tabs.

  Couple of possible options:

  1. In expanded mode, don't switch to page but instead show some sort
  of download icon while it's in progress, possibly next to the drawer
  icon or in the tab bar if there is room. Clicking on it would bring
  you to the downloads page. Note there is already a download indicator
  in the top system toolbar but it's not super obvious, especially on a
  large screen. Might be better for app to display it in addition..

  2. Prompt with dialog when downloading, with options to "Automatically
  show Downloads", "Never show Downloads", "Prompt each time.." or
  something along those lines

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

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


[Touch-packages] [Bug 1669800] [NEW] Liferea AppArmor profile

2017-03-03 Thread Raúl Vidal
Public bug reported:

Test plan:
1. Load Liferea from the unity launcher
2. Add new RSS feed.
3. Check for updates.
4. Read an entry of a feed.
5. Open entry in tab.
6. Open entry in browser.
7. Open entry in external browser.
8. Close window.
9. Open window from the message notifications.
10. Export OPML RSS feed.
11. Import OPML RSS feed.
12. Close window.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: apparmor 2.10.95-4ubuntu5.1
ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
Uname: Linux 4.8.0-39-generic x86_64
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Mar  3 15:14:29 2017
InstallationDate: Installed on 2015-07-31 (580 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
ProcKernelCmdline: BOOT_IMAGE=/vmlinuz-4.8.0-39-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash noht
SourcePackage: apparmor
UpgradeStatus: Upgraded to yakkety on 2016-11-01 (121 days ago)
mtime.conffile..etc.apparmor.d.abstractions.base: 2017-02-25T03:27:12.649925
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.java: 
2017-02-26T19:05:27.563689
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.ubuntu-integration:
 2017-02-20T21:15:58.771432
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.user-files: 
2017-02-18T19:33:07.157766
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-unity7-base: 
2017-02-23T22:37:50.022685
mtime.conffile..etc.apparmor.d.tunables.xdg-user-dirs: 
2017-02-22T02:08:02.499216

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


** Tags: amd64 apport-bug yakkety

** Attachment added: "Apparmor liferea rules"
   
https://bugs.launchpad.net/bugs/1669800/+attachment/4830762/+files/usr.bin.liferea

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

Title:
  Liferea AppArmor profile

Status in apparmor package in Ubuntu:
  New

Bug description:
  Test plan:
  1. Load Liferea from the unity launcher
  2. Add new RSS feed.
  3. Check for updates.
  4. Read an entry of a feed.
  5. Open entry in tab.
  6. Open entry in browser.
  7. Open entry in external browser.
  8. Close window.
  9. Open window from the message notifications.
  10. Export OPML RSS feed.
  11. Import OPML RSS feed.
  12. Close window.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.10
  Package: apparmor 2.10.95-4ubuntu5.1
  ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
  Uname: Linux 4.8.0-39-generic x86_64
  ApportVersion: 2.20.3-0ubuntu8.2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Mar  3 15:14:29 2017
  InstallationDate: Installed on 2015-07-31 (580 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  ProcKernelCmdline: BOOT_IMAGE=/vmlinuz-4.8.0-39-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash noht
  SourcePackage: apparmor
  UpgradeStatus: Upgraded to yakkety on 2016-11-01 (121 days ago)
  mtime.conffile..etc.apparmor.d.abstractions.base: 2017-02-25T03:27:12.649925
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.java: 
2017-02-26T19:05:27.563689
  
mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.ubuntu-integration:
 2017-02-20T21:15:58.771432
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-browsers.d.user-files: 
2017-02-18T19:33:07.157766
  mtime.conffile..etc.apparmor.d.abstractions.ubuntu-unity7-base: 
2017-02-23T22:37:50.022685
  mtime.conffile..etc.apparmor.d.tunables.xdg-user-dirs: 
2017-02-22T02:08:02.499216

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

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


[Touch-packages] [Bug 1319195] Re: indicator-datetime set for 24 hours does not show 24 hour clock for "Other Locations"

2017-03-03 Thread bitinerant
This is still an issue in 16.04.  In addition to the duplicate bugs, see
http://askubuntu.com/questions/493725

Is there a work-around for this until it gets fixed?

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

Title:
  indicator-datetime set for 24 hours does not show 24 hour clock for
  "Other Locations"

Status in indicator-datetime package in Ubuntu:
  Confirmed

Bug description:
  I configured the clock format to be 24-hour. This takes affect in the
  system clock, however "other locations" are unaffected and still show
  12-hour clock. See screenshot.

  This is Ubuntu Trusty

  indicator-datetime: 13.10.0+14.04.20140415.3-0ubuntu1

  I expect the Other Locations to also be 24 hour display.

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

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


[Touch-packages] [Bug 1240336] Re: After release upgrade, the user looses permissions for several basic actions in the system

2017-03-03 Thread dino99
** Changed in: gdm (Ubuntu)
 Assignee: chaya (chaya-d-14) => (unassigned)

** Tags removed: saucy utopic
** Tags added: xenial

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

Title:
  After release upgrade, the user looses permissions for several basic
  actions in the system

Status in gdm package in Ubuntu:
  Triaged
Status in lightdm package in Ubuntu:
  Triaged
Status in lxdm package in Ubuntu:
  Triaged
Status in policykit-desktop-privileges package in Ubuntu:
  Triaged

Bug description:
  HOW TO REPRODUCE:
  - Upgrade Ubuntu to the next release.

  RESULT:
  - The user looses permissions for several basic actions in the system.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: policykit-desktop-privileges 0.16
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Tue Oct 15 20:20:55 2013
  InstallationDate: Installed on 2013-10-09 (7 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Beta amd64 (20131008)
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: policykit-desktop-privileges
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1120853] Re: [AD1988B, ] 5.1 surround sound unresposive or of poor quality

2017-03-03 Thread Pham Hong Nhat
** Changed in: alsa-driver (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  [AD1988B,] 5.1 surround sound unresposive or of poor quality

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  Card info is as follows...

  card 0: Intel [HDA Intel], device 0: AD198x Analog [AD198x Analog]
Subdevices: 3/3
Subdevice #0: subdevice #0
Subdevice #1: subdevice #1
Subdevice #2: subdevice #2
  card 0: Intel [HDA Intel], device 1: AD198x Digital [AD198x Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  I tried to look after the problem with the following ubuntu fourum post:
  http://ubuntuforums.org/showthread.php?t=2103358

  any more suggestions would be much appreciated.

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

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


[Touch-packages] [Bug 1664990] Re: Restore focus on parent tab when closing child tab

2017-03-03 Thread Olivier Tilloy
Indeed, my original request was a naive approach, which is why I
suggested in comment #1 identifying what in chromium’s implementation we
want to replicate.

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

Title:
  Restore focus on parent tab when closing child tab

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  (follow-up to https://code.launchpad.net/~fboucault/webbrowser-
  app/background_open_tabs_adjacent/+merge/316226)

  In chromium on desktop, when opening a link in a new tab (for instance when 
Ctrl+clicking on a hyperlink), the new tab is open next to the parent tab. When 
closing that child tab, the parent tab is the one that becomes current.
  In webbrowser-app, when closing the child tab, the next one in the list 
becomes current. It would be nice if webbrowser-app implemented the same 
behaviour as chromium.

  Steps to reproduce:
   1) Start webbrowser-app, and open two tabs, e.g. http://example.org and 
http://start.ubuntu.com
   2) Focus the first tab (example.org) and right click on the "More 
information…" link (this opens a new tab in second position and focuses it
   3) Press Ctrl+W to close the current tab

  Expected result: the first tab (example.org) is the one that gets
  focused.

  Actual result: the second tab (start.ubuntu.com) is the one that gets
  focused.

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

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


[Touch-packages] [Bug 1590561] Re: webbrowser-app crashes on startup on fresh zesty Unity8: No suitable EGL configs found

2017-03-03 Thread Santosh
@Daniel

/dev/dri/* is not the cause of any issue here, and I  guess access is already 
provided.
AFAIR adding /dev/dri/* doesn't fix the issue on unity8.

The question is whether  "/sys/devices/pci[0-9]*/**/config r," is being
provided by unity8 to all apps or not, if not then adding that in each
app will be only option

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

Title:
  webbrowser-app crashes on startup on fresh zesty Unity8: No suitable
  EGL configs found

Status in Canonical System Image:
  Confirmed
Status in Oxide:
  Invalid
Status in apparmor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  When trying to start webbrowser-app a unresponsive window appears and
  after a few moments it crashes.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: webbrowser-app 0.23+16.04.20160413-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-22.40-generic 4.4.8
  Uname: Linux 4.4.0-22-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Jun  8 22:56:35 2016
  InstallationDate: Installed on 2016-04-28 (41 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  SourcePackage: webbrowser-app
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1669655] Re: Adapt to new Nautilus icon name

2017-03-03 Thread Jeremy Bicha
** Description changed:

  Nautilus 3.24's app icon name is org.gnome.Nautilus instead of system-
  file-manager for better flatpak compatibility.
  
  I have updated ubuntu-themes and humanity-icon-theme for this change
  (adding a new symlink pointing to system-file-manager).
  
  ubuntu-themes is handled via bileto so I'll ask the appropriate people
- to sponsor that separately.
+ to sponsor that separately. DONE
  
  I pushed my change to the humanity bzr branch but I don't have upload rights 
for it so I'll need sponsorship for this:
  https://code.launchpad.net/~ubuntu-art-pkg/humanity/release/

** Changed in: ubuntu-themes (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  Adapt to new Nautilus icon name

Status in humanity-icon-theme package in Ubuntu:
  Triaged
Status in ubuntu-themes package in Ubuntu:
  Fix Committed

Bug description:
  Nautilus 3.24's app icon name is org.gnome.Nautilus instead of system-
  file-manager for better flatpak compatibility.

  I have updated ubuntu-themes and humanity-icon-theme for this change
  (adding a new symlink pointing to system-file-manager).

  ubuntu-themes is handled via bileto so I'll ask the appropriate people
  to sponsor that separately. DONE

  I pushed my change to the humanity bzr branch but I don't have upload rights 
for it so I'll need sponsorship for this:
  https://code.launchpad.net/~ubuntu-art-pkg/humanity/release/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/1669655/+subscriptions

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


[Touch-packages] [Bug 1669799] [NEW] package libgbm1 12.0.3-1ubuntu2 failed to install/upgrade: »/usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0.dpkg-new« kann nicht auf sichere Weise entfernt werden: Das D

2017-03-03 Thread UlrichGWGros
Public bug reported:

 sudo apt-get dist-upgrade
[sudo] Passwort für ulrichgros: 
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut.   
Statusinformationen werden eingelesen Fertig
Paketaktualisierung (Upgrade) wird berechnet... Fertig
Die folgenden Pakete werden aktualisiert (Upgrade):
  libegl1-mesa libgbm1 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa
  libgles2-mesa libwayland-egl1-mesa libxatracker2 mesa-va-drivers
  snap-confine snapd
11 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
Es müssen noch 8.956 kB von 16,0 MB an Archiven heruntergeladen werden.
Nach dieser Operation werden 1.373 kB Plattenplatz zusätzlich benutzt.
Möchten Sie fortfahren? [J/n] j
Holen:1 http://de.archive.ubuntu.com/ubuntu yakkety-updates/main amd64 snapd 
amd64 2.22.6+16.10 [8.916 kB]
Holen:2 http://de.archive.ubuntu.com/ubuntu yakkety-updates/main amd64 
snap-confine amd64 2.22.6+16.10 [39,2 kB]
Es wurden 8.956 kB in 4 min 1 s geholt (37,2 kB/s).
(Lese Datenbank ... 265917 Dateien und Verzeichnisse sind derzeit installiert.)
Vorbereitung zum Entpacken von 
.../00-libwayland-egl1-mesa_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libwayland-egl1-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von .../01-libgbm1_12.0.6-0ubuntu0.16.10.1_amd64.deb 
...
Entpacken von libgbm1:amd64 (12.0.6-0ubuntu0.16.10.1) über (12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../02-libegl1-mesa_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libegl1-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../03-libgl1-mesa-dri_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libgl1-mesa-dri:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../04-libgles2-mesa_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libgles2-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../05-libgl1-mesa-glx_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libgl1-mesa-glx:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../06-libglapi-mesa_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libglapi-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../07-libxatracker2_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von libxatracker2:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von 
.../08-mesa-va-drivers_12.0.6-0ubuntu0.16.10.1_amd64.deb ...
Entpacken von mesa-va-drivers:amd64 (12.0.6-0ubuntu0.16.10.1) über 
(12.0.3-1ubuntu2) ...
Vorbereitung zum Entpacken von .../09-snapd_2.22.6+16.10_amd64.deb ...
Warning: Stopping snapd.service, but it can still be activated by:
  snapd.socket
Entpacken von snapd (2.22.6+16.10) über (2.22.3+16.10) ...
Vorbereitung zum Entpacken von .../10-snap-confine_2.22.6+16.10_amd64.deb ...
Entpacken von snap-confine (2.22.6+16.10) über (2.22.3+16.10) ...
libgbm1:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
libgl1-mesa-dri:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
libglapi-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
libxatracker2:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
Trigger für libc-bin (2.24-3ubuntu2) werden verarbeitet ...
libgl1-mesa-glx:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
mesa-va-drivers:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
Trigger für man-db (2.7.5-1) werden verarbeitet ...
snap-confine (2.22.6+16.10) wird eingerichtet ...
libgles2-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
libegl1-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) wird eingerichtet ...
snapd (2.22.6+16.10) wird eingerichtet ...
libwayland-egl1-mesa:amd64 (12.0.6-0ubuntu0.16.10.1) wird ei
 lsb_release-rd
lsb_release-rd: Befehl nicht gefunden.
ulrichgros@ulrichgros-Infoway:~$ sudo apt-get lsb_release-rd
E: Ungültige Operation lsb_release-rd
ulrichgros@ulrichgros-Infoway:~$ apt-cache policy pkgname
N: Paket pkgname kann nicht gefunden werden.
ulrichgros@ulrichgros-Infoway:~$

ProblemType: Package
DistroRelease: Ubuntu 16.10
Package: libgbm1 12.0.3-1ubuntu2
ProcVersionSignature: Ubuntu 4.8.0-39.42-generic 4.8.17
Uname: Linux 4.8.0-39-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Mar  2 14:02:05 2017
DistUpgraded: Fresh install
DistroCodename: yakkety
DistroVariant: ubuntu
ErrorMessage: »/usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0.dpkg-new« kann nicht 
auf sichere Weise entfernt werden: Das Dateisystem ist nur lesbar
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Mobile 4 Series Chipset Integrated 

[Touch-packages] [Bug 1664990] Re: Restore focus on parent tab when closing child tab

2017-03-03 Thread Florian Boucault
The other thing from that chromium code is that the closing order should
be different. In the case you describe of having opened B, C and D
background tabs. Closing D should not focus A (which created it) but
instead focus C.

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

Title:
  Restore focus on parent tab when closing child tab

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  (follow-up to https://code.launchpad.net/~fboucault/webbrowser-
  app/background_open_tabs_adjacent/+merge/316226)

  In chromium on desktop, when opening a link in a new tab (for instance when 
Ctrl+clicking on a hyperlink), the new tab is open next to the parent tab. When 
closing that child tab, the parent tab is the one that becomes current.
  In webbrowser-app, when closing the child tab, the next one in the list 
becomes current. It would be nice if webbrowser-app implemented the same 
behaviour as chromium.

  Steps to reproduce:
   1) Start webbrowser-app, and open two tabs, e.g. http://example.org and 
http://start.ubuntu.com
   2) Focus the first tab (example.org) and right click on the "More 
information…" link (this opens a new tab in second position and focuses it
   3) Press Ctrl+W to close the current tab

  Expected result: the first tab (example.org) is the one that gets
  focused.

  Actual result: the second tab (start.ubuntu.com) is the one that gets
  focused.

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

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


[Touch-packages] [Bug 817661] Re: [0769ERG, Realtek ALC861-VD, Speaker, Internal] No sound at all

2017-03-03 Thread Pham Hong Nhat
** Changed in: alsa-driver (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  [0769ERG, Realtek ALC861-VD, Speaker, Internal] No sound at all

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  there is no sound coming from my speakers.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: alsa-base 1.0.24+dfsg-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: Intel [HDA Intel], device 0: ALC861-VD Analog [ALC861-VD Analog]
 Subdevices: 0/1
 Subdevice #0: subdevice #0
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ahsan  1452 F pulseaudio
   /dev/snd/pcmC0D0p:   ahsan  1452 F...m pulseaudio
   /dev/snd/controlC1:  ahsan  1452 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfc30 irq 47'
 Mixer name : 'Realtek ALC861-VD'
 Components : 'HDA:10ec0862,17aa3867,0011 
HDA:11c11040,11c10001,00100200'
 Controls  : 19
 Simple ctrls  : 12
  Card1.Amixer.info:
   Card hw:1 'CAMERA'/'ARKMICRO USB2.0 PC CAMERA at usb-:00:1d.7-3, high 
speed'
 Mixer name : 'USB Mixer'
 Components : 'USB18ec:3299'
 Controls  : 2
 Simple ctrls  : 1
  CurrentDmesg:
   [   18.956485] tg3 :06:00.0: eth0: Link is up at 100 Mbps, full duplex
   [   18.956490] tg3 :06:00.0: eth0: Flow control is off for TX and off 
for RX
   [   18.956680] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
   [   21.337900] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
   [   29.088022] eth0: no IPv6 routers present
  Date: Thu Jul 28 18:22:36 2011
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel failed
  Symptom_Card: Internal Audio - HDA Intel
  Symptom_DevicesInUse:
   1452  1452  1452  ahsan F...m pulseaudio
   /dev/snd/controlC1:  ahsan F pulseaudio
  Symptom_Jack: Speaker, Internal
  Symptom_Type: No sound at all
  Title: [0769ERG, Realtek ALC861-VD, Speaker, Internal] No sound at all
  UpgradeStatus: Upgraded to natty on 2011-07-28 (0 days ago)
  dmi.bios.date: 06/11/2008
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 68ET37WW
  dmi.board.name: IEL10
  dmi.board.vendor: LENOVO
  dmi.board.version: REFERENCE
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnLENOVO:bvr68ET37WW:bd06/11/2008:svnLENOVO:pn0769ERG:pvr3000N200:rvnLENOVO:rnIEL10:rvrREFERENCE:cvnNoEnclosure:ct10:cvrN/A:
  dmi.product.name: 0769ERG
  dmi.product.version: 3000 N200
  dmi.sys.vendor: LENOVO

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

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


[Touch-packages] [Bug 682565] Re: Thinkpad Edge 11" (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not Working

2017-03-03 Thread Pham Hong Nhat
** Changed in: alsa-driver (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  Thinkpad Edge 11" (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not
  Working

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  I have a thinkpad edge 11" (intel) which uses the Conexant CX20582
  (Pebble) sound chip.

  Currently, the internal microphone will not work. Out of the box, the
  headphones and external mic also have issues but these get solved
  following directions in
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/587388

  Following the solution listed in this bug report and setting my
  /etc/modprobe.d/alsa-base.conf to options snd-hda-intel model="olpc-
  xo-1_5" the headphone and external microphone seem to work, but the
  internal microphone seem not to work. The options in alsa-mixer seem
  not to match the physical hardware layout. My guess is that the
  configuration of the pebble chip in the laptop is not supported by the
  drivers yet.

  Let me know how else I can help.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: alsa-base 1.0.23+dfsg-1ubuntu4
  ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
  Uname: Linux 2.6.35-22-generic x86_64
  AlsaVersion:
   Advanced Linux Sound Architecture Driver Version 1.0.23.
   Compiled on Nov 18 2010 for kernel 2.6.35-22-generic (SMP).
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ahnise 2703 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf070 irq 48'
 Mixer name : 'Intel IbexPeak HDMI'
 Components : 'HDA:14f15066,17aa21c8,00100302 
HDA:80862804,80860101,0010'
 Controls  : 18
 Simple ctrls  : 9
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
86HT19WW-1.165000'
 Mixer name : 'ThinkPad EC 86HT19WW-1.165000'
 Components : ''
 Controls  : 1
 Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  Date: Mon Nov 29 14:33:19 2010
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_PH.utf8
   SHELL=/bin/bash
  SelectedCard: 0 Intel HDA-Intel - HDA Intel
  SourcePackage: alsa-driver
  Symptom: audio
  Title: [Conexant CX20582 (Pebble)] Recording problem
  dmi.bios.date: 08/10/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 86ET19WW (1.03 )
  dmi.board.name: 03282NB
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr86ET19WW(1.03):bd08/10/2010:svnLENOVO:pn03282NB:pvrThinkPadEdge:rvnLENOVO:rn03282NB:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 03282NB
  dmi.product.version: ThinkPad Edge
  dmi.sys.vendor: LENOVO

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

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


[Touch-packages] [Bug 441247] Re: nvidia MCP79 HDA microphone does not work

2017-03-03 Thread Pham Hong Nhat
** Changed in: alsa-driver (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  nvidia MCP79 HDA microphone does not work

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  My microphone does not work, recording in audacity or calling in
  skype. Tried raising the microphone levels in alsamixer, but that
  didn't help

  System is Ubuntu 9.10 karmic

  ProblemType: Bug
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  martin 1659 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'NVidia'/'HDA NVidia at 0xf098 irq 17'
 Mixer name : 'Nvidia MCP7A HDMI'
 Components : 'HDA:10ec0888,10250160,00100202 
HDA:10de0007,10de0101,00100100'
 Controls  : 29
 Simple ctrls  : 15
  Date: Sat Oct  3 13:08:21 2009
  DistroRelease: Ubuntu 9.10
  NonfreeKernelModules: nvidia
  Package: alsa-base 1.0.20+dfsg-1ubuntu4
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-11.38-generic
  SourcePackage: alsa-driver
  Uname: Linux 2.6.31-11-generic i686
  --- 
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  stalker1238 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'NVidia'/'HDA NVidia at 0xf098 irq 17'
 Mixer name : 'Nvidia MCP7A HDMI'
 Components : 'HDA:10ec0888,10250160,00100202 
HDA:10de0007,10de0101,00100100'
 Controls  : 29
 Simple ctrls  : 15
  DistroRelease: Ubuntu 10.04
  InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100318)
  Package: alsa-base 1.0.22.1+dfsg-0ubuntu3
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-17.26-generic 2.6.32.10+drm33.1
  Tags: lucid
  Uname: Linux 2.6.32-17-generic i686
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

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


[Touch-packages] [Bug 566535] Re: Heavy stutter without system load

2017-03-03 Thread Pham Hong Nhat
** Changed in: alsa-driver (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  Heavy stutter without system load

Status in alsa-driver package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: pulseaudio

  Description:  Ubuntu lucid (development branch)
  Release:  10.04 AMD64

  With turn from karmic to lucid beta the sound is poping and stuttering while 
playing trough pulseaudio. When this happens i got tons of these lines in 
messages.
  Apr 19 12:13:29 agamemnon pulseaudio[5718]: ratelimit.c: 5 events suppressed
  Apr 19 12:18:05 agamemnon pulseaudio[5718]: ratelimit.c: 1 events suppressed
  Sometimes pulse goes to sleep_state and the sound stops completely, audio 
applications grey out in this case.

  The chip is a rt888 HDA. I tryed to set higher priority at
  /etc/pulse/daemon.conf but -11 and forbidden realtime scheduling seems
  to be the reality. I tryed different resample-method without an
  effect. In karmic pulse runs with -20 and everything was fine.

  pulseaudio:
Installed: 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14

  There is 2x 2.8GHz CPU power, 4gig of 1333 mem but load isn't needed
  to let pulse stutter und popple. Other distros enable pulse-rt to
  workaround this, ubuntu did not not have this group.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-21.32-genusername 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-21-generic x86_64
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  eric   5718 F pulseaudio
   /dev/snd/pcmC0D0p:   eric   5718 F...m pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xfe024000 irq 16'
 Mixer name : 'Realtek ALC888'
 Components : 'HDA:10ec0888,1458e601,0011'
 Controls  : 39
 Simple ctrls  : 21
  CheckboxSubmission: 72ffaca291c05635776d4a13f9e644e4
  CheckboxSystem: 32980ee028b29311fef8e195a759b031
  Date: Mon Apr 19 12:17:10 2010
  ProcEnviron:
   LANGUAGE=de_DE:de:en_GB:en
   LANG=de_DE.utf8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  dmi.bios.date: 12/09/2009
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F2
  dmi.board.name: GA-MA770T-UD3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF2:bd12/09/2009:svnGigabyteTechnologyCo.,Ltd.:pnGA-MA770T-UD3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-MA770T-UD3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: GA-MA770T-UD3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  mtime.conffile..etc.pulse.daemon.conf: 2010-04-18T16:17:13.703498

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

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


[Touch-packages] [Bug 1669819] Re: [unity8] strange behivior when maximizing snaped windows

2017-03-03 Thread dinamic
** Attachment added: "screenshot2"
   
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1669819/+attachment/4830786/+files/screenshot20170303_170729453.png

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

** Summary changed:

- [unity8] strange behivior  when maximizing snaped windows 
+ [unity8] strange behavior  when maximizing snaped windows

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

Title:
  [unity8] strange behavior  when maximizing snaped windows

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

Bug description:
  Ubuntu 17.04 Unity8

  open random app (terminal app), snap it randomly on the screen (right
  buttom corner) by draging the app by the title bar (see screenshot1).
  now click on maximize window, the window almost leaves the screen
  (screenshot2).

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

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


[Touch-packages] [Bug 1669810] Re: Drag operations can get stuck with two mouse devices

2017-03-03 Thread Michał Sawicz
** Tags added: unity8-desktop

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

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

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

Title:
  Drag operations can get stuck with two mouse devices

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  I was occasionally noticing stuck drag operations (e.g. window
  resizing, or scrolling the settings app) on my ThinkPad laptop using
  Unity 8, and finally managed to work out how to reliably reproduce it.

   1. Ensure you've got two mouse-like devices attached to the system.  On my 
laptop I was using the track pad and track point.
   2. With one device press the left button and start resizing a window (or 
some other drag operation).
   3. Press and release the left button on the second mouse device
   4. Release the left button on the first mouse device.

  The drag operation will continue even though no buttons are pressed.
  The drag can be ended pressing and releasing the left button on the
  second mouse.  Doing the same with the mouse that initiated the drag
  doesn't seem to end it.

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

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


[Touch-packages] [Bug 1668700] Re: Blank default scope in unity8-deb

2017-03-03 Thread Michael Terry
Oh looking into it, we already ship that config piece.  The default
gschema setting for favorite-scopes is in unity-schemas, part of the
unity7 source.

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

Title:
  Blank default scope in unity8-deb

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

Bug description:
  Environment:
  unity8-deb on a fresh zesty installation in kvm

  Steps:

  1º Install zesty on kvm image
  2º Enter unity8-deb
  3º Check the default scope

  Expected result: some scopes should be marked by default as favorite,
  unity-scope-mediascanner2 wasn't installed along with zesty so some
  scopes are missing

  Current result: default scope is blank and only 3rd party scopes are
  available

  Add info: Bug #1668701

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

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


[Touch-packages] [Bug 1669546] Re: [MIR] mediascanner2

2017-03-03 Thread Michael Terry
OK, talked to tedg, unity-api-team is subscribed.  This has worked well
enough in Touch for a while.  Should be good for main.

** Changed in: mediascanner2 (Ubuntu)
   Status: Incomplete => Fix Committed

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

Title:
  [MIR] mediascanner2

Status in mediascanner2 package in Ubuntu:
  Fix Committed

Bug description:
  In order to add the mediascanner2 scope to the default image, we want
  to promote mediascanner2 and deps to main.  The scope itself is
  already approved (bug 1218409).

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

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


[Touch-packages] [Bug 1385292] Re: can't rename files in nautilus

2017-03-03 Thread Vej
I could not find a fix somewhere. Will reset state to Triaged. If you
know about any existing fix, please link it here and reset to Fix
Released.

Please not further: The linked upstream bug report had been set to
"CanNotRepro". It would be helpful, if you could work together with the
upstream developers to get them to reproduce this.

** Tags added: xenial

** Changed in: ibus (Ubuntu)
   Status: Fix Released => Triaged

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

Title:
  can't rename files in nautilus

Status in ibus:
  Unknown
Status in ibus package in Ubuntu:
  Triaged

Bug description:
  sometimes can't rename files with F2 button. It is higlight changing,
  but nothing gonna happen, it is not responding

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: nautilus 1:3.10.1-0ubuntu15
  ProcVersionSignature: Ubuntu 3.16.0-23.31-generic 3.16.4
  Uname: Linux 3.16.0-23-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Oct 24 17:48:33 2014
  GsettingsChanges: b'org.gnome.nautilus.list-view' b'default-column-order' 
b"['name', 'size', 'type', 'date_modified', 'date_accessed', 'owner', 'group', 
'permissions', 'mime_type', 'where']"
  InstallationDate: Installed on 2014-10-24 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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