[Touch-packages] [Bug 1468195] Re: action_id() does not return the correct value

2015-06-25 Thread Pawel Stolowski
The problem is in your scope code. The constructor of your Action class
needs to take widget id and action id arguments (you get them both in
Scope::perform_action() where Action is constructed), and it *needs* to
pass them down to ActivationQueryBase constructor. Only then
ActivationQueryBase::action_id() will give meaningful value.

There is no need to have action_id_ member attribute in your Action
class.


** Changed in: unity-scopes-api (Ubuntu)
   Status: New = Invalid

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

Title:
  action_id() does not return the correct value

Status in unity-scopes-api package in Ubuntu:
  Invalid

Bug description:
  I have tried to implement my Action class like. I got the correct
  action_id in the constructor. However, I did not get the value in
  activate(). According to the API description:

  /**
  \brief Get the action identifier for this activation request handler.

  Action identifier is empty when using the
  unity::scopes::ActivationQueryBase(Result const result, ActionMetadata 
const metadata) constructor.

  \return The action identifier passed to the constructor of this object.
  */
  std::string action_id() const;

  
  It seems that it is the reverse. Action indentifier is not empty during the 
construction. The output is like:

  
  perform_action called
  action id:  rated
  action id in activate:  
  review:  
  rating:  -1
  activate called
  

  My test code is at: git clone
  https://gitcafe.com/ubuntu/scopetemplates_rating_input.git

  
  #include scope/action.h
  #include unity/scopes/ActivationResponse.h
  #include unity/UnityExceptions.h

  #include QString
  #include QDebug

  #include iostream

  namespace sc = unity::scopes;
  using namespace std;

  QString qstr_(std::string str)
  {
  return QString::fromStdString(str);
  }

  Action::Action(const unity::scopes::Result result,
 const unity::scopes::ActionMetadata metadata,
 std::string const action_id)
  : sc::ActivationQueryBase(result, metadata),
action_id_(action_id)
  {
  qDebug()  action id:   qstr_(action_id_);
  }

  sc::ActivationResponse Action::activate()
  {
  qDebug()  action id in activate:   qstr_(action_id());

  QString review = QString(%1).arg(qstr_(action_metadata().scope_data().

get_dict()[review].get_string()));

  double rating = action_metadata().scope_data().
get_dict()[rating].get_double();

  qDebug()  review:   review;
  qDebug()  rating:   rating;

  sc::ActivationResponse done(sc::ActivationResponse::ShowDash);
  cerr  activate called  endl;
  return done;
  }

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-api/+bug/1468195/+subscriptions

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


[Touch-packages] [Bug 1468645] [NEW] Buttons and other widgets are too small for comfortable touch usage

2015-06-25 Thread Daniel van Vugt
Public bug reported:

On Ubuntu phones, buttons and other widgets are too small for
comfortable touch usage.

This is mostly about buttons like those seen in the shutdown dialog.
They feel too small (they are in fact 5.5mm high) to be able to reliably
hit with a finger, and that's on arale which has a large screen.

But our GUI elements vary in size a lot and we got it right in the many
menus/list views. There, each row is a nice comfortable height (10mm).

Compare to Android 5.1.1 on a hammerhead where buttons/list items are
12-15mm high, the larger size is more comfortable and faster to use.

** Affects: ubuntu-ux
 Importance: Undecided
 Status: New

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

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

** Description changed:

  On Ubuntu phones, buttons and other widgets are too small for
  comfortable touch usage.
  
  This is mostly about buttons like those seen in the shutdown dialog.
  They feel too small (they are in fact 5.5mm high) to be able to reliably
  hit with a finger, and that's on arale which has a large screen.
  
  But our GUI elements vary in size a lot and we got it right in the many
  menus/list views. There, each row is a nice comfortable height (10mm).
  
  Compare to Android 5.1.1 on a hammerhead where buttons/list items are
- 12-15mm high, and the larger size is more comfortable and faster to use.
+ 12-15mm high, the larger size is more comfortable and faster to use.

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

Title:
  Buttons and other widgets are too small for comfortable touch usage

Status in Ubuntu UX bugs:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  On Ubuntu phones, buttons and other widgets are too small for
  comfortable touch usage.

  This is mostly about buttons like those seen in the shutdown dialog.
  They feel too small (they are in fact 5.5mm high) to be able to
  reliably hit with a finger, and that's on arale which has a large
  screen.

  But our GUI elements vary in size a lot and we got it right in the
  many menus/list views. There, each row is a nice comfortable height
  (10mm).

  Compare to Android 5.1.1 on a hammerhead where buttons/list items are
  12-15mm high, the larger size is more comfortable and faster to use.

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

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


[Touch-packages] [Bug 1392176] Comment bridged from LTC Bugzilla

2015-06-25 Thread bugproxy
--- Comment From preeti.mur...@in.ibm.com 2015-06-16 04:50 EDT---
Hi,

An update on this:

We are looking at solving this issue in either of the following two
ways:

1. Have a config option where user specifies the controllers to mount.
2. Have the patch that mounts cgroups for containers in systemd-shim,
rather than systemd.

Regards
Preeti U Murthy

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

Title:
  mounts cgroups unconditionally which causes undesired effects with cpu
  hotplug

Status in cgmanager package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  == Comment: #0 - Preeti U. Murthy preeti.mur...@in.ibm.com - 2014-10-20 
04:40:12 ==
  ---Problem Description---
  Systemd mounts cgroups explicitly every boot. Since the user had no say in 
it, undesired consequences are observed in reaction to cpu hotplug operations.  
Here is how.

  Systemd moves the tasks to the cgroup mounted by it. This cgroup 
automatically becomes the child of the root cgroup which is present by default. 
The children cgroups are not expected to remember their configured cpusets 
after hotplug operations in the kernel. Hence when cpus are taken offline and 
brought back online they are no longer used for load balancing of tasks and 
hence remain unused. 
 This is an undesired consequence because the user had not even asked for 
cgroups to be mounted, yet is not able to use the full capacity of the system.

  Only when the user himself creates cgroup hierarchies, should he be
  exposed to the side effects of cpu hotplug on cpusets. Else all online
  cpus must be made available to him which is not happening since
  systemd mounts cgroups on every boot.

  Hence please revert this feature or provide an explaination as to why this is 
being done.
   
  ---uname output---
  Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = Tuleta 8286-42A 
   ---Debugger---
  A debugger was configured, however the system did not enter into the debugger
   
  ---Steps to Reproduce---
   $ taskset -p $$
  $ 0-127
  $ echo 0  /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
  $ echo 1  /sys/devices/system/cpu/cpu7/online
  $ taskset -p $$
  $ 0-6,8-127
   
   
  Userspace tool common name: systemd 
   
  The userspace tool has the following bit modes: 64-bit 

  Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb

  Userspace tool obtained from project website:   208-8ubuntu8

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

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


[Touch-packages] [Bug 1453438] Re: nouveau + Qt apps = corrupt fonts

2015-06-25 Thread dinamic
and, the last update fixed it (new mesa?). i'm no longer affected by
this particular bug

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

Title:
  nouveau + Qt apps = corrupt fonts

Status in Mir:
  Invalid
Status in qtbase-opensource-src package in Ubuntu:
  New
Status in qtdeclarative-opensource-src package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Fonts are not rendered correctly, screenshot here

  http://i.imgur.com/J4vQ5rT.jpg
  http://i.imgur.com/gxF1Me0.jpg

  Ubuntu Next 15.10 AMD64 / Nvidia 8600GT
  also the TTY fonts are messed up

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

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


[Touch-packages] [Bug 1436723] Re: Regression: Nested LXC is broken on Vivid

2015-06-25 Thread Vincent Ladeuil
@Chris: Thanks !

I had to implement a different scheme not using nested containers but
still requiring lxc-1.1.2.

I'll give nested containers another shot asap.

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

Title:
  Regression: Nested LXC is broken on Vivid

Status in lxc package in Ubuntu:
  Confirmed

Bug description:
  The nested LXC functionality seems to be broken on Vivid, at least
  with the following setup:

  Vivid (Host) - Trusty (Outer LXC) - Trusty (Inner LXC)

  What happens:

  The Inner LXC start command fails when trying to start with: 
http://pastebin.ubuntu.com/10682639/
  ( 631 cgroup error?  100 cgroups with this name already running seems to be 
the revelant error message).

  What is expected to happen:

  The inner LXC start command is expected to succeed and result in a
  running nested container.

  Steps to reproduce:

  - Install vivid server daily, update.
  - sudo apt-get install lxc
  - sudo lxc-create -n outer -t ubuntu -- --release trusty 
--mirror=http://ch.archive.ubuntu.com/ubuntu -b $USER
  - sudo su
  - echo 'lxc.aa_profile = lxc-container-default-with-nesting'  
/var/lib/lxc/outer/config
  - exit
  - sudo lxc-start -n outer
  - (SSH to outer)
  - sudo apt-get update  sudo apt-get dist-upgrade
  - sudo apt-get install lxc
  - sudo lxc-create -n inner -t ubuntu -- --release trusty 
--mirror=http://ch.archive.ubuntu.com/ubuntu -b $USER
  - sudo lxc-start -n inner

  Fails with: http://pastebin.ubuntu.com/10682639/
  Enabling debug logs for this action yields: 
