[Touch-packages] [Bug 1533839] Re: vms shutting down on libvirt upgrade

2016-01-18 Thread Martin Pitt
** No longer affects: init-system-helpers (Ubuntu)

** No longer affects: init-system-helpers (Ubuntu Wily)

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

Title:
  vms shutting down on libvirt upgrade

Status in libvirt package in Ubuntu:
  Triaged
Status in libvirt source package in Wily:
  New

Bug description:
  Server running ubuntu wily, kvm and a few virtual machines

  Today installed security updates which contained a libvirt update.
  After finishing the updates i found al my virtual machines were
  shutdown. Previous libvirt updates did not shutdown running virtual
  machines.

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

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


[Touch-packages] [Bug 1535219] [NEW] HP ZBook 15u mic mute button doesn't work

2016-01-18 Thread Ippolitov Igor
Public bug reported:

This is mostly similar to this one:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1334968

I have an HP Zbook 15u laptop with a mic mute button at fn+f8. I didn't
work for me with xubuntu LTS 14.04.03

What is wished: keyboard shortcut fn+f8 should produce XF86AudioMicMute X key 
code which mutes microphone.
What is happening: keyboard shotcut has keycode 465 which does nothing, while 
muting microphone through GUI enables led on the keyboard.

How to debug similar issues and fix:
Enable keyboard debug, find your scancode, remap it to f20, restart X.

Now in step by step instruction:
NB: keyboard sends scancodes, kernel makes keycodes from those. Keycodes are 
remapped in X before getting into applications

1) enable keyboard debug to make things easier: edit /etc/default/grub, add the 
following options
GRUB_CMDLINE_LINUX="atkbd.softraw=0", Reboot to enable this.
2) install "evtest" utility
3) using "evtest" find your keyboard (was /dev/input/event3 for me)
4) look for the key down and key up scancodes for fn+f8 button. Fixed version 
looks like this:
Event: time 1453101052.604985, -- SYN_REPORT 
Event: time 1453101053.883744, type 4 (EV_MSC), code 3 (MSC_RAW), value e0
Event: time 1453101053.883744, type 4 (EV_MSC), code 3 (MSC_RAW), value 01
Event: time 1453101053.883744, type 4 (EV_MSC), code 4 (MSC_SCAN), value 81
Event: time 1453101053.883744, type 1 (EV_KEY), code 190 (KEY_F20), value 1
Event: time 1453101053.883744, -- SYN_REPORT 
Event: time 1453101053.955411, type 4 (EV_MSC), code 3 (MSC_RAW), value e0
Event: time 1453101053.955411, type 4 (EV_MSC), code 3 (MSC_RAW), value 81
Event: time 1453101053.955411, type 4 (EV_MSC), code 4 (MSC_SCAN), value 81
Event: time 1453101053.955411, type 1 (EV_KEY), code 190 (KEY_F20), value 0

the "code 190 (KEY_F20)" will be different for you.

5) using "eventX" from the above, find corresponding device using "find /sys/ 
-name event3". 
6) find out udev modalias for your keyboard: "udevadm --debug test 
/devices/platform/i8042/serio0/input/input3/event3 2>&1 | grep dmi/id", The 
long path is from p.5 'find' output
7) create and change /etc/udev/hwdb.d/60-hp-mic-mute-hotkey.hwdb file. Add 
following lines there:
keyboard:dmi:bvnHewlett-Packard:bvrM71Ver.01.07:bd07/28/2015:svnHewlett-Packard:pnHPZBook15uG2:pvrA3009D510303:rvnHewlett-Packard:rn2216:rvrKBCVersion96.55:cvnHewlett-Packard:ct10:cvr:
 KEYBOARD_KEY_81=f20
The long identifier is from udevadm point 6 output.  "81" is the scan code. f20 
- is an alias for the keycode we wish to have (can be replaced with '190' 
keycode itself)
8) udevadm hwdb --update; udevadm trigger /dev/input/event3
9) test with evtest that you have appropriate keycode for the button. To make 
it work in X11 you have to restart X (or reboot, don't know for sure)
10) test with xev after reboot: fn+f8 should work as intended this time. 
(xmodmap maps f20 to XF86AudioMicMute). 
11) for xfce4 you might need to map XF86AudioMicMute to a pactl action, but 
this is xfce specific.

For the maintainers:
Mose of HPProBooks, EliteBooks, ZBooks has the same issue. Could anyone contact 
HP and request some help with all those keyboards?...

Please, add ZBook into keyboard.hwdb file.

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

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

Title:
  HP ZBook 15u mic mute button doesn't work

Status in systemd package in Ubuntu:
  New

Bug description:
  This is mostly similar to this one:
  https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1334968

  I have an HP Zbook 15u laptop with a mic mute button at fn+f8. I
  didn't work for me with xubuntu LTS 14.04.03

  What is wished: keyboard shortcut fn+f8 should produce XF86AudioMicMute X key 
code which mutes microphone.
  What is happening: keyboard shotcut has keycode 465 which does nothing, while 
muting microphone through GUI enables led on the keyboard.

  How to debug similar issues and fix:
  Enable keyboard debug, find your scancode, remap it to f20, restart X.

  Now in step by step instruction:
  NB: keyboard sends scancodes, kernel makes keycodes from those. Keycodes are 
remapped in X before getting into applications

  1) enable keyboard debug to make things easier: edit /etc/default/grub, add 
the following options
  GRUB_CMDLINE_LINUX="atkbd.softraw=0", Reboot to enable this.
  2) install "evtest" utility
  3) using "evtest" find your keyboard (was /dev/input/event3 for me)
  4) look for the key down and key up scancodes for fn+f8 button. Fixed version 
looks like this:
  Event: time 1453101052.604985, -- SYN_REPORT 
  Event: time 1453101053.883744, type 4 (EV_MSC), code 3 (MSC_RAW), value e0
  Event: time 1453101053.883744, type 4 (EV_MSC), code 3 (MSC_RAW), value 01
  Event: time 

[Touch-packages] [Bug 1535335] [NEW] Change prompt "wants to record audio" to "wants to access microphone"

2016-01-18 Thread Jean-Baptiste Lallement
Public bug reported:

The prompt when the camera wants to access the hardware to record audio
is currently "wants to record audio". This is not really accurate since
an app can request access to the microphone without actually recording
anything. furthermore the direct translation to French as an example is
not really meaningful.

Something like "wants to access the microphone." would be more accurate
since it's actually what the application tries to do.

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

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

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

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

Title:
  Change prompt "wants to record audio" to "wants to access microphone"

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

Bug description:
  The prompt when the camera wants to access the hardware to record
  audio is currently "wants to record audio". This is not really
  accurate since an app can request access to the microphone without
  actually recording anything. furthermore the direct translation to
  French as an example is not really meaningful.

  Something like "wants to access the microphone." would be more
  accurate since it's actually what the application tries to do.

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

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


[Touch-packages] [Bug 1430479] Re: "telinit u" under upstart (upstart's Restart command) with systemd-sysv installed runs systemd

2016-01-18 Thread Martin Pitt
** Bug watch added: Debian Bug tracker #789524
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789524

** Also affects: upstart (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789524
   Importance: Unknown
   Status: Unknown

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

Title:
  "telinit u" under upstart (upstart's Restart command) with systemd-
  sysv installed runs systemd

Status in systemd package in Ubuntu:
  Fix Released
Status in upstart package in Ubuntu:
  Triaged
Status in upstart package in Debian:
  Unknown

Bug description:
  I've today had two machines kill my X session during dist-upgrade, and
  it happened during libc6 postinst. Dmesg shows that systemd got
  somehow started during the earlier phase of the upgrade. X logs show a
  failure with "(EE) Cannot establish any listening sockets" etc..

  Adam can fill in the more detailed analysis of what's happening
  there.. but I think it should be fairly easy to reproduce by
  installing vivid from an earlier image and dist-upgrading to current,
  if needed.

  Reproducer:
   - Start with a standard utopic VM (e. g. adt-buildvm-ubuntu-cloud -r utopic)
   - Switch apt sources to vivid
   - sudo apt install systemd-sysv
   - sudo telinit u  # systemd command, forwards to upstart's 
/lib/sysvinit/telinit
   - Or directly: sudo /lib/sysvinit/telinit u

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

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


[Touch-packages] [Bug 1532868] Re: [Avila] OSK generates random touch events after switching from physical keyboard

2016-01-18 Thread Victor Tuson Palau
Sorry I was travelling. This seem to happen with all the apps, including
the shell. I wonder if it is related to
https://bugs.launchpad.net/avila/+bug/1532862 as it only happens after
that bug has triggered. I will do more testing now that I have a bt
keyboard too, to see if I can reproduce with both.

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

Title:
  [Avila] OSK generates random touch events after switching from
  physical keyboard

Status in The Avila project:
  New
Status in canonical-pocket-desktop:
  New
Status in mir package in Ubuntu:
  Opinion
Status in xorg-server package in Ubuntu:
  New

Bug description:
  Steps:
  connect a USB keyboard 
  Use for a bit
  Disconnect keyboard
  try using the onboard keyboard

  Result:
  The keyboard starts producing random touch events as soon as you try to use 
it.

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Martin Pitt
http://anonscm.debian.org/cgit/pkg-
systemd/systemd.git/commit/?id=944c47b

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

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1535151] Re: black screen with mouse pointer after changing to unity 8 on nVidia GT525M (ubuntu 15.10)

2016-01-18 Thread wegosh
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => wegosh (wegosh16-g)

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

Title:
  black screen with mouse pointer after changing to unity 8 on nVidia
  GT525M (ubuntu 15.10)

Status in unity8 package in Ubuntu:
  New

Bug description:
  I installed unity8 mir with terminal and after all I can see is black
  screen with a mouse pointer. Graphic card I using is nVidia GT 525M
  with the latest drivers. I'm using Ubuntu 15.10. I hope that this will
  be fixed soon.

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

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


[Touch-packages] [Bug 1535151] Re: black screen with mouse pointer after changing to ubuntu 8 on nVidia GT525M

2016-01-18 Thread wegosh
@dinamic6661 I upgraded from 15.10 to 16.04, changed my drivers to open
source ones (nouveau ) and now the screen is still black, but there is
no mouse pointer and at the top-left corner there is one underline and
that's all I see. Any suggestions?

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

Title:
  black screen with mouse pointer after changing to ubuntu 8 on nVidia
  GT525M

Status in unity8 package in Ubuntu:
  New

Bug description:
  I installed unity8 mir with terminal and after all I can see is black
  screen with a mouse pointer. Graphic card I using is nVidia GT 525M
  with the latest drivers. I'm using Ubuntu 15.10. I hope that this will
  be fixed soon.

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

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


[Touch-packages] [Bug 1440608] Re: /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels except the latest one

2016-01-18 Thread Robert Euhus
Jarno Suni, thanks for the reply.

First I would like to stress, that I still don't think that running all
the KERNELS postINSTALL hooks while REMOVING the -extra package is the
right thing todo. The only thing I can see that is really needed is the
recreation of the initrd on installation and revmoval of that package
(please correct me if I'm wrong!). So I think this is the only thing
that should be done. Even recreating the GRUB config is unnessecary and
a waste of time.

So working around this in the /etc/kernel/postinst.d/apt-auto-removal
script is imho not the right way to do this.

That being said, this seems like the only available option right now.

I have taken a closer look at your "Fixed again" script and made some 
adjustments (comparing with apt 1.0.1ubuntu2.10 from 14.04):
- The version you have uploaded does not run properly, because some 
backslash-escapes for line breaks are missing (leading to "broken pipe" error). 
- In the check if the kernel given in argument is desired to be removed the 
"exit" from the awk statement causes another broken pipe if the match is not 
the last kernel. It is not needed, so I removed it.
- The awk regex for creating the "list" of installed kernel versions is wrong ( 
only ' ' instead of '[ ]+' ), so the list is always empty.  I don't see the 
advantage of using DPKG_QUERY here compared to the original which just uses 
DPKG. So to keep changes minimal I have reverted it to the old version.
- The shortened check if we have more than two kernels to keep already may lead 
to keeping one more kernel (3 in total) than in the original, which is fine by 
me.
- Again to keep changes (diff) minimal I have reordered the versions for the 
"kernel" variable like they are in the original.
- The use of dpkg-query looks somehow awkward to me (but maybe it's just 
me).

I'll attach my updated version of the /etc/kernel/postinst.d/apt-auto-
removal script

I have just run a few tests and it seems to work better than the
original for now. I'll do some more testing right now.

Regards,
Robert.

** Attachment added: "updated /etc/kernel/postinst.d/apt-auto-removal script"
   
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1440608/+attachment/4551868/+files/apt-auto-removal

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

Title:
  /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels
  except the latest one

Status in One Hundred Papercuts:
  Triaged
Status in apt package in Ubuntu:
  Triaged
Status in linux package in Ubuntu:
  Triaged

Bug description:
  After installing a 3rd kernel currently 3.19.0-12-generic, the
  /etc/apt/apt.conf.d/01autoremove-kernels file looks normal listing the
  3.19.0-11-generic and 3.19.0-12-generic with 3.19.0-10-generic listed
  to be autoremoved. But once autoremove is completed the machine
  requests to be rebooted and at that time the /etc/apt/apt.conf.d
  /01autoremove-kernels file lists the 3.19.0-12-generic and
  3.19.0-10-generic kernels. So upon rebooting the 3.19.0-11-generic is
  requested to be autoremoved leaving only one kernel the latest one
  3.19.0-12-generic.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apt 1.0.9.7ubuntu3
  ProcVersionSignature: Ubuntu 3.19.0-12.12-generic 3.19.3
  Uname: Linux 3.19.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17-0ubuntu1
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Sun Apr  5 17:03:01 2015
  InstallationDate: Installed on 2015-04-02 (3 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Beta amd64 (20150401)
  SourcePackage: apt
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1535151] Re: black screen with mouse pointer after changing to unity 8 on nVidia GT525M (ubuntu 15.10)

2016-01-18 Thread wegosh
** Summary changed:

- black screen with mouse pointer after changing to ubuntu 8 on nVidia GT525M
+ black screen with mouse pointer after changing to unity 8 on nVidia GT525M 
(ubuntu 15.10)

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

Title:
  black screen with mouse pointer after changing to unity 8 on nVidia
  GT525M (ubuntu 15.10)

Status in unity8 package in Ubuntu:
  New

Bug description:
  I installed unity8 mir with terminal and after all I can see is black
  screen with a mouse pointer. Graphic card I using is nVidia GT 525M
  with the latest drivers. I'm using Ubuntu 15.10. I hope that this will
  be fixed soon.

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Martin Pitt
Oh, I absolutely do agree that /usr/sbin/ is a really bad place.
/usr/local or /etc/ are better indeed. I was just wondering about what
precise path it should be, as I have never seen this documented or being
used in a Debian context.

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Triaged

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Martin Pitt
So it seems we are not actually breaking any backwards compatibility
here, so we could just use /etc/halt.local corresponding to
/etc/rc.local.

** Changed in: systemd (Ubuntu)
   Status: Incomplete => Triaged

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Triaged

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 583172] Re: cups lose configuration

2016-01-18 Thread DarkNova
Experienced this on Debian 7.7. Not related to apt as the package was
not being updated around this time. printers.conf was wiped on restart.

** Also affects: cups (Debian)
   Importance: Undecided
   Status: New

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

Title:
  cups lose configuration

Status in cups package in Ubuntu:
  Confirmed
Status in cups package in Debian:
  New

Bug description:
  Binary package hint: cups

  cups 1.4.3-1
  ubuntu 10.04

  Hi everyone:
  my cups randomly lose any printer I have added.

  I configure my printer, I can print, but after shutdown, when I restart there 
isn't any printer in my system/printer
  I can see /etc/cups/ppd and there are all my ppd printer drivers, but the 
file /etc/cups/printers.conf is empty
  I reconfigure the printer, newly I can print, but after shutdown, randomly my 
system printer is newly empty...

  The bug seems to be correct only if I copy the /etc/cups/printers.conf
  from another pc...

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Thomas M Steenholdt
Hmmm I can't seem to find it documented anywhere, but last time I needed
this to work was in the good old sysvinit days and it may have even been
on a different distro. Sorry for not brushing thoroughly up on this,
prior to filing this bug.

I have checked with CentOS 7 and it has the halt.local placed in
/usr/sbin/halt.local as well

In any case, this is part of the rc-local type magic that systemd
performs and with rc.local in /etc/rc.local, one could argue, that it
makes sense for these scripts to be located together.

But more importantly, user-maintained stuff in /usr/sbin/ is just bad
practice and we should not encourage people to do that.

/T

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

-- 
Mailing list: https://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 1531913] Re: Fallback image not shown when no image specified

2016-01-18 Thread Michał Sawicz
W dniu 17.01.2016 o 16:06, Michi Henning pisze:
> What's the problem with doc? If it isn't right, I'll fix it.

The question is whether fallback was supposed to be used when the scope
did not send a url for the image, vs. if whatever it did send failed to
load.

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

Title:
  Fallback image not shown when no image specified

Status in Canonical System Image:
  Confirmed
Status in unity-scopes-api package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Opinion

Bug description:
  In fixing bug #1520631 in unity-scope-click, as the store server will
  start allowing uploads with no icon specified, it was discovered that
  Unity8 is not showing the fallback when we do not include the artwork.
  Instead, it is only shown if we specify invalid artwork. This seems
  wrong, and instead I would think the fallback would be displayed
  whenever no other artwork is provided.

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

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


[Touch-packages] [Bug 1535241] Re: AdaptivePageLayout first example is badly broken

2016-01-18 Thread Benjamin Zeller
** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) => Benjamin Zeller (zeller-benjamin)

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1535297] [NEW] Unity8 crashes on session logout on desktop

