[Bug 1398179] Re: package matlab-support 0.0.19 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2014-12-02 Thread Torsten Franz
We get the bugreport two times on launchpad. Please take the bug 1398181
to work with it.

** Changed in: matlab-support (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398179

Title:
  package matlab-support 0.0.19 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/matlab-support/+bug/1398179/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1378220] Re: rrule brocken when cache used by using _thread module in Python2

2014-12-02 Thread jarondl
** Changed in: dateutil
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1378220

Title:
  rrule brocken when cache used by using _thread module in Python2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1260016] Re: Add an API to allow defining custom URL scheme delegates

2014-12-02 Thread Dan Chapman
** Changed in: dekko
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1260016

Title:
  Add an API to allow defining custom URL scheme delegates

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1173728] Re: bash programmable completion not loaded by default

2014-12-02 Thread Peter Cordes
As discussed in bug 790043 (about the slowdown of loading completions),
the out-of-the-box configuration seems to be to load programmable
completions (progcomp) for login shells, but not for non-login shells
(e.g. bash in an xterm).

TL:DR summary:  ~/.bashrc should source
/etc/profile.d/bash_completion.sh

 This is mind-bogglingly silly, and would be confusing except that
desktop users pretty much never run a login shell ever.  Only with sudo
--login, probably, or if they happen to configure gnome-terminal to
start a login shell.  People logging in with ssh to an Ubuntu machine
will get progcomp in their login shell, but not in subshells they start
inside screen(1), for example.

 The out-of-the-box shipped /etc/profile is
trusty: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/base-files/trusty/view/head:/share/profile
vivid-proposed: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid/base-files/vivid-proposed/view/head:/share/profile

The out-of-the-box /etc/bash.bashrc is:
trusty-updates: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/bash/trusty-updates/view/head:/debian/etc.bash.bashrc
vivid-proposed:  
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid/bash/vivid-proposed/view/head:/debian/etc.bash.bashrc

The out-of-the-box /etc/skel/.bashrc is:
vivid-proposed: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid/base-files/vivid-proposed/view/head:/share/dot.bashrc


All this adds up to (in order of action for a login shell):
/etc/profile.d/bash_completion.sh : (from /etc/profile) source progcomp after 
checking it it's already loaded
~/.profile : nothing
-- Non-login shells start here
/etc/bash.bashrc : commented-out sourcing of progcomp (no check for already 
loaded)
~/.bashrc (from /etc/skel/.bashrc at adduser time): commented-out sourcing of 
progcomp (no check for already loaded)

In a login shell, /etc/profile sources /etc/bash.bashrc, and the default
~/.profile sources ~/.bashrc.  (In both cases, after checking that the
shell is bash).  So login shells get everything that non-login shells
do, plus whatever you put in profile to do once-per-login things, and/or
to set env vars (which are inherited by non-login shells, and so don't
need to be set again for every non-login shell.)


 My vote is to have ~/.bashrc source /etc/profile.d/bash_completion.sh 
(checking only that it exists, to not clutter up the user's file, because that 
file checks if bash_completion was already loaded.)

 There are mechanisms to check if bash_completion has already been
sourced, so we can avoid taking the speed-hit of doing it twice.  Any
system rc file should check first before sourcing, because having
bash_completion itself refuse to be re-sourced is problematic.  (what if
a user wants to do it manually?)

/etc/profile.d/bash_completion.sh (shipped by bash-completion) checks on
-z $BASH_COMPLETION_COMPAT_DIR, which the giant bash_completion script
defines (and makes readonly, meaning it can't ever be unset).  So I
guess BASH_COMPLETION_COMPAT_DIR is the canonical way to check if it's
already loaded.

 A better check might be  if ! complete -p paste  /dev/null; then
source it; fi, because upstream hopes to eventually get rid of
/etc/bash_completion.d.  But it will probably never happen.

 None of this helps if profile.d goes first, and then a user's ~/.bashrc
sources completions without checking, though.  That's why I vote for
modifying /etc/skel/.bashrc, rather than adding it by default to
/etc/bash.bashrc.  It can't result in extra sourcing of completions for
existing installs, because it's just the template for new accounts.

 Also, if /etc/bash.bash sources it, then admin users can't avoid the
performance hit of having it load.

 I think the default ~/.bashrc is a really obvious place to put the
default setting for a bash-specific shell feature that individual users
might want to config differently.

 It's also not going to change anything for people upgrading existing
installs that already work the way they like.  All we lose out on is
giving progcomp to people who didn't even know it existed, when they
upgrade.  Any way to do that has downsides that I think are worth
avoiding for the long term.  Except by writing a tool to check if the
users is missing out on progcomp for non-login shells, and ask them if
they want to enable it, and then tack lines on to their ~/.bashrc.  I
know do-release-upgrade runs helper scripts that help deal with changes,
would that be an appropriate place to put that kind of check?  Or should
it not be touching anything under /home?


** Also affects: base-files (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173728

Title:
  bash programmable completion not loaded by default

To manage notifications about this bug go to:

[Bug 1308723] Re: ubuntu-logo theme rendered incorrectly with recent grub, instead of full-screen purple, it's a purple frame around black rectangle

2014-12-02 Thread Timo Jyrinki
It's in the queue
(https://launchpad.net/ubuntu/trusty/+queue?queue_state=1queue_text=).
After it gets forward from there, this bug will be updated with
instructions on how to verify the fix.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1308723

Title:
  ubuntu-logo theme rendered incorrectly with recent grub, instead of
  full-screen purple, it's a purple frame around black rectangle

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1041790]

2014-12-02 Thread Chris Wilson
*** Bug 86925 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1041790

Title:
  [snb] GPU lockup  IPEHR: 0x0b160001 IPEHR: 0x0b140001, workaround
  i915.semaphores=0

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1041790/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1393698] Re: Cross qmake to the chroots

2014-12-02 Thread Launchpad Bug Tracker
** Branch linked: lp:~mvo/click/qt5-qmake-cross-armhf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1393698

Title:
  Cross qmake to the chroots

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398088] Re: ClientLibraryErrorsDeathTest is dumping core, causing spurious problem reports (like this one)

2014-12-02 Thread Daniel van Vugt
Yes, just catch SIGABRT in the test and/or drop it completely
[signal(SIGABRT, SIG_IGN)]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398088

Title:
  ClientLibraryErrorsDeathTest is dumping core, causing spurious problem
  reports (like this one)

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398333] [NEW] nvidia-331 331.89-0ubuntu5: nvidia-331 kernel module failed to build--received error message at first restart after attempted installation

2014-12-02 Thread Jim Hargrove
Public bug reported:

Installation of the Nvidia driver was attempted, apparently, by the
software updater.

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: nvidia-331 331.89-0ubuntu5
ProcVersionSignature: Ubuntu 3.16.0-25.33-generic 3.16.7
Uname: Linux 3.16.0-25-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
DKMSKernelVersion: 3.16.0-25-generic
Date: Mon Dec  1 18:59:34 2014
InstallationDate: Installed on 2014-04-14 (231 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta amd64 (20140326)
PackageVersion: 331.89-0ubuntu5
SourcePackage: nvidia-graphics-drivers-331
Title: nvidia-331 331.89-0ubuntu5: nvidia-331 kernel module failed to build
UpgradeStatus: Upgraded to utopic on 2014-10-25 (37 days ago)

** Affects: nvidia-graphics-drivers-331 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package utopic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398333

Title:
  nvidia-331 331.89-0ubuntu5: nvidia-331 kernel module failed to build--
  received error message at first restart after attempted installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1398333/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398333] Re: nvidia-331 331.89-0ubuntu5: nvidia-331 kernel module failed to build--received error message at first restart after attempted installation

2014-12-02 Thread Jim Hargrove
Dell XPS One 2710

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398333

Title:
  nvidia-331 331.89-0ubuntu5: nvidia-331 kernel module failed to build--
  received error message at first restart after attempted installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-331/+bug/1398333/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 347547] Re: Dotted borders of clicked links are wrongly positioned in RTL

2014-12-02 Thread Bug Watch Updater
** Changed in: gtkhtml3.14
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/347547

Title:
  Dotted borders of clicked links are wrongly positioned in RTL

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398334] [NEW] Software updater incon is displayed in the left hand menu when new updates are available but I can not click on it

2014-12-02 Thread Janno
Public bug reported:

I am not a 100% sure if this is a problem caused by the update-manager 
package or update-notifier  or unity.
If needed I can reproduce this the next time there are updates available and 
report it to some other package or enhance this report. I have also used cli 
for some years so let me know if I can do anything else.

I have also seen that there are several popular bug reports that look similar 
but I am going to go by the guideline that duplicate reports are not a bad 
thing and the developer knows better if it is a duplicate or not.
I have had this bug for a while.

I have checked and these are things that do not let me see the update manager 
window itself:
* Click
* Double click
* Alt+tab (I can see the icon in the list)
* I do not have second monitor attached. I have had it configured at some point 
in the past
* It is not on any of the other workspaces

I can also see the process in pstree output:
  |   |   |   |-update-manager,16121 /usr/bin/update-manager --no-update 
