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

2015-06-23 Thread Daniel Andrews
rm-rubinstein,

Can you tell me how you created that tail file as I am having the same
issue.

Thanks

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

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

Status in network-manager package in Ubuntu:
  Confirmed

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

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

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

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

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

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

2015-06-23 Thread Michi Henning
** Changed in: unity-scopes-api (Ubuntu)
 Assignee: (unassigned) => Pawel Stolowski (stolowski)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to 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:
  New

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 
  #include 
  #include 

  #include 
  #include 

  #include 

  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 1468199] [NEW] package gconf2 3.2.6-3ubuntu1 failed to install/upgrade: 子进程 已安装 post-installation 脚本 返回错误状态 1

2015-06-23 Thread 罗颉
Public bug reported:

Traceback (most recent call last):
  File "/usr/sbin/gconf-schemas", line 125, in 
trim(os.path.join(defaults_dest,"%gconf-tree.xml"), get_valid_languages())
  File "/usr/sbin/gconf-schemas", line 18, in get_valid_languages
langs.add(l.split('_')[0])
TypeError: 'str' does not support the buffer interface
dpkg: 处理软件包 gconf2 (--unpack)时出错:
 子进程 已安装 post-installation 脚本 返回错误状态 1
在处理时有错误发生:
 update-notifier-common
 gconf2
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: gconf2 3.2.6-3ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
Uname: Linux 3.19.0-21-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
Date: Wed Jun 24 14:26:54 2015
DuplicateSignature: package:gconf2:3.2.6-3ubuntu1:子进程 已安装 post-installation 脚本 
返回错误状态 1
ErrorMessage: 子进程 已安装 post-installation 脚本 返回错误状态 1
InstallationDate: Installed on 2015-06-23 (1 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: gconf
Title: package gconf2 3.2.6-3ubuntu1 failed to install/upgrade: 子进程 已安装 
post-installation 脚本 返回错误状态 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  package gconf2 3.2.6-3ubuntu1 failed to install/upgrade: 子进程 已安装 post-
  installation 脚本 返回错误状态 1

Status in gconf package in Ubuntu:
  New

Bug description:
  Traceback (most recent call last):
File "/usr/sbin/gconf-schemas", line 125, in 
  trim(os.path.join(defaults_dest,"%gconf-tree.xml"), get_valid_languages())
File "/usr/sbin/gconf-schemas", line 18, in get_valid_languages
  langs.add(l.split('_')[0])
  TypeError: 'str' does not support the buffer interface
  dpkg: 处理软件包 gconf2 (--unpack)时出错:
   子进程 已安装 post-installation 脚本 返回错误状态 1
  在处理时有错误发生:
   update-notifier-common
   gconf2
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: gconf2 3.2.6-3ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  Date: Wed Jun 24 14:26:54 2015
  DuplicateSignature: package:gconf2:3.2.6-3ubuntu1:子进程 已安装 post-installation 
脚本 返回错误状态 1
  ErrorMessage: 子进程 已安装 post-installation 脚本 返回错误状态 1
  InstallationDate: Installed on 2015-06-23 (1 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.7ubuntu4
  SourcePackage: gconf
  Title: package gconf2 3.2.6-3ubuntu1 failed to install/upgrade: 子进程 已安装 
post-installation 脚本 返回错误状态 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


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

2015-06-23 Thread XiaoGuo, Liu
Public bug reported:

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 
#include 
#include 

#include 
#include 

#include 

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;
}

** Affects: unity-scopes-api (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-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:
  New

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 
  #include 
  #include 

  #include 
  #include 

  #include 

  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 1381713] Re: Support policy query interface for file

2015-06-23 Thread Michi Henning
** Changed in: thumbnailer
   Status: In Progress => Fix Committed

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

Title:
  Support policy query interface for file

Status in AppArmor Linux application security framework:
  Triaged
Status in Media Hub:
  New
Status in Media Scanner v2:
  New
Status in Thumbnail generator for all kinds of files:
  Fix Committed
Status in apparmor package in Ubuntu:
  Fix Committed

Bug description:
  This bug tracks the work needed to support querying if a label can
  access a file. This is particularly useful with trusted helpers where
  an application requests access to a file and the trusted helper does
  something with it. For example, on Ubuntu when an app wants to play a
  music file, it (eventually) goes through the media-hub service. The
  media-hub service should be able to query if the app's policy has
  access to the file.

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

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


[Touch-packages] [Bug 1465675] Re: API needed to determine if App ID is a scope

2015-06-23 Thread Michi Henning
** 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/1465675

Title:
  API needed to determine if App ID is a scope

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

Bug description:
  
  There are a few cases where we'd like it if a higher level service could 
determine if a particular AppID is connected to a scope. This mostly deals with 
requests that relate to trusted session prompts as they need to be overlayed on 
top of the dash instead of the calling process. Another is so that URL 
dispatcher can return better errors on the scope:// URL namespace. I don't 
think that it needs to be complex, roughly something like this:

  bool isScope (const char * appid);

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

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


[Touch-packages] [Bug 1468184] [NEW] package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2015-06-23 Thread matthieu
Public bug reported:

Impossible to install/update

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: linux-image-3.19.0-21-generic 3.19.0-21.21
ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
Uname: Linux 3.13.0-55-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  matthieu   2131 F pulseaudio
 /dev/snd/controlC0:  matthieu   2131 F pulseaudio
Date: Wed Jun 24 07:18:35 2015
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
DuplicateSignature: 
package:linux-image-3.19.0-21-generic:3.19.0-21.21:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
HibernationDevice: RESUME=UUID=b2512ccb-b2a9-4fdb-91cc-724153a452d8
InstallationDate: Installed on 2015-06-01 (22 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
MachineType: Dell Inc. XPS 13 9343
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=4e184db3-5efa-419d-82a5-4b8983839a78 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 "acpi_osi=Windows 2013" init=/sbin/upstart
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc N/A
SourcePackage: initramfs-tools
Title: package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
UpgradeStatus: Upgraded to vivid on 2015-06-23 (0 days ago)
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.

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


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

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

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

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  Impossible to install/update

  ProblemType: Package
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-21-generic 3.19.0-21.21
  ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-55-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  matthieu   2131 F pulseaudio
   /dev/snd/controlC0:  matthieu   2131 F pulseaudio
  Date: Wed Jun 24 07:18:35 2015
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-trusty-amd64-20140620-0
  DuplicateSignature: 
package:linux-image-3.19.0-21-generic:3.19.0-21.21:run-parts: 
/etc/kernel/postinst.d/initramfs-tools exited with return code 1
  ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  HibernationDevice: RESUME=UUID=b2512ccb-b2a9-4fdb-91cc-724153a452d8
  InstallationDate: Installed on 2015-06-01 (22 days ago)
  InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
  MachineType: Dell Inc. XPS 13 9343
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=4e184db3-5efa-419d-82a5-4b8983839a78 ro quiet splash pcie_aspm=force 
radeon.modeset=0 nouveau.modeset=0 "acpi_osi=Windows 2013" init=/sbin/upstart
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: initramfs-tools
  Title: package linux-image-3.19.0-21-generic 3.19.0-21.21 failed to 
install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with 
return code 1
  UpgradeStatus: Upgraded to vivid on 2015-06-23 (0 days ago)
  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.
  d

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

2015-06-23 Thread Larry Michel
Brad, one additional bit of info:  it is through ssh that I am able to
access the environment.

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

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

Status in eglibc package in Ubuntu:
  Invalid
Status in linux package in Ubuntu:
  Incomplete

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/eglibc/+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 1464442] Re: installing or upgrading libc6 in Trusty removes all content from /tmp directory

2015-06-23 Thread Larry Michel
Brad, I need some clarification on the apport-collect script. The curtin
environment is a very limited installation environment and when I ran
apport-collect, it was attempting to open a socket but never returned.
AFAICT, it needs to open a browser to allow user to authenticate through
a browser, but I don't see a way for me to do it that way since there's
no browser. Is it possible for the tool to collect this data offline
then use the apport-collect to post the data from another system from
which I can authenticate from? If so, can you please share the steps?

Seth, we haven't recreated this without MAAS but we think that this
should re-creatable in any environment with an overlay root... You could
try with a LiveCD for example. Once inside the environment, then you
would verify content of /tmp then run "sudo apt-get update && sudo apt-
get install libc6" assuming that the libc6 version in the archive is
newer. If the content of /tmp is empty, then issue was successfully
recreated.

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

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

Status in eglibc package in Ubuntu:
  Invalid
Status in linux package in Ubuntu:
  Incomplete

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/eglibc/+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 1468091] Re: Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Martin Pitt
Fixed upstream in https://github.com/systemd/systemd/commit/bb5c512de22,
part of 221 release. I'll upload a backport if that's critical for
alpha-1.

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

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

** Summary changed:

- Ubuntu 15.10 Alpha-1 candidates do not boot in EC2
+ Ubuntu 15.10 Alpha-1 candidates do not boot in EC2 with Xen

** Summary changed:

- Ubuntu 15.10 Alpha-1 candidates do not boot in EC2 with Xen
+ [udev] Ubuntu 15.10 Alpha-1 candidates do not boot in EC2 with Xen

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

Title:
  [udev] Ubuntu 15.10 Alpha-1 candidates do not boot in EC2 with Xen

Status in systemd package in Ubuntu:
  Fix Committed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1412932] Re: Brightness doesn't change

2015-06-23 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Brightness doesn't change

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Since I upgraded my ubuntu 14.04 to 14.10 the brightness doesn't
  change it always shows the highest as possible.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: xorg 1:7.7+7ubuntu2
  ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
  Uname: Linux 3.16.0-29-generic i686
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.7-0ubuntu8
  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: Tue Jan 20 16:15:00 2015
  DistUpgraded: 2014-12-04 01:27:04,588 DEBUG enabling apt cron job
  DistroCodename: utopic
  DistroVariant: ubuntu
  DkmsStatus:
   v4l2loopback, 0.8.0, 3.16.0-28-generic, i686: installed
   v4l2loopback, 0.8.0, 3.16.0-29-generic, i686: installed
   virtualbox, 4.3.18, 3.13.0-40-generic, i686: installed
   virtualbox, 4.3.18, 3.16.0-28-generic, i686: installed
   virtualbox, 4.3.18, 3.16.0-29-generic, i686: installed
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Holco Enterprise Co, Ltd/Shuttle Computer Device [1297:2027]
  InstallationDate: Installed on 2014-07-03 (201 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release i386 (20131016.1)
  MachineType: Standard Standard
  ProcEnviron:
   LANGUAGE=pt_BR:pt:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=pt_BR.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-29-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: Upgraded to utopic on 2014-12-04 (47 days ago)
  dmi.bios.date: 05/06/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1.07
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: Standard
  dmi.board.vendor: Standard
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Standard
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.07:bd05/06/2013:svnStandard:pnStandard:pvrTobefilledbyO.E.M.:rvnStandard:rnStandard:rvrTobefilledbyO.E.M.:cvnStandard:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: Standard
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: Standard
  version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
  version.libdrm2: libdrm2 2.4.56-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.2-0ubuntu0.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.2-0ubuntu0.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1.2
  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.914-1~exp1ubuntu4.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2
  xserver.bootTime: Tue Jan 20 14:59:25 2015
  xserver.configfile: default
  xserver.errors: Server terminated successfully (0). Closing log file.
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id6972 
   vendor AUO
  xserver.version: 2:1.16.0-1ubuntu1.2

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

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


[Touch-packages] [Bug 1445911] Re: Characters missing in Ubuntu 14.04

2015-06-23 Thread Launchpad Bug Tracker
[Expired for xorg (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Characters missing in Ubuntu 14.04

Status in xorg package in Ubuntu:
  Expired

Bug description:
  Every once in a while characters appear to be missing in
  menus/toolbars/windows headers/...

  Sometimes just moving them around or moving the mous over them seem to
  help to recover the missing characters, but most of the times I have
  to close-reopen in order to get things back to normal.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-34.47~14.04.1-generic 3.16.7-ckt8
  Uname: Linux 3.16.0-34-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.10
  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: Sun Apr 19 14:31:52 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.13.0-45-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.13.0-46-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.13.0-48-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.13.0-49-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.16.0-34-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: Dell Device [1028:0665]
  InstallationDate: Installed on 2015-02-06 (71 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: Dell Inc. XPS 13 9343
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-34-generic 
root=UUID=0aebf329-4141-4999-bdf0-b2e1c67c706b ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  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.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.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: Sun Apr 19 13:29:06 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   0 
   vendor PHL
  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/1445911/+subscriptions

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


[Touch-packages] [Bug 1467695] Re: Alt-Grave (`) switcher has flickering/pulsing shadow artifacts

2015-06-23 Thread sumarlidason
Affects me under workstation 9.0.4 (unity 7.2.5) & metal powered by
nvidia gtx680

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

Title:
  Alt-Grave (`) switcher has flickering/pulsing shadow artifacts

Status in unity package in Ubuntu:
  Confirmed

Bug description:
  1. Hold down Alt and keep it held down.
  2. Press and release the key above Tab (Grave, or `). Keep alt held down.

  While Alt is held down, the drop shadows for the window or windows of
  the current application will keep building up and then going back to
  normal and building up again. It's almost as though the windows are
  being redrawn may times per second into a buffer without clearing it
  first each time (but clearing it every second or so).

  While this is happening, I notice that the drop shadow for the top bar
  does the same thing. This can also be observed if one uses Alt-Tab to
  select an app that has multiple windows that then expand out into a
  similar display.

  I've observed this on systems with Intel, NVIDIA, and ATI display hardware, 
so I don't think it's hardware-specific.
  All my Ubuntu systems have 2 or 3 monitors. I suspect multiple monitors are 
needed to reproduce this.

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

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


[Touch-packages] [Bug 1467695] Re: Alt-Grave (`) switcher has flickering/pulsing shadow artifacts

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

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

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

Title:
  Alt-Grave (`) switcher has flickering/pulsing shadow artifacts

Status in unity package in Ubuntu:
  Confirmed

Bug description:
  1. Hold down Alt and keep it held down.
  2. Press and release the key above Tab (Grave, or `). Keep alt held down.

  While Alt is held down, the drop shadows for the window or windows of
  the current application will keep building up and then going back to
  normal and building up again. It's almost as though the windows are
  being redrawn may times per second into a buffer without clearing it
  first each time (but clearing it every second or so).

  While this is happening, I notice that the drop shadow for the top bar
  does the same thing. This can also be observed if one uses Alt-Tab to
  select an app that has multiple windows that then expand out into a
  similar display.

  I've observed this on systems with Intel, NVIDIA, and ATI display hardware, 
so I don't think it's hardware-specific.
  All my Ubuntu systems have 2 or 3 monitors. I suspect multiple monitors are 
needed to reproduce this.

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

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


[Touch-packages] [Bug 1468029] Re: unity8 crash breaking autopilot tests entering text with OSK

2015-06-23 Thread Ken VanDine
Link to a CI log:
https://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/117/testReport/junit/ubuntu_system_settings.tests.test_cellular/DualSimCellularTestCase/test_change_sim1_name/

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

Title:
  unity8 crash breaking autopilot tests entering text with OSK

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  When running the autopilot tests for ubuntu-system-settings, at some
  point it fails to enter text using the OSK.  It works fine for smaller
  subsets of the tests, but not a full run.  It simply stops entering
  text with keyboard.write.  Once it gets in this state, it will
  continue to fail even for single tests until unity8 is restarted.
  During the test run, there is a unity8 crash file generated.  I wasn't
  able to create a bug report for the problem directly from the OOPS on
  errors.ubuntu.com, you can find it at
  https://errors.ubuntu.com/oops/c4124284-1999-11e5-8fcb-fa163e75317b

  My device:
  current build number: 234
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-06-23 00:04:08
  version version: 234
  version ubuntu: 20150623
  version device: 20150529.1
  version custom: 20150623

  @osomon has seen the same problem while running the webbrowser-app
  tests on krillin with vivid-proposed.

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

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


[Touch-packages] [Bug 1467743] Re: Lots of thumbnail requests with invalid size

2015-06-23 Thread Michi Henning
It looks like this seriously affects the user experience too.

Take about 40-50 photos. Run gallery-app. Go to the photo roll.

Scroll up and down until all the thumbnails have been generated. (This
loads up the cache.)

Run tail -f ~/.cache/upstart/dbus.log on the phone.

Now scroll up and down in the photo roll.

The trace shows that all the thumbnail requests are made with
QSize(-1,-1). The thumbnailer delivers each thumbnail in around 1.5
msec. But the screen shows lots of spinners for quite some time.
Presumably, that's happening because all the thumbnails are 1920 in
size, but need to be scaled down to the size required on-screen. Asking
for the thumbnails in the correct size would make things go considerably
faster, I suspect.

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

Title:
  Lots of thumbnail requests with invalid size

Status in Gallery App:
  New
Status in thumbnailer package in Ubuntu:
  New

Bug description:
  When using the ballery app, the thumbnailer gets loads of requests
  with QSize(-1,-1), for example, when opening the gallery app.

  The problem with this is that the thumbnailer interprets this to mean
  "give me the largest size you can (limited to a 1920x1920 bounding
  box). That's very expensive, especially in terms of disk space,
  because that 1920 "thumbnail" ends up going into the cache, needlessly
  hogging space.

  We are about to add a qWarning message to the QML side that reports
  invalid QSize requests. For now, we are going to retain the old
  behavior, but this will turn into an error soon.

  The most effective way to use the thumbnailer is to simply ask for an
  image in the desired size, with neither width nor height of -1. The
  thumbnailer will efficiently produce a thumbnail for that. (We do lots
  of internal caching to avoid extracting or downloading a thumbnail
  unnecessarily.)

  The thumbnailer may deliver a thumbnail that is smaller than what was
  asked for (because it never up-scales) so, if asked for a thumbnail of
  size 256, it's guaranteed not to be larger, but might be smaller (if
  the original image is smaller than what was asked for).

  Could you please adjust the gallery app behavior to ask for specific,
  valid sizes only?

  Running a tail -f on ~/.cache/upstart/dbus.log allows you to see the
  requests as they are made. Each request shows the size that was asked
  for.

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

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


[Touch-packages] [Bug 1454416] Re: [Dialogs] WiFi connect dialog does not allow pasting of password

2015-06-23 Thread handsome_feng
*** This bug is a duplicate of bug 1435035 ***
https://bugs.launchpad.net/bugs/1435035

** This bug has been marked a duplicate of bug 1435035
   No Copy&Paste for wifi key possible .

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

Title:
  [Dialogs] WiFi connect dialog does not allow pasting of password

Status in Ubuntu UX bugs:
  Triaged
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Reproduce:
  1. Trigger a "Connect to WiFi" dialog by tapping a secure WiFi network with 
no stored secrets
  2. Try pasting something into the password field

  What happens:
  Nothing

  What should happen:
  You should be able to paste text into the password field

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

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


[Touch-packages] [Bug 1468100] Re: ListItems with trailing but no leading actions, after swiping right break selectMode

2015-06-23 Thread Victor Thompson
I can confirm this bug. I wonder if the ListItem's selectMode property
is becoming disconnected from the view's property. Perhaps a work around
would be to individual set each ListItem's selectMode property [0].

0 -
https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.ListItem
/#selectMode-prop

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

Title:
  ListItems with trailing but no leading actions, after swiping right
  break selectMode

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

Bug description:
  If you have a listitem with trailing actions but no leading actions it
  is possible to break the selectMode as the press and hold signal is
  never fired.

  Steps with the example QML app [0]
  1) Swipe one of the listitems to the right (to try and reveal a leading 
action [which there aren't any])
  2) Press and hold on the swiped listitem
  3) Notice nothing happens (also notice nothing in the log for the press and 
hold appears)
  4) Press and hold on another listitem
  5) Notice that all but the swiped listitem change to selectMode=True

  What was expected:
  3) For all of the items to change to selectMode=True
  5) For all of the items to change to selectMode=True

  Note that you can 'fix' the listitem by swiping to the left and
  clicking on an action or dismissing the swipe, then you are able to
  press and hold it to activate selectMode correctly again.

  0 - http://pastebin.ubuntu.com/11764308/

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

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