2016-01-18 Thread Andrea Bernabei
Public bug reported:

This is happening on a fresh setup, which is basically:
Xenial 17Jan iso + unity8-desktop-session-mir package

When I logout, I get a black screen. Turns out unity8 is crashing with a
"double free or linked list corruption"

Please find unity8.log attached

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

** Attachment added: "unity8log"
   https://bugs.launchpad.net/bugs/1535297/+attachment/4551834/+files/unity8log

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

Title:
  Unity8 crashes on session logout on desktop

Status in unity8 package in Ubuntu:
  New

Bug description:
  This is happening on a fresh setup, which is basically:
  Xenial 17Jan iso + unity8-desktop-session-mir package

  When I logout, I get a black screen. Turns out unity8 is crashing with
  a "double free or linked list corruption"

  Please find unity8.log attached

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

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


[Touch-packages] [Bug 1329191] Re: [MacBookAir5, 1, Cirrus Logic CS4206, Blue Line In, Rear] Line In using TRRS plug does not work correctly

2016-01-18 Thread christoph
Honestly I don't know at which values I have to look in this inf file
(and then what to do with them).

I tried to override x0c pin with hdajackretask as external Microphone which 
leaves me with 2 input devices in Settings -> Sound and 2 capture devices in 
alsamixer as well. Fiddling around with unmuting/muting etc.: they both don't 
produce signals (not even the internal laptop mic). 
I tried different settings for hdajackretask with pin x0c but they didn't 
affect sound devices at all. 
Overriding other pins mutes the headset + internal speakers (and don't affect 
input devices).

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

Title:
  [MacBookAir5,1, Cirrus Logic CS4206, Blue Line In, Rear] Line In using
  TRRS plug does not work correctly

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Microphone connected via TRRS plug on Macbook Air 5,1 is not
  recognised. Selecting "Analogue In" in Pulseaudio mixer is same as
  selecting "Microphone" - i.e. sounds recorded are always the Internal
  microphone, and not the microphone connected via the TRRS plug. When
  using OSX however, the TRRS microphone works correctly.

  Have tried booting Live CDs of 12.04, 13.04, and 14.04, and even tried
  upgrading kernel to 3.15, and problem persists.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: alsa-base 1.0.25+dfsg-0ubuntu4
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  scrosby2172 F pulseaudio
   /dev/snd/pcmC0D0c:   scrosby2172 F...m pulseaudio
  CurrentDesktop: Unity
  Date: Thu Jun 12 16:58:10 2014
  InstallationDate: Installed on 2014-02-24 (107 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64+mac (20140223)
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  Symptom_AlsaRecordingTest: ALSA recording test through plughw:PCH successful
  Symptom_Card: Built-in Audio - HDA Intel PCH
  Symptom_Jack: Blue Line In, Rear
  Symptom_PulseAudioRecordingTest: PulseAudio recording test through plughw:PCH 
failed
  Symptom_Type: Only some of inputs are working
  Title: [MacBookAir5,1, Cirrus Logic CS4206, Blue Line In, Rear] Recording 
problem
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/27/2012
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBA51.88Z.00EF.B02.1211271028
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-66F35F19FE2A0D05
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookAir5,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-66F35F19FE2A0D05
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBA51.88Z.00EF.B02.1211271028:bd11/27/2012:svnAppleInc.:pnMacBookAir5,1:pvr1.0:rvnAppleInc.:rnMac-66F35F19FE2A0D05:rvrMacBookAir5,1:cvnAppleInc.:ct10:cvrMac-66F35F19FE2A0D05:
  dmi.product.name: MacBookAir5,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.
  modified.conffile..etc.modprobe.d.alsa.base.conf: [deleted]

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

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


[Touch-packages] [Bug 1535151] Re: black screen with mouse pointer after changing to ubuntu 8 on nVidia GT525M

2016-01-18 Thread wegosh
Sorry in topic I wrote that is ubuntu 8.. Actually should be UNITY8.
Today I gonna install 16.04 as you said and I will try again with
unity8. I also can read that my graphic card "GT 525M" is not supported
yet... but it is a post from like 2013 or something

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

Title:
  black screen with mouse pointer after changing to ubuntu 8 on nVidia
  GT525M

Status in unity8 package in Ubuntu:
  New

Bug description:
  I installed unity8 mir with terminal and after all I can see is black
  screen with a mouse pointer. Graphic card I using is nVidia GT 525M
  with the latest drivers. I'm using Ubuntu 15.10. I hope that this will
  be fixed soon.

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

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


[Touch-packages] [Bug 1521987] Re: Sound is not automatically switched back from headphones to speakers

2016-01-18 Thread Raymond
https://bugzilla.kernel.org/enter_bug.cgi?product=Drivers


Sound/alsa

https://bugs.freedesktop.org/enter_bug.cgi?product=PulseAudio

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

Title:
  Sound is not automatically switched back from headphones to speakers

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  When plugging in headphones, sound output is correctly switched from
  speakers (line out) to the headphones. When the headphones are
  unplugged, sound is NOT automatically switched back to the speakers.

  This bug started happening on my system after I upgraded from 14.04 to
  15.10 so it is a regression. Attached is pulseaudio log of what
  happens when I plug and unplug my headphones.

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

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


[Touch-packages] [Bug 1435923] Re: [greeter/desktop] the password entry is not focussed by default

2016-01-18 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  [greeter/desktop] the password entry is not focussed by default

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Using current vivid in desktop mode (desktop-next live session or
  installed), the greeter screen for password has an entry, but this one
  is not getting the keyboard focus by default, which is annoying since
  you can't directly type your password then

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

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


[Touch-packages] [Bug 1440608] Re: /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels except the latest one

2016-01-18 Thread Robert Euhus
Hi all,

sorry, the apt-auto-removal script attached above contained some debug
echo statements. Which were harmless, but unnessecary.

Testing and thinking a bit more about the problem I have come to the
conclusion, that upon removal of a linux-image-extra package the only
right thing to do is not to touch the list of kernels not for auto-
remove (/etc/apt/apt.conf.d/01autoremove-kernels) at all. We should just
leave it the way it is.

Reasoning: consider the following example:
- We have linux-image{,-extra}-1, linux-image{,-extra}-2 and 
linux-image{,-extra}-3 installed.
- We now remove linux-image-extra-2 ; now we have two possible cases:
  - a) linux-image-2 is not going to be removed, so we should not remove it 
from the list
  - b) linux-image-2 is removed afterwards, in which case it would not matter, 
if we had removed it from the list.
Either way we have no way of knowing what will happen to the linux-image-2 
package, while we are removing the linux-image-extra-2 package. So the only 
sensible thing is imho not touching the list in this case at all.
This is what the updated script in my attachment does now.

Moreover, looking at this case from another perspective, it looks like
it would be a good thing to recreate the list at the time of the removal
of the linux-image-2 package! At this point it would be nice to prevent
linux-image-3 AND linux-image-1 from being auto-removed later on.   
but this would be another bug report, I guess.

Even even updating this list upon installation of an linux-image-extra
package is questionable, since again we have no way of knowing, what the
user had in mind. Of course, the linux-image needs to be installed
(since it is a dependency), but maybe we are just installing all the
-extra packages for all the installed kernels? It probably doesn't do
too much harm in this case, but it is not very useful either.

I think, that this shows again, that executing all of the kernel-post-
install hooks while acting on the rather unrelated -extra package is not
the best way. Since recreating the initrd is the only thing we need,
this is the only thing we should do on installation and removal of the
-extra package!

So I see the updated /etc/kernel/postinst.d/apt-auto-removal script in
the attachment not really as a solution to this problem, but more as a
workaround for the broken linux-image-extra package install- and remove-
hooks.

Regards,
Robert.

** Attachment added: "updated /etc/kernel/postinst.d/apt-auto-removal script to 
exit on removal of image-extra package"
   
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1440608/+attachment/4551880/+files/apt-auto-removal

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

Title:
  /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels
  except the latest one

Status in One Hundred Papercuts:
  Triaged
Status in apt package in Ubuntu:
  Triaged
Status in linux package in Ubuntu:
  Triaged

Bug description:
  After installing a 3rd kernel currently 3.19.0-12-generic, the
  /etc/apt/apt.conf.d/01autoremove-kernels file looks normal listing the
  3.19.0-11-generic and 3.19.0-12-generic with 3.19.0-10-generic listed
  to be autoremoved. But once autoremove is completed the machine
  requests to be rebooted and at that time the /etc/apt/apt.conf.d
  /01autoremove-kernels file lists the 3.19.0-12-generic and
  3.19.0-10-generic kernels. So upon rebooting the 3.19.0-11-generic is
  requested to be autoremoved leaving only one kernel the latest one
  3.19.0-12-generic.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apt 1.0.9.7ubuntu3
  ProcVersionSignature: Ubuntu 3.19.0-12.12-generic 3.19.3
  Uname: Linux 3.19.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17-0ubuntu1
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Sun Apr  5 17:03:01 2015
  InstallationDate: Installed on 2015-04-02 (3 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Beta amd64 (20150401)
  SourcePackage: apt
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1521987] Re: Sound is not automatically switched back from headphones to speakers

2016-01-18 Thread Raymond
Try hdajackretask to change grey jack as not connected, the driver will
create the headphone volume control but only support surround51 instead
of surround71

http://git.alsa-project.org/?p=alsa-
tools.git;a=tree;f=hdajackretask;hb=HEAD

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

Title:
  Sound is not automatically switched back from headphones to speakers

Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  When plugging in headphones, sound output is correctly switched from
  speakers (line out) to the headphones. When the headphones are
  unplugged, sound is NOT automatically switched back to the speakers.

  This bug started happening on my system after I upgraded from 14.04 to
  15.10 so it is a regression. Attached is pulseaudio log of what
  happens when I plug and unplug my headphones.

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

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


[Touch-packages] [Bug 1531517] Re: [regression] pinch to zoom not working reliably

2016-01-18 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

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

Title:
  [regression] pinch to zoom not working reliably

Status in Canonical System Image:
  Fix Committed
Status in Mir:
  Fix Committed
Status in Mir 0.18 series:
  In Progress
Status in mir package in Ubuntu:
  In Progress
Status in qtmir package in Ubuntu:
  Won't Fix

Bug description:
  in the last few days (using rc-proposed 221 on krillin) pinch to zoom
  gestures do not work reliably anymore.

  Appears to be system wide as there have been reports in the follow
  apps that all use PinchArea from QML:

  - Camera: pinch to zoom in viewfinder stops working, pinch to zoom in Photo 
Roll to zoom a photo stops working
  - Gallery: open a photo and pinch to zoom doesn't work
  - Webbrowser: pinch to zoom on a web page not working

  Could be mir/qtmir related

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

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


[Touch-packages] [Bug 1414610] Re: Location indicator switches are off and won't switch on if HERE T were not accepted in the wizard

2016-01-18 Thread Matthew Paul Thomas
(This was reportedly fixed 12 months ago in "Ubuntu RTM", but not in
trunk. Is that an error?)

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

Title:
  Location indicator switches are off and won't switch on if HERE T
  were not accepted in the wizard

Status in indicator-location package in Ubuntu:
  Confirmed
Status in indicator-location package in Ubuntu RTM:
  Fix Released

Bug description:
  Steps to reproduce:

  1. Boot the device and run the wizard
  2. On the Location screen select the first checkbox 'Allow apps to use your 
mobile and Wi-Fi networks to determine your location'
  3. Tap Continue and finish the wizard
  4. Skip the edges demo and open the location indicator

  Expected result:

  Switches are on but HERE T are not shown

  Actual result:

  Switches are off and toggling them on doesn't work (they switch off
  after a few seconds), and HERE T are not shown

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: indicator-location 13.10.0+14.10.20141007-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: armhf
  Date: Mon Jan 26 11:28:18 2015
  InstallationDate: Installed on 2015-01-26 (0 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20150126-030204)
  SourcePackage: indicator-location
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1532868] Re: [Avila] OSK generates random touch events after switching from physical keyboard