--no-focus-on-map
  |   |   |   |   |-{update-manager},16128
  |   |   |   |   `-{update-manager},16129

This might also be of interest:
$ xwininfo -name 'Software Updater'

xwininfo: Window id: 0x4e8 Software Updater

  Absolute upper-left X:  610
  Absolute upper-left Y:  302
  Relative upper-left X:  610
  Relative upper-left Y:  302
  Width: 444
  Height: 319
  Depth: 24
  Visual: 0x21
  Visual Class: TrueColor
  Border width: 0
  Class: InputOutput
  Colormap: 0x20 (installed)
  Bit Gravity State: NorthWestGravity
  Window Gravity State: NorthWestGravity
  Backing Store State: NotUseful
  Save Under State: no
  Map State: IsUnMapped
  Override Redirect State: no
  Corners:  +610+302  -546+302  -546-279  +610-279
  -geometry 444x319+610+302

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: update-manager 1:0.196.12
ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
Uname: Linux 3.13.0-40-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.5
Aptdaemon:

Architecture: amd64
CurrentDesktop: Unity
Date: Tue Dec  2 09:44:35 2014
DpkgHistoryLog.txt:

DpkgTerminalLog.txt:

ExecutablePath: /usr/bin/update-manager
GsettingsChanges:
 b'com.ubuntu.update-manager' b'show-details' b'true'
 b'com.ubuntu.update-manager' b'window-height' b'876'
 b'com.ubuntu.update-manager' b'first-run' b'false'
 b'com.ubuntu.update-manager' b'window-width' b'1535'
 b'com.ubuntu.update-manager' b'launch-time' b'1417510549'
InstallationDate: Installed on 2013-01-03 (698 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
InterpreterPath: /usr/bin/python3.4
PackageArchitecture: all
SourcePackage: update-manager
UpgradeStatus: Upgraded to trusty on 2014-08-07 (116 days ago)

Running `sudo apt-get update` does not solve the problem. I can also
open software centre and install software from cli.

I tried to start update-manager from cli without closeing anything but
this also does not help. It also doesn't give any output.

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


** Tags: amd64 apport-bug third-party-packages trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398334

Title:
  Software updater incon is displayed in the left hand menu when new
  updates are available but I can not click on it

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1398334] Re: Software updater incon is displayed in the left hand menu when new updates are available but I can not click on it

2014-12-02 Thread Janno
** Description changed:

  I am not a 100% sure if this is a problem caused by the update-manager 
package or update-notifier  or unity.
  If needed I can reproduce this the next time there are updates available and 
report it to some other package or enhance this report. I have also used cli 
for some years so let me know if I can do anything else.
  
  I have also seen that there are several popular bug reports that look 
similar but I am going to go by the guideline that duplicate reports are not a 
bad thing and the developer knows better if it is a duplicate or not.
  I have had this bug for a while.
  
  I have checked and these are things that do not let me see the update manager 
window itself:
  * Click
  * Double click
  * Alt+tab (I can see the icon in the list)
  * I do not have second monitor attached. I have had it configured at some 
point in the past
  * It is not on any of the other workspaces
  
  I can also see the process in pstree output:
-   |   |   |   |-update-manager,16121 /usr/bin/update-manager --no-update 
--no-focus-on-map
-   |   |   |   |   |-{update-manager},16128
-   |   |   |   |   `-{update-manager},16129
+   |   |   |   |-update-manager,16121 /usr/bin/update-manager --no-update 
--no-focus-on-map
+   |   |   |   |   |-{update-manager},16128
+   |   |   |   |   `-{update-manager},16129
  
  This might also be of interest:
  $ xwininfo -name 'Software Updater'
  
  xwininfo: Window id: 0x4e8 Software Updater
  
-   Absolute upper-left X:  610
-   Absolute upper-left Y:  302
-   Relative upper-left X:  610
-   Relative upper-left Y:  302
-   Width: 444
-   Height: 319
-   Depth: 24
-   Visual: 0x21
-   Visual Class: TrueColor
-   Border width: 0
-   Class: InputOutput
-   Colormap: 0x20 (installed)
-   Bit Gravity State: NorthWestGravity
-   Window Gravity State: NorthWestGravity
-   Backing Store State: NotUseful
-   Save Under State: no
-   Map State: IsUnMapped
-   Override Redirect State: no
-   Corners:  +610+302  -546+302  -546-279  +610-279
-   -geometry 444x319+610+302
+   Absolute upper-left X:  610
+   Absolute upper-left Y:  302
+   Relative upper-left X:  610
+   Relative upper-left Y:  302
+   Width: 444
+   Height: 319
+   Depth: 24
+   Visual: 0x21
+   Visual Class: TrueColor
+   Border width: 0
+   Class: InputOutput
+   Colormap: 0x20 (installed)
+   Bit Gravity State: NorthWestGravity
+   Window Gravity State: NorthWestGravity
+   Backing Store State: NotUseful
+   Save Under State: no
+   Map State: IsUnMapped
+   Override Redirect State: no
+   Corners:  +610+302  -546+302  -546-279  +610-279
+   -geometry 444x319+610+302
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: update-manager 1:0.196.12
  ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
  Uname: Linux 3.13.0-40-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Aptdaemon:
-  
+ 
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec  2 09:44:35 2014
  DpkgHistoryLog.txt:
-  
+ 
  DpkgTerminalLog.txt:
-  
+ 
  ExecutablePath: /usr/bin/update-manager
  GsettingsChanges:
-  b'com.ubuntu.update-manager' b'show-details' b'true'
-  b'com.ubuntu.update-manager' b'window-height' b'876'
-  b'com.ubuntu.update-manager' b'first-run' b'false'
-  b'com.ubuntu.update-manager' b'window-width' b'1535'
-  b'com.ubuntu.update-manager' b'launch-time' b'1417510549'
+  b'com.ubuntu.update-manager' b'show-details' b'true'
+  b'com.ubuntu.update-manager' b'window-height' b'876'
+  b'com.ubuntu.update-manager' b'first-run' b'false'
+  b'com.ubuntu.update-manager' b'window-width' b'1535'
+  b'com.ubuntu.update-manager' b'launch-time' b'1417510549'
  InstallationDate: Installed on 2013-01-03 (698 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
  InterpreterPath: /usr/bin/python3.4
  PackageArchitecture: all
  SourcePackage: update-manager
  UpgradeStatus: Upgraded to trusty on 2014-08-07 (116 days ago)
+ 
+ Running `sudo apt-get update` does not solve the problem. I can also
+ open software centre and install software from cli.
+ 
+ I tried to start update-manager from cli without closeing anything but
+ this also does not help. It also doesn't give any output.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398334

Title:
  Software updater incon is displayed in the left hand menu when new
  updates are available but I can not click on it

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 940124] Re: Remmina numlock bug -regression

2014-12-02 Thread Thomas Kregelin
*** This bug is a duplicate of bug 478245 ***
https://bugs.launchpad.net/bugs/478245

I also have the same issue on trusty/remmina 0.9.99.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940124

Title:
  Remmina numlock bug -regression

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 790043] Re: Bash-completion slows up the start of bash

2014-12-02 Thread Peter Cordes
So to be clear, the changes I'm suggesting are:

* /etc/skel/.bashrc (pkg=base-files) change the progcomp check to an 
un-commented
# enable programmable completion
[[ -e /etc/profile.d/bash_completion.sh ]]  . 
/etc/profile.d/bash_completion.sh

* /etc/bash.bashrc (pkg=bash): remove the progcomp commented-out section, maybe 
replace with a comment like:
# enable programmable completion with this line, here or (default) in ~/.bashrc
# [[ -e /etc/profile.d/bash_completion.sh ]]  . 
/etc/profile.d/bash_completion.sh

Root's /root/.bashrc doesn't come into play on an ubuntu system,
normally.  Even if you use sudo -s, HOME doesn't change, so you still
get your own ~/.bashrc

If you're mucking around with testing corner cases, put
echo bash_completion callstack: ${BASH_SOURCE[*]}
 in /usr/share/bash-completion/bash_completion to get output like
bash_completion callstack: /usr/share/bash-completion/bash_completion 
/etc/profile.d/bash_completion.sh /home/peter/.bashrc

 Or drop that line into /etc/bash_completion.d/trace, if you don't want
to modify a non-conffile.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/790043

Title:
  Bash-completion slows up the start of bash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/790043/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 790043] Re: Bash-completion slows up the start of bash

2014-12-02 Thread Peter Cordes
crap, wrong bug, meant to post that last on bug 1173728

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/790043

Title:
  Bash-completion slows up the start of bash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/790043/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1173728] Re: bash programmable completion not loaded by default

2014-12-02 Thread Peter Cordes
So to be clear, the changes I'm suggesting are:

* /etc/skel/.bashrc (pkg=base-files) change the progcomp check to an 
un-commented
# enable programmable completion
[[ -e /etc/profile.d/bash_completion.sh ]]  . 
/etc/profile.d/bash_completion.sh

* /etc/bash.bashrc (pkg=bash): remove the progcomp commented-out section, maybe 
replace with a comment like:
# enable programmable completion with this line, here or (default) in ~/.bashrc
# [[ -e /etc/profile.d/bash_completion.sh ]]  . 
/etc/profile.d/bash_completion.sh

Root's /root/.bashrc doesn't come into play on an ubuntu system,
normally. Even if you use sudo -s, HOME doesn't change, so you still get
your own ~/.bashrc

If you're mucking around with testing corner cases, put
echo bash_completion callstack: ${BASH_SOURCE[*]}
 in /usr/share/bash-completion/bash_completion to get output like
bash_completion callstack: /usr/share/bash-completion/bash_completion 
/etc/profile.d/bash_completion.sh /home/peter/.bashrc

 Or drop that line into /etc/bash_completion.d/trace, if you don't want
to modify a non-conffile.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1173728

Title:
  bash programmable completion not loaded by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/base-files/+bug/1173728/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1297334] Re: Text on music is sometimes unreadable.

2014-12-02 Thread Michael Zanetti
The overlay is much darker now. Marking as fixed.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1297334

Title:
  Text on music is sometimes unreadable.

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1226526] Re: First words ever seen on new phone are Right edge

2014-12-02 Thread Michael Zanetti
** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

** Changed in: unity8 (Ubuntu)
   Status: Triaged = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1226526

Title:
  First words ever seen on new phone are Right edge

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398334] Re: Software updater incon is displayed in the left hand menu when new updates are available but I can not click on it

2014-12-02 Thread Janno
** Description changed:

  I am not a 100% sure if this is a problem caused by the update-manager 
package or update-notifier  or unity.
  If needed I can reproduce this the next time there are updates available and 
report it to some other package or enhance this report. I have also used cli 
for some years so let me know if I can do anything else.
  
  I have also seen that there are several popular bug reports that look 
similar but I am going to go by the guideline that duplicate reports are not a 
bad thing and the developer knows better if it is a duplicate or not.
  I have had this bug for a while.
  
  I have checked and these are things that do not let me see the update manager 
window itself:
  * Click
  * Double click
  * Alt+tab (I can see the icon in the list)
  * I do not have second monitor attached. I have had it configured at some 
point in the past
  * It is not on any of the other workspaces
  
  I can also see the process in pstree output:
    |   |   |   |-update-manager,16121 /usr/bin/update-manager --no-update 
--no-focus-on-map
    |   |   |   |   |-{update-manager},16128
    |   |   |   |   `-{update-manager},16129
  
  This might also be of interest:
  $ xwininfo -name 'Software Updater'
  
  xwininfo: Window id: 0x4e8 Software Updater
  
    Absolute upper-left X:  610
    Absolute upper-left Y:  302
    Relative upper-left X:  610
    Relative upper-left Y:  302
    Width: 444
    Height: 319
    Depth: 24
    Visual: 0x21
    Visual Class: TrueColor
    Border width: 0
    Class: InputOutput
    Colormap: 0x20 (installed)
    Bit Gravity State: NorthWestGravity
    Window Gravity State: NorthWestGravity
    Backing Store State: NotUseful
    Save Under State: no
    Map State: IsUnMapped
    Override Redirect State: no
    Corners:  +610+302  -546+302  -546-279  +610-279
    -geometry 444x319+610+302
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: update-manager 1:0.196.12
  ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
  Uname: Linux 3.13.0-40-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Aptdaemon:
  
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Dec  2 09:44:35 2014
  DpkgHistoryLog.txt:
  
  DpkgTerminalLog.txt:
  
  ExecutablePath: /usr/bin/update-manager
  GsettingsChanges:
   b'com.ubuntu.update-manager' b'show-details' b'true'
   b'com.ubuntu.update-manager' b'window-height' b'876'
   b'com.ubuntu.update-manager' b'first-run' b'false'
   b'com.ubuntu.update-manager' b'window-width' b'1535'
   b'com.ubuntu.update-manager' b'launch-time' b'1417510549'
  InstallationDate: Installed on 2013-01-03 (698 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
  InterpreterPath: /usr/bin/python3.4
  PackageArchitecture: all
  SourcePackage: update-manager
  UpgradeStatus: Upgraded to trusty on 2014-08-07 (116 days ago)
  
  Running `sudo apt-get update` does not solve the problem. I can also
  open software centre and install software from cli.
  
  I tried to start update-manager from cli without closeing anything but
  this also does not help. It also doesn't give any output.
+ 
+ Locking and unlocking to launcher did not do anything.
+ 
+ I can choose Install all available updates from the right-click menu and
+ this works. Process called update-apt-xapi is stared and updates are
+ installed. Also the package manager is locked for that time. (can not
+ update package index at the same time).
+ 
+ Quit option from the right click menu works. After quitting I can start
+ the update-manager from cli and now it is fully functional.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398334

Title:
  Software updater incon is displayed in the left hand menu when new
  updates are available but I can not click on it

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1398046] Re: [webapp-container] regression: dialogs aren't displayed

