[Touch-packages] [Bug 1449389] Re: Python Exception class 'TypeError' iter() returned non-iterator of type '_iterator'

2015-05-08 Thread Marius Gedminas
gdb in Ubuntu links against libpython3.4.

The Python scripts in /usr/share/glib-2.0/gdb haven't been fully ported
to Python 3: the custom iterators should define a '__next__' method
alias pointing to 'next'.

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

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

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

Title:
  Python Exception class 'TypeError' iter() returned non-iterator of
  type '_iterator'

Status in gdb package in Ubuntu:
  Invalid
Status in glib2.0 package in Ubuntu:
  New

Bug description:
  I tried to gdb a gnome-shell segfault:

  (gdb) bt
  #0  0x7f8cad51f638 in g_slice_alloc (magazine_chunks=0xf879b0) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:535
  #1  0x7f8cad51f638 in g_slice_alloc (tmem=optimized out, ix=1) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:842
  #2  0x7f8cad51f638 in g_slice_alloc (mem_size=mem_size@entry=24) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:998
  Python Exception class 'TypeError' iter() returned non-iterator of type 
'_iterator': 

  This looks like a bug in a gdb pretty-printer that's shipped with
  Ubuntu.

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

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


[Touch-packages] [Bug 1389954] Re: Make .lxc domain name resolution easier to discover and enable

2015-05-08 Thread Forest
Okay, I've written up a short README.Debian describing the necessary
changes to /etc/default/lxc-net and the dnsmasq config file. I don't
remember what steps are necessary to make the domain names accessible,
though, and I'd like to include those steps in the readme.

Do I have to restart the lxc-net service? (And is that service called
the same thing regardless of whether sysv init, upstart, or systemd is
in use?)

Do I have to restart NetworkManager?

Do I have to restart any already-running containers?

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

Title:
  Make .lxc domain name resolution easier to discover and enable

Status in lxc package in Ubuntu:
  Confirmed

Bug description:
  The lxc package on ubuntu does almost nothing to help a user enable
  DNS resolution for containers via dnsmaq, let alone discover that it
  is possible. How about enabling it by default? I think all it would
  take is adding server=/lxc/10.0.3.1 to a file in
  /etc/NetworkManager/dnsmasq.d/ and uncommenting LXC_DOMAIN=lxc in
  /etc/default/lxc-net.

  Even if there's a good reason not to enable this by default, shouldn't
  it at least be clearly documented someplace obvious instead of buried
  in a system config file with a misleading comment that mentions the
  wrong dnsmasq file to edit? (The one currently mentioned by
  /etc/default/lxc-net does nothing on ubuntu desktop systems, because
  ubuntu's NetworkManager starts dnsmasq with a special config
  directory.)

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

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


[Touch-packages] [Bug 1315218] Re: renaming net interfaces sometimes gives renameX names

2015-05-08 Thread Martin Pitt
I sent a proposal to https://lists.ubuntu.com/archives/ubuntu-
devel/2015-May/038761.html which will fix this. Within the boundaries of
the existing persistant net generator there isn't much that we can do,
I'm afraid; it's an inherent design flaw.

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

** Changed in: systemd (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  renaming net interfaces sometimes gives renameX names

Status in systemd package in Ubuntu:
  Triaged

Bug description:
  I have been having problems, and some others have to, with 14.04
  devbiosname causing renaming of network interfaces.

  I also started to have this issue today on 12.04

  In both cases ethx gets renamed to renamey interface, and causes the
  interface to basically get lost.

  In my 12.04 case, I started with two nics, eth0 and eth1, then added a
  third as eth2, and removed eth0 from the system.

  This caused eth0 to be renamed to eth1, and eth1 to be renamed to
  eth2.

  Just now, this started failing, and eth0 gets renamed to rename3, and
  eth1 stays as eth1. and boot fails due to no network.

  for 14.04, the same type of issue, eth0 gets renamed to rename2, and
  eth1 gets renamed to whatever it should (em2, p5p1, ...)

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

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


[Touch-packages] [Bug 1449389] Re: Python Exception class 'TypeError' iter() returned non-iterator of type '_iterator'

2015-05-08 Thread Marius Gedminas
The command to list Python scripts that have been autoloaded is:

(gdb) info auto-load python-scripts

I'm guessing 
/usr/share/gdb/auto-load/lib/x86_64-linux-gnu/libglib-2.0.so.0.4400.0-gdb.py is 
the one that causes my problem.
It's a small script that adds /usr/share/glib-2.0/gdb to sys.path and imports 
stuff from it.

/usr/share/glib-2.0/gdb is shipped in libglib2.0-0-dbg.

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

Title:
  Python Exception class 'TypeError' iter() returned non-iterator of
  type '_iterator'

Status in gdb package in Ubuntu:
  New

Bug description:
  I tried to gdb a gnome-shell segfault:

  (gdb) bt
  #0  0x7f8cad51f638 in g_slice_alloc (magazine_chunks=0xf879b0) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:535
  #1  0x7f8cad51f638 in g_slice_alloc (tmem=optimized out, ix=1) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:842
  #2  0x7f8cad51f638 in g_slice_alloc (mem_size=mem_size@entry=24) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:998
  Python Exception class 'TypeError' iter() returned non-iterator of type 
'_iterator': 

  This looks like a bug in a gdb pretty-printer that's shipped with
  Ubuntu.

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

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


[Touch-packages] [Bug 1449380] Re: systemctl default stops ifup@.service

2015-05-08 Thread Martin Pitt
I successfully ran the test case on the -proposed package.

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

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

Title:
  systemctl default stops ifup@.service

Status in systemd package in Ubuntu:
  Fix Committed
Status in systemd source package in Vivid:
  Fix Committed
Status in systemd package in Debian:
  Fix Released

Bug description:
  Running the display-manager autopkgtest causes eth0 to get shut down:

  Apr 28 08:30:15 autopkgtest ifdown[3267]: Internet Systems Consortium DHCP 
Client 4.3.1
  Apr 28 08:30:15 autopkgtest ifdown[3267]: Copyright 2004-2014 Internet 
Systems Consortium.
  Apr 28 08:30:15 autopkgtest ifdown[3267]: All rights reserved.
  Apr 28 08:30:15 autopkgtest ifdown[3267]: For info, please visit 
https://www.isc.org/software/dhcp/
  Apr 28 08:30:15 autopkgtest ifdown[3267]: Listening on 
LPF/eth0/52:54:00:12:34:56
  Apr 28 08:30:15 autopkgtest ifdown[3267]: Sending on   
LPF/eth0/52:54:00:12:34:56
  Apr 28 08:30:15 autopkgtest ifdown[3267]: Sending on   Socket/fallback
  Apr 28 08:30:15 autopkgtest dhclient[3301]: DHCPRELEASE on eth0 to 10.0.2.2 
port 67 (xid=0x3ca4ea0a)
  Apr 28 08:30:15 autopkgtest ifdown[3267]: DHCPRELEASE on eth0 to 10.0.2.2 
port 67 (xid=0x3ca4ea0a)

  This breaks the ssh runner.

  SRU TEST CASE:
  ==
  - Prepare a system which uses ifupdown (e. g. a standard 
adt-buildvm-ubuntu-cloud VM)
  - Start it, run sudo systemctl default
  - With vivid final's systemd, this will stop ifup@eth0.service and hence shut 
down eth0. ssh and other network connections will stop.
  - With this fix, ifup@eth0.service and eth0 should stay running/up.

  Regression potential: Very low: We don't use systemctl isolate
  during regular operation, and more elaborate commands like systemctl
  isolate rescue.target are currently broken on Ubuntu anyway due to
  our D-Bus shutdown hack.

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

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


[Touch-packages] [Bug 1449389] Re: Python Exception class 'TypeError' iter() returned non-iterator of type '_iterator'

2015-05-08 Thread Marius Gedminas
Somewhat-related upstream bug:
https://bugzilla.gnome.org/show_bug.cgi?id=720635

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

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

Title:
  Python Exception class 'TypeError' iter() returned non-iterator of
  type '_iterator'

Status in gdb package in Ubuntu:
  Invalid
Status in glib2.0 package in Ubuntu:
  New

Bug description:
  I tried to gdb a gnome-shell segfault:

  (gdb) bt
  #0  0x7f8cad51f638 in g_slice_alloc (magazine_chunks=0xf879b0) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:535
  #1  0x7f8cad51f638 in g_slice_alloc (tmem=optimized out, ix=1) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:842
  #2  0x7f8cad51f638 in g_slice_alloc (mem_size=mem_size@entry=24) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:998
  Python Exception class 'TypeError' iter() returned non-iterator of type 
'_iterator': 

  This looks like a bug in a gdb pretty-printer that's shipped with
  Ubuntu.

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

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


[Touch-packages] [Bug 1452956] Re: Stale lock file causes QtCreator to freeze when starting

2015-05-08 Thread Benjamin Zeller
Seems this is related to a regression introduced by this bugfix to Qt:
https://bugreports.qt.io/browse/QTBUG-21739

** Package changed: ubuntu-ui-toolkit (Ubuntu) = qtcreator (Ubuntu)

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

Title:
  Stale lock file causes QtCreator to freeze when starting

Status in qtcreator package in Ubuntu:
  New

Bug description:
  I was debugging why my ubuntu-sdk instance would not start up (it
  instead freezes indefinitely) when I noticed a stale lock file under
  ~/.config. I removed this file and the IDE started.

  To reproduce:

  1. Execute the following from the terminal: touch 
~/.config/QtProject/QtCreator.ini.lock
  2. Start qtcreator or ubuntu-sdk.

  Expected results: The IDE starts as expected
  Actual results: The IDE hangs indefinitely

  Any sane IDE should be able to handle stale lock files--such a thing
  should not prevent the application from starting.

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

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


[Touch-packages] [Bug 1453011] Re: SegvAnalysis: Failure: invalid literal for int() with base 16: '='

2015-05-08 Thread Marius Gedminas
A simple fix would be to modify apport.report.Report.add_gdb_info() to
use

 _command_output(..., stderr=subprocess.PIPE )

if we don't mind ignoring gdb's stderr.

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

Title:
  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

Status in apport package in Ubuntu:
  New

Bug description:
  Apport sometimes gets confused when analyzing a core dump:

  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

  I'm attaching the crash file (sans base64-encoded core dump) that
  contains this and some other wonderful examples, like

  Registers: $6 = 0x0   
  
  ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4   
  
  Stacktrace: No symbol __nih_abort_msg in current context.

  and the Disassembly: field containing the actual stack trace, after
  the disassembly itself.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.17.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May  8 10:17:40 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-07-25 (1016 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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

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


[Touch-packages] [Bug 1453041] Re: SettingsDb should check file timestamps instead of using inotify watch

2015-05-08 Thread Thomas Strehl
** Changed in: unity-scopes-api (Ubuntu)
   Importance: Wishlist = Undecided

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

Title:
  SettingsDb should check file timestamps instead of using inotify watch

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

Bug description:
  SettingsDb could be greatly simplified by using ctime/mtime of the
  settings file, rather than a watcher thread and inotify watch. The
  only place where we care if settings file has changes is settings()
  getter and this is where we can just check ctime/mtime to detect
  changes and re-parse.

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

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


[Touch-packages] [Bug 1382302] Re: Broadcom Corporation BCM4352 bluetooth adapter not finding any bluetooth devices

2015-05-08 Thread redfox7691
The BCM4352 is wifi part of chipset, the bluetooth component has a
different id. Last Tuesday I've bought a half size PCIE card, an
Azurewave AW-CE123H 802.11ac/nbg WiFi+BT Broadcom BCM4352, because I use
my laptop as hackintosh and the original Intel board is not supported.

From a OSX forum I've learned that my new hardware needs a specific
firmware and I've installed a component to inject this firmware into my
card at every boot and sleep/wake cycle.

After this I've found that, under Linux, bluetooth was not working:
after some searching I've found that btusb module supports device
13d3:3404 (iProduct  BCM20702A0)  only from kernel 3.19, but (for other
reasons) I'm using kernel 3.18 on my Ubuntu 14.04.

I don't know where is the commit hash, but in btusb.c of kernel 3.19 at
line 109/110 there is support at firmware loading for 13d3:3404 device,
this is absent in 3.18.13 kernel.

I hope that this can you help to find piece of information that you
asked for.

Regards,
Claudio

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

Title:
  Broadcom Corporation BCM4352 bluetooth adapter not finding any
  bluetooth devices

Status in bluez package in Ubuntu:
  Fix Released

Bug description:
  Broadcom Corporation BCM4352 wi-fi/bluetooth adapter  is unable to
  find/detect Bluetooth devices, and Bluetooth devices can not see the
  Ubuntu PC, even when in pairing mode.

  (Here is a similar bug, but for a different Broadcom device:
  https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1264311)

  MOTHERBOARD INFO

  $ sudo dmidecode -t baseboard
  # dmidecode 2.12
  SMBIOS 2.7 present.

  Handle 0x0002, DMI type 2, 15 bytes
  Base Board Information
   Manufacturer: ASRock
   Product Name: Z87E-ITX
   Version:
   Serial Number: E80-34027900563
   Asset Tag:
   Features:
    Board is a hosting board
    Board is replaceable
   Location In Chassis:
   Chassis Handle: 0x0003
   Type: Motherboard
   Contained Object Handles: 0

  UBUNTU INFO

  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 14.04.1 LTS
  Release:  14.04
  Codename: trusty

   $ uname -a
  Linux Computer 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 
x86_64 x86_64 x86_64 GNU/Linux

  WI-FI DEVICE INFO

  $ lspci | grep Broadcom
  03:00.0 Network controller: Broadcom Corporation BCM4352 802.11ac Wireless 
Network Adapter (rev 03)

  Note, the BCM4352 802.11ac device is a combination Wi-Fi + Bluetooth
  adapter.

  BLUETOOTH DEVICE INFO

  $ lsusb
  Bus 002 Device 002: ID 8087:8000 Intel Corp.
  Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Bus 001 Device 003: ID 13d3:3404 IMC Networks
  Bus 001 Device 002: ID 8087:8008 Intel Corp.
  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
  Bus 003 Device 004: ID 1b1c:0c04 Corsair
  Bus 003 Device 003: ID 046d:0826 Logitech, Inc.
  Bus 003 Device 002: ID 09da:024f A4 Tech Co., Ltd RF Receiver and G6-20D 
Wireless Optical Mouse
  Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

  The system log does not show any errors when the btusb module is
  loaded...

  kernel: [36245.996355] usbcore: registered new interface driver btusb
  bluetoothd[833]: Unknown command complete for opcode 19
  bluetoothd[833]: Endpoint registered: sender=:1.1820 path=/MediaEndpoint/HFPAG
  bluetoothd[833]: Endpoint registered: sender=:1.1820 path=/MediaEndpoint/HFPHS
  bluetoothd[833]: Endpoint registered: sender=:1.1820 
path=/MediaEndpoint/A2DPSource
  bluetoothd[833]: Endpoint registered: sender=:1.1820 
path=/MediaEndpoint/A2DPSink
  bluetoothd[833]: Endpoint registered: sender=:1.77 path=/MediaEndpoint/HFPAG
  bluetoothd[833]: Endpoint registered: sender=:1.77 path=/MediaEndpoint/HFPHS
  bluetoothd[833]: Endpoint registered: sender=:1.77 
path=/MediaEndpoint/A2DPSource
  bluetoothd[833]: Endpoint registered: sender=:1.77 
path=/MediaEndpoint/A2DPSink
  bluetoothd[833]: Adapter /org/bluez/833/hci0 has been enabled

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

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


[Touch-packages] [Bug 1450137] Re: Qt5 applications crash when switching screens

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

** Changed in: qtbase-opensource-src (Ubuntu)
   Status: New = Confirmed

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

Title:
  Qt5 applications crash when switching screens

Status in qtbase-opensource-src package in Ubuntu:
  Confirmed

Bug description:
  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is
  turned on) Qt5 applications (including plasmashell) quite often crash.
  This makes my laptop unusable, since I do that very frequently.

  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5

  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

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

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


[Touch-packages] [Bug 1447160] Re: lxc-create template does not include /etc/hosts hostname resolution

2015-05-08 Thread Antoni Segura Puimedon
Sorry Serge, I didn't see the first reply. I made a mistake pasting the (4), 
the four was missing the

127.0.1.1 hostname

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

Title:
  lxc-create template does not include /etc/hosts hostname resolution

Status in lxc package in Ubuntu:
  Incomplete

Bug description:
  1) Ubuntu 14.04 creating an Ubuntu 12.04 lxc container.
  2) Version: 1.0.7-0ubuntu0.1
  3) /etc/hosts should have been:
  127.0.0.1 localhost

  # The following lines are desirable for IPv6 capable hosts
  ::1 ip6-localhost ip6-loopback
  fe00::0 ip6-localnet
  ff00::0 ip6-mcastprefix
  ff02::1 ip6-allnodes
  ff02::2 ip6-allrouters
  ff02::3 ip6-allhosts
  127.0.1.1 hostname

  4)  /etc/hosts was:
 127.0.0.1 localhost

  # The following lines are desirable for IPv6 capable hosts
  ::1 ip6-localhost ip6-loopback
  fe00::0 ip6-localnet
  ff00::0 ip6-mcastprefix
  ff02::1 ip6-allnodes
  ff02::2 ip6-allrouters
  ff02::3 ip6-allhosts
  127.0.1.1 hostname

  According to http://www.debian.org/doc/manuals/debian-
  reference/ch05.en.html#_the_hostname_resolution the loopback address
  to use in this case is 127.0.1.1 and it is what for example maas
  provisioning does. This would help software that expects the hostname
  be resolvable work inside lxc containers.

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

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


[Touch-packages] [Bug 1453009] [NEW] add option to get the md5 checksum only

2015-05-08 Thread Karl-Philipp Richter
Public bug reported:

It's currently not possible to retrieve the md5 checksum of a file
onlyrefhttp://stackoverflow.com/questions/3679296/only-get-hash-value-
using-md5sum-without-filename/ref, so that external tools have to be
used.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: coreutils 8.23-3ubuntu1
Uname: Linux 4.0.1-040001-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: Unity
Date: Fri May  8 09:16:33 2015
EcryptfsInUse: Yes
InstallationDate: Installed on 2015-04-02 (35 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Beta amd64 (20150326)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: coreutils
SystemImageInfo:
 current build number: 0
 device name: 
 channel: daily
 last update: Unknown
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

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

Title:
  add option to get the md5 checksum only

Status in coreutils package in Ubuntu:
  New

Bug description:
  It's currently not possible to retrieve the md5 checksum of a file
  onlyrefhttp://stackoverflow.com/questions/3679296/only-get-hash-
  value-using-md5sum-without-filename/ref, so that external tools have
  to be used.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: coreutils 8.23-3ubuntu1
  Uname: Linux 4.0.1-040001-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri May  8 09:16:33 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2015-04-02 (35 days ago)
  InstallationMedia: Ubuntu 15.04 Vivid Vervet - Beta amd64 (20150326)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: coreutils
  SystemImageInfo:
   current build number: 0
   device name: 
   channel: daily
   last update: Unknown
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1450137] Re: Qt5 applications crash when switching screens