2016-01-18 Thread Daniel van Vugt
** Also affects: mir
   Importance: Undecided
   Status: New

** Changed in: mir
   Status: New => Opinion

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

Title:
  [Avila] OSK generates random touch events after switching from
  physical keyboard

Status in The Avila project:
  New
Status in canonical-pocket-desktop:
  New
Status in Mir:
  Opinion
Status in mir package in Ubuntu:
  Opinion
Status in xorg-server package in Ubuntu:
  New

Bug description:
  Steps:
  connect a USB keyboard 
  Use for a bit
  Disconnect keyboard
  try using the onboard keyboard

  Result:
  The keyboard starts producing random touch events as soon as you try to use 
it.

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

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


[Touch-packages] [Bug 1535349] Re: `df /dev/sda1` no longer reports information for /dev/sda1

2016-01-18 Thread Michael Terry
** Changed in: coreutils (Ubuntu)
 Assignee: (unassigned) => Dave Chiluk (chiluk)

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

** Changed in: coreutils (Ubuntu Trusty)
 Assignee: (unassigned) => Dave Chiluk (chiluk)

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

Title:
  `df /dev/sda1` no longer reports information for /dev/sda1

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

Bug description:
  It appears that the latest version of coreutils uploaded to trusty-
  updates has a regression in it.  We have scripting that checks how
  much space we have left on a partition using `df /dev/sda1`. Using
  coreutils 8.21-1ubuntu5.1, we can do the following:

  $ df -h /dev/sda1
  Filesystem  Size  Used Avail Use% Mounted on
  /dev/sda1   9.9G  978M  8.5G  11% /

  This is a valid way of using the tool per the manpage: "If  an
  argument is the absolute file name of a disk device node containing a
  mounted file system, df shows the space available on that file system
  rather than on the file system containing the device node"

  It appears that either 8.21-1ubuntu5.2 or 8.21-1ubuntu5.3 broke this,
  however. We now get output for the udev filesystem that is mounted at
  /dev, instead of the device we pass in.

  $ df -h /dev/sda1 
  Filesystem  Size  Used Avail Use% Mounted on
  udev1.8G  8.0K  1.8G   1% /dev

  This is both a behaviour change, and contravenes the manpage, so it
  would be good to get this fixed.

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

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


[Touch-packages] [Bug 1535199] Re: Opening URL with Browser as default browser opens new windows

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

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

** Branch linked: lp:~osomon/webbrowser-app/single-application

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

Title:
  Opening URL with Browser as default browser opens new windows

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  Using Browser on Unity7/ Xenial, if I open URLs from other apps I get
  new windows with only the respective URL. There's no setting for that.

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

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


[Touch-packages] [Bug 1515977] Re: Nexus4 Shell rotates inappropriately in windowed mode

2016-01-18 Thread John McAleely
** Also affects: avila
   Importance: Undecided
   Status: New

** Changed in: avila
   Status: New => Confirmed

** Changed in: avila
   Importance: Undecided => Critical

** Changed in: avila
Milestone: None => ww04-2016

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

Title:
  Nexus4 Shell rotates inappropriately in windowed mode

Status in The Avila project:
  Confirmed
Status in canonical-pocket-desktop:
  New
Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Install latest rc proposed on a nexus 4.
  Attach a bluetooth mouse - this triggers windowed mode.
  Orient device in landscape
  Open weather app - which is locked portrait in the .desktop file

  Shell rotates to become portrait and there's no way to get it out of
  that mode easily.

  The shell should probably ignore the .desktop setting which says that
  an app is portrait only if it's windowed.

  
  - Desired UX 
  The shell should not rotate automatically when it's in windowed mode. 
  It should just ignore .desktop file orientations since in windowed mode it's 
possible to show a portrait window in landscape mode and vice versa.

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

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


[Touch-packages] [Bug 1382449] Re: indicator location is hidden when toggling location detection with gps disabled

2016-01-18 Thread Matthew Paul Thomas
The indicator menu no longer contains a GPS switch, and per bug 1533837,
System Settings soon won't either. Is there an alternative way of
reproducing this bug?

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

Title:
  indicator location is hidden when toggling location detection with gps
  disabled

Status in indicator-location package in Ubuntu:
  New
Status in platform-api package in Ubuntu:
  New
Status in unity8 package in Ubuntu RTM:
  New

Bug description:
  Using rtm #113 (wiped)

  Reproduce: always

  1. Pull down location indicator
  2. Disable GPS
  3. Toggle location detection

  What happens:
  The location indicator goes away (network indicator is given focus)

  What should have happened:
  The location indicator should not go away

  If the indicator is killed, this has consequences for e.g. Ubuntu
  System Settings, which uses the indicator's org.gtk.Menus interface to
  see if location detection is on or not.

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

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


[Touch-packages] [Bug 1535349] [NEW] `df /dev/sda1` no longer reports information for /dev/sda1

2016-01-18 Thread Dan Watkins
Public bug reported:

It appears that the latest version of coreutils uploaded to trusty-
updates has a regression in it.  We have scripting that checks how much
space we have left on a partition using `df /dev/sda1`. Using coreutils
8.21-1ubuntu5.1, we can do the following:

$ df -h /dev/sda1
Filesystem  Size  Used Avail Use% Mounted on
/dev/sda1   9.9G  978M  8.5G  11% /

This is a valid way of using the tool per the manpage: "If  an argument
is the absolute file name of a disk device node containing a mounted
file system, df shows the space available on that file system rather
than on the file system containing the device node"

It appears that either 8.21-1ubuntu5.2 or 8.21-1ubuntu5.3 broke this,
however. We now get output for the udev filesystem that is mounted at
/dev, instead of the device we pass in.

$ df -h /dev/sda1 
Filesystem  Size  Used Avail Use% Mounted on
udev1.8G  8.0K  1.8G   1% /dev

This is both a behaviour change, and contravenes the manpage, so it
would be good to get this fixed.

** Affects: coreutils (Ubuntu)
 Importance: Undecided
 Assignee: Dave Chiluk (chiluk)
 Status: New

** Affects: coreutils (Ubuntu Trusty)
 Importance: Undecided
 Assignee: Dave Chiluk (chiluk)
 Status: New

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

Title:
  `df /dev/sda1` no longer reports information for /dev/sda1

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

Bug description:
  It appears that the latest version of coreutils uploaded to trusty-
  updates has a regression in it.  We have scripting that checks how
  much space we have left on a partition using `df /dev/sda1`. Using
  coreutils 8.21-1ubuntu5.1, we can do the following:

  $ df -h /dev/sda1
  Filesystem  Size  Used Avail Use% Mounted on
  /dev/sda1   9.9G  978M  8.5G  11% /

  This is a valid way of using the tool per the manpage: "If  an
  argument is the absolute file name of a disk device node containing a
  mounted file system, df shows the space available on that file system
  rather than on the file system containing the device node"

  It appears that either 8.21-1ubuntu5.2 or 8.21-1ubuntu5.3 broke this,
  however. We now get output for the udev filesystem that is mounted at
  /dev, instead of the device we pass in.

  $ df -h /dev/sda1 
  Filesystem  Size  Used Avail Use% Mounted on
  udev1.8G  8.0K  1.8G   1% /dev

  This is both a behaviour change, and contravenes the manpage, so it
  would be good to get this fixed.

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

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


[Touch-packages] [Bug 1507793] Re: Selecting "View terms and conditions HERE" opens browser with error message

2016-01-18 Thread Matthew Paul Thomas
I can't reproduce this problem. But that menu item should not exist in
the first place; I've reported bug 1535353 for that. So I guess the
important question is: Does the same problem happen if you follow the
equivalent link in System Settings?

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

Title:
  Selecting "View terms and conditions HERE" opens browser with error
  message

Status in indicator-location package in Ubuntu:
  Confirmed

Bug description:
  bq 4.5 Ubuntu Edition OTA-7

  Steps to reproduce:
  1. Open location indicator 
  2. Tap "View terms and conditions HERE"

  Expected outcome:
  You see "terms and conditions HERE"

  What happens:
  Browser appears with error message: "It appears you are having trouble 
viewing: file:///custom/vendor/here/location-provider/consent//en_GB.html"

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

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


[Touch-packages] [Bug 1535353] [NEW] Location menu contains "View HERE terms and conditions"

2016-01-18 Thread Matthew Paul Thomas
Public bug reported:

Ubuntu 15.04 r224

1. Open the Location indicator menu.

What you see: A "View HERE terms and conditions" item.

What you should see: No such item.
 (Canonical-only link, unfortunately)


Removing this item might fix bug 1507793, depending on whether it also
occurs in System Settings.

** Affects: indicator-location (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Location menu contains "View HERE terms and conditions"

Status in indicator-location package in Ubuntu:
  New

Bug description:
  Ubuntu 15.04 r224

  1. Open the Location indicator menu.

  What you see: A "View HERE terms and conditions" item.

  What you should see: No such item.
   (Canonical-only link, unfortunately)
  

  Removing this item might fix bug 1507793, depending on whether it also
  occurs in System Settings.

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

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


[Touch-packages] [Bug 1375322] Re: [Security & Privacy/Wizard] Should be possible to accept HERE T after running through the wizard

2016-01-18 Thread Matthew Paul Thomas
The Location menu currently has a "View HERE terms and conditions" item,
but according to the spec, it should not. I've reported bug 1535353 for
that.

** Changed in: indicator-location (Ubuntu)
   Status: New => Invalid

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

Title:
  [Security & Privacy/Wizard] Should be possible to accept HERE T
  after running through the wizard

Status in Ubuntu UX:
  Fix Released
Status in indicator-location package in Ubuntu:
  Invalid
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released

Bug description:
  ubuntu-system-settings 0.3+14.10.20140925-0ubuntu1 [origin: Ubuntu
  RTM], Ubuntu 14.10

  Right now the only place to accept the HERE T is in the setup
  Wizard. If we don't tick the accept box then we'll be permanently
  without the HERE location provider, which means location support will
  be not as good. It needs to be possible to enable this after we've run
  through the wizard, and I also think it should be made more clear what
  the consequences are of not accepting the T

  : "'Nokia HERE terms and conditions'
  should navigate to a child “Nokia HERE” screen displaying the terms
  and conditions..."

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

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


[Touch-packages] [Bug 1375322] Re: [Security & Privacy/Wizard] Should be possible to accept HERE T after running through the wizard

2016-01-18 Thread Matthew Paul Thomas
The "View HERE terms and conditions" indicator menu item both works, and
shouldn't exist (bug 1535353). For both those reasons, marking Invalid
for indicator-location.

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

Title:
  [Security & Privacy/Wizard] Should be possible to accept HERE T
  after running through the wizard

Status in Ubuntu UX:
  Fix Released
Status in indicator-location package in Ubuntu:
  Invalid
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released

Bug description:
  ubuntu-system-settings 0.3+14.10.20140925-0ubuntu1 [origin: Ubuntu
  RTM], Ubuntu 14.10

  Right now the only place to accept the HERE T is in the setup
  Wizard. If we don't tick the accept box then we'll be permanently
  without the HERE location provider, which means location support will
  be not as good. It needs to be possible to enable this after we've run
  through the wizard, and I also think it should be made more clear what
  the consequences are of not accepting the T

  : "'Nokia HERE terms and conditions'
  should navigate to a child “Nokia HERE” screen displaying the terms
  and conditions..."

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

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


[Touch-packages] [Bug 1515977] Re: Nexus4 Shell rotates inappropriately in windowed mode

2016-01-18 Thread Michał Karnicki
I don't have the device, quote from IRC:

(on Avila)

> it's sortof focus
> launch another app
> and it flips shell to landscape
> click on TG, and you're in portrait-shell
> click on the lanscape app, and it stays portrait
> auto-rotating in windowed mode is a bit broken, imho

I can't give an example of a 'landscape app', but whoever has a larger screen 
can probably find one. Essentially:
a) starting a new landscape app will flip to landscape mode (if shell was i 
portrait)
but
b) switching to (focusing) an already open landscape app will not (shell stays 
in portrait)

Generalizing a bit, I also believe orientation requested in the .desktop
file should be ignored (at least to some degree?) in windowed mode.

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

Title:
  Nexus4 Shell rotates inappropriately in windowed mode

Status in The Avila project:
  Confirmed
Status in canonical-pocket-desktop:
  New
Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Install latest rc proposed on a nexus 4.
  Attach a bluetooth mouse - this triggers windowed mode.
  Orient device in landscape
  Open weather app - which is locked portrait in the .desktop file

  Shell rotates to become portrait and there's no way to get it out of
  that mode easily.

  The shell should probably ignore the .desktop setting which says that
  an app is portrait only if it's windowed.

  
  - Desired UX 
  The shell should not rotate automatically when it's in windowed mode. 
  It should just ignore .desktop file orientations since in windowed mode it's 
possible to show a portrait window in landscape mode and vice versa.

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

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


[Touch-packages] [Bug 1535151] Re: black screen with mouse pointer after changing to ubuntu 8 on nVidia GT525M

2016-01-18 Thread dinamic
you are doing it wrong... use 16.04 + open source drivers (nouveau)

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

Title:
  black screen with mouse pointer after changing to ubuntu 8 on nVidia
  GT525M

Status in unity8 package in Ubuntu:
  New

Bug description:
  I installed unity8 mir with terminal and after all I can see is black
  screen with a mouse pointer. Graphic card I using is nVidia GT 525M
  with the latest drivers. I'm using Ubuntu 15.10. I hope that this will
  be fixed soon.

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

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


[Touch-packages] [Bug 1319835] Re: please enable opencl

2016-01-18 Thread Timo Aaltonen
llvm 3.7 won't move to main, 3.8 will once it's available and mesa will
switch to it too

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

Title:
  please enable opencl

Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  Please enable OpenCL in mesa package which is already available in
  debian package and was disabled in 10.1.0-1ubuntu1.

  Thanks.

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

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


[Touch-packages] [Bug 1407928] Re: [phone] Does not auto-switch to available, known WiFi

2016-01-18 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
Milestone: ww02-2016 => ww08-2016

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

Title:
  [phone] Does not auto-switch to available, known WiFi

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

Bug description:
  This might not be the place for this bug, please reassign as
  appropriate.

  I was only able to reproduce this on mako/rtm, krillin/vivid seems to
  behave better (but I do remember the same issue there).

  Steps:
  * connect to a password-protected WiFi network
  * go out of range
  * make sure a GSM connection is established
  * go back in the WiFi range

  Expected:
  * phone connects to the known WiFi automatically

  Current:
  * phone does not connect to WiFi

  Please find attached network-test-session logs from when I toggled
  WiFi and Plane mode to get some data on the issue.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: indicator-network 0.5.1+15.04.20141215~rtm-0ubuntu1
  Uname: Linux 3.4.0-5-mako armv7l
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: armhf
  Date: Tue Jan  6 12:01:55 2015
  InstallationDate: Installed on 2014-12-18 (18 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20141218-163635)
  SourcePackage: indicator-network
  UpgradeStatus: No upgrade log present (probably fresh install)
  indicator-network.log:
   Attempted to unregister path (path[0] = org path[1] = freedesktop) which 