[Touch-packages] [Bug 1468100] Re: ListItems with trailing but no leading actions, after swiping right break selectMode

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

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

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

Title:
  ListItems with trailing but no leading actions, after swiping right
  break selectMode

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

Bug description:
  If you have a listitem with trailing actions but no leading actions it
  is possible to break the selectMode as the press and hold signal is
  never fired.

  Steps with the example QML app [0]
  1) Swipe one of the listitems to the right (to try and reveal a leading 
action [which there aren't any])
  2) Press and hold on the swiped listitem
  3) Notice nothing happens (also notice nothing in the log for the press and 
hold appears)
  4) Press and hold on another listitem
  5) Notice that all but the swiped listitem change to selectMode=True

  What was expected:
  3) For all of the items to change to selectMode=True
  5) For all of the items to change to selectMode=True

  Note that you can 'fix' the listitem by swiping to the left and
  clicking on an action or dismissing the swipe, then you are able to
  press and hold it to activate selectMode correctly again.

  0 - http://pastebin.ubuntu.com/11764308/

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

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


[Touch-packages] [Bug 1401141] Re: DHCP server does not work for IPoIB (Infiniband)

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package isc-dhcp - 4.2.4-7ubuntu14.1

---
isc-dhcp (4.2.4-7ubuntu14.1) utopic; urgency=medium

  * Replaced broken IB support with working one (LP: #1401141):
- removed:
  + d/p/infiniband_lpf
  + d/p/infiniband_improved_xid
- added:
  + d/p/dhcp-4.2.5-lpf-ib.patch
  + d/p/dhcp-4.2.4-improved-xid.patch
  + d/p/dhcp-4.2.2-gpxe-cid.patch
  + d/p/dhcp-4.2.4-improved-xid-correct-byte-order.patch

 -- Rafael David Tinoco (Inaddy)   Tue, 02 Jun 2015
15:14:52 +0100

** Changed in: isc-dhcp (Ubuntu Utopic)
   Status: Fix Committed => Fix Released

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

Title:
  DHCP server does not work for IPoIB (Infiniband)

Status in isc-dhcp package in Ubuntu:
  Fix Released
Status in isc-dhcp source package in Trusty:
  Fix Committed
Status in isc-dhcp source package in Utopic:
  Fix Released
Status in isc-dhcp source package in Vivid:
  Fix Released

Bug description:
  [Impact]

   * DHCP for InfiniBand IPoIB does not work currently.
   * After providing missing GPXE patch it had problems (by Mellanox tests).
   * IPoIB patches from Fedora project (out-of-upstream-tree) were outdated.

  [Test Case]

   * To have IPoIB devices (2 if possible)
   * Try to acquire IP using either DHCPv4 or DHCPv6

  [Regression Potential]

   * DHCP for InfiniBand was not working
   * Based on already implemented code (Fedora)
   * Mellanox has tested it

  [Other Info]

  Original BUG description:

  Release:  Ubuntu 14.04.1 LTS
  Version:  4.2.4-7ubuntu12

  The current DHCP package in Ubuntu can't handle IPoIB clients.  For
  IB, Mellanox uses IPoIB, which is “Eth emulator” for the control path.
  DHCP is not working in this mode without a patch for DHCP server.

  ISC-DHCP-SERVER Missing GPXE patch.

  After applying GPXE patch only we faced the following problems:

  After apply

  1.

  dhcp ipoib, does not write in the log on which interface the dhcp work
  upon when starting the dhcp server using “/etc/init.d/isc-dhcp-server
  start” we don’t see the line that tells on which interfaces the dhcpd
  is listening on the /var/log/syslog when running it with “dhcpd –d”
  command – we do see it.

  2.

  dhcp ipoib ipv6, it did not provide ip6 when we start 2 ib interfaces
  in a parallel using the following setup:

  HOST_A: 
  acting as a dhcp server, listening on one of its 
  ipoib (ib0) interfaces.

  HOST_B: 
  running dhcp clients on two ipoib interfaces (ib1, ib2) ib1 
  and ib2 are two ports onf the same HCA both interfaces are
  configured in /etc/interfaces such as:

  auto ib1
  iface ib1 inet6 dhcp
 both 
interfaces are configured in /etc/dhcp/dhclient.conf with their 
dhcp-client-identifier Ib0@HOST_A, Ib1@HOST_B and Ib2@HOST_B are connected to 
an infiniband switch.

  We are running on the client (HOST_B) the following:

  $ ifup ib1
  -> ib1 get configured as expected

  but then when we run on the other interface:
  $ ifup ib2
  -> ib2 get configured, but ib1 is losing its configuration

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

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


[Touch-packages] [Bug 1401141] Re: DHCP server does not work for IPoIB (Infiniband)

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package isc-dhcp - 4.3.1-5ubuntu2.2

---
isc-dhcp (4.3.1-5ubuntu2.2) vivid; urgency=medium

  * Replaced broken IB support with working one (LP: #1401141):
- removed:
  + d/p/infiniband_lpf
  + d/p/infiniband_improved_xid
- added:
  + d/p/dhcp-lpf-ib.patch
  + d/p/dhcp-improved-xid.patch
  + d/p/dhcp-gpxe-cid.patch
  + d/p/dhcp-improved-xid-correct-byte-order.patch

 -- Rafael David Tinoco (Inaddy)   Tue, 02 Jun 2015
15:34:42 +0100

** Changed in: isc-dhcp (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 isc-dhcp in Ubuntu.
https://bugs.launchpad.net/bugs/1401141

Title:
  DHCP server does not work for IPoIB (Infiniband)

Status in isc-dhcp package in Ubuntu:
  Fix Released
Status in isc-dhcp source package in Trusty:
  Fix Committed
Status in isc-dhcp source package in Utopic:
  Fix Released
Status in isc-dhcp source package in Vivid:
  Fix Released

Bug description:
  [Impact]

   * DHCP for InfiniBand IPoIB does not work currently.
   * After providing missing GPXE patch it had problems (by Mellanox tests).
   * IPoIB patches from Fedora project (out-of-upstream-tree) were outdated.

  [Test Case]

   * To have IPoIB devices (2 if possible)
   * Try to acquire IP using either DHCPv4 or DHCPv6

  [Regression Potential]

   * DHCP for InfiniBand was not working
   * Based on already implemented code (Fedora)
   * Mellanox has tested it

  [Other Info]

  Original BUG description:

  Release:  Ubuntu 14.04.1 LTS
  Version:  4.2.4-7ubuntu12

  The current DHCP package in Ubuntu can't handle IPoIB clients.  For
  IB, Mellanox uses IPoIB, which is “Eth emulator” for the control path.
  DHCP is not working in this mode without a patch for DHCP server.

  ISC-DHCP-SERVER Missing GPXE patch.

  After applying GPXE patch only we faced the following problems:

  After apply

  1.

  dhcp ipoib, does not write in the log on which interface the dhcp work
  upon when starting the dhcp server using “/etc/init.d/isc-dhcp-server
  start” we don’t see the line that tells on which interfaces the dhcpd
  is listening on the /var/log/syslog when running it with “dhcpd –d”
  command – we do see it.

  2.

  dhcp ipoib ipv6, it did not provide ip6 when we start 2 ib interfaces
  in a parallel using the following setup:

  HOST_A: 
  acting as a dhcp server, listening on one of its 
  ipoib (ib0) interfaces.

  HOST_B: 
  running dhcp clients on two ipoib interfaces (ib1, ib2) ib1 
  and ib2 are two ports onf the same HCA both interfaces are
  configured in /etc/interfaces such as:

  auto ib1
  iface ib1 inet6 dhcp
 both 
interfaces are configured in /etc/dhcp/dhclient.conf with their 
dhcp-client-identifier Ib0@HOST_A, Ib1@HOST_B and Ib2@HOST_B are connected to 
an infiniband switch.

  We are running on the client (HOST_B) the following:

  $ ifup ib1
  -> ib1 get configured as expected

  but then when we run on the other interface:
  $ ifup ib2
  -> ib2 get configured, but ib1 is losing its configuration

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

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


[Touch-packages] [Bug 1401141] Update Released

2015-06-23 Thread Chris Halse Rogers
The verification of the Stable Release Update for isc-dhcp 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 isc-dhcp in Ubuntu.
https://bugs.launchpad.net/bugs/1401141

Title:
  DHCP server does not work for IPoIB (Infiniband)

Status in isc-dhcp package in Ubuntu:
  Fix Released
Status in isc-dhcp source package in Trusty:
  Fix Committed
Status in isc-dhcp source package in Utopic:
  Fix Released
Status in isc-dhcp source package in Vivid:
  Fix Released

Bug description:
  [Impact]

   * DHCP for InfiniBand IPoIB does not work currently.
   * After providing missing GPXE patch it had problems (by Mellanox tests).
   * IPoIB patches from Fedora project (out-of-upstream-tree) were outdated.

  [Test Case]

   * To have IPoIB devices (2 if possible)
   * Try to acquire IP using either DHCPv4 or DHCPv6

  [Regression Potential]

   * DHCP for InfiniBand was not working
   * Based on already implemented code (Fedora)
   * Mellanox has tested it

  [Other Info]

  Original BUG description:

  Release:  Ubuntu 14.04.1 LTS
  Version:  4.2.4-7ubuntu12

  The current DHCP package in Ubuntu can't handle IPoIB clients.  For
  IB, Mellanox uses IPoIB, which is “Eth emulator” for the control path.
  DHCP is not working in this mode without a patch for DHCP server.

  ISC-DHCP-SERVER Missing GPXE patch.

  After applying GPXE patch only we faced the following problems:

  After apply

  1.

  dhcp ipoib, does not write in the log on which interface the dhcp work
  upon when starting the dhcp server using “/etc/init.d/isc-dhcp-server
  start” we don’t see the line that tells on which interfaces the dhcpd
  is listening on the /var/log/syslog when running it with “dhcpd –d”
  command – we do see it.

  2.

  dhcp ipoib ipv6, it did not provide ip6 when we start 2 ib interfaces
  in a parallel using the following setup:

  HOST_A: 
  acting as a dhcp server, listening on one of its 
  ipoib (ib0) interfaces.

  HOST_B: 
  running dhcp clients on two ipoib interfaces (ib1, ib2) ib1 
  and ib2 are two ports onf the same HCA both interfaces are
  configured in /etc/interfaces such as:

  auto ib1
  iface ib1 inet6 dhcp
 both 
interfaces are configured in /etc/dhcp/dhclient.conf with their 
dhcp-client-identifier Ib0@HOST_A, Ib1@HOST_B and Ib2@HOST_B are connected to 
an infiniband switch.

  We are running on the client (HOST_B) the following:

  $ ifup ib1
  -> ib1 get configured as expected

  but then when we run on the other interface:
  $ ifup ib2
  -> ib2 get configured, but ib1 is losing its configuration

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

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


[Touch-packages] [Bug 1466947] Re: Shell rotation breaks Greeter's wide view

2015-06-23 Thread Josh Arenson
@mzanetti I'm not sure what I was using when I reported this (thought it
was trunk). While I see that WideView should load, it _does_ check for
tabletMode || multiUser when determining which view to load. Currently,
nobody is setting the tabletMode property. Perhaps this is still a bug,
just a very small one that currently doesn't show any symptoms? If
https://code.launchpad.net/~dandrader/unity8/fixOrientedShellTests/+merge/262490
gets merged, it should resolve this issue and make things more clear as
well.

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

Title:
  Shell rotation breaks Greeter's wide view

Status in unity8 package in Ubuntu:
  New
Status in unity8-desktop-session package in Ubuntu:
  New

Bug description:
  The shell rotation branch removed properties that the greeter relies
  on to determine if it should load wide/narrow view. Since the property
  was removed, the conditions always evaluate to false and only the
  NarrowView greeter can be loaded.

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

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


[Touch-packages] [Bug 1325142] Re: failure to update libpam-systemd in 14.04 due to missing logind init script

2015-06-23 Thread Scarlett Clark
ok looking at https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-
upgrader/+bug/1326412

The package is not supported in Trusty?

I can't seem to even remove it, it fails with the same error.

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

Title:
  failure to update libpam-systemd in 14.04 due to missing logind init
  script

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

Bug description:
  Hi,

  while running inside an i386 lubuntu 14.04 chroot, upgrading libpam-
  systemd to version 204-5ubuntu20.2 fails leaving dpkg in a broken
  state. 'apt-get -f install' from within the chroot will not fix it,
  but if the build is made bootable and put into a iso/VM you can
  recover that way in a live session.

  the problem seems to be the /var/lib/dpkg/info/libpam-systemd:i386.prerm 
script failing to bring down the logind daemon with 'invoke-rc.d systemd-logind 
stop', because invoke-rd.d is only looking for the /etc/init.d/ script (doesn't 
exist) and not /etc/init/systemd-logind.conf (does exist).
  ?

  
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be upgraded:
libpam-systemd
  1 upgraded, 0 newly installed, 0 to remove and 113 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/25.2 kB of archives.
  After this operation, 1024 B of additional disk space will be used.
  (Reading database ... 113986 files and directories currently installed.)
  Preparing to unpack .../libpam-systemd_204-5ubuntu20.2_i386.deb ...
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: warning: subprocess old pre-removal script returned error exit status 
100
  dpkg: trying script from the new package instead ...
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: error processing archive 
/var/cache/apt/archives/libpam-systemd_204-5ubuntu20.2_i386.deb (--unpack):
   subprocess new pre-removal script returned error exit status 100
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: error while cleaning up:
   subprocess installed post-installation script returned error exit status 100
  Errors were encountered while processing:
   /var/cache/apt/archives/libpam-systemd_204-5ubuntu20.2_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  
  Our build logs available upon request, but the scripts to setup the chroot to 
recreate it are here:

https://trac.osgeo.org/osgeo/browser/livedvd/gisvm/trunk/bin/build_chroot_nightly.sh

https://trac.osgeo.org/osgeo/browser/livedvd/gisvm/trunk/bin/inchroot_nightly.sh

  
  In a web-search I notice a few others running into the same bug,

  chatter on irc at [18:10], http://irclogs.ubuntu.com/2013/05/28
  /%23ubuntu-devel.txt

  someone else's build log:
  https://launchpad.net/~qutim/+archive/qutim/+build/6039800

  launchpad bug #1323575 seems to be a duplicate of this one.

  
  perhaps related to older launchpad bug #1305395 ?

  note we are also suffering from a failure with update-initramfs, not sure of 
the root cause of that one but I thought I'd mention it in case they were 
related, since they both started happening about the same time, a couple weeks 
ago. (launchpad bug #1317602)
  It all worked ok after the inital releases of 14.04, so something to do with 
a package update since then.

  
  thanks,
  Hamish

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

-- 
Mailing list: https://launchpad.net/~touch-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-23 Thread Robert Ancell
According to reverse-depends it appears you did them all!

-- 
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:
  In Progress

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 1447119] Re: /usr/bin/signonpluginprocess:11:QNetworkReply::error:OAuth2PluginNS::BasePlugin::onPostFinished:OAuth2PluginNS::BasePlugin::qt_static_metacall:QObject::event:notify

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package signon-plugin-oauth2 -
0.22+15.10.20150603-0ubuntu1

---
signon-plugin-oauth2 (0.22+15.10.20150603-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Merge from upstream
- Fix unreliable test
- Disconnect from reply on SSL errors (LP: #1447119)
- Allow disabling the "state" parameter (LP: #1449268)

signon-plugin-oauth2 (0.22+15.04.20150417-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Return the list of granted permissions to the client
- Require Qt5 for building
- Use a "state" parameter to protect against CSRF (LP: #1432857)

  [ CI Train Bot ]
  * New rebuild forced.

signon-plugin-oauth2 (0.21+15.04.20150327-0ubuntu1) vivid;
urgency=medium

  * New rebuild forced.

signon-plugin-oauth2 (0.21+15.04.20150319-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * Remove dependency on signon-ui (LP: #1362640)

signon-plugin-oauth2 (0.21+15.04.20150128-0ubuntu2) UNRELEASED;
urgency=medium

  * Merge from upstream
- Proceed with the normal authentication if an error occurs when using the
  RefreshToken (LP: #1420934)
- Remove the unused "type" query parameters which breaks DropBox

signon-plugin-oauth2 (0.21+15.04.20150128-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Add ForceTokenRefresh flag for forcing a new token
- OAuth2: implement a fallback mechanism when parsing replies
  (LP: #1415376)
- Fixes build with -Werror=unused-variable
- Improve test coverage

signon-plugin-oauth2 (0.20+15.04.20141110-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Merge from upstream

signon-plugin-oauth2 (0.20+15.04.20141031-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Delay instantiation of QNetworkAccessManager (LP: #1377181)

signon-plugin-oauth2 (0.20+14.10.20140912.1-0ubuntu1) utopic;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- OAuth 2.0: follow the spec more closely, add Vimeo support
- Tests: increase test coverage

signon-plugin-oauth2 (0.19+14.10.20140513-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Do not store invalid expiration times (LP: #1316021)

signon-plugin-oauth2 (0.19+14.10.20140509.2-0ubuntu1) utopic;
urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Robert Bruce Park ]
  * Correct path in debian/signon-plugin-oauth2.install fixes FTBFS (LP:
#1317986) (LP: #1317986)

signon-plugin-oauth2 (0.19+14.04.20140305-0ubuntu2) trusty;
urgency=medium

  * Build for Architecture:any.

signon-plugin-oauth2 (0.19+14.04.20140305-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * No change rebuild against Qt 5.2.1.

  [ Ubuntu daily release ]
  * New rebuild forced

signon-plugin-oauth2 (0.19+14.04.20131126.2-0ubuntu1) trusty;
urgency=low

  [ Alberto Mardegan ]
  * New upstream release (0.19)
- OAuth 1.0a: allow oauth_token_secret to be empty.
  * New upstream release (0.18)
- OAuth2: Allow clients to provide tokens to store.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 55

signon-plugin-oauth2 (0.17bzr13.04.26+13.10.20130708-0ubuntu1) saucy;
urgency=low

  [ Ken VanDine ]
  * don't build on powerpc as the new Qt5-based version don't have
powerpc qtscripts. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 53

signon-plugin-oauth2 (0.17bzr13.04.26+13.10.20130705-0ubuntu1) saucy;
urgency=low

  [ Ken VanDine ]
  * don't build on powerpc as the new Qt5-based version don't have
powerpc qtscripts. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 51

signon-plugin-oauth2 (0.17bzr13.04.26daily13.06.05.1-0ubuntu1) saucy;
urgency=low

  * Automatic snapshot from revision 49

signon-plugin-oauth2 (0.17bzr13.04.26daily13.05.01.1ubuntu.unity.next-
0ubuntu1) raring; urgency=low

  [ Alberto Mardegan ]
  * Automatic snapshot from revision 47 (bootstrap)
  * New upstream release.
- Use libsignon-qt5 when building for Qt5

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 48 (ubuntu-unity/next)

signon-plugin-oauth2 (0.15-0ubuntu1) raring; urgency=low

  * New upstream release.
- Don't return the cached OAuth tokens to applications which have
  requested additional permissions

  [ Robert Bruce Park ]
  * Inline packaging metadata.

signon-plugin-oauth2 (0.14-0ubuntu1) raring; urgency=low

  * New upstream release.
- Don't lose refresh token after first usage (LP: #1029289)
- Support application/x-www-form-urlencoded replies,
  needed by github.com
  * -debian/patches/no_debug.patch
- The next release of signond will control the amount of logging

signon-plugin-oauth2 (0.12-0ubuntu1) raring; urgency=low

  * New upstream release.

signon-plugin-oauth2 (0.11-0ubuntu3) quantal; urgency=low

  * debian/

[Touch-packages] [Bug 1447175] Re: FTBFS with Qt 5.5 'QDataStream stream' has initializer but incomplete type

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package signon - 8.57+15.10.20150616-0ubuntu1

---
signon (8.57+15.10.20150616-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Merge from upstream
- lib: reset the DBus proxy when registration failed
- Fix build with Qt 5.5 (LP: #1447175)
- Remove obsolete warning about not running as root

  [ CI Train Bot ]
  * New rebuild forced.

signon (8.57+15.04.20150204.1-0ubuntu1) vivid; urgency=medium

  [ Alberto Mardegan ]
  * Enable P2P D-Bus connections (LP: #1415492)
  * Add missing build dependency on libdbus-1-dev

signon (8.57+15.04.20141127.1-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Merge from upstream

signon (8.57+14.10.20141006-0ubuntu1) utopic; urgency=low

  [ Alberto Mardegan ]
  * Sync from upstream

signon (8.57+14.10.20140912-0ubuntu1) utopic; urgency=low

  [ Alberto Mardegan ]
  * Fix signon-plugins-dev dependencies

signon (8.57+14.10.20140827-0ubuntu1) utopic; urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Build: add CMake config files for Qt5
- Tests: make database test more robust
- signond: notify clients of credentials updates
- signond: fix passing of DBus maps to plugins
- lib: don't emit a critical warning on p2p socket failure
- lib/plugins: do not build a static library

  [ Ubuntu daily release ]
  * New rebuild forced

signon (8.56+14.04.20140307-0ubuntu3) utopic; urgency=medium

  * Changes to enable reverse-deps to be cross-built, since cross-pkg-config
no longer looks in /usr/lib/pkgconfig for pcfiles. (LP: #1316667)
  * Install into Multi-Arch directories and set M-A: Same on library packages.

signon (8.56+14.04.20140307-0ubuntu2) trusty; urgency=medium

  * In debian/rules move qt4 cmake files to not clash with qt5 cmake
files

signon (8.56+14.04.20140307-0ubuntu1) trusty; urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Make it easier to use with CMake by adding a Config*.cmake files
  This allow applications using cmake to do:
  find_package(SignOnQt 8.55 REQUIRED)
- signond: don't attempt demarshalling an invalid QVariant
  * Fix tests for Qt 5.2 Merge from upstream. (LP: #1156776, #1258578,
#1267805, #1237782)

  [ CI bot ]
  * No change rebuild against Qt 5.2.1.

  [ Timo Jyrinki ]
  * Drop quilt usage as recommended for daily release packages.

  [ Ubuntu daily release ]
  * New rebuild forced

signon (8.55+14.04.20131212-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * Do not use qDeleteAll() on the QObject's children. (LP: #1156776,
#1258578, #1237782)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 609

signon (8.55+14.04.20131127-0ubuntu1) trusty; urgency=low

  [ Alberto Mardegan ]
  * New pull from upstream
- Increate tiemout in authsession test
- signond: on idle timeout, directly delete all AuthSessions (should fix
  a race condition which makes a test fail)
- signond: avoid rewriting password with empty string
- signond: fix a crash when destroying authentication sessions
  * debian/control
- Remove signon-keyring-extension from Recommends field
  * New upstream version
- Preserve value of IdentityInfo::storeSecret
  Fixes: http://code.google.com/p/accounts-sso/issues/detail?id=210
- Build speedup: reduce usage of CONFIG+=ordered
- Use any available extension plugins, unless one is explicitly
  configured.
- Unregister the identity on disposable timeout (fixes a race condition).
  * debian/rules
- Remove architecture-specific patches (LP: #1237782)
  * debian/patches
- Remove all patches (no longer needed, given the upstream changes)

  [ Ken VanDine ]
  * revert quilt simplification, it didn't work in the PPA build for
armhf.

  [ Robert Bruce Park ]
  * Simplify quilt overrides.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 607

signon (8.54+13.10.20130918.1-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * New upstream release.
- lib: set timeout for D-Bus calls to INT_MAX (LP: #1220823)
  * debian/patches/use_apparmor.patch
- Use the signon-apparmor-extension when available.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 599

signon (8.53+13.10.20130826-0ubuntu1) saucy; urgency=low

  [ Alberto Mardegan ]
  * New upstream release.
- API/ABI break in libsignon-extension.so which will affect extensions
  providing an implementation of the AbstractAccessControlManager (we are
  aware of Ubuntu's apparmor extension only, which is still in early
  developments)
- Revamp of unit tests; in particular, installation of tests is untested
  and probably needs some fixes. Patches are welcome, and will be
  incorporated with the next release.
- Support for peer-to-peer connections
- Extend the AbstractAccessControlManager interface to provide an
  asynchronous method to process acce

[Touch-packages] [Bug 1449268] Re: Allow disabling sending of state parameter

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package signon-plugin-oauth2 -
0.22+15.10.20150603-0ubuntu1

---
signon-plugin-oauth2 (0.22+15.10.20150603-0ubuntu1) wily; urgency=medium

  [ Alberto Mardegan ]
  * Merge from upstream
- Fix unreliable test
- Disconnect from reply on SSL errors (LP: #1447119)
- Allow disabling the "state" parameter (LP: #1449268)

signon-plugin-oauth2 (0.22+15.04.20150417-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Return the list of granted permissions to the client
- Require Qt5 for building
- Use a "state" parameter to protect against CSRF (LP: #1432857)

  [ CI Train Bot ]
  * New rebuild forced.

signon-plugin-oauth2 (0.21+15.04.20150327-0ubuntu1) vivid;
urgency=medium

  * New rebuild forced.

signon-plugin-oauth2 (0.21+15.04.20150319-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * Remove dependency on signon-ui (LP: #1362640)

signon-plugin-oauth2 (0.21+15.04.20150128-0ubuntu2) UNRELEASED;
urgency=medium

  * Merge from upstream
- Proceed with the normal authentication if an error occurs when using the
  RefreshToken (LP: #1420934)
- Remove the unused "type" query parameters which breaks DropBox

signon-plugin-oauth2 (0.21+15.04.20150128-0ubuntu1) vivid;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- Add ForceTokenRefresh flag for forcing a new token
- OAuth2: implement a fallback mechanism when parsing replies
  (LP: #1415376)
- Fixes build with -Werror=unused-variable
- Improve test coverage

signon-plugin-oauth2 (0.20+15.04.20141110-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Merge from upstream

signon-plugin-oauth2 (0.20+15.04.20141031-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Delay instantiation of QNetworkAccessManager (LP: #1377181)

signon-plugin-oauth2 (0.20+14.10.20140912.1-0ubuntu1) utopic;
urgency=medium

  [ Alberto Mardegan ]
  * New upstream release
- OAuth 2.0: follow the spec more closely, add Vimeo support
- Tests: increase test coverage

signon-plugin-oauth2 (0.19+14.10.20140513-0ubuntu1) utopic; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Alberto Mardegan ]
  * Do not store invalid expiration times (LP: #1316021)

signon-plugin-oauth2 (0.19+14.10.20140509.2-0ubuntu1) utopic;
urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Robert Bruce Park ]
  * Correct path in debian/signon-plugin-oauth2.install fixes FTBFS (LP:
#1317986) (LP: #1317986)

signon-plugin-oauth2 (0.19+14.04.20140305-0ubuntu2) trusty;
urgency=medium

  * Build for Architecture:any.

signon-plugin-oauth2 (0.19+14.04.20140305-0ubuntu1) trusty; urgency=low

  [ CI bot ]
  * No change rebuild against Qt 5.2.1.

  [ Ubuntu daily release ]
  * New rebuild forced

signon-plugin-oauth2 (0.19+14.04.20131126.2-0ubuntu1) trusty;
urgency=low

  [ Alberto Mardegan ]
  * New upstream release (0.19)
- OAuth 1.0a: allow oauth_token_secret to be empty.
  * New upstream release (0.18)
- OAuth2: Allow clients to provide tokens to store.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 55

signon-plugin-oauth2 (0.17bzr13.04.26+13.10.20130708-0ubuntu1) saucy;
urgency=low

  [ Ken VanDine ]
  * don't build on powerpc as the new Qt5-based version don't have
powerpc qtscripts. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 53

signon-plugin-oauth2 (0.17bzr13.04.26+13.10.20130705-0ubuntu1) saucy;
urgency=low

  [ Ken VanDine ]
  * don't build on powerpc as the new Qt5-based version don't have
powerpc qtscripts. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 51

signon-plugin-oauth2 (0.17bzr13.04.26daily13.06.05.1-0ubuntu1) saucy;
urgency=low

  * Automatic snapshot from revision 49

signon-plugin-oauth2 (0.17bzr13.04.26daily13.05.01.1ubuntu.unity.next-
0ubuntu1) raring; urgency=low

  [ Alberto Mardegan ]
  * Automatic snapshot from revision 47 (bootstrap)
  * New upstream release.
- Use libsignon-qt5 when building for Qt5

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 48 (ubuntu-unity/next)

signon-plugin-oauth2 (0.15-0ubuntu1) raring; urgency=low

  * New upstream release.
- Don't return the cached OAuth tokens to applications which have
  requested additional permissions

  [ Robert Bruce Park ]
  * Inline packaging metadata.

signon-plugin-oauth2 (0.14-0ubuntu1) raring; urgency=low

  * New upstream release.
- Don't lose refresh token after first usage (LP: #1029289)
- Support application/x-www-form-urlencoded replies,
  needed by github.com
  * -debian/patches/no_debug.patch
- The next release of signond will control the amount of logging

signon-plugin-oauth2 (0.12-0ubuntu1) raring; urgency=low

  * New upstream release.

signon-plugin-oauth2 (0.11-0ubuntu3) quantal; urgency=low

  * debian/

[Touch-packages] [Bug 1468130] [NEW] /usr/lib/arm-linux-gnueabihf/qt5/bin/qmlscene:11:Change:QVector:resize:pop:QAbstractItemModel::endMoveRows

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding qtdeclarative-opensource-src.  This problem was most recently
seen with version 5.4.2-1ubuntu1, the problem page at
https://errors.ubuntu.com/problem/8cb1515635eda3760f6f6921d5418aa7eb454352
contains more details.

** Affects: qtdeclarative-opensource-src (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: vivid wily

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

Title:
  /usr/lib/arm-linux-
  
gnueabihf/qt5/bin/qmlscene:11:Change:QVector:resize:pop:QAbstractItemModel::endMoveRows

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

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding qtdeclarative-opensource-src.  This problem was most
  recently seen with version 5.4.2-1ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/8cb1515635eda3760f6f6921d5418aa7eb454352
  contains more details.

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

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


[Touch-packages] [Bug 1468125] [NEW] package modemmanager 1.4.8-1 failed to install/upgrade: podproces zainstalowany skrypt post-installation zwrócił kod błędu 100

2015-06-23 Thread James System
Public bug reported:

upgrading 15.04 to 15.10

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: modemmanager 1.4.8-1
ProcVersionSignature: Ubuntu 3.19.0-22.22-generic 3.19.8-ckt1
Uname: Linux 3.19.0-22-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.17.3-0ubuntu4
Architecture: amd64
Date: Tue Jun 23 23:45:09 2015
DuplicateSignature: package:modemmanager:1.4.8-1:podproces zainstalowany skrypt 
post-installation zwrócił kod błędu 100
ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 100
InstallationDate: Installed on 2014-05-29 (390 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130609)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.10ubuntu1
SourcePackage: modemmanager
Title: package modemmanager 1.4.8-1 failed to install/upgrade: podproces 
zainstalowany skrypt post-installation zwrócił kod błędu 100
UpgradeStatus: Upgraded to wily on 2015-06-23 (0 days ago)

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


** Tags: amd64 apport-package dist-upgrade need-duplicate-check wily

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

Title:
  package modemmanager 1.4.8-1 failed to install/upgrade: podproces
  zainstalowany skrypt post-installation zwrócił kod błędu 100

Status in modemmanager package in Ubuntu:
  New

Bug description:
  upgrading 15.04 to 15.10

  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: modemmanager 1.4.8-1
  ProcVersionSignature: Ubuntu 3.19.0-22.22-generic 3.19.8-ckt1
  Uname: Linux 3.19.0-22-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.17.3-0ubuntu4
  Architecture: amd64
  Date: Tue Jun 23 23:45:09 2015
  DuplicateSignature: package:modemmanager:1.4.8-1:podproces zainstalowany 
skrypt post-installation zwrócił kod błędu 100
  ErrorMessage: podproces zainstalowany skrypt post-installation zwrócił kod 
błędu 100
  InstallationDate: Installed on 2014-05-29 (390 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130609)
  RelatedPackageVersions:
   dpkg 1.17.25ubuntu1
   apt  1.0.9.10ubuntu1
  SourcePackage: modemmanager
  Title: package modemmanager 1.4.8-1 failed to install/upgrade: podproces 
zainstalowany skrypt post-installation zwrócił kod błędu 100
  UpgradeStatus: Upgraded to wily on 2015-06-23 (0 days ago)

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

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


[Touch-packages] [Bug 1241986] Re: Cannot connect to WPA/WPA2, EAP-PEAP, MSCHAPV2 network

2015-06-23 Thread Philipp Verpoort
This also affects my Ubuntu Phone on Aquaris 4.5 when trying to connect
to a WPA2 wifi network. I think, it would be good, if this is fixed
soon.

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

Title:
  Cannot connect to WPA/WPA2, EAP-PEAP, MSCHAPV2 network

Status in the base for Ubuntu mobile products:
  In Progress
Status in network-manager package in Ubuntu:
  Triaged
Status in ubuntu-system-settings package in Ubuntu:
  In Progress

Bug description:
  On Ubuntu for Phones final image on mako I can see a network but
  cannot connect because I never get prompted for the username/password.

  :
  "In both the ‘Connect to “{network name}”’ and “Connect to Hidden
  Network” dialogs, the contents of the dialog, and the behavior of the
  “Connect” button, should vary depending on the security and
  authentication methods..."

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

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


[Touch-packages] [Bug 1447995] Re: [Document-Viewer] Re-enable swipe gestures of list items

2015-06-23 Thread Stefano Verzegnassi
I'm working on the overflow menu as per specifications.

I'm currently using the standard APIs provided by the
Ubuntu.Components.Popups QML module, and I feel that the position of the
menu is confusing (see attachment - the menu actions are related to the
"1.pdf" document, stored in the internal storage).

Would it be better to switch to an ActionSelectionPopover or add a arrow
pointing to the hamburger icon?

** Attachment added: "Screenshot from 2015-06-23 23:46:22.png"
   
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+attachment/4419672/+files/Screenshot%20from%202015-06-23%2023%3A46%3A22.png

** Changed in: ubuntu-docviewer-app
   Status: New => In Progress

** Changed in: ubuntu-docviewer-app
   Importance: Undecided => Medium

** Changed in: ubuntu-docviewer-app
 Assignee: (unassigned) => Stefano Verzegnassi (verzegnassi-stefano)

** Description changed:

  STEP TO REPRODUCE THIS ISSUE:
  1. Open Document Viewer. The list of documents in $HOME/Documents will be 
shown.
  2. Delete an entry in the list (N.B. not the grid), by swiping to right the 
corrisponding list item.
  
  WHAT HAPPENS:
  The list item can not be swipped
  
  WHAT SHOULD HAPPENS:
  The list item can be swipped to right, and a red-coloured action is shown.
  Currently, to delete an item we need to switch to the multi-selection mode.
  
- BLOCKERS:
- We need to find an equivalent UI pattern for this user case, when the grid 
view is used instead of the list view.
+ DESIRED SOLUTION:
+ See "Option A" in the comment #4.

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

Title:
  [Document-Viewer] Re-enable swipe gestures of list items

Status in Document Viewer application for Ubuntu devices:
  In Progress
Status in Ubuntu UX bugs:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  STEP TO REPRODUCE THIS ISSUE:
  1. Open Document Viewer. The list of documents in $HOME/Documents will be 
shown.
  2. Delete an entry in the list (N.B. not the grid), by swiping to right the 
corrisponding list item.

  WHAT HAPPENS:
  The list item can not be swipped

  WHAT SHOULD HAPPENS:
  The list item can be swipped to right, and a red-coloured action is shown.
  Currently, to delete an item we need to switch to the multi-selection mode.

  DESIRED SOLUTION:
  See "Option A" in the comment #4.

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

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


[Touch-packages] [Bug 1419645] Re: [Dialer] dialer screen focussed after receiving a call

2015-06-23 Thread Michael Zanetti
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  [Dialer] dialer screen focussed after receiving a call

Status in the base for Ubuntu mobile products:
  New
Status in Ubuntu UX bugs:
  Fix Committed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Using rtm 228 on krillin
  - have your phone on the dash (nothing is running) or with an application in 
use (ie. the webbrowser)
  - receive a call
  - look at your phone after the call

  The dialer-app is open and focussed, it shouldn't, answering a phone
  shouldn't return the device in a state different from the one it was
  before talking. If you were using the webbrowser you probably want to
  keep doing that rather than dial a new number

  Opening against unity8 since that's an application management issue,
  not sure if that's the correct component though

  UX comment---

  I agree, this is a bad user experience. As proposed in the bug description:
  After user hangs up an accepted call, the previously used app should be back 
in view.

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

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


[Touch-packages] [Bug 1418688] Re: Ubuntu store scope does not tell you that there is an update

2015-06-23 Thread Sergi Quiles Pérez
I think this way would more useful:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-click/+bug/1466170

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

Title:
  Ubuntu store scope does not tell you that there is an update

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

Bug description:
  It used to be that the "open" option will change to "update" when the
  version on the store was newer than the one in the phone in the Ubuntu
  store scope, this is no longer the case. The only way to install a new
  version is now from settings

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

-- 
Mailing list: https://launchpad.net/~touch-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-23 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/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 1466170] Re: Update option in the application screen

2015-06-23 Thread Sergi Quiles Pérez
*** This bug is a duplicate of bug 1418688 ***
https://bugs.launchpad.net/bugs/1418688

I don't think this is a duplicate of
https://bugs.launchpad.net/bugs/1418688 because I'm saying to add a
third button called 'update' when it is available. This way you can
'Uninstall', 'Open' (always) or 'Update' (if it is available).

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

Title:
  Update option in the application screen

Status in unity-scope-click package in Ubuntu:
  Confirmed

Bug description:
  With a longpress in an installed application icon you can open the
  application info screen.

  In that window are 2 buttons: Uninstall and Open.

  I think that when an update is available a third button called Update
  would be very useful.

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

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


[Touch-packages] [Bug 1463846] Re: if ip is specified on cmdline, networking should be brought up in initramfs

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-initramfs-tools - 0.27ubuntu1

---
cloud-initramfs-tools (0.27ubuntu1) wily; urgency=medium

  * cloud-initramfs-dyn-netconf: bring up networking if ip is on kernel
command line and it has not been brought up (LP: #1463846)
  * cloud-initramfs-copymods: do not warn to console if /lib/modules
exists in the target, as that is an expected case.

 -- Scott Moser   Tue, 23 Jun 2015 12:46:29 -0400

** Changed in: cloud-initramfs-tools (Ubuntu)
   Status: New => Fix Released

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

Title:
  if ip is specified on cmdline, networking should be brought up in
  initramfs

Status in cloud-initramfs-tools package in Ubuntu:
  Fix Released
Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  if the initramfs has 'ip=' on the cmdline, it is arguable that we
  should bring the respective interface up as indicated.

  Currently, initramfs only does this if something thinks it should.

  Ie, open-iscsi might do it, or some other things might call 
'configure_networking'.
  But it seems reasonable that if the user put 'ip=' on the cmdline then they 
wanted that to happen in initramfs.

  Additionally, one feature i'd like to have (admittedly for debug
  purposes) is the ability to write the /run/initramfs/open-
  iscsi.interface file that is used at least by open-iscsi to say "do
  not bring this interface down".

  
  I've done this before, the code to do it is available in intramfs-tools style 
module at
    
http://bazaar.launchpad.net/~smoser/maas/maas-pkg-test/files/head:/ephemtest-vivid/initrd-updates/

  generically, it seems like it'd be nice to have a way to have the same
  functionality that open-iscsi.interface accomplishes but not tied to
  open-iscsi.  Ie, the user may for any reason want to keep a network
  from getting re-configured by normal OS bringup.   I used
  '/run/network/initramfs-persistent-iface' file to do that.

  that is explicitly to patch over an existing initramfs  (no 'hooks'
  directory).

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

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


[Touch-packages] [Bug 1465814] Re: Apt did the opposite of what I told it to do when it asked me a yes or no question

2015-06-23 Thread Brian Murray
This is because you used a lowercase 'y' and not an uppercase 'Y' as the
instructions prompted.

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

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

Title:
  Apt did the opposite of what I told it to do when it asked me a yes or
  no question

Status in apt package in Ubuntu:
  Invalid

Bug description:
  Today I executed the command:

  sudo apt-get dist-upgrade

  And this was the output:

  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  Calculating upgrade... Done
  The following packages will be upgraded:
aptdaemon aptdaemon-data python-aptdaemon python-aptdaemon.gtk3widgets
python3-aptdaemon python3-aptdaemon.gtk3widgets 
python3-aptdaemon.pkcompat
wpasupplicant
  8 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
  Need to get 1,146 kB of archives.
  After this operation, 3,072 B of additional disk space will be used.
  Do you want to continue? [Y/n] 

  So I answered 'y' (without the quotes), and this was the output:

  Abort.

  And it seemingly aborted instead of doing what I said, although when I
  ran the command again, it installed the upgrades instead of aborting,
  but I just thought that I should report this as it seemed buggy as
  this is not what it is meant to do.

  ---

  OS Information:

  Description:  Ubuntu 15.04
  Release:  15.04

  Package Information:

  apt:
Installed: 1.0.9.7ubuntu4
Candidate: 1.0.9.7ubuntu4
Version table:
   *** 1.0.9.7ubuntu4 0
  500 http://gb.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Ben Howard
Actually, PV and HVM instances are both affected. I narrowed it down to
udev; installing all updates except for udev results in a bootable
instance.

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

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1468114] [NEW] please update open-vm-tools to 9.10.2

2015-06-23 Thread Oliver Kurth
Public bug reported:

Version 9.10.2 of open-vm-tools has been released, available on github:
https://github.com/vmware/open-vm-tools/tree/stable-9.10.2

Also reported at Debian: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=789722

Thanks,
Oliver

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

** Package changed: upstart (Ubuntu) => open-vm-tools (Ubuntu)

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

Title:
  please update open-vm-tools to 9.10.2

Status in open-vm-tools package in Ubuntu:
  New

Bug description:
  Version 9.10.2 of open-vm-tools has been released, available on
  github: https://github.com/vmware/open-vm-tools/tree/stable-9.10.2

  Also reported at Debian: https://bugs.debian.org/cgi-
  bin/bugreport.cgi?bug=789722

  Thanks,
  Oliver

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

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


[Touch-packages] [Bug 1430918] Re: Change setting requires manual refresh

2015-06-23 Thread Marcus Tomlinson
** Branch linked: lp:~stolowski/unity-scopes-api/fix-settings-thread

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

Title:
  Change setting requires manual refresh

Status in The Savilerow project:
  Invalid
Status in unity-scopes-api package in Ubuntu:
  In Progress
Status in unity-scopes-shell package in Ubuntu:
  Invalid

Bug description:
  See comment 12 below for updated description. Summary is that changing
  a setting can require manual refresh.

  Original Description:
  Enabling and disabling child scopes from settings in an agg scope often 
causes an error that results in blank display that is sometimes difficult to 
recover from.

  For example, l launched the Music scope, then disabled 7 digital from
  settings, then enabled it.

  I got the following in log:

  phablet@ubuntu-phablet:~$ tail -F .cache/upstart/scope-registry.log
  Failed to get proxy for scope com.ubuntu.scopes.soundcloud_soundcloud
  Failed to get proxy for scope com.canonical.scopes.songkick_songkick
  aa_getcon failed, errno = 13
  YouTube scope is unauthenticated
  YouTube scope is unauthenticated
  Failed to get proxy for scope com.ubuntu.scopes.soundcloud_soundcloud
  Failed to get proxy for scope com.canonical.scopes.songkick_songkick
  YouTube scope is unauthenticated
  YouTube scope is unauthenticated
  terminate called without an active exception

  I have seen this same thing with other agg scopes.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 127
  device name: krillin
  channel: ubuntu-touch/vivid-proposed
  last update: 2015-03-10 22:34:24
  version version: 127
  version ubuntu: 20150228
  version device: 20150210-95b6a9f
  version custom: 20150228

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

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


[Touch-packages] [Bug 1458694] Re: [vivid-overlay] unity8 fails to start on the emulator

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

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

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

Title:
  [vivid-overlay] unity8 fails to start on the emulator

Status in the base for Ubuntu mobile products:
  Confirmed
Status in mir package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Triaged

Bug description:
  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 140
  device name: generic_x86
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-05-25 12:02:10
  version version: 140
  version ubuntu: 20150525
  version device: 20150210
  version custom: 20150525

  When starting unity8 (this started at image 136, probably when mir
  0.13 landed):

  phablet@ubuntu-phablet:~$ cat ./.cache/upstart/unity8.log
  ()
  [1432595001.896139] mirplatform: Found graphics driver: dummy
  [1432595001.898447] mirplatform: Found graphics driver: android
  qtmir.mir: MirServer created
  [1432595003.675225] Server: Starting
  [1432595003.679331] Loader: Loading modules from: 
/usr/lib/i386-linux-gnu/mir/server-platform
  [1432595003.679501] Loader: Loading module: 
/usr/lib/i386-linux-gnu/mir/server-platform/graphics-dummy.so
  [1432595003.680673] Loader: Loading module: 
/usr/lib/i386-linux-gnu/mir/server-platform/input-stub.so
  [1432595003.681107]  Loader: Failed to load module: 
/usr/lib/i386-linux-gnu/mir/server-platform/input-stub.so (error 
was:/usr/lib/i386-linux-gnu/mir/server-platform/input-stub.so: undefined 
symbol: _ZN3mir6events10make_eventExx17MirKeyboardActionjij)
  [1432595003.684868] Loader: Loading module: 
/usr/lib/i386-linux-gnu/mir/server-platform/graphics-android.so.2
  [1432595003.685014] mirplatform: Found graphics driver: dummy
  [1432595003.685211] mirplatform: Found graphics driver: android
  [1432595003.685416] Platform Loader: Selected driver: android (version 0.13.0)
  qtmir.mir: PromptSessionListener::PromptSessionListener - this= 
PromptSessionListener(0x9679764)
  qtmir.mir: SessionListener::SessionListener - this= SessionListener(0x9676d24)
  qtmir.mir: MirShell::MirShell
  [1432595003.883766] DisplayServer: Mir version 0.13.0
  QtCompositor::setAllWindowsExposed true
  qtmir.clipboard: D-Bus registration successful.
  Mode argument was not provided or was set to an illegal value. Using default 
value of --mode= "full-greeter"
  Cannot create window: no screens available

  With version 135 it starts fine, but not fully functional, giving this
  error:

  QOpenGLShader::compile(Fragment): 0:2(12): warning: extension 
`GL_OES_standard_derivatives' unsupported in fragment shader
  0:2(1): error: #extension directive is not allowed in the middle of a shader

  *** Problematic Fragment shader source code ***
  #extension GL_OES_standard_derivatives : enable  // Enable dFdy() on OpenGL 
ES 2.
  #define lowp
  #define mediump
  #define highp

  // Copyright © 2015 Canonical Ltd.
  //
  // This program is free software; you can redistribute it and/or modify
  // it under the terms of the GNU Lesser General Public License as published by
  // the Free Software Foundation; version 3.
  //
  // This program is distributed in the hope that it will be useful,
  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  // GNU Lesser General Public License for more details.
  //
  // You should have received a copy of the GNU Lesser General Public License
  // along with this program.  If not, see .
  //
  // Author: Loïc Molinari 

  // Static flow control (branching on a uniform value) is fast on most GPUs 
(including ultra-low
  // power ones) because it allows to use the same shader execution path for an 
entire draw call. We
  // rely on that technique here (also known as "uber-shader" solution) to 
avoid the complexity of
  // dealing with a multiple shaders solution.
  // FIXME(loicm) Validate GPU behavior with regards to static flow control.

  uniform sampler2D shapeTexture;
  uniform sampler2D sourceTexture;
  uniform lowp vec2 dfdtFactors;
  uniform lowp vec2 opacityFactors;
  uniform lowp float sourceOpacity;
  uniform lowp float distanceAA;
  uniform bool textured;
  uniform mediump int aspect;

  varying mediump vec2 shapeCoord;
  varying mediump vec4 sourceCoord;
  varying lowp vec4 backgroundColor;

  const mediump int FLAT  = 0x08;  // 1 << 3
  const mediump int INSET = 0x10;  // 1 << 4

  void main(void)
  {
  lowp vec4 shapeData = texture2D(shapeTexture, shapeCoord);
  lowp vec4 color = backgroundColor;

  // FIXME(loicm) Would be better to use a bitfield but bitwise ops have 
only been integrated in
  // GLSL 1.3 (OpenGL 3) and GLSL ES 3 (OpenGL ES 3).
  if (textured) {
  

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

2015-06-23 Thread Scott Moser
** Description changed:

  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.
  
- Related bugs: 
-  * bug 1468103:  rc.local runs too early. 
+ 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=
   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

-- 
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=
   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 1468029] Re: unity8 crash breaking autopilot tests entering text with OSK

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

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

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

Title:
  unity8 crash breaking autopilot tests entering text with OSK

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  When running the autopilot tests for ubuntu-system-settings, at some
  point it fails to enter text using the OSK.  It works fine for smaller
  subsets of the tests, but not a full run.  It simply stops entering
  text with keyboard.write.  Once it gets in this state, it will
  continue to fail even for single tests until unity8 is restarted.
  During the test run, there is a unity8 crash file generated.  I wasn't
  able to create a bug report for the problem directly from the OOPS on
  errors.ubuntu.com, you can find it at
  https://errors.ubuntu.com/oops/c4124284-1999-11e5-8fcb-fa163e75317b

  My device:
  current build number: 234
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-06-23 00:04:08
  version version: 234
  version ubuntu: 20150623
  version device: 20150529.1
  version custom: 20150623

  @osomon has seen the same problem while running the webbrowser-app
  tests on krillin with vivid-proposed.

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Robert C Jennings
Here are the package changes between the last working and first failing
builds:

20150608 good
20150610 bad

$ diff manifest-amd64-daily-20150608.txt manifest-amd64-daily-20150610.txt
101c101
< iso-codes 3.57-1
---
> iso-codes 3.58-1
248c248
< libpam-systemd:amd64 219-10ubuntu1
---
> libpam-systemd:amd64 220-5ubuntu2
296c296
< libsystemd0:amd64 219-10ubuntu1
---
> libsystemd0:amd64 220-5ubuntu2
306c306
< libudev1:amd64 219-10ubuntu1
---
> libudev1:amd64 220-5ubuntu2
458,459c458,459
< systemd 219-10ubuntu1
< systemd-sysv 219-10ubuntu1
---
> systemd 220-5ubuntu2
> systemd-sysv 220-5ubuntu2
476c476
< udev 219-10ubuntu1
---
> udev 220-5ubuntu2

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

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Robert C Jennings
So the it's just udev and systemd changes here.  utlemming took the
working 20150608 ami, booted, upgraded, and rebooted and the instance
didn't survive the reboot.

This affects HVM only, PV is unaffected.

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

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

-- 
Mailing list: https://launchpad.net/~touch-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] [NEW] rc.local output does not go to console

2015-06-23 Thread Scott Moser
Public bug reported:

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.

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=
 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: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug ec2-images wily

** Attachment added: "user-data showing issue"
   
https://bugs.launchpad.net/bugs/1468102/+attachment/4419587/+files/my-userdata

** Description changed:

  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.
+ 
+ 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=
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  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

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/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.

  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=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine:

[Touch-packages] [Bug 1466442] Re: X11 breaks event order under async process_key_event when client applications spent time during XNextEvent

2015-06-23 Thread Aron Xu
** Also affects: ibus (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: ibus (Ubuntu Wily)
   Importance: Undecided
   Status: Fix Released

** Also affects: ibus (Ubuntu Utopic)
   Importance: Undecided
   Status: New

** Also affects: ibus (Ubuntu Vivid)
   Importance: Undecided
   Status: New

** Changed in: trusty-backports
   Status: New => Invalid

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

Title:
  X11 breaks event order under async process_key_event when client
  applications spent time during XNextEvent

Status in Chromium:
  Unknown
Status in IBus:
  Unknown
Status in Trusty Backports:
  Invalid
Status in ibus package in Ubuntu:
  Fix Released
Status in ibus source package in Trusty:
  New
Status in ibus source package in Utopic:
  New
Status in ibus source package in Vivid:
  New
Status in ibus source package in Wily:
  Fix Released

Bug description:
  This bug comes from:
  https://code.google.com/p/ibus/issues/detail?id=1697 which is fixed by
  https://github.com/ibus/ibus/commit/b58351ec2f7c057dcfe0aff883064039702a56d7

  It affectes Chrome and Chromium making them receive keystrokes out of
  order if the machine is running slow.
  (https://code.google.com/p/chromium/issues/detail?id=410649)

  The fix applied upstream is to set sync mode to true instead of false
  by default.

  The Chromium bug includes quite a bunch of people affected by this
  problem.  It would be nice if this fix could be applied in affected
  Ubuntu releases (trusty+).

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

-- 
Mailing list: https://launchpad.net/~touch-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 too early.

2015-06-23 Thread Scott Moser
Public bug reported:

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]  === 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=
 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: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug ec2-images wily

** Attachment added: "user-data showing problem"
   
https://bugs.launchpad.net/bugs/1468103/+attachment/4419597/+files/my-userdata

** Description changed:

  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.
+  | 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
+  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]  === successful boot 1 
-  4. console log should also have message like in 3 with '/dev/console'
+  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]  === 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
  Ec2Avai

[Touch-packages] [Bug 1463846] Re: if ip is specified on cmdline, networking should be brought up in initramfs

2015-06-23 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/cloud-initramfs-tools

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

Title:
  if ip is specified on cmdline, networking should be brought up in
  initramfs

Status in cloud-initramfs-tools package in Ubuntu:
  New
Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  if the initramfs has 'ip=' on the cmdline, it is arguable that we
  should bring the respective interface up as indicated.

  Currently, initramfs only does this if something thinks it should.

  Ie, open-iscsi might do it, or some other things might call 
'configure_networking'.
  But it seems reasonable that if the user put 'ip=' on the cmdline then they 
wanted that to happen in initramfs.

  Additionally, one feature i'd like to have (admittedly for debug
  purposes) is the ability to write the /run/initramfs/open-
  iscsi.interface file that is used at least by open-iscsi to say "do
  not bring this interface down".

  
  I've done this before, the code to do it is available in intramfs-tools style 
module at
    
http://bazaar.launchpad.net/~smoser/maas/maas-pkg-test/files/head:/ephemtest-vivid/initrd-updates/

  generically, it seems like it'd be nice to have a way to have the same
  functionality that open-iscsi.interface accomplishes but not tied to
  open-iscsi.  Ie, the user may for any reason want to keep a network
  from getting re-configured by normal OS bringup.   I used
  '/run/network/initramfs-persistent-iface' file to do that.

  that is explicitly to patch over an existing initramfs  (no 'hooks'
  directory).

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Robert C Jennings
Last good test for EC2 occurred on June 9th with serial 20150608

https://jerff.canonical.com/job/NG_Test-EC2/376/

Ben is trying out:
wily server daily   20150608ebs-ssd amd64   us-east-1   
ami-6f9e7404hvm

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

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1468100] [NEW] ListItems with trailing but no leading actions, after swiping right break selectMode

2015-06-23 Thread Andrew Hayzen
Public bug reported:

If you have a listitem with trailing actions but no leading actions it
is possible to break the selectMode as the press and hold signal is
never fired.

Steps with the example QML app [0]
1) Swipe one of the listitems to the right (to try and reveal a leading action 
[which there aren't any])
2) Press and hold on the swiped listitem
3) Notice nothing happens (also notice nothing in the log for the press and 
hold appears)
4) Press and hold on another listitem
5) Notice that all but the swiped listitem change to selectMode=True

What was expected:
3) For all of the items to change to selectMode=True
5) For all of the items to change to selectMode=True

Note that you can 'fix' the listitem by swiping to the left and clicking
on an action or dismissing the swipe, then you are able to press and
hold it to activate selectMode correctly again.

0 - http://pastebin.ubuntu.com/11764308/

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

** Description changed:

  If you have a listitem with trailing actions but no leading actions it
  is possible to break the selectMode as the press and hold signal is
  never fired.
  
  Steps with the example QML app [0]
  1) Swipe one of the listitems to the right (to try and reveal a leading 
action [which there aren't any])
  2) Press and hold on the swiped listitem
- 3) Notice nothing happens (notice nothing in the log for the press and hold
+ 3) Notice nothing happens (also notice nothing in the log for the press and 
hold appears)
  4) Press and hold on another listitem
  5) Notice that all but the swiped listitem change to selectMode=True
  
  What was expected:
  3) For all of the items to change to selectMode=True
  5) For all of the items to change to selectMode=True
  
  Note that you can 'fix' the listitem by swiping to the left and clicking
  on an action or dismissing the swipe, then you are able to press and
  hold it to activate selectMode correctly again.
  
  0 - http://pastebin.ubuntu.com/11764308/

** Summary changed:

- ListItems with trailing but no leading, after swiping right break selectMode
+ ListItems with trailing but no leading actions, after swiping right break 
selectMode

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

Title:
  ListItems with trailing but no leading actions, after swiping right
  break selectMode

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

Bug description:
  If you have a listitem with trailing actions but no leading actions it
  is possible to break the selectMode as the press and hold signal is
  never fired.

  Steps with the example QML app [0]
  1) Swipe one of the listitems to the right (to try and reveal a leading 
action [which there aren't any])
  2) Press and hold on the swiped listitem
  3) Notice nothing happens (also notice nothing in the log for the press and 
hold appears)
  4) Press and hold on another listitem
  5) Notice that all but the swiped listitem change to selectMode=True

  What was expected:
  3) For all of the items to change to selectMode=True
  5) For all of the items to change to selectMode=True

  Note that you can 'fix' the listitem by swiping to the left and
  clicking on an action or dismissing the swipe, then you are able to
  press and hold it to activate selectMode correctly again.

  0 - http://pastebin.ubuntu.com/11764308/

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.04 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Brian Murray
** Description changed:

- Ubuntu 15.04 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to 
-  - Boot args (cat /proc/cmdline)
-- Check rootdelay= (did the system wait long enough?)
-- Check root= (did the system wait for the right device?)
-  - Missing modules (cat /proc/modules; ls /dev)
+ Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
+  - Boot args (cat /proc/cmdline)
+    - Check rootdelay= (did the system wait long enough?)
+    - Check root= (did the system wait for the right device?)
+  - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!
  
- 
- This is happening on all instances and whether disks are mounted by label or 
UUID.
+ This is happening on all instances and whether disks are mounted by
+ label or UUID.

** Summary changed:

- Ubuntu 15.04 Alpha-1 candidates do not boot in EC2
+ Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

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

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1468091] Re: Ubuntu 15.04 Alpha-1 candidates do not boot in EC2

2015-06-23 Thread Ben Howard
Confirmed that this is not happening on OpenStack.

I suspect that this is cause is that /dev/disk/by-*/ targets are missing
for Xen Block devices.

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

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

** Package changed: ubuntu => 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/1468091

Title:
  Ubuntu 15.10 Alpha-1 candidates do not boot in EC2

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 15.10 Alpha-1 Candidates are not booting in EC2.  Instances are 
dropping to
   - Boot args (cat /proc/cmdline)
     - Check rootdelay= (did the system wait long enough?)
     - Check root= (did the system wait for the right device?)
   - Missing modules (cat /proc/modules; ls /dev)
  ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not 
exist.  Dropping to a shell!

  This is happening on all instances and whether disks are mounted by
  label or UUID.

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

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


[Touch-packages] [Bug 1468038] Re: Perpetual installation loop when uninstalling app

2015-06-23 Thread Rodney Dawes
This seems to be an unintended side effect of the fix which landed in
revision 320 for bug #1289434 . The issue is replicable with free apps
as well as when cancelling a purchase for a paid app.

** Summary changed:

- Installation is started after clicking on "Cancel Purchase"
+ Perpetual installation loop when uninstalling app

** Description changed:

- After clicking on the "Cancel Purchase" button, the app starts
- downloading and installing again. Clicking on that button should
+ After clicking on the "Cancel Purchase" or "Uninstall" button, the app
+ starts downloading and installing again. Clicking on that button should
  uninstall instead.

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

Title:
  Perpetual installation loop when uninstalling app

Status in unity-scope-click package in Ubuntu:
  In Progress

Bug description:
  After clicking on the "Cancel Purchase" or "Uninstall" button, the app
  starts downloading and installing again. Clicking on that button
  should uninstall instead.

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

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


[Touch-packages] [Bug 1468091] [NEW] Ubuntu 15.04 Alpha-1 candidates do not boot in EC2

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

Ubuntu 15.04 Alpha-1 Candidates are not booting in EC2.  Instances are dropping 
to 
 - Boot args (cat /proc/cmdline)
   - Check rootdelay= (did the system wait long enough?)
   - Check root= (did the system wait for the right device?)
 - Missing modules (cat /proc/modules; ls /dev)
ALERT!  /dev/disk/by-uuid/e420d299-69ee-46eb-a1a4-893b54ab89a7 does not exist.  
Dropping to a shell!


This is happening on all instances and whether disks are mounted by label or 
UUID.

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


** Tags: bot-comment
-- 
Ubuntu 15.04 Alpha-1 candidates do not boot in EC2
https://bugs.launchpad.net/bugs/1468091
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 1468093] [NEW] /usr/bin/dialer-app:11:QList:QtVersit::VersitUtils::changeCodec:QtVersit::VersitUtils::newlineList:QtVersit::LineReader::LineReader:QtVersit::QVersitReaderPrivate:

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding dialer-app.  This problem was most recently seen with version
0.1+15.10.20150608-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/881b2abac6b02b332f0d85ef1d7794768a2e6ab7
contains more details.

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


** Tags: rtm-14.09 vivid wily

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

Title:
  /usr/bin/dialer-
  
app:11:QList:QtVersit::VersitUtils::changeCodec:QtVersit::VersitUtils::newlineList:QtVersit::LineReader::LineReader:QtVersit::QVersitReaderPrivate::read

Status in dialer-app package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding dialer-app.  This problem was most recently seen with
  version 0.1+15.10.20150608-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/881b2abac6b02b332f0d85ef1d7794768a2e6ab7
  contains more details.

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

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


[Touch-packages] [Bug 1320556] Re: "Show copy dialog" right click launcher entry doesn't work

2015-06-23 Thread xeddo
sometimes when starting a copy operation there is no dialog at all!
1. drag and drop files
2. nautilus does its thing, but without any dialog or other info (except the 
little progress bar in the unity side panel thing)
3. clicking on show copy dialog only makes the "files launcher" wiggle but 
produces no dialog or other information.

does anyone have a workaround?
has anyone tried to upgrade to 14.10 to make the problem disappear?

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

Title:
   "Show copy dialog" right click launcher entry doesn't work

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  I noticed that Files(Nautilus file manager) "Show Copy Dialogue"
  Quicklist(right click menu) item doesn't work (again) with 14.04LTS.
  "Show Copy Dialogue" is supposed to restore/reveal the minimize/hidden
  copy dialogue, but it doesn't. Seems to be a regression of bug #887821

  My Nautilus version is: GNOME nautilus 3.10.1

  Unity version: unity 7.2.0

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity 7.2.0+14.04.20140423-0ubuntu1.2
  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.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Sat May 17 23:48:56 2014
  InstallationDate: Installed on 2014-05-03 (14 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1468088] [NEW] /usr/bin/address-book-app:11:isEmpty:QHash:remove:galera::GaleraContactsService::destroyRequest:galera::GaleraContactsService::fetchContactsGroupsContinue

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding address-book-app.  This problem was most recently seen with
version 0.2+15.04.20150528-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/65269fdaf6081b012e690ad0503cc4a0489b9eeb
contains more details.

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


** Tags: rtm-14.09 vivid

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

Title:
  /usr/bin/address-book-
  
app:11:isEmpty:QHash:remove:galera::GaleraContactsService::destroyRequest:galera::GaleraContactsService::fetchContactsGroupsContinue

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

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding address-book-app.  This problem was most recently seen with
  version 0.2+15.04.20150528-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/65269fdaf6081b012e690ad0503cc4a0489b9eeb
  contains more details.

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

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


[Touch-packages] [Bug 1420875] Re: NetworkManager crashed with SIGSEGV in nm_modem_set_state()

2015-06-23 Thread Brian Murray
** Description changed:

+ Errors Bucket for this crash:
+ 
+ 
https://errors.ubuntu.com/bucket/?id=/usr/sbin/NetworkManager%3A11%3Anm_modem_set_state%3Adisconnect_done%3Acomplete_pending_call_and_unlock%3Adbus_connection_dispatch%3Amessage_queue_dispatch
+ 
  updated all now after pluggin off usb modem
  
- ProblemType: Crash
- DistroRelease: Ubuntu 15.04
+ ProblemType: CrashDistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu6
  ProcVersionSignature: Ubuntu 3.18.0-13.14-generic 3.18.5
  Uname: Linux 3.18.0-13-generic x86_64
  ApportVersion: 2.16.1-0ubuntu2
  Architecture: amd64
  Date: Wed Feb 11 22:13:18 2015
  ExecutablePath: /usr/sbin/NetworkManager
  IfupdownConfig:
-  # interfaces(5) file used by ifup(8) and ifdown(8)
-  auto lo
-  iface lo inet loopback
+  # interfaces(5) file used by ifup(8) and ifdown(8)
+  auto lo
+  iface lo inet loopback
  InstallationDate: Installed on 2013-04-25 (657 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130402.1)
  IpRoute:
-  default via 192.168.1.1 dev wlan0  proto static  metric 1024 
-  169.254.0.0/16 dev wlan0  scope link  metric 1000 
-  192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.31
+  default via 192.168.1.1 dev wlan0  proto static  metric 1024
+  169.254.0.0/16 dev wlan0  scope link  metric 1000
+  192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.31
  ProcCmdline: NetworkManager
  ProcEnviron:
-  LANGUAGE=ru:en_GB:en
-  TERM=linux
-  PATH=(custom, no user)
-  LANG=ru_RU.UTF-8
+  LANGUAGE=ru:en_GB:en
+  TERM=linux
+  PATH=(custom, no user)
+  LANG=ru_RU.UTF-8
  SegvAnalysis:
-  Segfault happened at: 0x7f7c88244a76:mov0x34(%rax),%r13d
-  PC (0x7f7c88244a76) ok
-  source "0x34(%rax)" (0x0034) not located in a known VMA region (needed 
readable region)!
-  destination "%r13d" ok
+  Segfault happened at: 0x7f7c88244a76:mov0x34(%rax),%r13d
+  PC (0x7f7c88244a76) ok
+  source "0x34(%rax)" (0x0034) not located in a known VMA region (needed 
readable region)!
+  destination "%r13d" ok
  SegvReason: reading NULL VMA
- Signal: 11
- SourcePackage: network-manager
+ Signal: 11SourcePackage: network-manager
  StacktraceTop:
-  ?? () from /usr/lib/x86_64-linux-gnu/NetworkManager/libnm-wwan.so
-  ?? () from /usr/lib/x86_64-linux-gnu/NetworkManager/libnm-wwan.so
-  ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
-  dbus_connection_dispatch () from /lib/x86_64-linux-gnu/libdbus-1.so.3
-  ?? () from /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2
+  ?? () from /usr/lib/x86_64-linux-gnu/NetworkManager/libnm-wwan.so
+  ?? () from /usr/lib/x86_64-linux-gnu/NetworkManager/libnm-wwan.so
+  ?? () from /lib/x86_64-linux-gnu/libdbus-1.so.3
+  dbus_connection_dispatch () from /lib/x86_64-linux-gnu/libdbus-1.so.3
+  ?? () from /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2
  Title: NetworkManager crashed with SIGSEGV in dbus_connection_dispatch()
  UpgradeStatus: Upgraded to vivid on 2014-12-23 (50 days ago)
  UserGroups:
-  
+ 
  nmcli-dev:
-  DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH  
 
-  wlan0   wifi  connected/org/freedesktop/NetworkManager/Devices/2  
GREENLAND   e332054d-0cd6-4842-b4f9-e732c0b2aad6  
/org/freedesktop/NetworkManager/ActiveConnection/0 
-  eth0ethernet  unavailable  /org/freedesktop/NetworkManager/Devices/1  -- 
 ----   
  
-  lo  loopback  unmanaged/org/freedesktop/NetworkManager/Devices/0  -- 
 ----
+  DEVICE  TYPE  STATEDBUS-PATH  
CONNECTION  CON-UUID  CON-PATH
+  wlan0   wifi  connected/org/freedesktop/NetworkManager/Devices/2  
GREENLAND   e332054d-0cd6-4842-b4f9-e732c0b2aad6  
/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'.

** Information type changed from Private to Public

** Changed in: network-manager (Ubuntu)
   Importance: Medium => High

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

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

Title:
  NetworkManager crashed with SIGSEGV in nm_modem_set_state()

Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  Errors Bucket for this crash:

  
https://errors.ubu

[Touch-packages] [Bug 1468029] Re: unity8 crash breaking autopilot tests entering text with OSK

2015-06-23 Thread Allan LeSage
Added Mirv as recent Qt landings may be implicated?

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

Title:
  unity8 crash breaking autopilot tests entering text with OSK

Status in unity8 package in Ubuntu:
  New

Bug description:
  When running the autopilot tests for ubuntu-system-settings, at some
  point it fails to enter text using the OSK.  It works fine for smaller
  subsets of the tests, but not a full run.  It simply stops entering
  text with keyboard.write.  Once it gets in this state, it will
  continue to fail even for single tests until unity8 is restarted.
  During the test run, there is a unity8 crash file generated.  I wasn't
  able to create a bug report for the problem directly from the OOPS on
  errors.ubuntu.com, you can find it at
  https://errors.ubuntu.com/oops/c4124284-1999-11e5-8fcb-fa163e75317b

  My device:
  current build number: 234
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-06-23 00:04:08
  version version: 234
  version ubuntu: 20150623
  version device: 20150529.1
  version custom: 20150623

  @osomon has seen the same problem while running the webbrowser-app
  tests on krillin with vivid-proposed.

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

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


[Touch-packages] [Bug 1426490] Re: cups 2.0.2-1 100% cpu usage

2015-06-23 Thread Till Kamppeter
9 people told here that they are affected by this bug. At least one is
needed to test the proposed package and to tell that it fixes the bug.
Please, anyone of these 9 people, test the proposed package. Thanks.

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

Title:
  cups 2.0.2-1 100% cpu usage

Status in cups package in Ubuntu:
  Fix Released
Status in cups source package in Vivid:
  Fix Committed

Bug description:
  upgraded from xubuntu 14.10 to 15.04 and now it uses cups 2.x
  after every print cupsd starts using 100% cpu and don't close.
  have to kill it every time with "sudo pkill cupsd"
  printing still works fine

  [Impact]

  CUPS 2.0.x can suddenly take 100% CPU in certain situations, making
  the system slow and producing fan noise.

  [Test Case]

  After printing a job cupsd takes 100% CPU. This does not occur for all
  users, probably depends on queue type and on timing (computer/network
  speed).

  With the proposed package the problem does not occur any more.

  [Regression Potential]

  Very low. The patch is very simple.

  
  Description:  Ubuntu Vivid Vervet (development branch)
  Release:  15.04

  cups:
    Installiert:   2.0.2-1ubuntu3
    Installationskandidat: 2.0.2-1ubuntu3
    Versionstabelle:
   *** 2.0.2-1ubuntu3 0
  500 http://de.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

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

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


[Touch-packages] [Bug 1452676] Re: [SDK] Right-click menu instead of leading/ trailing actions

2015-06-23 Thread Christian Dywan
** Attachment added: "Updated context menu design"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1452676/+attachment/4419565/+files/contextmenu.png

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

Title:
  [SDK] Right-click menu instead of leading/ trailing actions

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

Bug description:
  On desktops/ laptops the leading and trailing actions of list items
  should be available as context menus. In practise we probably want to
  enable the menu if a mouse is being used and only enable the actions
  if s touchscreen is available.

  ---UX comment-
  Solution was discussed and agreed during UITK/SDK sprint in London, 1st week 
of June 2015.

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

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


[Touch-packages] [Bug 1468063] [NEW] I DON'T KNOW ABOUT THIS BUG PLEASE HELP ME

2015-06-23 Thread David
Public bug reported:

PLEASE HELPME WHAT I SHOULD DO FOR THIS BUG...

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
Uname: Linux 3.17.0-031700-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Wed Jun 24 01:39:37 2015
DistUpgraded: 2014-07-29 01:44:49,174 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6320] [1002:9806] 
(prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:3387]
InstallationDate: Installed on 2014-07-25 (332 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
MachineType: Hewlett-Packard HP Pavilion dm1 Notebook PC
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.17.0-031700-generic 
root=UUID=47ebb06b-9b23-4773-abd3-5ea70ab7f5cf ro splash quiet drm.debug=0xe 
plymouth:debug
SourcePackage: xorg
UpgradeStatus: Upgraded to trusty on 2014-07-28 (329 days ago)
dmi.bios.date: 08/04/2011
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.01
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 3387
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 36.0A
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.01:bd08/04/2011:svnHewlett-Packard:pnHPPaviliondm1NotebookPC:pvr06991020460300100:rvnHewlett-Packard:rn3387:rvr36.0A:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.name: HP Pavilion dm1 Notebook PC
dmi.product.version: 06991020460300100
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 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 24 01:06:32 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2.7
xserver.video_driver: radeon

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


** Tags: apport-bug i386 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/1468063

Title:
  I DON'T KNOW  ABOUT THIS BUG PLEASE HELP ME

Status in xorg package in Ubuntu:
  New

Bug description:
  PLEASE HELPME WHAT I SHOULD DO FOR THIS BUG...

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  Uname: Linux 3.17.0-031700-generic i686
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  Date: Wed Jun 24 01:39:37 2015
  DistUpgraded: 2014-07-29 01:44:49,174 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6320] [1002:9806] 
(prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:3387]
  InstallationDate: Installed on 2014-07-25 (332 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423)
  MachineType: Hewlett-Packard HP Pavilion dm1 Notebook PC
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.17.0-031700-generic 
root=UUID=47ebb06b-9b23-4773-abd3-5ea70ab7f5cf ro splash quiet drm.debug=0xe 
plymouth:debug
  SourcePackage: xorg
  UpgradeStatus: Upgraded to trusty on 2014-07-28 (329 days ago)
  dmi.bios.date: 08/04/2011
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.01
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 3387
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 36.0A
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.01:bd08/04/2011:svnHewlett-Packard:pnHPPaviliondm1NotebookPC:pvr06991020460300100:rvnHewlett-Packard:rn3387:rvr36.0A:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP Pavilion dm1 Notebook PC
  dmi.product.version: 06991020460300100
  d

[Touch-packages] [Bug 1468060] [NEW] /usr/bin/mediascanner-service-2.0:7:mem_index_search:g_tree_node_search:g_tree_search:gst_mem_index_get_assoc_entry:gst_index_get_assoc_entry_full

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding mediascanner2.  This problem was most recently seen with
version 0.105+15.10.20150604-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/111a04780c45974bb70563973bd8e378bae4cd63
contains more details.

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


** Tags: wily

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

Title:
  /usr/bin/mediascanner-
  
service-2.0:7:mem_index_search:g_tree_node_search:g_tree_search:gst_mem_index_get_assoc_entry:gst_index_get_assoc_entry_full

Status in mediascanner2 package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding mediascanner2.  This problem was most recently seen with
  version 0.105+15.10.20150604-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/111a04780c45974bb70563973bd8e378bae4cd63
  contains more details.

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

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


[Touch-packages] [Bug 1468032] Re: "Cancel Purchase" button not shown after installation

2015-06-23 Thread Rodney Dawes
** Changed in: unity-scope-click (Ubuntu)
 Assignee: (unassigned) => Rodney Dawes (dobey)

** Changed in: unity-scope-click (Ubuntu)
   Importance: Undecided => High

** Changed in: unity-scope-click (Ubuntu)
   Status: New => In Progress

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

Title:
  "Cancel Purchase" button not shown after installation

Status in unity-scope-click package in Ubuntu:
  In Progress

Bug description:
  Right after purchasing and installing an app the button is shown as
  "Uninstall" (when it should be "Cancel Purchase"). After going back to
  the scope and refreshing the results, the preview shows "Cancel
  Purchase" as expected.

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

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


[Touch-packages] [Bug 1468038] Re: Installation is started after clicking on "Cancel Purchase"

2015-06-23 Thread Rodney Dawes
** Changed in: unity-scope-click (Ubuntu)
 Assignee: (unassigned) => Rodney Dawes (dobey)

** Changed in: unity-scope-click (Ubuntu)
   Importance: Undecided => High

** Changed in: unity-scope-click (Ubuntu)
   Status: New => In Progress

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

Title:
  Installation is started after clicking on "Cancel Purchase"

Status in unity-scope-click package in Ubuntu:
  In Progress

Bug description:
  After clicking on the "Cancel Purchase" button, the app starts
  downloading and installing again. Clicking on that button should
  uninstall instead.

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

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


[Touch-packages] [Bug 1418688] Re: Ubuntu store scope does not tell you that there is an update

2015-06-23 Thread Rodney Dawes
@LionelB Updates are only offered to packages which are installed. How
exactly did you "delete" the scope?

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

Title:
  Ubuntu store scope does not tell you that there is an update

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

Bug description:
  It used to be that the "open" option will change to "update" when the
  version on the store was newer than the one in the phone in the Ubuntu
  store scope, this is no longer the case. The only way to install a new
  version is now from settings

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

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


[Touch-packages] [Bug 1418688] Re: Ubuntu store scope does not tell you that there is an update

2015-06-23 Thread Rodney Dawes
** Changed in: unity-scope-click (Ubuntu)
   Importance: High => Medium

** Changed in: canonical-devices-system-image
 Assignee: Thomas Strehl (strehl-t) => (unassigned)

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

Title:
  Ubuntu store scope does not tell you that there is an update

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

Bug description:
  It used to be that the "open" option will change to "update" when the
  version on the store was newer than the one in the phone in the Ubuntu
  store scope, this is no longer the case. The only way to install a new
  version is now from settings

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

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


[Touch-packages] [Bug 1468048] [NEW] /usr/lib/telepathy/telepathy-ofono:11:QList:QStringList:OfonoVoiceCallManager::getCalls:oFonoConnection::updateAudioRoute:oFonoCallChannel::onOfonoCallStateChanged

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding telepathy-ofono.  This problem was most recently seen with
version 0.2+15.10.20150603-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/5fd206d9404ff35db2469c07764f0421615b642d
contains more details.

** Affects: telepathy-ofono (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: rtm-14.09 utopic vivid wily

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

Title:
  /usr/lib/telepathy/telepathy-
  
ofono:11:QList:QStringList:OfonoVoiceCallManager::getCalls:oFonoConnection::updateAudioRoute:oFonoCallChannel::onOfonoCallStateChanged

Status in telepathy-ofono package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding telepathy-ofono.  This problem was most recently seen with
  version 0.2+15.10.20150603-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/5fd206d9404ff35db2469c07764f0421615b642d
  contains more details.

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

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


[Touch-packages] [Bug 1466170] Re: Update option in the application screen

2015-06-23 Thread Rodney Dawes
*** This bug is a duplicate of bug 1418688 ***
https://bugs.launchpad.net/bugs/1418688

** This bug has been marked a duplicate of bug 1418688
   Ubuntu store scope does not tell you that there is an update

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

Title:
  Update option in the application screen

Status in unity-scope-click package in Ubuntu:
  Confirmed

Bug description:
  With a longpress in an installed application icon you can open the
  application info screen.

  In that window are 2 buttons: Uninstall and Open.

  I think that when an update is available a third button called Update
  would be very useful.

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

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


[Touch-packages] [Bug 1468047] [NEW] /usr/bin/messaging-app:11:__GI_memcmp:QtVersit::QVersitReaderPrivate::containsAt:QtVersit::LineReader::tryReadLine:QtVersit::LineReader::readOneLine:QtVersit::Line

2015-06-23 Thread errors.ubuntu.com bug bridge
Public bug reported:

The Ubuntu Error Tracker has been receiving reports about a problem
regarding messaging-app.  This problem was most recently seen with
version 0.1+15.10.20150615-0ubuntu1, the problem page at
https://errors.ubuntu.com/problem/ccb14997871dc64c9e5adaaac3eab62e756137e2
contains more details.

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


** Tags: rtm-14.09 vivid wily

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

Title:
  /usr/bin/messaging-
  
app:11:__GI_memcmp:QtVersit::QVersitReaderPrivate::containsAt:QtVersit::LineReader::tryReadLine:QtVersit::LineReader::readOneLine:QtVersit::LineReader::readLine

Status in messaging-app package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding messaging-app.  This problem was most recently seen with
  version 0.1+15.10.20150615-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/ccb14997871dc64c9e5adaaac3eab62e756137e2
  contains more details.

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

-- 
Mailing list: https://launchpad.net/~touch-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-23 Thread Jamie Strandboge
FYI, this is happening daily, if not more, and most of the time I have
logout of my session and back in, which is very disruptive.

-- 
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 1467595] Re: cursor sometimes disappears on XPS 13 9343 and external monitor

2015-06-23 Thread Jamie Strandboge
I also don't see anything in /var/log/kern.log, /var/log/syslog or
/var/log/Xorg.0.log when this happens.

-- 
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 1468040] [NEW] Installation is started after clicking on "Cancel Purchase"

2015-06-23 Thread Alejandro J. Cura
*** This bug is a duplicate of bug 1468038 ***
https://bugs.launchpad.net/bugs/1468038

Public bug reported:

After clicking on the "Cancel Purchase" button, the app starts
downloading and installing again. Clicking on that button should
uninstall instead.

** Affects: unity-scope-click (Ubuntu)
 Importance: Undecided
 Status: New

** This bug has been marked a duplicate of bug 1468038
   Installation is started after clicking on "Cancel Purchase"

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

Title:
  Installation is started after clicking on "Cancel Purchase"

Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  After clicking on the "Cancel Purchase" button, the app starts
  downloading and installing again. Clicking on that button should
  uninstall instead.

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

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


[Touch-packages] [Bug 1468038] [NEW] Installation is started after clicking on "Cancel Purchase"

2015-06-23 Thread Alejandro J. Cura
Public bug reported:

After clicking on the "Cancel Purchase" button, the app starts
downloading and installing again. Clicking on that button should
uninstall instead.

** 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/1468038

Title:
  Installation is started after clicking on "Cancel Purchase"

Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  After clicking on the "Cancel Purchase" button, the app starts
  downloading and installing again. Clicking on that button should
  uninstall instead.

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

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


[Touch-packages] [Bug 1468032] [NEW] "Cancel Purchase" button not shown after installation

2015-06-23 Thread Alejandro J. Cura
Public bug reported:

Right after purchasing and installing an app the button is shown as
"Uninstall" (when it should be "Cancel Purchase"). After going back to
the scope and refreshing the results, the preview shows "Cancel
Purchase" as expected.

** 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/1468032

Title:
  "Cancel Purchase" button not shown after installation

Status in unity-scope-click package in Ubuntu:
  New

Bug description:
  Right after purchasing and installing an app the button is shown as
  "Uninstall" (when it should be "Cancel Purchase"). After going back to
  the scope and refreshing the results, the preview shows "Cancel
  Purchase" as expected.

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

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


[Touch-packages] [Bug 1468029] [NEW] unity8 crash breaking autopilot tests entering text with OSK

2015-06-23 Thread Ken VanDine
Public bug reported:

When running the autopilot tests for ubuntu-system-settings, at some
point it fails to enter text using the OSK.  It works fine for smaller
subsets of the tests, but not a full run.  It simply stops entering text
with keyboard.write.  Once it gets in this state, it will continue to
fail even for single tests until unity8 is restarted.  During the test
run, there is a unity8 crash file generated.  I wasn't able to create a
bug report for the problem directly from the OOPS on errors.ubuntu.com,
you can find it at https://errors.ubuntu.com/oops/c4124284-1999-11e5
-8fcb-fa163e75317b

My device:
current build number: 234
device name: mako
channel: ubuntu-touch/devel-proposed/ubuntu
last update: 2015-06-23 00:04:08
version version: 234
version ubuntu: 20150623
version device: 20150529.1
version custom: 20150623

@osomon has seen the same problem while running the webbrowser-app tests
on krillin with vivid-proposed.

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

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

Title:
  unity8 crash breaking autopilot tests entering text with OSK

Status in unity8 package in Ubuntu:
  New

Bug description:
  When running the autopilot tests for ubuntu-system-settings, at some
  point it fails to enter text using the OSK.  It works fine for smaller
  subsets of the tests, but not a full run.  It simply stops entering
  text with keyboard.write.  Once it gets in this state, it will
  continue to fail even for single tests until unity8 is restarted.
  During the test run, there is a unity8 crash file generated.  I wasn't
  able to create a bug report for the problem directly from the OOPS on
  errors.ubuntu.com, you can find it at
  https://errors.ubuntu.com/oops/c4124284-1999-11e5-8fcb-fa163e75317b

  My device:
  current build number: 234
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-06-23 00:04:08
  version version: 234
  version ubuntu: 20150623
  version device: 20150529.1
  version custom: 20150623

  @osomon has seen the same problem while running the webbrowser-app
  tests on krillin with vivid-proposed.

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

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


[Touch-packages] [Bug 1436406] Re: The Browser has no privacy options!

2015-06-23 Thread Rodney Dawes
** No longer affects: ubuntuphone

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

Title:
  The Browser has no privacy options!

Status in Web Browser App:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  
  The Browser has no privacy options!

  There should be a option to:

  - forbid third party cookies
  - tell Websites do not track me
  - delete chronicle
  - delete list of visited websites
  - to install a adblocker
  - to modify the user agent

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

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


[Touch-packages] [Bug 1436064] Re: SIM-PIN has to be entered every time after leaving the airplanemode

2015-06-23 Thread Rodney Dawes
** No longer affects: ubuntuphone

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

Title:
  SIM-PIN has to be entered every time after leaving the airplanemode

Status in the base for Ubuntu mobile products:
  New
Status in indicator-network package in Ubuntu:
  Invalid
Status in ofono package in Ubuntu:
  Confirmed

Bug description:
  
  Every time after leaving the air-plane mode you are forced to enter the 
SIM-Pin.

  While changing frequently between on-line and off-line this is
  annoying.

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

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


[Touch-packages] [Bug 1436069] Re: a date in the calendar app is ringing only once

2015-06-23 Thread Rodney Dawes
** No longer affects: ubuntuphone

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

Title:
  a date in the calendar app is ringing only once

Status in indicator-datetime package in Ubuntu:
  Confirmed

Bug description:
  
  A date in the calendar app is ringing only once.
  Then it disappears...
  If you are in a noisy environment you will miss the date. 

  The date should ring until it is confirmed.
  or
  The LED should flash after the ring tone has stopped.

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

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


[Touch-packages] [Bug 1437576] Re: [scopes] Apps in the AppStore can not be sorted by their license

2015-06-23 Thread Rodney Dawes
** Changed in: unity-scope-click (Ubuntu)
   Status: New => Triaged

** Changed in: unity-scope-click (Ubuntu)
   Importance: Undecided => Wishlist

** No longer affects: ubuntuphone

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

Title:
  [scopes] Apps in the AppStore can not be sorted by their license

Status in Ubuntu UX bugs:
  Triaged
Status in unity-scope-click package in Ubuntu:
  Triaged

Bug description:
  
  Trying to install only apps with OpenSource License is very hard because you 
have look for the license in every individual app description.

  There should be an option to sort or filter apps by their licence.

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

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


[Touch-packages] [Bug 1437305] Re: Wrong date day icon display and one day before events day in month view

2015-06-23 Thread Mihir Soni
** Changed in: ubuntu-calendar-app
   Importance: Undecided => Medium

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

Title:
  Wrong date day icon display and one day before events day in month
  view

Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in qtorganizer5-eds package in Ubuntu:
  Confirmed

Bug description:
  All day events display one day too early in month view.

  Create an all day event on 27th March 2015, move month view and the
  dot is against 26th March.  Can be corrected by changing all day event
  to span 27th to 28th March but now event displays over two days on day
  view. Icon displays wrong date: next day date

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

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


[Touch-packages] [Bug 1384503] Re: rsync fails on large files with compression

2015-06-23 Thread Ryan Harper
I've attempted to reproduce this issue but I've not been able to at this
point with stock 14.04 rsync versions between two 14.04 (up-to-date)
systems.  It may be highly dependent on the actual data; if you can
reproduce this with something publicly available (like a large iso
catted together multiple times or something else that I can create bit-
for-bit); that'd help me narrowing down the fix.

Could someone who can reproduce this issue please run  apport-collect
1384503 so I can get more information from the systems where you can
reproduce?

W.r.t 3.1.1, we cannot backport the newer package into Trusty, see
https://wiki.ubuntu.com/StableReleaseUpdates for the policy and
rationale.

However, I will take a look at the changes in 3.1.1 to enable the new-
style compression as well as the logic to detect when there is a
mismatch;  If that patchset is small and sane, we may be able to SRU
just that change to fix this issue in Trusty.

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

Title:
  rsync fails on large files with compression

Status in rsync package in Ubuntu:
  Fix Released
Status in rsync source package in Trusty:
  Confirmed

Bug description:
  Copying large (>10GB) files with rsync -z (compression) leads to a
  long hang and eventual error after transferring part of the file.  The
  error is consistent.  The file copies at normal speed until it reaches
  its maximum size (1.4 GB out of 20 GB for one, 6.9 GB out of 29 GB for
  another).  Then nothing happens for a while (many minutes).  Finally,
  there is an error:

  []
  jh/.VirtualBox/win7/win7.vbox
  jh/.VirtualBox/win7/win7.vbox-prev
  jh/.VirtualBox/win7/win7.vdi
  rsync: [sender] write error: Broken pipe (32)
  rsync error: error in rsync protocol data stream (code 12) at io.c(837) 
[sender=3.1.0]

  In this case, 6.9 GB of 29 GB transferred.  Without -z, it works.

  See the following upstream report, with a comment at the end from the
  rsync maintainer:

  https://bugzilla.samba.org/show_bug.cgi?id=10372

  According to this report, version 3.1.0 (included in 14.04) uses a
  different compression package from prior versions.  Prior versions did
  not have this problem for me using the same command on the same
  systems. Both hosts ran Ubuntu 11.10 at the time, and all run 14.04
  now, in each case with all updates applied, Intel hardware.  Network
  connection between them is gigabit ethernet through one switch.  A
  shell ssh between them in a terminal works and stays up during the
  failure, so it is not a network issue.  There are no relevant entries
  in syslog on either machine.  There is sufficient capacity on the
  receiving disk.  All filesystems are ext4.

  rsync command:

  /usr/bin/rsync -aHSxvz --delete --stats --exclude=lost+found
  --exclude=.gvfs --exclude=/nonlaptop /home/
  backup.host.edu:/bu/host/home/

  (yes, I changed the machine names)

  Current release (both hosts):

  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  Current package (both hosts):

  rsync:
Installed: 3.1.0-2ubuntu0.1
Candidate: 3.1.0-2ubuntu0.1
Version table:
   *** 3.1.0-2ubuntu0.1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
  100 /var/lib/dpkg/status
   3.1.0-2 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

  Thanks,

  --jh--

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

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


[Touch-packages] [Bug 1466240] Re: FallingBlocks app isn't tied to store once installed

2015-06-23 Thread Rodney Dawes
I don't think there's anything we can do in the scope itself to deal
with these types of packages. I've added CPI to the list, as there may
be something doable on the server. This will present a problem for
updating of apps that are currently using the old namespacing and then
switch to the new namespace declaration at some point.

The problem with falling blocks in particular is that the package name
in the store is still "com.ubuntu.developer.labsin.fallingblocks" while
the package actually installs as "labsin.fallingblocks" to the system.
This means that the scope is not able to associate the installed package
with one in the store, as there is no "labsin.fallingblocks" entry in
the store database.

I'm not sure if the developer of the app can fix this in the dev portal,
or not.

** Also affects: click-package-index
   Importance: Undecided
   Status: New

** Changed in: unity-scope-click (Ubuntu)
   Status: New => Invalid

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

Title:
  FallingBlocks app isn't tied to store once installed

Status in Click Package metadata search service:
  New
Status in unity-scope-click package in Ubuntu:
  Invalid

Bug description:
  If I install FallingBlocks from the app store, and then long press on
  its icon in my app scope, I don't see any of its metadata like I would
  expect.  No reviews, no author info, no version info, no screenshots.

  If I then go back to its store page, the store thinks it isn't even
  installed.  I only see the Install button, no Uninstall or Open
  buttons.  I am not offered the opportunity to review it.

  current build number: 20
  device name: mako
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2015-06-15 15:28:53
  version version: 20
  version ubuntu: 20150611.3
  version device: 20150210
  version custom: 20150611

To manage notifications about this bug go to:
https://bugs.launchpad.net/click-package-index/+bug/1466240/+subscriptions

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


[Touch-packages] [Bug 1466618] [NEW] sim contact importation does not work on ubuntu v 23

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

since last update (version 23 20150611.3) the possibility of importing
sim contact as appear into the contact menu : that's great, but it does
not work for me ...

- select import sim
- new windows appear a waiting logo popup ... and few second (between 5 to 10) 
a message says "error importing ...) and then repeat a waiting popup ... and 
few second later the error message.

i don't have any idear to help debbuging this behaviour.

tel me if you need some logs files.

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

-- 
sim contact importation does not work on ubuntu v 23
https://bugs.launchpad.net/bugs/1466618
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to address-book-app 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 1465826] [NEW] The phone freez totally

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

I want to change between 2 application( dekko to web browser) , but the phone 
complcompletely freez.
After ~20 minutes I restarted the phone.(pushed the ON buttone until restart)

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

-- 
The phone freez totally
https://bugs.launchpad.net/bugs/1465826
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 1436046] Re: no SMS tracking

2015-06-23 Thread Rodney Dawes
** No longer affects: ubuntuphone

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

Title:
  no SMS tracking

Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  
  When sending a SMS on Android you will get a notification if the recipient 
receives the Message.
  On Ubuntu you will get no notification. This is leaving you in the dark about 
the status of your Message.

  There should be a received sign on the SMS-Message when it has reached
  the recipient.

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

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


[Touch-packages] [Bug 1466618] Re: sim contact importation does not work on ubuntu v 23

2015-06-23 Thread Rodney Dawes
** Project changed: ubuntuphone => address-book-app (Ubuntu)

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

Title:
  sim contact importation does not work on ubuntu v 23

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

Bug description:
  since last update (version 23 20150611.3) the possibility of importing
  sim contact as appear into the contact menu : that's great, but it
  does not work for me ...

  - select import sim
  - new windows appear a waiting logo popup ... and few second (between 5 to 
10) a message says "error importing ...) and then repeat a waiting popup ... 
and few second later the error message.

  i don't have any idear to help debbuging this behaviour.

  tel me if you need some logs files.

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

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


[Touch-packages] [Bug 1466616] [NEW] no keyboard windows since upgrade 23

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

since the upgrade of yesterday to ubuntu version 23 (20150611.3) on BQ
aquaris phone there is no keyboard terminal in applications ...

- no keyboard in terminal
- no keyboard in "find new application on ubuntu market
- no keyboard to enter wifi key 
- ...

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

-- 
no keyboard windows since upgrade 23
https://bugs.launchpad.net/bugs/1466616
You received this bug notification because you are a member of Ubuntu Touch 
seeded packages, which is subscribed to ubuntu-keyboard 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 1465826] Re: The phone freez totally

2015-06-23 Thread Rodney Dawes
** Project changed: ubuntuphone => 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/1465826

Title:
  The phone freez totally

Status in unity8 package in Ubuntu:
  New

Bug description:
  I want to change between 2 application( dekko to web browser) , but the phone 
complcompletely freez.
  After ~20 minutes I restarted the phone.(pushed the ON buttone until restart)

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

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


[Touch-packages] [Bug 1466616] Re: no keyboard windows since upgrade 23

2015-06-23 Thread Rodney Dawes
** Project changed: ubuntuphone => ubuntu-keyboard (Ubuntu)

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

Title:
  no keyboard windows since upgrade 23

Status in ubuntu-keyboard package in Ubuntu:
  New

Bug description:
  since the upgrade of yesterday to ubuntu version 23 (20150611.3) on BQ
  aquaris phone there is no keyboard terminal in applications ...

  - no keyboard in terminal
  - no keyboard in "find new application on ubuntu market
  - no keyboard to enter wifi key 
  - ...

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

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


[Touch-packages] [Bug 1466662] Re: No way to arrange apps in the App scope other than alphabetically

2015-06-23 Thread Rodney Dawes
** Changed in: unity-scope-click (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: unity-scope-click (Ubuntu)
   Status: New => Triaged

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

Title:
  No way to arrange apps in the App scope other than alphabetically

Status in unity-scope-click package in Ubuntu:
  Triaged

Bug description:
  Would be nice to allow users to manually arrange apps in the scope
  however they wish.

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

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


[Touch-packages] [Bug 1466669] Re: Icons in the App scope disappear and appear for no good reason

2015-06-23 Thread Rodney Dawes
I've added Unity8 to the list, as it may be possible for the dash to
avoid destroying the current view until the new search returns the
results, but there is no other way to refresh the list of results in a
scope, outside of performing a new search.


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

** Summary changed:

- Icons in the App scope disappear and appear for no good reason
+ Icons in the App scope disappear and appear when search is refreshed

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

Title:
  Icons in the App scope disappear and appear when search is refreshed

Status in unity-scope-click package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  After installing, uninstalling or updating an app, all the app icons
  disappear for a second or two. That's annoying and makes me feel like
  the phone is broken/slow/unresponsive. I believe there are other ways
  to indicate refresh without disappearing icons.

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

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


[Touch-packages] [Bug 1465828] Re: ota-4 image contains unexpected version of system-image-cli

2015-06-23 Thread Łukasz Zemczak
** Changed in: system-image (Ubuntu)
   Status: Confirmed => Won't Fix

** Changed in: system-image (Ubuntu)
   Status: Won't Fix => Fix Released

** Changed in: system-image (Ubuntu)
   Status: Fix Released => Invalid

** Also affects: system-image (Ubuntu RTM)
   Importance: Undecided
   Status: New

** Changed in: system-image (Ubuntu RTM)
   Status: New => Fix Released

** Changed in: system-image (Ubuntu RTM)
 Assignee: (unassigned) => Łukasz Zemczak (sil2100)

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

Title:
  ota-4 image contains unexpected version of system-image-cli

Status in the base for Ubuntu mobile products:
  New
Status in system-image package in Ubuntu:
  Invalid
Status in system-image package in Ubuntu RTM:
  Fix Released

Bug description:
  In any build containing vivid-overlay rootfs: 20150611.3, eg:

  ubuntu-touch/stable/bq-aquaris.en,krillin,23

  phablet@ubuntu-phablet:~$ dpkg -l | grep system-image
  ii  system-image-cli 2.5-0ubuntu1 
   all  Ubuntu system image updater command line 
client
  ii  system-image-common  2.5-0ubuntu1 
   all  Ubuntu system image updater
  ii  system-image-dbus2.5-0ubuntu1 
   all  Ubuntu system image updater command line 
client

  The bug #1383539 should have resulted in a more recent version in the
  vivid stable overlay

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

-- 
Mailing list: https://launchpad.net/~touch-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] [NEW] Two GPS compatible apps conflict and loose GPS

2015-06-23 Thread Ronnie Tucker
Public bug reported:

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.)

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

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


[Touch-packages] [Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-06-23 Thread Mihir Soni
In Calendar , currently we are not using any bottom edge so marking this
as invalid.

** Changed in: ubuntu-calendar-app
   Importance: Undecided => Low

** Changed in: ubuntu-calendar-app
   Status: New => Invalid

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

Title:
  [SDK] Bottom edge header improvement

Status in Dekko:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Invalid
Status in Clock application for Ubuntu devices:
  Fix Released
Status in Document Viewer application for Ubuntu devices:
  Fix Released
Status in Ubuntu UX bugs:
  Fix Committed
Status in address-book-app package in Ubuntu:
  Confirmed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in messaging-app package in Ubuntu:
  Confirmed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  When user does a bottom edge gesture to show a new view (Address Book,
  Dialer, Clock, etc) the new header should never have a chevron
  pointing left, as it seems to suggest the wrong direction for the
  movement.

  The header of the new View should always have a chevron pointing down.
  Also, it should allow people using a gesture and dismiss the new
  screen by dragging or swiping the [chevron & title area of the header]
  downward

  UX here:
  
https://www.dropbox.com/s/ypmhej7ie2hrc9a/down_chevron_for_manage_dash_01%28wireframe%29.tiff?dl=0

  VD:
  https://www.dropbox.com/s/1wuihy8tf7no7iw/Music_Down_Chevron.jpg?dl=0

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

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


[Touch-packages] [Bug 1384503] Re: rsync fails on large files with compression

2015-06-23 Thread Robie Basak
** Changed in: rsync (Ubuntu)
 Assignee: (unassigned) => Ryan Harper (raharper)

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

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

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

** Changed in: rsync (Ubuntu Trusty)
 Assignee: (unassigned) => Ryan Harper (raharper)

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

Title:
  rsync fails on large files with compression

Status in rsync package in Ubuntu:
  Fix Released
Status in rsync source package in Trusty:
  Confirmed

Bug description:
  Copying large (>10GB) files with rsync -z (compression) leads to a
  long hang and eventual error after transferring part of the file.  The
  error is consistent.  The file copies at normal speed until it reaches
  its maximum size (1.4 GB out of 20 GB for one, 6.9 GB out of 29 GB for
  another).  Then nothing happens for a while (many minutes).  Finally,
  there is an error:

  []
  jh/.VirtualBox/win7/win7.vbox
  jh/.VirtualBox/win7/win7.vbox-prev
  jh/.VirtualBox/win7/win7.vdi
  rsync: [sender] write error: Broken pipe (32)
  rsync error: error in rsync protocol data stream (code 12) at io.c(837) 
[sender=3.1.0]

  In this case, 6.9 GB of 29 GB transferred.  Without -z, it works.

  See the following upstream report, with a comment at the end from the
  rsync maintainer:

  https://bugzilla.samba.org/show_bug.cgi?id=10372

  According to this report, version 3.1.0 (included in 14.04) uses a
  different compression package from prior versions.  Prior versions did
  not have this problem for me using the same command on the same
  systems. Both hosts ran Ubuntu 11.10 at the time, and all run 14.04
  now, in each case with all updates applied, Intel hardware.  Network
  connection between them is gigabit ethernet through one switch.  A
  shell ssh between them in a terminal works and stays up during the
  failure, so it is not a network issue.  There are no relevant entries
  in syslog on either machine.  There is sufficient capacity on the
  receiving disk.  All filesystems are ext4.

  rsync command:

  /usr/bin/rsync -aHSxvz --delete --stats --exclude=lost+found
  --exclude=.gvfs --exclude=/nonlaptop /home/
  backup.host.edu:/bu/host/home/

  (yes, I changed the machine names)

  Current release (both hosts):

  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04

  Current package (both hosts):

  rsync:
Installed: 3.1.0-2ubuntu0.1
Candidate: 3.1.0-2ubuntu0.1
Version table:
   *** 3.1.0-2ubuntu0.1 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
  100 /var/lib/dpkg/status
   3.1.0-2 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

  Thanks,

  --jh--

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

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


[Touch-packages] [Bug 1434584] Re: closing an app by swiping it should graceful quit

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package qtubuntu -
0.61+15.10.20150617-0ubuntu1

---
qtubuntu (0.61+15.10.20150617-0ubuntu1) wily; urgency=medium

  [ Daniel d'Andrada ]
  * Drastically improve surface resize responsiveness

  [ Gerry Boland ]
  * Add support for Mir window close event (LP: #1434584)

  [ Lukáš Tinkl ]
  * fix logic error when testing QFlags

  [ Timo Jyrinki ]
  * Build depend against libinput-dev to fix build with Qt 5.5 (LP:
#1437192) (LP: #1437192)

 -- CI Train Bot   Wed, 17 Jun 2015 13:46:52
+

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

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

Title:
  closing an app by swiping it should graceful quit

Status in Qt integration with the Mir display server:
  Confirmed
Status in qtubuntu package in Ubuntu:
  Fix Released

Bug description:
  By swiping an app to close causes the app to quit without call its
  destructor. In my opinion we should use the same behavior as we have
  on desktop when clicking on the "x" in the windows manager.

  Most of c++ classes has some cleanup function on the destructor and it
  expected that will be called at some point. For example the
  QTemporaryFile or QTemporaryDir. They remove the files created during
  the destruction.

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

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


[Touch-packages] [Bug 1437192] Re: FTBFS with Qt 5.5: "cannot find -linput"

2015-06-23 Thread Launchpad Bug Tracker
This bug was fixed in the package qtubuntu -
0.61+15.10.20150617-0ubuntu1

---
qtubuntu (0.61+15.10.20150617-0ubuntu1) wily; urgency=medium

  [ Daniel d'Andrada ]
  * Drastically improve surface resize responsiveness

  [ Gerry Boland ]
  * Add support for Mir window close event (LP: #1434584)

  [ Lukáš Tinkl ]
  * fix logic error when testing QFlags

  [ Timo Jyrinki ]
  * Build depend against libinput-dev to fix build with Qt 5.5 (LP:
#1437192) (LP: #1437192)

 -- CI Train Bot   Wed, 17 Jun 2015 13:46:52
+

** Changed in: qtubuntu (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 qtubuntu in Ubuntu.
https://bugs.launchpad.net/bugs/1437192

Title:
  FTBFS with Qt 5.5: "cannot find -linput"

Status in appmenu-qt5 package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  Fix Released

Bug description:
  There seems to be some sort of new dependency, even though none were added in 
Qt 5.5's own build dependencies:
  ---
  g++ -std=c++11 -Wl,-no-undefined -Wl,-Bsymbolic-functions -Wl,-z,relro 
-shared -o libqpa-ubuntumirclient.so backingstore.o clipboard.o glcontext.o 
input.o integration.o nativeinterface.o platformservices.o plugin.o screen.o 
theme.o window.o moc_clipboard.o moc_input.o moc_plugin.o moc_screen.o 
moc_window.o  -lmirclient -lmircommon -lubuntu_application_api 
-lQt5PlatformSupport -lfontconfig -lfreetype -lgthread-2.0 -pthread -lglib-2.0 
-linput -lxkbcommon -ludev -lmtdev -lEGL -lQt5Gui -lQt5Sensors -lQt5DBus 
-lQt5Core -lGLESv2 -lpthread
  /usr/bin/ld: cannot find -linput
  ---

  That is, qtubuntu and appmenu-qt5 should apparently have a build
  dependency on 'libinput-dev':
  https://launchpad.net/ubuntu/+source/libinput

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


  appmenu-qt5:
  
https://launchpadlibrarian.net/202748418/buildlog_ubuntu-vivid-amd64.appmenu-qt5_0.3.0%2B15.04.20150121-0ubuntu4~vivid1~test1~qt550alpha1_BUILDING.txt.gz

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

-- 
Mailing list: https://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   >