2015-05-08 Thread Antonis Kanouras
This has affected all Plasma 5 releases in Kubuntu since Utopic,
including the current backport of Plasma 5.3.

It reliably triggers a cascade of crashes in at least krunner, plasma
and kwin on every screen topology change, making for a very
disconcerting user experience.

Please consider cherry-picking https://codereview.qt-
project.org/#/c/00/ for Qt  5.4.2, Fedora and OpenSUSE have already
done so.

You can find more details in https://bugs.kde.org/show_bug.cgi?id=345544
.

** Bug watch added: KDE Bug Tracking System #345544
   https://bugs.kde.org/show_bug.cgi?id=345544

** Also affects: plasma-workspace (Ubuntu)
   Importance: Undecided
   Status: New

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

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

Title:
  Qt5 applications crash when switching screens

Status in kwin package in Ubuntu:
  New
Status in plasma-workspace package in Ubuntu:
  New
Status in qtbase-opensource-src package in Ubuntu:
  Confirmed

Bug description:
  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is
  turned on) Qt5 applications (including plasmashell) quite often crash.
  This makes my laptop unusable, since I do that very frequently.

  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5

  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

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

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


[Touch-packages] [Bug 1453011] Re: SegvAnalysis: Failure: invalid literal for int() with base 16: '='

2015-05-08 Thread Marius Gedminas
You can see the Disassembly: field contains

 $2 = -99Python Exception class 'TypeError' iter() returned non-
iterator of type '_iterator':

which is missing a newline.  This breaks apport's output splitting
logic.

The TypeError shows up because of bug 1449389.  I think it gets printed
into the standard error, which is then smushed together with the
standard output in a somewhat random way.

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

Title:
  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

Status in apport package in Ubuntu:
  New

Bug description:
  Apport sometimes gets confused when analyzing a core dump:

  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

  I'm attaching the crash file (sans base64-encoded core dump) that
  contains this and some other wonderful examples, like

  Registers: $6 = 0x0   
  
  ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4   
  
  Stacktrace: No symbol __nih_abort_msg in current context.

  and the Disassembly: field containing the actual stack trace, after
  the disassembly itself.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.17.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May  8 10:17:40 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-07-25 (1016 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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

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


[Touch-packages] [Bug 1453041] Re: SettingsDb should check file timestamps instead of using inotify watch

2015-05-08 Thread Thomas Strehl
** Changed in: unity-scopes-api (Ubuntu)
   Importance: Undecided = High

** Changed in: unity-scopes-api (Ubuntu)
   Importance: High = Medium

** Changed in: unity-scopes-api (Ubuntu)
   Importance: Medium = Wishlist

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

Title:
  SettingsDb should check file timestamps instead of using inotify watch

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

Bug description:
  SettingsDb could be greatly simplified by using ctime/mtime of the
  settings file, rather than a watcher thread and inotify watch. The
  only place where we care if settings file has changes is settings()
  getter and this is where we can just check ctime/mtime to detect
  changes and re-parse.

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

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


[Touch-packages] [Bug 1419829] Re: [Scope] location settings are enabled by default

2015-05-08 Thread Paty Davila
** Description changed:

  This is in contrast to the rest of the system where user have to
  explicitly grant access right upfront.
  
  Possible solution would be to add a new page in phone setup wizard
  asking for whether scopes are allowed to use location or not and then
  applying this to individual scope location settings.
+ 
+ UX comment-
+ 
+ The required design for this bug is 'in progress' while we await the
+ outcome of ongoing discussions regarding the Scopes as apps and
+ customisation projects and the OOBE redesign.

** Changed in: ubuntu-ux
   Status: Triaged = In Progress

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

Title:
  [Scope] location settings are enabled by default

Status in the base for Ubuntu mobile products:
  New
Status in Ubuntu UX bugs:
  In Progress
Status in unity-scopes-shell package in Ubuntu:
  New

Bug description:
  This is in contrast to the rest of the system where user have to
  explicitly grant access right upfront.

  Possible solution would be to add a new page in phone setup wizard
  asking for whether scopes are allowed to use location or not and then
  applying this to individual scope location settings.

  UX comment-

  The required design for this bug is 'in progress' while we await the
  outcome of ongoing discussions regarding the Scopes as apps and
  customisation projects and the OOBE redesign.

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

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


[Touch-packages] [Bug 892480] Re: PAM with LDAPS breaks authentication via Policykit to Gnome applications as local administrator

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

** Changed in: policykit-1 (Ubuntu)
   Status: New = Confirmed

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

Title:
  PAM with LDAPS breaks authentication via Policykit to Gnome
  applications as local administrator

Status in policykit-1 package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  1) Test system

  My client is a fresh installation of Ubuntu 10.04 LTS x86. It has been
  fully patched.

  libnss-ldap and dependencies have then been installed with Synaptic
  package manager using the local administrator account created during
  installation of Ubuntu.

  /etc/ldap.conf has been modified to point to an OpenDJ v2.4.2 LDAP
  server running on the local network,using ldaps://server:port
  nomenclature.

  The self-signed certificate from the OpenDJ server has been exported
  as a PEM encoded file and saved on the test Ubuntu client at
  /usr/share/ca-certificates/server.pem. The file has been made world
  readable.

  At /etc/ldap.conf the certificate has been pointed to accordingly:

  TLS_CACERTFILE /usr/share/ca-certificates/server.pem

  A dedicated bind account has been created in the LDAP server and this
  has been specified in /etc/ldap.conf with the bind password recorded
  at /etc/ldap.secret

  PAM configuration files at /etc/pam.d have been modified to contain
  the following, in order common-account, common-auth, common-password
  and common-session:

  account sufficientpam_ldap.so
  account required  pam_unix.so

  authsufficientpam_ldap.so
  authrequired  pam_unix.so nullok_secure use_first_pass

  passwordsufficientpam_ldap.so nullok
  passwordrequired  pam_unix.so nullok obscure min=4 max=8 md5

  session   required  pam_mkhomedir.so skel=/etc/skel/ umask=0022
  session required  pam_unix.so
  session optional  pam_ldap.so

  
  /etc/nsswitch.conf has been modified accordingly to contain the following 
information:

  passwd:   files ldap
  group:files ldap
  shadow:   files ldap

  LDAP users can log in to the client successfully, and home directories
  are created automatically. In LDAP, my test user accounts have been
  assigned the gidNumber attribute value of 119 (admin).

  
  2) What I expect to happen

  As local administrator (note *not* as an LDAP user), I expect to be
  able to launch a Gnome  application such as Ubuntu Software Center and
  have Policykit validate my credentials correctly such that I can
  install or remove applications (or otherwise perform administrative
  tasks).

  3) What happened instead

  Logging in to the system as a local administrator, I can launch Ubuntu
  Software Center. Upon (for example) attempting to install an
  application, I am prompted for my credentials. I enter these (the same
  credentials used to log into the system), but they are rejected with
  an Authentication Failure error.

  
  4) Additional information

  Using my Virtualbox host with a combination of snapshots, I have
  determined that this oddity appears specifically in this scenario when
  secure LDAP is configured on the client. If I modify /etc/ldap.conf
  and use plain LDAP, i.e. an insecure connection to my OpenDJ server
  without a certificate, then logged in to the test client as a local
  administrator I can successfully authenticate to Ubuntu Software
  Center.

  In either scenario, using Synaptic with the same credentials as local
  administrator poses no problem.

  
  Policykit version details:

  $ apt-cache policy policykit-1
  policykit-1:
Installed: 0.96-2ubuntu0.1
Candidate: 0.96-2ubuntu0.1
Version table:
   *** 0.96-2ubuntu0.1 0
  500 http://nz.archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
  500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
  100 /var/lib/dpkg/status
   0.96-2 0
  500 http://nz.archive.ubuntu.com/ubuntu/ lucid/main Packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/policykit-1/+bug/892480/+subscriptions

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


[Touch-packages] [Bug 1450137] Re: Qt5 applications crash when switching screens

2015-05-08 Thread Harald Sitter
** No longer affects: plasma-workspace (Ubuntu)

** No longer affects: kwin (Ubuntu)

** Package changed: qtbase-opensource-src (Ubuntu) = qtdeclarative-
opensource-src (Ubuntu)

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

Title:
  Qt5 applications crash when switching screens

Status in qtdeclarative-opensource-src package in Ubuntu:
  Confirmed
Status in qtdeclarative-opensource-src source package in Vivid:
  Confirmed

Bug description:
  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is
  turned on) Qt5 applications (including plasmashell) quite often crash.
  This makes my laptop unusable, since I do that very frequently.

  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5

  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

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

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


[Touch-packages] [Bug 1390709] Re: Wifi doesn't reconnect after waking from sleep

2015-05-08 Thread Levi Bard
I have the same symptoms after upgrade from 14.10 to 15.04.

I'm attaching my ubuntu-bug output, but I can file a new bug if this is
adjudged a different issue.

** Attachment added: apport.network-manager.fmm523w1.apport
   
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1390709/+attachment/4393443/+files/apport.network-manager.fmm523w1.apport

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

Title:
  Wifi doesn't reconnect after waking from sleep

Status in network-manager package in Ubuntu:
  Confirmed

Bug description:
  Upgraded from 14.04 to 14.10. Before Wifi would reconnect after waking
  up from sleep mode. After Update reconnect fails with wlan0: aborting
  authentication with 1c:c6:3c:95:e7:74 by local choice (Reason:
  3=DEAUTH_LEAVING).

  I worked around this by killing wpa_supplicant with a script in
  /etc/pm/sleep.d

  
  #!/bin/sh

  case $1 in
  thaw|resume) 
  { killall wpa_supplicant ; } 2/dev/null
  ;;
  *)
  ;;
  esac

  exit $?

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: network-manager 0.9.8.8-0ubuntu28
  ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
  Uname: Linux 3.16.0-24-generic x86_64
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Sat Nov  8 11:43:15 2014
  EcryptfsInUse: Yes
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2013-04-19 (567 days ago)
  InstallationMedia: Kubuntu 13.04 Raring Ringtail - Alpha amd64 (20130402.1)
  IpRoute:
   default via 192.168.138.251 dev wlan0  proto static 
   192.168.122.0/24 dev virbr0  proto kernel  scope link  src 192.168.122.1 
   192.168.138.0/24 dev wlan0  proto kernel  scope link  src 192.168.138.143  
metric 9
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
   WimaxEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to utopic on 2014-11-07 (0 days ago)
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
   running 0.9.8.8connected   enabled   enabled 
enabledenabled enabled

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

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


[Touch-packages] [Bug 1186662] Re: isc-dhcp-server fails to renew lease file

2015-05-08 Thread Simon McNair
This is still ongoing.
I've tried 

- /etc/init/isc-dhcp-server.conf

   # The leases files need to be root:root even when dropping privileges
[ -e /var/lib/dhcp/dhcpd.leases ] || touch /var/lib/dhcp/dhcpd.leases
#SM 2015-05-08 chown root:root /var/lib/dhcp /var/lib/dhcp/dhcpd.leases
chown dhcpd:dhcpd /var/lib/dhcp /var/lib/dhcp/dhcpd.leases
if [ -e /var/lib/dhcp/dhcpd.leases~ ]; then
#SM 2015-05-08chown root:root /var/lib/dhcp/dhcpd.leases~
echo Chown DHCPD to fix brokenness
chown dhcpd:dhcpd /var/lib/dhcp/dhcpd.leases~
fi