isn't registered
   Attempted to unregister path (path[0] = org path[1] = freedesktop) which 
isn't registered
  upstart.indicator-network.log:
   Attempted to unregister path (path[0] = org path[1] = freedesktop) which 
isn't registered
   Attempted to unregister path (path[0] = org path[1] = freedesktop) which 
isn't registered

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

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


[Touch-packages] [Bug 1521159] Re: "Favorites" bug in contacts after OTA-8

2016-01-18 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
Milestone: ww02-2016 => ww08-2016

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

Title:
  "Favorites" bug in contacts after OTA-8

Status in Canonical System Image:
  Confirmed
Status in address-book-app package in Ubuntu:
  Incomplete

Bug description:
  Before OTA-8 in "Favorites" tab I saw my contacts assigned to that category 
from Google Contacts.
  Status for now: I see no contacts in Favorites tab. Of course I can manually 
assign them again, but before it was synced with my Google account.

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

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


[Touch-packages] [Bug 1522922] Re: Screen flickering in Intel i915 driver

2016-01-18 Thread Alberto Salvia Novella
** Changed in: libdrm (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  Screen flickering in Intel i915 driver

Status in Nouveau Xorg driver:
  Incomplete
Status in libdrm package in Ubuntu:
  Triaged

Bug description:
  There's an upstream bug reported here
  https://bugs.freedesktop.org/show_bug.cgi?id=91393 that causes screen
  flickering when using the Intel i915 builtin driver (at resolutions
  lower than the maximal one).

  I think that it will be fixed in newer kernel versions, but for the
  time being, as reported here
  https://bugs.freedesktop.org/show_bug.cgi?id=91393#c25 (and as
  personally tested) reverting those two commits fixes the problem.

  Would that be possible to release a fixed version for the 4.2.0
  stream?

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-19-generic 4.2.0-19.23
  ProcVersionSignature: Ubuntu 4.2.0-19.23-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  ApportVersion: 2.19.1-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  bettini1378 F pulseaudio
   /dev/snd/controlC1:  bettini1378 F pulseaudio
  CurrentDesktop: KDE
  Date: Fri Dec  4 19:01:00 2015
  HibernationDevice: RESUME=UUID=7ddbc972-3ad6-40de-9313-2bb9395145f9
  InstallationDate: Installed on 2015-05-08 (210 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Dell Inc. Dell Precision M3800
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic 
root=UUID=dd2c7064-53b9-4720-96ab-5e8a3f2db3ea ro noprompt quiet splash 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-19-generic N/A
   linux-backports-modules-4.2.0-19-generic  N/A
   linux-firmware1.149.3
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to wily on 2015-11-07 (26 days ago)
  dmi.bios.date: 08/17/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: Dell Precision M3800
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A10
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd08/17/2015:svnDellInc.:pnDellPrecisionM3800:pvrA10:rvnDellInc.:rnDellPrecisionM3800:rvrA10:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Dell Precision M3800
  dmi.product.version: A10
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1531647] Re: Dependency hell: "libgl1-mesa-dri-lts-vivid : Conflicts: libgl1-mesa-dri"

2016-01-18 Thread Timo Aaltonen
I don't know how you upgraded from 14.04.3 to 15.10 but sounds like you
took a shortcut and those are not supported

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

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

Title:
  Dependency hell: "libgl1-mesa-dri-lts-vivid : Conflicts: libgl1-mesa-
  dri"

Status in mesa package in Ubuntu:
  Invalid

Bug description:
  I'm not entirely sure whether it's package updates or something I did
  that caused this problem, but I'm getting this:

  $ sudo aptitude dist-upgrade
  The following NEW packages will be installed:
libgl1-mesa-dri{a} libllvm3.6v5{ab} libxatracker2{a} xserver-xorg{a} 
xserver-xorg-core{a} xserver-xorg-video-all{a} xserver-xorg-video-ati{a} 
xserver-xorg-video-cirrus{a} xserver-xorg-video-fbdev{a} 
xserver-xorg-video-intel{a} xserver-xorg-video-mach64{a} 
xserver-xorg-video-mga{a} xserver-xorg-video-neomagic{a} 
xserver-xorg-video-nouveau{a} xserver-xorg-video-openchrome{a} 
xserver-xorg-video-qxl{a} xserver-xorg-video-r128{a} 
xserver-xorg-video-radeon{a} xserver-xorg-video-savage{a} 
xserver-xorg-video-siliconmotion{a} xserver-xorg-video-sisusb{a} 
xserver-xorg-video-tdfx{a} xserver-xorg-video-trident{a} 
xserver-xorg-video-vesa{a} xserver-xorg-video-vmware{a} 
  The following packages will be upgraded:
libgbm1 xorg 
  2 packages upgraded, 25 newly installed, 0 to remove and 0 not upgraded.
  Need to get 16.5 MB of archives. After unpacking 139 MB will be used.
  The following packages have unmet dependencies:
   libgl1-mesa-dri-lts-vivid : Conflicts: libgl1-mesa-dri but 11.0.2-1ubuntu4 
is to be installed.
   xserver-xorg-lts-vivid : Conflicts: libgl1-mesa-dri (>= 0~) but 
11.0.2-1ubuntu4 is to be installed.
Conflicts: libxatracker2 (>= 0~) but 
11.0.2-1ubuntu4 is to be installed.
Conflicts: xserver-xorg but 1:7.7+7ubuntu4 is to be 
installed.
Conflicts: xserver-xorg-core (>= 0~) but 
2:1.17.2-1ubuntu9.1 is to be installed.
Conflicts: xserver-xorg-video-all (>= 0~) but 
1:7.7+7ubuntu4 is to be installed.
   libllvm3.6v5 : Conflicts: libllvm3.6 but 1:3.6-2ubuntu1 is installed.
   xserver-xorg-core-lts-vivid : Conflicts: xserver-xorg-core but 
2:1.17.2-1ubuntu9.1 is to be installed.
 Conflicts: xserver-xorg-video-modesetting 
which is a virtual package, provided by:
 - xserver-xorg-core, but 
2:1.17.2-1ubuntu9.1 is to be installed. 
  - xserver-xorg-core, but 2:1.17.2-1ubuntu9.1 is to be installed.
  The following actions will resolve these dependencies: 
  

  Not sure how to proceed.
  Thanks!

  I'm running Ubuntu 15.10.

  $ ubuntu-bug mesa # gives "The problem cannot be reported: \ The
  report belongs to a package that is not installed."

  $ dpkg -l | grep -e mesa -e xorg
  ii  libegl1-mesa-lts-vivid:amd64
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the EGL API -- runtime
  ii  libgl1-mesa-dri-lts-vivid:amd64 
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL API -- DRI modules
  ii  libgl1-mesa-glx-lts-vivid:amd64 
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL API -- GLX runtime
  ii  libglapi-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the GL API -- shared library
  rc  libgles1-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL|ES 1.x API -- runtime
  rc  libgles2-mesa-lts-vivid:amd64   
10.5.9-2ubuntu1~trusty2amd64free implementation of 
the OpenGL|ES 2.x API -- runtime
  ii  libglu1-mesa:amd64  9.0.0-2   
 amd64Mesa OpenGL utility library (GLU)
  ii  libwayland-egl1-mesa-lts-vivid:amd64
10.5.9-2ubuntu1~trusty2amd64implementation of the 
Wayland EGL platform -- runtime
  ii  mesa-utils  
8.2.0-1ubuntu1 amd64Miscellaneous Mesa GL 
utilities
  rc  mir-client-platform-mesa2:amd64 
0.12.1+15.04.20150324-0ubuntu1 amd64Display server for 
Ubuntu - client platform library for Mesa
  ii  python3-xkit0.5.0ubuntu2  
 all  library for the manipulation of 

[Touch-packages] [Bug 1488170] Re: Bluetooth initiated after quitting airplane mode

2016-01-18 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
Milestone: ww02-2016 => ww04-2016

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

Title:
  Bluetooth initiated after quitting airplane mode

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

Bug description:
  This happens despite bluetooth not being enabled when entering
  airplane mode.

  On Aquaris E5 OTA-5.

  Boot with bluetooth disabled
  Turn on flight mode
  turn off flight mode
  Bluetooth gets enabled

  See bug #1421249 for related symptoms

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

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


[Touch-packages] [Bug 1533508] Re: Mobile data doesn't automatically connect after leaving wifi

2016-01-18 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
Milestone: ww02-2016 => ww08-2016

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

Title:
  Mobile data doesn't automatically connect after leaving wifi

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

Bug description:
  The mobile data doesn't automatically connect when leaving wifi.

  Expected Behavior:
  - Leave wifi
  - Mobile data connects automatically

  Observed Behavior:
  - Leave wifi
  - Mobile data is available but user interaction is required to connect. The 
device requires a reboot or airplane mode to be cycled before a connection is 
made.

  
  The attached screenshot shows the network 4G data is available but doesn't 
connect as shown in the indicator.

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

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


[Touch-packages] [Bug 1532355] Re: package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 2

2016-01-18 Thread Alberto Salvia Novella
** Changed in: initramfs-tools (Ubuntu Xenial)
   Status: Confirmed => Triaged

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

Title:
  package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 2

Status in initramfs-tools package in Ubuntu:
  Triaged
Status in initramfs-tools source package in Xenial:
  Triaged

Bug description:
  hung during the boot time , after many retries.. it came back to the
  login prompt

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.3.0-5-generic 4.3.0-5.16
  ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
  Uname: Linux 4.3.0-5-generic i686
  ApportVersion: 2.19.3-0ubuntu2
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  sysadmin   2731 F pulseaudio
   /dev/snd/controlC1:  sysadmin   2731 F pulseaudio
  Date: Thu Jan  7 23:24:23 2016
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  HibernationDevice: RESUME=UUID=0aaeb789-574f-4293-b953-3f84f02fe743
  InstallationDate: Installed on 2015-08-22 (139 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release i386 (20150422)
  Lsusb:
   Bus 003 Device 031: ID 04f3:0111 Elan Microelectronics Corp. 
   Bus 003 Device 002: ID 8087:8000 Intel Corp. 
   Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Dell Inc. Latitude E7440
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.3.0-5-generic 
root=UUID=d3dfa265-52b0-4d9e-88c9-211a0272d159 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 2.02~beta2-32ubuntu1
  SourcePackage: initramfs-tools
  Title: package linux-image-4.3.0-5-generic 4.3.0-5.16 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 2
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to xenial on 2016-01-08 (0 days ago)
  dmi.bios.date: 05/01/2014
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A09
  dmi.board.asset.tag: 562268
  dmi.board.name: 085VV3
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.asset.tag: 562268
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd05/01/2014:svnDellInc.:pnLatitudeE7440:pvr01:rvnDellInc.:rn085VV3:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E7440
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1481871] Re: apt-key del silently fails to delete keys due to limited understanding of GPG key ID formats

2016-01-18 Thread Alberto Salvia Novella
** Changed in: apt (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  apt-key del silently fails to delete keys due to limited understanding
  of GPG key ID formats

Status in apt package in Ubuntu:
  Triaged

Bug description:
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  apt:
    Installed: 1.0.1ubuntu2.10

  apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80
  7A82B743B9B8E46F12C733FA4759FA960E27C0A6

  apt-key export 7A82B743B9B8E46F12C733FA4759FA960E27C0A6 # key is here

  apt-key del  7A82B743B9B8E46F12C733FA4759FA960E27C0A6 # delete key

  apt-key export 7A82B743B9B8E46F12C733FA4759FA960E27C0A6 # key is still
  here

  # Works fine with IDs

  apt-key del  0E27C0A6

  apt-key export 7A82B743B9B8E46F12C733FA4759FA960E27C0A6 # nothing
  exported

  # Works fine with fingerprint on Precise

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

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


[Touch-packages] [Bug 1527106] Re: Fatal exception failure of unattended-upgrade

2016-01-18 Thread ChM
The reported error is fixed by changing the line 814 In file /usr/bin
/unattended-upgrade

subject = _("unattended-upgrades result for '%s': '%s'") % (
host(), res)

into

subject = _("unattended-upgrades result for '{}': '{}'").format(
host(), res)

Unfortunately the % formating is used in many places and changing this
line doesn't definitely fix the problem with unattended-updates.

Worse. Every time unattended-upgrades tries to upgrade packages I end up
with a broken package. I need to use synaptic to fix the broken package.
Not sure if it is properly fixed.

Could someone please fix this issue ? This means people don't get their
packages automatically upgraded.  Doing it manually fails because of the
broken package.

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

Title:
  Fatal exception failure of unattended-upgrade

Status in unattended-upgrades package in Ubuntu:
  Incomplete

Bug description:
  Every morning, since I upgraded to Ubuntu 15.10, I get a mail (root)
  reporting a fatal exception in unatteded-upgrade containing the
  following.

  /etc/cron.daily/apt:
  Exception: unsupported operand type(s) for %: 'bytes' and 'tuple'
  Traceback (most recent call last):
File "/usr/bin/unattended-upgrade", line 1435, in 
  main(options)
File "/usr/bin/unattended-upgrade", line 1382, in main
  pkgs, pkg_install_success, pkgs_kept_back, mem_log, log_content)
File "/usr/bin/unattended-upgrade", line 815, in send_summary_mail
  host(), res)
  TypeError: unsupported operand type(s) for %: 'bytes' and 'tuple'

  As a consequence no automatic updates are performed anymore, including
  security updates. For this reason I flag this as a security
  vulnerability although it is only indirect.

  Manual updates is still working.

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

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


[Touch-packages] [Bug 1440608] Re: /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels except the latest one