http://pastebin.ubuntu.com/10682658/

  Control: The exact same scenario works on trusty and utopic. Tested by
  spinning up server installs (from isos) in KVMs and verifying
  manually.

  Any further log or information available on request, including KVM
  images demonstrating the problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lxc 1.1.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-10.10-generic 3.19.2
  Uname: Linux 3.19.0-10-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.16.2-0ubuntu4
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Mar 26 08:43:56 2015
  InstallationDate: Installed on 2015-03-12 (13 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Alpha amd64 (20150306)
  SourcePackage: lxc
  UpgradeStatus: No upgrade log present (probably fresh install)
  defaults.conf:
   lxc.network.type = veth
   lxc.network.link = lxcbr0
   lxc.network.flags = up
   lxc.network.hwaddr = 00:16:3e:xx:xx:xx

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

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


[Touch-packages] [Bug 1284389] Re: rtkit-daemon does not terminate at computer shutdown

2015-06-25 Thread Ken Sharp
Does it need to?

** Changed in: rtkit (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  rtkit-daemon does not terminate at computer shutdown

Status in rtkit package in Ubuntu:
  Incomplete

Bug description:
  This was after a fresh install. I get errors for 
  1 - rtkit
  2 -  at-spi2-core
  3 -xinit

  The same error that all these did not shutdown properly

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: rtkit 0.10-2ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Mon Feb 24 16:54:25 2014
  ExecutablePath: /usr/lib/rtkit/rtkit-daemon
  InstallationDate: Installed on 2014-02-25 (0 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MarkForUpload: True
  OmitPids: 1056 2846 2847 2830 2817 2879 2826 2800 2846 2830 2817 3292 2826
  ProcCmdline: /usr/lib/rtkit/rtkit-daemon
  ProcEnviron:
   
  SourcePackage: rtkit
  Title: rtkit-daemon does not terminate at computer shutdown
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1466273] Re: gstreamer fails intermittently

2015-06-25 Thread Michi Henning
Here is a stable link to the build artefacts: http://s-jenkins.ubuntu-
ci:8080/job/thumbnailer-devel-wily-armhf-ci/145/artifact/

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

Title:
  gstreamer fails intermittently

Status in Thumbnail generator for all kinds of files:
  New
Status in gstreamer package in Ubuntu:
  New
Status in gstreamer1.0 package in Ubuntu:
  New

Bug description:
  gstreamer occasionally fails to extract a thumbnail from a video file.
  It's clearly a race condition because, almost all of the time, it
  succeeds. To reproduce:

  Check out the thumbnailer/devel branch at r217 and build it. Then:

  cd build/src/vs-thumb

  ./vs-thumb fd://0 ./x.jpg ../../../tests/media/testvideo.ogg

  Point a browser at the generated x.jpg file and check that the image
  was extracted correctly.

  Now run

  while ./vs-thumb fd://0 ./x.jpg ../../../tests/media/testvideo.ogg ;
  do :; done

  Within maybe a hundred iterations or so, I get:

  Error creating thumbnail: ThumbnailExtractor: change_state(): reading
  async messages: GStreamer error: negotiation problem.

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

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


[Touch-packages] [Bug 1468232] Re: Font corruption Intel Broadwell graphics

2015-06-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xorg (Ubuntu)
   Status: New = Confirmed

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

Title:
  Font corruption Intel Broadwell graphics

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  After resume from suspend it often happens that fonts are corrupted.
  The problem has not been observed if AccelMethod is set to uxa.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: xorg 1:7.7+7ubuntu2
  ProcVersionSignature: Ubuntu 3.16.0-41.57-generic 3.16.7-ckt11
  Uname: Linux 3.16.0-41-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.7-0ubuntu8.5
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,decor,regex,snap,vpswitch,imgpng,compiztoolbox,grid,staticswitcher,mousepoll,move,resize,place,gnomecompat,dbus,animation,expo,ring,workarounds,fade,session,kdecompat,scale]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Jun 24 10:16:47 2015
  DistUpgraded: Fresh install
  DistroCodename: utopic
  DistroVariant: ubuntu
  DkmsStatus:
   i915-3.19.2-3.16, 1, 3.16.0-41-generic, x86_64: installed
   virtualbox, 4.3.18, 3.16.0-41-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:5036]
  InstallationDate: Installed on 2015-06-18 (6 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  MachineType: LENOVO 20BX000XGE
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-41-generic 
root=UUID=ef80ed28-52d5-4bee-b65c-a543a2b68df4 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/23/2014
  dmi.bios.vendor: LENOVO
  dmi.bios.version: JBET41WW (1.06 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BX000XGE
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrJBET41WW(1.06):bd12/23/2014:svnLENOVO:pn20BX000XGE:pvrThinkPadT450s:rvnLENOVO:rn20BX000XGE:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20BX000XGE
  dmi.product.version: ThinkPad T450s
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.59-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.1-0intel1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.1-0intel1
  version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1.3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917-1~exp1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2
  xserver.bootTime: Tue Jun 23 16:15:38 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1133 
   vendor LGD
  xserver.version: 2:1.16.0-1ubuntu1.3

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

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


[Touch-packages] [Bug 1466273] Re: gstreamer fails intermittently

2015-06-25 Thread James Henstridge
I gave michi's branch and test videos a try.  For the six videos being
thumbnailed in parallel, I see two successful thumbnails, two instances
that look like they died due to invalid memory allocations:

(vs-thumb:15299): GLib-ERROR **:
/build/buildd/glib2.0-2.45.1/./glib/gmem.c:357: overflow allocating
4294967274*8 bytes

(vs-thumb:15298): GLib-ERROR **:
/build/buildd/glib2.0-2.45.1/./glib/gmem.c:357: overflow allocating
4294967274*8 bytes

And two that have stuck around eating a little more than one CPU each.
I was able to kill -9 them though.

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

Title:
  gstreamer fails intermittently

Status in Thumbnail generator for all kinds of files:
  New
Status in gstreamer package in Ubuntu:
  New
Status in gstreamer1.0 package in Ubuntu:
  New

Bug description:
  gstreamer occasionally fails to extract a thumbnail from a video file.
  It's clearly a race condition because, almost all of the time, it
  succeeds. To reproduce:

  Check out the thumbnailer/devel branch at r217 and build it. Then:

  cd build/src/vs-thumb

  ./vs-thumb fd://0 ./x.jpg ../../../tests/media/testvideo.ogg

  Point a browser at the generated x.jpg file and check that the image
  was extracted correctly.

  Now run

  while ./vs-thumb fd://0 ./x.jpg ../../../tests/media/testvideo.ogg ;
  do :; done

  Within maybe a hundred iterations or so, I get:

  Error creating thumbnail: ThumbnailExtractor: change_state(): reading
  async messages: GStreamer error: negotiation problem.

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

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


[Touch-packages] [Bug 1445472] Re: Can click on the Dash while dragging a Launcher icon

2015-06-25 Thread handsome_feng
** Branch linked: lp:~feng-
kylin/unity8/cantClickOnDashWhileDraggingAnIcon

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

Title:
  Can click on the Dash while dragging a Launcher icon

Status in unity8 package in Ubuntu:
  New

Bug description:
  How to reproduce:
   * Be on the Apps Scope
   * Show the Launcher
   * Start dragging an icon
   * With a different finger click on a app that is part of apps scope
   * See how the app launches

  Feels a bit weird you can do that since otherwise if not dragging the
  presses are eaten.

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

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


[Touch-packages] [Bug 1387752] Re: [Apps Scope] Ubuntu Store icon is tall and narrow

2015-06-25 Thread Daniel van Vugt
** Summary changed:

- [Apps Scope] Ubuntu Store icon should be entire width of screen
+ [Apps Scope] Ubuntu Store icon is tall and narrow

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

Title:
  [Apps Scope] Ubuntu Store icon is tall and narrow

Status in Ubuntu UX bugs:
  Fix Released
Status in unity-scope-click package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Replace tall/narrow 'Ubuntu Store' icon with version that is the same
  width as rows of application icon above it.

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

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


[Touch-packages] [Bug 1464442] Re: installing or upgrading libc6 in Trusty removes all content from /tmp directory

2015-06-25 Thread Stefan Bader
Not sure this helps or adds just more confusion, but I find it odd that
with the broken environment there remain two /sbin/init processes
running at least for a while... Ok, could be because the 2nd one which
likely is the supposed restart is getting blocked because of the
vanished files in /tmp.

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

Title:
  installing or upgrading libc6 in Trusty removes all content from /tmp
  directory

Status in linux package in Ubuntu:
  Invalid
Status in upstart package in Ubuntu:
  Triaged

Bug description:
  We are seeing an issue with installation of dkms package during a
  curtin installation which ends up with /tmp directory being wiped
  clean. This is very bad for curtin as it saves critical installation
  files in /tmp.

  It turns out that it's the of upgrading libc6, which is triggered as a
  result of installing dependencies, that removes content of /tmp. For
  example, installation of gcc results in the same result since it ends
  up with libc6 being upgraded. The only way that this won't be
  recreated is if the latest libc6 is already installed.

  This problem does not exist in precise. It can also be recreated by
  installing the .deb file for any version in trusty including 2.17.

  
  ubuntu@host:~$ ls /tmp
  tmpHHbRkP
  ubuntu@sirrush:~$ sudo apt-get install libc6
  sudo: unable to resolve host sirrush
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  The following extra packages will be installed:
    libc-dev-bin libc6-dev
  Suggested packages:
    glibc-doc
  Recommended packages:
    manpages-dev
  The following packages will be upgraded:
    libc-dev-bin libc6 libc6-dev
  3 upgraded, 0 newly installed, 0 to remove and 148 not upgraded.
  Need to get 6,714 kB of archives.
  After this operation, 6,144 B disk space will be freed.
  Do you want to continue? [Y/n] y
  Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc6-dev amd64 
2.19-0ubuntu6.6 [1,910 kB]
  Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc-dev-bin 
amd64 2.19-0ubuntu6.6 [68.9 kB]
  Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc6 amd64 
2.19-0ubuntu6.6 [4,735 kB]
  Fetched 6,714 kB in 0s (18.5 MB/s)
  Preconfiguring packages ...
  (Reading database ... 57798 files and directories currently installed.)
  Preparing to unpack .../libc6-dev_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc6-dev:amd64 (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Preparing to unpack .../libc-dev-bin_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc-dev-bin (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Preparing to unpack .../libc6_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc6:amd64 (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Processing triggers for man-db (2.6.7.1-1) ...
  Setting up libc6:amd64 (2.19-0ubuntu6.6) ...
  Setting up libc-dev-bin (2.19-0ubuntu6.6) ...
  Setting up libc6-dev:amd64 (2.19-0ubuntu6.6) ...
  Processing triggers for libc-bin (2.19-0ubuntu6.3) ...
  ubuntu@host:~$ ls /tmp
  ubuntu@host:~$
  

  This is very recreatable.

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

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


[Touch-packages] [Bug 1428206] Re: Need a fake OSK plugin for unit tests

2015-06-25 Thread Christian Dywan
** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) = Christian Dywan (kalikiana)

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

Title:
  Need a fake OSK plugin for unit tests

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

Bug description:
  Right now all unit tests depending on OSK basically never run because
  they can only succeed with maliit which can't be setup on the fly. And
  even for Autopilot all we have is synthetic events (see bug 1428114).
  We need a testable OSK plugin that doesn't require maliit.

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

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


[Touch-packages] [Bug 1468832] Re: lightdm sources .profile

2015-06-25 Thread Gunnar Hjalmarsson
@Derek: I don't know what's right and wrong here, but what does it
really matter in practice? Have you considered the mess which would be
the result if lightdm suddenly stopped to source ~/.profile?

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

Title:
  lightdm sources .profile

Status in lightdm package in Ubuntu:
  New

Bug description:
  It is a bug for any display manager to read .profile--you guys are
  absolutely killing me with this.  The user's .profile is to be read by
  the shell, on interactive shell (i.e. terminal) logins ONLY.  The man
  page for bash explains this in detail; it's also discussed in the dash
  man page.  The problem with display managers reading .profile is that
  it is the place where commands to set up your terminal (i.e. stty) go
  --this is the entire point of differentiating interactive shells from
  non-interactive shells, and it's the reason only interactive shells
  read .profile at all.  Currently, if you have any such commands in
  your .profile, lightdm barfs on them, delaying the login session and
  forcing you to click on a prompt.  This is extremely annoying (and
  wrong)!

  It would be satisfactory to make lightdm not display the errors, but
  that's the wrong solution.  There's already a decades-established
  method of getting X display managers to source your environment
  settings: the .xsession file.  It should be read by ALL display
  managers (or the session file that starts them).  If you have common
  environment settings you want set in all your shells, the correct way
  to handle this is:

  .bashrc:
  # set all common environment vars here
  ENV_VAR=foo
  ...

  .profile:
  # set up terminal
  stty erase
  # BASH already sources .bashrc by default on interactive sessions

  .xsession:
  if [ -f .bashrc ] source .bashrc

  If you're not using BASH, you can still use this method without
  changing anything, except in .profile you need to explicitly source
  the .bashrc file.  Of course you can change the name of the file that
  contains the common settings to reflect that your shell is not BASH;
  since the file is sourced by your other files explicitly, it does not
  matter what the user calls it.

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

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


[Touch-packages] [Bug 1467267] Re: Please sync to 1.0.2-2 from Debian (main)

2015-06-25 Thread Robert Ancell
** Also affects: network-manager-applet (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: network-manager-pptp (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: network-manager-applet (Ubuntu)
   Status: New = Triaged

** Changed in: network-manager-pptp (Ubuntu)
   Status: New = Triaged

** Changed in: network-manager-pptp (Ubuntu)
   Importance: Undecided = Medium

** Changed in: network-manager-applet (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  Please sync to 1.0.2-2 from Debian (main)

Status in network-manager package in Ubuntu:
  Triaged
Status in network-manager-applet package in Ubuntu:
  Triaged
Status in network-manager-pptp package in Ubuntu:
  Triaged

Bug description:
  Lot of bug fixes with the latest stable release
  
http://metadata.ftp-master.debian.org/changelogs//main/n/network-manager/network-manager_1.0.2-2_changelog

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: network-manager 0.9.10.0-4ubuntu16
  ProcVersionSignature: Ubuntu 4.0.0-2.4-generic 4.0.5
  Uname: Linux 4.0.0-2-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.3-0ubuntu4
  Architecture: i386
  CurrentDesktop: GNOME
  Date: Sun Jun 21 16:56:40 2015
  IpRoute:
   default via 192.168.1.1 dev eth1  proto static  metric 100 
   169.254.0.0/16 dev eth1  scope link  metric 1000 
   192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.3
  IwConfig:
   lono wireless extensions.
   
   eth0  no wireless extensions.
   
   eth1  no wireless extensions.
  RfKill:
   
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.NetworkManager.NetworkManager.conf: [modified]
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2015-06-13T08:56:31.598901
  nmcli-con:
   NAMEUUID  TYPE
TIMESTAMP   TIMESTAMP-REAL   AUTOCONNECT  READONLY  DBUS-PATH   
ACTIVE  DEVICE  STATE  ACTIVE-PATH  
  
   Wired connection 1  7086b2ff-1446-45fe-b8f3-cd333cd4cee1  802-3-ethernet  
1434898501  dim. 21 juin 2015 16:55:01 CEST  yes  no
/org/freedesktop/NetworkManager/Settings/0  yes eth1activated  
/org/freedesktop/NetworkManager/ActiveConnection/0
  nmcli-dev:
   DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
   eth1ethernet  connected/org/freedesktop/NetworkManager/Devices/2  
Wired connection 1  7086b2ff-1446-45fe-b8f3-cd333cd4cee1  
/org/freedesktop/NetworkManager/ActiveConnection/0 
   eth0ethernet  unavailable  /org/freedesktop/NetworkManager/Devices/1  -- 
 ----   
  
   lo  loopback  unmanaged/org/freedesktop/NetworkManager/Devices/0  -- 
 ----
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

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

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


[Touch-packages] [Bug 1468103] Re: rc.local runs earlier than cloud-init.service

2015-06-25 Thread Martin Pitt
 Independent of cloud-init, things in rc.local should be run as the
last thing in boot.

So now we have last thing except cloud-init :-) There are other
services which order themselves after it, like getty@, plymouth-quit and
others, to avoid disturbing init.d/rc.local scripts with allocated VTs
or plymouth going away. This was more or less the same case with
upstart.

But nevertheless it should run at least after the init.d scripts (and
their unit counterparts), to maintain backwards compatibility with that.
This still isn't robust (if you need to run after something it's always
correct to actually declare it), but might help in some situations.

** Project changed: hundredpapercuts = systemd (Ubuntu)

** Changed in: systemd (Ubuntu)
   Status: Confirmed = 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/1468103

Title:
  rc.local runs earlier than cloud-init.service

Status in cloud-init package in Ubuntu:
  Confirmed
Status in systemd package in Ubuntu:
  Triaged

Bug description:
  per https://www.debian.org/doc/manuals/debian-faq/ch-customizing.en.html
   | The rc.local script is executed at the end of each multiuser runlevel.

  Generally speaking people expect rc.local to be run as the last thing
  in boot.

  currently it is being run by systemd much earlier.

  Provided in the attached is user-data that tells cloud-init to write a
  file in /usr/local/bin/rc-local-message and edit set rc.local to
  execute it.

  On current wily, under most scenarios the script will not be executed
  as rc.local will most likely run before the cloud-init service has a
  chance to update /etc/rc.local.

  To reproduce:
   a.) launch an instance with provided user-data

  Expected behavior would be:
   1.  /run/rc-local-message exists with contents of /proc/uptime at the time 
it was run
   2.  /rc-local-message.mark exists with the number of times this script has 
been run ('1' after first boot)
   3.  /var/log/rc-local-message.log exists with a message like:
    [/var/log/rc-local-message.log] date === successful boot 1 
   4. console log should also have message like in 3 with '/dev/console'

  4 is broken as rc.local output is not sent to console as reported
  separately at bug 1468102.

  Related bugs:
   * bug 1468102: rc.local output does not go to console 

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 220-7ubuntu1
  ProcVersionSignature: User Name 3.19.0-22.22-generic 3.19.8-ckt1
  Uname: Linux 3.19.0-22-generic x86_64
  ApportVersion: 2.17.3-0ubuntu4
  Architecture: amd64
  Date: Tue Jun 23 20:21:50 2015
  Ec2AMI: ami-0434
  Ec2AMIManifest: FIXME
  Ec2AvailabilityZone: nova
  Ec2InstanceType: m1.small
  Ec2Kernel: aki-0002
  Ec2Ramdisk: ari-0002
  Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: OpenStack Foundation OpenStack Nova
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-22-generic 
root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/01/2011
  dmi.bios.vendor: Bochs
  dmi.bios.version: Bochs
  dmi.chassis.type: 1
  dmi.chassis.vendor: Bochs
  dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnOpenStackFoundation:pnOpenStackNova:pvr2014.1.4:cvnBochs:ct1:cvr:
  dmi.product.name: OpenStack Nova
  dmi.product.version: 2014.1.4
  dmi.sys.vendor: OpenStack Foundation

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

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


[Touch-packages] [Bug 1442670] Re: Ubuntu Phone BQ: Camera makes blur images

2015-06-25 Thread Sergi Quiles Pérez
As Costales says, BQ is glad about its camera
(http://www.bq.com/gb/products/aquaris-e4-5.html#camera-section). They
say:

AUTOFOCUS* We have added this new feature to the whole of our Aquaris E
range, so you can achieve sharper images and highlight what matters most
in your photographs.

I think that if this autofocus is controlled by Ubuntu Touch then it is bad 
managed when recording videos too.
When you click for a focus on the screen the focus is set but when you take the 
picture the focus is changed. The same when you are recording a video, the 
focus is changing permanently and the videos are unfocused sometimes.

To reproduce it simply record a video and move your phone between two
close objects. You'll see the camera focusing during much time.

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

Title:
  Ubuntu Phone BQ: Camera makes blur images

Status in Camera App:
  Confirmed
Status in camera-app package in Ubuntu:
  Confirmed

Bug description:
  Hi!
  A lot of times the camera is getting a really bad images (blur effect) in all 
resolutions.

  And yes, I click previously for a focus.

  I'm sending you an example: That picture looked perfect in the mobile,
  but in the PC is really bad :(

  Thanks in advance!

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

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


[Touch-packages] [Bug 1468102] Re: rc.local output does not go to console

2015-06-25 Thread Martin Pitt
Ah, understood. I was misled as your userdata explicitly sends output to
/dev/console (or whatever you configured). This can be done with
Standard{Output,Error}=journal+console.

** Changed in: systemd (Ubuntu)
   Status: Confirmed = Triaged

** Changed in: systemd (Ubuntu)
 Assignee: (unassigned) = Martin Pitt (pitti)

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

Title:
  rc.local output does not go to console

Status in systemd package in Ubuntu:
  Triaged

Bug description:
  provided is user-data that should write:
  [stdout] Tue, 23 Jun 2015 20:17:52 + == successfull boot 1 ===

  to the console on the first boot.

  currently in wily, rc.local's output is not being written to the
  console, so you wont see this.

  Note, that because of bug 1468103, you wont see it on first boot. If
  this bug were fixed then you'd see it on reboots.

  Related bugs:
   * bug 1468103:  rc.local runs too early.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 220-7ubuntu1
  ProcVersionSignature: User Name 3.19.0-22.22-generic 3.19.8-ckt1
  Uname: Linux 3.19.0-22-generic x86_64
  ApportVersion: 2.17.3-0ubuntu4
  Architecture: amd64
  Date: Tue Jun 23 20:26:30 2015
  Ec2AMI: ami-0434
  Ec2AMIManifest: FIXME
  Ec2AvailabilityZone: nova
  Ec2InstanceType: m1.small
  Ec2Kernel: aki-0002
  Ec2Ramdisk: ari-0002
  Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: OpenStack Foundation OpenStack Nova
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-22-generic 
root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/01/2011
  dmi.bios.vendor: Bochs
  dmi.bios.version: Bochs
  dmi.chassis.type: 1
  dmi.chassis.vendor: Bochs
  dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnOpenStackFoundation:pnOpenStackNova:pvr2014.1.4:cvnBochs:ct1:cvr:
  dmi.product.name: OpenStack Nova
  dmi.product.version: 2014.1.4
  dmi.sys.vendor: OpenStack Foundation

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

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


[Touch-packages] [Bug 1468103] [NEW] rc.local runs earlier than cloud-init.service

2015-06-25 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

per https://www.debian.org/doc/manuals/debian-faq/ch-customizing.en.html
 | The rc.local script is executed at the end of each multiuser runlevel.

Generally speaking people expect rc.local to be run as the last thing
in boot.

currently it is being run by systemd much earlier.

Provided in the attached is user-data that tells cloud-init to write a
file in /usr/local/bin/rc-local-message and edit set rc.local to execute
it.

On current wily, under most scenarios the script will not be executed as
rc.local will most likely run before the cloud-init service has a chance
to update /etc/rc.local.

To reproduce:
 a.) launch an instance with provided user-data

Expected behavior would be:
 1.  /run/rc-local-message exists with contents of /proc/uptime at the time it 
was run
 2.  /rc-local-message.mark exists with the number of times this script has 
been run ('1' after first boot)
 3.  /var/log/rc-local-message.log exists with a message like:
  [/var/log/rc-local-message.log] date === successful boot 1 
 4. console log should also have message like in 3 with '/dev/console'

4 is broken as rc.local output is not sent to console as reported
separately at bug 1468102.

Related bugs:
 * bug 1468102: rc.local output does not go to console 

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: systemd 220-7ubuntu1
ProcVersionSignature: User Name 3.19.0-22.22-generic 3.19.8-ckt1
Uname: Linux 3.19.0-22-generic x86_64
ApportVersion: 2.17.3-0ubuntu4
Architecture: amd64
Date: Tue Jun 23 20:21:50 2015
Ec2AMI: ami-0434
Ec2AMIManifest: FIXME
Ec2AvailabilityZone: nova
Ec2InstanceType: m1.small
Ec2Kernel: aki-0002
Ec2Ramdisk: ari-0002
Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: OpenStack Foundation OpenStack Nova
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-22-generic 
root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
SourcePackage: systemd
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/01/2011
dmi.bios.vendor: Bochs
dmi.bios.version: Bochs
dmi.chassis.type: 1
dmi.chassis.vendor: Bochs
dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnOpenStackFoundation:pnOpenStackNova:pvr2014.1.4:cvnBochs:ct1:cvr:
dmi.product.name: OpenStack Nova
dmi.product.version: 2014.1.4
dmi.sys.vendor: OpenStack Foundation

** Affects: systemd (Ubuntu)
 Importance: High
 Status: Confirmed

** Affects: cloud-init (Ubuntu)
 Importance: High
 Status: Confirmed


** Tags: amd64 apport-bug ec2-images wily
-- 
rc.local runs earlier than cloud-init.service
https://bugs.launchpad.net/bugs/1468103
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 1469005] [NEW] Create a new contact from dialer and add photo from photoroll failed

2015-06-25 Thread quandan
Public bug reported:

$ system-image-cli -i
current build number: 120
device name: krillin
channel: ubuntu-touch/devel-proposed/krillin.en
last update: 2015-07-12 08:45:29
version version: 120
version ubuntu: 20150624
version device: 20150529-8e13c5f
version custom: 20150528-722-29-15-vivid
Steps:
1) Load address book app
2) Create contact from dialer and add photo
3) Select camera as image source
4) Switch to the photoroll
5) Select a photo
6) Save contact
Expectation:
 choose the photo and save contact successfully
Actual result:
 After action 5#, all the information disappeared, and automatically return to 
the contact list panel , that contact doesn't exist.

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

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

Title:
  Create a  new contact from dialer and add photo from photoroll failed

Status in address-book-app package in Ubuntu:
  New

Bug description:
  $ system-image-cli -i
  current build number: 120
  device name: krillin
  channel: ubuntu-touch/devel-proposed/krillin.en
  last update: 2015-07-12 08:45:29
  version version: 120
  version ubuntu: 20150624
  version device: 20150529-8e13c5f
  version custom: 20150528-722-29-15-vivid
  Steps:
  1) Load address book app
  2) Create contact from dialer and add photo
  3) Select camera as image source
  4) Switch to the photoroll
  5) Select a photo
  6) Save contact
  Expectation:
   choose the photo and save contact successfully
  Actual result:
   After action 5#, all the information disappeared, and automatically return 
to the contact list panel , that contact doesn't exist.

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

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


[Touch-packages] [Bug 1466934] Re: Trying to maximize battery life on HP dv7-4272us

2015-06-25 Thread Christopher M. Penalver
foobar, thank you for reporting this and helping make Ubuntu better.
Examining the information you have given us, this does not appear to be
a bug report so we are closing it. We understand the difficulties you
are facing, but it is better to raise problems and general inquiries you
are having in the support tracker at
https://answers.launchpad.net/ubuntu if you are uncertain if they are
software bugs. You can also find help with your problem in the support
forum of your local Ubuntu community http://loco.ubuntu.com/ or asking
at http://askubuntu.com or http://ubuntuforums.org. For help on
reporting bugs, see https://help.ubuntu.com/community/ReportingBugs.

** Tags added: latest-bios-f.29

** Changed in: xorg (Ubuntu)
   Status: New = Invalid

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

Title:
  Trying to maximize battery life on HP dv7-4272us

Status in xorg package in Ubuntu:
  Invalid