- /etc/init.d/isc-dhcp-server
...
start)
test_config
log_daemon_msg Starting $DESC $NAME
log_daemon_msg chown dhcpd /var/lib/dhcp/*
# SM 2015-08-05 chown dhcpd /var/lib/dhcp/*
chown dhcpd /var/lib/dhcp/*
...

restart | force-reload)
test_config
$0 stop
sleep 2
$0 start
if [ $? != 0 ]; then
exit 1
fi
#SM 1015-05-08
chown dhcpd /var/lib/dhcp/*
;;
...

-.) Apparmor in to complain mode
mv /etc/apparmor.d/usr.sbin/usr.sbin.dhcpd /etc/apparmor.d/force-complain/


-.)/lib/systemd/system/isc-dhcp-server.service
#   SM 2015-05-08 chown root:root /var/lib/dhcp /var/lib/dhcp/dhcpd.leases*; \
chown dhcpd:dhcpd /var/lib/dhcp /var/lib/dhcp/dhcpd.leases*; \

followed by systemctl daemon-reload

and modifying systemd finally broke it:

systemctl status isc-dhcp-server.service 
● isc-dhcp-server.service - ISC DHCP IPv4 server
   Loaded: error (Reason: Invalid argument)
   Active: active (running) since Fri 2015-05-08 09:42:02 BST; 14min ago
 Docs: man:dhcpd(8)
 Main PID: 14253 (dhcpd)
   CGroup: /system.slice/isc-dhcp-server.service
   └─14253 dhcpd -user dhcpd -group dhcpd -f -4 -pf 
/run/dhcp-server/dhcpd.pid -cf /etc/dhcp/dhcpd.conf eth0...

May 08 09:42:02 here dhcpd[14253]: Server starting service.
May 08 09:42:02 here sh[14253]: Listening on 
LPF/eth0/00:9c:02:a0:38:67/192.168.1.0/24
May 08 09:42:02 here sh[14253]: Sending on   
LPF/eth0/00:9c:02:a0:38:67/192.168.1.0/24
May 08 09:42:02 here sh[14253]: Sending on   Socket/fallback/fallback-net
May 08 09:42:32 here systemd[1]: 
[/lib/systemd/system/isc-dhcp-server.service:17] Trailing garbage, ignoring.
May 08 09:42:32 here systemd[1]: isc-dhcp-server.service lacks both ExecStart= 
and ExecStop= setting. Refusing.
May 08 09:43:04 here systemd[1]: 
[/lib/systemd/system/isc-dhcp-server.service:17] Trailing garbage, ignoring.
May 08 09:43:04 here systemd[1]: isc-dhcp-server.service lacks both ExecStart= 
and ExecStop= setting. Refusing.
May 08 09:46:58 here systemd[1]: 
[/lib/systemd/system/isc-dhcp-server.service:17] Trailing garbage, ignoring.
May 08 09:46:58 here systemd[1]: isc-dhcp-server.service lacks both ExecStart= 
and ExecStop= setting. Refusing.
root@here:/etc/init.d# 

PLEASE can someone tell me how this has persisted since 2013 ?!?!?!

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

Title:
  isc-dhcp-server fails to renew lease file

Status in isc-dhcp package in Ubuntu:
  Triaged
Status in isc-dhcp source package in Trusty:
  Confirmed

Bug description:
  After raring upgrade, the dhcp server fails to renew lease file when
  it tries to (about every hour).

  The syslog says:
  dhcpd: Can't create new lease file: Permission denied

  It looks like a permission problem, because

  # chown -R dhcpd:dhcpd /var/lib/dhcp

  the above command temporarily solves the issue, until dhcpd is
  restarted: at that time, the ownership of the directory and the lease
  file is set back to root:root.

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

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


[Touch-packages] [Bug 1453006] Re: Incorrect language on lock screen

2015-05-08 Thread Olivier Tilloy
I can confirm that the issue seems to be confined to the user metrics:
the date/time and the unlock message that appears on touch are
correctly localized in French, the only bit that remains in Catalan is
the no messages received today text.

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

Title:
  Incorrect language on lock screen

Status in libusermetrics package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  New

Bug description:
  When flashing my device (krillin) with the latest stable RTM image, I
  initially picked Catalan as the default language in the welcome
  wizard.

  Later on, I switched to French in the system settings. I then re-
  flashed to upgrade to devel-proposed.

  Now my phone is in French (as expected), except for the lock screen
  which remained in catalan (says I have no messages today in that
  language). Rebooting didn’t fix the issue.

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

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


[Touch-packages] [Bug 1449389] Re: Python Exception class 'TypeError' iter() returned non-iterator of type '_iterator'

2015-05-08 Thread Marius Gedminas
Upstream bug with a patch:
https://bugzilla.gnome.org/show_bug.cgi?id=749092

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

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

Title:
  Python Exception class 'TypeError' iter() returned non-iterator of
  type '_iterator'

Status in gdb package in Ubuntu:
  Invalid
Status in glib2.0 package in Ubuntu:
  New

Bug description:
  I tried to gdb a gnome-shell segfault:

  (gdb) bt
  #0  0x7f8cad51f638 in g_slice_alloc (magazine_chunks=0xf879b0) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:535
  #1  0x7f8cad51f638 in g_slice_alloc (tmem=optimized out, ix=1) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:842
  #2  0x7f8cad51f638 in g_slice_alloc (mem_size=mem_size@entry=24) at 
/build/buildd/glib2.0-2.44.0/./glib/gslice.c:998
  Python Exception class 'TypeError' iter() returned non-iterator of type 
'_iterator': 

  This looks like a bug in a gdb pretty-printer that's shipped with
  Ubuntu.

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

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


[Touch-packages] [Bug 1453011] Re: SegvAnalysis: Failure: invalid literal for int() with base 16: '='

2015-05-08 Thread Marius Gedminas
** Attachment added: the strange apport crash file
   
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1453011/+attachment/4393424/+files/gnome-shell.crash

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

Title:
  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

Status in apport package in Ubuntu:
  New

Bug description:
  Apport sometimes gets confused when analyzing a core dump:

  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

  I'm attaching the crash file (sans base64-encoded core dump) that
  contains this and some other wonderful examples, like

  Registers: $6 = 0x0   
  
  ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4   
  
  Stacktrace: No symbol __nih_abort_msg in current context.

  and the Disassembly: field containing the actual stack trace, after
  the disassembly itself.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.17.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May  8 10:17:40 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-07-25 (1016 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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

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


[Touch-packages] [Bug 1453011] [NEW] SegvAnalysis: Failure: invalid literal for int() with base 16: '='

2015-05-08 Thread Marius Gedminas
Public bug reported:

Apport sometimes gets confused when analyzing a core dump:

SegvAnalysis: Failure: invalid literal for int() with base 16: '='

I'm attaching the crash file (sans base64-encoded core dump) that
contains this and some other wonderful examples, like

Registers: $6 = 0x0 

ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4 

Stacktrace: No symbol __nih_abort_msg in current context.

and the Disassembly: field containing the actual stack trace, after the
disassembly itself.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: apport 2.17.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: GNOME
Date: Fri May  8 10:17:40 2015
EcryptfsInUse: Yes
InstallationDate: Installed on 2012-07-25 (1016 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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


** Tags: amd64 apport-bug gnome3-ppa third-party-packages vivid

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

Title:
  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

Status in apport package in Ubuntu:
  New

Bug description:
  Apport sometimes gets confused when analyzing a core dump:

  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

  I'm attaching the crash file (sans base64-encoded core dump) that
  contains this and some other wonderful examples, like

  Registers: $6 = 0x0   
  
  ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4   
  
  Stacktrace: No symbol __nih_abort_msg in current context.

  and the Disassembly: field containing the actual stack trace, after
  the disassembly itself.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.17.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May  8 10:17:40 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-07-25 (1016 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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

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


[Touch-packages] [Bug 1453011] Re: SegvAnalysis: Failure: invalid literal for int() with base 16: '='

2015-05-08 Thread Marius Gedminas
I think I got a better fix in the linked Bazaar branch.  I'm not sure
how to test it: I have the crash file with the base64-encoded core and
incorrectly-decoded fields, how can I convince apport (in a bzr
checkout) re-interpret it?

** Branch linked: lp:~mgedmin/apport/fix-lp1453011

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

Title:
  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

Status in apport package in Ubuntu:
  New

Bug description:
  Apport sometimes gets confused when analyzing a core dump:

  SegvAnalysis: Failure: invalid literal for int() with base 16: '='

  I'm attaching the crash file (sans base64-encoded core dump) that
  contains this and some other wonderful examples, like

  Registers: $6 = 0x0   
  
  ThreadStacktrace: $9 = 0x4 error: Cannot access memory at address 0x4   
  
  Stacktrace: No symbol __nih_abort_msg in current context.

  and the Disassembly: field containing the actual stack trace, after
  the disassembly itself.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apport 2.17.2-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri May  8 10:17:40 2015
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2012-07-25 (1016 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to vivid on 2015-04-23 (14 days ago)

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

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


[Touch-packages] [Bug 1453050] [NEW] freezing xubuntu 14.04

2015-05-08 Thread dkarigi
Public bug reported:

gf

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.16.0-37.51~14.04.1-generic 3.16.7-ckt9
Uname: Linux 3.16.0-37-generic x86_64
.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: None
Date: Fri May  8 12:15:11 2015
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:21c1]
InstallationDate: Installed on 2015-04-23 (15 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 (20150218.1)
MachineType: LENOVO 2904FXG
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-37-generic 
root=UUID=d383febc-a84b-445b-beca-4a0d98e2 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/25/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: 6UET69WW (1.49 )
dmi.board.name: 2904FXG
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6UET69WW(1.49):bd04/25/2012:svnLENOVO:pn2904FXG:pvrThinkPadT410s:rvnLENOVO:rn2904FXG:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 2904FXG
dmi.product.version: ThinkPad T410s
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
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: Fri May  8 10:41:13 2015
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   16438 
 vendor LEN
xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

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


** Tags: amd64 apport-bug 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/1453050

Title:
  freezing xubuntu 14.04

Status in xorg package in Ubuntu:
  New

Bug description:
  gf

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-37.51~14.04.1-generic 3.16.7-ckt9
  Uname: Linux 3.16.0-37-generic x86_64
  .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: None
  Date: Fri May  8 12:15:11 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 02) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:21c1]
  InstallationDate: Installed on 2015-04-23 (15 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  MachineType: LENOVO 2904FXG
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-37-generic 
root=UUID=d383febc-a84b-445b-beca-4a0d98e2 ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/25/2012
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6UET69WW (1.49 )
  dmi.board.name: 2904FXG
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6UET69WW(1.49):bd04/25/2012:svnLENOVO:pn2904FXG:pvrThinkPadT410s:rvnLENOVO:rn2904FXG:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2904FXG
  dmi.product.version: ThinkPad T410s
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  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: 

[Touch-packages] [Bug 1173915] Re: initctl continuously takes 100% of CPU

2015-05-08 Thread Sander
Same issue here, Ubuntu 14.04 64 bits on a Toshiba Portege Z30-A 18J, custom 
kernel 3.18.11 64 bits though. I suspect it has something to do with certain 
processes running on the system, such as perhaps Nautilus, but no hard 
evidence. The problem only occurs after a long uptime duration.
Strace gives the same result as #5 mentioned.

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

Title:
  initctl continuously takes 100% of CPU

Status in upstart package in Ubuntu:
  Confirmed

Bug description:
  Many programs are fairly slow to start on my computer, despite it
  being relatively new (core i5). Suspecting a heavy CPU usage, I
  started gnome-system-monitor: all processes were displayed at 0% CPU,
  but the overall load was 1.33; 1.33; 1.34.

  Using the top command, however, revealed the real CPU use, with the
  initctl process taking 100%CPU, even 1 hour after startup.

  I upgraded to roaring ringtail before checking this but the symptoms
  were the same with quantal quetzal, so there is a fair chance the
  causes were identical.

  Regards

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: upstart 1.8-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
  Uname: Linux 3.8.0-19-generic x86_64
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  CheckboxSubmission: 2deefc5fd2f1f0ae2fdd4bd781248a2a
  CheckboxSystem: daed2f3d6643b4a84b4520a2427f8c2b
  Date: Sun Apr 28 13:04:05 2013
  ExecutablePath: /sbin/initctl
  InstallationDate: Installed on 2012-12-15 (133 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MarkForUpload: True
  ProcEnviron:
   
  ProcKernelCmdline: BOOT_IMAGE=/boot/vmlinuz-3.8.0-19-generic 
root=UUID=fa624f8f-d9d0-4b09-af8b-88b106aaaf5b ro quiet splash vt.handoff=7
  SourcePackage: upstart
  UpgradeStatus: Upgraded to raring on 2013-04-28 (0 days ago)
  UpstartBugCategory: System

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

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


[Touch-packages] [Bug 1453006] Re: Incorrect language on lock screen

2015-05-08 Thread Albert Astals Cid
** Also affects: libusermetrics (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Incorrect language on lock screen

Status in libusermetrics package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  New

Bug description:
  When flashing my device (krillin) with the latest stable RTM image, I
  initially picked Catalan as the default language in the welcome
  wizard.

  Later on, I switched to French in the system settings. I then re-
  flashed to upgrade to devel-proposed.

  Now my phone is in French (as expected), except for the lock screen
  which remained in catalan (says I have no messages today in that
  language). Rebooting didn’t fix the issue.

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

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


[Touch-packages] [Bug 1452766] Re: Cannot favorite site when it is loading

2015-05-08 Thread Olivier Tilloy
This is intentional (the code explicitly prevents bookmarking while
loading). The rationale is that while loading the URL may be rewritten
several times, and one usually wants to bookmark the final location.

Your use case is legitimate though, so I’m confirming, and adding an
ubuntu-ux task in order to get input from design.

** Changed in: webbrowser-app (Ubuntu)
   Status: New = Confirmed

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

** Changed in: webbrowser-app
   Status: New = Confirmed

** Changed in: webbrowser-app
   Importance: Undecided = Low

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

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

Title:
  Cannot favorite site when it is loading

Status in Ubuntu UX bugs:
  New
Status in Web Browser App:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Simple bug but annoying:

  When a site is loading, the favorite star is not visible.

  Use-case:
  you get a website from a friend, or you click a link on a page when the 
network suddenly goes away. You want to save that page to look at it later, 
when your connection comes back. This is not possible because you can only 
bookmark pages after they're fully loaded.

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

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


[Touch-packages] [Bug 1452616] Re: Ubuntu Web Browser identified as old Safari in gmail

2015-05-08 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
   Status: New = Confirmed

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

** Changed in: webbrowser-app
   Status: New = Confirmed

** Changed in: webbrowser-app
   Importance: Undecided = Medium

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

Title:
  Ubuntu Web Browser identified as old Safari in gmail

Status in Web Browser App:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu Web Browser identified as old Safari in gmail.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: webbrowser-app 0.23+15.04.20150416-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu May  7 11:29:34 2015
  SourcePackage: webbrowser-app
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1449282] Re: lightdm tcp listen requires additional configuration

2015-05-08 Thread Jacek Machelski
** Description changed:

  In order to enable X11 forwarding from an external host you must
  explicitly set the Xserver to listen by overriding the xserver-command.
  Previously you could set the xserver-allow-tcp=true and it would do this
  automatically.
  
  I would have expected this change in behaviour to show up in
  README.Debian.gz but since it did not, perhaps the functionality of the
  xserver-allow-tcp=true is not working as expected.
  
  Below shows my before (no TCP listener on 6000) and after (TCP listener
  on 6000) lightdm.conf to re-enable the listener after the 15.04 upgrade.
  
  Before (14.10):
  
  ~$ cat /etc/lightdm/lightdm.conf
  
  [SeatDefaults]
  xserver-allow-tcp=true
  
  After (15.04):
  
  ~$ cat /etc/lightdm/lightdm.conf
  
  [SeatDefaults]
  xserver-command=X -core -listen tcp
  xserver-allow-tcp=true
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lightdm 1.14.0-0ubuntu2
  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
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Apr 27 17:33:26 2015
  InstallationDate: Installed on 2014-12-18 (130 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  LightdmConfig:
   [SeatDefaults]
   xserver-command=X -core -listen tcp
   xserver-allow-tcp=true
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to vivid on 2015-04-27 (0 days ago)
  
- 
  ###
  i haven't /etc/lightdm/lightdm.conf
  when i tried to create it withe the lines above it was worse my system 
didin't start.
+ after a few experiment i have found something what works:
+ i change my /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf
+ 
+ before it was:
+ [SeatDefaults]
+ # Dump core
+ xserver-command=X -core
+ 
+ now:
+ [SeatDefaults]
+ # Dump core
+ xserver-command=X -core 
+ xserver-allow-tcp=true
+ 
+ and it works!

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

Title:
  lightdm tcp listen requires additional configuration

Status in lightdm package in Ubuntu:
  New

Bug description:
  In order to enable X11 forwarding from an external host you must
  explicitly set the Xserver to listen by overriding the xserver-
  command.  Previously you could set the xserver-allow-tcp=true and it
  would do this automatically.

  I would have expected this change in behaviour to show up in
  README.Debian.gz but since it did not, perhaps the functionality of
  the xserver-allow-tcp=true is not working as expected.

  Below shows my before (no TCP listener on 6000) and after (TCP
  listener on 6000) lightdm.conf to re-enable the listener after the
  15.04 upgrade.

  Before (14.10):

  ~$ cat /etc/lightdm/lightdm.conf

  [SeatDefaults]
  xserver-allow-tcp=true

  After (15.04):

  ~$ cat /etc/lightdm/lightdm.conf

  [SeatDefaults]
  xserver-command=X -core -listen tcp
  xserver-allow-tcp=true

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: lightdm 1.14.0-0ubuntu2
  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
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Apr 27 17:33:26 2015
  InstallationDate: Installed on 2014-12-18 (130 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
  LightdmConfig:
   [SeatDefaults]
   xserver-command=X -core -listen tcp
   xserver-allow-tcp=true
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to vivid on 2015-04-27 (0 days ago)

  ###
  i haven't /etc/lightdm/lightdm.conf
  when i tried to create it withe the lines above it was worse my system 
didin't start.
  after a few experiment i have found something what works:
  i change my /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf

  before it was:
  [SeatDefaults]
  # Dump core
  xserver-command=X -core

  now:
  [SeatDefaults]
  # Dump core
  xserver-command=X -core 
  xserver-allow-tcp=true

  and it works!

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

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


[Touch-packages] [Bug 1432171] Re: [udev] Shows starting version 219 boot message even with quiet

2015-05-08 Thread Vladislav Terekhov
I solve problem following advice about upstart from cro. Didnt find
upstart-sys package, but following solution works fine:

apt-get install upstart-sysv

Now can login to gui. Have no sound (the only sound device us Dummy
output), but seems it is another bug :)

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

Title:
  [udev] Shows starting version 219 boot message even with quiet

Status in systemd package in Ubuntu:
  Triaged

Bug description:
  Everytime the system is booted up I get a Starting version 219 which
  it seems is the version number for systemd.

  udev version: 219-4ubuntu5

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

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


[Touch-packages] [Bug 1450137] Re: Qt5 applications crash when switching screens

2015-05-08 Thread Timo Jyrinki
There's another qtdeclarative landing pending to go to wily. Then this'd
go into wily, and then a backport of this to vivid. It will take some
time.

** Also affects: qtdeclarative-opensource-src (Ubuntu Vivid)
   Importance: Undecided
   Status: New

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

** Changed in: qtdeclarative-opensource-src (Ubuntu)
 Assignee: (unassigned) = Timo Jyrinki (timo-jyrinki)

** Changed in: qtdeclarative-opensource-src (Ubuntu)
   Importance: Undecided = Medium

** Changed in: qtdeclarative-opensource-src (Ubuntu Vivid)
   Importance: Undecided = Medium

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

Title:
  Qt5 applications crash when switching screens

Status in qtdeclarative-opensource-src package in Ubuntu:
  Confirmed
Status in qtdeclarative-opensource-src source package in Vivid:
  Confirmed
Status in qtdeclarative-opensource-src source package in Wily:
  Confirmed

Bug description:
  # Impact
  When switching screens (e. g. when putting the laptop onto the docking 
station the notebook screen is turned off and the external one is turned on) 
Qt5 applications (including plasmashell) quite often crash.

  # Test Case
  * Have two screens. One plugged-in one not
  * Run plasma 5
  * Plug-in second screen and wait 10 seconds
  * Unplug and wait 10 seconds
  * Plug-in and wait 10 seconds
  * Unplug and wait 10 seconds
  * ...

  # Regression Potential
  Worst case scenario an application using qquickscreen would slow down because 
of erroneous screen change singals being emitted too often per second. This 
would however only reveal a lower level issue in the foundations that 
ultimately needs to be fixed anyway. 

  # Other Info
  The upstream code review [1] explains the issue and solution pretty well.

  https://codereview.qt-project.org/#/c/00/

  
  - original report ---

  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is
  turned on) Qt5 applications (including plasmashell) quite often crash.
  This makes my laptop unusable, since I do that very frequently.

  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5

  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

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

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


[Touch-packages] [Bug 1450137] Re: Qt5 applications crash when switching screens

2015-05-08 Thread Harald Sitter
** Description changed:

+ # Impact
+ When switching screens (e. g. when putting the laptop onto the docking 
station the notebook screen is turned off and the external one is turned on) 
Qt5 applications (including plasmashell) quite often crash.
+ 
+ # Test Case
+ * Have two screens. One plugged-in one not
+ * Run plasma 5
+ * Plug-in second screen and wait 10 seconds
+ * Unplug and wait 10 seconds
+ * Plug-in and wait 10 seconds
+ * Unplug and wait 10 seconds
+ * ...
+ 
+ # Regression Potential
+ Worst case scenario an application using qquickscreen would slow down because 
of erroneous screen change singals being emitted too often per second. This 
would however only reveal a lower level issue in the foundations that 
ultimately needs to be fixed anyway. 
+ 
+ # Other Info
+ The upstream code review [1] explains the issue and solution pretty well.
+ 
+ https://codereview.qt-project.org/#/c/00/
+ 
+ 
+ - original report ---
+ 
  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is turned
  on) Qt5 applications (including plasmashell) quite often crash. This
  makes my laptop unusable, since I do that very frequently.
  
  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5
  
  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

** Also affects: qtdeclarative-opensource-src (Ubuntu Wily)
   Importance: Medium
 Assignee: Timo Jyrinki (timo-jyrinki)
   Status: Confirmed

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

Title:
  Qt5 applications crash when switching screens

Status in qtdeclarative-opensource-src package in Ubuntu:
  Confirmed
Status in qtdeclarative-opensource-src source package in Vivid:
  Confirmed
Status in qtdeclarative-opensource-src source package in Wily:
  Confirmed

Bug description:
  # Impact
  When switching screens (e. g. when putting the laptop onto the docking 
station the notebook screen is turned off and the external one is turned on) 
Qt5 applications (including plasmashell) quite often crash.

  # Test Case
  * Have two screens. One plugged-in one not
  * Run plasma 5
  * Plug-in second screen and wait 10 seconds
  * Unplug and wait 10 seconds
  * Plug-in and wait 10 seconds
  * Unplug and wait 10 seconds
  * ...

  # Regression Potential
  Worst case scenario an application using qquickscreen would slow down because 
of erroneous screen change singals being emitted too often per second. This 
would however only reveal a lower level issue in the foundations that 
ultimately needs to be fixed anyway. 

  # Other Info
  The upstream code review [1] explains the issue and solution pretty well.

  https://codereview.qt-project.org/#/c/00/

  
  - original report ---

  When switching screens (e. g. when putting the laptop onto the docking
  station the notebook screen is turned off and the external one is
  turned on) Qt5 applications (including plasmashell) quite often crash.
  This makes my laptop unusable, since I do that very frequently.

  The problem has already been described here: 
https://bugs.kde.org/show_bug.cgi?id=341497
  Apparently it is fixed in Qt 5.5

  I am running Kubuntu 15.04 64bit and libqt5gui5 5.4.1+dfsg-2ubuntu4.

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

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


[Touch-packages] [Bug 1451286] Re: crontab -r deletes cron entries without asking for confirmation

2015-05-08 Thread Christian Decker
** Changed in: cron (Ubuntu)
   Status: New = Invalid

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

Title:
  crontab -r deletes cron entries without asking for confirmation

Status in cron package in Ubuntu:
  Invalid

Bug description:
  type: crontab -r

  Expected use case : should ask user if they really want to delete this
  file, of which there are no backups on the system by default, and may
  take hours to restore by hand, if it's even possible.

  what happens: user's cron entry is deleted with no warning.

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

-- 
Mailing list: https://launchpad.net/~touch-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-05-08 Thread Bastian Köcher
Hi,
I also have this bug. I attached the cups error log, it says Max clients 
reached, holding new connections Cupsd was eating 100% short after 
continuing from sleep. This bug is really annoying because it eats up my 
battery...

** Attachment added: error_log
   
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1426490/+attachment/4393445/+files/error_log

-- 
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:
  Incomplete

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

  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 1426490] Re: cups 2.0.2-1 100% cpu usage

2015-05-08 Thread Bastian Köcher
Hi,
I also have this bug. I attached the cups error log, it says Max clients 
reached, holding new connections Cupsd was eating 100% short after 
continuing from sleep. This bug is really annoying because it eats up my 
battery...

** Attachment added: error_log
   
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1426490/+attachment/4393444/+files/error_log

-- 
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:
  Incomplete

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

  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 1453041] [NEW] SettingsDb should check file timestamps instead of using inotify watch

2015-05-08 Thread Pawel Stolowski
Public bug reported:

SettingsDb could be greatly simplified by using ctime/mtime of the
settings file, rather than a watcher thread and inotify watch. The only
place where we care if settings file has changes is settings() getter
and this is where we can just check ctime/mtime to detect changes and
re-parse.

** Affects: unity-scopes-api (Ubuntu)
 Importance: High
 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/1453041

Title:
  SettingsDb should check file timestamps instead of using inotify watch

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

Bug description:
  SettingsDb could be greatly simplified by using ctime/mtime of the
  settings file, rather than a watcher thread and inotify watch. The
  only place where we care if settings file has changes is settings()
  getter and this is where we can just check ctime/mtime to detect
  changes and re-parse.

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

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


[Touch-packages] [Bug 1453083] Re: Shutdown output with plymouth disabled is ugly (misses newlines)

2015-05-08 Thread TomasHnyk
I managed to take a picture thta is readable - it seems lightdm is the
culprit as the output starts looking normal when it is shut down (is
this a bug in lightdm?)

** Attachment added: Readable output
   
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1453083/+attachment/4393578/+files/20150508_007.jpg

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

Title:
  Shutdown output with plymouth disabled is ugly (misses newlines)

Status in systemd package in Ubuntu:
  New

Bug description:
  How to reproduce:
  1. Disable plymouth (by setting GRUB_CMDLINE_LINUX_DEFAULT= in 
/etc/default/grub and running sudo update-grub)
  2. Restart or shut down
  3. Watch the mess that gets displayed see screenshot)

  My guess is that some newlines are missing in the output.
  This is on current 15.04, booting using systemd. Of course, it only takes two 
to three seconds to shut down and this is the non-default option, but still, it 
would be nice if the output were nice.

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

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


[Touch-packages] [Bug 1453006] Re: Incorrect language on lock screen

2015-05-08 Thread Olivier Tilloy
I updated to the latest devel-proposed image (#207 for krillin) and the
issue is still there.

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

Title:
  Incorrect language on lock screen

Status in libusermetrics package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Invalid

Bug description:
  When flashing my device (krillin) with the latest stable RTM image, I
  initially picked Catalan as the default language in the welcome
  wizard.

  Later on, I switched to French in the system settings. I then re-
  flashed to upgrade to devel-proposed.

  Now my phone is in French (as expected), except for the lock screen
  which remained in catalan (says I have no messages today in that
  language). Rebooting didn’t fix the issue.

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

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


[Touch-packages] [Bug 1450846] Re: [Suggestion] Changing the font / font size...

2015-05-08 Thread Magdalena Mirowicz
** Changed in: ubuntu-ux
 Assignee: (unassigned) = Jouni Helminen (jounihelminen)

** Changed in: ubuntu-ux
 Assignee: Jouni Helminen (jounihelminen) = John Lea (johnlea)

** Changed in: ubuntu-ux
   Status: New = Triaged

** Summary changed:

- [Suggestion] Changing the font / font size... 
+ [SDK] Changing the font / font size...

** Changed in: ubuntu-ux
   Importance: Undecided = Wishlist

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

Title:
  [SDK] Changing the font / font size...

Status in the base for Ubuntu mobile products:
  Confirmed
Status in Ubuntu UX bugs:
  Triaged
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  It would be usefull if the font and the font size could be changed
  espacially for elderly users and  for people with visual problems. So
  content could be read easily.

  Changing colors, features like home screen simplification, large
  icons... would be great, too.

  Should be found in system settings → background

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

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


[Touch-packages] [Bug 1286276] Re: [Greeter] Lock screen whines that No data sources available on first use

2015-05-08 Thread Magdalena Mirowicz
** Changed in: ubuntu-ux
 Assignee: (unassigned) = Olga Kemmet (olga-kemmet)

** Changed in: ubuntu-ux
   Importance: Undecided = Medium

** Changed in: ubuntu-ux
   Status: New = Triaged

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

Title:
  [Greeter] Lock screen whines that No data sources available on first
  use

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

Bug description:
  Ubuntu 14.04 r188, Ubuntu 14.10 r203

  1. Flash the phone.
  2. Lock the phone.
  3. Wake up the phone.

  What you see: No data sources available

  What you should see: Something less miserable.

  As someone who's just started using the phone, I probably have no idea
  that the lock screen tries to show me statistics of my usage or
  whatever. And even if I do know, I probably don't care. Why, then, is
  the phone complaining to me about its failure? What am I supposed to
  do about it?

  A simple solution would be to show no text at all in this situation.

  This is not a duplicate of bug 1339002, because stats on the welcome
  screen are on by default. However, fixing that bug might fix this bug
  too.

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

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


[Touch-packages] [Bug 1433234] Re: Click does not handle IP NOT FOUND error

2015-05-08 Thread Launchpad Bug Tracker
** Branch linked: lp:~ci-train-bot/click/click-ubuntu-vivid-proposed

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

Title:
  Click does not handle IP NOT FOUND error

Status in click package in Ubuntu:
  In Progress

Bug description:
  When calling http://geoip.ubuntu.com/lookup here, I'm getting:

  ?xml version=1.0
  encoding=UTF-8?ResponseIp10.172.xxx.xxx/IpStatusIP NOT
  FOUND/Status/Response

  This causes click chroot create with:

   Traceback (most recent call last):
File /usr/bin/click, line 86, in module
  sys.exit(main())
File /usr/bin/click, line 82, in main
  return mod.run(args)
File /usr/lib/python3/dist-packages/click/commands/chroot.py, line 266, 
in run
  return args.func(parser, args)
File /usr/lib/python3/dist-packages/click/commands/chroot.py, line 68, in 
create
  return chroot.create(args.keep_broken_chroot)
File /usr/lib/python3/dist-packages/click/chroot.py, line 521, in create
  country_code = get_geoip_country_code_prefix()
File /usr/lib/python3/dist-packages/click/chroot.py, line 209, in 
get_geoip_country_code_prefix
  return et.find(CountryCode).text.lower()+.
  AttributeError: 'NoneType' object has no attribute 'text'

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

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


[Touch-packages] [Bug 1322490] Re: [indicators] Clicking on a connected network's checkbox disconnects re-connects

2015-05-08 Thread Vesa Rautiainen
** Changed in: ubuntu-ux
 Assignee: Vesa Rautiainen (vesar) = Matthew Paul Thomas (mpt)

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

Title:
  [indicators] Clicking on a connected network's checkbox  disconnects 
  re-connects

Status in Ubuntu UX bugs:
  Triaged
Status in indicator-network package in Ubuntu:
  Triaged
Status in ubuntu-settings-components package in Ubuntu:
  Triaged

Bug description:
  indicator-network 0.5.1+14.10.20140516.2-0ubuntu1, Ubuntu Utopic

  1. Unlock the phone
  2. Drag down the indicator for networking
  3. Select a wifi AP sign into it
  4. Drag down the indicator for networking
  5. Try to uncheck it.

  What happens: The network disconnects and reconnects.

  What should happen: Nothing.

  https://wiki.ubuntu.com/Networking#wi-fi-menu: 2. If the card is
  powered on, up to 6 (phone) or 20 (PC) radio items representing known
  Wi-Fi networks...

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

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


[Touch-packages] [Bug 1453083] Re: Shutdown output with plymouth disabled is ugly (misses newlines)

2015-05-08 Thread Martin Pitt
Setting to triaged, trivially reproducible in QEMU.

** Tags added: systemd-boot

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

Title:
  Shutdown output with plymouth disabled is ugly (misses newlines)

Status in lightdm package in Ubuntu:
  Triaged

Bug description:
  How to reproduce:
  1. Disable plymouth (by setting GRUB_CMDLINE_LINUX_DEFAULT= in 
/etc/default/grub and running sudo update-grub)
  2. Restart or shut down
  3. Watch the mess that gets displayed see screenshot)

  My guess is that some newlines are missing in the output.
  This is on current 15.04, booting using systemd. Of course, it only takes two 
to three seconds to shut down and this is the non-default option, but still, it 
would be nice if the output were nice.

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

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


[Touch-packages] [Bug 1446846] Re: Three consistent autopilot test failures

2015-05-08 Thread Launchpad Bug Tracker
** Branch linked: lp:~nick-dedekind/unity8/fix-laggy-indicators-
autopilot

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

Title:
  Three consistent autopilot test failures

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  We seem to have stabilized on three tests failing repeatedly:

  
unity8.indicators.tests.test_action_latency.TestClientRevertsToServerValue.test_slider_reverts_on_late_response(Native
 Device)
  
unity8.application_lifecycle.tests.test_application_lifecycle.ApplicationLifecycleTests.test_greeter_hides_on_app_open
  
unity8.indicators.tests.test_action_latency.TestBuffering.test_slider_buffers_activations(Native
 Device)

  Example run:

  https://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-
  mako/2076/#showFailuresLink

  The two latency ones are relatively new tests, the lifecycle one seems
  to be a new consistent failure.

  What's even more important is that they're reliably reproducible
  locally using the steps below:

  http://ubuntu-test-cases-touch.readthedocs.org/en/latest/

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity8 8.02+15.04.20150409.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-13.13-generic 3.19.3
  Uname: Linux 3.19.0-13-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Apr 21 22:18:54 2015
  SourcePackage: unity8
  SystemImageInfo:
   current build number: 0
   device name:
   channel: daily
   last update: Unknown
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1424263] Re: Broken dependencies

2015-05-08 Thread Michal Zubkowicz
Now It's working for me also.

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

Title:
  Broken dependencies

Status in mesa package in Ubuntu:
  Confirmed
Status in steam package in Ubuntu:
  Confirmed

Bug description:
  I can not install Steam from Steam website because reported package
  has broken dependencies. This bug affect any user that will install
  Ubuntu 14.04.2. Please fix it fast, cause i can not play my games on
  Linux.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgl1-mesa-dri:i386 (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.registry: Binary: 
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  346.35  Sat Jan 10 21:27:15 
PST 2015
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  ApportVersion: 2.14.1-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Feb 21 21:40:49 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: nvidia, 346.35, 3.16.0-30-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GM107 [GeForce GTX 750 Ti] [10de:1380] (rev a2) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:84ac]
  InstallationDate: Installed on 2015-02-20 (1 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS Trusty Tahr - Release amd64 
(20150218.1)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-30-generic.efi.signed 
root=UUID=ea315497-1076-4f76-a2da-dc65caca572f ro quiet splash loglevel=0 
vt.handoff=7
  SourcePackage: mesa
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.10
  dmi.board.name: H87 Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.10:bd07/09/2014:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH87Pro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.
  version.compiz: compiz 1:0.9.11.3+14.04.20150122-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.56-1~ubuntu2
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Sat Feb 21 17:22:09 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   
  xserver.version: 2:1.16.0-1ubuntu1.2~trusty2

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

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


[Touch-packages] [Bug 1453083] Re: Shutdown output with plymouth disabled is ugly (misses newlines)

2015-05-08 Thread Martin Pitt
Yeah, quite possibly it doesn't properly reset the terminal after it
shuts down X. We might be able to add a workaround to lightdm.service,
some ExecStopPost= which resets the terminal. But maybe this can be
fixed in a better way in X.

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

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

** Changed in: lightdm (Ubuntu)
   Status: New = Triaged

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

Title:
  Shutdown output with plymouth disabled is ugly (misses newlines)

Status in lightdm package in Ubuntu:
  Triaged

Bug description:
  How to reproduce:
  1. Disable plymouth (by setting GRUB_CMDLINE_LINUX_DEFAULT= in 
/etc/default/grub and running sudo update-grub)
  2. Restart or shut down
  3. Watch the mess that gets displayed see screenshot)

  My guess is that some newlines are missing in the output.
  This is on current 15.04, booting using systemd. Of course, it only takes two 
to three seconds to shut down and this is the non-default option, but still, it 
would be nice if the output were nice.

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

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


[Touch-packages] [Bug 1388862] Re: [messaging] Incoming group message is treated like an individual text

2015-05-08 Thread Olga Kemmet
** Tags added: usability

** Changed in: ubuntu-ux
   Importance: Medium = High

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

Title:
  [messaging] Incoming group message is treated like an individual text

Status in Ubuntu UX bugs:
  In Progress
Status in messaging-app package in Ubuntu:
  New

Bug description:
  Receive a message that was sent to a group
  The message is shown under the thread for the sender
  There is no information that the text went to a group and no way to reply to 
the group

  I understand that we need to treat these messages as MMS in order to
  do this properly for both incoming and outgoing.

  
  -UX comment-

  This issue was addressed with new designs for the comms framework.
  Please refer to the latest telephony spec.

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

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


[Touch-packages] [Bug 1453052] [NEW] X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
Public bug reported:

Good day.
I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
The way to accomplished this is simple:
1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
4) reboot (and enjoy!)

As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
I've also tried to add vt.handoff=7 to the command line args for the kernel, 
like grub does, but the result is even worse. The system freezes completely at 
the moment of starting X.
Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
Thanks again.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
Uname: Linux 3.19.0-16-generic x86_64
NonfreeKernelModules: wl
.tmp.unity.support.test.0:
 
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Fri May  8 10:20:35 2015
DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
DistroCodename: vivid
DistroVariant: ubuntu
DkmsStatus:
 bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
 bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
   Subsystem: Apple Inc. iMac 7,1 [106b:0083]
InstallationDate: Installed on 2013-10-27 (557 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MachineType: Apple Inc. iMac7,1
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
dmi.bios.date: 03/05/08
dmi.bios.vendor: Apple Inc.
dmi.bios.version: IM71.88Z.007A.B03.0803051705
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Mac-F4238CC8
dmi.board.vendor: Apple Inc.
dmi.board.version: PVT
dmi.chassis.asset.tag: Asset Tag#
dmi.chassis.type: 13
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-F4238CC8
dmi.modalias: 
dmi:bvnAppleInc.:bvrIM71.88Z.007A.B03.0803051705:bd03/05/08:svnAppleInc.:pniMac7,1:pvr1.0:rvnAppleInc.:rnMac-F4238CC8:rvrPVT:cvnAppleInc.:ct13:cvrMac-F4238CC8:
dmi.product.name: iMac7,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple 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 

[Touch-packages] [Bug 1430815] Re: [Scopes] grid horizontal scope card has white background

2015-05-08 Thread Paty Davila
** Summary changed:

- grid horizontal scope card has white background
+ [Scopes] grid horizontal scope card has white background

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

Title:
  [Scopes] grid horizontal scope card has white background

Status in the base for Ubuntu mobile products:
  Invalid
Status in Ubuntu UX bugs:
  Triaged
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  Create a scope card with the following layout:
  `{
schema-version: 1,
template: {
  category-layout: horizontal-journal,
  card-size: large,
  overlay: false,
  collapsed-rows: 2
},
components: {
  title: title,
  subtitle: subtitle,
  art:  {
field: art,
aspect-ratio: 2.1
  },
  summary:summary
}
  }`

  Expected behaviour:
  All the components are displayed on the same card

  Actual behaviour:
  a background is added to the card with white color and the border is smaller 
than the art.

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

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


[Touch-packages] [Bug 1318144] Re: Can't edit reviews

2015-05-08 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) = Albert Astals Cid (aacid)

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

Title:
  Can't edit reviews

Status in Ratings and Reviews server:
  Fix Released
Status in unity-scope-click package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  New

Bug description:
  It seems impossible to edit reviews at the moment. I get the review
  entry even though I reviewed already and I'm allowed to send another
  review, which actually gets lost somewhere.

  I imagine we want to limit the number of reviews to 1 per U1 account,
  but it should be possible to send a new/modified one. Maybe the review
  entry should be pre-filled with the previous review so it's obvious
  you can edit?

To manage notifications about this bug go to:
https://bugs.launchpad.net/rnr-server/+bug/1318144/+subscriptions

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


[Touch-packages] [Bug 1453088] [NEW] isc-dhcp-server apparmor include

2015-05-08 Thread Simon McNair
Public bug reported:

I tried to put isc-dhcp-server in to complain mode due to issues with
/run and /var/run PID flags.

It gave me an error

root@here:/etc/apparmor.d# aa-complain usr.sbin.dhcpd 
Setting /etc/apparmor.d/usr.sbin.dhcpd to complain mode.
Traceback (most recent call last):
  File /usr/sbin/aa-complain, line 30, in module
tool.cmd_complain()
  File /usr/lib/python3/dist-packages/apparmor/tools.py, line 184, in 
cmd_complain
raise apparmor.AppArmorException(cmd_info[1])
apparmor.common.AppArmorException: AppArmor parser error for 
/etc/apparmor.d/usr.sbin.dhcpd in /etc/apparmor.d/usr.sbin.dhcpd at line 69: 
Could not open 'dhcpd.d'\n

due to #include dhcpd.d in usr.sbin.dhcpd

Two things confuse me.  The use of '#' and '# ' to mean include and for
commenting respectively.  Is this not going to make bug fixing more
difficult ?

and two should dhcpd.d include a full path ?

Why is app armour complain complaining with a standard file ?

Cheers
Simon

** Affects: isc-dhcp (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  isc-dhcp-server apparmor include

Status in isc-dhcp package in Ubuntu:
  New

Bug description:
  I tried to put isc-dhcp-server in to complain mode due to issues with
  /run and /var/run PID flags.

  It gave me an error

  root@here:/etc/apparmor.d# aa-complain usr.sbin.dhcpd 
  Setting /etc/apparmor.d/usr.sbin.dhcpd to complain mode.
  Traceback (most recent call last):
File /usr/sbin/aa-complain, line 30, in module
  tool.cmd_complain()
File /usr/lib/python3/dist-packages/apparmor/tools.py, line 184, in 
cmd_complain
  raise apparmor.AppArmorException(cmd_info[1])
  apparmor.common.AppArmorException: AppArmor parser error for 
/etc/apparmor.d/usr.sbin.dhcpd in /etc/apparmor.d/usr.sbin.dhcpd at line 69: 
Could not open 'dhcpd.d'\n

  due to #include dhcpd.d in usr.sbin.dhcpd

  Two things confuse me.  The use of '#' and '# ' to mean include and
  for commenting respectively.  Is this not going to make bug fixing
  more difficult ?

  and two should dhcpd.d include a full path ?

  Why is app armour complain complaining with a standard file ?

  Cheers
  Simon

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

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


[Touch-packages] [Bug 1318144] Re: Can't edit reviews

2015-05-08 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: New = In Progress

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

Title:
  Can't edit reviews

Status in Ratings and Reviews server:
  Fix Released
Status in unity-scope-click package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  It seems impossible to edit reviews at the moment. I get the review
  entry even though I reviewed already and I'm allowed to send another
  review, which actually gets lost somewhere.

  I imagine we want to limit the number of reviews to 1 per U1 account,
  but it should be possible to send a new/modified one. Maybe the review
  entry should be pre-filled with the previous review so it's obvious
  you can edit?

To manage notifications about this bug go to:
https://bugs.launchpad.net/rnr-server/+bug/1318144/+subscriptions

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


[Touch-packages] [Bug 1265236] Re: Sync logs

2015-05-08 Thread Olga Kemmet
** Also affects: messaging-app
   Importance: Undecided
   Status: New

** No longer affects: messaging-app

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

** Changed in: ubuntu-ux
 Assignee: (unassigned) = Olga Kemmet (olga-kemmet)

** Changed in: ubuntu-ux
   Status: New = Triaged

** Changed in: ubuntu-ux
   Importance: Undecided = Wishlist

** Summary changed:

- Sync logs
+ [messaging-app] Sync logs

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

Title:
  [messaging-app] Sync logs

Status in Ubuntu UX bugs:
  Triaged
Status in messaging-app package in Ubuntu:
  Triaged

Bug description:
  Hi,

  it would be nice if the chatlogs could be synced/backed-up somehow
  (e.g. via Ubuntu One). This is currently not a big problem as only SMS
  is supported, but if other chat protocols kick in this would be a
  killer feature.

  Of course, this would create some privacy issues, but this could be
  solved e.g. by adding PGP encryption to the logs. Would generally be
  nice if UOA or some other service would expose the users PGP key so it
  can be used to encrypt sensitive data.

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

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


[Touch-packages] [Bug 1388862] Re: [messaging] Incoming group message is treated like an individual text

2015-05-08 Thread Olga Kemmet
** Changed in: ubuntu-ux
   Status: Triaged = Fix Committed

** Changed in: ubuntu-ux
   Status: Fix Committed = In Progress

** Description changed:

  Receive a message that was sent to a group
  The message is shown under the thread for the sender
  There is no information that the text went to a group and no way to reply to 
the group
  
  I understand that we need to treat these messages as MMS in order to do
- this properly for both incoming and outgoing
+ this properly for both incoming and outgoing.
+ 
+ 
+ -UX comment-
+ 
+ This issue was addressed with new designs for the comms framework.
+ Please refer to the latest telephony spec.

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

Title:
  [messaging] Incoming group message is treated like an individual text

Status in Ubuntu UX bugs:
  In Progress
Status in messaging-app package in Ubuntu:
  New

Bug description:
  Receive a message that was sent to a group
  The message is shown under the thread for the sender
  There is no information that the text went to a group and no way to reply to 
the group

  I understand that we need to treat these messages as MMS in order to
  do this properly for both incoming and outgoing.

  
  -UX comment-

  This issue was addressed with new designs for the comms framework.
  Please refer to the latest telephony spec.

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

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


[Touch-packages] [Bug 1442512] Re: Apport-kde crash when reporting bugs

2015-05-08 Thread Martin Pitt
** Also affects: apport (Ubuntu Vivid)
   Importance: Undecided
   Status: New

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

Title:
  Apport-kde crash when reporting bugs

Status in Apport crash detection/reporting:
  Confirmed
Status in apport package in Ubuntu:
  Triaged
Status in apport source package in Vivid:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding apport.  This problem was most recently seen with version
  2.17-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/1b2e1c9cdac684074f5f97db85ae78c1b8a2b3ac
  contains more details.

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

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


[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: LightdmGreeterLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393559/+files/LightdmGreeterLog.txt

** Attachment removed: LightdmGreeterLogOld.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393527/+files/LightdmGreeterLogOld.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
 Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM71.88Z.007A.B03.0803051705
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F4238CC8
  

[Touch-packages] [Bug 1420169] Re: Alarms don't set RTC alarm to wake up the phone

2015-05-08 Thread Michael Zanetti
From the data sheet (http://www.datasheetspdf.com/PDF/MT6582/785907/11):

After that PWRKEYcan be released, pulling BBWAKEUP high will also turn
on the handset. This is the case when the alarm in the RTC expires.

So it seems the hardware should support to turn the device on when an
RTC alarm happens.

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

Title:
  Alarms don't set RTC alarm to wake up the phone

Status in indicator-datetime package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  The alarms API is not setting the device's RTC alarm to power on the
  phone when an alarm should ring and the device is powered off.

  This causes alarms to be lost.

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

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


[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: LightdmDisplayLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393554/+files/LightdmDisplayLog.txt

** Attachment removed: LightdmGreeterLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393526/+files/LightdmGreeterLog.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
 Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM71.88Z.007A.B03.0803051705
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F4238CC8
  

[Touch-packages] [Bug 1422328] Re: [scopes] Allow users to create their own aggregator scopes without programming

2015-05-08 Thread Paty Davila
** Description changed:

  It would be nice if there were an UI to create your own (virtual)
  aggregator scopes straight from the Unity8 dash without any programming
  efforts. They would then display data from a few scopes which the user
  would be able to select from the ones he has installed using a layout
  the user would be able to define as well. Then there would be a new page
  in the Unity8 dash which collocates the data in the way the user wanted
  to.
  
  Here's a usage scenario outlining why I think this functionality is
  important:
  
  Let's say you read news from 4 custom news sources regularly for which
  scopes do exist. Currently, you then need to favorite all of them
  separately, resulting in the addition of 4 pages to the dash. As a
  result, you will have to swipe a lot to reach the scopes you want, which
  is quite annoying.
  
  Now imagine you need to do the same for other types of content and you
  will have a notion of how crowded your dash will become. To keep it
  short, the user experience will be suboptimal.
+ 
+ 
+ UX comment-
+ 
+ This is part of a bigger redesign across different projects. The
+ required design for this bug is ‘paused' while we await the outcome of
+ ongoing discussions regarding the Scopes as apps and Scopes
+ customisation projects.

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

Title:
  [scopes] Allow users to create their own aggregator scopes without
  programming

Status in Ubuntu UX bugs:
  Triaged
Status in unity-scope-scopes package in Ubuntu:
  Confirmed
Status in unity-scopes-shell package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  It would be nice if there were an UI to create your own (virtual)
  aggregator scopes straight from the Unity8 dash without any
  programming efforts. They would then display data from a few scopes
  which the user would be able to select from the ones he has installed
  using a layout the user would be able to define as well. Then there
  would be a new page in the Unity8 dash which collocates the data in
  the way the user wanted to.

  Here's a usage scenario outlining why I think this functionality is
  important:

  Let's say you read news from 4 custom news sources regularly for which
  scopes do exist. Currently, you then need to favorite all of them
  separately, resulting in the addition of 4 pages to the dash. As a
  result, you will have to swipe a lot to reach the scopes you want,
  which is quite annoying.

  Now imagine you need to do the same for other types of content and you
  will have a notion of how crowded your dash will become. To keep it
  short, the user experience will be suboptimal.

  
  UX comment-

  This is part of a bigger redesign across different projects. The
  required design for this bug is ‘paused' while we await the outcome of
  ongoing discussions regarding the Scopes as apps and Scopes
  customisation projects.

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

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


[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: LightdmGreeterLogOld.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393560/+files/LightdmGreeterLogOld.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
 Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM71.88Z.007A.B03.0803051705
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F4238CC8
  dmi.board.vendor: Apple Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag#
  dmi.chassis.type: 13
  dmi.chassis.vendor: Apple Inc.
  

[Touch-packages] [Bug 1453006] Re: Incorrect language on lock screen

2015-05-08 Thread Olivier Tilloy
** Changed in: ubuntu-system-settings (Ubuntu)
   Status: New = Invalid

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

Title:
  Incorrect language on lock screen

Status in libusermetrics package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Invalid

Bug description:
  When flashing my device (krillin) with the latest stable RTM image, I
  initially picked Catalan as the default language in the welcome
  wizard.

  Later on, I switched to French in the system settings. I then re-
  flashed to upgrade to devel-proposed.

  Now my phone is in French (as expected), except for the lock screen
  which remained in catalan (says I have no messages today in that
  language). Rebooting didn’t fix the issue.

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

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


[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment removed: CurrentDmesg.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393520/+files/CurrentDmesg.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393553/+files/CurrentDmesg.txt

** Attachment removed: LightdmDisplayLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393525/+files/LightdmDisplayLog.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
 Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.

[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: Xorg.0.log (booting using the EFI stub)
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393567/+files/Xorg.0.log

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quick, smooth and and efficient. I could notice 
even some graphical detail (e.g. Text shadows in the GDM log-in screen) that 
were not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:

  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
     Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM71.88Z.007A.B03.0803051705
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F4238CC8
  dmi.board.vendor: Apple Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag#
  dmi.chassis.type: 13
  dmi.chassis.vendor: Apple Inc.
  

[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: Xorg.0.log.old (booting using the EFI stub)
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393568/+files/Xorg.0.log.old

** Description changed:

  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
- Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quickly and and efficiently. I could notice even 
some graphical detail (e.g. Text shadows in the GDM log-in screen) that were 
not present if booting via GRUB.
+ Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quick, smooth and and efficient. I could notice 
even some graphical detail (e.g. Text shadows in the GDM log-in screen) that 
were not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)
  
  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
-  bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
-  bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
+  bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
+  bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
-  Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
-Subsystem: Apple Inc. iMac 7,1 [106b:0083]
+  Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
+    Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=it_IT.UTF-8
-  SHELL=/bin/bash
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=it_IT.UTF-8
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  

[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment removed: XorgLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393537/+files/XorgLog.txt

** Attachment added: XorgLog.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393565/+files/XorgLog.txt

** Attachment removed: XorgLogOld.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393538/+files/XorgLogOld.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quick, smooth and and efficient. I could notice 
even some graphical detail (e.g. Text shadows in the GDM log-in screen) that 
were not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:

  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
     Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: 

[Touch-packages] [Bug 1453052] Re: X fails to automatically detect ATI radeon RV600 card

2015-05-08 Thread Raffaele Candeliere
** Attachment added: XorgLogOld.txt
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1453052/+attachment/4393566/+files/XorgLogOld.txt

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

Title:
  X fails to automatically detect ATI radeon RV600 card

Status in xorg package in Ubuntu:
  New

Bug description:
  Good day.
  I'm testing pure EFI boot capability on my iMac 7.1 (graphic card ATI radeon 
HD2600 pro).
  So far, with Ubuntu 14.10, i've been able to boot directly into a perfectly 
working system using the EFI kernel stub.
  No GRUB, no ELILO, no rEFIND, no boot manager whatsoever! And the result was 
amazing!
  Boot up time reduced to a fraction of the time needed by GRUB, for example, 
Compiz compositing much more quick, smooth and and efficient. I could notice 
even some graphical detail (e.g. Text shadows in the GDM log-in screen) that 
were not present if booting via GRUB.
  The way to accomplished this is simple:
  1) Create a small (40MB or less) HFS+ partition. E.g. # sudo mkfs.hfsplus 
/dev/sdaX -v Ubuntu (EFI-Stub)
  2) Copy to the new partition the files vmlinuz-3.XX.YY-ZZ-generic.efi.signed 
and initrd.img-3.XX.YY-ZZ-generig. Also rename them to vmlinuz.efi and 
initrd.img for sake of simplicity in further command line work. Furthermore, 
Apple's EFI won't boot anything that doesn't end with the .efi extension.
  3) Create a boot entry in the NVRAM using efibootmgr like this: # sudo 
efibootmgr -d /dev/sdX -p Y -c -L Ubuntu 14.04 LTS -l /vmlinuz.efi -u 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@  quiet 
splash initrd=\initrd.img
  4) reboot (and enjoy!)

  As i've said, in Ubuntu 14 all this is working fine, but after the upgrade to 
Ubuntu 15, X doesn't start anymore. The system starts up correctly but X 
fails (with error: (EE) No devices detected. (EE) Fatal server error: (EE) no 
screens found) dropping me to a tty console login.
  I'm not shure if it is a X problem or a kernel KMS bug, but i'm more inclined 
to think of a problem with X because i've tried to boot Ubuntu 15.0 with the 
old kernel (3.13/16) and the problem is still there.
  I've also tried to add vt.handoff=7 to the command line args for the 
kernel, like grub does, but the result is even worse. The system freezes 
completely at the moment of starting X.
  Please note also that booting via grub is working. X starts, much more slowly 
but starts. (Actually i'm reporting this bug from the very same system booted 
using GRUB. I have a second HFS+ partition where i installed grub and i can 
access it by holding down the ALT key at power-up)
  Thanks for your work. I really hope that booting directly via EFI stubs will 
grow mature because the performance increase is really big.
  Thanks again.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: xorg 1:7.7+7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:

  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Fri May  8 10:20:35 2015
  DistUpgraded: 2015-05-06 18:46:56,830 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-generic, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 3.19.0-16-lowlatency, x86_64: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV630/M76 [Mobility Radeon HD 2600 
XT/2700] [1002:9583] (prog-if 00 [VGA controller])
     Subsystem: Apple Inc. iMac 7,1 [106b:0083]
  InstallationDate: Installed on 2013-10-27 (557 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: Apple Inc. iMac7,1
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-16-generic.efi.signed 
root=UUID=b0c4efb9-95b0-4e5d-98e1-8beb43f413c2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: Upgraded to vivid on 2015-05-06 (1 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: IM71.88Z.007A.B03.0803051705
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F4238CC8
  dmi.board.vendor: Apple Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag#
  dmi.chassis.type: 13
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-F4238CC8
  

[Touch-packages] [Bug 1453083] [NEW] Shutdown output with plymouth disabled is ugly (misses newlines)

2015-05-08 Thread TomasHnyk
Public bug reported:

How to reproduce:
1. Disable plymouth (by setting GRUB_CMDLINE_LINUX_DEFAULT= in 
/etc/default/grub and running sudo update-grub)
2. Restart or shut down
3. Watch the mess that gets displayed see screenshot)

My guess is that some newlines are missing in the output.
This is on current 15.04, booting using systemd. Of course, it only takes two 
to three seconds to shut down and this is the non-default option, but still, it 
would be nice if the output were nice.

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

** Attachment added: How it looks like
   
https://bugs.launchpad.net/bugs/1453083/+attachment/4393577/+files/20150508_002.jpg

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

Title:
  Shutdown output with plymouth disabled is ugly (misses newlines)

Status in systemd package in Ubuntu:
  New

Bug description:
  How to reproduce:
  1. Disable plymouth (by setting GRUB_CMDLINE_LINUX_DEFAULT= in 
/etc/default/grub and running sudo update-grub)
  2. Restart or shut down
  3. Watch the mess that gets displayed see screenshot)

  My guess is that some newlines are missing in the output.
  This is on current 15.04, booting using systemd. Of course, it only takes two 
to three seconds to shut down and this is the non-default option, but still, it 
would be nice if the output were nice.

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

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


[Touch-packages] [Bug 1318144] Re: Can't edit reviews

2015-05-08 Thread Pawel Stolowski
** Branch linked: lp:~stolowski/unity-scope-click/edit-review

** Branch linked: lp:~stolowski/ubuntuone-credentials/get-consumer-key

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

Title:
  Can't edit reviews

Status in Ratings and Reviews server:
  Fix Released
Status in unity-scope-click package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  It seems impossible to edit reviews at the moment. I get the review
  entry even though I reviewed already and I'm allowed to send another
  review, which actually gets lost somewhere.

  I imagine we want to limit the number of reviews to 1 per U1 account,
  but it should be possible to send a new/modified one. Maybe the review
  entry should be pre-filled with the previous review so it's obvious
  you can edit?

To manage notifications about this bug go to:
https://bugs.launchpad.net/rnr-server/+bug/1318144/+subscriptions

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


[Touch-packages] [Bug 1370075] Re: [design] [Switcher] Non-favourite scopes should appear in the apps stack

2015-05-08 Thread Vesa Rautiainen
** Summary changed:

- [design] [Switcher] Non-favourite feeds should appear in the apps stack
+ [design] [Switcher] Non-favourite scopes should appear in the apps stack

** Description changed:

  Currently app switcher (accessed via long right edge swipe) shows the
  Dash and all recent applications.
  
- The Dash contains favourite feeds. The current design proposal is that
- an individually opened feed (feed = scope) opens as a separate
- application in its own instance if it's not one of the favourite feeds.
+ The Dash contains favourite scopes. The current design proposal is that
+ an individually opened scope opens as a separate application in its own
+ instance if it's not one of the favourite scopes.
  
- Within the feed there can be a navigation similarly as apps have but
+ Within the scope there can be a navigation similarly as apps have but
  there is no header back navigation back to dash. Even if it was launched
- from there. So these non-favourite feeds are self contained items
+ from there. So these non-favourite scope are self contained items
  behaving like any app.
  
- Because of their app-like nature we want to add non-favourite feeds to
+ Because of their app-like nature we want to add non-favourite scope to
  the spread view and treat them there as any applications. They follow
  same recency order positioning, they can be closed and navigated to.

** Changed in: ubuntu-ux
   Status: Triaged = Fix Committed

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

Title:
  [design] [Switcher] Non-favourite scopes should appear in the apps
  stack

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

Bug description:
  Currently app switcher (accessed via long right edge swipe) shows the
  Dash and all recent applications.

  The Dash contains favourite scopes. The current design proposal is
  that an individually opened scope opens as a separate application in
  its own instance if it's not one of the favourite scopes.

  Within the scope there can be a navigation similarly as apps have but
  there is no header back navigation back to dash. Even if it was
  launched from there. So these non-favourite scope are self contained
  items behaving like any app.

  Because of their app-like nature we want to add non-favourite scope to
  the spread view and treat them there as any applications. They follow
  same recency order positioning, they can be closed and navigated to.

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

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


[Touch-packages] [Bug 1445239] Re: apt's lists/partial fills disk

2015-05-08 Thread Alex Kretzschmar
I can make this issue come and go by disabling the gnome3.16 PPAs.

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

Title:
  apt's lists/partial fills disk

Status in APT:
  New
Status in apt package in Ubuntu:
  Confirmed
Status in apt source package in Vivid:
  Confirmed

Bug description:
  Since I upgraded to vivid, apt fills the disk space at
  /var/lib/apt/lists/partial. This was triggered by the automatic update
  every day, and as a solution I killed the processes named `http`
  spawned by apt, and removed the offending file from lists/partial
  manually. Until now, `apt-get update` and `apt-get upgrade` had been
  working. However, today, when I tried `apt-get update`, it got stuck
  in some file, continuously increasing its size when at 100%.

  I tried inspecting the file to see if there is a repetition of data,
  and there seems to be, as I have suspected.

  First of all, the file is it.archive.ubuntu
  .com_ubuntu_dists_vivid_main_binary-i386_Packages.bz2 this time, but
  I'm not sure if the previous time it was also this file.

  I used `tail` and `hexdump` to figure out whether a certain pattern
  shows up in the file. Here are some examples:

  $ tail -c 20 
it.archive.ubuntu.com_ubuntu_dists_vivid_main_binary-i386_Packages.bz2 | 
hexdump | grep '\bbdf\'
  c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0010c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0020c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0030c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a

  $ tail -c 20 
it.archive.ubuntu.com_ubuntu_dists_vivid_main_binary-i386_Packages.bz2 | 
hexdump | grep '\9b95\'
  c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0010c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0020c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a
  0030c80 8d9e 63ad bbdf 40a7 3f3e 2b4a 9b95 aa5a

  $ tail -c 20 
it.archive.ubuntu.com_ubuntu_dists_vivid_main_binary-i386_Packages.bz2 | 
hexdump | grep '\1234\'
  0002630 fd50 b08d 7082 1234 85b3 a61e 2921 e0cd
  0012630 fd50 b08d 7082 1234 85b3 a61e 2921 e0cd
  0022630 fd50 b08d 7082 1234 85b3 a61e 2921 e0cd

  $ tail -c 20 
it.archive.ubuntu.com_ubuntu_dists_vivid_main_binary-i386_Packages.bz2 | 
hexdump | grep '\76a8\'
  000fa90 747d 76a8 078a 67b6 60d9 83f5 5ff3 787c
  001fa90 747d 76a8 078a 67b6 60d9 83f5 5ff3 787c
  002fa90 747d 76a8 078a 67b6 60d9 83f5 5ff3 787c

  As you can see, it seems that after the error, a certain pattern seems
  to repeat every exactly 0x1 bytes. I attached a copy of those
  0x1 bytes that keep repeating (from an arbitrary offset).

  ---

  $ lsb_release -rd
  Description:  Ubuntu Vivid Vervet (development branch)
  Release:  15.04

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

  ---

  Do let me know if I can test further to see what could be wrong. I'll
  keep an eye next times the behavior repeat to make sure the file is
  the same / the pattern is the same and I'll report back. If you think
  the problem could be the Italy server, let me know and I'll try with a
  different one.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: apt 1.0.9.7ubuntu4
  ProcVersionSignature: Ubuntu 3.19.0-13.13-generic 3.19.3
  Uname: Linux 3.19.0-13-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Apr 17 00:04:05 2015
  SourcePackage: apt
  UpgradeStatus: Upgraded to vivid on 2015-03-28 (19 days ago)

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

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


[Touch-packages] [Bug 1437375] Re: [udev] Adding Austin adapter to Ubuntu partition take over system network interface

2015-05-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 219-8ubuntu1

---
systemd (219-8ubuntu1) wily; urgency=medium

  * Merge with Debian experimental branch. Remaining Ubuntu changes:
- Hack to support system-image read-only /etc, and modify files in
  /etc/writable/ instead.
- Keep our much simpler udev maintainer scripts (all platforms must
  support udev, no debconf).
- initramfs init-top: Drop $ROOTDELAY, we do that in a more sensible way
  with wait-for-root. Will get applicable to Debian once Debian gets
  wait-for-root in initramfs-tools.
- initramfs init-bottom: If LVM is installed, settle udev,
  otherwise we get missing LV symlinks. Workaround for LP #1185394.
- Add debian/udev.lvm2.init: Dummy SysV init script to satisfy insserv
  dependencies to lvm2 which is handled with udev rules in Ubuntu.
- Add debian/udev.lvm2.service to avoid running the dummy lvm2 init
  script.
- Provide shutdown fallback for upstart. (LP: #1370329)
- debian/extra/ifup@.service: Additionally run for auto class. We don't
  really support allow-hotplug in Ubuntu at the moment, so we need to
  deal with auto devices appearing after /etc/init.d/networking start
  already ran. (LP: #1374521) Also, check if devices are actually defined
  in /etc/network/interfaces as we don't use Debian's net.agent.
  Also run ifup in the background during boot, to avoid blocking
  network.target. (LP: #1425376)
- ifup@.service: Drop dependency on networking.service (i. e.
  /etc/init.d/networking), and merely ensure that /run/network exists.
  This avoids unnecessary dependencies/waiting during boot and dependency
  cycles if hooks wait for other interfaces to come up (like ifenslave
  with bonding interfaces). (LP: #1414544)
- Add Get-RTC-is-in-local-time-setting-from-etc-default-rc.patch: In
  Ubuntu we currently keep the setting whether the RTC is in local or UTC
  time in /etc/default/rcS UTC=yes|no, instead of /etc/adjtime.
  (LP: #1377258)
- Put session scopes into all cgroup controllers. This makes unprivileged
  user LXC containers work under systemd. (LP: #1346734)
- systemctl: Don't forward telinit u to upstart. This works around
  upstart's Restart() always reexec'ing /sbin/init on Restart(), even if
  that changes to point to systemd during the upgrade. This avoids running
  systemd during a dist-upgrade. (LP: #1430479)
- Drop hwdb-update dependency from udev-trigger.service, which got
  introduced in v219-stable. This causes udev and plymouth to start too
  late and isn't really needed in Ubuntu yet as we don't support stateless
  systems yet and handle hwdb.bin updates through dpkg triggers. This can
  be dropped again with initramfs-tools 0.117.
- Lower Breaks: to plymouth version which has the udev inotify fix in
  Ubuntu.
- Lower libappamor dep to the Ubuntu version where it moved to /lib.
- Change systemd-sysv's conflicts to upstart-sysv. (LP: #1422681)
- Make failure of boot-and-services NSpawn.test_boot non-fatal for now.
  This currently fails when being triggered by Jenkins, but is totally
  unreproducible when running this manually on the exact same machine.

Upgrade fixes, keep until 16.04 LTS release:
- systemd Conflicts/Replaces/Provides systemd-services.
- Remove obsolete systemd-logind upstart job.
- Clean up obsolete /etc/udev/rules.d/README.

systemd (219-9) UNRELEASED; urgency=medium

  * 75-persistent-net-generator.rules: Fix rules for ibmveth (it's a driver,
not a subsystem). (LP: #1437375)
  * debian/tests/unit-config: Add tests for systemctl enable/disable on a
SysV-only unit. Reproduces LP #1447807.
  * Fix systemctl enable for SysV scripts without a native unit. We must not
try and enable the nonexisting unit then. (LP: #1447807)

systemd (219-8) experimental; urgency=medium

  [ Michael Biebl ]
  * Skip filesystem check if already done by the initramfs. (Closes: #782522)
  * Drop hard-coded versioned dependency on libapparmor1. Bump the
Build-Depends on libapparmor-dev instead. This ensures a proper versioned
dependency via Build-Depends-Package.
  * Revert Make apparmor run before networking. This causes dependency
cycles while apparmor still depends on $remote_fs.
  * Cleanup hwclock-save.service symlinks when upgrading from the jessie
version.

  [ Martin Pitt ]
  * cryptsetup: Implement offset and skip options. (Closes: #751707,
LP: #953875)
  * logind autopkgtest: Add test for suspending on lid switch close.
This reproduces LP #1444166 (lid switch not working in the first few
minutes after boot).
  * Reduce the initial suspend supression time from 3 minutes to 30 seconds,
and make it configurable. (LP: #1444166)
  * Fix double free crash in systemctl enable when calling update-rc.d and
the latter fails. (Closes: #764613, LP: #1426588)
  * 

[Touch-packages] [Bug 1437896] Re: systemd-logind crashed with SIGABRT in sd_pid_notify_with_fds()

2015-05-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 219-8ubuntu1

---
systemd (219-8ubuntu1) wily; urgency=medium

  * Merge with Debian experimental branch. Remaining Ubuntu changes:
- Hack to support system-image read-only /etc, and modify files in
  /etc/writable/ instead.
- Keep our much simpler udev maintainer scripts (all platforms must
  support udev, no debconf).
- initramfs init-top: Drop $ROOTDELAY, we do that in a more sensible way
  with wait-for-root. Will get applicable to Debian once Debian gets
  wait-for-root in initramfs-tools.
- initramfs init-bottom: If LVM is installed, settle udev,
  otherwise we get missing LV symlinks. Workaround for LP #1185394.
- Add debian/udev.lvm2.init: Dummy SysV init script to satisfy insserv
  dependencies to lvm2 which is handled with udev rules in Ubuntu.
- Add debian/udev.lvm2.service to avoid running the dummy lvm2 init
  script.
- Provide shutdown fallback for upstart. (LP: #1370329)
- debian/extra/ifup@.service: Additionally run for auto class. We don't
  really support allow-hotplug in Ubuntu at the moment, so we need to
  deal with auto devices appearing after /etc/init.d/networking start
  already ran. (LP: #1374521) Also, check if devices are actually defined
  in /etc/network/interfaces as we don't use Debian's net.agent.
  Also run ifup in the background during boot, to avoid blocking
  network.target. (LP: #1425376)
- ifup@.service: Drop dependency on networking.service (i. e.
  /etc/init.d/networking), and merely ensure that /run/network exists.
  This avoids unnecessary dependencies/waiting during boot and dependency
  cycles if hooks wait for other interfaces to come up (like ifenslave
  with bonding interfaces). (LP: #1414544)
- Add Get-RTC-is-in-local-time-setting-from-etc-default-rc.patch: In
  Ubuntu we currently keep the setting whether the RTC is in local or UTC
  time in /etc/default/rcS UTC=yes|no, instead of /etc/adjtime.
  (LP: #1377258)
- Put session scopes into all cgroup controllers. This makes unprivileged
  user LXC containers work under systemd. (LP: #1346734)
- systemctl: Don't forward telinit u to upstart. This works around
  upstart's Restart() always reexec'ing /sbin/init on Restart(), even if
  that changes to point to systemd during the upgrade. This avoids running
  systemd during a dist-upgrade. (LP: #1430479)
- Drop hwdb-update dependency from udev-trigger.service, which got
  introduced in v219-stable. This causes udev and plymouth to start too
  late and isn't really needed in Ubuntu yet as we don't support stateless
  systems yet and handle hwdb.bin updates through dpkg triggers. This can
  be dropped again with initramfs-tools 0.117.
- Lower Breaks: to plymouth version which has the udev inotify fix in
  Ubuntu.
- Lower libappamor dep to the Ubuntu version where it moved to /lib.
- Change systemd-sysv's conflicts to upstart-sysv. (LP: #1422681)
- Make failure of boot-and-services NSpawn.test_boot non-fatal for now.
  This currently fails when being triggered by Jenkins, but is totally
  unreproducible when running this manually on the exact same machine.

Upgrade fixes, keep until 16.04 LTS release:
- systemd Conflicts/Replaces/Provides systemd-services.
- Remove obsolete systemd-logind upstart job.
- Clean up obsolete /etc/udev/rules.d/README.

systemd (219-9) UNRELEASED; urgency=medium

  * 75-persistent-net-generator.rules: Fix rules for ibmveth (it's a driver,
not a subsystem). (LP: #1437375)
  * debian/tests/unit-config: Add tests for systemctl enable/disable on a
SysV-only unit. Reproduces LP #1447807.
  * Fix systemctl enable for SysV scripts without a native unit. We must not
try and enable the nonexisting unit then. (LP: #1447807)

systemd (219-8) experimental; urgency=medium

  [ Michael Biebl ]
  * Skip filesystem check if already done by the initramfs. (Closes: #782522)
  * Drop hard-coded versioned dependency on libapparmor1. Bump the
Build-Depends on libapparmor-dev instead. This ensures a proper versioned
dependency via Build-Depends-Package.
  * Revert Make apparmor run before networking. This causes dependency
cycles while apparmor still depends on $remote_fs.
  * Cleanup hwclock-save.service symlinks when upgrading from the jessie
version.

  [ Martin Pitt ]
  * cryptsetup: Implement offset and skip options. (Closes: #751707,
LP: #953875)
  * logind autopkgtest: Add test for suspending on lid switch close.
This reproduces LP #1444166 (lid switch not working in the first few
minutes after boot).
  * Reduce the initial suspend supression time from 3 minutes to 30 seconds,
and make it configurable. (LP: #1444166)
  * Fix double free crash in systemctl enable when calling update-rc.d and
the latter fails. (Closes: #764613, LP: #1426588)
  * 

[Touch-packages] [Bug 1451613] Re: Unity/compiz crashes when locking screen

2015-05-08 Thread Margarita Manterola
Several other people at my company have seen this issue, using Unity for
14.04. Also using nvidia.

Compiz segfaults when the lock screen is supposed to get rendered and
then the session is terminated, logging them out.

This started happening with the latest SRU, that ships:
  compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  unity 7.2.4+14.04.20150316-0ubuntu1

It was not happening before.

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

Title:
  Unity/compiz crashes when locking screen

Status in unity package in Ubuntu:
  Confirmed

Bug description:
  Since a recent update (around April 29th), sometimes (approximately once a 
day) when I lock my computer screen (CTRL+L or using system menu) the computer 
freeze for a while (2 to 30 seconds) before showing the login screen.
  Then when I try to unlock the screen I need to enter my password twice (with 
no error message after the first try).
  Once logged in, all applications are closed. Uptime is still running (since 
no reboot) and services too (with no interruption).

  Looking at the apport.log file (see attached) it seems that when I try
  to lock the screen, compiz crashes.

  I've attached the compiz crash file too (_usr_bin_compiz.1000.crash)
  but without the 100Mo data of base64 core dumb…

  
  I'm using Ubuntu 14.04 AMD64.
  Graphics drivers: nvidia-331.113 (tested)

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

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


[Touch-packages] [Bug 1449380] Re: systemctl default stops ifup@.service

2015-05-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 219-8ubuntu1

---
systemd (219-8ubuntu1) wily; urgency=medium

  * Merge with Debian experimental branch. Remaining Ubuntu changes:
- Hack to support system-image read-only /etc, and modify files in
  /etc/writable/ instead.
- Keep our much simpler udev maintainer scripts (all platforms must
  support udev, no debconf).
- initramfs init-top: Drop $ROOTDELAY, we do that in a more sensible way
  with wait-for-root. Will get applicable to Debian once Debian gets
  wait-for-root in initramfs-tools.
- initramfs init-bottom: If LVM is installed, settle udev,
  otherwise we get missing LV symlinks. Workaround for LP #1185394.
- Add debian/udev.lvm2.init: Dummy SysV init script to satisfy insserv
  dependencies to lvm2 which is handled with udev rules in Ubuntu.
- Add debian/udev.lvm2.service to avoid running the dummy lvm2 init
  script.
- Provide shutdown fallback for upstart. (LP: #1370329)
- debian/extra/ifup@.service: Additionally run for auto class. We don't
  really support allow-hotplug in Ubuntu at the moment, so we need to
  deal with auto devices appearing after /etc/init.d/networking start
  already ran. (LP: #1374521) Also, check if devices are actually defined
  in /etc/network/interfaces as we don't use Debian's net.agent.
  Also run ifup in the background during boot, to avoid blocking
  network.target. (LP: #1425376)
- ifup@.service: Drop dependency on networking.service (i. e.
  /etc/init.d/networking), and merely ensure that /run/network exists.
  This avoids unnecessary dependencies/waiting during boot and dependency
  cycles if hooks wait for other interfaces to come up (like ifenslave
  with bonding interfaces). (LP: #1414544)
- Add Get-RTC-is-in-local-time-setting-from-etc-default-rc.patch: In
  Ubuntu we currently keep the setting whether the RTC is in local or UTC
  time in /etc/default/rcS UTC=yes|no, instead of /etc/adjtime.
  (LP: #1377258)
- Put session scopes into all cgroup controllers. This makes unprivileged
  user LXC containers work under systemd. (LP: #1346734)
- systemctl: Don't forward telinit u to upstart. This works around
  upstart's Restart() always reexec'ing /sbin/init on Restart(), even if
  that changes to point to systemd during the upgrade. This avoids running
  systemd during a dist-upgrade. (LP: #1430479)
- Drop hwdb-update dependency from udev-trigger.service, which got
  introduced in v219-stable. This causes udev and plymouth to start too
  late and isn't really needed in Ubuntu yet as we don't support stateless
  systems yet and handle hwdb.bin updates through dpkg triggers. This can
  be dropped again with initramfs-tools 0.117.
- Lower Breaks: to plymouth version which has the udev inotify fix in
  Ubuntu.
- Lower libappamor dep to the Ubuntu version where it moved to /lib.
- Change systemd-sysv's conflicts to upstart-sysv. (LP: #1422681)
- Make failure of boot-and-services NSpawn.test_boot non-fatal for now.
  This currently fails when being triggered by Jenkins, but is totally
  unreproducible when running this manually on the exact same machine.

Upgrade fixes, keep until 16.04 LTS release:
- systemd Conflicts/Replaces/Provides systemd-services.
- Remove obsolete systemd-logind upstart job.
- Clean up obsolete /etc/udev/rules.d/README.

systemd (219-9) UNRELEASED; urgency=medium

  * 75-persistent-net-generator.rules: Fix rules for ibmveth (it's a driver,
not a subsystem). (LP: #1437375)
  * debian/tests/unit-config: Add tests for systemctl enable/disable on a
SysV-only unit. Reproduces LP #1447807.
  * Fix systemctl enable for SysV scripts without a native unit. We must not
try and enable the nonexisting unit then. (LP: #1447807)

systemd (219-8) experimental; urgency=medium

  [ Michael Biebl ]
  * Skip filesystem check if already done by the initramfs. (Closes: #782522)
  * Drop hard-coded versioned dependency on libapparmor1. Bump the
Build-Depends on libapparmor-dev instead. This ensures a proper versioned
dependency via Build-Depends-Package.
  * Revert Make apparmor run before networking. This causes dependency
cycles while apparmor still depends on $remote_fs.
  * Cleanup hwclock-save.service symlinks when upgrading from the jessie
version.

  [ Martin Pitt ]
  * cryptsetup: Implement offset and skip options. (Closes: #751707,
LP: #953875)
  * logind autopkgtest: Add test for suspending on lid switch close.
This reproduces LP #1444166 (lid switch not working in the first few
minutes after boot).
  * Reduce the initial suspend supression time from 3 minutes to 30 seconds,
and make it configurable. (LP: #1444166)
  * Fix double free crash in systemctl enable when calling update-rc.d and
the latter fails. (Closes: #764613, LP: #1426588)
  * 

[Touch-packages] [Bug 1448259] Re: Systemd does not send SIGTERM first on shutdown

2015-05-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 219-8ubuntu1

---
systemd (219-8ubuntu1) wily; urgency=medium

  * Merge with Debian experimental branch. Remaining Ubuntu changes:
- Hack to support system-image read-only /etc, and modify files in
  /etc/writable/ instead.
- Keep our much simpler udev maintainer scripts (all platforms must
  support udev, no debconf).
- initramfs init-top: Drop $ROOTDELAY, we do that in a more sensible way
  with wait-for-root. Will get applicable to Debian once Debian gets
  wait-for-root in initramfs-tools.
- initramfs init-bottom: If LVM is installed, settle udev,
  otherwise we get missing LV symlinks. Workaround for LP #1185394.
- Add debian/udev.lvm2.init: Dummy SysV init script to satisfy insserv
  dependencies to lvm2 which is handled with udev rules in Ubuntu.
- Add debian/udev.lvm2.service to avoid running the dummy lvm2 init
  script.
- Provide shutdown fallback for upstart. (LP: #1370329)
- debian/extra/ifup@.service: Additionally run for auto class. We don't
  really support allow-hotplug in Ubuntu at the moment, so we need to
  deal with auto devices appearing after /etc/init.d/networking start
  already ran. (LP: #1374521) Also, check if devices are actually defined
  in /etc/network/interfaces as we don't use Debian's net.agent.
  Also run ifup in the background during boot, to avoid blocking
  network.target. (LP: #1425376)
- ifup@.service: Drop dependency on networking.service (i. e.
  /etc/init.d/networking), and merely ensure that /run/network exists.
  This avoids unnecessary dependencies/waiting during boot and dependency
  cycles if hooks wait for other interfaces to come up (like ifenslave
  with bonding interfaces). (LP: #1414544)
- Add Get-RTC-is-in-local-time-setting-from-etc-default-rc.patch: In
  Ubuntu we currently keep the setting whether the RTC is in local or UTC
  time in /etc/default/rcS UTC=yes|no, instead of /etc/adjtime.
  (LP: #1377258)
- Put session scopes into all cgroup controllers. This makes unprivileged
  user LXC containers work under systemd. (LP: #1346734)
- systemctl: Don't forward telinit u to upstart. This works around
  upstart's Restart() always reexec'ing /sbin/init on Restart(), even if
  that changes to point to systemd during the upgrade. This avoids running
  systemd during a dist-upgrade. (LP: #1430479)
- Drop hwdb-update dependency from udev-trigger.service, which got
  introduced in v219-stable. This causes udev and plymouth to start too
  late and isn't really needed in Ubuntu yet as we don't support stateless
  systems yet and handle hwdb.bin updates through dpkg triggers. This can
  be dropped again with initramfs-tools 0.117.
- Lower Breaks: to plymouth version which has the udev inotify fix in
  Ubuntu.
- Lower libappamor dep to the Ubuntu version where it moved to /lib.
- Change systemd-sysv's conflicts to upstart-sysv. (LP: #1422681)
- Make failure of boot-and-services NSpawn.test_boot non-fatal for now.
  This currently fails when being triggered by Jenkins, but is totally
  unreproducible when running this manually on the exact same machine.

Upgrade fixes, keep until 16.04 LTS release:
- systemd Conflicts/Replaces/Provides systemd-services.
- Remove obsolete systemd-logind upstart job.
- Clean up obsolete /etc/udev/rules.d/README.

systemd (219-9) UNRELEASED; urgency=medium

  * 75-persistent-net-generator.rules: Fix rules for ibmveth (it's a driver,
not a subsystem). (LP: #1437375)
  * debian/tests/unit-config: Add tests for systemctl enable/disable on a
SysV-only unit. Reproduces LP #1447807.
  * Fix systemctl enable for SysV scripts without a native unit. We must not
try and enable the nonexisting unit then. (LP: #1447807)

systemd (219-8) experimental; urgency=medium

  [ Michael Biebl ]
  * Skip filesystem check if already done by the initramfs. (Closes: #782522)
  * Drop hard-coded versioned dependency on libapparmor1. Bump the
Build-Depends on libapparmor-dev instead. This ensures a proper versioned
dependency via Build-Depends-Package.
  * Revert Make apparmor run before networking. This causes dependency
cycles while apparmor still depends on $remote_fs.
  * Cleanup hwclock-save.service symlinks when upgrading from the jessie
version.

  [ Martin Pitt ]
  * cryptsetup: Implement offset and skip options. (Closes: #751707,
LP: #953875)
  * logind autopkgtest: Add test for suspending on lid switch close.
This reproduces LP #1444166 (lid switch not working in the first few
minutes after boot).
  * Reduce the initial suspend supression time from 3 minutes to 30 seconds,
and make it configurable. (LP: #1444166)
  * Fix double free crash in systemctl enable when calling update-rc.d and
the latter fails. (Closes: #764613, LP: #1426588)
  * 

[Touch-packages] [Bug 1413801] Re: TextField's placeHolderText invisible inside a dialog

2015-05-08 Thread Magdalena Mirowicz
** Changed in: ubuntu-ux
   Status: New = Triaged

** Changed in: ubuntu-ux
 Assignee: (unassigned) = Olivia Caro de Diego (oliviacaroddiego)

** Changed in: ubuntu-ux
   Importance: Undecided = High

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

Title:
  TextField's placeHolderText invisible inside a dialog

Status in Ubuntu UX bugs:
  Triaged
Status in ubuntu-ui-toolkit package in Ubuntu:
  Triaged

Bug description:
  Using a dark background in an application, a Dialog and a TextField
  inside that Dialog renders the placeholderText nearly invisible.

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

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


[Touch-packages] [Bug 1447807] Re: systemctl enable shows error on enabling a SysV service

2015-05-08 Thread Launchpad Bug Tracker
This bug was fixed in the package systemd - 219-8ubuntu1

---
systemd (219-8ubuntu1) wily; urgency=medium

  * Merge with Debian experimental branch. Remaining Ubuntu changes:
- Hack to support system-image read-only /etc, and modify files in
  /etc/writable/ instead.
- Keep our much simpler udev maintainer scripts (all platforms must
  support udev, no debconf).
- initramfs init-top: Drop $ROOTDELAY, we do that in a more sensible way
  with wait-for-root. Will get applicable to Debian once Debian gets
  wait-for-root in initramfs-tools.
- initramfs init-bottom: If LVM is installed, settle udev,
  otherwise we get missing LV symlinks. Workaround for LP #1185394.
- Add debian/udev.lvm2.init: Dummy SysV init script to satisfy insserv
  dependencies to lvm2 which is handled with udev rules in Ubuntu.
- Add debian/udev.lvm2.service to avoid running the dummy lvm2 init
  script.
- Provide shutdown fallback for upstart. (LP: #1370329)
- debian/extra/ifup@.service: Additionally run for auto class. We don't
  really support allow-hotplug in Ubuntu at the moment, so we need to
  deal with auto devices appearing after /etc/init.d/networking start
  already ran. (LP: #1374521) Also, check if devices are actually defined
  in /etc/network/interfaces as we don't use Debian's net.agent.
  Also run ifup in the background during boot, to avoid blocking
  network.target. (LP: #1425376)
- ifup@.service: Drop dependency on networking.service (i. e.
  /etc/init.d/networking), and merely ensure that /run/network exists.
  This avoids unnecessary dependencies/waiting during boot and dependency
  cycles if hooks wait for other interfaces to come up (like ifenslave
  with bonding interfaces). (LP: #1414544)
- Add Get-RTC-is-in-local-time-setting-from-etc-default-rc.patch: In
  Ubuntu we currently keep the setting whether the RTC is in local or UTC
  time in /etc/default/rcS UTC=yes|no, instead of /etc/adjtime.
  (LP: #1377258)
- Put session scopes into all cgroup controllers. This makes unprivileged
  user LXC containers work under systemd. (LP: #1346734)
- systemctl: Don't forward telinit u to upstart. This works around
  upstart's Restart() always reexec'ing /sbin/init on Restart(), even if
  that changes to point to systemd during the upgrade. This avoids running
  systemd during a dist-upgrade. (LP: #1430479)
- Drop hwdb-update dependency from udev-trigger.service, which got
  introduced in v219-stable. This causes udev and plymouth to start too
  late and isn't really needed in Ubuntu yet as we don't support stateless
  systems yet and handle hwdb.bin updates through dpkg triggers. This can
  be dropped again with initramfs-tools 0.117.
- Lower Breaks: to plymouth version which has the udev inotify fix in
  Ubuntu.
- Lower libappamor dep to the Ubuntu version where it moved to /lib.
- Change systemd-sysv's conflicts to upstart-sysv. (LP: #1422681)
- Make failure of boot-and-services NSpawn.test_boot non-fatal for now.
  This currently fails when being triggered by Jenkins, but is totally
  unreproducible when running this manually on the exact same machine.

Upgrade fixes, keep until 16.04 LTS release:
- systemd Conflicts/Replaces/Provides systemd-services.
- Remove obsolete systemd-logind upstart job.
- Clean up obsolete /etc/udev/rules.d/README.

systemd (219-9) UNRELEASED; urgency=medium

  * 75-persistent-net-generator.rules: Fix rules for ibmveth (it's a driver,
not a subsystem). (LP: #1437375)
  * debian/tests/unit-config: Add tests for systemctl enable/disable on a
SysV-only unit. Reproduces LP #1447807.
  * Fix systemctl enable for SysV scripts without a native unit. We must not
try and enable the nonexisting unit then. (LP: #1447807)

systemd (219-8) experimental; urgency=medium

  [ Michael Biebl ]
  * Skip filesystem check if already done by the initramfs. (Closes: #782522)
  * Drop hard-coded versioned dependency on libapparmor1. Bump the
Build-Depends on libapparmor-dev instead. This ensures a proper versioned
dependency via Build-Depends-Package.
  * Revert Make apparmor run before networking. This causes dependency
cycles while apparmor still depends on $remote_fs.
  * Cleanup hwclock-save.service symlinks when upgrading from the jessie
version.

  [ Martin Pitt ]
  * cryptsetup: Implement offset and skip options. (Closes: #751707,
LP: #953875)
  * logind autopkgtest: Add test for suspending on lid switch close.
This reproduces LP #1444166 (lid switch not working in the first few
minutes after boot).
  * Reduce the initial suspend supression time from 3 minutes to 30 seconds,
and make it configurable. (LP: #1444166)
  * Fix double free crash in systemctl enable when calling update-rc.d and
the latter fails. (Closes: #764613, LP: #1426588)
  * 

[Touch-packages] [Bug 448329] Re: Default input (mic) doesn't work until reselected

2015-05-08 Thread dino99
That version is no more supported

** Changed in: pulseaudio (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Default input (mic) doesn't work until reselected

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: gnome-media

  Hello,
  I have Line-in, Microphone 1 and Microphone 2 inputs to choose in Sound 
Preferences. The default Mic1 is the backpanel one which i use. It's muted (or 
not used) until i select Mic2 and then select back Mic1. After that it does 
work fine. After reboot i have to do this again.
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=9.10
  DISTRIB_CODENAME=karmic

  Thanks.

  ProblemType: Bug
  Architecture: amd64
  Date: Sun Oct 11 02:40:58 2009
  DistroRelease: Ubuntu 9.10
  ExecutablePath: /usr/bin/gnome-volume-control
  NonfreeKernelModules: nvidia
  Package: gnome-media 2.28.1-0ubuntu1
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-13.42-generic
  SourcePackage: gnome-media
  Uname: Linux 2.6.31-13-generic x86_64
  --- 
  Architecture: amd64
  DistroRelease: Ubuntu 10.10
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
  NonfreeKernelModules: nvidia
  Package: gnome-media 2.31.6-0ubuntu2
  PackageArchitecture: amd64
  ProcEnviron:
   LANGUAGE=fr:en
   PATH=(custom, user)
   LANG=fr_FR.utf8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.35-17.23-generic 2.6.35.2
  Tags: maverick
  Uname: Linux 2.6.35-17-generic x86_64
  UserGroups: adm admin audio cdrom dialout lpadmin netdev plugdev sambashare

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

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


[Touch-packages] [Bug 441195] Re: [karmic][lucid] Intel HDA 82801G (ICH7) | STAC9200 - Mixer controlling wrong settings

2015-05-08 Thread dino99
That version is no more supported

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

** Changed in: pulseaudio
   Importance: Unknown = Undecided

** Changed in: pulseaudio
 Remote watch: PulseAudio sound server #457 = None

** Changed in: pulseaudio
   Status: New = Invalid

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

Title:
  [karmic][lucid] Intel HDA 82801G (ICH7) | STAC9200 - Mixer controlling
  wrong settings

Status in PulseAudio sound server:
  Invalid
Status in linux package in Ubuntu:
  Invalid
Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  Hi, this might not be a bug in pulseaudio but I wasn't sure of the
  right package for this.

  Basically each of the volume controls in gnome seem to control the
  wrong mixer channel.

  The exact device ID is:

  00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition 
Audio Controller (rev 01)
  00:1b.0 0403: 8086:27d8 (rev 01)

  Sliding the volume control with alsamixer open, I see behaviour where
  at the top 80% of the volume range, the Master level is changed from 0
  to 100%.  In the ~5% or so below that, the LFE level is changed from 0
  to 100%.  In the bottom ~15%, the PCM level is dropped.

  This seems like quite deliberate behaviour, but for this laptop it is
  entirely inappropriate.  Between the 15% and 20% setting for instance
  the subwoofer speaker goes from 0% to 100%, with the treble speakers
  off.  It sounds *awful*!

  More appropriate behaviour for this laptop is to have LFE at ~100% and
  Master at ~85%, and then just changing PCM between about 100% and 25%
  will give good levels for most environments.  Alternatively, you can
  adjust both LFE and Master together - ideally with LFE slightly higher
  than Master - and leave PCM on high and this will achieve a similar
  effect.

  ProblemType: Bug
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  samv   1781 F pulseaudio
   /dev/snd/pcmC0D0p:   samv   1781 F...m pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xefffc000 irq 21'
 Mixer name : 'SigmaTel STAC9200'
 Components : 'HDA:83847690,102801cd,00102201 
HDA:14f12bfa,14f100c3,0009'
 Controls  : 13
 Simple ctrls  : 7
  Date: Sat Oct  3 21:53:10 2009
  DistroRelease: Ubuntu 9.10
  Package: pulseaudio 1:0.9.18-0ubuntu3
  ProcEnviron:
   LANG=en_NZ.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-11.36-generic
  SourcePackage: pulseaudio
  Uname: Linux 2.6.31-11-generic x86_64

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

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


[Touch-packages] [Bug 1451024] Re: Ubuntu phone: Changed (viewport?) resolution in the last core update

2015-05-08 Thread costales
** Summary changed:

- Ubuntu phone: Changed (dpi?) resolution in the last core update
+ Ubuntu phone: Changed (viewport?) resolution in the last core update

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

Title:
  Ubuntu phone: Changed (viewport?) resolution in the last core update

Status in oxide-qt package in Ubuntu:
  Incomplete
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  Hi!
  After the last core update, 2 weeks ago, a few webapps have problems with the 
resolution.
  By example 'messenger' and 'the circle game'. 
  Thanks in advance

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/oxide-qt/+bug/1451024/+subscriptions

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


[Touch-packages] [Bug 703703] Re: Pulseaudio is not running

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  Pulseaudio is not running

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  don't know what happend, when I started the comnputer this morning it
  worked fine. In the evening I found it without sound..

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic x86_64
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tmo2067 f plugin-containe
   /dev/snd/pcmC0D0p:   tmo2067 F...m plugin-containe
   /dev/snd/timer:  tmo2067 f plugin-containe
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xdf00 irq 22'
 Mixer name : 'Nvidia MCP78 HDMI'
 Components : 'HDA:111d76b2,103c30f6,00100302 
HDA:10de0006,10de0101,0010'
 Controls  : 24
 Simple ctrls  : 13
  Date: Sun Jan 16 22:38:04 2011
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  Symptom: audio
  Title: Pulseaudio is not running
  dmi.bios.date: 05/20/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.2A
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 30F4
  dmi.board.vendor: Compal
  dmi.board.version: 99.A9
  dmi.chassis.type: 10
  dmi.chassis.vendor: Compal
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.2A:bd05/20/2009:svnHewlett-Packard:pnHPPaviliondv7NotebookPC:pvrF.2A:rvnCompal:rn30F4:rvr99.A9:cvnCompal:ct10:cvrN/A:
  dmi.product.name: HP Pavilion dv7 Notebook PC
  dmi.product.version: F.2A
  dmi.sys.vendor: Hewlett-Packard

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

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


[Touch-packages] [Bug 706682] Re: Pulseaudio is not running

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  Pulseaudio is not running

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  Hi,

  I seem to be able to listen to some sounds when I play music but the
  sound is too low. So I wanted to check if the volume is set ok but
  could not launch sound

  Thanks for your help

  Regards
  Mohamed

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  AplayDevices:
   Home directory /home/mohamed not ours.
    List of PLAYBACK Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: ALC272 Analog [ALC272 Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  Architecture: amd64
  ArecordDevices:
   Home directory /home/mohamed not ours.
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: ALC272 Analog [ALC272 Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', 
'/dev/snd/by-path', '/dev/snd/controlC0', '/dev/snd/hwC0D0', 
'/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', '/dev/snd/seq', '/dev/snd/timer', 
'/dev/sequencer2', '/dev/sequencer'] failed with exit code 1:
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xd230 irq 16'
 Mixer name : 'Realtek ALC272'
 Components : 'HDA:10ec0272,1025028d,0011'
 Controls  : 17
 Simple ctrls  : 10
  Date: Sun Jan 23 20:39:06 2011
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.1)
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_GB.utf8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  Symptom: audio
  Title: Pulseaudio is not running
  dmi.bios.date: 11/30/2009
  dmi.bios.vendor: Acer
  dmi.bios.version: V1.09
  dmi.board.name: Aspire 5532
  dmi.board.vendor: Acer
  dmi.board.version: V1.09
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.09
  dmi.modalias: 
dmi:bvnAcer:bvrV1.09:bd11/30/2009:svnAcer:pnAspire5532:pvrV1.09:rvnAcer:rnAspire5532:rvrV1.09:cvnAcer:ct10:cvrV1.09:
  dmi.product.name: Aspire 5532
  dmi.product.version: V1.09
  dmi.sys.vendor: Acer

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

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


[Touch-packages] [Bug 730108] Re: [Analog Devices AD1988B] PA test tone failed (alsa tone succeeded)

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [Analog Devices AD1988B] PA test tone failed (alsa tone succeeded)

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  sound was working perfectly with ubuntu 8.04.  I updated to 10.4 and I
  had no sound at all.  After trying many things suggested on the forums
  (medibuntu repo, alsamixer, etc) I ran ubuntu-bug audio and worked
  through its advice until I heard the first tone (finally something!).
  However, still no sounds from anywhere else in Ubuntu

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
  Uname: Linux 2.6.32-29-generic x86_64
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mike   2038 F pulseaudio
mike   3367 f gamix
mike   3469 f gamix
   /dev/snd/pcmC0D1p:   mike   2038 F...m pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf9ff8000 irq 22'
 Mixer name : 'Analog Devices AD1988B'
 Components : 'HDA:11d4198b,1043829b,00100400'
 Controls  : 49
 Simple ctrls  : 27
  Date: Sun Mar  6 07:29:52 2011
  ProcEnviron:
   LANG=en_CA.utf8
   SHELL=/bin/bash
  SelectedCard: 0 Intel HDA-Intel - HDA Intel
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [Analog Devices AD1988B] PA test tone failed (alsa tone succeeded)
  dmi.bios.date: 12/10/2007
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0504
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: P5K Premium
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0504:bd12/10/2007:svnSystemmanufacturer:pnP5KPremium:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5KPremium:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: P5K Premium
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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

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


[Touch-packages] [Bug 703005] Re: [ATIIXP - ATI IXP] PA test tone failed (alsa tone succeeded)

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [ATIIXP - ATI IXP] PA test tone failed (alsa tone succeeded)

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  -

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: IXP [ATI IXP], device 0: ATI IXP AC97 [ATI IXP AC97]
 Subdevices: 0/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  kone   1292 F pulseaudio
   /dev/snd/pcmC0D0c:   kone   1292 F...m pulseaudio
   /dev/snd/pcmC0D0p:   kone   1292 F...m pulseaudio
  Card0.Amixer.info:
   Card hw:0 'IXP'/'ATI IXP rev 0 with ALC658D at 0xfe029000, irq 17'
 Mixer name : 'Realtek ALC658D'
 Components : 'AC97a:414c4781'
 Controls  : 38
 Simple ctrls  : 24
  CurrentDmesg:
   [   25.616009] eth0: no IPv6 routers present
   [   80.464109] Marking TSC unstable due to cpufreq changes
   [   80.464174] Switching to clocksource acpi_pm
   [  308.704109] lo: Disabled Privacy Extensions
   [  336.095750] lo: Disabled Privacy Extensions
  Date: Fri Jan 14 20:22:39 2011
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
  ProcEnviron:
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  SelectedCard: 0 IXP ATIIXP - ATI IXP
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [ATIIXP - ATI IXP] PA test tone failed (alsa tone succeeded)
  dmi.bios.date: 01/24/2005
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: 3.06
  dmi.board.name: AHI
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr3.06:bd01/24/2005:svnHPPavilion061:pnPS357AA-ABXt849.fi:pvr03q0211RE101AHI00:rvn:rnAHI:rvr:cvnHewlett-Packard:ct3:cvr:
  dmi.product.name: PS357AA-ABX t849.fi
  dmi.product.version: 03q0211RE101AHI  00
  dmi.sys.vendor: HP Pavilion 061

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

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


[Touch-packages] [Bug 712646] Re: [VIA8237 - VIA 8237] pactl stat failed to find default card

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [VIA8237 - VIA 8237] pactl stat failed to find default card

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  no sound form audio output

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
  Uname: Linux 2.6.32-25-generic i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  graham 1284 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'V8237'/'VIA 8237 with ALC655 at 0xbc00, irq 22'
 Mixer name : 'Realtek ALC655 rev 0'
 Components : 'AC97a:414c4760'
 Controls  : 48
 Simple ctrls  : 29
  Date: Thu Feb  3 12:03:23 2011
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SelectedCard: 0 V8237 VIA8237 - VIA 8237
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [VIA8237 - VIA 8237] pactl stat failed to find default card
  dmi.bios.date: 04/27/2006
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F3
  dmi.board.name: P4M800Pro-8237
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF3:bd04/27/2006:svn:pn:pvr:rvn:rnP4M800Pro-8237:rvrx.x:cvn:ct3:cvr:

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

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


[Touch-packages] [Bug 1215287] Re: [wrap-and-sort] Drops commented lines inappropriately.

2015-05-08 Thread James McCoy
devscripts uses python-debian to parse the control file and that is what
is dropping the comments.

** Package changed: devscripts (Ubuntu) = python-debian (Ubuntu)

** Bug watch added: Debian Bug tracker #694142
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694142

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

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

Title:
  [wrap-and-sort] Drops commented lines inappropriately.

Status in python-debian package in Ubuntu:
  New
Status in python-debian package in Debian:
  Unknown

Bug description:
  So debian/control supports # comments, much like bash or python does,
  and comments are good! They help explain things to other maintainers.
  But wrap-and-sort just discards them like so much garbage. It should
  probably be fixed to preserve commented lines.

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

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


[Touch-packages] [Bug 1453167] [NEW] replace resolvconf with systemd-resolvd

2015-05-08 Thread god
Public bug reported:

For the sake of smoother user experience and easier learning curve would
be nice to get rid of legacy resolvconf package and use systemd-resolvd
which is nicely integrated with the rest of the stack and uses unified
configuration file systax and conventions.

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

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

Title:
  replace resolvconf with systemd-resolvd

Status in ubuntu-meta package in Ubuntu:
  New

Bug description:
  For the sake of smoother user experience and easier learning curve
  would be nice to get rid of legacy resolvconf package and use systemd-
  resolvd which is nicely integrated with the rest of the stack and uses
  unified configuration file systax and conventions.

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

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


[Touch-packages] [Bug 1450790] Re: Phone with an APN specifying Username/Password, not re-connecting to mobile data until rebooting

2015-05-08 Thread Tony Espy
** Branch linked: lp:~phablet-team/network-manager/lp1435776

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

Title:
  Phone with an APN specifying Username/Password, not re-connecting to
  mobile data until rebooting

Status in the base for Ubuntu mobile products:
  New
Status in network-manager package in Ubuntu:
  In Progress
Status in ofono package in Ubuntu:
  Incomplete

Bug description:
  Whenever I walk out of WiFi range, my phone does not connect to mobile
  data. Toggling flight mode does not help. I have to reboot the phone.
  When then I finally manage to connect after rebooting, if the signal
  strength drops and the phone would want to switch from 3G to 2G, it
  disconnects and I have to reboot again to get mobile data.

  $ system-image-cli -i
  current build number: 200
  device name: krillin
  channel: ubuntu-touch/devel-proposed
  alias: ubuntu-touch/vivid-proposed
  last update: 2015-04-30 11:07:21
  version version: 200
  version ubuntu: 20150429
  version device: 20150326-f0c5ba5
  version custom: 20150429

  Attached you'll find the output of the forensics script

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

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


[Touch-packages] [Bug 544720] Re: After suspend, AudioHub missing from Volume Control

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  After suspend, AudioHub missing from Volume Control

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  For the past two days or so, my AudioHub is missing from the
  PulseAudio applet's Volume Control section and audio plays though the
  laptop speakers.

  This only after the laptop 'wakes' from an auto suspend after its
  programmed 2 hours of inactivity. Previously, the sound defaulted to
  the internal speakers after waking, but it was possible to re-select
  the AudioHub via the Volume control.

  The only way to re-enable the AudioHub is to reboot. Lgging out and in
  does nothing.

  2.6.32-16-generic (#25-Ubuntu SMP Tue Mar 9 16:33:52 UTC 2010)

  ProblemType: Bug
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  chris  1809 F pulseaudio
chris  2756 F PopTray.exe
  Card0.Amixer.info:
   Card hw:0 'ICH6'/'Intel ICH6 with ALC250 at irq 17'
 Mixer name : 'Realtek ALC250 rev 2'
 Components : 'AC97a:414c4752'
 Controls  : 33
 Simple ctrls  : 21
  Card1.Amixer.info:
   Card hw:1 'Speaker'/'HOLTEK  AudioHub Speaker at usb-:00:1d.2-1.1.4, 
full speed'
 Mixer name : 'USB Mixer'
 Components : 'USB046d:0a0e'
 Controls  : 2
 Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'PCM',0
 Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum
 Playback channels: Mono
 Limits: Playback 0 - 51
 Mono: Playback 41 [80%] [4.01dB] [on]
  Date: Mon Mar 22 21:23:35 2010
  DistroRelease: Ubuntu 10.04
  InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20091225)
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12
  ProcEnviron:
   LANG=en_CA.utf8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-16.25-generic
  SourcePackage: pulseaudio
  Uname: Linux 2.6.32-16-generic i686

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

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


[Touch-packages] [Bug 816159] Re: Intel HDA no sound at all on ubuntu 10.04 [Realtek ALC662 rev1]

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  Intel HDA no sound at all on ubuntu 10.04 [Realtek ALC662 rev1]

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Sound stopped working a couple of weeks ago. I've been trying to solve
  this issue, but I'm running out of ideas. It would be great if anybody
  could give me any hint.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-33.70-generic 2.6.32.41+drm33.18
  Uname: Linux 2.6.32-33-generic i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', '/dev/dsp1', 
'/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1c', '/dev/snd/pcmC0D1p', 
'/dev/snd/by-path', '/dev/snd/by-id', '/dev/snd/controlC1', 
'/dev/snd/pcmC1D0c', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', 
'/dev/sequencer'] failed with exit code 1:
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfbef8000 irq 16'
 Mixer name : 'Realtek ALC662 rev1'
 Components : 'HDA:10ec0662,10438290,00100101'
 Controls  : 36
 Simple ctrls  : 19
  Card1.Amixer.info:
   Card hw:1 'Microphone'/'Logitech USB Microphone at usb-:00:1d.2-2, full 
speed'
 Mixer name : 'USB Mixer'
 Components : 'USB046d:0a03'
 Controls  : 2
 Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'Mic',0
 Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum
 Capture channels: Mono
 Limits: Capture 0 - 15
 Mono: Capture 0 [0%] [16.00dB] [on]
  Date: Mon Jul 25 18:59:18 2011
  ProcEnviron:
   LANGUAGE=pt_BR:pt:en
   LANG=pt_BR.utf8
   SHELL=/bin/bash
  SelectedCard: 0 Intel HDA-Intel - HDA Intel
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [Realtek ALC662 rev1] pactl stat failed to find default card
  dmi.bios.date: 02/29/2008
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0603
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: P5KPL
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0603:bd02/29/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5KPL:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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

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


[Touch-packages] [Bug 734089] Re: crashes without crashreport on youtube

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  crashes without crashreport on youtube

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  i tried today 5, 6 videos on youtube and every time i got a full crash
  of the whole machine incl. reboot.

  Last words from /var/log/messages is attached.

  Maybe a duplicate from #447977

  Ubuntu 10.04.2
  Linux Ubuntu 2.6.32-30-generic #59-Ubuntu SMP Tue Mar 1 21:30:46 UTC 2011 
x86_64 GNU/Linux
  Pulseaudio Linux Ubuntu 2.6.32-30-generic #59-Ubuntu SMP Tue Mar 1 21:30:46 
UTC 2011 x86_64 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: hostname 2.6.32-30.59-generic 2.6.32.29+drm33.13
  Uname: Linux 2.6.32-30-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  frank  2200 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xfe024000 irq 16'
 Mixer name : 'Realtek ALC889A'
 Components : 'HDA:10ec0885,1458a102,00100101'
 Controls  : 40
 Simple ctrls  : 22
  Card1.Amixer.info:
   Card hw:1 'HDMI'/'HDA ATI HDMI at 0xfdffc000 irq 19'
 Mixer name : 'ATI RS690/780 HDMI'
 Components : 'HDA:1002791a,00791a00,0010'
 Controls  : 4
 Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  CheckboxSubmission: e9ea3667bf6fc29501313e76f4427e62
  CheckboxSystem: 4ed15c40009aa6f7770f606350a390a2
  Date: Sun Mar 13 01:03:52 2011
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.1)
  ProcEnviron:
   LANGUAGE=de_DE:en
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  dmi.bios.date: 07/08/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F7c
  dmi.board.name: GA-MA790GP-UD4H
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF7c:bd07/08/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-MA790GP-UD4H:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-MA790GP-UD4H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: GA-MA790GP-UD4H
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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

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


[Touch-packages] [Bug 835819] Re: pulseaudio is not running

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  pulseaudio is not running

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  ubuntu-bug audio

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-28.55-generic 2.6.32.27+drm33.12
  Uname: Linux 2.6.32-28-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mew1323 F pulseaudio
   /dev/snd/pcmC0D0p:   mew1323 F...m pulseaudio
  Card0.Amixer.info:
   Error: command ['amixer', '-c', '0', 'info'] failed with exit code 1: 
amixer: Mixer load hw:0 error: Invalid argument
   Card hw:0 'Intel'/'HDA Intel at 0xfbff4000 irq 22'
 Mixer name : 'Realtek ALC887'
 Components : 'HDA:10ec0887,1458a002,00100302'
 Controls  : 40
  Card0.Amixer.values: Error: command ['amixer', '-c', '0'] failed with exit 
code 1: amixer: Mixer hw:0 load error: Invalid argument
  Date: Sun Aug 28 10:57:11 2011
  InstallationMedia: Ubuntu 10.04.2 LTS Lucid Lynx - Release i386 (20110211.1)
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  Symptom: audio
  Title: Pulseaudio is not running
  dmi.bios.date: 08/20/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F4
  dmi.board.name: H55M-S2
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF4:bd08/20/2010:svnGigabyteTechnologyCo.,Ltd.:pnH55M-S2:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnH55M-S2:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: H55M-S2
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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

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


[Touch-packages] [Bug 781551] Re: [EMU10K1 - SB Live! 5.1] pactl stat failed to find default card

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [EMU10K1 - SB Live! 5.1] pactl stat failed to find default card

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  Tried several fixes found on the Ubuntu forums and to no avail. cannot
  get external sound from Sound blaster live! 5.1 sound card. Pulse
  audio volume meter shows activity but no audible noises from speakers
  at max volume. tried updating kernel as well, also to no avail.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-31.61-generic 2.6.32.32+drm33.14
  Uname: Linux 2.6.32-31-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  thad   1236 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Live'/'SB Live! 5.1 (rev.7, serial:0x80641102) at 0xb400, irq 23'
 Mixer name : 'eMicro EM28028'
 Components : 'AC97a:454d4328'
 Controls  : 216
 Simple ctrls  : 38
  Date: Thu May 12 04:33:40 2011
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SelectedCard: 0 Live EMU10K1 - SB Live! 5.1
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [EMU10K1 - SB Live! 5.1] pactl stat failed to find default card
  dmi.bios.date: 10/16/2003
  dmi.bios.vendor: Award Software, Inc.
  dmi.bios.version: 3.17
  dmi.board.name: P4G533LA
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: REV 1.xx
  dmi.chassis.asset.tag: N/A
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: 1.00
  dmi.modalias: 
dmi:bvnAwardSoftware,Inc.:bvr3.17:bd10/16/2003:svnCompaqPresario061:pnDQ187A-ABAS5008NXNA310:pvr0n11411RE101ECHO10:rvnASUSTeKComputerINC.:rnP4G533LA:rvrREV1.xx:cvnHewlett-Packard:ct6:cvr1.00:
  dmi.product.name: DQ187A-ABA S5008NX NA310
  dmi.product.version: 0n11411RE101ECHO 10
  dmi.sys.vendor: Compaq Presario 061

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

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


[Touch-packages] [Bug 687947] Re: Sound is cracks irregular

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  Sound is cracks irregular

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  the sound stops or cracks for a brief second. it is very irregular,
  but happens in all programs.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-26.48-generic 2.6.32.24+drm33.11
  Uname: Linux 2.6.32-26-generic i686
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennning   2698 F pulseaudio
   /dev/snd/pcmC0D0p:   hennning   2698 F...m pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf840 irq 20'
 Mixer name : 'Realtek ALC268'
 Components : 'HDA:10ec0268,14c00025,0013 
HDA:10573055,10573055,00100700'
 Controls  : 15
 Simple ctrls  : 12
  Date: Thu Dec  9 11:32:55 2010
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  ProcEnviron:
   LANG=da_DK.utf8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  dmi.bios.date: 12/31/2007
  dmi.bios.vendor: COMPAL
  dmi.bios.version: 1.16
  dmi.board.name: IFL90
  dmi.board.vendor: -
  dmi.board.version: IFT00
  dmi.chassis.asset.tag: -
  dmi.chassis.type: 10
  dmi.chassis.vendor: No Enclosure
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnCOMPAL:bvr1.16:bd12/31/2007:svn-:pnN/A:pvrN/A:rvn-:rnIFL90:rvrIFT00:cvnNoEnclosure:ct10:cvrN/A:
  dmi.product.name: N/A
  dmi.product.version: N/A
  dmi.sys.vendor: -

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

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


[Touch-packages] [Bug 693245] Re: [IDT 92HD75B2X5] PA test tone failed (alsa tone succeeded)

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [IDT 92HD75B2X5] PA test tone failed (alsa tone succeeded)

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  Sound hickups

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic i686
  NonfreeKernelModules: fglrx wl
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: STAC92xx Analog [STAC92xx Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  myros  1946 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0x9440 irq 16'
 Mixer name : 'IDT 92HD75B2X5'
 Components : 'HDA:111d7608,103c7012,00100202 
HDA:11c11040,103c1378,00100200'
 Controls  : 13
 Simple ctrls  : 8
  Card1.Amixer.info:
   Card hw:1 'HDMI'/'HDA ATI HDMI at 0x9431 irq 19'
 Mixer name : 'ATI RS690/780 HDMI'
 Components : 'HDA:1002791a,00791a00,0010'
 Controls  : 4
 Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  Date: Wed Dec 22 03:55:49 2010
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
  ProcEnviron:
   LANG=el_GR.utf8
   SHELL=/bin/bash
  SelectedCard: 0 SB HDA-Intel - HDA ATI SB
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [IDT 92HD75B2X5] PA test tone failed (alsa tone succeeded)
  dmi.bios.date: 12/21/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 68CPP Ver. F.05
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 7011
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 28.18
  dmi.chassis.asset.tag: CNU0114CVT
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68CPPVer.F.05:bd12/21/2009:svnHewlett-Packard:pnHPProBook4515s:pvrF.05:rvnHewlett-Packard:rn7011:rvrKBCVersion28.18:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 4515s
  dmi.product.version: F.05
  dmi.sys.vendor: Hewlett-Packard

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

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


[Touch-packages] [Bug 705261] Re: [Conexant CX20583 (Pebble 56-LQFP)] pactl stat failed to find default card

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  [Conexant CX20583 (Pebble 56-LQFP)] pactl stat failed to find default
  card

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  Audio output works, microphone input does not.  Tried to install linux
  alsa drivers and it still did not work.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic x86_64
  AlsaVersion:
   Advanced Linux Sound Architecture Driver Version 1.0.23.
   Compiled on Jan  9 2011 for kernel 2.6.32-27-generic (SMP).
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  rachel 1557 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf6afc000 irq 32'
 Mixer name : 'Conexant CX20583 (Pebble 56-LQFP)'
 Components : 'HDA:14f15067,10280401,00100302'
 Controls  : 15
 Simple ctrls  : 13
  Date: Wed Jan 19 18:49:02 2011
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.1)
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SelectedCard: 0 Intel HDA-Intel - HDA Intel
  SourcePackage: pulseaudio
  Symptom: audio
  Title: [Conexant CX20583 (Pebble 56-LQFP)] pactl stat failed to find default 
card
  dmi.bios.date: 09/01/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A03
  dmi.board.name: 063MN6
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd09/01/2010:svnDellInc.:pnVostro1014:pvr:rvnDellInc.:rn063MN6:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Vostro 1014
  dmi.sys.vendor: Dell Inc.

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

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


[Touch-packages] [Bug 727990] Re: Sound volume at start is not the same as the one shown on gnome volume control

2015-05-08 Thread dino99
That version is no more supported

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

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

Title:
  Sound volume at start is not the same as the one shown on gnome volume
  control

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  After a (re)boot, sound play at maximum volume (e.g. in Rythmbox).
  However, gnome volume control (as shown in the volume indicator or in
  gnome sound preferences) shows that the volume control is at about
  20%, where I left it before the reboot. As soon as I change the
  volume, e.g. with a key press, even only a bit, it correctly drops to
  the expected 20%.

  This bug has been reported in
  https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/491704 and
  https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/552042
  .

  The problem does not happen if I log out and log back in, only after a
  (re)boot.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: alsa-base 1.0.22.1+dfsg-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.32-29.58-generic-pae 2.6.32.28+drm33.13
  Uname: Linux 2.6.32-29-generic-pae i686
  NonfreeKernelModules: fglrx
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: HDA Generic [HDA Generic]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olivier1519 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xfe8f8000 irq 16'
     Mixer name : 'Realtek ID 892'
     Components : 'HDA:10ec0892,14627599,00100302'
     Controls  : 4
     Simple ctrls  : 3
  Card1.Amixer.info:
   Card hw:1 'Generic'/'HD-Audio Generic at 0xfebfc000 irq 19'
     Mixer name : 'ATI R6xx HDMI'
     Components : 'HDA:1002aa01,00aa0100,00100200'
     Controls  : 4
     Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'IEC958',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  Date: Wed Mar  2 20:24:56 2011
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SelectedCard: 0 SB HDA-Intel - HDA ATI SB
  SourcePackage: alsa-driver
  Symptom: audio
  Title: [Realtek ID 892] ALSA test tone not correctly played back
  dmi.bios.date: 08/27/2010
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: V25.0
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: 870U-G55 (MS-7599)
  dmi.board.vendor: MSI
  dmi.board.version: 5.0
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: MSI
  dmi.chassis.version: 5.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV25.0:bd08/27/2010:svnMSI:pnMS-7599:pvr5.0:rvnMSI:rn870U-G55(MS-7599):rvr5.0:cvnMSI:ct3:cvr5.0:
  dmi.product.name: MS-7599
  dmi.product.version: 5.0
  dmi.sys.vendor: MSI

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

-- 
Mailing list: https://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   >