2016-01-18 Thread Alberto Salvia Novella
** Changed in: linux (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: apt (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: hundredpapercuts
   Status: Confirmed => Triaged

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

Title:
  /etc/kernel/postinst.d/apt-auto-removal wants to remove all kernels
  except the latest one

Status in One Hundred Papercuts:
  Triaged
Status in apt package in Ubuntu:
  Triaged
Status in linux package in Ubuntu:
  Triaged

Bug description:
  After installing a 3rd kernel currently 3.19.0-12-generic, the
  /etc/apt/apt.conf.d/01autoremove-kernels file looks normal listing the
  3.19.0-11-generic and 3.19.0-12-generic with 3.19.0-10-generic listed
  to be autoremoved. But once autoremove is completed the machine
  requests to be rebooted and at that time the /etc/apt/apt.conf.d
  /01autoremove-kernels file lists the 3.19.0-12-generic and
  3.19.0-10-generic kernels. So upon rebooting the 3.19.0-11-generic is
  requested to be autoremoved leaving only one kernel the latest one
  3.19.0-12-generic.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apt 1.0.9.7ubuntu3
  ProcVersionSignature: Ubuntu 3.19.0-12.12-generic 3.19.3
  Uname: Linux 3.19.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17-0ubuntu1
  Architecture: amd64
  CurrentDesktop: MATE
  Date: Sun Apr  5 17:03:01 2015
  InstallationDate: Installed on 2015-04-02 (3 days ago)
  InstallationMedia: Ubuntu-MATE 15.04 "Vivid Vervet" - Beta amd64 (20150401)
  SourcePackage: apt
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1512475] Re: *** stack smashing detected ***: /usr/bin/python terminated

2016-01-18 Thread Mathieu Bérard
Hello,
This: https://github.com/mopidy/mopidy/issues/1323 ,  suggests that it may be a 
bug in gstreamer0.10

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

Title:
  *** stack smashing detected ***: /usr/bin/python terminated

Status in python2.7 package in Ubuntu:
  Confirmed

Bug description:
  I'm getting this error when running a media scan in mopidy. I guess,
  no matter what any script is doing, python should never crash with a
  smashed stack like this.

  FYI, I'm using mopidy from the apt repo as instructed here:
  https://docs.mopidy.com/en/latest/installation/debian/

  It crashes after scanning loads of files. I'm sorry I can't provide
  more info.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: python2.7 2.7.10-4ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-17.21-generic 4.2.3
  Uname: Linux 4.2.0-17-generic x86_64
  ApportVersion: 2.19.1-0ubuntu4
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Mon Nov  2 21:12:26 2015
  InstallationDate: Installed on 2012-11-11 (1086 days ago)
  InstallationMedia: Xubuntu 12.10 "Quantal Quetzal" - Release amd64 
(20121017.1)
  SourcePackage: python2.7
  UpgradeStatus: Upgraded to wily on 2015-11-01 (1 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python2.7/+bug/1512475/+subscriptions

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


[Touch-packages] [Bug 1534230] Re: LDAP TLS connection stopped working

2016-01-18 Thread Francois Tamone
Hello,

I have a similar problem and the certificate do no use MD5 as signature
algorithm.

Since the MD5 deactivation, my client LDAP authentication is also not
working anymore. I have access to the server and I have checked the
signature algorithm of both the server and CA self-signed certificates:
they are both using

   sha1WithRSAEncryption

and not MD5. Nevertheless the connection si blocked with ssl handshake
failure. I must suspect that MD5 is used somewhere else than into the
certificate, during the setup of the TLS connection, but I am a little
puzzled for the moment.

My clients use Ubuntu 14.03 and the server is OpenLDAP 2.4.40 running on
FreeBSD 10.1.

Cheers.

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

Title:
  LDAP TLS connection stopped working

Status in gnutls26 package in Ubuntu:
  Invalid

Bug description:
  My LDAP authentication stopped working with the error: "The signature
  algorithm is not supported"

  This is GNUTLS Error code: -106
  GNUTLS_E_UNSUPPORTED_SIGNATURE_ALGORITHM

  LDAP search reproduces it:

  $ ldapsearch -H ldaps://xxx.xxx.gov/ -b "OU=xxx" -x -d1
  ldap_url_parse_ext(ldaps://xxx.xxx.gov/)
  ldap_create
  ldap_url_parse_ext(ldaps://xxx.xxx.gov:636/??base)
  ldap_sasl_bind
  ldap_send_initial_request
  ldap_new_connection 1 1 0
  ldap_int_open_connection
  ldap_connect_to_host: TCP xxx.xxx.gov:636
  ldap_new_socket: 3
  ldap_prepare_socket: 3
  ldap_connect_to_host: Trying 128.219.164.41:636
  ldap_pvt_connect: fd: 3 tm: -1 async: 0
  TLS: can't connect: The signature algorithm is not supported..
  ldap_err2string
  ldap_sasl_bind(SIMPLE): Can't contact LDAP server (-1)

  It looks like the SHA1 support was removed from gnutls26...

  Other packages:
  ldap-utils:
  Version: 2.4.31-1+nmu2ubuntu8.2

  libsasl2-2:
  Version: 2.1.25.dfsg1-17build1

  libldap-2.4-2:
  Version: 2.4.31-1+nmu2ubuntu8.2

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgnutls26 2.12.23-12ubuntu2.4
  ProcVersionSignature: Ubuntu 3.13.0-75.119-generic 3.13.11-ckt32
  Uname: Linux 3.13.0-75-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Jan 14 11:38:36 2016
  InstallationDate: Installed on 2014-10-08 (462 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  SourcePackage: gnutls26
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1535241] Re: AdaptivePageLayout first example is badly broken

2016-01-18 Thread Tim Peeters
It broke in staging r1768.

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread ChristianEhrhardt
The only reference I found to get_tasks_recursive seems far away in
cgmanager
(http://changelogs.ubuntu.com/changelogs/pool/main/c/cgmanager/cgmanager_0.32-4ubuntu1.1/changelog
and https://linuxcontainers.org/it/cgmanager/manpages/man1/cgm.1.html)

Yet I found that my Xenial Test system didn't show the issue, while Michael 
before mentioned it did for him.
I realized that this Xenial System had no cgmanager installed.

So I installed full lxd (which is what usually brings cgmanager to your
system) and e voila I was able to reproduce the issue on Xenial as well
now.

The output is slightly different (more and repeated on Xenial)
Trusty
call to get_tasks_recursive failed: Invalid arguments received in reply

Xenial
call to remove-on-empty (freezer:0) failed: invalid request
call to get_tasks_recursive failed: Invalid arguments received in reply
call to get_tasks_recursive failed: Invalid arguments received in reply


I removed lxd and all its dependencies again and only installed cgmanager on 
the Xenial system. This pulls in libcgmanager0 and libnih-dbus1 as well, but 
nothing else.
With those installed the issue does not yet appear, so it seems to need more of 
these packages to actually trigger.
I tried to separate the lxd dependencies and found that libpam-cgm, likely to 
hook from pam (which is what su uses) into cgmanager.

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

Title:
  'call to get_tasks_recursive failed' errors from su

Status in shadow package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 14.04 all of a sudden I'm seeing these two error messages coming up 
every time I use su -, whether in a script or interactive shell:
  call to remove-on-empty (freezer:0) failed: invalid request
  call to get_tasks_recursive failed: Invalid arguments received in reply

  Example and how to reproduce:

  root@localhost:~# su - test "echo hello"
  call to remove-on-empty (freezer:0) failed: invalid request
  -su: echo hello: No such file or directory
  call to get_tasks_recursive failed: Invalid arguments received in reply
  call to get_tasks_recursive failed: Invalid arguments received in reply
  root@localhost:~# su - test
  call to remove-on-empty (freezer:0) failed: invalid request
  test@localhost:~$ 

  
  This only seems to affect Ubuntu 14.04

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

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


[Touch-packages] [Bug 1441095] Re: novatel: improve probing for Dell branded modems

2016-01-18 Thread Ara Pulido
** Changed in: oem-priority
   Status: Fix Committed => Fix Released

** Changed in: oem-priority/trusty
   Status: Fix Committed => Fix Released

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

Title:
  novatel: improve probing for Dell branded modems

Status in Libmbim:
  Fix Released
Status in ModemManager:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in OEM Priority Project trusty series:
  Fix Released
Status in libmbim package in Ubuntu:
  Fix Released
Status in modemmanager package in Ubuntu:
  Fix Released
Status in network-manager package in Ubuntu:
  Fix Released
Status in libmbim source package in Trusty:
  Fix Released
Status in modemmanager source package in Trusty:
  Fix Released
Status in network-manager source package in Trusty:
  Fix Released

Bug description:
  [Impact]

   * The users can not use the WWAN of Sierra DW5809e (EM7305) or Sierra
  DW5811e (EM7455) to connect to Internet.

  [Test Case]

   * Insert the WWAN of Sierra DW5809e (EM7305) or Sierra DW5811e
  (EM7455).

   * Insert the SIM, boot the Ubuntu system, and connect to Internet by
  NetworkManager.

  [Regression Potential]

   * No trivial regression so far.

  [Other Info]

   * There is no gateway information in Network Manager. (See the picture in 
comment #74)
* Some ISPs like TW Mobile in Taiwan don't need the gateway to connect to 
Internet.
* Some ISPs like Chunghwa Telecom in Taiwan do need the gateway to connect 
to Internet.
* We need to see the gateway information in Network Manager to cover all 
ISPs.

  Dell rebrands modems from different vendors, including Novatel, Sierra
  and Ericsson. Until now we defaulted to the Novatel plugin when a Dell
  device was found, but then we're breaking newer MBIM Sierra Dell-
  branded modems, as we don't have MBIM support in the Novatel plugin.

  So, we should try to improve the probing in the Novatel, Sierra and
  MBM plugins, so that they probe also Dell devices, and we'll then try
  to match via AT-probing which plugin should be handling the Dell
  device.

  https://bugs.freedesktop.org/show_bug.cgi?id=86713

  Could we backport this patch  into trusty? Thanks!

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

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


[Touch-packages] [Bug 1405084] Re: Scrolling takes 5 seconds holding down arrow key at 100% zoom

2016-01-18 Thread Christopher M. Penalver
robegue, in order to test the latest userspace, could you please test
http://cdimage.ubuntu.com/daily-live/current/ and advise to the results?

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

Title:
  Scrolling takes 5 seconds holding down arrow key at 100% zoom

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At 100% zoom, I count about 5 seconds to scroll from first to second
  page by holding the arrow-down key. CPU is not occupied by any other
  program.

  At 180% zoom, I count about 18 seconds to scroll from first to second
  page by holding the arrow-down key.

  At 180% zoom, a two-pages text-only document takes less than 2 seconds
  to scroll from first to second page by holding the arrow-down key.

  It becomes faster (not much) when the same image covers a smaller
  area.

  From settings, I've tried to maximize the graphics memory, and to
  enable/disable hardware acceleration and antialiasing, but it doesn't
  help.

  The problem persists in LibreOffice 4.3.5-rc2 from ubuntu PPA.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libreoffice-writer 1:4.2.7-0ubuntu2
  ProcVersionSignature: Ubuntu 3.16.0-29.39~14.04.1-generic 3.16.7-ckt2
  Uname: Linux 3.16.0-29-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Mon Dec 22 18:37:43 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-06-03 (202 days ago)
  InstallationMedia: Kubuntu 14.04 LTS "Trusty Tahr" - Release amd64 
(20140416.1)
  SourcePackage: libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)
  ---
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 14.04
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-06-03 (591 days ago)
  InstallationMedia: Kubuntu 14.04 LTS "Trusty Tahr" - Release amd64 
(20140416.1)
  Package: xorg 1:7.7+1ubuntu8.1
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.2.0-21.25~14.04.1-generic 4.2.6
  Tags:  trusty
  Uname: Linux 4.2.0-21-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers
  _MarkForUpload: True
  ---
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: kwin
  CurrentDesktop: KDE
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroRelease: Ubuntu 14.04
  DistroVariant: kubuntu
  DkmsStatus:
   vboxhost, 5.0.10, 3.19.0-39-generic, x86_64: installed
   vboxhost, 5.0.10, 4.2.0-21-generic, x86_64: installed
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: No
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a26] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Dell Device [1028:060a]
  InstallationDate: Installed on 2014-06-03 (592 days ago)
  InstallationMedia: Kubuntu 14.04 LTS "Trusty Tahr" - Release amd64 
(20140416.1)
  MachineType: Dell Inc. XPS13 9333
  Package: xorg 1:7.7+1ubuntu8.1
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-21-generic root=/dev/sda3 
ro quiet nosplash intel_pstate=enable pcie_aspm=force i915.enable_rc6=0 
i915.lvds_downclock=0 i915.enable_fbc=0 i915.semaphores=1
  ProcVersionSignature: Ubuntu 4.2.0-21.25~14.04.1-generic 4.2.6
  Tags:  trusty kubuntu
  Uname: Linux 4.2.0-21-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers
  _MarkForUpload: True
  dmi.bios.date: 03/19/2014
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A04
  dmi.board.name: 099TN4
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnDellInc.:bvrA04:bd03/19/2014:svnDellInc.:pnXPS139333:pvr:rvnDellInc.:rn099TN4:rvrA00:cvnDellInc.:ct8:cvr0.1:
  dmi.product.name: XPS13 9333
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.4
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Fri Jan  1 11:41:13 2016
  xserver.configfile: None
  xserver.errors:

  xserver.logfile: /var/log/Xorg.0.log
  

[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~fboucault/ubuntu-filemanager-
app/migrate_toolkit_13

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  In Progress
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1535200] Re: History is always empty

2016-01-18 Thread Olivier Tilloy
*** This bug is a duplicate of bug 1532135 ***
https://bugs.launchpad.net/bugs/1532135

** This bug has been marked a duplicate of bug 1532135
   Value type enums are not exposed to QML with Qt5.5

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

Title:
  History is always empty

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  My history in Browser is always empty - running on Unity7/ Xenial.

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

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


[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Florian Boucault
** Also affects: tagger
   Importance: Undecided
   Status: New

** Also affects: task-app
   Importance: Undecided
   Status: New

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  New
Status in Tagger:
  New
Status in task-app:
  New
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1534377] Re: cron does not read $PATH

2016-01-18 Thread Humphrey van Polanen Petel
If cron doesn't read $PATH then the only things  cron recognizes is
inbuilt commands.

Okay, I (now) know how to work around it, but I think it is *seriously*
bad publicity for linux systems.

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

Title:
  cron does not read $PATH

Status in cron package in Ubuntu:
  New

Bug description:
  
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

  Gnome _schedule command preview=/usr/local/bin/bup && tail -f
  /var/mail/humphrey >~/Desktop/bup-log

  /usr/local/bin contains bin

  log contains
  --
  Content-Type: text/plain; charset=ANSI_X3.4-1968
  X-Cron-Env: 

[Touch-packages] [Bug 1535241] Re: AdaptivePageLayout first example is badly broken

2016-01-18 Thread Florian Boucault
** Description changed:

  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.
+ 
+ Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
+ 1.3.1795+16.04.20160106-0ubuntu1

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1337873] Re: ifupdown initialization problems caused by race condition

2016-01-18 Thread Dariusz Gadomski
Since I've added the fix to bug 1532722 and after several days of
testing I did not observe any other issues on Trusty and Wily I'm
tagging this as verified.

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

Title:
  ifupdown initialization problems caused by race condition

Status in ifenslave package in Ubuntu:
  Fix Released
Status in ifupdown package in Ubuntu:
  Fix Released
Status in ifenslave source package in Precise:
  Won't Fix
Status in ifupdown source package in Precise:
  Won't Fix
Status in ifenslave source package in Trusty:
  Fix Committed
Status in ifupdown source package in Trusty:
  Fix Committed
Status in ifenslave source package in Vivid:
  Fix Released
Status in ifupdown source package in Vivid:
  Won't Fix
Status in ifenslave source package in Wily:
  Fix Released
Status in ifupdown source package in Wily:
  Fix Committed
Status in ifupdown package in Debian:
  New

Bug description:
  [Impact]

   * Lack of proper synchronization in ifupdown causes a race condition
  resulting in occasional incorrect network interface initialization
  (e.g. in bonding case - wrong bonding settings, network unavailable
  because slave<->master interfaces initialization order was wrong

   * This is very annoying in case of large deployments (e.g. when
  bringing up 1000 machines it is almost guaranteed that at least a few
  of them will end up with network down).

   * It has been fixed by introducing hierarchical and per-interface
  locking mechanism ensuring the right order (along with the correct
  order in the /e/n/interfaces file) of initialization

  [Test Case]

   1. Create a VM with bonding configured with at least 2 slave interfaces.
   2. Reboot.
   3. If all interfaces are up - go to 2.

  [Regression Potential]

   * This change has been introduced upstream in Debian.
   * It does not require any config changes to existing installations.

  [Other Info]

  Original bug description:

  * please consider my bonding examples are using eth1 and eth2 as slave
   interfaces.

  ifupdown some race conditions explained bellow. ifenslave does not
  behave well with sysv networking and upstart network-interface scripts
  running together.

  
  case 1)
  (a) ifup eth0 (b) ifup -a for eth0
  -
  1-1. Lock ifstate.lock file.
    1-1. Wait for locking ifstate.lock
    file.
  1-2. Read ifstate file to check
   the target NIC.
  1-3. close(=release) ifstate.lock
   file.
  1-4. Judge that the target NIC
   isn't processed.
    1-2. Read ifstate file to check
     the target NIC.
    1-3. close(=release) ifstate.lock
     file.
    1-4. Judge that the target NIC
     isn't processed.
  2. Lock and update ifstate file.
     Release the lock.
    2. Lock and update ifstate file.
   Release the lock.
  !!!

  to be explained

  !!!
  case 2)
  (a) ifenslave of eth0  (b) ifenslave of eth0
  --
  3. Execute ifenslave of eth0.  3. Execute ifenslave of eth0.
  4. Link down the target NIC.
  5. Write NIC id to
     /sys/class/net/bond0/bonding
     /slaves then NIC gets up
    4. Link down the target NIC.
    5. Fails to write NIC id to
   /sys/class/net/bond0/bonding/
   slaves it is already written.
  !!!

  #

   My setup:

  root@provisioned:~# cat /etc/modprobe.d/bonding.conf
  alias bond0 bonding options bonding mode=1 arp_interval=2000

  Both, /etc/init.d/networking and upstart network-interface begin
  enabled.

   Beginning:

  root@provisioned:~# cat /etc/network/interfaces
  # /etc/network/interfaces

  auto lo
  iface lo inet loopback

  auto eth0
  iface eth0 inet dhcp

  I'm able to boot with both scripts (networking and network-interface
  enabled) with no problem. I can also boot with only "networking"
  script enabled:

  ---
  root@provisioned:~# initctl list | grep network
  network-interface stop/waiting
  networking start/running
  ---

  OR only the script "network-interface" enabled:

  ---
  root@provisioned:~# initctl list | grep network
  network-interface (eth2) start/running
  network-interface (lo) start/running
  network-interface (eth0) start/running
  network-interface (eth1) 

[Touch-packages] [Bug 1431211] Re: [desktop] camera-app preview screen twisted after maximizing the preview screen

2016-01-18 Thread Ara Pulido
** Changed in: oem-priority
   Status: Incomplete => Won't Fix

** Changed in: oem-priority/trusty
   Status: New => Won't Fix

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

Title:
  [desktop] camera-app preview screen twisted after maximizing the
  preview screen

Status in camera-app:
  Won't Fix
Status in OEM Priority Project:
  Won't Fix
Status in OEM Priority Project trusty series:
  Won't Fix
Status in camera-app package in Ubuntu:
  Won't Fix

Bug description:
  The preview screen of camera-app twisted after maximizing the preview screen.
  It has failure-rate, should be reproduced in 5 times of retries.
  version: 2.9.1+14.04.20130508-0ubuntu1

  ---
  ApportVersion: 2.14.1-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: Unity
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-stella-datong150206-trusty-amd64-20150214-1
  DistroRelease: Ubuntu 14.04
  InstallationDate: Installed on 2015-02-17 (23 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20150214-07:47
  NonfreeKernelModules: wl fglrx
  Package: camera-app 2.9.1+14.04.20140508-0ubuntu1 [origin: Canonical]
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
  Tags: third-party-packages trusty
  Uname: Linux 3.13.0-45-generic x86_64
  UnreportableReason: This is not an official Ubuntu package. Please remove any 
third party package and try again.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1431211/+subscriptions

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


[Touch-packages] [Bug 1535241] [NEW] AdaptivePageLayout first example is badly broken

2016-01-18 Thread Florian Boucault
Public bug reported:

First example in documentation of AdaptivePageLayout
(http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
shown at once.

Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
1.3.1795+16.04.20160106-0ubuntu1

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

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1535241] Re: AdaptivePageLayout first example is badly broken

2016-01-18 Thread Tim Peeters
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided => Critical

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

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1532553] [NEW] /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Ubuntu 15.10, amd64
systemd-225-1ubuntu9

/etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO is
bad for a couple of reasons.

1) This is not where it's supposed to be
2) Locally modified (non-dpkg managed) scripts under /usr is bad