Bug description:
  This AMD 3-core + Radeon runs really hot, and I'm trying to maximize
  battery life.

  When I try radeon.dpm=1, I get display glitching every few seconds
  when the dpm switches displays.  I haven't found any way to force dpm
  to keep the discrete display completely turned off, both to save power
  and to stop the glitching.

  Among other problems, the mere existence of HDMI audio keeps waking up
  the discrete GPU, both wasting power  glitching the display.  So I
  tried radeon.audio=0.  I don't think it helps, but I left it in.

  The only way to really kill the HDMI audio problems is to blacklist
  snd_hda_intel, but that kills _all_ of my audio (except Bluetooth
  audio).  So I had to un-blacklist snd_hda_intel.

  So I'm using radeon.dpm=0.

  If radeon.runpm=1, I still get problems.

  So I'm using radeon.runpm=0.

  This works pretty well; I've gotten the temperature down to 68 degrees
  or so, but this is still too hot.

  If I turn off the discrete graphics completely using

  echo OFF  /sys/kernel/debug/vgaswitcheroo/switch

  this works quite well -- I can get the temperature down to 64 degrees
  or so -- but now my log fills up with complaints that my radeon
  discrete driver isn't turned on.  (I'll send you another report
  showing you this.)

  I want to be able to operate this HP laptop in the most power-saving
  way -- by completely turning off the discrete radeon GPU.

  Could you provide any suggestions about how to do this?

  Thanks very much.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri Jun 19 09:31:02 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RS880M [Mobility Radeon HD 4225/4250] 
[1002:9712] (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:1641]
   Advanced Micro Devices, Inc. [AMD/ATI] Robson CE [Radeon HD 6370M/7370M] 
[1002:68e4] (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Radeon HD 6370M [103c:1641]
  InstallationDate: Installed on 2015-06-06 (13 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
  MachineType: Hewlett-Packard HP Pavilion dv7 Notebook PC
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=0a49d103-e2eb-4b21-a433-c41a1ef8d27b ro quiet splash radeon.runpm=0 
radeon.dpm=0 radeon.audio=0 radeon.pcie_gen2=0 acpiphp.disable=1 vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/25/2013
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.29
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 1641
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 67.33
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.29:bd02/25/2013:svnHewlett-Packard:pnHPPaviliondv7NotebookPC:pvr058312242B2620100:rvnHewlett-Packard:rn1641:rvr67.33:cvnHewlett-Packard:ct10:cvrN/A:
  dmi.product.name: HP Pavilion dv7 Notebook PC
  dmi.product.version: 058312242B2620100
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 

[Touch-packages] [Bug 1466235] Re: Xorg crash

2015-06-25 Thread Christopher M. Penalver
akeraj ali, thank you for reporting this and helping make Ubuntu better.

As per http://www.dell.com/support/home/us/en/19/product-
support/product/inspiron-15-3542-laptop/drivers an update to your
computer's buggy and outdated BIOS is available (A06). If you update to
this following https://help.ubuntu.com/community/BIOSUpdate does it
change anything?

If it doesn't, could you please both specify what happened, and provide the 
output of the following terminal command:
sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful. As well, you don't
have to create a new bug report.

Once the BIOS is updated, and the information above is provided, then
please mark this report Status New.

Thank you for your understanding.

** Tags added: bios-outdated-a06

** Changed in: xorg (Ubuntu)
   Importance: Undecided = Low

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  Xorg crash

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  when system do two or three process it come back to login page

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.13.0-55.92-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-55-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Thu Jun 18 03:09:03 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 4.3.10, 3.13.0-53-generic, x86_64: installed
   virtualbox, 4.3.10, 3.13.0-54-generic, x86_64: installed
   virtualbox, 4.3.10, 3.13.0-55-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:0651]
  InstallationDate: Installed on 2015-01-19 (149 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  MachineType: Dell Inc. Inspiron 3542
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=b21e5ae6-b281-43f4-843f-e37c074abc16 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg crash
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/27/2014
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 09V1VC
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A03
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd05/27/2014:svnDellInc.:pnInspiron3542:pvrNotSpecified:rvnDellInc.:rn09V1VC:rvrA03:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 3542
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  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 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.6
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Wed Jun 17 20:47:06 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5567 
   vendor CMN
  xserver.version: 2:1.15.1-0ubuntu2.7

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

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


[Touch-packages] [Bug 1359344] Re: Contradictory explanation on the update dialog

2015-06-25 Thread Pat McGowan
Adding text from a duplicate bug:

Updater should give user more verbose pre-update-install warning what is going 
to happen next and what is (not)expected from user. e.g.
Phone will now reboot in order to install updates. During installation, do not 
try to power off or reset device. Once update is complete phone will reboot 
again to complete installation, which can be slower than usual device boot.

Tested on stable arale v2.

** Summary changed:

- Contradictory explanation on the update dialog
+ Contradictory and/or incomplete explanation on the update dialog

** Also affects: system-image (Ubuntu)
   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/1359344

Title:
  Contradictory and/or incomplete explanation on the update dialog

Status in the base for Ubuntu mobile products:
  Confirmed
Status in system-image package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  Once you download an update, their is dialog shown which has the
  following infos :

  [Description] The phone needs to restart to install the system update.
  [Button] Install  Restart

  The button text should be Restart  Install to match the description
  and real update installation process which means the update is
  installed after the restart not before.

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

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


[Touch-packages] [Bug 1359344] Re: Contradictory and/or incomplete explanation on the update dialog

2015-06-25 Thread Pat McGowan
Adding system-image as not sure where the dialog is generated

** Changed in: system-image (Ubuntu)
   Importance: Undecided = Critical

** Changed in: system-image (Ubuntu)
   Status: New = Confirmed

** Changed in: system-image (Ubuntu)
 Assignee: (unassigned) = Barry Warsaw (barry)

** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

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

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

** Changed in: canonical-devices-system-image
Milestone: None = ww28-2015

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) = Pat McGowan (pat-mcgowan)

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

Title:
  Contradictory and/or incomplete explanation on the update dialog

Status in the base for Ubuntu mobile products:
  Confirmed
Status in system-image package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  Once you download an update, their is dialog shown which has the
  following infos :

  [Description] The phone needs to restart to install the system update.
  [Button] Install  Restart

  The button text should be Restart  Install to match the description
  and real update installation process which means the update is
  installed after the restart not before.

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

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


[Touch-packages] [Bug 1461276] Re: off-by-one in LDIF length

2015-06-25 Thread Kartik Subbarao
Any response on this?

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

Title:
  off-by-one in LDIF length

Status in openldap package in Ubuntu:
  New

Bug description:
  Would it be possible to include the patch for ITS#8003 in the next
  build of the 2.4.40 package?

  
http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=patch;h=c8353f7acdec4a42f537b0d475aaae005ba72363

  It fixes a bug that causes slapd to crash when the audit log is
  enabled and a large base64-encoded attribute is printed.

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

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


[Touch-packages] [Bug 1468760] [NEW] Re-enable header animations

2015-06-25 Thread Tim Peeters
Public bug reported:

Header animations were disabled because of a bug in this MR
https://code.launchpad.net/~tpeeters/ubuntu-ui-
toolkit/popLoopBug/+merge/261627

They should be enabled again eventually.

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

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

Title:
  Re-enable header animations

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

Bug description:
  Header animations were disabled because of a bug in this MR
  https://code.launchpad.net/~tpeeters/ubuntu-ui-
  toolkit/popLoopBug/+merge/261627

  They should be enabled again eventually.

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

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


[Touch-packages] [Bug 1429988] Re: Preview and photos are unfocused

2015-06-25 Thread Markcortbass
This is still a very critical bug. It also affects the Meizu MX4 Ubuntu
Edition.

http://2.bp.blogspot.com/-MQUVuIN87A8/VYqd1t8iJsI/Wps/O-5C1yN9t84/s400/image20150624_145936724.jpg
http://1.bp.blogspot.com/-4ra2YTynWWM/VYqd1sKd87I/Wpw/0KZkLOmDKds/s400/image20150624_150055214.jpg

http://www.webupd8.org/2015/06/quick-meizu-mx4-ubuntu-edition-
review.html

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

Title:
  Preview and photos are unfocused

Status in Camera App:
  Confirmed
Status in camera-app package in Ubuntu:
  Confirmed

Bug description:
  BQ Aquarius running stable rtm

  The camera can get in a state where it can no longer properly focus on the 
image. The preview shows a fuzzy image which is also the case with the pictures 
taken.
  Rebooting the phone does not correct this.

  (this was reproduced once by switching front and back cameras but it
  corrected with another switch)

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

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


[Touch-packages] [Bug 1466130] Re: Intel Graphics 5500

2015-06-25 Thread Christopher M. Penalver
Wes, thank you for reporting this and helping make Ubuntu better.

Could you please provide the full computer model as noted on the sticker
of the computer itself (not from the Bug Description)?

** Tags added: needs-full-computer-model

** Changed in: xorg (Ubuntu)
   Importance: Undecided = Low

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  Intel Graphics 5500

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  There are missing letters, some of the background display is black,
  etc. Everything only works properly when I resume boot from the
  recovery mode.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-41.55~14.04.1-generic 3.16.7-ckt11
  Uname: Linux 3.16.0-41-generic x86_64
  .tmp.unity.support.test.1:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Jun 17 11:19:56 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:2293]
  InstallationDate: Installed on 2015-06-16 (0 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  MachineType: Hewlett-Packard HP Pavilion 15 Notebook PC
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-41-generic.efi.signed 
root=UUID=5adf5fb3-6806-4214-bfcc-610afee5d200 ro recovery nomodeset
  Renderer: Software
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/02/2015
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.36
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 2293
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 78.21
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.36:bd02/02/2015:svnHewlett-Packard:pnHPPavilion15NotebookPC:pvr0971120002405F1620180:rvnHewlett-Packard:rn2293:rvr78.21:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP Pavilion 15 Notebook PC
  dmi.product.version: 0971120002405F1620180
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Wed Jun 17 11:18:34 2015
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

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

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


[Touch-packages] [Bug 1465892] Re: xorg 1:7.7+7ubuntu4

2015-06-25 Thread Christopher M. Penalver
Mohamed El-Defrawy, thank you for taking the time to report this and
helping to make Ubuntu better. Unfortunately, this report didn't include
enough information. You may find it helpful to read How to report bugs
effectively http://www.chiark.greenend.org.uk/~sgtatham/bugs.html and
https://wiki.ubuntu.com/ReportingBugs . We'd be grateful if you would
then provide a more complete description of the problem.

We have instructions on debugging some types of problems at
http://wiki.ubuntu.com/DebuggingProcedures

At a minimum, we need:
1. The specific steps or actions you took that caused you to encounter the 
problem,
2. The behavior you expected, and
3. The behavior you actually encountered (in as much detail as possible).

Thank you for your understanding.

** Tags added: bios-outdated-a14

** Changed in: xorg (Ubuntu)
   Importance: Undecided = Low

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  xorg 1:7.7+7ubuntu4

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  xorg 1:7.7+7ubuntu4

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic i686
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Jun 17 02:25:24 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller 
[8086:2a42] (rev 07) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:02aa]
 Subsystem: Dell Device [1028:02aa]
  InstallationDate: Installed on 2015-06-15 (1 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release i386 (20150422)
  MachineType: Dell Inc. Inspiron 1545
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=af9eb444-00a6-4ce8-9048-af105df26a38 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/13/2009
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 0G848F
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/13/2009:svnDellInc.:pnInspiron1545:pvr:rvnDellInc.:rn0G848F:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Inspiron 1545
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Wed Jun 17 01:09:41 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   28161 
   vendor LGD
  xserver.version: 2:1.17.1-0ubuntu3

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

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


[Touch-packages] [Bug 1468042] [NEW] Notifications of incoming messages are displayed on the lockscreen even though they are disabled.

2015-06-25 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I have disabled Notifications and quick settings in System Settings,
yet notifications of incoming messages are still displayed on the
lockscreen, including the first line or so of the message.

I'm on a bq Aquaris 4.5 with r23 installed (and all updates applied as
of writing this).

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

-- 
Notifications of incoming messages are displayed on the lockscreen even though 
they are disabled.
https://bugs.launchpad.net/bugs/1468042
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to unity8 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 1468403] Re: Characters overlap together in lines Contact/License of App details

2015-06-25 Thread Rodney Dawes
This appears to be a change in the dash QML or similar, as there have
been no changes to the scope in this respect, and the scope only
controls content and basic layout suggestions, not actual rendering.

** Package changed: unity-scope-click (Ubuntu) = unity8 (Ubuntu)

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

Title:
  Characters overlap together in lines Contact/License of App details

Status in the base for Ubuntu mobile products:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  $ system-image-cli -i
  current build number: 30
  device name: arale
  channel: ubuntu-touch/devel-proposed/meizu.en
  last update: 2015-06-23 02:58:10
  version version: 30
  version ubuntu: 20150622
  version device: 20150608-6e66f3c
  version custom: 20150602-731-5-32

  Steps to reproduce:
  1.Open Apps scope 
  2.Long press on an app icon
  3.App details are displayed
  4.Check the characters of line Contact/License

  Actual results:
  Two lines of characters overlap together, took Clock app for example, please 
refer to the screenshot attached.

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

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


[Touch-packages] [Bug 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Jonas Thiem
Who calls pyvenv directly? People just use python3 -m venv which, as
people pointed out above, is expected by everyone to be fully working
and available with any python3 install _without_ separately installed
packages. Sure distributions have different conventions, but python was
always packaged with all core stuff contained on pretty much all
distributions includung Ubuntu. Therefore if you change that arbitrarly
for the core venv component, you should expect people to get caught by
surprise and wonder why Ubuntu's python is so broken until this is
changed.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1465377] Re: Change login while other user is logged in: sometimes crashes/freezes/hangs

2015-06-25 Thread Christopher M. Penalver
LaunchpadUser, thank you for reporting this and helping make Ubuntu
better.

As per http://www.gigabyte.com/products/product-page.aspx?pid=4714#bios
an update to your computer's buggy and outdated BIOS is available (F6).
If you update to this following
https://help.ubuntu.com/community/BIOSUpdate does it change anything?

If it doesn't, could you please both specify what happened, and provide the 
output of the following terminal command:
sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful. As well, you don't
have to create a new bug report.

Once the BIOS is updated, and the information above is provided, then
please mark this report Status New.

Thank you for your understanding.

** Changed in: xorg (Ubuntu)
   Importance: Undecided = Low

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  Change login while other user is logged in: sometimes
  crashes/freezes/hangs

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  When trying to login with a user account while another user is already
  logged in, Ubuntu sometimes crashes/hanges/freezes!

  This bug exists for many years, so for many Ubuntu versions - even in
  the latest LTS versions with fresh standard installation (Unity), 64
  Bit. During the years of this bug, I had different computers
  (hardware) with different graphics cards (nVidia, AMD) different
  Ubuntus (32 Bit, 64 Bit, LTS, non-LTS). This bug bugs us for so many
  years because we have two computers (exchanged every couple of years
  with fresh Ubuntu installations) that each has multiple login accounts
  (for all family members). Every once in a while one user wants to
  login while another is already logged in. The login screen allowws to
  login while another user is logged in, so this should basically work.
  Other scenario is, the the logged in user simple loggs in to another
  user via the system menu (top right).

  The results are miscellanious: sometimes it works, sometimes, the
  graphics get distorted, sometimes, the screen just turns black
  (sometimes with a white cursopr line blinking), sometimes it freezes,
  sometimes it crashes. All in all: it's very unstable and buggy.

  Last messages in /var/log/kernel.log:

  -
  ...
  Jun 15 19:53:11 PC-M kernel: [   17.365242] type=1400 
audit(1434390791.618:8): apparmor=STATUS operation=profile_load 
profile=unconfined name=/usr/lib/cups/backend/cups-pdf pid=867 
comm=apparmor_parser
  Jun 15 19:53:11 PC-M kernel: [   17.365253] type=1400 
audit(1434390791.618:9): apparmor=STATUS operation=profile_load 
profile=unconfined name=/usr/sbin/cupsd pid=867 comm=apparmor_parser
  Jun 15 19:53:11 PC-M kernel: [   17.365575] type=1400 
audit(1434390791.618:10): apparmor=STATUS operation=profile_replace 
profile=unconfined name=/usr/sbin/cupsd pid=867 comm=apparmor_parser
  Jun 15 19:53:11 PC-M kernel: [   17.417132] r8169 :01:00.0 eth0: link down
  Jun 15 19:53:11 PC-M kernel: [   17.417157] r8169 :01:00.0 eth0: link down
  Jun 15 19:53:11 PC-M kernel: [   17.417203] IPv6: ADDRCONF(NETDEV_UP): eth0: 
link is not ready
  Jun 15 19:53:11 PC-M kernel: [   17.417589] IPv6: ADDRCONF(NETDEV_UP): eth0: 
link is not ready
  Jun 15 19:53:11 PC-M kernel: [   17.429647] type=1400 
audit(1434390791.682:11): apparmor=STATUS operation=profile_load 
profile=unconfined name=/usr/lib/lightdm/lightdm-guest-session pid=923 
comm=apparmor_parser
  Jun 15 19:53:12 PC-M kernel: [   18.455730] fglrx_pci :00:01.0: irq 86 
for MSI/MSI-X
  Jun 15 19:53:12 PC-M kernel: [   18.456922] 6[fglrx] Firegl kernel thread 
PID: 1358
  Jun 15 19:53:12 PC-M kernel: [   18.457010] 6[fglrx] Firegl kernel thread 
PID: 1359
  Jun 15 19:53:12 PC-M kernel: [   18.457112] 6[fglrx] Firegl kernel thread 
PID: 1360
  Jun 15 19:53:12 PC-M kernel: [   18.457222] 6[fglrx] IRQ 86 Enabled
  Jun 15 19:53:12 PC-M kernel: [   18.465425] 6[fglrx] Reserved FB block: 
Shared offset:0, size:100 
  Jun 15 19:53:12 PC-M kernel: [   18.465427] 6[fglrx] Reserved FB block: 
Unshared offset:f9b4000, size:4000 
  Jun 15 19:53:12 PC-M kernel: [   18.465429] 6[fglrx] Reserved FB block: 
Unshared offset:f9b8000, size:548000 
  Jun 15 19:53:12 PC-M kernel: [   18.465430] 6[fglrx] Reserved FB block: 
Unshared offset:ff0, size:10 
  Jun 15 19:53:12 PC-M kernel: [   18.465431] 6[fglrx] Reserved FB block: 
Unshared offset:7ffd7000, size:29000 
  Jun 15 19:53:12 PC-M kernel: [   18.520520] 6[fglrx] ATIF platform detected 
with notification ID: 0x81
  Jun 15 19:53:13 PC-M kernel: [   18.962467] 