2014-12-02 Thread Olivier Tilloy
** Also affects: webbrowser-app (Ubuntu)
   Importance: Undecided
   Status: New

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398046

Title:
  [webapp-container] regression: dialogs aren't displayed

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1257802] Re: App preview does not show price

2014-12-02 Thread Michael Zanetti
** Package changed: unity8 (Ubuntu) = unity-scope-click

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1257802

Title:
  App preview does not show price

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1397979] Re: UITK fails to build with Qt 5.4.0: launcher.cpp:70:5: error: 'setGlobalShareContext' is not a member of 'QOpenGLContextPrivate'

2014-12-02 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-sdk-team/ubuntu-ui-
toolkit/newOpenGlPrivates

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1397979

Title:
  UITK fails to build with Qt 5.4.0: launcher.cpp:70:5: error:
  'setGlobalShareContext' is not a member of 'QOpenGLContextPrivate'

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1306237] Re: Ubuntu 14.04 final beta - files disappearing

2014-12-02 Thread Ivanna
I have the same problem.

I thought that only the files on /home/ivanna/Descargas dissapear.
So I created a new folder /home/ivanna/DESCARGAS.
And the files dessapear too!!
Only the files,  folders do not disappear

I only reboot my pc where the updates ask me to. My Pc is on all the
time.

My HDD is fine!!

Help!!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1306237

Title:
  Ubuntu 14.04 final beta - files disappearing

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1378220] Re: rrule brocken when cache used by using _thread module in Python2

2014-12-02 Thread SteffenOschatz
Thanks! Works for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1378220

Title:
  rrule brocken when cache used by using _thread module in Python2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1220146] Re: Ralink Mediatek 14c3:7630 wi-fi card isn't supported out of the box

2014-12-02 Thread exzR
i'm using tobias-bora code and i don't have 100% cpu load (used in two
scenarios, wpa2 classic and wap2 enterprise with leap). for hard block i
used this code:

sudo nano /etc/modprobe.d/asus_nb_wmi.conf

and then write:

options asus_nb_wmi wapf=4


i know if there are any other way to unblock wlan0 (rfkill doesn't work)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1220146

Title:
  Ralink Mediatek 14c3:7630 wi-fi card isn't supported out of the box

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1220146/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1394424] Re: [Compaq Presario V6613TU Notebook PC] Xorg crash

2014-12-02 Thread m
I'm downloading it now and will get back to you. I've tried the same
steps three times in Chrome and the GPU always hangs. I've done it twice
in Firefox now without any problems. There are also no problems in
Chrome on Arch Linux.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1394424

Title:
  [Compaq Presario V6613TU Notebook PC] Xorg crash

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Re: Mouse clicks not detected in JAVA after touching eGalax touchscreen

2014-12-02 Thread Nyyr
apport information

** Tags added: apport-collected precise

** Description changed:

  We have all-in-one PC terminal with touchscreen with Ubuntu 10.10 and
  JAVA application on Oracle JAVA JRE with some buttons. Working fine.
  
  After I did a minimal clean install from Ubuntu Server 12.04 CD (just with 
fluxbox WM) and Oracle JAVA JRE I run the JAVA application via javaws. I can 
click the buttons in the JAVA application using mouse, but when I try the same 
with touchscreen, the mouse pointer moves to the place I touched but the button 
is not pressed. After that when trying to use the mouse again even the mouse 
clicks are not detected !!!
  At first I thought it is the application problem but the same applies to the 
javaws laucher windows as well.
  
  Configuration of X11 in both versions of Ubuntu seems to be the same (no
  xorg.conf, just calibration.conf), no other adjustments.
  
  Touchscreen in Fluxbox is working fine in both versions. Since the JAVA
  version is the same in both versions of Ubuntu it cannot be problem of
  JAVA.
  
- To me it seems that in Ubuntu 12.04 the touchscreen/mouse events are
- passed to the JAVA VM differently than in Ubuntu 10.10.
+ To me it seems that in Ubuntu 12.04 the touchscreen/mouse events are passed 
to the JAVA VM differently than in Ubuntu 10.10.
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 
k3.13.0-40-generic.
+ AplayDevices: Error: [Errno 2] No such file or directory
+ ApportVersion: 2.0.1-0ubuntu17.8
+ Architecture: i386
+ ArecordDevices: Error: [Errno 2] No such file or directory
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', 
'/dev/snd/pcmC0D1c', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D3c', 
'/dev/snd/pcmC0D4p', '/dev/snd/seq', '/dev/snd/timer'] failed with exit code 1:
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info: Error: [Errno 2] No such file or directory
+ Card0.Amixer.values: Error: [Errno 2] No such file or directory
+ CurrentDmesg: [  630.974265] perf samples too long (5026  5000), lowering 
kernel.perf_event_max_sample_rate to 25000
+ DistroRelease: Ubuntu 12.04
+ HibernationDevice: RESUME=UUID=6d3a7fc5-93df-46a4-9dd2-4aa18bb16551
+ InstallationMedia: Ubuntu-Server 12.04.4 LTS Precise Pangolin - Release 
i386 (20140204)
+ IwConfig:
+  lono wireless extensions.
+  
+  eth0  no wireless extensions.
+  
+  eth1  no wireless extensions.
+ MachineType: PhoenixAward 945GSE
+ MarkForUpload: True
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=cs_CZ.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-40-generic 
root=/dev/mapper/hostname--vg-root ro
+ ProcVersionSignature: Ubuntu 3.13.0-40.69~precise1-generic 3.13.11.10
+ RelatedPackageVersions:
+  linux-restricted-modules-3.13.0-40-generic N/A
+  linux-backports-modules-3.13.0-40-generic  N/A
+  linux-firmware 1.79.18
+ RfKill: Error: [Errno 2] No such file or directory
+ Tags:  precise
+ Uname: Linux 3.13.0-40-generic i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups:
+  
+ dmi.bios.date: 07/01/2009
+ dmi.bios.vendor: Phoenix Technologies, LTD
+ dmi.bios.version: 6.00 PG
+ dmi.board.name: 945GSE
+ dmi.board.vendor: PhoenixAward
+ dmi.board.version: 6.0
+ dmi.chassis.type: 3
+ dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd07/01/2009:svnPhoenixAward:pn945GSE:pvr6.0:rvnPhoenixAward:rn945GSE:rvr6.0:cvn:ct3:cvr:
+ dmi.product.name: 945GSE
+ dmi.product.version: 6.0
+ dmi.sys.vendor: PhoenixAward