I have not been able to find anywhere documenting this as a decided
change, so it seems like a bug to me.

Please let me know if you need more info from me

/Thomas

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

-- 
/etc/halt.local has become /usr/sbin/halt.local
https://bugs.launchpad.net/bugs/1532553
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to systemd 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 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Florian Boucault
** Changed in: tagger
   Status: New => In Progress

** Changed in: tagger
 Assignee: (unassigned) => Florian Boucault (fboucault)

** Changed in: reminders-app
   Status: New => Fix Committed

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  In Progress
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Florian Boucault
** Changed in: task-app
   Status: New => In Progress

** Changed in: task-app
 Assignee: (unassigned) => Florian Boucault (fboucault)

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  In Progress
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread ChristianEhrhardt
I can use cgm to do some getrecursive calls without issue, like this:
cgm gettasksrecursive freezer

With that I think my quick debugging has reached its end, but lets
assign to the proper components now that we know.

** Package changed: shadow (Ubuntu) => cgmanager (Ubuntu)

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

Title:
  'call to get_tasks_recursive failed' errors from su

Status in cgmanager package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 14.04 all of a sudden I'm seeing these two error messages coming up 
every time I use su -, whether in a script or interactive shell:
  call to remove-on-empty (freezer:0) failed: invalid request
  call to get_tasks_recursive failed: Invalid arguments received in reply

  Example and how to reproduce:

  root@localhost:~# su - test "echo hello"
  call to remove-on-empty (freezer:0) failed: invalid request
  -su: echo hello: No such file or directory
  call to get_tasks_recursive failed: Invalid arguments received in reply
  call to get_tasks_recursive failed: Invalid arguments received in reply
  root@localhost:~# su - test
  call to remove-on-empty (freezer:0) failed: invalid request
  test@localhost:~$ 

  
  This only seems to affect Ubuntu 14.04

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

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


[Touch-packages] [Bug 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration fali

2016-01-18 Thread Martin Pitt
This has been dropped entirely after 14.04, but is still an issue in
14.04 LTS.

** Changed in: udev (Ubuntu)
   Status: New => Fix Released

** Package changed: udev (Ubuntu) => systemd (Ubuntu)

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

** Summary changed:

- Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes 
configuration fali
+ Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes 
configuration failure

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

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

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Triaged

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /sbin/udevadm.upgrade /bin/udevadm

  
  This bug is quite important as when update-initramfs -u fails the system can 
be left in an unbootable state.

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

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


[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~fboucault/task-app/migrate_toolkit_13

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  In Progress
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Thomas M Steenholdt
You're absolutely right - Changed to systemd

** Package changed: transmission (Ubuntu) => systemd (Ubuntu)

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

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  New

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1535255] [NEW] Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration fali

2016-01-18 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
seems to have a typo. In the snippet below the check is on the file in
the /sbin dir and the copy is on the file in /bin. The latter doesn't
exist.

if [ -x /sbin/udevadm.upgrade ]; then
copy_exec /bin/udevadm.upgrade /bin/udevadm

This is what is should be from build 175

if [ -x /sbin/udevadm.upgrade ]; then
copy_exec /sbin/udevadm.upgrade /bin/udevadm


This bug is quite important as when update-initramfs -u fails the system can be 
left in an unbootable state.

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: Fix Released

-- 
Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes 
configuration fali
https://bugs.launchpad.net/bugs/1535255
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to systemd 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 1535255] Re: Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes configuration failure

2016-01-18 Thread wayne
Sorry, yes, I'm running 14.04 LTS.

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

Title:
  Inconsistency in /usr/share/initramfs-tools/hooks/udev file causes
  configuration failure

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd source package in Trusty:
  Triaged

Bug description:
  I'm running udev build 205 and /usr/share/initramfs-tools/hooks/udev
  seems to have a typo. In the snippet below the check is on the file in
  the /sbin dir and the copy is on the file in /bin. The latter doesn't
  exist.

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /bin/udevadm.upgrade /bin/udevadm

  This is what is should be from build 175

  if [ -x /sbin/udevadm.upgrade ]; then
  copy_exec /sbin/udevadm.upgrade /bin/udevadm

  
  This bug is quite important as when update-initramfs -u fails the system can 
be left in an unbootable state.

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

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


[Touch-packages] [Bug 1526407] Re: Bitrate settings not respected

2016-01-18 Thread Ugo Riboni
** Changed in: libhybris (Ubuntu)
   Importance: Undecided => High

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

Title:
  Bitrate settings not respected

Status in Canonical System Image:
  New
Status in libhybris package in Ubuntu:
  Confirmed