[Touch-packages] [Bug 1465822] Re: X session crashed

2015-06-25 Thread Christopher M. Penalver
** Tags added: bios-outdated-a13

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

Title:
  X session crashed

Status in xorg package in Ubuntu:
  New

Bug description:
  While normal use, Unity disappeared, black screen with white blinking
  cursor appeared, then I was redirected to login screen. No changes
  were made to system recently.

  Xorg.log.old indicated the following error:

  [ 11178.146] (EE) 
  [ 11178.146] (EE) Backtrace:
  [ 11178.147] (EE) 0: /usr/bin/X (xorg_backtrace+0x48) [0x7f40ec9fded8]
  [ 11178.148] (EE) 1: /usr/bin/X (0x7f40ec859000+0x1a8f19) [0x7f40eca01f19]
  [ 11178.148] (EE) 2: /lib/x86_64-linux-gnu/libc.so.6 (0x7f40ea9d9000+0x36d40) 
[0x7f40eaa0fd40]
  [ 11178.148] (EE) 3: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f40e67df000+0x46431) [0x7f40e6825431]
  [ 11178.148] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so 
(0x7f40e67df000+0x4dc90) [0x7f40e682cc90]
  [ 11178.148] (EE) 5: /usr/bin/X (0x7f40ec859000+0x130f5d) [0x7f40ec989f5d]
  [ 11178.148] (EE) 6: /usr/bin/X (0x7f40ec859000+0x4ffe2) [0x7f40ec8a8fe2]
  [ 11178.148] (EE) 7: /usr/bin/X (0x7f40ec859000+0x5369e) [0x7f40ec8ac69e]
  [ 11178.148] (EE) 8: /usr/bin/X (0x7f40ec859000+0x574ea) [0x7f40ec8b04ea]
  [ 11178.148] (EE) 9: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xf5) 
[0x7f40ea9faec5]
  [ 11178.148] (EE) 10: /usr/bin/X (0x7f40ec859000+0x42a5e) [0x7f40ec89ba5e]
  [ 11178.148] (EE) 
  [ 11178.148] (EE) Segmentation fault at address 0xb0b0008
  [ 11178.148] (EE) 
  Fatal server error:
  [ 11178.148] (EE) Caught signal 11 (Segmentation fault). Server aborting
  [ 11178.148] (EE) 
  [ 11178.148] (EE) 
  Please consult the The X.Org Foundation support 
 at http://wiki.x.org
   for help. 
  [ 11178.148] (EE) Please also check the log file at /var/log/Xorg.0.log for 
additional information.
  [ 11178.148] (EE) 
  [ 11178.148] (II) AIGLX: Suspending AIGLX clients for VT switch
  [ 11179.500] (EE) Server terminated with error (1). Closing log file.

  (also included as an attachment)

  kern.log:
  Jun 16 21:10:13 dell9 kernel: [11186.675544] show_signal_msg: 153 callbacks 
suppressed
  Jun 16 21:10:13 dell9 kernel: [11186.675550] PulseaudioSound[3300]: segfault 
at fe5da741ebf7 ip 01c47ce0 sp 7f61f2014538 error 5 in 
spotify[40+252]

  (I think Spotify crash was an effect rather than cause of X crash)

  Description:  Ubuntu 14.04.2 LTS
  Release:  14.04
  xorg:
Zainstalowana: 1:7.7+1ubuntu8.1
Kandydująca:   1:7.7+1ubuntu8.1
Tabela wersji:
   *** 1:7.7+1ubuntu8.1 0
  500 http://pl.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
  100 /var/lib/dpkg/status
   1:7.7+1ubuntu8 0
  500 http://pl.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

  I am a beginning Linux user. If I can provide more information, I will
  be happy to help.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-21.21~14.04.1-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Jun 16 21:15:05 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bbswitch, 0.7, 3.19.0-20-generic, x86_64: installed
   bbswitch, 0.7, 3.19.0-21-generic, x86_64: installed
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:05fa]
 Subsystem: Dell Device [1028:05fa]
  InstallationDate: Installed on 2015-06-08 (8 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  MachineType: Dell Inc. Inspiron 7537
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic.efi.signed 
root=UUID=76c8d406-894b-4013-90c6-b4313dc34b14 ro noprompt persistent quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/18/2014
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 038M0M
  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.:bvrA10:bd07/18/2014:svnDellInc.:pnInspiron7537:pvr:rvnDellInc.:rn038M0M:rvrA00:cvnDellInc.:ct8:cvr0.1:
  dmi.product.name: Inspiron 7537
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  

[Touch-packages] [Bug 1468403] Re: Characters overlap together in lines Contact/License of App details

2015-06-25 Thread Sebastien Bacher
** Also affects: unity-scope-click (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Characters overlap together in lines Contact/License of App details

Status in the base for Ubuntu mobile products:
  New
Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  $ system-image-cli -i
  current build number: 30
  device name: arale
  channel: ubuntu-touch/devel-proposed/meizu.en
  last update: 2015-06-23 02:58:10
  version version: 30
  version ubuntu: 20150622
  version device: 20150608-6e66f3c
  version custom: 20150602-731-5-32

  Steps to reproduce:
  1.Open Apps scope 
  2.Long press on an app icon
  3.App details are displayed
  4.Check the characters of line Contact/License

  Actual results:
  Two lines of characters overlap together, took Clock app for example, please 
refer to the screenshot attached.

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

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


[Touch-packages] [Bug 1391976] Re: Loading libmirclient.so twice leads to a segfault in libmirprotobuf.so

2015-06-25 Thread PS Jenkins bot
Fix committed into lp:mir at revision None, scheduled for release in
mir, milestone 0.15.0

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

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

Title:
  Loading libmirclient.so twice leads to a segfault in libmirprotobuf.so

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

Bug description:
  Can be reproduced with: load_twice libmircommon.so.1 (or .2)
  For recent versions of mir use: load_twice libmirclient.so.X (currently .8)

  load_twice.c:

  #include stdio.h
  #include dlfcn.h

  int main(int argc, char** argv)
  {
  void *dl;
  int i;

  for (i = 0; i  2; i++)
  {
     dl = dlopen (argv[1], RTLD_LAZY);
     printf (%d open dl: %p\n, i,  dl);
     if (dl)
     dlclose (dl);
  }
  }

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

-- 
Mailing list: https://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 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Barry Warsaw
On Jun 25, 2015, at 11:13 AM, Jonas Thiem wrote:

Who calls pyvenv directly?

I do.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1468042] Re: Notifications of incoming messages are displayed on the lockscreen even though they are disabled.

2015-06-25 Thread Sebastien Bacher
reassigning to unity8 which is supposed to respect that setting

** Package changed: ubuntu-system-settings (Ubuntu) = unity8 (Ubuntu)

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

Title:
  Notifications of incoming messages are displayed on the lockscreen
  even though they are disabled.

Status in unity8 package in Ubuntu:
  New

Bug description:
  I have disabled Notifications and quick settings in System Settings,
  yet notifications of incoming messages are still displayed on the
  lockscreen, including the first line or so of the message.

  I'm on a bq Aquaris 4.5 with r23 installed (and all updates applied as
  of writing this).

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

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


[Touch-packages] [Bug 1449991] Re: Upgrade poppler to latest stable version 0.32

2015-06-25 Thread Robert Ancell
Eventually. It's up to the Debian devs when they update.

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

Title:
  Upgrade poppler to latest stable version 0.32

Status in poppler package in Ubuntu:
  Fix Released

Bug description:
  Please upgrade poppler and poppler-utils to latest stable version,
  which is 0.32 since March 2015

  See also http://poppler.freedesktop.org/

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

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


[Touch-packages] [Bug 1465894] Re: xorg 1:7.7+7ubuntu4

2015-06-25 Thread Christopher M. Penalver
*** This bug is a duplicate of bug 1465892 ***
https://bugs.launchpad.net/bugs/1465892

** This bug has been marked a duplicate of bug 1465892
   xorg 1:7.7+7ubuntu4

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

Title:
  xorg 1:7.7+7ubuntu4

Status in xorg package in Ubuntu:
  New