** Attachment added: AcpiTables.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272751/+files/AcpiTables.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] AlsaDevices.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: AlsaDevices.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272752/+files/AlsaDevices.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1387011] Re: llvm cmake files incorrectly generated

2014-12-02 Thread Pim Vullers
I can confirm this issue. Working around bug #1365432 results in this
issue. Please include this fix when updating the llvm package.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1387011

Title:
  llvm cmake files incorrectly generated

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Card0.Codecs.codec97.0.ac97.0.0.regs.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.regs.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272755/+files/Card0.Codecs.codec97.0.ac97.0.0.regs.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] ProcModules.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272761/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] PciMultimedia.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: PciMultimedia.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272758/+files/PciMultimedia.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] WifiSyslog.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272764/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] BootDmesg.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272753/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] UdevLog.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272763/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] ProcCpuinfo.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272759/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Lspci.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1206880/+attachment/4272756/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] ProcInterrupts.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272760/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Card0.Codecs.codec97.0.ac97.0.0.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.txt
   
https://bugs.launchpad.net/bugs/1206880/+attachment/4272754/+files/Card0.Codecs.codec97.0.ac97.0.0.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 869166] Re: Libpam-ccreds does not properly initiate libgcrypt

2014-12-02 Thread Bug Watch Updater
** Changed in: libpam-ccreds (Debian)
   Status: Unknown = New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/869166

Title:
  Libpam-ccreds does not properly initiate libgcrypt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpam-ccreds/+bug/869166/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] UdevDb.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1206880/+attachment/4272762/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Lsusb.txt

2014-12-02 Thread Nyyr
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1206880/+attachment/4272757/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1398021] Re: Impossible to set the timezone without network access

2014-12-02 Thread David Barth
To reproduce (on N4/vivid #29 for me)

2. Go to USSTimezone
3. Click on timezone
4. Type 'paris'
5. You will see a few entries mentioning Paris
6. Select one of those, which then turns red

What should happen: the TZ is set according to the selected location and
the screen goes back to USSTimezone, with the right timezone
What happens: the entry stays red, but the screen doesn't go back to the
main Timezone page, and if I page back, the timezone is not set to the
value I had selected.

While trying to reproduce, I have that behavior even without network access
off. Ie, with network the behavior is the same.

I don't see anything in the USS logs.



On Mon, Dec 1, 2014 at 5:36 PM, Sebastien Bacher seb...@ubuntu.com wrote:

 Thank you for your bug report, I can't confirm the issue (testing on
 krillin/rtm but settings didn't change), some comments/questions
 - that panel doesn't use the gps/doesn't have special list entries,
 where do you see that entry you mentioned?
 - what do you do exactly in the panel? do you type paris? what item do
 you select? what happens when you select it?
 - the panel doesn't need/use datas, so that shouldn't make a difference,
 do you see a different behaviour if you are online?

 ** Changed in: ubuntu-system-settings (Ubuntu)
Importance: Undecided = Low

 ** Changed in: ubuntu-system-settings (Ubuntu)
Status: New = Incomplete

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

 Title:
   Impossible to set the timezone without network access

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1398021/+subscriptions


-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398021

Title:
  Impossible to set the timezone without network access

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1398021/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1061001] Re: Shutter only shows Wallpaper / black screen in Ubuntu 12.10 (with fglrx)

2014-12-02 Thread Bogdan Mustiata
Also happens on Ubuntu 14.04, under Virtual Box, with 3D acceleration
enabled.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1061001

Title:
  Shutter only shows Wallpaper / black screen in Ubuntu 12.10 (with
  fglrx)

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398346] Re: package ppp 2.4.5-5.1ubuntu2.1 failed to install/upgrade: package ppp is already installed and configured

2014-12-02 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398346

Title:
  package ppp 2.4.5-5.1ubuntu2.1 failed to install/upgrade: package ppp
  is already installed and configured

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398346] [NEW] package ppp 2.4.5-5.1ubuntu2.1 failed to install/upgrade: package ppp is already installed and configured

2014-12-02 Thread Milenix Loerdi
Public bug reported:

The pack failed to upgrade.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: ppp 2.4.5-5.1ubuntu2.1
ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
Uname: Linux 3.13.0-40-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.5
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: i386
Date: Tue Dec  2 10:37:18 2014
DuplicateSignature: package:ppp:2.4.5-5.1ubuntu2.1:package ppp is already 
installed and configured
ErrorMessage: package ppp is already installed and configured
InstallationDate: Installed on 2014-08-20 (103 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release i386 (20140722.2)
SourcePackage: dpkg
Title: package ppp 2.4.5-5.1ubuntu2.1 failed to install/upgrade: package ppp is 
already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed apport-package i386 trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398346

Title:
  package ppp 2.4.5-5.1ubuntu2.1 failed to install/upgrade: package ppp
  is already installed and configured

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1206880] Re: Mouse clicks not detected in JAVA after touching eGalax touchscreen

2014-12-02 Thread Nyyr
OK, did a clean install again, then

apt-get update
apt-get dist-upgrade
apt-get install xorg
apt-get install fluxbox
apt-get install nodm
apt-get install ttf-mscorefonts*
apt-get install librxtx-java
apt-get install mc
apt-get install firefox

and installed latest HWE.

Unpacked JDK 6 update 45 and launched the application. A JAVA security
window appeared on which I was able to click on Always trust content
from this publisher checkbox, but Run and Cancel buttons did not
work when trying to click on them, as I described in the first post.

After that I sent the info above by apport-collect.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1206880

Title:
  Mouse clicks not detected in JAVA after touching eGalax touchscreen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396716] Re: New Windows Launched From Desktop Don't Receive Focus

2014-12-02 Thread Thaddäus Tintenfisch
Did you add the Web Browser or Firefox Web Browser launcher to your
desktop? Do both app launchers trigger the problem?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396716

Title:
  New Windows Launched From Desktop Don't Receive Focus

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1342175] Re: [upstream] Poor performance with find replace with empty value on large data set

2014-12-02 Thread Björn Michaelsen
** Description changed:

  [SRU justification]
  
  [Impact]
  
  Hang or Very slow performance after replaceall or searchall massive data
  
  Regression in Find and Replace with LO Calc 4.2 (last worked in 4.1).
  It now takes a long time to Find and Replace if the to be replaced is
  to nothing.
  
  See comment #5/#6 of upstream for reproducer.
  See commend #8 for bibisect.
  
  [Test Case]
  
  fill A column to 0
- select A column 
+ select A column
  
  Replace All 0 to   ( null space )
  
  [Regression Potential]
+ restricted, relevant patches are currently:
+ - upstream master
+ - all upstream 4.4.0 alpha/beta builds
+ - upstream 4-4 branch
+ - backported (by me) to upstream 4-3 branch
+   = thus also included in upstream 4.3.5~rc1 released on November, 27th
+   = thus will also be released by upstream 4.3.5 on ~December, 18th
+ - backported to 4.3.4/utopic package (downstream, Ubuntu only)
+ - backported to 4.2.7/trusty package (downstream, Ubuntu only)
+ - included in all current 4.3.x and 4.2.x backports in the LibreOffice PPAs
+ - included in all the 4.4~beta1 builds on the LibreOffice prereleases PPA
+ 
  
  [Other Info]
  upstream patch
  
  
http://cgit.freedesktop.org/libreoffice/core/commit/?id=1cf19ea84794ca065749667b480dfed2d27d47b7
  
http://cgit.freedesktop.org/libreoffice/core/commit/?id=1e721077b43de84edab2a3ed2f316ddcbec6e3ec
  
http://cgit.freedesktop.org/libreoffice/core/commit/?id=91502a72c12c559442e8bf77c27a516b49c2a68d

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1342175

Title:
  [upstream] Poor performance with find  replace with empty value on
  large data set

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1342175/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396470] Re: please enable CONFIG_VIRTIO_MMIO on armmp

2014-12-02 Thread Paolo Pisati
can you try one of these kernels and report if it solves the problem for
you?

http://people.canonical.com/~ppisati/lp1396470/

thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396470

Title:
  please enable CONFIG_VIRTIO_MMIO on armmp

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313935] Re: tenant is required for quota-update but not for quota-show

2014-12-02 Thread Kanchan Gupta
** Changed in: nova
 Assignee: (unassigned) = Kanchan Gupta (kanchan-gupta1)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313935