Bug description:
  Setting the bitrate with android_recorder_setParameters("video-param-
  encoding-bitrate", value) does not seem to have any effect on the
  actual bitrate of the video that is recorded.

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

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


[Touch-packages] [Bug 1518035] Re: package libjpeg-progs 1:9a-2ubuntu1 failed to install/upgrade: trying to overwrite '/usr/share/man/man1/djpeg.1.gz', which is also in package libjpeg-turbo-progs 1.3

2016-01-18 Thread Alberto Salvia Novella
** Changed in: libjpeg9 (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  package libjpeg-progs 1:9a-2ubuntu1 failed to install/upgrade: trying
  to overwrite '/usr/share/man/man1/djpeg.1.gz', which is also in
  package libjpeg-turbo-progs 1.3.0-0ubuntu2

Status in libjpeg-turbo package in Ubuntu:
  Fix Released
Status in libjpeg9 package in Ubuntu:
  Invalid
Status in libjpeg9 package in Debian:
  New

Bug description:
  just upgrading

  ProblemType: Package
  DistroRelease: Ubuntu 16.04
  Package: libjpeg-progs 1:9a-2ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-19.23-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  ApportVersion: 2.19.2-0ubuntu6
  Architecture: amd64
  Date: Mon Nov 16 15:38:22 2015
  Dependencies:
   gcc-5-base 5.2.1-23ubuntu1
   libc6 2.21-0ubuntu4
   libgcc1 1:5.2.1-23ubuntu1
   libjpeg9 1:9a-2ubuntu1
   multiarch-support 2.21-0ubuntu4
  DuplicateSignature:
   Unpacking libjpeg-progs (1:9a-2ubuntu1) over (8c-2ubuntu8) ...
   dpkg: error processing archive 
/var/cache/apt/archives/libjpeg-progs_1%3a9a-2ubuntu1_amd64.deb (--unpack):
trying to overwrite '/usr/share/man/man1/djpeg.1.gz', which is also in 
package libjpeg-turbo-progs 1.3.0-0ubuntu2
  ErrorMessage: trying to overwrite '/usr/share/man/man1/djpeg.1.gz', which is 
also in package libjpeg-turbo-progs 1.3.0-0ubuntu2
  InstallationDate: Installed on 2014-02-24 (633 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  RelatedPackageVersions:
   dpkg 1.18.3ubuntu1
   apt  1.0.10.2ubuntu1
  SourcePackage: libjpeg9
  Title: package libjpeg-progs 1:9a-2ubuntu1 failed to install/upgrade: trying 
to overwrite '/usr/share/man/man1/djpeg.1.gz', which is also in package 
libjpeg-turbo-progs 1.3.0-0ubuntu2
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread ChristianEhrhardt
I see the same on 14.04, even without "-" on the su.
The test also lacked the -c for the command, and "-" would need to be at the 
end or specified as "-l".
Also we might execute something that doesn't add output, to easen debugging 
(/bin/true)

Anyway - that just refines the simple test, the issue is there as
reported.

Simplified test:
su testuser -c "/bin/true"

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

Title:
  'call to get_tasks_recursive failed' errors from su

Status in shadow package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 14.04 all of a sudden I'm seeing these two error messages coming up 
every time I use su -, whether in a script or interactive shell:
  call to remove-on-empty (freezer:0) failed: invalid request
  call to get_tasks_recursive failed: Invalid arguments received in reply

  Example and how to reproduce:

  root@localhost:~# su - test "echo hello"
  call to remove-on-empty (freezer:0) failed: invalid request
  -su: echo hello: No such file or directory
  call to get_tasks_recursive failed: Invalid arguments received in reply
  call to get_tasks_recursive failed: Invalid arguments received in reply
  root@localhost:~# su - test
  call to remove-on-empty (freezer:0) failed: invalid request
  test@localhost:~$ 

  
  This only seems to affect Ubuntu 14.04

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

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


[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~fboucault/tagger/migrate_toolkit_13

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Tagger:
  In Progress
Status in task-app:
  In Progress
Status in Ubuntu Calculator App:
  Fix Committed
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu Document Viewer App:
  Fix Released
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Released
Status in Weather:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Committed
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Committed
Status in gallery-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Committed
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Martin Pitt
This is indeed configurable with --with-rc-local-script-path-stop=.
However, I want to make sure we actually point it to a sensible value. I
can't find any reference to halt.local in Debian/Ubuntu. It seems
neither sysvinit nor upstart ever supported that file, so I don't think
there's any backwards compatibility issue here. http://www.linux-
tutorial.info/modules.php?name=ManPage=7=init.d talks about
/etc/init.d/halt.local, but that looks SuSE specific.

Where did you actually see /etc/halt.local documented? Thanks!

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

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

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1534090] Re: 'call to get_tasks_recursive failed' errors from su

2016-01-18 Thread ChristianEhrhardt
cgmanager is a service you can reach via dbus for cgroup management.
It is used in this case via libpam-cgm to "Create cgroups for user login 
sessions"

I stopped the service and reran it in verbose mode
sudo /sbin/cgmanager -m name=systemd -v

Then in another console I tried to trigger the issue again with
su testuser -c "/bin/true"

On the triggering task I still get:
su -m testuser -c "/bin/true"   


call to remove-on-empty (freezer:1) failed: invalid request 


call to get_tasks_recursive failed: Invalid arguments received in reply

On the verbose log I get:
Connection from private client
ListControllers: Client fd is: 6 (pid=21503, uid=0, gid=1000)   


MovePid: Client fd is: 6 (pid=21503, uid=0, gid=1000)   


21503 moved to freezer:/ by 21503's request 


Create: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Created /run/cgmanager/fs/freezer/user/paelzer for 21503 (0:1000)
cgmanager_create: returning 0; existed is 1
MovePid: Client fd is: 6 (pid=21503, uid=0, gid=1000)
21503 moved to freezer:user/paelzer by 21503's request
Create: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Created /run/cgmanager/fs/freezer/user/paelzer/0 for 21503 (0:1000)
cgmanager_create: returning 0; existed is 1
Create: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Created /run/cgmanager/fs/freezer/user/paelzer/1 for 21503 (0:1000)
cgmanager_create: returning 0; existed is -1
Chown: Client fd is: 6 (pid=21503, uid=0, gid=1000)
RemoveOnEmpty: Client fd is: 6 (pid=21503, uid=0, gid=1000)
cgmanager: remove-on-empty request for pre-mounted controller
MovePid: Client fd is: 6 (pid=21503, uid=0, gid=1000)
21503 moved to freezer:1 by 21503's request
Disconnected from private client
Connection from private client
ListControllers: Client fd is: 6 (pid=21503, uid=0, gid=1000)
MovePid: Client fd is: 6 (pid=21503, uid=0, gid=1000)
21503 moved to freezer:/ by 21503's request
ListChildren: Client fd is: 6 (pid=21503, uid=0, gid=1000)
GetTasksRecursive: Client fd is: 6 (pid=21503, uid=0, gid=1000)
GetTasksRecursive: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Remove: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Removed /run/cgmanager/fs/freezer/user/paelzer/1 for 21503 (0:1000)
GetTasksRecursive: Client fd is: 6 (pid=21503, uid=0, gid=1000)
Disconnected from private client

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

Title:
  'call to get_tasks_recursive failed' errors from su

Status in cgmanager package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 14.04 all of a sudden I'm seeing these two error messages coming up 
every time I use su -, whether in a script or interactive shell:
  call to remove-on-empty (freezer:0) failed: invalid request
  call to get_tasks_recursive failed: Invalid arguments received in reply

  Example and how to reproduce:

  root@localhost:~# su - test "echo hello"
  call to remove-on-empty (freezer:0) failed: invalid request
  -su: echo hello: No such file or directory
  call to get_tasks_recursive failed: Invalid arguments received in reply
  call to get_tasks_recursive failed: Invalid arguments received in reply
  root@localhost:~# su - test
  call to remove-on-empty (freezer:0) failed: invalid request
  test@localhost:~$ 

  
  This only seems to affect Ubuntu 14.04

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

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


[Touch-packages] [Bug 1534835] Re: Reset device isn't reseting password

2016-01-18 Thread Jean-Baptiste Lallement
** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

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

Title:
  Reset device isn't reseting password

Status in Canonical System Image:
  New
Status in system-image package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  STEPS:
  1. Flash the phone with latest rc-proposed
  2. run through the wizzard setting a pin
  3. run through the edge demo
  4. Open system settings
  5. Select Reset Device
  6. Then Reset Everything
  7. Run through the wizard again

  EXPECTED:
  I expect to be asked for a pin/password again

  ACTUAL:
  I am not asked for pin/password

  Also I can't remember being asked for my wifi password again either
  But will double check this Monday Morning.

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

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


[Touch-packages] [Bug 1529932] Re: X session crashes with EQ overflowing

2016-01-18 Thread hardhu
Sorry for the late reply, I haven't had a crash for five days until today, so I 
couldn't properly reply to your questions.
This mornig crash however has been a little different, since the monitor 
flashed two times going black, but then the graphical session resumed 
correctly, I am typing right now from Firefox.
In /var/log/Xorg.0.log I have nothing relevant, but in dmesg I have the 
following lines (I don't know if they are related to a kernel call trace):

[ 6243.620093] radeon :01:00.0: ring 0 stalled for more than 10332msec
[ 6243.620109] radeon :01:00.0: GPU lockup (current fence id 
0x0745 last fence id 0x0746 on ring 0)
[ 6243.806159] Failed to wait GUI idle while programming pipes. Bad things 
might happen.
[ 6243.809265] radeon :01:00.0: Saved 43 dwords of commands on ring 0.
[ 6243.809284] radeon :01:00.0: (r300_asic_reset:425) RBBM_STATUS=0x80010140
[ 6244.310399] radeon :01:00.0: (r300_asic_reset:444) RBBM_STATUS=0x80010140
[ 6244.807516] radeon :01:00.0: (r300_asic_reset:456) RBBM_STATUS=0x0140
[ 6244.807556] radeon :01:00.0: GPU reset succeed
[ 6244.807562] radeon :01:00.0: GPU reset succeeded, trying to resume
[ 6244.822004] radeon :01:00.0: 880035b85400 unpin not necessary

So this time it seems that GPU reset succeeded fine. I don't have nothing in 
/var/crash related to what happened.
I am glad to provide more details to discover a possible call trace if you 
suggest me how to do.

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

Title:
  X session crashes with EQ overflowing

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  On my very old laptop, that is equipped with an Ati Mobility Radeon
  X700, sometimes (and, sadly, I have to use this word, because I found
  no regularity pattern for the occurrence of this bug) randomly the
  desktop session locks, that is I can only move the mouse pointer, but
  I cannot interact anymore with the desktop session. I am forced to
  login trough ssh from another pc and to restart the laptop.

  In Xorg.0.log I found these lines that are, in my opinion, related to
  the crash:

  (EE) [mi] EQ overflowing.  Additional events will be discarded until existing 
events are processed.
  (EE) 
  (EE) Backtrace:
  (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x5608e56a768e]
  (EE) 1: /usr/bin/X (mieqEnqueue+0x253) [0x5608e5689373]
  (EE) 2: /usr/bin/X (QueuePointerEvents+0x52) [0x5608e5563152]
  (EE) 3: /usr/bin/X (xf86PostMotionEvent+0xd6) [0x5608e559a026]
  (EE) 4: /usr/lib/xorg/modules/input/synaptics_drv.so (0x7f5e497b3000+0x5322) 
[0x7f5e497b8322]
  (EE) 5: /usr/lib/xorg/modules/input/synaptics_drv.so (0x7f5e497b3000+0x73d2) 
[0x7f5e497ba3d2]
  (EE) 6: /usr/bin/X (0x5608e54f3000+0x96ac8) [0x5608e5589ac8]
  (EE) 7: /usr/bin/X (0x5608e54f3000+0xbfc92) [0x5608e55b2c92]
  (EE) 8: /lib/x86_64-linux-gnu/libc.so.6 (0x7f5e522c9000+0x352f0) 
[0x7f5e522fe2f0]
  (EE) 9: /lib/x86_64-linux-gnu/libc.so.6 (ioctl+0x7) [0x7f5e523c60b7]
  (EE) 10: /usr/lib/x86_64-linux-gnu/libdrm.so.2 (drmIoctl+0x28) 
[0x7f5e536ada08]
  (EE) 11: /usr/lib/x86_64-linux-gnu/libdrm.so.2 (drmCommandWrite+0x1b) 
[0x7f5e536b06cb]
  (EE) 12: /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1 (0x7f5e4e3ad000+0x19c9) 
[0x7f5e4e3ae9c9]
  (EE) 13: /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1 (0x7f5e4e3ad000+0x1c0c) 
[0x7f5e4e3aec0c]
  (EE) 14: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7f5e4e5b9000+0x26236) 
[0x7f5e4e5df236]
  (EE) 15: /usr/lib/xorg/modules/libexa.so (0x7f5e4d973000+0x569b) 
[0x7f5e4d97869b]
  (EE) 16: /usr/lib/xorg/modules/libexa.so (0x7f5e4d973000+0x7e8f) 
[0x7f5e4d97ae8f]
  (EE) 17: /usr/lib/xorg/modules/libexa.so (0x7f5e4d973000+0x11953) 
[0x7f5e4d984953]
  (EE) 18: /usr/lib/xorg/modules/libexa.so (0x7f5e4d973000+0xe770) 
[0x7f5e4d981770]
  (EE) 19: /usr/bin/X (0x5608e54f3000+0x13ca51) [0x5608e562fa51]
  (EE) 20: /usr/lib/xorg/modules/libexa.so (0x7f5e4d973000+0xf74f) 
[0x7f5e4d98274f]
  (EE) 21: /usr/bin/X (0x5608e54f3000+0x1332a2) [0x5608e56262a2]
  (EE) 22: /usr/bin/X (0x5608e54f3000+0x5818f) [0x5608e554b18f]
  (EE) 23: /usr/bin/X (0x5608e54f3000+0x5c34b) [0x5608e554f34b]
  (EE) 24: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xf0) 
[0x7f5e522e9a40]
  (EE) 25: /usr/bin/X (_start+0x29) [0x5608e55396c9]
  (EE) 
  (EE) [mi] These backtraces from mieqEnqueue may point to a culprit higher up 
the stack.
  (EE) [mi] mieq is *NOT* the cause.  It is a victim.
  (EE) [mi] EQ overflow continuing.  100 events have been dropped.
  (EE) 
  (EE) Backtrace:
  (EE) 0: /usr/bin/X (xorg_backtrace+0x4e) [0x5608e56a768e]
  (EE) 1: /usr/bin/X (QueuePointerEvents+0x52) [0x5608e5563152]
  (EE) 2: /usr/bin/X (xf86PostMotionEvent+0xd6) [0x5608e559a026]
  (EE) 3: /usr/lib/xorg/modules/input/synaptics_drv.so (0x7f5e497b3000+0x5322) 
[0x7f5e497b8322]
  (EE) 4: 

[Touch-packages] [Bug 1471230] Re: ping got confused about IP-adress after host unreachable

2016-01-18 Thread Vee Tornado
*** This bug is a duplicate of bug 1405232 ***
https://bugs.launchpad.net/bugs/1405232

** This bug has been marked a duplicate of bug 1405232
   ping reports wrong IP responding under certain conditions

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

Title:
  ping got confused about IP-adress after host unreachable

Status in iputils package in Ubuntu:
  Confirmed

Bug description:
  I tried pinging an IP address on an internal network. My IP is
  10.0.0.95, and I'm trying to ping 10.0.0.96. Here's what it looked
  like:

  $ ping 10.0.0.96
  PING 10.0.0.96 (10.0.0.96) 56(84) bytes of data.
  From 10.0.0.95 icmp_seq=1 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=2 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=3 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=4 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=5 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=6 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=7 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=8 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=9 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=10 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=11 Destination Host Unreachable
  From 10.0.0.95 icmp_seq=12 Destination Host Unreachable
  64 bytes from 10.0.0.95: icmp_seq=13 ttl=64 time=5.01ms
  64 bytes from 10.0.0.95: icmp_seq=14 ttl=64 time=0.658ms
  64 bytes from 10.0.0.95: icmp_seq=15 ttl=64 time=0.459ms
  64 bytes from 10.0.0.95: icmp_seq=16 ttl=64 time=0.432ms
  64 bytes from 10.0.0.95: icmp_seq=17 ttl=64 time=0.437ms
  64 bytes from 10.0.0.95: icmp_seq=18 ttl=64 time=0.348ms
  64 bytes from 10.0.0.95: icmp_seq=19 ttl=64 time=0.485ms
  64 bytes from 10.0.0.95: icmp_seq=20 ttl=64 time=0.529ms
  64 bytes from 10.0.0.95: icmp_seq=21 ttl=64 time=0.459ms
  [snip]
  ^C
  --- 10.0.0.96 ping statistics ---
  47 packets transmitted, 35 received, +12 errors, 25% packet loss, time 46069ms
  rtt min/avg/max/mdev = 0.348/2.693/70.753/11.712 ms, pipe 3
  $ ping 10.0.0.96
  PING 10.0.0.96 (10.0.0.96) 56(84) bytes of data.
  64 bytes from 10.0.0.96: icmp_seq=1 ttl=64 time=0.324ms
  64 bytes from 10.0.0.96: icmp_seq=2 ttl=64 time=0.405ms
  64 bytes from 10.0.0.96: icmp_seq=1 ttl=64 time=0.357ms
  etc...

  
  So on the initial run, ping claims it got a ping reply from 10.0.0.95, which 
isn't the address I'm pinging. It's my host, and it's normal to get the initial 
ICMP "Destination Host Unreachable" messages from the local IP when ARP fails. 
I almost immediately reran ping, and now the host was up from the start, and 
see responses coming from the actual host that I'm pinging.

  Looking at the times, the ping replies appear to actually come from
  10.0.0.96, or at least some other remote host, based on the time
  values. If I ping 10.0.0.95 (my own IP), I'm seeing time values of
  0.040ms or thereabouts, so an order of magnitude faster.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: iputils-ping 3:20121221-4ubuntu1.1
  Uname: Linux 3.17.1-031701-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Jul  3 15:16:40 2015
  InstallationDate: Installed on 2014-10-09 (266 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  SourcePackage: iputils
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1355077] Re: ua_location_service_create_controller() crashes

2016-01-18 Thread Charles Kerr
** Summary changed:

- indicator-location-service crashed with SIGABRT in 
internal::ToBackend::exit_module()
+ ua_location_service_create_controller() crashes

** Changed in: platform-api (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  ua_location_service_create_controller() crashes

Status in indicator-location package in Ubuntu:
  Confirmed
Status in platform-api package in Ubuntu:
  Triaged

Bug description:
  gilles@gilles-MSI-Notebook-VR610:~$ lsb_release -rd
  Description:  Ubuntu Utopic Unicorn (development branch)
  Release:  14.10
  gilles@gilles-MSI-Notebook-VR610:~$ apt-cache policy indicator-location
  indicator-location:
Installé : 13.10.0+14.10.20140718-0ubuntu1
Candidat : 13.10.0+14.10.20140718-0ubuntu1
   Table de version :
   *** 13.10.0+14.10.20140718-0ubuntu1 0
  500 http://fr.archive.ubuntu.com/ubuntu/ utopic/universe amd64 
Packages
  100 /var/lib/dpkg/status

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: indicator-location 13.10.0+14.10.20140718-0ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-5.10-generic 3.16.0-rc6
  Uname: Linux 3.16.0-5-generic x86_64
  ApportVersion: 2.14.5-0ubuntu4
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Mon Aug 11 11:10:29 2014
  ExecutablePath: 
/usr/lib/x86_64-linux-gnu/indicator-location/indicator-location-service
  InstallationDate: Installed on 2013-11-11 (272 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Alpha amd64 (20131110)
  ProcCmdline: 
/usr/lib/x86_64-linux-gnu/indicator-location/indicator-location-service
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=fr_FR
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: indicator-location
  StacktraceTop:
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libubuntu_application_api.so.2
   ua_location_service_create_controller () from 
/usr/lib/x86_64-linux-gnu/libubuntu_application_api.so.2
   UbuntuAppLocController::UbuntuAppLocController() ()
   main ()
  SystemImageInfo:
   current build number: 0
   device name: 
   channel: daily
   last update: Unknown
  Title: indicator-location-service crashed with SIGABRT in 
ua_location_service_create_controller()
  UpgradeStatus: Upgraded to utopic on 2014-06-11 (60 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/indicator-location/+bug/1355077/+subscriptions

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Thomas M Steenholdt
Alright - Got your comments late, let me try that out

Are these targets documented somewhere, so it becomes clear exactly what
is started when?

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Thomas M Steenholdt
systemd.special(7) explains what they are, but if I could somehow get
the correlation between targets, that'd be cool

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1535377] Re: /usr/bin/unity8-dash:11:std::__shared_count:std::__shared_ptr:std::shared_ptr:ResultsMap::rebuild:scopes_ng::ResultsModel::addUpdateResults

2016-01-18 Thread Pawel Stolowski
** Changed in: unity-scopes-shell (Ubuntu)
   Status: New => Triaged

** Changed in: unity-scopes-shell (Ubuntu)
 Assignee: (unassigned) => Pawel Stolowski (stolowski)

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

Title:
  
/usr/bin/unity8-dash:11:std::__shared_count:std::__shared_ptr:std::shared_ptr:ResultsMap::rebuild:scopes_ng::ResultsModel::addUpdateResults

Status in unity-scopes-shell package in Ubuntu:
  Triaged
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  8.11+16.04.20151208.1-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/17821ac9570b7bdcb4408aecef2d63a35e709dd9
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1535377/+subscriptions

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


[Touch-packages] [Bug 1535297] Re: Unity8 crashes on session logout on desktop

2016-01-18 Thread Albert Astals Cid
Could you get us a gdb backtrace?

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

Title:
  Unity8 crashes on session logout on desktop

Status in unity8 package in Ubuntu:
  New

Bug description:
  This is happening on a fresh setup, which is basically:
  Xenial 17Jan iso + unity8-desktop-session-mir package

  When I logout, I get a black screen. Turns out unity8 is crashing with
  a "double free or linked list corruption"

  Please find unity8.log attached

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Michael Biebl
man bootup(7)

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1531913] Re: Fallback image not shown when no image specified

2016-01-18 Thread Michi Henning
If the card requires an image and the scope doesn't provide one, the
fallback should be shown.

If the scope does specify an image, but it doesn't load, the fallback
should be shown too.

That makes the most sense to me.

** Changed in: unity-scopes-api (Ubuntu)
 Assignee: (unassigned) => Michi Henning (michihenning)

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

** Changed in: unity-scopes-api (Ubuntu)
   Importance: Undecided => High

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

Title:
  Fallback image not shown when no image specified

Status in Canonical System Image:
  Confirmed
Status in unity-scopes-api package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Opinion

Bug description:
  In fixing bug #1520631 in unity-scope-click, as the store server will
  start allowing uploads with no icon specified, it was discovered that
  Unity8 is not showing the fallback when we do not include the artwork.
  Instead, it is only shown if we specify invalid artwork. This seems
  wrong, and instead I would think the fallback would be displayed
  whenever no other artwork is provided.

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

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


[Touch-packages] [Bug 1535297] Re: Unity8 crashes on session logout on desktop

2016-01-18 Thread Albert Astals Cid
I wonder if it's the same as
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1521138 or not

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

Title:
  Unity8 crashes on session logout on desktop

Status in unity8 package in Ubuntu:
  New

Bug description:
  This is happening on a fresh setup, which is basically:
  Xenial 17Jan iso + unity8-desktop-session-mir package

  When I logout, I get a black screen. Turns out unity8 is crashing with
  a "double free or linked list corruption"

  Please find unity8.log attached

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

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


[Touch-packages] [Bug 1533432] Re: Scrolling through song list in music scope is very laggy

2016-01-18 Thread Albert Astals Cid
Not sure if it's something blocking the UI, the CPU usage of unity8-dash
goes to 99.99% according to top so it may be we're doing to much stuff
in the main thread?

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

Title:
  Scrolling through song list in music scope is very laggy

Status in unity-scope-mediascanner package in Ubuntu:
  Triaged
Status in unity8 package in Ubuntu:
  New

Bug description:
  Untar the attached archive into the Music folder. Go to the  music
  scope and navigate through the tracks tab. Scrolling up and down the
  song list is very slow and jerky, and thumbnails take a long time to
  appear even after the cache is warm.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-mediascanner/+bug/1533432/+subscriptions

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Michael Biebl
fwiw, halt-local.service was hooked up in final.target and contains the
following:

[Unit]
Description=/usr/sbin/halt.local Compatibility
ConditionFileIsExecutable=/usr/sbin/halt.local
DefaultDependencies=no
After=shutdown.target
Before=final.target

To apply that to my /etc/systemd/system/foo.service example:


[Unit]
Description=Run service on shutdown
DefaultDependencies=no
After=shutdown.target
Before=final.target

[Service]
ExecStart=/bin/true

[Install]
WantedBy=final.target

Then run "systemctl enable foo.service" and you should be set.

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1535349] Re: `df /dev/sda1` no longer reports information for /dev/sda1

2016-01-18 Thread Dave Chiluk
** Tags added: regression-update sts

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

Title:
  `df /dev/sda1` no longer reports information for /dev/sda1

Status in coreutils package in Ubuntu:
  New
Status in coreutils source package in Trusty:
  Confirmed

Bug description:
  It appears that the latest version of coreutils uploaded to trusty-
  updates has a regression in it.  We have scripting that checks how
  much space we have left on a partition using `df /dev/sda1`. Using
  coreutils 8.21-1ubuntu5.1, we can do the following:

  $ df -h /dev/sda1
  Filesystem  Size  Used Avail Use% Mounted on
  /dev/sda1   9.9G  978M  8.5G  11% /

  This is a valid way of using the tool per the manpage: "If  an
  argument is the absolute file name of a disk device node containing a
  mounted file system, df shows the space available on that file system
  rather than on the file system containing the device node"

  It appears that either 8.21-1ubuntu5.2 or 8.21-1ubuntu5.3 broke this,
  however. We now get output for the udev filesystem that is mounted at
  /dev, instead of the device we pass in.

  $ df -h /dev/sda1 
  Filesystem  Size  Used Avail Use% Mounted on
  udev1.8G  8.0K  1.8G   1% /dev

  This is both a behaviour change, and contravenes the manpage, so it
  would be good to get this fixed.

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

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


[Touch-packages] [Bug 1419237] Re: indicator-location-service crashed with SIGABRT in ua_location_service_create_controller()

2016-01-18 Thread Charles Kerr
*** This bug is a duplicate of bug 1355077 ***
https://bugs.launchpad.net/bugs/1355077

** This bug has been marked a duplicate of bug 1355077
   indicator-location-service crashed with SIGABRT in 
internal::ToBackend::exit_module()

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

Title:
  indicator-location-service crashed with SIGABRT in
  ua_location_service_create_controller()

Status in platform-api package in Ubuntu:
  New

Bug description:
  During the boot sequence, i see the destop, just a little bit seconds, 
  and the crash window appears, i click on it and check NO REPEAT
  that's all ! :-)
  Ol

  ProblemType: Crash
  DistroRelease: Ubuntu 15.04
  Package: indicator-location 13.10.0+14.10.20141007-0ubuntu1
  ProcVersionSignature: Ubuntu 3.18.0-12.13-generic 3.18.4
  Uname: Linux 3.18.0-12-generic i686
  ApportVersion: 2.16-0ubuntu1
  Architecture: i386
  CrashCounter: 1
  CurrentDesktop: XFCE
  Date: Sat Feb  7 07:25:25 2015
  ExecutablePath: 
/usr/lib/i386-linux-gnu/indicator-location/indicator-location-service
  InstallationDate: Installed on 2015-02-01 (5 days ago)
  InstallationMedia: Ubuntu-Desktop-Next 15.04 "Vivid Vervet" - Alpha i386 
(20150120)
  ProcCmdline: 
/usr/lib/i386-linux-gnu/indicator-location/indicator-location-service
  Signal: 6
  SourcePackage: indicator-location
  StacktraceTop:
   ?? () from /usr/lib/i386-linux-gnu/libubuntu_application_api.so.2
   ?? () from /usr/lib/i386-linux-gnu/libubuntu_application_api.so.2
   ?? () from /usr/lib/i386-linux-gnu/libubuntu_application_api.so.2
   ua_location_service_create_controller () from 
/usr/lib/i386-linux-gnu/libubuntu_application_api.so.2
   UbuntuAppLocController::UbuntuAppLocController() ()
  SystemImageInfo:
   current build number: 0
   device name: 
   channel: daily
   last update: Unknown
  Title: indicator-location-service crashed with SIGABRT in 
ua_location_service_create_controller()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip disk lpadmin plugdev sambashare sudo
  upstart.indicator-location.log:
   Ubuntu Platform API: Unable to find module configuration file -- Aborting
   Ubuntu Platform API: Unable to find module configuration file -- Aborting
   Ubuntu Platform API: Unable to find module configuration file -- Aborting

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

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


[Touch-packages] [Bug 1535241] Re: AdaptivePageLayout first example is badly broken

2016-01-18 Thread Launchpad Bug Tracker
** Branch linked: lp:~zeller-benjamin/ubuntu-ui-toolkit/fix-lp1535241

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

Title:
  AdaptivePageLayout first example is badly broken

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

Bug description:
  First example in documentation of AdaptivePageLayout
  (http://pastebin.ubuntu.com/14566033/) breaks: all pages seem to be
  shown at once.

  Reproduced on Xenial with qtdeclarative5-ubuntu-ui-toolkit-plugin
  1.3.1795+16.04.20160106-0ubuntu1

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Michael Biebl
Or make that
WantedBy=final.target, if you want to execute it during late shutdown.

See man systemd.special(7)

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Michael Biebl
Add a native service file and hook it up in the shutdown.target. That's
the cleanest solution.

/etc/systemd/system/foo.service
[Unit]
Description=Run service on shutdown

[Service]
ExecStart=/bin/true

[Install]
WantedBy=shutdown.target

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1535377] Re: /usr/bin/unity8-dash:11:std::__shared_count:std::__shared_ptr:std::shared_ptr:ResultsMap::rebuild:scopes_ng::ResultsModel::addUpdateResults

2016-01-18 Thread Albert Astals Cid
** Also affects: unity-scopes-shell (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: unity8 (Ubuntu)
   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/1535377

Title:
  
/usr/bin/unity8-dash:11:std::__shared_count:std::__shared_ptr:std::shared_ptr:ResultsMap::rebuild:scopes_ng::ResultsModel::addUpdateResults

Status in unity-scopes-shell package in Ubuntu:
  Triaged
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  8.11+16.04.20151208.1-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/17821ac9570b7bdcb4408aecef2d63a35e709dd9
  contains more details.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1535377/+subscriptions

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


[Touch-packages] [Bug 1532553] Re: /etc/halt.local has become /usr/sbin/halt.local

2016-01-18 Thread Thomas M Steenholdt
Fair enough...

As mentioned earlier, this may be from a systemv time and perhaps from
Red Hat, I'm not sure. I do know that /usr/sbin/halt.local works in both
Wily and in debian 8 out of the box, the file is just located in dpkg-
managed space, which makes no sense.

Look, I'm not actually arguing that we keep this particular file, but I
think we need to keep the functionality. /lib/systemd/system-shutdown/
seems to provide that functionality, but again, this is in dpkg-managed
territory. Is there a user managed folder that is handled the same?

If I need to create my own unit-file, I'd be happy to, but I've had a
hard time figuring out the proper requiremends/dependencies/befores and
afters that will make this the very last thing to run, just before the
system prints "system halted". This is where the need for further
documentation comes in (or perhaps I'm just too dense to find it)

If you can help point me to somewhere that will allow me to figure our
the correct dependencies etc for a new unit-file, I'll be happy to let
this go :-)

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

Title:
  /etc/halt.local has become /usr/sbin/halt.local

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10, amd64
  systemd-225-1ubuntu9

  /etc/halt.local seems to have moved to /usr/sbin/halt.local which IMO
  is bad for a couple of reasons.

  1) This is not where it's supposed to be
  2) Locally modified (non-dpkg managed) scripts under /usr is bad

  I have not been able to find anywhere documenting this as a decided
  change, so it seems like a bug to me.

  Please let me know if you need more info from me

  /Thomas

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

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


[Touch-packages] [Bug 1517830] Re: In landscape mode the music listing jumps when touched

2016-01-18 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Albert Astals Cid (aacid)

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

** Branch linked: lp:~aacid/unity8/playButtonFocus

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

Title:
  In landscape mode the music listing jumps when touched

Status in unity-scope-mediascanner package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  STEPS:
  1. Flash flo with lastes stable image
  2. Transfer some music via mtp
  3. In the music scope tap on an album you transferred
  4. Layout on the right is play in music app then the list of tracks
  5. Tap on a tracks play button

  EXPECTED:
  I expect the layout to not jump and remove the play in music app button

  ACTUAL:
  When you tap on the play button for a track to play it in the scope the whole 
track list jumps.  In portrait/phone mode it is more important to jump as on 
the whole you can only see the first track, whoever in landscape mode you can 
see most of the album listed so there is no need for it to jump up.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-mediascanner/+bug/1517830/+subscriptions

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


[Touch-packages] [Bug 1507793] Re: Selecting "View terms and conditions HERE" opens browser with error message

2016-01-18 Thread Michal Predotka
I tried just now on bq 4.5 with OTA 8.5 installed and indeed, the problem is 
gone. Now I see a webpage with links to privacy policy and service terms.
When I follow the link in Settings, the same text is displayed but not in the 
browser, just as a Page in System Settings.

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

Title:
  Selecting "View terms and conditions HERE" opens browser with error
  message

Status in indicator-location package in Ubuntu:
  Confirmed

Bug description:
  bq 4.5 Ubuntu Edition OTA-7

  Steps to reproduce:
  1. Open location indicator 
  2. Tap "View terms and conditions HERE"

  Expected outcome:
  You see "terms and conditions HERE"

  What happens:
  Browser appears with error message: "It appears you are having trouble 
viewing: file:///custom/vendor/here/location-provider/consent//en_GB.html"

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

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


  1   2   3   >