Bug description:
  xorg 1:7.7+7ubuntu4

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic i686
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Wed Jun 17 02:29:22 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller 
[8086:2a42] (rev 07) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:02aa]
 Subsystem: Dell Device [1028:02aa]
  InstallationDate: Installed on 2015-06-15 (1 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release i386 (20150422)
  MachineType: Dell Inc. Inspiron 1545
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=af9eb444-00a6-4ce8-9048-af105df26a38 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/13/2009
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A07
  dmi.board.name: 0G848F
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA07:bd05/13/2009:svnDellInc.:pnInspiron1545:pvr:rvnDellInc.:rn0G848F:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Inspiron 1545
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Wed Jun 17 01:09:41 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   28161 
   vendor LGD
  xserver.version: 2:1.17.1-0ubuntu3

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

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


[Touch-packages] [Bug 1222356] Re: WARNING: Couldn't register with accessibility bus: Did not receive a reply.

2015-06-25 Thread LocutusOfBorg
According to the Debian bug report this bug seems to be fixed.


** Changed in: at-spi2-core (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  WARNING: Couldn't register with accessibility bus: Did not receive a
  reply.

Status in at-spi2-core package in Ubuntu:
  Fix Released
Status in at-spi2-core package in Debian:
  Fix Released

Bug description:
  The following warnings/errors appear after calling ubuntu-bug

  ** (apport-gtk:3020): WARNING **: Couldn't register with accessibility
  bus: Did not receive a reply. Possible causes include: the remote
  application did not send a reply, the message bus security policy
  blocked the reply, the reply timeout expired, or the network
  connection was broken.

  (process:4192): GLib-CRITICAL **: g_slice_set_config: assertion
  'sys_page_size == 0' failed

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: apport-gtk 2.12.1-0ubuntu3
  ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
  Uname: Linux 3.11.0-4-generic x86_64
  ApportVersion: 2.12.1-0ubuntu3
  Architecture: amd64
  Date: Sun Sep  8 10:54:01 2013
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-09-01 (371 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to saucy on 2013-09-05 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at-spi2-core/+bug/1222356/+subscriptions

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


[Touch-packages] [Bug 1359344] Re: Contradictory and/or incomplete explanation on the update dialog

2015-06-25 Thread Barry Warsaw
It doesn't come from system-image.  Removing that bug task.

** No longer affects: system-image (Ubuntu)

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

Title:
  Contradictory and/or incomplete explanation on the update dialog

Status in the base for Ubuntu mobile products:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  Once you download an update, their is dialog shown which has the
  following infos :

  [Description] The phone needs to restart to install the system update.
  [Button] Install  Restart

  The button text should be Restart  Install to match the description
  and real update installation process which means the update is
  installed after the restart not before.

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

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


[Touch-packages] [Bug 1224756] Re: Pulseaudio should integrate with trust-store

2015-06-25 Thread John McAleely
diwic will take a look at this in a couple of weeks, when he returns
from vacation.

** Changed in: pulseaudio (Ubuntu)
 Assignee: Ricardo Salveti (rsalveti) = (unassigned)

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

Title:
  Pulseaudio should integrate with trust-store

Status in the base for Ubuntu mobile products:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Triaged

Bug description:
  Currently the 'audio' policy group allows access to pulseaudio which
  allows apps to use the microphone and eavesdrop on the user.
  Pulseaudio needs to be modified to use trust-store, like location-
  service does. Integrating with trust-store means that when an app
  tries use the microphone via pulseaudio, pulseaudio will contact
  trust-store, the trust-store will prompt the user (Foo wants to use
  the microphone. Is this ok? Yes|No), optionally cache the result and
  return the result to pulseaudio. In this manner the user is given a
  contextual prompt at the time of access by the app. Using caching this
  decision can be remembered the next time. If caching is used, there
  should be a method to change the decision in settings.

  Targeting to T-Series for now, since the trust-store is not in a
  reusable form yet.

  Original description:
  David and the security team (inspired by an observation from Rick) discussed 
that when recording, pulseaudio should somehow unobtrusively show the user that 
it is recording. The easiest thing to do would be for pulseaudio to alert 
indicator-sound which would then turn its icon red (similar to 
indicator-message turning blue with new messages). Marking 'high' because apps 
with access to pulseaudio can currently eavedrop on users. If the app is 
allowed to do networking (the default for apps), then it can ship that 
information off to a server somewhere.

  Note 1, the alert to indicator-sound must happen via the out of
  process pulseaudio server and not the confined app itself to be
  effective.

  Note 2, we should consider how to enforce this for foreground apps
  only. Application lifecycle should probably handle this for 13.10
  (apps are suspended if not in foreground or if the screensaver is on),
  but we don't want an app on the converged device to record in the
  background when the user isn't paying attention. Example eavesdropping
  attack: start recording only when the screensaver is on (perhaps
  inhibiting the screensaver during recording would be enough).

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

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


[Touch-packages] [Bug 892544] Re: Unity slow after resume from suspend

2015-06-25 Thread Christopher M. Penalver
** No longer affects: systemd (Ubuntu)

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

Title:
  Unity slow after resume from suspend

Status in linux package in Ubuntu:
  Expired

Bug description:
  After resuming from suspend unity feels like it is very slow.

  How to play:

  Go to Unity Dash, show all applications, move icons up and down with
  the scroll bar, suspend and resume, perform the same operation and
  notice that is very slow.

  This already happens with the (cd or usb) of installation.

  This bug only happens with free radeon driver with driver fglrx does
  not happen.

  This only happens in unity, this does not happen in either Gnome Shell
  or Unity 2D.

  I do not know if it's a bug in Unity or compiz, but unity --reset
  solves the problem until the next suspend / resume.

  I do not know if this bug may be related to #782810 or #803943, but I
  did not notice any increase in CPU consumption.

  This bug occurs on a clean install of 11.10 [64 bits]   with a ATI
  Radeon 5770 graphics card,  Asus P6T Deluxe V2 Motherboard, Micro
  Intel Core™ i7-950 y SSD OCZ Vertex2.

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

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


[Touch-packages] [Bug 1468738] [NEW] Requesting desktop view

2015-06-25 Thread Jouni Helminen
Public bug reported:

Many times it is handy for user to request the desktop view of a site.
Sometimes the mobile version of a website is either limited or broken.

Android handle it like this:

http://cdn.cultofandroid.com/wp-content/uploads/2012/05/desktopsite.jpg

We could have a similar checkbox in browser app settings.

The user-agent of browser would then change to one of a desktop browser,
resulting in the sites displaying the desktop version

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Assignee: Olivier Tilloy (osomon)
 Status: New

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

Title:
  Requesting desktop view

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Many times it is handy for user to request the desktop view of a site.
  Sometimes the mobile version of a website is either limited or broken.

  Android handle it like this:

  http://cdn.cultofandroid.com/wp-
  content/uploads/2012/05/desktopsite.jpg

  We could have a similar checkbox in browser app settings.

  The user-agent of browser would then change to one of a desktop
  browser, resulting in the sites displaying the desktop version

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

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


[Touch-packages] [Bug 1468530] Re: Data usage summery

2015-06-25 Thread Matthew Paul Thomas
*** This bug is a duplicate of bug 1292930 ***
https://bugs.launchpad.net/bugs/1292930

Tracking data usage is bug 1287267, and providing a limit alarm is bug
1292930.

** This bug has been marked a duplicate of bug 1387047
   Can't tell how much data each app uses

** This bug is no longer a duplicate of bug 1387047
   Can't tell how much data each app uses
** This bug has been marked a duplicate of bug 1292930
   Monitor mobile data and add an option to limit mobile data usage

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

Title:
  Data usage summery

Status in indicator-network package in Ubuntu:
  Confirmed

Bug description:
  The phone does not track your data usage and does not supply a data
  usage limit alarm like you get in Android. Not having this is putting
  me off from using the phone 24/7.

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

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


[Touch-packages] [Bug 1219644] Re: Account plugins should be made confinable by apparmor

2015-06-25 Thread Jamie Strandboge
** Changed in: click-reviewers-tools
   Status: Confirmed = In Progress

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

Title:
  Account plugins should be made confinable by apparmor

Status in tools to review click packages:
  In Progress
Status in Online Accounts setup for Ubuntu Touch:
  Fix Released
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released

Bug description:
  With the current implementation, the QML files for account plugins are
  executed by the Online Accounts QML applet which in turn is executed
  within the System Settings process, which probably means that
  malicious account plugins could control everything that the System
  Settings process can (like entering/exiting the flight mode).

  Account plugins (or the Online Accounts applet itself) should probably
  be run in a separate process, which could then be assigned a stricter
  confinement with apparmor.

To manage notifications about this bug go to:
https://bugs.launchpad.net/click-reviewers-tools/+bug/1219644/+subscriptions

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


[Touch-packages] [Bug 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Jonas Thiem
Regarding a different matter: above python3-venv was mentioned for
Ubuntu 14.04 (Trusty), but I can't find such a package (neither
python3-virtualenv). Maybe a listing for which ubuntu releases and which
python versions this is supposed to be fixed would be helpful to stop
people from asking.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1465862] Re: Mouse Cursor Invisible

2015-06-25 Thread Christopher M. Penalver
Vindicator, thank you for reporting this and helping make Ubuntu better.

As per http://www.asrock.com/mb/Intel/H97M-ITXac/?cat=Downloados=BIOS
an update to your computer's buggy and outdated BIOS is available
(1.70). If you update to this following
https://help.ubuntu.com/community/BIOSUpdate does it change anything?

If it doesn't, could you please both specify what happened, and provide the 
output of the following terminal command:
sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful. As well, you don't
have to create a new bug report.

Once the BIOS is updated, and the information above is provided, then
please mark this report Status Confirmed.

Thank you for your understanding.

** Tags added: bios-outdated-1.70

** Package changed: xorg (Ubuntu) = linux (Ubuntu)

** Changed in: linux (Ubuntu)
   Importance: Undecided = Low

** Changed in: linux (Ubuntu)
   Status: New = Incomplete

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

Title:
  Mouse Cursor Invisible

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  My first experience was while using kernel 3.9.21 which I upgraded to today.
  I read about gsettings set org.gnome.settings-daemon.plugins.cursor active 
false, but it didn't bring it back (I did not reboot).
  Then I also read about CTRL-ALT-F1 - F7 and it came back.

  Then I built my own kernel 4.0, rebooted and straight away the mouse cursor 
was nowhere to be seen (don't remember if it was visible during login).
  Right away I tried CTRL-ALT-F1 - F7 and that did nothing. Luckily items will 
highlight when hovered over, so I got my browser up and also brought up the 
terminal to try gsettings again, but to no avail.
  That's when I tried ubuntu-bug report and at the very last stage when I'm 
about to press Send, the cursor shows up.

  I went ahead and sent the report anyway in hopes that the capturing
  part of the report would show the visibility issue.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  Uname: Linux 4.0.0-04-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Tue Jun 16 16:56:30 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Generation Core Processor Family Integrated Graphics 
Controller [8086:041e] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: ASRock Incorporation Device [1849:041e]
  InstallationDate: Installed on 2015-06-04 (12 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   LANGUAGE=en_US
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.0.0-04-generic 
root=/dev/mapper/ubuntu--vg-root ro noprompt quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/15/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P1.50
  dmi.board.name: H97M-ITX/ac
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.50:bd12/15/2014:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH97M-ITX/ac:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 

[Touch-packages] [Bug 1462760] Re: Qmlscene Fails

2015-06-25 Thread Dmitry Shachnev
Not a bug, you should either install qt5-default package, or use
qmlscene -qt5 instead of just qmlscene.

** Changed in: qtdeclarative-opensource-src (Ubuntu)
   Status: New = Invalid

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

Title:
  Qmlscene Fails

Status in qtdeclarative-opensource-src package in Ubuntu:
  Invalid

Bug description:
  I was just beginning to work on qml, and the ubuntu-sdk is confusing
  and bloated, so I decided that I would just use the command line. I
  created a file hello.qml with the contents indicated by the official
  tutorial. I've tried to execute each of the following commands on this
  hello.qml file, but they all return could not exec '/usr/lib/x86_64
  -linux-gnu/qt4/bin/...': No such file or directory.

  qml
  qmlscene
  qmltestrunner
  qmlviewer

  I expected a window to pop up showing the qml window with my qml
  scene.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: qml 5.2.1-3ubuntu15.1
  ProcVersionSignature: Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10
  Uname: Linux 3.16.0-38-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jun  7 08:27:22 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2015-06-07 (0 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  SourcePackage: qtdeclarative-opensource-src
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qtdeclarative-opensource-src/+bug/1462760/+subscriptions

-- 
Mailing list: https://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 1466130] Re: Intel Graphics 5500

2015-06-25 Thread Wes
HP Pavillion 15-P214DX Notebook
intel core i7-5500U CPU @ 2.40 GHz
6.00GB
64-bit Operating System, x64-based processor

On Thu, Jun 25, 2015 at 7:48 AM, Christopher M. Penalver 
christopher.m.penal...@gmail.com wrote:

 Wes, thank you for reporting this and helping make Ubuntu better.

 Could you please provide the full computer model as noted on the sticker
 of the computer itself (not from the Bug Description)?

 ** Tags added: needs-full-computer-model

 ** Changed in: xorg (Ubuntu)
Importance: Undecided = Low

 ** Changed in: xorg (Ubuntu)
Status: New = Incomplete

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1466130

 Title:
   Intel Graphics 5500

 Status in xorg package in Ubuntu:
   Incomplete

 Bug description:
   There are missing letters, some of the background display is black,
   etc. Everything only works properly when I resume boot from the
   recovery mode.

   ProblemType: Bug
   DistroRelease: Ubuntu 14.04
   Package: xorg 1:7.7+1ubuntu8.1
   ProcVersionSignature: Ubuntu 3.16.0-41.55~14.04.1-generic 3.16.7-ckt11
   Uname: Linux 3.16.0-41-generic x86_64
   .tmp.unity.support.test.1:

   ApportVersion: 2.14.1-0ubuntu3.11
   Architecture: amd64
   CompizPlugins: No value set for
 `/apps/compiz-1/general/screen0/options/active_plugins'
   CompositorRunning: compiz
   CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
   CompositorUnredirectFSW: true
   Date: Wed Jun 17 11:19:56 2015
   DistUpgraded: Fresh install
   DistroCodename: trusty
   DistroVariant: ubuntu
   GraphicsCard:
Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09)
 (prog-if 00 [VGA controller])
  Subsystem: Hewlett-Packard Company Device [103c:2293]
   InstallationDate: Installed on 2015-06-16 (0 days ago)
   InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64
 (20150218.1)
   MachineType: Hewlett-Packard HP Pavilion 15 Notebook PC
   ProcEnviron:
LANGUAGE=en_US
PATH=(custom, no user)
LANG=en_US.UTF-8
SHELL=/bin/bash
   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-41-generic.efi.signed
 root=UUID=5adf5fb3-6806-4214-bfcc-610afee5d200 ro recovery nomodeset
   Renderer: Software
   SourcePackage: xorg
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 02/02/2015
   dmi.bios.vendor: Insyde
   dmi.bios.version: F.36
   dmi.board.asset.tag: Type2 - Board Asset Tag
   dmi.board.name: 2293
   dmi.board.vendor: Hewlett-Packard
   dmi.board.version: 78.21
   dmi.chassis.type: 10
   dmi.chassis.vendor: Hewlett-Packard
   dmi.chassis.version: Chassis Version
   dmi.modalias:
 dmi:bvnInsyde:bvrF.36:bd02/02/2015:svnHewlett-Packard:pnHPPavilion15NotebookPC:pvr0971120002405F1620180:rvnHewlett-Packard:rn2293:rvr78.21:cvnHewlett-Packard:ct10:cvrChassisVersion:
   dmi.product.name: HP Pavilion 15 Notebook PC
   dmi.product.version: 0971120002405F1620180
   dmi.sys.vendor: Hewlett-Packard
   version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
   version.ia32-libs: ia32-libs N/A
   version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
   version.libgl1-mesa-dri: libgl1-mesa-dri N/A
   version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
   version.libgl1-mesa-glx: libgl1-mesa-glx N/A
   version.xserver-xorg-core: xserver-xorg-core N/A
   version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
   version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
   version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
   version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
   xserver.bootTime: Wed Jun 17 11:18:34 2015
   xserver.configfile: default
   xserver.logfile: /var/log/Xorg.0.log
   xserver.outputs:

   xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

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


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

Title:
  Intel Graphics 5500

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  There are missing letters, some of the background display is black,
  etc. Everything only works properly when I resume boot from the
  recovery mode.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-41.55~14.04.1-generic 3.16.7-ckt11
  Uname: Linux 3.16.0-41-generic x86_64
  .tmp.unity.support.test.1:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Wed Jun 17 11:19:56 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  

[Touch-packages] [Bug 1465214] Re: SIM unlock dialog can not be brought up on arale at all

2015-06-25 Thread Launchpad Bug Tracker
This bug was fixed in the package indicator-network -
0.5.1+15.10.20150618.1-0ubuntu1

---
indicator-network (0.5.1+15.10.20150618.1-0ubuntu1) wily; urgency=medium

  [ Pete Woods ]
  * Add debugging to figure out what's happening to the SIM unlock on
Arale (LP: #1465214)

 -- CI Train Bot ci-train-...@canonical.com  Thu, 18 Jun 2015 13:48:53
+

** Changed in: indicator-network (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  SIM unlock dialog can not be brought up on arale at all

Status in the base for Ubuntu mobile products:
  Fix Released
Status in indicator-network package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu:
  Incomplete
Status in unity8 package in Ubuntu:
  Incomplete
Status in indicator-network package in Ubuntu RTM:
  Fix Released

Bug description:
  moving my SIM from my krillin to the arale leaves me with a locked SIM that 
can not be unlocked ...
  the unlock dialog on boot does not come up at all, the unlock button in 
indicator or system-settings is a complete no-op 
  using the enter-pin script from ofono-scripts works.

  the krillin and arale use the exact same rc-proposed image and as
  mentioned above it works flawless with krillin.

  
  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 24
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-06-15 11:23:56
  version version: 24
  version ubuntu: 20150615
  version device: 20150608-6e66f3c
  version custom: 20150602-731-5-32

  syslog at: http://paste.ubuntu.com/11718529/

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

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


[Touch-packages] [Bug 1435040] Re: Ubuntu Phone (BQ E4.5) does not connect to car-bluetooth

2015-06-25 Thread Pcpnielsen
Cannot connect my BQ Aquaris E5 to the car unit Clarion FZ502 (with updated 
firmware 1.57) .
The phone can see the car unit, but when trying to pair no pin nr pops up for 
confirmation and connection only last 1-4 sek. After than the phone search for 
new units again.
Tried to connect via hcitool + bluez-simple-agent hci0 device-addr, but this 
results in a Page timeout

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

Title:
  Ubuntu Phone (BQ E4.5) does not connect to car-bluetooth

Status in the base for Ubuntu mobile products:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Incomplete

Bug description:
  With my FORD Focus Car, pairing does not work. The bluetooth system in
  the car searches for devices and shows Aquaris E4.5 Ubuntu Edition
  and then prompts me to connect with a 4-digit pin code, but the Ubuntu
  phone doesn't react at all and after a while the car system says that
  it failed to connect.

  image: 20150310-3201c0a
  KRILIN01A-S15A_BQ_L100EN_2020_150312
  OS Build 20

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

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


[Touch-packages] [Bug 1384393] Re: Photos in scope not visible until all loaded

2015-06-25 Thread John McAleely
@pat, is there a reason this ended up in the phondations bucket? Doesn't
look like it belongs.

** Changed in: canonical-devices-system-image
 Assignee: Canonical Devices Products (canonical-devices-products-team) = 
Pat McGowan (pat-mcgowan)

** Changed in: canonical-devices-system-image
 Assignee: Pat McGowan (pat-mcgowan) = (unassigned)

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

Title:
  Photos in scope not visible until all loaded

Status in the base for Ubuntu mobile products:
  Fix Released
Status in The Savilerow project:
  Fix Released
Status in unity-api package in Ubuntu:
  Invalid
Status in unity-scopes-api package in Ubuntu:
  Invalid
Status in unity-scopes-shell package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu RTM:
  Fix Released

Bug description:
  I think this is a generic unity8 issue that is exposed in the My
  Photos scope. This scope displays photos from the photo roll through
  mediascanner.

  Problem:
  When there are many photos, the scope does not display thumbnails for quite a 
while. (It may even be that no photo thumbnails display until all are loaded 
into memory.) This is an awkward user experience because the scope looks like 
nothing is happening for significant periods of time. 

  Expectation:
  Photo thumbnails would display as they arrive. (Perhaps there would be some 
kind of window around what is currently visible in the scope so that as soon as 
photos in the current scroll area, before it by some amount, and after it by 
some amount are in memory, they could display and the user could scroll 
somewhat, with the window moving appropriately.)

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

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


[Touch-packages] [Bug 1384393] Re: Photos in scope not visible until all loaded

2015-06-25 Thread John McAleely
I take back the assignment. there appears to be no work to do here :-)

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

Title:
  Photos in scope not visible until all loaded

Status in the base for Ubuntu mobile products:
  Fix Released
Status in The Savilerow project:
  Fix Released
Status in unity-api package in Ubuntu:
  Invalid
Status in unity-scopes-api package in Ubuntu:
  Invalid
Status in unity-scopes-shell package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu RTM:
  Fix Released

Bug description:
  I think this is a generic unity8 issue that is exposed in the My
  Photos scope. This scope displays photos from the photo roll through
  mediascanner.

  Problem:
  When there are many photos, the scope does not display thumbnails for quite a 
while. (It may even be that no photo thumbnails display until all are loaded 
into memory.) This is an awkward user experience because the scope looks like 
nothing is happening for significant periods of time. 

  Expectation:
  Photo thumbnails would display as they arrive. (Perhaps there would be some 
kind of window around what is currently visible in the scope so that as soon as 
photos in the current scroll area, before it by some amount, and after it by 
some amount are in memory, they could display and the user could scroll 
somewhat, with the window moving appropriately.)

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

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


[Touch-packages] [Bug 1449991] Re: Upgrade poppler to latest stable version 0.32

2015-06-25 Thread Launchpad Bug Tracker
This bug was fixed in the package poppler - 0.33.0-0ubuntu1

---
poppler (0.33.0-0ubuntu1) wily; urgency=medium

  * New upstream release (LP: #1449991)
  * Rename packages according to the new SONAMEs:
- libpoppler49 - libpoppler52
  * debian/libpoppler-glib8.symbols.in:
  * debian/libpoppler-qt4-4.symbols.in:
  * debian/libpoppler-qt5-1.symbols.in:
- Updated

 -- Robert Ancell robert.anc...@canonical.com  Tue, 23 Jun 2015
17:01:45 +1200

** Changed in: poppler (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  Upgrade poppler to latest stable version 0.32

Status in poppler package in Ubuntu:
  Fix Released

Bug description:
  Please upgrade poppler and poppler-utils to latest stable version,
  which is 0.32 since March 2015

  See also http://poppler.freedesktop.org/

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

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


[Touch-packages] [Bug 1462489] Re: Allow apps to keep the screen on

2015-06-25 Thread Lukáš Tinkl
The ScreenSaver QML element uses XGetScreenSaver/XSetScreenSaver and is
only functional on X11. I guess we might want to add an implementation
for Mir.

Cf.
http://code.qt.io/cgit/qt/qtsystems.git/tree/src/systeminfo/linux/qscreensaver_linux.cpp

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

Title:
  Allow apps to keep the screen on

Status in the base for Ubuntu mobile products:
  Confirmed
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  Confirmed
Status in qtubuntu package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Support an interface in QML and HTML to allow an app to keep the
  screen on while the app is active. This has come up in several
  scenarios, such as an ebook reader, a clock in night mode.

  First step is to hook up QtSystemInfo screenSaverEnabled

  One solution to inhibit the screen blanking:

  Add a new dbus rule to the default template
  Provide a mediator (unity8) to control this, so it can restore the screen 
blanking when the app is not active or has been closed
  Prompt the user for confirmation the first time the app accesses it
  use the trust store to avoid prompts each time
  add to the System settings Other app access panel an entry for Screen or 
Display so the setting could be revoked

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

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


[Touch-packages] [Bug 1449991] Re: Upgrade poppler to latest stable version 0.32

2015-06-25 Thread Pander
Thanks. Will this also end up in Debian?

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

Title:
  Upgrade poppler to latest stable version 0.32

Status in poppler package in Ubuntu:
  Fix Released

Bug description:
  Please upgrade poppler and poppler-utils to latest stable version,
  which is 0.32 since March 2015

  See also http://poppler.freedesktop.org/

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

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


[Touch-packages] [Bug 1468537] Re: package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-06-25 Thread Steve Beattie
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a regular (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

Status in gcc-4.8 package in Ubuntu:
  New

Bug description:
  i dont no

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: cpp-4.8 4.8.4-2ubuntu1~14.04
  ProcVersionSignature: Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10
  Uname: Linux 3.16.0-38-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  Date: Mon Jun 22 15:39:06 2015
  DuplicateSignature: package:cpp-4.8:4.8.4-2ubuntu1~14.04:package is in a very 
bad inconsistent state; you should  reinstall it before attempting configuration
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2015-02-24 (120 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  SourcePackage: gcc-4.8
  Title: package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1468537] Re: package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-06-25 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

Status in gcc-4.8 package in Ubuntu:
  New

Bug description:
  i dont no

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: cpp-4.8 4.8.4-2ubuntu1~14.04
  ProcVersionSignature: Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10
  Uname: Linux 3.16.0-38-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  Date: Mon Jun 22 15:39:06 2015
  DuplicateSignature: package:cpp-4.8:4.8.4-2ubuntu1~14.04:package is in a very 
bad inconsistent state; you should  reinstall it before attempting configuration
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2015-02-24 (120 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  SourcePackage: gcc-4.8
  Title: package cpp-4.8 4.8.4-2ubuntu1~14.04 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1466222] Re: Popover loosing anchor when expanding/collapsing keyboard

2015-06-25 Thread Christian Dywan
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Confirmed = In Progress

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

Title:
  Popover loosing anchor when expanding/collapsing keyboard

Status in the base for Ubuntu mobile products:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  In webbrowser we are using a Popover anchored to the address bar to
  let the user add/change data for a new bookmarked url. For that we
  have a TextField inside the Popover and when it got the focus the
  keyboard shows up. When the keyboard is visible the Popover ends up
  above its initial position. The expected result on this case would be
  to have a way to lock the Popover on its initial position, even if the
  keyboard moves over it. Attached there is a sample code that shows the
  issue.

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

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


[Touch-packages] [Bug 1454687] Re: add NX 842 hw compression patches

2015-06-25 Thread Chris J Arges
Attached is a patch to initramfs for wily. Once the kernel patches are in I'll 
build a test package for ppc64el.
Is there an easy way to test functionality? And can I do this on a 
power8/powernv system?

** Patch added: fix-lp1454687-wily.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1454687/+attachment/4420543/+files/fix-lp1454687-wily.debdiff

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

Title:
  add NX 842 hw compression patches

Status in initramfs-tools package in Ubuntu:
  In Progress
Status in linux package in Ubuntu:
  In Progress
Status in initramfs-tools source package in Vivid:
  In Progress
Status in linux source package in Vivid:
  In Progress

Bug description:
  [Impact]
  Users of PowerPC processors with an NX coprocessor will not be able to use 
features like memory compression without this set of patches.

  [Test Case]
  Run kernel on a PowerPC processor with an NX coprocessor implementing 842 
memory compression.

  [Fix]

  Commits:
  b130e7c04f1130f241eddf72098a6e08d41d08fe
  edc424f8cd84bbae530d8a9f86caf1923606fb24
  2da572c959dd5815aef153cf62010b16a498a0d3
  2062c5b6da758ca2bb64b698d7f9c5c45a06fcf9
  fdd05e4b9ae22603ed09beb4e179ae7746555a81
  7011a122383e36dab594406720fa1d089e0be8f9
  959e6659b6f74ec1fa4d391a3b88d63dc0189f36
  99182a42b7ef3d5e4180992ce01befd9e87526d2
  b8e04187c90107c58d1ccbeb68a0ba4c5bfd4167
  ed70b479c2c0b6e1319f0cb2de19f1051be219a4
  f7ead7b47a758bbee6fdc66f95f27fdb866e5e9d
  ca7fc7e962fa067ba31f76a6e5828537394f6481
  9358eac06b8fcf9fcaf566ec825fc05e2b1acd10
  3e648cbeb31be5cb84b9ec19822e2b85417f07c4
  3154de71258a32040214fda174e67b975b0810ef
  32be6d3e362b896c81aae7c635d44e5a91406ce2
  2c6f6eabc0bfcea0a62370038da713e3873cff31
  c47d63020c03659e584673f78f24f2e5de3e6b9b

  Plus the following configuration changes:

  +CONFIG_842_COMPRESS=m
  +CONFIG_842_DECOMPRESS=m
  +CONFIG_CRYPTO_DEV_NX_COMPRESS_CRYPTO=m
  +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=m
  +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=m

  In addition some modules need to be loaded by initramfs which requires
  changes to the initramfs-tools package.

  The modules are:
  nx-compress
  nx-compress-crypto
  nx-compress-platform
  nx-compress-pseries
  nx-compress-powernv
  842-decompress

  --

  Please add/include the patches for PowerPC NX coprocessor 842 memory
  compression.  They're currently in Herbert Xu's upstream tree, and
  presumably he will send them up to Linus at the 4.2 merge window.

  You can find the commits at
  git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git

  ed70b47 crypto: nx - add hardware 842 crypto comp alg
  b8e04187 crypto: nx - simplify pSeries nx842 driver
  99182a42 crypto: nx - add PowerNV platform NX-842 driver
  959e665 crypto: nx - add nx842 constraints
  7011a12 crypto: nx - add NX-842 platform frontend driver
  fdd05e4 crypto: nx - rename nx-842.c to nx-842-pseries.c
  2062c5b crypto: 842 - change 842 alg to use software
  2da572c lib: add software 842 compression/decompression
  edc424f powerpc: Add ICSWX instruction
  b130e7c powerpc: export of_get_ibm_chip_id function

  I'll update this when they are added to Linus' tree.

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

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


[Touch-packages] [Bug 1468834] Re: lightdm does not source .xsession

2015-06-25 Thread Gunnar Hjalmarsson
To me it looks like lightdm does the right thing in /usr/sbin/lightdm-
session.

According to the files in /etc/X11/Xsession.d, which belong to
x11-common, the intended behavior seems to be to not source ~/.xsession.
Which standard protocol are you referring to? Are you possibly mixing it
up with ~/.xsessionrc, which is sourced by lightdm if it exists?

** Package changed: lightdm (Ubuntu) = xorg (Ubuntu)

** Changed in: xorg (Ubuntu)
   Status: New = Incomplete

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

Title:
  lightdm does not source .xsession

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  There is a decades-old standard protocol for starting up a user's X
  session, which requires display managers to source the user's
  ~/.xsession file.  lightdm fails to do this.  See also Bug #1468832.

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

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


[Touch-packages] [Bug 974575] Re: bluetoothd crashed with SIGSEGV in g_main_context_dispatch()

2015-06-25 Thread Ivomar
*** This bug is a duplicate of bug 857702 ***
https://bugs.launchpad.net/bugs/857702

$ lsb_release -rd
Description:Ubuntu 14.04.2 LTS
Release:14.04

$ apt-cache policy bluez
bluez:
  Instalado: 4.101-0ubuntu13.1
  Candidato: 4.101-0ubuntu13.1
  Tabela de versão:
 *** 4.101-0ubuntu13.1 0
500 http://br.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 4.101-0ubuntu13 0
500 http://br.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages


I solved with

sudo apt-get build-dep bluez-tools 
apt-get source --compile bluez-tools 

Kisses from Brazil!

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

Title:
  bluetoothd crashed with SIGSEGV in g_main_context_dispatch()

Status in bluez package in Ubuntu:
  New

Bug description:
  Unknown event. Computer had just started and I had just logged in. No
  bluetooth interaction by the user had taken place, however the
  internal bluetooth chip was enabled and a previously paired set of
  bluetooth speakers was in the vicinity.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: bluez 4.98-2ubuntu7
  ProcVersionSignature: Ubuntu 3.2.0-21.34-generic-pae 3.2.13
  Uname: Linux 3.2.0-21-generic-pae i686
  ApportVersion: 2.0-0ubuntu4
  Architecture: i386
  Date: Thu Apr  5 20:30:36 2012
  ExecutablePath: /usr/sbin/bluetoothd
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha i386 
(20120201.1)
  InterestingModules: bnep rfcomm btusb bluetooth
  MachineType: ASUSTeK Computer INC. 1000
  ProcCmdline: /usr/sbin/bluetoothd
  ProcEnviron:
   PATH=(custom, no user)
   TERM=linux
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-21-generic-pae 
root=UUID=8c63ff47-6b54-4313-8ac8-39c5b4ea9918 ro quiet splash vt.handoff=7
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: bluez
  Title: bluetoothd crashed with SIGSEGV in g_main_context_dispatch()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  dmi.bios.date: 06/11/2009
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1003
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: 1000
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: x.xx
  dmi.chassis.asset.tag: 0x
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTek Computer INC.
  dmi.chassis.version: x.x
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1003:bd06/11/2009:svnASUSTeKComputerINC.:pn1000:pvrx.x:rvnASUSTeKComputerINC.:rn1000:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
  dmi.product.name: 1000
  dmi.product.version: x.x
  dmi.sys.vendor: ASUSTeK Computer INC.

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

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


[Touch-packages] [Bug 1219644] Re: Account plugins should be made confinable by apparmor

2015-06-25 Thread Jamie Strandboge
These latest issues are now being tracked in bug #1468792.

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

Title:
  Account plugins should be made confinable by apparmor

Status in tools to review click packages:
  In Progress
Status in Online Accounts setup for Ubuntu Touch:
  Fix Released
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released

Bug description:
  With the current implementation, the QML files for account plugins are
  executed by the Online Accounts QML applet which in turn is executed
  within the System Settings process, which probably means that
  malicious account plugins could control everything that the System
  Settings process can (like entering/exiting the flight mode).

  Account plugins (or the Online Accounts applet itself) should probably
  be run in a separate process, which could then be assigned a stricter
  confinement with apparmor.

To manage notifications about this bug go to:
https://bugs.launchpad.net/click-reviewers-tools/+bug/1219644/+subscriptions

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


[Touch-packages] [Bug 1468800] [NEW] Update xz-utils to 5.2.1 stable

2015-06-25 Thread JorSol
Public bug reported:

xz-utils 5.2.1 stable was released on 2015-02-26.

In the packages there is still at 5.1.1alpha+20120614

** Affects: xz-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: xz

** Description changed:

  xz-utils 5.2.1 stable was released on 2015-02-26.
  
- In the packages the is still 5.1.1alpha+20120614
+ In the packages there is still at 5.1.1alpha+20120614

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

Title:
  Update xz-utils to 5.2.1 stable

Status in xz-utils package in Ubuntu:
  New

Bug description:
  xz-utils 5.2.1 stable was released on 2015-02-26.

  In the packages there is still at 5.1.1alpha+20120614

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

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


[Touch-packages] [Bug 1464442] Re: installing or upgrading libc6 in Trusty removes all content from /tmp directory

2015-06-25 Thread Stefan Bader
I took this log while installing libc with forkstat. /tmp was cleaned
when doing this. Not sure it shows more about what is going on.

** Attachment added: forkstat.txt
   
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/1464442/+attachment/4420389/+files/forkstat.txt

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

Title:
  installing or upgrading libc6 in Trusty removes all content from /tmp
  directory

Status in linux package in Ubuntu:
  Invalid
Status in upstart package in Ubuntu:
  Triaged

Bug description:
  We are seeing an issue with installation of dkms package during a
  curtin installation which ends up with /tmp directory being wiped
  clean. This is very bad for curtin as it saves critical installation
  files in /tmp.

  It turns out that it's the of upgrading libc6, which is triggered as a
  result of installing dependencies, that removes content of /tmp. For
  example, installation of gcc results in the same result since it ends
  up with libc6 being upgraded. The only way that this won't be
  recreated is if the latest libc6 is already installed.

  This problem does not exist in precise. It can also be recreated by
  installing the .deb file for any version in trusty including 2.17.

  
  ubuntu@host:~$ ls /tmp
  tmpHHbRkP
  ubuntu@sirrush:~$ sudo apt-get install libc6
  sudo: unable to resolve host sirrush
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  The following extra packages will be installed:
    libc-dev-bin libc6-dev
  Suggested packages:
    glibc-doc
  Recommended packages:
    manpages-dev
  The following packages will be upgraded:
    libc-dev-bin libc6 libc6-dev
  3 upgraded, 0 newly installed, 0 to remove and 148 not upgraded.
  Need to get 6,714 kB of archives.
  After this operation, 6,144 B disk space will be freed.
  Do you want to continue? [Y/n] y
  Get:1 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc6-dev amd64 
2.19-0ubuntu6.6 [1,910 kB]
  Get:2 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc-dev-bin 
amd64 2.19-0ubuntu6.6 [68.9 kB]
  Get:3 http://archive.ubuntu.com/ubuntu/ trusty-updates/main libc6 amd64 
2.19-0ubuntu6.6 [4,735 kB]
  Fetched 6,714 kB in 0s (18.5 MB/s)
  Preconfiguring packages ...
  (Reading database ... 57798 files and directories currently installed.)
  Preparing to unpack .../libc6-dev_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc6-dev:amd64 (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Preparing to unpack .../libc-dev-bin_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc-dev-bin (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Preparing to unpack .../libc6_2.19-0ubuntu6.6_amd64.deb ...
  Unpacking libc6:amd64 (2.19-0ubuntu6.6) over (2.19-0ubuntu6.3) ...
  Processing triggers for man-db (2.6.7.1-1) ...
  Setting up libc6:amd64 (2.19-0ubuntu6.6) ...
  Setting up libc-dev-bin (2.19-0ubuntu6.6) ...
  Setting up libc6-dev:amd64 (2.19-0ubuntu6.6) ...
  Processing triggers for libc-bin (2.19-0ubuntu6.3) ...
  ubuntu@host:~$ ls /tmp
  ubuntu@host:~$
  

  This is very recreatable.

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

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


[Touch-packages] [Bug 1313513] Re: mountall does not honour _netdev

2015-06-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mountall (Ubuntu)
   Status: New = Confirmed

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

Title:
  mountall does not honour _netdev

Status in mountall package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  This is a fresh install of Ubuntu 14.04 LTS AMD64.  I tried
  configuring a Ceph Rados Block Device (rbd) to be mounted during boot
  on /var/lib/one, containing my OpenNebula configuration and database.

  The idea being that should the machine go belly up, I'll have an up-
  to-date snapshot of the OpenNebula data on Ceph to mount on the new
  frontend machine.

  /etc/ceph/rbdmap is configured, I set up /etc/fstab with an entry:

  /dev/rbd/pool/rbdname /var/lib/one xfs defaults,_netdev 0 1

  then rebooted.  According to mount(8), _netdev is supposed to tell
  mountall to skip mounting this device until the network is up.

  As seen from the attached snapshot, it doesn't bother to wait, and
  blindly tries to mount the RBD before connecting to Ceph: this will
  never work.

  mountall seems to rely on *knowing* a list of network file systems:
  this means when someone comes up with a new network file system, or
  uses a conventional disk file system with a remote block device,
  mountall's heuristic falls flat on its face as has been demonstrated
  here.  The problem would also exist for iSCSI, AoE, FibreChannel, nbd
  and drbd devices.

  Due to bug 1313497, the keyboard is non-functional.  Recovery is
  useless as the keyboard is broken there too, and now the machine is
  waiting for a keypress it will never see due to that bug.  A headless
  system would similarly have this problem.

  Two suggestions I would have:
  1. mountall should honour _netdev to decide whether to mount a device or not: 
this gives the user the means to manually tell mountall that the device needs 
network access to operate even if the filesystem looks to be local.  I'd wager 
that if the user specified _netdev, they probably meant it and likely know 
better than mountall.
  2. mountall should time out after a predefined period and NEVER wait 
indefinitely: even if the disk is local.  If a disk goes missing, then it is 
better the machine tries to boot in its degraded state so it can be remotely 
managed and raise an alarm, than to wait for someone to notice the machine 
being down.

  Unfortunately since the machine is now effectively bricked, I can only
  grep proxy server logs to see what packages got installed.
  mountall_2.53_amd64.deb seems to be the culprit.

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

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


[Touch-packages] [Bug 1088498] Re: Microphone not working, Ubuntu 12.10 x64, ALC887

2015-06-25 Thread Aurel Branzeanu
Not Actual

** Changed in: alsa-driver (Ubuntu)
   Status: New = Invalid

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

Title:
  Microphone not working, Ubuntu 12.10 x64, ALC887

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  Microphone not working at all.

  alsa-driver (1.0.25+dfsg-0ubuntu3)

  Here is the link with alsa information of my PC:

  http://www.alsa-
  project.org/db/?f=d84fc0cb0efdb3ec6b4a2cfd4a2959cb49db7c34

  Have tried alsamixer, pavucontrol - no way.

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

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


[Touch-packages] [Bug 1468801] [NEW] package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting config

2015-06-25 Thread wonexo
Public bug reported:

i can't install any package on my ubuntu software center and my terminal

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libglib2.0-0:i386 2.40.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
Date: Thu Jun 25 14:45:47 2015
DuplicateSignature: package:libglib2.0-0:i386:2.40.2-0ubuntu1:package is in a 
very bad inconsistent state; you should  reinstall it before attempting 
configuration
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2015-04-10 (75 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
PackageArchitecture: i386
SourcePackage: glib2.0
Title: package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

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

Title:
  package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

Status in glib2.0 package in Ubuntu:
  New

Bug description:
  i can't install any package on my ubuntu software center and my
  terminal

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: libglib2.0-0:i386 2.40.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  Date: Thu Jun 25 14:45:47 2015
  DuplicateSignature: package:libglib2.0-0:i386:2.40.2-0ubuntu1:package is in a 
very bad inconsistent state; you should  reinstall it before attempting 
configuration
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2015-04-10 (75 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  PackageArchitecture: i386
  SourcePackage: glib2.0
  Title: package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1464813] Re: package systemd 219-7ubuntu6 [modified: usr/share/dbus-1/system-services/org.freedesktop.systemd1.service] failed to install/upgrade: subprocess installed post-insta

2015-06-25 Thread Alberto Salvia Novella
** Changed in: systemd (Ubuntu)
   Importance: Undecided = High

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

Title:
  package systemd 219-7ubuntu6 [modified: usr/share/dbus-1/system-
  services/org.freedesktop.systemd1.service] failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  I was installing Privacy Indicator on my Ubuntu GNOME 15.04, then a
  message popped up saying systemd could not install because it returned
  error code 1.

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: systemd 219-7ubuntu6 [modified: 
usr/share/dbus-1/system-services/org.freedesktop.systemd1.service]
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  Date: Fri Jun 12 18:57:40 2015
  DuplicateSignature: package:systemd:219-7ubuntu6 [modified: 
usr/share/dbus-1/system-services/org.freedesktop.systemd1.service]:subprocess 
installed post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-06-12 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 15.04 Vivid Vervet - Release amd64 
(20150422)
  MachineType: Dell Inc. Inspiron N5110
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-15-generic 
root=/dev/mapper/ubuntu--gnome--vg-root ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.7ubuntu4
  SourcePackage: systemd
  Title: package systemd 219-7ubuntu6 [modified: 
usr/share/dbus-1/system-services/org.freedesktop.systemd1.service] failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/18/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A05
  dmi.board.name: 034W60
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A05
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd04/18/2011:svnDellInc.:pnInspironN5110:pvrNotSpecified:rvnDellInc.:rn034W60:rvrA05:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron N5110
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 1468800] Re: Update xz-utils to 5.2.1 stable

2015-06-25 Thread JorSol
** Description changed:

  xz-utils 5.2.1 stable was released on 2015-02-26.
  
- In the packages there is still at 5.1.1alpha+20120614
+ In the packages is still at 5.1.1alpha+20120614

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

Title:
  Update xz-utils to 5.2.1 stable

Status in xz-utils package in Ubuntu:
  Confirmed

Bug description:
  xz-utils 5.2.1 stable was released on 2015-02-26.

  In the packages is still at 5.1.1alpha+20120614

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

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


[Touch-packages] [Bug 1467602] Re: after screenlock and screen suspend, external display port monitor doesn't resume properly

2015-06-25 Thread Alberto Salvia Novella
** Changed in: xorg (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  after screenlock and screen suspend, external display port monitor
  doesn't resume properly

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  I have a Dell XPS 13 9343 with external display link monitor which I
  use in non-mirrored mode as two different screens. If the screen locks
  and suspends (simply locking is not enough) if I tap a key/move the
  mouse/etc the laptop screen comes up and the external monitor flashes
  on, but then the external monitor goes blank (but I can see its
  backlight is on). If I login, the desktop seems to think it is off and
  all of open windows are rearranged (it even puts some on different
  workspaces). The only thing resembling a workaround is if I tap a key,
  watch when the external monitor is blank, then turn off the external
  monitor, then turn it on, then unlock the screen. This isn't great
  though-- some windows are invisible and rearranged and I have to cycle
  through the different workspaces to find them and put them back.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Jun 22 11:29:08 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-18-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-20-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-21-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:0665]
  InstallationDate: Installed on 2015-06-13 (8 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
  MachineType: Dell Inc. XPS 13 9343
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=7bc4dcd2-0bd8-4e42-b8b7-9f1ed6b8a3e9 ro libata.force=noncq quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/25/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 0310JH
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd03/25/2015:svnDellInc.:pnXPS139343:pvr01:rvnDellInc.:rn0310JH:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Mon Jun 22 10:53:54 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5153 
   vendor SHP
  xserver.version: 2:1.17.1-0ubuntu3

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

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


[Touch-packages] [Bug 1468102] Re: rc.local output does not go to console

2015-06-25 Thread Alberto Salvia Novella
** Changed in: systemd (Ubuntu)
   Importance: Undecided = High

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

Title:
  rc.local output does not go to console

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  provided is user-data that should write:
  [stdout] Tue, 23 Jun 2015 20:17:52 + == successfull boot 1 ===

  to the console on the first boot.

  currently in wily, rc.local's output is not being written to the
  console, so you wont see this.

  Note, that because of bug 1468103, you wont see it on first boot. If
  this bug were fixed then you'd see it on reboots.

  Related bugs:
   * bug 1468103:  rc.local runs too early.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: systemd 220-7ubuntu1
  ProcVersionSignature: User Name 3.19.0-22.22-generic 3.19.8-ckt1
  Uname: Linux 3.19.0-22-generic x86_64
  ApportVersion: 2.17.3-0ubuntu4
  Architecture: amd64
  Date: Tue Jun 23 20:26:30 2015
  Ec2AMI: ami-0434
  Ec2AMIManifest: FIXME
  Ec2AvailabilityZone: nova
  Ec2InstanceType: m1.small
  Ec2Kernel: aki-0002
  Ec2Ramdisk: ari-0002
  Lsusb: Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: OpenStack Foundation OpenStack Nova
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-22-generic 
root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
  SourcePackage: systemd
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/01/2011
  dmi.bios.vendor: Bochs
  dmi.bios.version: Bochs
  dmi.chassis.type: 1
  dmi.chassis.vendor: Bochs
  dmi.modalias: 
dmi:bvnBochs:bvrBochs:bd01/01/2011:svnOpenStackFoundation:pnOpenStackNova:pvr2014.1.4:cvnBochs:ct1:cvr:
  dmi.product.name: OpenStack Nova
  dmi.product.version: 2014.1.4
  dmi.sys.vendor: OpenStack Foundation

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

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


[Touch-packages] [Bug 1468611] Re: dnsmasq fails to start in lxc-net

2015-06-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: dnsmasq (Ubuntu)
   Status: New = Confirmed

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

Title:
  dnsmasq fails to start in lxc-net

Status in dnsmasq package in Ubuntu:
  Confirmed
Status in lxc package in Ubuntu:
  Confirmed

Bug description:
  The lxc-net systemd service calls /usr/lib/x86_64-linux-gnu/lxc/lxc-
  net start.  This causes

  dnsmasq -s lxc -S /lxc/ -u lxc-dnsmasq --strict-order --bind-
  interfaces --pid-file=/run/lxc/dnsmasq.pid --conf-file= --listen-
  address 10.0.3.1 --dhcp-range 10.0.3.2,10.0.3.254 --dhcp-lease-max=253
  --dhcp-no-override --except-interface=lo --interface=lxcbr0 --dhcp-
  leasefile=/var/lib/misc/dnsmasq.lxcbr0.leases --dhcp-authoritative

  to be run.  With dnsmasq-base   2.72-3.1 this works fine.  With 2.73-1
  it fails with:

  dnsmasq: cannot read /etc/dnsmasq.conf: No such file or directory

  unless one creates /etc/dnsmasq.conf, after which it succeeds.  Is
  this a change in the handling of --conf-file=- ?

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

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


[Touch-packages] [Bug 1468792] Re: various apparmor denials when using ubuntu-account-plugin template

2015-06-25 Thread Jamie Strandboge
Adding an apparmor-easyprof-ubuntu task for now, but depending on what
Alberto finds, it may not need a fix.

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

Title:
  various apparmor denials when using ubuntu-account-plugin template

Status in Online Accounts setup for Ubuntu Touch:
  New
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  New

Bug description:
  This is a new bug for the problems seen in bug #1219644. Specifically:

  1. There is a denial to create this directory if it does not exist already:
  Jun 24 17:02:55 ubuntu-phablet kernel: [44001.684473] type=1400 
audit(1435183375.362:404): apparmor=DENIED operation=mkdir 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ pid=15145 
comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 ouid=32011

  2. If you create that directory, the next denial is not application specific 
(ie, it doesn't use the APP_ID):
  Jun 24 17:12:00 ubuntu-phablet kernel: [44546.645041] type=1400 
audit(1435183920.324:495): apparmor=DENIED operation=mknod 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ea1df0af2467507eb3888f68100da073
 pid=17998 comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 
ouid=32011

  3. The apparmor policy has rules for this:
owner @{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/ 
rw,
owner 
@{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/** mrwkl,

  but *not* for:
owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../ rw,
owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../** mrwkl,

  It is not clear if '3' will be fixed if '2' is or if the policy will need 
this added after '2' is fixed:
# Allow writes to application-specific QML cache directories
owner @{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/ 
  rw,
owner 
@{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/** mrwkl,

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-settings-online-accounts/+bug/1468792/+subscriptions

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


[Touch-packages] [Bug 1468611] Re: dnsmasq fails to start in lxc-net

2015-06-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: lxc (Ubuntu)
   Status: New = Confirmed

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

Title:
  dnsmasq fails to start in lxc-net

Status in dnsmasq package in Ubuntu:
  Confirmed
Status in lxc package in Ubuntu:
  Confirmed

Bug description:
  The lxc-net systemd service calls /usr/lib/x86_64-linux-gnu/lxc/lxc-
  net start.  This causes

  dnsmasq -s lxc -S /lxc/ -u lxc-dnsmasq --strict-order --bind-
  interfaces --pid-file=/run/lxc/dnsmasq.pid --conf-file= --listen-
  address 10.0.3.1 --dhcp-range 10.0.3.2,10.0.3.254 --dhcp-lease-max=253
  --dhcp-no-override --except-interface=lo --interface=lxcbr0 --dhcp-
  leasefile=/var/lib/misc/dnsmasq.lxcbr0.leases --dhcp-authoritative

  to be run.  With dnsmasq-base   2.72-3.1 this works fine.  With 2.73-1
  it fails with:

  dnsmasq: cannot read /etc/dnsmasq.conf: No such file or directory

  unless one creates /etc/dnsmasq.conf, after which it succeeds.  Is
  this a change in the handling of --conf-file=- ?

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

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


[Touch-packages] [Bug 1467595] Re: cursor sometimes disappears on XPS 13 9343 and external monitor

2015-06-25 Thread Alberto Salvia Novella
** Changed in: unity (Ubuntu)
   Importance: Undecided = High

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

Title:
  cursor sometimes disappears on XPS 13 9343 and external monitor

Status in unity package in Ubuntu:
  Confirmed

Bug description:
  I have a new Dell XPS 13 9343 with the HiDPI touch screen and am using
  an external display port monitor. Occasionally, the mouse cursor
  disappears (sometimes after screen lock, other times just normal
  usage). I saw something on stack exchange that said this might help:

  gsettings set org.gnome.settings-daemon.plugins.cursor active false

  I've done this and it sometimes helps and sometimes doesn't. I've also
  just seen the cursor come back on its own after a few minutes without
  doing anything. Trying to interact with the touch screen, then the
  mouse has no effect. Unplugging and replugging the mouse has no
  effect. Using the touchpad has no effect.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity 7.3.2+15.04.20150420-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:

  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Jun 22 11:19:40 2015
  DistUpgraded: Fresh install
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-18-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-20-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-21-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
     Subsystem: Dell Device [1028:0665]
  InstallationDate: Installed on 2015-06-13 (8 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
  MachineType: Dell Inc. XPS 13 9343
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=7bc4dcd2-0bd8-4e42-b8b7-9f1ed6b8a3e9 ro libata.force=noncq quiet 
splash vt.handoff=7
  SourcePackage: unity
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/25/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 0310JH
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd03/25/2015:svnDellInc.:pnXPS139343:pvr01:rvnDellInc.:rn0310JH:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: XPS 13 9343
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.60-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Mon Jun 22 10:53:54 2015
  xserver.configfile: default
  xserver.errors:

  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5153
   vendor SHP
  xserver.version: 2:1.17.1-0ubuntu3

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

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


[Touch-packages] [Bug 1468801] Re: package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configur

2015-06-25 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

Status in glib2.0 package in Ubuntu:
  New

Bug description:
  i can't install any package on my ubuntu software center and my
  terminal

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: libglib2.0-0:i386 2.40.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  Date: Thu Jun 25 14:45:47 2015
  DuplicateSignature: package:libglib2.0-0:i386:2.40.2-0ubuntu1:package is in a 
very bad inconsistent state; you should  reinstall it before attempting 
configuration
  ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
  InstallationDate: Installed on 2015-04-10 (75 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  PackageArchitecture: i386
  SourcePackage: glib2.0
  Title: package libglib2.0-0:i386 2.40.2-0ubuntu1 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1467983] Re: /usr/bin/unity8-dash:6:qt_message_fatal:QMessageLogger::fatal:UbuntuClientIntegration::UbuntuClientIntegration:~QString:UbuntuMirClientIntegrationPlugin::create

2015-06-25 Thread Alberto Salvia Novella
** Changed in: unity8 (Ubuntu)
   Importance: Undecided = High

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

Title:
  
/usr/bin/unity8-dash:6:qt_message_fatal:QMessageLogger::fatal:UbuntuClientIntegration::UbuntuClientIntegration:~QString:UbuntuMirClientIntegrationPlugin::create

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  8.10+15.10.20150618-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/6a729735763b723ae04371c8dd70a0329c9d879d
  contains more details.

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

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


[Touch-packages] [Bug 1468805] [NEW] Xorg crash

2015-06-25 Thread phoenix
Public bug reported:

crash of the X server

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.13.0-57.95-generic 3.13.11-ckt21
Uname: Linux 3.13.0-57-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Jun 25 17:38:02 2015
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus:
 vboxhost, 4.3.28, 3.13.0-53-generic, x86_64: installed
 vboxhost, 4.3.28, 3.13.0-54-generic, x86_64: installed
 vboxhost, 4.3.28, 3.13.0-55-generic, x86_64: installed
 vboxhost, 4.3.28, 3.13.0-57-generic, x86_64: installed
GraphicsCard:
 Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:198f]
InstallationDate: Installed on 2014-09-18 (279 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
MachineType: Hewlett-Packard HP EliteBook 840 G1
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-57-generic 
root=UUID=de0cdcfe-16fb-454a-8813-ae4a79570c64 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
SystemImageInfo: Error: [Errno 2] Aucun fichier ou dossier de ce type: 
'system-image-cli'
Title: Xorg crash
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/23/2014
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: L71 Ver. 01.14
dmi.board.name: 198F
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 15.54
dmi.chassis.asset.tag: CNU434B0WD
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL71Ver.01.14:bd07/23/2014:svnHewlett-Packard:pnHPEliteBook840G1:pvrA3009DD10303:rvnHewlett-Packard:rn198F:rvrKBCVersion15.54:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP EliteBook 840 G1
dmi.product.version: A3009DD10303
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
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 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.6
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Thu Jun 25 11:33:41 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   18510 
 vendor SDC
xserver.version: 2:1.15.1-0ubuntu2.7

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


** Tags: amd64 apport-bug compiz-0.9 crash trusty ubuntu

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

Title:
  Xorg crash

Status in xorg package in Ubuntu:
  New

Bug description:
  crash of the X server

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.13.0-57.95-generic 3.13.11-ckt21
  Uname: Linux 3.13.0-57-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Thu Jun 25 17:38:02 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   vboxhost, 4.3.28, 3.13.0-53-generic, x86_64: installed
   vboxhost, 4.3.28, 3.13.0-54-generic, x86_64: installed
   vboxhost, 4.3.28, 3.13.0-55-generic, x86_64: installed
   vboxhost, 4.3.28, 3.13.0-57-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:198f]
  InstallationDate: Installed on 2014-09-18 (279 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  MachineType: Hewlett-Packard HP EliteBook 840 G1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-57-generic 
root=UUID=de0cdcfe-16fb-454a-8813-ae4a79570c64 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  SystemImageInfo: Error: [Errno 2] Aucun 

[Touch-packages] [Bug 1468792] [NEW] various apparmor denials when using ubuntu-account-plugin template

2015-06-25 Thread Jamie Strandboge
Public bug reported:

This is a new bug for the problems seen in bug #1219644. Specifically:

1. There is a denial to create this directory if it does not exist already:
Jun 24 17:02:55 ubuntu-phablet kernel: [44001.684473] type=1400 
audit(1435183375.362:404): apparmor=DENIED operation=mkdir 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ pid=15145 
comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 ouid=32011

2. If you create that directory, the next denial is not application specific 
(ie, it doesn't use the APP_ID):
Jun 24 17:12:00 ubuntu-phablet kernel: [44546.645041] type=1400 
audit(1435183920.324:495): apparmor=DENIED operation=mknod 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ea1df0af2467507eb3888f68100da073
 pid=17998 comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 
ouid=32011

3. The apparmor policy has rules for this:
  owner @{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/ 
rw,
  owner @{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/** 
mrwkl,

but *not* for:
  owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../ rw,
  owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../** mrwkl,

It is not clear if '3' will be fixed if '2' is or if the policy will need this 
added after '2' is fixed:
  # Allow writes to application-specific QML cache directories
  owner @{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/   
rw,
  owner @{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/** 
mrwkl,

** Affects: ubuntu-system-settings-online-accounts
 Importance: Undecided
 Status: New

** Affects: apparmor-easyprof-ubuntu (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: application-confinement

** Tags added: application-confinement

** Also affects: apparmor-easyprof-ubuntu (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  various apparmor denials when using ubuntu-account-plugin template

Status in Online Accounts setup for Ubuntu Touch:
  New
Status in apparmor-easyprof-ubuntu package in Ubuntu:
  New

Bug description:
  This is a new bug for the problems seen in bug #1219644. Specifically:

  1. There is a denial to create this directory if it does not exist already:
  Jun 24 17:02:55 ubuntu-phablet kernel: [44001.684473] type=1400 
audit(1435183375.362:404): apparmor=DENIED operation=mkdir 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ pid=15145 
comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 ouid=32011

  2. If you create that directory, the next denial is not application specific 
(ie, it doesn't use the APP_ID):
  Jun 24 17:12:00 ubuntu-phablet kernel: [44546.645041] type=1400 
audit(1435183920.324:495): apparmor=DENIED operation=mknod 
profile=com.ubuntu.developer.rmescandon.asana_account-plugin_1.0.0 
name=/home/phablet/.cache/QML/Apps/online-accounts-ui/ea1df0af2467507eb3888f68100da073
 pid=17998 comm=QQmlThread requested_mask=c denied_mask=c fsuid=32011 
ouid=32011

  3. The apparmor policy has rules for this:
owner @{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/ 
rw,
owner 
@{HOME}/.cache/online-accounts-ui/id-*-@{APP_PKGNAME}_@{APP_APPNAME}/** mrwkl,

  but *not* for:
owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../ rw,
owner @{HOME}/.cache/QML/Apps/online-accounts-ui/.../** mrwkl,

  It is not clear if '3' will be fixed if '2' is or if the policy will need 
this added after '2' is fixed:
# Allow writes to application-specific QML cache directories
owner @{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/ 
  rw,
owner 
@{HOME}/.cache/QML/Apps/@{APP_PKGNAME}_@{APP_APPNAME}_@{APP_VERSION}/** mrwkl,

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-settings-online-accounts/+bug/1468792/+subscriptions

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


[Touch-packages] [Bug 1468611] Re: dnsmasq fails to start in lxc-net

2015-06-25 Thread Christopher Townsend
I'm hitting this too.  When the lxcbr0 device is not available, my
unpriv'd containers will not start due to not being able to set up the
network.

If I just touch /etc/dnsmasq.conf, then it all works as expected.

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

Title:
  dnsmasq fails to start in lxc-net

Status in dnsmasq package in Ubuntu:
  Confirmed
Status in lxc package in Ubuntu:
  Confirmed

Bug description:
  The lxc-net systemd service calls /usr/lib/x86_64-linux-gnu/lxc/lxc-
  net start.  This causes

  dnsmasq -s lxc -S /lxc/ -u lxc-dnsmasq --strict-order --bind-
  interfaces --pid-file=/run/lxc/dnsmasq.pid --conf-file= --listen-
  address 10.0.3.1 --dhcp-range 10.0.3.2,10.0.3.254 --dhcp-lease-max=253
  --dhcp-no-override --except-interface=lo --interface=lxcbr0 --dhcp-
  leasefile=/var/lib/misc/dnsmasq.lxcbr0.leases --dhcp-authoritative

  to be run.  With dnsmasq-base   2.72-3.1 this works fine.  With 2.73-1
  it fails with:

  dnsmasq: cannot read /etc/dnsmasq.conf: No such file or directory

  unless one creates /etc/dnsmasq.conf, after which it succeeds.  Is
  this a change in the handling of --conf-file=- ?

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

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


[Touch-packages] [Bug 1468799] [NEW] Too much keys in Polish keyboard

2015-06-25 Thread Bartosz Kosiorek
Public bug reported:

For Polish keyboard, to standard QWERTY keyboard the new column with
Polish letters was added.

It is not optimal because:
1. Adding additional key column, takes space, and for small devices (BQ E4.5) 
it is hard to use
2. For Polish language there are 9 diactric signs, (ą, ć, ę, ł, ń, ó, ś, ź, ż) 
but only 3 is available as separate keys
3. In Poland most common used is Polish Programmer keyboard (it is also used 
on Android phone). The diactric sign are available with SHIFT modifier 
(Example: SHIFT+a = ą, SHIFT+c = ć etc.)

Proposal:
To improve UX of Polish keyboard, I would like propose to remove Polish keys 
and use Polish Programmer style (with SHIFT modifier). With that solution it 
will be much easier typying on Polish keyboard.

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

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

Title:
  Too much keys in Polish keyboard

Status in ubuntu-keyboard package in Ubuntu:
  New

Bug description:
  For Polish keyboard, to standard QWERTY keyboard the new column with
  Polish letters was added.

  It is not optimal because:
  1. Adding additional key column, takes space, and for small devices (BQ E4.5) 
it is hard to use
  2. For Polish language there are 9 diactric signs, (ą, ć, ę, ł, ń, ó, ś, ź, 
ż) but only 3 is available as separate keys
  3. In Poland most common used is Polish Programmer keyboard (it is also 
used on Android phone). The diactric sign are available with SHIFT modifier 
(Example: SHIFT+a = ą, SHIFT+c = ć etc.)

  Proposal:
  To improve UX of Polish keyboard, I would like propose to remove Polish keys 
and use Polish Programmer style (with SHIFT modifier). With that solution it 
will be much easier typying on Polish keyboard.

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

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


[Touch-packages] [Bug 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Jim Fulton
I call it directly also.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Jim Fulton
FTR,

python3 -m venv env

Doesn't work either for me.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1457424] Re: Please update icon (May 2015)

2015-06-25 Thread Arthur Mello
** Branch linked: lp:~artmello/gallery-app/gallery-app-new_icon

** Changed in: gallery-app
   Status: New = In Progress

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

Title:
  Please update icon (May 2015)

Status in Address Book App:
  In Progress
Status in Camera App:
  In Progress
Status in the base for Ubuntu mobile products:
  New
Status in Dekko:
  Fix Released
Status in Gallery App:
  In Progress
Status in Media Player App:
  In Progress
Status in Messaging App:
  In Progress
Status in Music application for Ubuntu devices:
  Fix Released
Status in Ubuntu Notes app:
  Fix Committed
Status in Default calculator application for Ubuntu devices:
  Fix Committed
Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  Fix Committed
Status in Themes for Ubuntu:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released
Status in qtcreator-plugin-ubuntu package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-themes package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings source package in Vivid:
  New

Bug description:
  New icons are available. Please update app to new icon. Note the icon
  inside the app will need updating as well as the icon in the store
  (when uploaded).

  256x256 and 512x512 Icons attached in zip file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/address-book-app/+bug/1457424/+subscriptions

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


[Touch-packages] [Bug 1468800] Re: Update xz-utils to 5.2.1 stable

2015-06-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xz-utils (Ubuntu)
   Status: New = Confirmed

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

Title:
  Update xz-utils to 5.2.1 stable

Status in xz-utils package in Ubuntu:
  Confirmed

Bug description:
  xz-utils 5.2.1 stable was released on 2015-02-26.

  In the packages is still at 5.1.1alpha+20120614

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

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


[Touch-packages] [Bug 1468800] Re: Update xz-utils to 5.2.1 stable

2015-06-25 Thread dino99
Not upgraded since a while sadly.
Changelog : http://git.tukaani.org/?p=xz.git;a=blob;f=NEWS;hb=HEAD

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

Title:
  Update xz-utils to 5.2.1 stable

Status in xz-utils package in Ubuntu:
  Confirmed

Bug description:
  xz-utils 5.2.1 stable was released on 2015-02-26.

  In the packages is still at 5.1.1alpha+20120614

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

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


[Touch-packages] [Bug 1468020] Re: Two GPS compatible apps conflict and loose GPS

2015-06-25 Thread Ronnie Tucker
This actually now seems like it's the first GPS app run will keep the
GPS and not release it when closed.

Try this:
1 Reboot the MX4
2 Open (for example) HERE maps
3 Check it's got your location right
4 Keep HERE open, but choose a different GPS app (eg: OSMTouch)
5 The second GPS app will have  your location
6 Move to a new location
7 HERE maps (in this case) will update fine
8 Second app will not update to the new location

Even closing the first app before opening the second makes no
difference. The GPS is locked to that first app until a reboot is done.
Also applies to the Nearby scope (as a second app).

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

Title:
  Two GPS compatible apps conflict and loose GPS

Status in location-service package in Ubuntu:
  New

Bug description:
  Meizu MX4 with Ubuntu 15.04 r2

  1. run OSMscout (for example)
  2. drive/cycle a distance to confirm that GPS tracking is working fine
  3. run the camera app (for example)
  4. take a few photos (they'll be tagged with GPS info)
  5. switch to OSMscout
  6. drive/cycle and OSM will now not update from GPS

  Haven't tested this with other apps as yet, but it seems that one app
  will take control of the GPS and not hand it back. (For want of a
  better explanation.)

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

-- 
Mailing list: https://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 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Barry Warsaw
On Jun 25, 2015, at 04:31 PM, Donald Stufft wrote:

FWIW I think that ``python -m venv`` is the easiest (only?) way to
reliably say that you want to create a virtual environment for *this*
particular Python.

Even though I don't generally use it, I agree with the above.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1424263] Re: Broken dependencies

2015-06-25 Thread James Cain
Not sure about Steam, but #6 above solves Chrome bug #1429137.

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

Title:
  Broken dependencies

Status in mesa package in Ubuntu:
  Confirmed
Status in steam package in Ubuntu:
  Confirmed

Bug description:
  I can not install Steam from Steam website because reported package
  has broken dependencies. This bug affect any user that will install
  Ubuntu 14.04.2. Please fix it fast, cause i can not play my games on
  Linux.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgl1-mesa-dri:i386 (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  346.35  Sat Jan 10 21:27:15 
PST 2015
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  ApportVersion: 2.14.1-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Feb 21 21:40:49 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: nvidia, 346.35, 3.16.0-30-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM107 [GeForce GTX 750 Ti] [10de:1380] (rev a2) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:84ac]
  InstallationDate: Installed on 2015-02-20 (1 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-30-generic.efi.signed 
root=UUID=ea315497-1076-4f76-a2da-dc65caca572f ro quiet splash loglevel=0 
vt.handoff=7
  SourcePackage: mesa
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.10
  dmi.board.name: H87 Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.10:bd07/09/2014:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH87Pro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.
  version.compiz: compiz 1:0.9.11.3+14.04.20150122-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.56-1~ubuntu2
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sat Feb 21 17:22:09 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

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

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


[Touch-packages] [Bug 1468832] [NEW] lightdm sources .profile

2015-06-25 Thread Derek Martin
Public bug reported:

It is a bug for any display manager to read .profile--you guys are
absolutely killing me with this.  The user's .profile is to be read by
the shell, on interactive shell (i.e. terminal) logins ONLY.  The man
page for bash explains this in detail; it's also discussed in the dash
man page.  The problem with display managers reading .profile is that it
is the place where commands to set up your terminal (i.e. stty) go--this
is the entire point of differentiating interactive shells from non-
interactive shells, and it's the reason only interactive shells read
.profile at all.  Currently, if you have any such commands in your
.profile, lightdm barfs on them, delaying the login session and forcing
you to click on a prompt.  This is extremely annoying (and wrong)!

It would be satisfactory to make lightdm not display the errors, but
that's the wrong solution.  There's already a decades-established method
of getting X display managers to source your environment settings: the
.xsession file.  It should be read by ALL display managers (or the
session file that starts them).  If you have common environment settings
you want set in all your shells, the correct way to handle this is:

.bashrc:
# set all common environment vars here
ENV_VAR=foo
...

.profile:
# set up terminal
stty erase
# BASH already sources .bashrc by default on interactive sessions

.xsession:
if [ -f .bashrc ] source .bashrc

If you're not using BASH, you can still use this method without changing
anything, except in .profile you need to explicitly source the .bashrc
file.  Of course you can change the name of the file that contains the
common settings to reflect that your shell is not BASH; since the file
is sourced by your other files explicitly, it does not matter what the
user calls it.

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

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

Title:
  lightdm sources .profile

Status in lightdm package in Ubuntu:
  New

Bug description:
  It is a bug for any display manager to read .profile--you guys are
  absolutely killing me with this.  The user's .profile is to be read by
  the shell, on interactive shell (i.e. terminal) logins ONLY.  The man
  page for bash explains this in detail; it's also discussed in the dash
  man page.  The problem with display managers reading .profile is that
  it is the place where commands to set up your terminal (i.e. stty) go
  --this is the entire point of differentiating interactive shells from
  non-interactive shells, and it's the reason only interactive shells
  read .profile at all.  Currently, if you have any such commands in
  your .profile, lightdm barfs on them, delaying the login session and
  forcing you to click on a prompt.  This is extremely annoying (and
  wrong)!

  It would be satisfactory to make lightdm not display the errors, but
  that's the wrong solution.  There's already a decades-established
  method of getting X display managers to source your environment
  settings: the .xsession file.  It should be read by ALL display
  managers (or the session file that starts them).  If you have common
  environment settings you want set in all your shells, the correct way
  to handle this is:

  .bashrc:
  # set all common environment vars here
  ENV_VAR=foo
  ...

  .profile:
  # set up terminal
  stty erase
  # BASH already sources .bashrc by default on interactive sessions

  .xsession:
  if [ -f .bashrc ] source .bashrc

  If you're not using BASH, you can still use this method without
  changing anything, except in .profile you need to explicitly source
  the .bashrc file.  Of course you can change the name of the file that
  contains the common settings to reflect that your shell is not BASH;
  since the file is sourced by your other files explicitly, it does not
  matter what the user calls it.

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

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


[Touch-packages] [Bug 1454776] Re: [SRU] New stable release 2.44.1

2015-06-25 Thread Launchpad Bug Tracker
This bug was fixed in the package glib2.0 - 2.44.1-1ubuntu1

---
glib2.0 (2.44.1-1ubuntu1) vivid; urgency=medium

  * Merge stable release from Debian to vivid. (LP: #1454776), remaining
change:
- d/p/0001-Don-t-warn-about-deprecated-properties-by-default.patch:
  + Don't warn about deprecated properties by default

glib2.0 (2.44.1-1) unstable; urgency=medium

  * New upstream release 2.44.1
+ Improve the default application algorithm
+ Bump the number of children a GType can have
+ Various testsuite improvements

glib2.0 (2.44.0-3) unstable; urgency=medium

  * Team upload.

  [ Simon McVittie ]
  * d/p/regex-test-do-not-assert-that-system-PCRE-allows-P-1.patch:
update to the version that went upstream in 2.45.1. No functional change.
  * d/p/regex-if-PCRE-is-8.34-or-later-disable-auto-possessi.patch:
update to my latest version submitted upstream, which fixes undefined
behaviour in the unlikely event that G_REGEX_OPTIMIZE is combined
with g_regex_match_all().
  * d/p/regex-test-do-not-assert-that-system-PCRE-still-has-.patch:
update to my latest version submitted upstream, which asserts that
a newer-than-8.32 system PCRE does not have the bug in question.
  * d/p/gdbus-serialization-use-check_serialization-instead-.patch:
add patch to fix FTBFS in non-minimal environments (libdbus-1-dev
installed). Applied upstream for 2.45.2.
  * d/p/gdbus-peer-test-let-GDBusServer-start-before-notifyi.patch:
add patch fixing a race condition in the gdbus-peer test.
Applied upstream for 2.45.2.
  * d/p/GDBus-tests-change-progress-noise-from-if-not-quiet-.patch:
add patch fixing potential test failures caused by corrupt TAP
output. Applied upstream for 2.45.2.
  * d/p/gdatetime-test-don-t-assume-that-time-stands-still.patch:
add patch fixing potential test failures at the boundary between
one second and the next. Applied upstream for 2.45.2.
  * d/p/10_kfreebsd_issetugid_prototype.patch,
d/p/11_kfreebsd_pthread_condattr_setclock_prototype.patch,
d/p/13_sparc_prlimit_prototype.patch:
drop workarounds for #635205, #703545, #703559 which were all fixed
in jessie
  * d/p/81-skip-monitor-test-on-non-linux.patch: add DEP-3 information
  * d/p/90_gio-modules-multiarch-compat.patch: add DEP-3 information

  [ Iain Lane ]
  * d/p/0001-Fix-trashing-on-overlayfs.patch: Take patch from
upstream bug to fix trashing on overlayfs.

glib2.0 (2.44.0-2) unstable; urgency=medium

  * Upload to unstable.
  * debian/watch: Consider stable versions only.

 -- Iain Lane iain.l...@canonical.com  Wed, 13 May 2015 17:59:35 +0100

** Changed in: glib2.0 (Ubuntu Vivid)
   Status: Fix Committed = Fix Released

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

Title:
  [SRU] New stable release 2.44.1

Status in glib2.0 package in Ubuntu:
  Fix Released
Status in glib2.0 source package in Vivid:
  Fix Released

Bug description:
  Upload this stable bugfix release

  glib2.0 (2.44.1-1) UNRELEASED; urgency=medium

    * New upstream release 2.44.1
  + Improve the default application algorithm
  + Bump the number of children a GType can have
  + Various testsuite improvements

   -- Iain Lane la...@debian.org  Wed, 13 May 2015 17:27:56 +0100

  This is a merge from unstable (wily is taking from experimental). It
  includes some other testsuite fixes. I think/hope they should be okay
  to SRU too.

  [ QA  regression potential ]

  Under the GNOME MRE, assume the bugs are fixed. Installl the update 
  use your system as normal. If we don't see any regressions either
  manually or on errors, we're good.

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

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


[Touch-packages] [Bug 1454776] Update Released

2015-06-25 Thread Brian Murray
The verification of the Stable Release Update for glib2.0 has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  [SRU] New stable release 2.44.1

Status in glib2.0 package in Ubuntu:
  Fix Released
Status in glib2.0 source package in Vivid:
  Fix Released

Bug description:
  Upload this stable bugfix release

  glib2.0 (2.44.1-1) UNRELEASED; urgency=medium

    * New upstream release 2.44.1
  + Improve the default application algorithm
  + Bump the number of children a GType can have
  + Various testsuite improvements

   -- Iain Lane la...@debian.org  Wed, 13 May 2015 17:27:56 +0100

  This is a merge from unstable (wily is taking from experimental). It
  includes some other testsuite fixes. I think/hope they should be okay
  to SRU too.

  [ QA  regression potential ]

  Under the GNOME MRE, assume the bugs are fixed. Installl the update 
  use your system as normal. If we don't see any regressions either
  manually or on errors, we're good.

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

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


[Touch-packages] [Bug 1290847] Re: pyvenv fails due to mising ensurepip module

2015-06-25 Thread Donald Stufft
FWIW I think that ``python -m venv`` is the easiest (only?) way to
reliably say that you want to create a virtual environment for *this*
particular Python. This is especially important when multiple versions
of Python that have venv start to be able to be installed (either via
the system repos, or via PPAs like deadsnakes). In particular, there is
an inprogress rewrite of virtualenv to use the venv module for isolation
that will essentially be doing ``python -m venv``.

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

Title:
  pyvenv fails due to mising ensurepip module

Status in python3-defaults package in Ubuntu:
  Fix Released
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 package in Debian:
  Fix Released

Bug description:
  Hello,

  I noticed the following

  # fails
  python3.4 -m venv --clear python-venv
  Error: Command '['.../external/python-venv/bin/python3.4', '-Im', 
'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1

  # works, but no pip
  python3.4 -m venv --clear --without-pip python-venv

  Thank you

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

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


[Touch-packages] [Bug 1468832] Re: lightdm sources .profile

2015-06-25 Thread Derek Martin
See also Bug #1468834.

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

Title:
  lightdm sources .profile

Status in lightdm package in Ubuntu:
  New

Bug description:
  It is a bug for any display manager to read .profile--you guys are
  absolutely killing me with this.  The user's .profile is to be read by
  the shell, on interactive shell (i.e. terminal) logins ONLY.  The man
  page for bash explains this in detail; it's also discussed in the dash
  man page.  The problem with display managers reading .profile is that
  it is the place where commands to set up your terminal (i.e. stty) go
  --this is the entire point of differentiating interactive shells from
  non-interactive shells, and it's the reason only interactive shells
  read .profile at all.  Currently, if you have any such commands in
  your .profile, lightdm barfs on them, delaying the login session and
  forcing you to click on a prompt.  This is extremely annoying (and
  wrong)!

  It would be satisfactory to make lightdm not display the errors, but
  that's the wrong solution.  There's already a decades-established
  method of getting X display managers to source your environment
  settings: the .xsession file.  It should be read by ALL display
  managers (or the session file that starts them).  If you have common
  environment settings you want set in all your shells, the correct way
  to handle this is:

  .bashrc:
  # set all common environment vars here
  ENV_VAR=foo
  ...

  .profile:
  # set up terminal
  stty erase
  # BASH already sources .bashrc by default on interactive sessions

  .xsession:
  if [ -f .bashrc ] source .bashrc

  If you're not using BASH, you can still use this method without
  changing anything, except in .profile you need to explicitly source
  the .bashrc file.  Of course you can change the name of the file that
  contains the common settings to reflect that your shell is not BASH;
  since the file is sourced by your other files explicitly, it does not
  matter what the user calls it.

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

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


[Touch-packages] [Bug 1468834] [NEW] lightdm does not source .xsession

2015-06-25 Thread Derek Martin
Public bug reported:

There is a decades-old standard protocol for starting up a user's X
session, which requires display managers to source the user's
~/.xsession file.  lightdm fails to do this.  See also Bug #1468832.

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

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

Title:
  lightdm does not source .xsession

Status in lightdm package in Ubuntu:
  New

Bug description:
  There is a decades-old standard protocol for starting up a user's X
  session, which requires display managers to source the user's
  ~/.xsession file.  lightdm fails to do this.  See also Bug #1468832.

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

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


[Touch-packages] [Bug 1468838] [NEW] Boost coroutine built as static library only

2015-06-25 Thread sdeber
Public bug reported:

The coroutine library was only distributed as a static library, its
dynamic version is missing.

** Affects: boost1.54 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Boost coroutine built as static library only

Status in boost1.54 package in Ubuntu:
  New

Bug description:
  The coroutine library was only distributed as a static library, its
  dynamic version is missing.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/boost1.54/+bug/1468838/+subscriptions

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


[Touch-packages] [Bug 1468832] Re: lightdm sources .profile

2015-06-25 Thread Anders Kaseorg
.xsession is sourced within /bin/sh, not /bin/bash. It wouldn’t make
sense to source .bashrc from it (unless you happened to write a .bashrc
that doesn’t use any bash features).

Also, .bashrc is sourced by _every_ interactive shell, so if you were to add 
things to environment variables from .bashrc, e.g.
  PATH=$HOME/bin:$PATH
then they would show up multiple times in shells launched inside shells. This 
is just an annoyance for $PATH, but it might be an important problem for other 
variables, so you would need to add code to test whether the variable had 
already been changed, etc.

This is why Ubuntu’s default .profile (see /etc/skel/.profile) sets up
$PATH and the default .bashrc (see /etc/skel/.bashrc) does not.

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

Title:
  lightdm sources .profile

Status in lightdm package in Ubuntu:
  New

Bug description:
  It is a bug for any display manager to read .profile--you guys are
  absolutely killing me with this.  The user's .profile is to be read by
  the shell, on interactive shell (i.e. terminal) logins ONLY.  The man
  page for bash explains this in detail; it's also discussed in the dash
  man page.  The problem with display managers reading .profile is that
  it is the place where commands to set up your terminal (i.e. stty) go
  --this is the entire point of differentiating interactive shells from
  non-interactive shells, and it's the reason only interactive shells
  read .profile at all.  Currently, if you have any such commands in
  your .profile, lightdm barfs on them, delaying the login session and
  forcing you to click on a prompt.  This is extremely annoying (and
  wrong)!

  It would be satisfactory to make lightdm not display the errors, but
  that's the wrong solution.  There's already a decades-established
  method of getting X display managers to source your environment
  settings: the .xsession file.  It should be read by ALL display
  managers (or the session file that starts them).  If you have common
  environment settings you want set in all your shells, the correct way
  to handle this is:

  .bashrc:
  # set all common environment vars here
  ENV_VAR=foo
  ...

  .profile:
  # set up terminal
  stty erase
  # BASH already sources .bashrc by default on interactive sessions

  .xsession:
  if [ -f .bashrc ] source .bashrc

  If you're not using BASH, you can still use this method without
  changing anything, except in .profile you need to explicitly source
  the .bashrc file.  Of course you can change the name of the file that
  contains the common settings to reflect that your shell is not BASH;
  since the file is sourced by your other files explicitly, it does not
  matter what the user calls it.

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

-- 
Mailing list: https://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   >