Title:
  tenant is required for quota-update but not for quota-show

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1239268] Re: package zentyal-core 2.3.21+quantal1 failed to install/ugrade: subprocess insptalled post-installation script returned error exit status 2

2014-12-02 Thread JACKSON SILVA
Good Mornig!

installation problem;  zentyal-core

ATT
JACKSON ISLVA

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1239268

Title:
  package zentyal-core 2.3.21+quantal1 failed to install/ugrade:
  subprocess insptalled post-installation script returned error exit
  status 2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1330410] Re: All keyboard types in Keyboard layout are not localized during installation

2014-12-02 Thread Dimitri John Ledkov
Heya,

On 1 December 2014 at 04:23, Anthony Wong anthony.w...@ubuntu.com wrote:
 xnox, the problem is the translation of keyboard model names, not
 debconf templates.

 I checked by extracting the debian package with ar and then untar
 control.tar.gz.

 These are snippets of diff'ing the config files of trusty and utopic
 packages:


I see. Can you please check the
https://launchpad.net/ubuntu/+source/console-setup/1.70ubuntu10 build?

They should be translated now at the package .deb / .udeb level now.


 -zh_CN*model*acer_c300*宏碁 C300
 -zh_CN*model*acer_ferrari4k*宏碁法拉利 4000
 -zh_CN*model*acer_laptop*宏碁笔记本电脑
 +zh_CN*model*acer_c300*Acer C300
 +zh_CN*model*acer_ferrari4k*Acer Ferrari 4000
 +zh_CN*model*acer_laptop*Acer Laptop

 -zh_CN*layout*af*阿富汗
 -zh_CN*layout*al*阿尔巴尼亚
 -zh_CN*layout*am*亚美尼亚语
 -zh_CN*layout*ara*阿拉伯语
 -zh_CN*layout*at*德语(奥地利)
 -zh_CN*layout*az*阿塞拜疆语
 -zh_CN*layout*ba*波斯尼亚语
 +zh_CN*layout*af*Afghani
 +zh_CN*layout*al*Albanian
 +zh_CN*layout*am*Armenian
 +zh_CN*layout*ara*Arabic

 -zh_CN*variant*be**比利时语
 +zh_CN*variant*be**Belgian

 --
 You received this bug notification because you are a member of Ubuntu
 Installer Team, which is subscribed to console-setup in Ubuntu.
 https://bugs.launchpad.net/bugs/1330410

 Title:
   All keyboard types in Keyboard layout are not localized during
   installation

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


-- 
Regards,

Dimitri.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1330410

Title:
  All keyboard types in Keyboard layout are not localized during
  installation

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1297012] Re: hyper-v: Manual partitioning formats /boot with ext2 file-system

2014-12-02 Thread Dimitri John Ledkov
@decui I've pinged kernel people about those patches, if/when they make
into normal release they will also make it into trusty point release via
hwe kernels. Thus ext2 freezing will be possible at some point in
trusty. I'm awaiting further comments from them.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1297012

Title:
  hyper-v: Manual partitioning formats /boot with ext2 file-system

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto/+bug/1297012/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1376818] Re: Change Desktop Background hangs, making System Settings (unity-control-center) inoperable

2014-12-02 Thread Gunnar Hjalmarsson
Re-opening, since the question was answered properly.

** Changed in: unity-control-center (Ubuntu)
   Status: Expired = New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1376818

Title:
  Change Desktop Background hangs, making System Settings (unity-
  control-center) inoperable

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1391200] Re: share ui not translated due to ubuntu-ui-toolkit-extras not configured for translations

2014-12-02 Thread Sebastien Bacher
That's a trivial fix, can we get it on the ww50 list?

** Summary changed:

- Not configured for translations
+ share ui not translated due to ubuntu-ui-toolkit-extras not configured for 
translations

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1391200

Title:
  share ui not translated due to ubuntu-ui-toolkit-extras not configured
  for translations

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398355] [NEW] Nautilus crash when remount smb share previously dismounted

2014-12-02 Thread Seby Carta
Public bug reported:

I  saved an smb://myserver/myshare on a bookmark.

Step to reproduce the bug:

1) I go to my bookmark, and the share is mounted.
2) After my work, i dismount the share ( clicking on up-arrow, aside my share) 
, the resource selected will go to my home
3) I click other time on my bookmark to remount the share
4) Nautilus crash!

Expected: re-mount the samba share.


Description:Ubuntu 14.04.1 LTS AMD64
Release:14.04

nautilus:
  Installato: 1:3.10.1-0ubuntu9.4
  Candidato:  1:3.10.1-0ubuntu9.4
  Tabella versione:
 *** 1:3.10.1-0ubuntu9.4 0
500 http://it.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 1:3.10.1-0ubuntu8 0
500 http://it.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398355

Title:
  Nautilus crash when remount smb share previously dismounted

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1386170] Re: Libreoffice startup center shorcut broken

2014-12-02 Thread Björn Michaelsen
@Dariusz: Any feedback?

** Description changed:

- This seems to be related with
- https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1200277  that
- was already fixed, but the libreoffice startup center shortcut remains
- broken. You can fix it by adding execution rights to
- /usr/lib/libreoffice/share/xdg/startcenter.desktop.
+ [SRU justification]
+ 
+ [Impact]
+ Directly impacts visibility/discoverability of LibreOffice
+ 
+ [Test Case]
+ 
+ [Regression Potential]
+ restricted, relevant patches are currently:
+ - on all the 1:4.3.4-0ubuntu1~${distrel}1 packages in the libreoffice PPA 
(vivid, utopic, trusty, precise): 
https://launchpad.net/~libreoffice/+archive/ubuntu/ppa/+packages
+ - same for the 4.3 PPA at 
https://launchpad.net/~libreoffice/+archive/ubuntu/libreoffice-4-3/+packages
+ - no regressions reported
+ 
+ [Other Info]
+ This seems to be related with 
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1200277  that was 
already fixed, but the libreoffice startup center shortcut remains broken. You 
can fix it by adding execution rights to 
/usr/lib/libreoffice/share/xdg/startcenter.desktop.
  
  Please include the fix in
  https://launchpad.net/~libreoffice/+archive/ppa for Precise 12.04.
  
  This was reproduced under Libreoffice 4.3 for Precise using this ppa
  https://launchpad.net/~libreoffice/+archive/ppa
  
  Thanks in advance

** Description changed:

  [SRU justification]
  
  [Impact]
  Directly impacts visibility/discoverability of LibreOffice
  
  [Test Case]
+ /usr/lib/libreoffice/share/xdg/startcenter.desktop should not be a symlink 
(see comment 4)
  
  [Regression Potential]
  restricted, relevant patches are currently:
  - on all the 1:4.3.4-0ubuntu1~${distrel}1 packages in the libreoffice PPA 
(vivid, utopic, trusty, precise): 
https://launchpad.net/~libreoffice/+archive/ubuntu/ppa/+packages
  - same for the 4.3 PPA at 
https://launchpad.net/~libreoffice/+archive/ubuntu/libreoffice-4-3/+packages
  - no regressions reported
  
  [Other Info]
- This seems to be related with 
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1200277  that was 
already fixed, but the libreoffice startup center shortcut remains broken. You 
can fix it by adding execution rights to 
/usr/lib/libreoffice/share/xdg/startcenter.desktop.
+ This seems to be related with 
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1200277  that was 
already fixed, but the libreoffice startup center shortcut remains broken. You 
can fix it making /usr/lib/libreoffice/share/xdg/startcenter.desktop a file, 
not a symlink (see comment 4).
  
  Please include the fix in
  https://launchpad.net/~libreoffice/+archive/ppa for Precise 12.04.
  
  This was reproduced under Libreoffice 4.3 for Precise using this ppa
  https://launchpad.net/~libreoffice/+archive/ppa
  
  Thanks in advance

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1386170

Title:
  Libreoffice startup center shorcut broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1389708] Re: Replying to sms from messaging menu ask to pick a SIM even if there is only one

2014-12-02 Thread Sebastien Bacher
That's quite a visible bug if you have one SIM and the fix is easy,
could we get that on the ww50 list?

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1389708

Title:
  Replying to sms from messaging menu ask to pick a SIM even if there is
  only one

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1389234] Re: Message actions not translated (Reply, Call back)

2014-12-02 Thread Sebastien Bacher
That's quite a visible untranslated UI, can we get it on the ww50 list?

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1389234

Title:
  Message actions not translated (Reply, Call back)

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398356] [NEW] package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2014-12-02 Thread stan hilliar
Public bug reported:

Hi,

I can't update my machine ubuntu14.04
It keeps giving me the same error.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: xymon-client 4.3.7-1ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
Uname: Linux 3.13.0-39-generic i686
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: i386
Date: Tue Dec  2 12:19:17 2014
DpkgHistoryLog:
 Start-Date: 2014-12-02  12:18:47
 Commandline: aptdaemon role='role-commit-packages' sender=':1.85'
 Install: liboxideqtquick0:i386 (1.3.4-0ubuntu0.14.04.1)
 Upgrade: liboxideqt-qmlplugin:i386 (1.2.5-0ubuntu0.14.04.1, 
1.3.4-0ubuntu0.14.04.1), oxideqt-codecs:i386 (1.2.5-0ubuntu0.14.04.1, 
1.3.4-0ubuntu0.14.04.1), liboxideqtcore0:i386 (1.2.5-0ubuntu0.14.04.1, 
1.3.4-0ubuntu0.14.04.1)
DuplicateSignature: package:xymon-client:4.3.7-1ubuntu2:subprocess installed 
post-installation script returned error exit status 127
ErrorMessage: subprocess installed post-installation script returned error exit 
status 127
InstallationDate: Installed on 2011-07-11 (1239 days ago)
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: xymon
Title: package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 127
UpgradeStatus: Upgraded to trusty on 2014-09-01 (91 days ago)

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


** Tags: apport-package i386 trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398356

Title:
  package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398356] Re: package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2014-12-02 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398356

Title:
  package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398360] [NEW] fadecut interrupts by using sox

2014-12-02 Thread wando
Public bug reported:

connecting to a stream like: http://176.31.246.143:8300 which sometimes sends 
advertising with an artist named -- AUTOPROMO - Newsletter.mp3 causes a sox 
failure. in the fadecut script, the sox command interprets the artist as an 
option:
sox -V1 -- AUTOPROMO ...
and then you get a: sox FAIL sox: invalid option
i think you must add quotes to the artist like -- AUTOPROMO ... or '-- 
AUTOPROMO ...' in the fadecut script to make this work. So, artists who starts 
with -- something will cause an error ...

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398360

Title:
  fadecut interrupts by using sox

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1395012] Re: UITK ExpandablesColumn::test_expandedItem() unit test fails with Qt 5.4

2014-12-02 Thread Timo Jyrinki
Also with 5.4 RC: https://launchpadlibrarian.net/191671472
/buildlog_ubuntu-vivid-amd64.ubuntu-ui-
toolkit_1.1.1347%2B15.04.20141126-0ubuntu2~rc~test3_UPLOADING.txt.gz

** Summary changed:

- UITK ExpandablesColumn::test_expandedItem() unit test fails with Qt 5.4 beta
+ UITK ExpandablesColumn::test_expandedItem() unit test fails with Qt 5.4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1395012

Title:
  UITK ExpandablesColumn::test_expandedItem() unit test fails with Qt
  5.4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1395014] Re: UITK two FocusingTests unit tests fail with Qt 5.4

2014-12-02 Thread Timo Jyrinki
Also with 5.4 RC: https://launchpadlibrarian.net/191671472
/buildlog_ubuntu-vivid-amd64.ubuntu-ui-
toolkit_1.1.1347%2B15.04.20141126-0ubuntu2~rc~test3_UPLOADING.txt.gz

** Summary changed:

- UITK two FocusingTests unit tests fail with Qt 5.4 beta
+ UITK two FocusingTests unit tests fail with Qt 5.4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1395014

Title:
  UITK two FocusingTests unit tests fail with Qt 5.4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1394991] Re: ubuntu-ui-toolkit failing ClipboardAPI unit tests with Qt 5.4

2014-12-02 Thread Timo Jyrinki
Also with 5.4 RC, so seems there to stay:
https://launchpadlibrarian.net/191671472/buildlog_ubuntu-vivid-amd64
.ubuntu-ui-
toolkit_1.1.1347%2B15.04.20141126-0ubuntu2~rc~test3_UPLOADING.txt.gz

** Summary changed:

- ubuntu-ui-toolkit failing ClipboardAPI unit tests with Qt 5.4 beta
+ ubuntu-ui-toolkit failing ClipboardAPI unit tests with Qt 5.4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1394991

Title:
  ubuntu-ui-toolkit failing ClipboardAPI unit tests with Qt 5.4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1386170] Re: Libreoffice startup center shorcut broken

2014-12-02 Thread Dariusz Gadomski
@Björn: my tests show that it fixes the issue, however I still did not
get any feedback from the reporter.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1386170

Title:
  Libreoffice startup center shorcut broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1395017] Re: UITK unit test tst_StateSaverTest::test_SaveArrays fails with Qt 5.4

2014-12-02 Thread Timo Jyrinki
Also with 5.4 RC: https://launchpadlibrarian.net/191671472
/buildlog_ubuntu-vivid-amd64.ubuntu-ui-
toolkit_1.1.1347%2B15.04.20141126-0ubuntu2~rc~test3_UPLOADING.txt.gz

** Summary changed:

- UITK unit test tst_StateSaverTest::test_SaveArrays fails with Qt 5.4 beta
+ UITK unit test tst_StateSaverTest::test_SaveArrays fails with Qt 5.4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1395017

Title:
  UITK unit test tst_StateSaverTest::test_SaveArrays fails with Qt 5.4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1395015] Re: Unit tests test_twoRepeaters fail with Qt 5.4 beta

2014-12-02 Thread Timo Jyrinki
This one seems fixed with 5.4 RC!
https://launchpadlibrarian.net/191671472/buildlog_ubuntu-vivid-amd64
.ubuntu-ui-
toolkit_1.1.1347%2B15.04.20141126-0ubuntu2~rc~test3_UPLOADING.txt.gz

PASS   : components::TabsWithRepeaterDeprecatedToolbar::test_twoRepeaters()
PASS   : components::TabsWithRepeaterNewHeader::test_twoRepeaters()

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1395015

Title:
  Unit tests test_twoRepeaters fail with Qt 5.4 beta

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1208129] Re: Compares NoneType() and str(), hence fails to make bootable usb

2014-12-02 Thread Yu Ning
Thank you Jason (jasongaiser), with your debugging result I propose a
patch for the issue, it will improve the code in two points:

1. use regex to detect the os version, so 'Ubuntu Remix 14.04' is also supported
2. check whether os ver is successfully detected in need_syslinux_legacy()

however I have a concern about it, in need_syslinux_legacy() before
checking for version we should first check if it is an Ubuntu image. For
example Debian Wheezy has version string 7.7.0, which will cause
need_syslinux_legacy() to return True.

** Patch added: match-os-ver.patch
   
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1208129/+attachment/4272797/+files/match-os-ver.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1208129

Title:
  Compares NoneType() and str(), hence fails to make bootable usb

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1208129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398363] [NEW] Screen locker launches during install of Kubuntu 15.04

2014-12-02 Thread Mark Fraser
Public bug reported:

Did a fresh install of Kubuntu Vervet on a Netbook and part way through
the install the screen locker started and asked for a password to be
entered in order to unlock the screen.

This could be confusing to someone who is new to Kubuntu or even to
someone who isn't expecting it.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398363

Title:
  Screen locker launches during install of Kubuntu 15.04

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1397699] Re: Dell Latitude 2110: Brightness keys come through two input devices

2014-12-02 Thread Ben Harris
I've just tested in Precise (kernel 3.2.0-72-generic) and the same
problem occurs there as well.  So the problem did occur in prior
releases.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1397699

Title:
  Dell Latitude 2110: Brightness keys come through two input devices

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1208129] Re: Compares NoneType() and str(), hence fails to make bootable usb

2014-12-02 Thread Yu Ning
BTW, my patch is based on the trusty-updates branch.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1208129

Title:
  Compares NoneType() and str(), hence fails to make bootable usb

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1208129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396716] Re: New Windows Launched From Desktop Don't Receive Focus

2014-12-02 Thread Thaddäus Tintenfisch
Disabling the Use startup notification option (right click on the
desktop icon  Properties  Launcher) resolves the focus behavior for
all the applications which I have tested.

Can you please file a report on the Xfce bug tracker to inform the
upstream developers? I suggest that you file it against xfdesktop which
seems to trigger the problem in the first place.

https://bugzilla.xfce.org/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396716

Title:
  New Windows Launched From Desktop Don't Receive Focus

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1397383] Re: 14e4:4359 [Dell Latitude 5530] Broadcom BCM43228 WiFi interface not recognized with linux-generic-lts-utopic 3.16.0-25

2014-12-02 Thread Vincenzo Costa
I tried with the latest ubuntu image, via unetbootin and a USB drive.

Once opened the live session I checked the wireless network: it doesn't
work!

Here are the checking commands an their outputs:


apt-cache policy bcmwl-kernel-source

bcmwl-kernel-source:
  Installed: (none)
  Candidate: 6.30.223.248+bdcom-0ubuntu2
  Version table:
 6.30.223.248+bdcom-0ubuntu2 0
500 cdrom://Ubuntu 15.04 _Vivid Vervet_ - Alpha amd64 (20141201)/ 
vivid/restricted amd64 Packages
500 http://archive.ubuntu.com/ubuntu/ vivid/restricted amd64 Packages
 6.30.223.141+bdcom-0ubuntu2 0
500 cdrom://Ubuntu 15.04 _Vivid Vervet_ - Alpha amd64 (20141201)/ 
trusty/main amd64 Packages

--
lspci -vvnn | grep -A 9 Network

02:00.0 Network controller [0280]: Broadcom Corporation BCM43228 802.11a/b/g/n 
[14e4:4359]
Subsystem: Dell Device [1028:0014]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 17
Region 0: Memory at f7e0 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: bcma-pci-bridge

--
lsb_release -rd

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

--
uname -a

Linux ubuntu 3.16.0-25-generic #33-Ubuntu SMP Tue Nov 4 12:06:54 UTC
2014 x86_64 x86_64 x86_64 GNU/Linux

-
sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date

A15
09/24/2014

-

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1397383

Title:
  14e4:4359 [Dell Latitude 5530] Broadcom BCM43228 WiFi interface not
  recognized with linux-generic-lts-utopic 3.16.0-25

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1003950] Re: launcher does not show minimized update manager while clicked

2014-12-02 Thread luca
I have same bug on xubuntu 14.04 64, with nvidia-current driver.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1003950

Title:
  launcher does not show minimized update manager while clicked

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398369] [NEW] SmartScopesProxy should allow more detailed/verbose logging

2014-12-02 Thread Facundo Batista
Public bug reported:

Like, when doing

restart smart-scopes-proxy LOGGING=DEBUG

It should send to log more information, for example not only what it's
requesting from the server, but also the responses, with proper
timestamps.

Thanks!

** Affects: unity-scopes-api (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398369

Title:
  SmartScopesProxy should allow more detailed/verbose logging

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398363] Re: Screen locker launches during install of Kubuntu 15.04

2014-12-02 Thread Jonathan Riddell
needs a setting overridden in the live image


** Changed in: ubiquity (Ubuntu)
Milestone: None = ubuntu-15.04

** Tags added: kubuntu

** Package changed: ubiquity (Ubuntu) = kubuntu-settings (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398363

Title:
  Screen locker launches during install of Kubuntu 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-settings/+bug/1398363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398367] Re: gpg-agent fails with pinentry-qt4

2014-12-02 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398367] [NEW] gpg-agent fails with pinentry-qt4

2014-12-02 Thread Georg Altmann
Public bug reported:

With
pinentry-program /usr/bin/pinentry-qt4
in
~/.gnupg/gpg-agent.conf
gpg fails:
$ killall ssh-agent gpg-agent
$ eval $(gpg-agent --daemon --enable-ssh-support)
$ env |grep GPG
GPG_AGENT_INFO=/tmp/gpg-EAhfxo/S.gpg-agent:29145:1
$ gpg --decrypt foo-message.txt

You need a passphrase to unlock the secret key for
user: xxx
2048-bit RSA key, ID xxx, created xxx (main key ID xxx)

gpg: problem with the agent - disabling agent use
^^^

With
pinentry-program /usr/bin/pinentry-gtk-2
in
~/.gnupg/gpg-agent.conf
pinentry pops up as expected with the same commands used as above.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: gnupg-agent 2.0.22-3ubuntu1.1
ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
Uname: Linux 3.13.0-40-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Dec  2 12:43:55 2014
InstallationDate: Installed on 2014-10-09 (53 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
SourcePackage: gnupg2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnupg2 (Ubuntu)
 Importance: Undecided
 Status: Confirmed

** Affects: pinentry-qt4 (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug regression-proposed trusty

** Package changed: gnupg2 (Ubuntu) = pinentry-qt4 (Ubuntu)

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398367] Re: gpg-agent fails with pinentry-qt4

2014-12-02 Thread Georg Altmann
** Description changed:

  With
  pinentry-program /usr/bin/pinentry-qt4
  in
  ~/.gnupg/gpg-agent.conf
  gpg fails:
  $ killall ssh-agent gpg-agent
  $ eval $(gpg-agent --daemon --enable-ssh-support)
  $ env |grep GPG
  GPG_AGENT_INFO=/tmp/gpg-EAhfxo/S.gpg-agent:29145:1
  $ gpg --decrypt foo-message.txt
  
  You need a passphrase to unlock the secret key for
  user: xxx
  2048-bit RSA key, ID xxx, created xxx (main key ID xxx)
  
  gpg: problem with the agent - disabling agent use
  ^^^
  
  With
  pinentry-program /usr/bin/pinentry-gtk-2
  in
  ~/.gnupg/gpg-agent.conf
- pinentry pops up as expected with the same command entered as above.
+ pinentry pops up as expected with the same commands used as above.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gnupg-agent 2.0.22-3ubuntu1.1
  ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
  Uname: Linux 3.13.0-40-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Dec  2 12:43:55 2014
  InstallationDate: Installed on 2014-10-09 (53 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gnupg2
  UpgradeStatus: No upgrade log present (probably fresh install)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398367] Re: gpg-agent fails with pinentry-qt4

2014-12-02 Thread Georg Altmann
Bug  #1332864  describes the same problem, but in a less technical
description.

** Description changed:

- With 
+ With
  pinentry-program /usr/bin/pinentry-qt4
  in
  ~/.gnupg/gpg-agent.conf
  gpg fails:
  $ killall ssh-agent gpg-agent
- $ eval $(gpg-agent --daemon --enable-ssh-support) 
+ $ eval $(gpg-agent --daemon --enable-ssh-support)
  $ env |grep GPG
  GPG_AGENT_INFO=/tmp/gpg-EAhfxo/S.gpg-agent:29145:1
  $ gpg --decrypt foo-message.txt
  
  You need a passphrase to unlock the secret key for
  user: xxx
  2048-bit RSA key, ID xxx, created xxx (main key ID xxx)
  
  gpg: problem with the agent - disabling agent use
  ^^^
  
- With 
+ With
  pinentry-program /usr/bin/pinentry-gtk-2
  in
  ~/.gnupg/gpg-agent.conf
  pinentry pops up as expected with the same command entered as above.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gnupg-agent 2.0.22-3ubuntu1.1
  ProcVersionSignature: Ubuntu 3.13.0-40.69-generic 3.13.11.10
  Uname: Linux 3.13.0-40-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Dec  2 12:43:55 2014
  InstallationDate: Installed on 2014-10-09 (53 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: gnupg2
  UpgradeStatus: No upgrade log present (probably fresh install)
- upstart.gpg-agent.log:
-  gpg-agent[23301]: /home/uh31yzim/.gnupg/gpg-agent.conf:12: argument not 
expected
-  gpg-agent[24867]: /home/uh31yzim/.gnupg/gpg-agent.conf:12: argument not 
expected

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398367] Re: gpg-agent fails with pinentry-qt4

2014-12-02 Thread Georg Altmann
removed upstart.gpg-agent.log, since it held obsolete messages not
applying to the problem.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398370] [NEW] Replace PartialColorizeUbuntuShape.qml by a native solution

2014-12-02 Thread Loïc Molinari
Public bug reported:

PartialColorizeUbuntuShape.qml is used by the Slider and the
ProgressBar. It implies a slow FBO indirection and prevents batching in
the QtQuick renderer. It should be replaced by a native solution to
improve rendering speed.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Medium
 Assignee: Loïc Molinari (loic.molinari)
 Status: In Progress

** Branch linked: lp:~loic.molinari/ubuntu-ui-toolkit/ubuntu-ui-toolkit-
get-rid-of-partial-colorize-shape

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398370

Title:
  Replace PartialColorizeUbuntuShape.qml by a native solution

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1398367] Re: gpg-agent fails with pinentry-qt4

2014-12-02 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: pinentry-qt4 (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398367

Title:
  gpg-agent fails with pinentry-qt4

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1332864] Re: unable to encrypt or sign emails or files with gnupg2

2014-12-02 Thread Georg Altmann
*** This bug is a duplicate of bug 1398367 ***
https://bugs.launchpad.net/bugs/1398367

** This bug has been marked a duplicate of bug 1398367
   gpg-agent fails with pinentry-qt4

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1332864

Title:
  unable to encrypt or sign emails or files with gnupg2

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1398356] [NEW] package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2014-12-02 Thread Axel Beckert
Hi again,

Axel Beckert wrote:
 This looks a lot like #1069227 or #1042821, except that they had exit
 status 1, not 127.

It is not.

https://launchpadlibrarian.net/191668213/DpkgTerminalLog.txt shows:

/var/lib/dpkg/info/xymon-client.config: 3: /etc/default/xymon-client:
include: not found

Please send the contents of your /etc/default/xymon-client file. Looks
like the culprit is in there.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398356

Title:
  package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 381105] Re: Handling of ftp links containing username and password

2014-12-02 Thread Bug Watch Updater
** Changed in: evolution
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/381105

Title:
  Handling of ftp links containing username and password

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398356] Re: package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2014-12-02 Thread Axel Beckert
Hi,

stan hilliar wrote:
 package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
 subprocess installed post-installation script returned error exit
 status 127

This looks a lot like #1069227 or #1042821, except that they had exit
status 1, not 127.

But still, both these issues are still present in 4.3.7-1ubuntu2
according to https://launchpad.net/ubuntu/+source/xymon/+changelog as
they were only fixed in 4.3.11-1.

So it maybe a duplicate of any of those two issues. But without
further information that's hardly to figure out.


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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398356

Title:
  package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1381856] Re: [Dell Latitude E5550] Microphone mute key does not work on this system

2014-12-02 Thread Daniel Manrique
** Changed in: unity-settings-daemon (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1381856

Title:
  [Dell Latitude E5550] Microphone mute key does not work on this system

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1381856/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1387537] Re: Oxide should provide an interface to avoid webbrowser-app / online-accounts using private Qt headers

2014-12-02 Thread Timo Jyrinki
** Summary changed:

- online-accounts should not use private Qt headers
+ Oxide should provide an interface to avoid webbrowser-app / online-accounts 
using private Qt headers

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1387537

Title:
  Oxide should provide an interface to avoid webbrowser-app / online-
  accounts using private Qt headers

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1386367] Re: CVE-2014-3673

2014-12-02 Thread John Johansen
** Changed in: linux-armadaxp (Ubuntu Precise)
   Status: Fix Committed = Fix Released

** Changed in: linux-ec2 (Ubuntu Lucid)
   Status: New = Fix Committed

** Changed in: linux (Ubuntu Precise)
   Status: Fix Committed = Fix Released

** Changed in: linux-ti-omap4 (Ubuntu Precise)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1386367

Title:
  CVE-2014-3673

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398372] [NEW] webbrowser + u-s-s-online-accounts fail to build against Qt 5.4

2014-12-02 Thread Timo Jyrinki
Public bug reported:

Similar to bug #1398044 (oxide) and bug #1397979 (ui-toolkit),
webbrowser-app and ubuntu-system-settings-online-accounts fail to build
against Qt 5.4. UITK's fix is at https://code.launchpad.net/~ubuntu-sdk-
team/ubuntu-ui-toolkit/newOpenGlPrivates/+merge/243373

This bug will become invalid if bug #1387537 is fixed instead.

Build logs:
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598562/+listing-archive-extra
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598561/+listing-archive-extra

More information about Qt testing at
https://wiki.ubuntu.com/Touch/QtTesting

** Affects: ubuntu-system-settings-online-accounts (Ubuntu)
 Importance: Undecided
 Status: New

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


** Tags: qt5.4

** Also affects: ubuntu-system-settings-online-accounts (Ubuntu)
   Importance: Undecided
   Status: New

** Description changed:

  Similar to bug #1398044 (oxide) and bug #1397979 (ui-toolkit),
  webbrowser-app and ubuntu-system-settings-online-accounts fail to build
  against Qt 5.4. UITK's fix is at https://code.launchpad.net/~ubuntu-sdk-
  team/ubuntu-ui-toolkit/newOpenGlPrivates/+merge/243373
  
  This bug will become invalid if bug #1387537 is fixed instead.
+ 
+ Build logs:
+ 
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598562/+listing-archive-extra
+ 
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598561/+listing-archive-extra

** Description changed:

  Similar to bug #1398044 (oxide) and bug #1397979 (ui-toolkit),
  webbrowser-app and ubuntu-system-settings-online-accounts fail to build
  against Qt 5.4. UITK's fix is at https://code.launchpad.net/~ubuntu-sdk-
  team/ubuntu-ui-toolkit/newOpenGlPrivates/+merge/243373
  
  This bug will become invalid if bug #1387537 is fixed instead.
  
  Build logs:
  
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598562/+listing-archive-extra
  
https://launchpad.net/~canonical-qt5-edgers/+archive/ubuntu/qt5-beta2/+sourcepub/4598561/+listing-archive-extra
+ 
+ More information about Qt testing at
+ https://wiki.ubuntu.com/Touch/QtTesting

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398372

Title:
  webbrowser + u-s-s-online-accounts fail to build against Qt 5.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings-online-accounts/+bug/1398372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1398356] [NEW] package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2014-12-02 Thread stan hilliar
xymon-client file

# Environment settings for the Xymon client.

include /etc/default/xymon-client
include /var/run/xymon/bbdisp-runtime.cfg
CONFIGCLASS=$SERVEROSTYPE # Default configuration class for logfiles

PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/lib/xymon/client/bin
# PATH setting for the client scripts.

# You normally don't need to modify anything below here
XYMONDPORT=1984   # Portnumber where xymond listens
XYMONCLIENTHOME=/usr/lib/xymon/client
XYMONHOME=$XYMONCLIENTHOME   # Directory for the Xymon client files
XYMON=$XYMONHOME/bin/xymon  # The Xymon client xymon utility
XYMONTMP=/var/lib/xymon/tmp # Where we may store temporary files.
XYMONCLIENTLOGS=/var/log/xymon  # Where we store the client logfiles

include /var/run/xymon/xymonclient-include.cfg

# Compatibility settings
HOBBITCLIENTHOME=$XYMONCLIENTHOME

BBDISP=$XYMSRV
BBDISPLAYS=$XYMSERVERS

BBPORT=$XYMONDPORT
BBHOME=$XYMONHOME
BB=$XYMON
BBTMP=$XYMONTMP
BBCLIENTLOGS=$XYMONCLIENTLOGS


# The following defines a bunch of commands that BB extensions expect to be
present.
# Xymon does not use them, but they are provided here so if you use BB
extension
# scripts, then they will hopefully run without having to do a lot of
tweaking.

UPTIME=/usr/bin/uptime
AWK=/usr/bin/awk
CAT=/bin/cat
CP=/bin/cp
CUT=/usr/bin/cut
DATE=/bin/date
EGREP=/bin/egrep
EXPR=/usr/bin/expr
FIND=/usr/bin/find
GREP=/bin/grep
HEAD=/usr/bin/head
ID=/usr/bin/id
LN=/bin/ln
LS=/bin/ls
MV=/bin/mv
RM=/bin/rm
SED=/bin/sed
SORT=/usr/bin/sort
TAIL=/usr/bin/tail
TOP=/usr/bin/top
TOUCH=/usr/bin/touch
TR=/usr/bin/tr
UNIQ=/usr/bin/uniq
WHO=/usr/bin/who
WC=/usr/bin/wc -l
WCC=/usr/bin/wc
# DF,DFCMD and PS are for compatibility only, NOT USED by the Xymon client
DF=/bin/df -Pk
DFCMD=/bin/df -Pk
PS=ps ax

MAXLINE=32768



Regards
Stan

On 2 December 2014 at 14:02, Axel Beckert a...@debian.org wrote:

 Hi again,

 Axel Beckert wrote:
  This looks a lot like #1069227 or #1042821, except that they had exit
  status 1, not 127.

 It is not.

 https://launchpadlibrarian.net/191668213/DpkgTerminalLog.txt shows:

 /var/lib/dpkg/info/xymon-client.config: 3: /etc/default/xymon-client:
 include: not found

 Please send the contents of your /etc/default/xymon-client file. Looks
 like the culprit is in there.

 Regards, Axel
 --
  ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
 : :' :  |  Debian Developer, ftp.ch.debian.org Admin
 `. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
   `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5

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

 Title:
   package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
   subprocess installed post-installation script returned error exit
   status 127

 Status in xymon package in Ubuntu:
   Incomplete

 Bug description:
   Hi,

   I can't update my machine ubuntu14.04
   It keeps giving me the same error.

   ProblemType: Package
   DistroRelease: Ubuntu 14.04
   Package: xymon-client 4.3.7-1ubuntu2
   ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
   Uname: Linux 3.13.0-39-generic i686
   ApportVersion: 2.14.1-0ubuntu3.5
   Architecture: i386
   Date: Tue Dec  2 12:19:17 2014
   DpkgHistoryLog:
Start-Date: 2014-12-02  12:18:47
Commandline: aptdaemon role='role-commit-packages' sender=':1.85'
Install: liboxideqtquick0:i386 (1.3.4-0ubuntu0.14.04.1)
Upgrade: liboxideqt-qmlplugin:i386 (1.2.5-0ubuntu0.14.04.1,
 1.3.4-0ubuntu0.14.04.1), oxideqt-codecs:i386 (1.2.5-0ubuntu0.14.04.1,
 1.3.4-0ubuntu0.14.04.1), liboxideqtcore0:i386 (1.2.5-0ubuntu0.14.04.1,
 1.3.4-0ubuntu0.14.04.1)
   DuplicateSignature: package:xymon-client:4.3.7-1ubuntu2:subprocess
 installed post-installation script returned error exit status 127
   ErrorMessage: subprocess installed post-installation script returned
 error exit status 127
   InstallationDate: Installed on 2011-07-11 (1239 days ago)
   InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386
 (20100429)
   SourcePackage: xymon
   Title: package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
 subprocess installed post-installation script returned error exit status 127
   UpgradeStatus: Upgraded to trusty on 2014-09-01 (91 days ago)

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



-- 
Regards
Stan Hilliar
cell: +27 82 3348636
email: stanhill...@gmail.com
Web http://goo.gl/1EvPL
Twitter http://goo.gl/XNfno

Always learning, never arriving. Jesus Christ is ALL, everything else is
commentary

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398356

Title:
  package xymon-client 4.3.7-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script 

[Bug 969297] Re: Two screens: Invisible window buttons on other screen affect windows

2014-12-02 Thread Andrea Azzarone
** Changed in: unity
   Status: Incomplete = Invalid

** Changed in: unity (Ubuntu)
   Status: Incomplete = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/969297

Title:
  Two screens: Invisible window buttons on other screen affect windows

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1385786] Re: Resizing X frame is slow in Xubuntu when compositing is enabled

2014-12-02 Thread Thaddäus Tintenfisch
It seems that the emacs window is rather slow when redrawing its
content. I did some testing in a virtual environment on a low end host
system and every application window was showing the delayed resizing
behavior. Enabling the built-in compositor increased the delay somewhat.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1385786

Title:
  Resizing X frame is slow in Xubuntu when compositing is enabled

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1208129] Re: Compares NoneType() and str(), hence fails to make bootable usb

2014-12-02 Thread Ubuntu Foundations Team Bug Bot
The attachment match-os-ver.patch seems to be a patch.  If it isn't,
please remove the patch flag from the attachment, remove the patch
tag, and if you are a member of the ~ubuntu-reviewers, unsubscribe the
team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1208129

Title:
  Compares NoneType() and str(), hence fails to make bootable usb

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1208129/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 989829] Re: Gvim Window has no icon in launcher

2014-12-02 Thread Andrea Azzarone
** Changed in: unity
   Status: Incomplete = Invalid

** Changed in: unity (Ubuntu)
   Status: Incomplete = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/989829

Title:
  Gvim Window has no icon in launcher

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 994733] Re: Nautilus launch bar icon contextual menu entries have no effect

2014-12-02 Thread Andrea Azzarone
** Changed in: unity
   Status: Incomplete = Invalid

** Changed in: unity (Ubuntu)
   Status: Incomplete = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/994733

Title:
  Nautilus launch bar icon contextual menu entries have no effect

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


<    1   2   3   4   5   6   7   8   9   10   >