[Bug 1968755] [NEW] venv doesn't work

2022-04-12 Thread Nico Schlömer
Public bug reported:

There's something wrong with Python 3.10 on Ubuntu 22.04. I'm pulling my
hair out, but can't figure out what's going wrong. I condensed it to

```
virtualenv venv
venv/bin/python --version
```

This should work, but only gives

```
created virtual environment CPython3.10.4.final.0-64 in 130ms
  creator CPython3Posix(dest=/home/nschloe/software/meshpro/meshio-dev/venv, 
clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, 
wheel=bundle, via=copy, app_data_dir=/home/nschloe/.local/share/virtualenv)
added seed packages: pip==22.0.4, setuptools==60.9.3, wheel==0.37.1
  activators 
BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
❯ venv/bin/python --version
zsh: no such file or directory: venv/bin/python
```

Let me know what else I can do to debug.

** Affects: python3.10 (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/1968755

Title:
  venv doesn't work

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


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

[Bug 1953135] [NEW] Incorrect symlink checking => Your python3 install is corrupted.

2021-12-03 Thread Nico Schlömer
Public bug reported:

This is related to https://bugs.launchpad.net/bugs/1825655.

When trying to upgrade to jammy, I got
```
Your python3 install is corrupted. Please fix the '/usr/bin/python3' 
symlink. 
```

Digging into the matter, it comes down to this symlink checker in 
`DistUpgradeController.py`:
```
import logging
from configparser import ConfigParser
import os
from configparser import NoOptionError

logging.basicConfig(filename='example.log', encoding='utf-8',
level=logging.DEBUG)

def _pythonSymlinkCheck():
""" sanity check that /usr/bin/python3 points to the default
python version. Users tend to modify this symlink, which
breaks stuff in obscure ways (Ubuntu #75557).
"""
logging.debug("_pythonSymlinkCheck run")
binaries_and_dirnames = [("python3", "python3")]
for binary, dirname in binaries_and_dirnames:
debian_defaults = '/usr/share/%s/debian_defaults' % dirname
if os.path.exists(debian_defaults):
config = ConfigParser()
with open(debian_defaults) as f:
config.read_file(f)
try:
expected_default = config.get('DEFAULT', 'default-version')
except NoOptionError:
logging.debug("no default version for %s found in '%s'" %
  (binary, config))
return False
try:
fs_default_version = os.readlink('/usr/bin/%s' % binary)
except OSError as e:
logging.error("os.readlink failed (%s)" % e)
return False
if not fs_default_version in (expected_default, 
os.path.join('/usr/bin', expected_default)):
logging.debug("%s symlink points to: '%s', but expected is '%s' 
or '%s'" %
  (binary, fs_default_version, expected_default, 
os.path.join('/usr/bin', expected_default)))
return False
return True


res = _pythonSymlinkCheck()
print(res)
```
Running it indeed returns `False` on my machine. The log gives the reason:
```
DEBUG:root:_pythonSymlinkCheck run
DEBUG:root:python3 symlink points to: '/etc/alternatives/python3', but expected 
is 'python3.9' or '/usr/bin/python3.9'
```
The symlink is not followed through.

Instead of `os.readlink`, you want to use `os.path.realpath`.

** Affects: ubuntu-release-upgrader (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/1953135

Title:
  Incorrect symlink checking => Your python3 install is corrupted.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1953135/+subscriptions


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

[Bug 1940221] Re: bump to CGAL 5.3

2021-11-27 Thread Nico Schlömer
Apparently, this is fixed in jammy.

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

Title:
  bump to CGAL 5.3

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


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

[Bug 1940506] [NEW] bump to spdlog 1.8.5

2021-08-19 Thread Nico Schlömer
Public bug reported:

Debian's got it (https://tracker.debian.org/pkg/spdlog), please bump.

** Affects: spdlog (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/1940506

Title:
  bump to spdlog 1.8.5

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


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

[Bug 1940221] [NEW] bump to CGAL 5.3

2021-08-17 Thread Nico Schlömer
Public bug reported:

CGAL 5.3 was released on July 6, 2021. Debian has already bumped
(https://packages.debian.org/sid/libcgal-dev) and it'd be great if
Ubuntu could adopt it, too.

** Affects: cgal (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/1940221

Title:
  bump to CGAL 5.3

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


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

[Bug 1866348] Re: gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

2020-03-06 Thread Nico Schlömer
Something very similar is reported at
https://bugzilla.redhat.com/show_bug.cgi?id=1797736.

Downgrading fixed the problem there, but I can't see how to downgrade
glib-2.0 on focal

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

Title:
  gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0
  in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

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

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

[Bug 1866348] [NEW] gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

2020-03-06 Thread Nico Schlömer
Public bug reported:

I'm running on Focal. Since recently, Gnome crashes with
```
Mar  6 14:03:16 ishanca gnome-shell[77303]: Failed to set scheduler settings: 
Operation not permitted
Mar  6 14:03:16 ishanca kernel: [33974.584854] traps: gnome-shell[81291] trap 
int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0 in 
libglib-2.0.so.0.6305.0[7fc2d7369000+84000]
[...]
```

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

** Bug watch added: Red Hat Bugzilla #1797736
   https://bugzilla.redhat.com/show_bug.cgi?id=1797736

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

Title:
  gnome-shell[81291] trap int3 ip:7fc2d73a5065 sp:7fc284e6d710 error:0
  in libglib-2.0.so.0.6305.0[7fc2d7369000+84000]

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

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

[Bug 1851475] [NEW] aborting without informative error message

2019-11-06 Thread Nico Schlömer
Public bug reported:

I'm trying to upgrade from 19.10 to 20.04 (devel). Unfortunately, the 
do-release-upgrade process aborts after "Calculating the changes" without 
saying why:
```
sudo do-release-upgrade -d
```
```
Checking for a new Ubuntu release
Get:1 Upgrade tool signature [1,554 B]  
 
Get:2 Upgrade tool [1,334 kB]   
 
Fetched 1,335 kB in 0s (0 B/s)  
 
authenticate 'focal.tar.gz' against 'focal.tar.gz.gpg' 
extracting 'focal.tar.gz'

Reading cache

Checking package manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Hit http://de.archive.ubuntu.com/ubuntu eoan InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-updates InRelease  
 
Ign http://dl.google.com/linux/chrome/deb stable InRelease  
 
Hit http://ppa.launchpad.net/nschloe/inkscape-backports/ubuntu eoan InRelease   
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-backports InRelease
 
Hit http://dl.google.com/linux/chrome/deb stable Release
 
Hit http://ppa.launchpad.net/nschloe/mmg-test/ubuntu eoan InRelease 
 
Hit http://ppa.launchpad.net/nschloe/trilinos-backports/ubuntu eoan InRelease   
 
Ign https://dl.bintray.com/etcher/debian stable InRelease   
 
Get:1 https://dl.bintray.com/etcher/debian stable Release [3,674 B] 
 
Fetched 3,674 B in 0s (0 B/s)   
 
Reading package lists... Done
Building dependency tree  
Reading state information... Done

Updating repository information

Third party sources disabled

Some third party entries in your sources.list were disabled. You can 
re-enable them after the upgrade with the 'software-properties' tool 
or your package manager. 

To continue please press [ENTER]

Hit http://de.archive.ubuntu.com/ubuntu eoan InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-updates InRelease  
 
Hit http://de.archive.ubuntu.com/ubuntu eoan-backports InRelease
 
Fetched 0 B in 0s (0 B/s)   
 

Checking package manager
Reading package lists... Done
Building dependency tree  
Reading state information... Done

Calculating the changes

Calculating the changes

Restoring original system state

Aborting
Reading package lists... Done
Building dependency tree  
Reading state information... Done
```

** Affects: ubuntu-release-upgrader (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/1851475

Title:
  aborting without informative error message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1851475/+subscriptions

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

[Bug 1735363] Re: inkscape: Port to Python 3

2019-09-10 Thread Nico Schlömer
> However the idea for Inkscape (at least the "LTS" branch 0.92.x) is to
support both, python2 and python3,

I'm wondering if this might be a mistake. After all, Python 2 will be
unsupported by upstream in a few months time. Not even security bugs
will be fixed, so using it is dangerous from then on. By providing
support for Python 2, you're basically asserting to the Inkscape user
that everything is fine and she can keep going, but that isn't the case.
Everybody should feel a great deal of pressure for upgrading now! That's
why many projects have pledged to remove Python 2 support before the end
of the year [1]. I maintain a bunch of more or less popular Python
projects, and have purposefully removed Python 2 support from all of
them. That itches some users but, again, I think this is a good thing.
The more people a pressured into upgrading, the better.


[1] https://python3statement.org/

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

Title:
  inkscape: Port to Python 3

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

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

[Bug 1818892] [NEW] update to newer version

2019-03-06 Thread Nico Schlömer
Public bug reported:

The fact that Ubuntu only provides and older version of wheels leads to
funny bugs downstream, e.g., [1]. Debian already has 0.32.3 [2]; please
update.


[1] https://github.com/pypa/warehouse/issues/5520
[2] https://packages.debian.org/sid/python3-wheel

** Affects: wheel (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/1818892

Title:
  update to newer version

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

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

[Bug 1099537] Re: ubuntu-dev-scripts should be ported to Python 3

2019-03-05 Thread Nico Schlömer
@ddstreet Very nice!

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

Title:
  ubuntu-dev-scripts should be ported to Python 3

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

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

[Bug 1722478] Re: Two-finger scrolling no longer works after resuming from suspend

2018-10-01 Thread Nico Schlömer
The problem is also present on the ThinkPad X280, worked around by
```
modprobe -r psmouse
modprobe psmouse
```

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

Title:
  Two-finger scrolling no longer works after resuming from suspend

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

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

[Bug 1792720] Re: RuntimeError: Error when importing mpi4py

2018-09-25 Thread Nico Schlömer
Closing, the issue was an outdated local mpi4py installation

** Changed in: dolfin (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/1792720

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1792720] Re: RuntimeError: Error when importing mpi4py

2018-09-25 Thread Nico Schlömer
Weirdly enough, when doing `import dolfin` a second time, the error is
```
---
AttributeErrorTraceback (most recent call last)
 in ()
> 1 import dolfin

/usr/lib/python3/dist-packages/dolfin/__init__.py in ()
138 from .common.plotting import plot
139 
--> 140 from .fem.assembling import (assemble, assemble_system, 
assemble_multimesh,
141  SystemAssembler, assemble_local)
142 from .fem.form import Form

/usr/lib/python3/dist-packages/dolfin/fem/assembling.py in ()
 31 
 32 import ufl
---> 33 import dolfin.cpp as cpp
 34 from dolfin.fem.form import Form
 35 from dolfin import MPI

AttributeError: module 'dolfin' has no attribute 'cpp'
```

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

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1794235] [NEW] reportbug unusable

2018-09-25 Thread Nico Schlömer
Public bug reported:

See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=908087, please
upgrade to python3-pysimplesoap 1.16-2.1 from Debian.

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


** Tags: cosmic

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

Title:
  reportbug unusable

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

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

[Bug 1792720] [NEW] RuntimeError: Error when importing mpi4py

2018-09-15 Thread Nico Schlömer
Public bug reported:

On Ubuntu 18.10 (cosmic): Simply importing dolfin à la
```
python3 -c "import dolfin"
```
gives
```
ERROR: could not import mpi4py!
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/dolfin/__init__.py", line 140, in 

from .fem.assembling import (assemble, assemble_system, assemble_multimesh,
  File "/usr/lib/python3/dist-packages/dolfin/fem/assembling.py", line 34, in 

from dolfin.fem.form import Form
  File "/usr/lib/python3/dist-packages/dolfin/fem/form.py", line 12, in 
from dolfin.jit.jit import dolfin_pc, ffc_jit
  File "/usr/lib/python3/dist-packages/dolfin/jit/jit.py", line 121, in 
def compile_class(cpp_data, mpi_comm=MPI.comm_world):
RuntimeError: Error when importing mpi4py
```
Importing mpi4py works well:
```
python3 -c "import mpi4py"
```

** Affects: dolfin (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/1792720

Title:
  RuntimeError: Error when importing mpi4py

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

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

[Bug 1786009] [NEW] cosmic: openmpi broken (with fix in Debian)

2018-08-08 Thread Nico Schlömer
Public bug reported:

Right now, openmpi is broken in cosmic (with 3.1.1.real-1). Effects:
Things like gmsh (which uses openmpi) don't even start.This is due to a
bug known and fixed in Debian [1]. The updated version is available [2],
but hasn't made it into cosmic yet. Any idea of when this will happen?

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903561
[2] https://launchpad.net/ubuntu/+source/openmpi/3.1.1.real-4

** Affects: openmpi (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/1786009

Title:
  cosmic: openmpi broken (with fix in Debian)

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

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

[Bug 1747943] Re: Massive eigen compiler warnings with gcc7 ("enum constant in boolean context")

2018-02-15 Thread Nico Schlömer
This is already done for bionic. (The fix is in  3.3.4-4.)

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

Title:
  Massive eigen compiler warnings with gcc7 ("enum constant in boolean
  context")

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

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

[Bug 1255294] Re: UMFPACK 5.6.2 bump

2017-09-28 Thread Nico Schlömer
UMFPACK is now part of suitesparse.

** Changed in: umfpack (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/1255294

Title:
  UMFPACK 5.6.2 bump

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

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

[Bug 1622981] Re: [Ffe] SuperLU 5.2

2017-09-28 Thread Nico Schlömer
** Changed in: superlu (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/1622981

Title:
  [Ffe] SuperLU 5.2

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

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

[Bug 1719551] [NEW] bump to 0.18.2

2017-09-26 Thread Nico Schlömer
Public bug reported:

Debian bumped to 0.18.2 [1], would be great if this could land in Ubuntu
as well.


[1] https://tracker.debian.org/pkg/oce

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


** Tags: upgrade-software-version

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

Title:
  bump to 0.18.2

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

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

[Bug 1583182] Re: error on 01ifupdown script

2017-09-12 Thread Nico Schlömer
The first error message I'm getting is 
```
Sep 12 14:28:41 foobar nm-dispatcher[27267]: /usr/sbin/fanctl: 41: 
/usr/sbin/fanctl: arithmetic expression: expecting primary: " (32-)/4 "

```
(Followed by the error messages in the original post.)

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

Title:
  error on 01ifupdown script

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

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

[Bug 1700373] Re: Please update microcode to version 20170511 on all supported platforms

2017-06-26 Thread Nico Schlömer
FYI: A backports PPA is available at
https://launchpad.net/~nschloe/+archive/ubuntu/intel-microcode-
backports.

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

Title:
  Please update microcode to version 20170511 on all supported platforms

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-microcode/+bug/1700373/+subscriptions

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


[Bug 1622981] Re: [Ffe] SuperLU 5.2

2016-09-14 Thread Nico Schlömer
This is the SuperLU_DIST changelog. The accumulated changes for SuperLU
(serial) are more substantial:

* thread-safe: remove static variables; replace xLAMCH by table lookup in 
float.h (C99 standard).
* Interface changes to the follwoing routines: xGSSVX (expert driver), xGSTRF 
(factorization). 
* Consult the example dlinsolx.c in EXAMPLE/ diretory to see the calling 
sequence.
* Renames of internal routines. No interface change.
* Real & complex being used together.
* Bug fix for iterative refinement for complex conjugate.
* Added CMake build option.
* First xSDK release, add copyright notice in each file.

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

Title:
  [Ffe] SuperLU 5.2

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

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


[Bug 1622981] [NEW] SuperLU 5.2

2016-09-13 Thread Nico Schlömer
Public bug reported:

Released recently to Debian [1].

[1] https://packages.debian.org/source/sid/superlu

** Affects: superlu (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/1622981

Title:
  SuperLU 5.2

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

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


[Bug 1414258] Re: Please update to python-autopep8-1.1

2016-06-20 Thread Nico Schlömer
This definitely needs to be reopened. Version available through Ubuntu
still is 0.9.1.

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

Title:
  Please update to python-autopep8-1.1

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

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


[Bug 1591977] [NEW] python3-autopep8

2016-06-13 Thread Nico Schlömer
Public bug reported:

autopep8 can be used as a module,
```
import autopep8
```
With Python 2, this is working fine, but for Python 3, one currently has to 
reside to installing autopep8 via pip, for example;
```
pip3 install autopep8
```
For the sake of completeness, please also provide python3-autopep8 in Ubuntu.

** Affects: autopep8 (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/1591977

Title:
  python3-autopep8

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

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


[Bug 1588754] [NEW] Sync trilinos 12.6.3-1 (universe) from Debian unstable (main)

2016-06-03 Thread Nico Schlömer
Public bug reported:

Trilinos 12.6.3-1 has been released in Debian unstable [1]; please sync
to yakkety.


[1] https://packages.debian.org/source/unstable/trilinos

** Affects: trilinos (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/1588754

Title:
  Sync trilinos 12.6.3-1 (universe) from Debian unstable (main)

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

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


[Bug 1573606] [NEW] CGAL 4.8 released

2016-04-22 Thread Nico Schlömer
Public bug reported:

CGAL 4.8. has been released on April 8, 2016, cf. [1]. There already is
a Debian build for it [2]. Please also bump in Ubuntu.


[1] https://github.com/CGAL/cgal/releases
[2] https://packages.debian.org/sid/libcgal-dev

** Affects: cgal (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/1573606

Title:
  CGAL 4.8 released

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

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


[Bug 1573589] [NEW] FEniCS for xenial

2016-04-22 Thread Nico Schlömer
Public bug reported:

For some reason, after appearing in all releases of Ubuntu for several
years now, FEniCS has not made it to Xenial. Is this an oversight or is
there a particular reason for it?

** Affects: fenics (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/1573589

Title:
  FEniCS for xenial

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

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


[Bug 1549763] Re: FFe: Sync trilinos 12.4.2-2 (universe) from Debian unstable (main)

2016-03-03 Thread Nico Schlömer
That's right. Some parts of Trilinos are fairly close to the hardware,
making it impossible to compile Trilinos on anything else than 64bit,
for example. Why ARM64 fails, I'm not exactly sure, but it certainly
doesn't surprise me.

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

Title:
  FFe: Sync trilinos 12.4.2-2 (universe) from Debian unstable (main)

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

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


[Bug 1549350] [NEW] Please sync trilinos from debian sid

2016-02-24 Thread Nico Schlömer
Public bug reported:

https://packages.debian.org/source/sid/trilinos

** Affects: 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/1549350

Title:
  Please sync trilinos from debian sid

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

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


[Bug 1365152] Re: upgrade to OpenMPI 1.8.*

2016-02-05 Thread Nico Schlömer
OpenMPI 1.10 has been released on Debian; it'd be great to include that
into Ubuntu as well.

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

Title:
  upgrade to OpenMPI 1.8.*

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

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


[Bug 1408385] Re: broadcom-sta-dkms 6.30.223.248-3: broadcom-sta kernel module failed to build error: incompatible type for argument 3 of ‘cfg80211_inform_bss’]

2015-06-20 Thread Nico Schlömer
I just did
```
$ sudo apt install broadcom-sta-dkms
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following package was automatically installed and is no longer required:
  libportaudio0
Use 'apt-get autoremove' to remove it.
The following extra packages will be installed:
  dkms
The following NEW packages will be installed:
  broadcom-sta-dkms dkms
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,238 kB of archives.
After this operation, 14.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://ubuntu.mirror.tudos.de/ubuntu/ vivid/main dkms all 
2.2.0.3-2ubuntu3 [65.5 kB]
Get:2 http://ubuntu.mirror.tudos.de/ubuntu/ vivid/multiverse broadcom-sta-dkms 
all 6.30.223.248-3 [2,172 kB]
Fetched 2,238 kB in 1s (1,271 kB/s)
Selecting previously unselected package dkms.
(Reading database ... 303649 files and directories currently installed.)
Preparing to unpack .../dkms_2.2.0.3-2ubuntu3_all.deb ...
Unpacking dkms (2.2.0.3-2ubuntu3) ...
Selecting previously unselected package broadcom-sta-dkms.
Preparing to unpack .../broadcom-sta-dkms_6.30.223.248-3_all.deb ...
Unpacking broadcom-sta-dkms (6.30.223.248-3) ...
Processing triggers for man-db (2.7.0.2-5) ...
Setting up dkms (2.2.0.3-2ubuntu3) ...
Setting up broadcom-sta-dkms (6.30.223.248-3) ...
Loading new broadcom-sta-6.30.223.248 DKMS files...
First Installation: checking all kernels...
Building only for 3.19.0-21-generic
Building initial module for 3.19.0-21-generic
Error! Bad return status for module build on kernel: 3.19.0-21-generic (x86_64)
Consult /var/lib/dkms/broadcom-sta/6.30.223.248/build/make.log for more 
information.
```
The error is
```
/var/lib/dkms/broadcom-sta/6.30.223.248/build/src/wl/sys/wl_cfg80211_hybrid.c:2013:9:
 error: too few arguments to function ‘cfg80211_inform_bss’
  cbss = cfg80211_inform_bss(wiphy, channel, (const u8 *)(bi-BSSID.octet),
```

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

Title:
  broadcom-sta-dkms 6.30.223.248-3: broadcom-sta kernel module failed to
  build error: incompatible type for argument 3 of
  ‘cfg80211_inform_bss’]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/1408385/+subscriptions

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

[Bug 1466844] [NEW] upgrade to 0.43

2015-06-19 Thread Nico Schlömer
Public bug reported:

It's been released in July 2014 (now about a year ago) and there are
released Debian packages for it [1].

[1] https://packages.debian.org/jessie/gource

** Affects: gource (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/1466844

Title:
  upgrade to 0.43

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

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


[Bug 1387199] Re: 14e4:4331 [MacBookPro8, 1] broadcom-sta kernel crashes

2015-05-12 Thread Nico Schlömer
@Gerry count me in for a +1.

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

Title:
  14e4:4331 [MacBookPro8,1] broadcom-sta kernel crashes

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

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


[Bug 1387199] Re: 14e4:4331 [MacBookPro8, 1] broadcom-sta kernel crashes

2015-05-08 Thread Nico Schlömer
@Gerry Cool! Would you mind putting this in a repository?

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

Title:
  14e4:4331 [MacBookPro8,1] broadcom-sta kernel crashes

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

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


[Bug 1446755] Re: vivid: hdf5-openmpi needlessly depends on hdf5-serial

2015-04-21 Thread Nico Schlömer
Forget the report, the dependency is pulled in by libmatio-dev [1].

[1] http://packages.ubuntu.com/vivid/libmatio-dev

** Changed in: hdf5 (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/1446755

Title:
  vivid: hdf5-openmpi needlessly depends on hdf5-serial

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

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


[Bug 1446755] [NEW] vivid: hdf5-openmpi needlessly depends on hdf5-serial

2015-04-21 Thread Nico Schlömer
Public bug reported:

From Ubuntu Vivid on, there is a dependency in one of the HDF5 packages on 
libhdf5-dev. I've browsed through the individual packages and coudn't find the 
exact cause, but I see libhdf5-dev pulled in when installing 
libhdf5-openmpi-dev [1]. This is different from the previous behavior [2].
This causes CMake problems identifying the correct version and make a couple of 
our builds fail.

I suppose the first task here is to find out why exactly libhdf5-dev is
pulled in.

[1] 
https://launchpadlibrarian.net/203916869/buildlog_ubuntu-vivid-amd64.trilinos_12.1~20150422-vivid1_BUILDING.txt.gz
[2] 
https://launchpadlibrarian.net/203920898/buildlog_ubuntu-utopic-amd64.trilinos_12.1~20150422-utopic1_BUILDING.txt.gz

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

** Description changed:

- From Ubuntu Vivid on, there is a dependency in one of the HDF5 packages
- on libhdf5-dev. I've browsed through the individual packages and coudn't
- find the exact cause, but I see libhdf5-dev pulled in when installing
- libhdf5-openmpi-dev [1]. This causes CMake problems identifying the
- correct version and make a couple of our builds fail.
+ From Ubuntu Vivid on, there is a dependency in one of the HDF5 packages on 
libhdf5-dev. I've browsed through the individual packages and coudn't find the 
exact cause, but I see libhdf5-dev pulled in when installing 
libhdf5-openmpi-dev [1]. This is different from the previous behavior [2].
+ This causes CMake problems identifying the correct version and make a couple 
of our builds fail.
  
  I suppose the first task here is to find out why exactly libhdf5-dev is
  pulled in.
  
- [1] https://launchpadlibrarian.net/203916869/buildlog_ubuntu-vivid-
- amd64.trilinos_12.1~20150422-vivid1_BUILDING.txt.gz
+ [1] 
https://launchpadlibrarian.net/203916869/buildlog_ubuntu-vivid-amd64.trilinos_12.1~20150422-vivid1_BUILDING.txt.gz
+ [2] 
https://launchpadlibrarian.net/203920898/buildlog_ubuntu-utopic-amd64.trilinos_12.1~20150422-utopic1_BUILDING.txt.gz

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

Title:
  vivid: hdf5-openmpi needlessly depends on hdf5-serial

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

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


[Bug 1387199] Re: 14e4:4331 broadcom-sta kernel crashes

2014-11-06 Thread Nico Schlömer
This is with a MacBook Pro (13-inch, Early 2011, MacBookPro8,1).

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

Title:
  14e4:4331 broadcom-sta kernel crashes

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

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


[Bug 1306991] Re: pip stops with ImportError for request-Modul

2014-10-30 Thread Nico Schlömer
This is probably a python-requests bug; see https://bugs.debian.org
/cgi-bin/bugreport.cgi?bug=766419#23. (It's fixed in Debian.)

** Bug watch added: Debian Bug tracker #766419
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766419

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

Title:
  pip stops with ImportError for request-Modul

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1306991/+subscriptions

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


[Bug 1387199] Re: 14e4:4331 broadcom-sta kernel crashes

2014-10-30 Thread Nico Schlömer
 As well, please feel free to file a bug report about this throughput
issue

Indeed, the issues with the b43 driver are separate from the one
described in this bug report. Let's discuss those in a new report.

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

Title:
  14e4:4331 broadcom-sta kernel crashes

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

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


[Bug 1387199] [NEW] broadcom-sta kernel crashes

2014-10-29 Thread Nico Schlömer
Public bug reported:

About once per hour, the `wl` kernel module of `bcmwl-kernel-source` crashes.  
`/var/log/syslog` contains
```
Oct 29 15:10:19 fuji kernel: [73721.579735]  0009 880262bdbdd0 
8277fcbc 
Oct 29 15:10:19 fuji kernel: [73721.579738]  880262bdbe08 8206fd8d 
880260aa5000 8801367e0840
Oct 29 15:10:19 fuji kernel: [73721.579742]  00a2 8801facf9d80 
880261f28a78 880262bdbe18
Oct 29 15:10:19 fuji kernel: [73721.579745] Call Trace:
Oct 29 15:10:19 fuji kernel: [73721.579755]  [8277fcbc] 
dump_stack+0x45/0x56
Oct 29 15:10:19 fuji kernel: [73721.579760]  [8206fd8d] 
warn_slowpath_common+0x7d/0xa0
Oct 29 15:10:19 fuji kernel: [73721.579764]  [8206fe6a] 
warn_slowpath_null+0x1a/0x20
Oct 29 15:10:19 fuji kernel: [73721.579780]  [c030b981] 
cfg80211_roamed+0x91/0xa0 [cfg80211]
Oct 29 15:10:19 fuji kernel: [73721.579828]  [c06958cb] 
wl_notify_roaming_status+0xcb/0x150 [wl]
Oct 29 15:10:19 fuji kernel: [73721.579870]  [c0692602] 
wl_event_handler+0x62/0x260 [wl]
Oct 29 15:10:19 fuji kernel: [73721.579911]  [c06925a0] ? 
wl_free_wdev.isra.23+0x80/0x80 [wl]
Oct 29 15:10:19 fuji kernel: [73721.579915]  [82094aeb] 
kthread+0xdb/0x100
Oct 29 15:10:19 fuji kernel: [73721.579920]  [82094a10] ? 
kthread_create_on_node+0x1c0/0x1c0
Oct 29 15:10:19 fuji kernel: [73721.579924]  [82787c3c] 
ret_from_fork+0x7c/0xb0
Oct 29 15:10:19 fuji kernel: [73721.579928]  [82094a10] ? 
kthread_create_on_node+0x1c0/0x1c0
Oct 29 15:10:19 fuji kernel: [73721.579930] ---[ end trace f2631d4af0f9ba2d ]---
```

Further system info:
```
$ lspci -vvnn | grep -A 11 Network
03:00.0 Network controller [0280]: Broadcom Corporation BCM4331 802.11a/b/g/n 
[14e4:4331] (rev 02)
 Subsystem: Apple Inc. AirPort Extreme [106b:00d6]
 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: 256 bytes
 Interrupt: pin A routed to IRQ 17
 Region 0: Memory at a060 (64-bit, non-prefetchable) [size=16K]
 Capabilities: access denied
 Kernel driver in use: wl

04:00.0 FireWire (IEEE 1394) [0c00]: LSI Corporation FW643 [TrueFire] PCIe 
1394b Controller [11c1:5901] (rev 08) (prog-if 10 [OHCI])
 Subsystem: LSI Corporation FW643 [TrueFire] PCIe 1394b Controller [11c1:5900]
```
```
$ lsb_release -rd
Description:Ubuntu 14.10
Release:14.10
```
```
$ uname -a
Linux fuji 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64 
x86_64 x86_64 GNU/Linux
```
```
$ apt-cache policy bcmwl-kernel-source
bcmwl-kernel-source:
  Installed: 6.30.223.248+bdcom-0ubuntu1
  Candidate: 6.30.223.248+bdcom-0ubuntu1
  Package pin: (not found)
  Version table:
 *** 6.30.223.248+bdcom-0ubuntu1 1001
500 http://ubuntu.mirror.tudos.de/ubuntu/ utopic/restricted amd64 
Packages
100 /var/lib/dpkg/status
```
```
$ sudo dmidecode -s bios-version
   MBP81.88Z.0047.B27.1201241646
```
```
$ sudo dmidecode -s bios-release-date
01/24/12
```
```
$ sudo dmidecode -s baseboard-product-name
Mac-94245B3640C91C81
```
```
$ sudo dmidecode -s baseboard-manufacturer
Apple Inc.
```

** Affects: bcmwl (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/1387199

Title:
  broadcom-sta kernel crashes

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-29 Thread Nico Schlömer
 So when the WiFi goes out in Utopic, is there anything in your logs
capturing a crash of some sort?

Yup. I've opened a new bug about one issue at
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1387199.

(This thread wasn't intended for technical details of individual `wl`
bugs, but rather for a discussion of having older driver versions in the
tree.)

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1387199] Re: 14e4:4331 broadcom-sta kernel crashes

2014-10-29 Thread Nico Schlömer
 + Did this problem not occur in a release prior to Utopic?

Yes, it did occur in trusty and saucy. It did not occur in raring.

 + Does using the open source b43 driver provide a WORKAROUND

With b43, although without kernel crashes, I'm getting far less
throughput than with `bcmwl-kernel-source`. Hence, it's not a workaround
I can use.

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

Title:
  14e4:4331 broadcom-sta kernel crashes

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-29 Thread Nico Schlömer
 this report is considered closed.

My intention is to open a discussion about providing more than one
binary package for closed-source drivers, but you have made quite clear
that this is not wanted here. I regret this decision.

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-28 Thread Nico Schlömer
@penalvch In the context of this bug report, your comment doesn't make
much sense to me. I assume it was automatically generated.

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-28 Thread Nico Schlömer
@penalvch I do have the affected hardware. The suggested command opens a
window saying No additional information collected..

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-28 Thread Nico Schlömer
```
$ lspci -vvnn | grep -A 11 Network
03:00.0 Network controller [0280]: Broadcom Corporation BCM4331 802.11a/b/g/n 
[14e4:4331] (rev 02)
Subsystem: Apple Inc. AirPort Extreme [106b:00d6]
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: 256 bytes
Interrupt: pin A routed to IRQ 17
Region 0: Memory at a060 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: wl

04:00.0 FireWire (IEEE 1394) [0c00]: LSI Corporation FW643 [TrueFire] PCIe 
1394b Controller [11c1:5901] (rev 08) (prog-if 10 [OHCI])
Subsystem: LSI Corporation FW643 [TrueFire] PCIe 1394b Controller 
[11c1:5900]
```
```
$ lsb_release -rd
Description:Ubuntu 14.10
Release:14.10
```
```
uname -a
Linux fuji 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64 
x86_64 x86_64 GNU/Linux
```
```
apt-cache policy bcmwl-kernel-source
bcmwl-kernel-source:
  Installed: 6.30.223.248+bdcom-0ubuntu1
  Candidate: 6.30.223.248+bdcom-0ubuntu1
  Package pin: (not found)
  Version table:
 *** 6.30.223.248+bdcom-0ubuntu1 1001
500 http://ubuntu.mirror.tudos.de/ubuntu/ utopic/restricted amd64 
Packages
100 /var/lib/dpkg/status
```
```
$ sudo dmidecode -s bios-version
   MBP81.88Z.0047.B27.1201241646
```
```
$ sudo dmidecode -s bios-release-date
01/24/12
```
```
$ sudo dmidecode -s baseboard-product-name
Mac-94245B3640C91C81
```
```
$ sudo dmidecode -s baseboard-manufacturer
Apple Inc.
```

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1289857] Re: offer 6.20.155.1 build in trusty

2014-10-28 Thread Nico Schlömer
 Saying it's not working it's slow is not enough information.

The problem here is that we are dealing with with closed-source
software, so I cannot point to a place in the code that should be
implemented differently. I'm also not capable of running production
tests for counting the kernel oopses per day, or whatever metric the
quality of a driver is measured by. All I can say is that wl oopses more
frequently now than it did before.

My perception is that the old driver used to work better than Broadcom's
newer release, and the same seems to be true for many other people; see
the links in the OP. This is why I opened this bug.

I realize that this isn't much for you to work with. In particular, I
don't expect anyone to track down the bug. This is why I suggest to not
immediately discard old drivers on the arrival of a newer version.


 As well, does using Utopic change anything for you in this issue?

The new driver still accounts for about one wifi outage per hour here.
One OFF-ON on WiFi switch brings it back on.

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

Title:
  offer 6.20.155.1 build in trusty

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

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


[Bug 1356756] Re: broadcom-sta-dkms 6.30.223.141-1: broadcom-sta kernel module failed to build [error: macro __DATE__ might prevent reproducible builds]

2014-10-23 Thread Nico Schlömer
@jsalisbury Really? I just downloaded 6.30.223.248 from [1] and still
found `__DATE__` and `__TIME__` used in `src/wl/sys/wl_linux.c`. Haven't
tried installing it, though.


[1] http://www.broadcom.com/support/802.11/linux_sta.php

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

Title:
  broadcom-sta-dkms 6.30.223.141-1: broadcom-sta kernel module failed to
  build [error: macro __DATE__ might prevent reproducible builds]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/1356756/+subscriptions

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


[Bug 1369074] [NEW] upgrade to 6.0.0

2014-09-13 Thread Nico Schlömer
Public bug reported:

Scotch 6.0.0 has been released on 2012-12-01. Please bump.

http://gforge.inria.fr/frs/?group_id=248

** Affects: scotch (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/1369074

Title:
  upgrade to 6.0.0

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

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


[Bug 1365152] [NEW] upgrade to OpenMPI 1.8.*

2014-09-03 Thread Nico Schlömer
Public bug reported:

OpenMPI 1.8.0 was released a while ago, OpenMPI 1.8.2 is now (Sep. 2014)
the most current version.

Please upgrade the version available for Ubuntu accordingly.

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


** Tags: upgrade-software-version

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

Title:
  upgrade to OpenMPI 1.8.*

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

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


[Bug 1268319] Re: upgrade to 4.3.0

2014-07-19 Thread Nico Schlömer
An upgrade for 4.3.3 is in the works for Debian; we're basically just
waiting for an upstream release at this point.

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

Title:
  upgrade to 4.3.0

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

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


[Bug 1329220] Re: Default CMake build type changed between saucy and trusty

2014-07-02 Thread Nico Schlömer
** Description changed:

  Comparing the nightly build for netCDF on saucy [1] and trusty [2], I
  noticed that the default CMAKE_BUILD_TYPE changed from RelWithDebInfo to
  None. I suppose this is in accordance with the discussion on Debian's
  debhelper in [3]. As opposed to this, however, it seems from [2] that
  the respective environment variables (CFLAGS and  friends) have not been
  changed to
  
  CFLAGS=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat
  -Werror=format-security
  
+ as done in Debian.
+ 
  Can anyone confirm or disconfirm this?
  
  [1] 
https://launchpadlibrarian.net/177440321/buildlog_ubuntu-saucy-amd64.netcdf_1%3A4.3.3~20140612-saucy2_UPLOADING.txt.gz
  [2] 
https://launchpadlibrarian.net/177439008/buildlog_ubuntu-trusty-amd64.netcdf_1%3A4.3.3~20140612-trusty2_UPLOADING.txt.gz
  [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701233

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

Title:
  Default CMake build type changed between saucy and trusty

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

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


[Bug 1329713] Re: dpkg-buildflags not honored by dpkg-buildpackage

2014-06-13 Thread Nico Schlömer
Minimal Debian package to highlight the misbehavior.

Unpack and execute
```
dpkg-buildpackage -rfakeroot -b
```
in the folder. On trusty, you will see
```
/usr/bin/x86_64-linux-gnu-gcc-o CMakeFiles/hello.dir/hello.c.o   -c 
/home/nschloe/tmp/test/hello.c

```
On precise, you will see
```
/usr/bin/cc   -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Wformat-security-o CMakeFiles/hello.dir/hello.c.o   -c 
/tmp/2014-06-13-checkflags/hello.c
```

** Attachment added: 2014-06-13-checkflags.tar.bz2
   
https://bugs.launchpad.net/ubuntu/+source/dpkg/+bug/1329713/+attachment/4130921/+files/2014-06-13-checkflags.tar.bz2

** Description changed:

- When build a package using
+ When building a package using
  ```
  $ dpkg-buildpackage -rfakeroot -b
  ```
  the build flags as determined by
  ```
  $ dpkg-buildflags
  ```
  are not added to the environment. The bug is present in trusty, and was not 
present in precise.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: dpkg-dev 1.17.5ubuntu5.3
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Jun 13 12:26:08 2014
  InstallationDate: Installed on 2013-11-15 (209 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  PackageArchitecture: all
  SourcePackage: dpkg
  UpgradeStatus: Upgraded to trusty on 2014-04-17 (56 days ago)

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

Title:
  dpkg-buildflags not honored by dpkg-buildpackage

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

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


[Bug 1329713] [NEW] dpkg-buildflags not honored by dpkg-buildpackage

2014-06-13 Thread Nico Schlömer
Public bug reported:

When building a package using
```
$ dpkg-buildpackage -rfakeroot -b
```
the build flags as determined by
```
$ dpkg-buildflags
```
are not added to the environment. The bug is present in trusty, and was not 
present in precise.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: dpkg-dev 1.17.5ubuntu5.3
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: GNOME
Date: Fri Jun 13 12:26:08 2014
InstallationDate: Installed on 2013-11-15 (209 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
PackageArchitecture: all
SourcePackage: dpkg
UpgradeStatus: Upgraded to trusty on 2014-04-17 (56 days ago)

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


** Tags: amd64 apport-bug trusty

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

Title:
  dpkg-buildflags not honored by dpkg-buildpackage

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

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


[Bug 1329220] Re: Default CMake build type changed between saucy and trusty

2014-06-12 Thread Nico Schlömer
** Description changed:

  Comparing the nightly build for netCDF on saucy [1] and trusty [2], I
  noticed that the default CMAKE_BUILD_TYPE changed from RelWithDebInfo to
  None. I suppose this is in accordance with the discussion on Debian's
  debhelper in [3]. As opposed to this, however, it seems from [2] that
  the respective environment variables (CFLAGS and  friends) have not been
  changed to
  
  CFLAGS=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat
  -Werror=format-security
  
- Can anyone confirm or refute this?
- 
+ Can anyone confirm or disconfirm this?
  
  [1] 
https://launchpadlibrarian.net/177440321/buildlog_ubuntu-saucy-amd64.netcdf_1%3A4.3.3~20140612-saucy2_UPLOADING.txt.gz
  [2] 
https://launchpadlibrarian.net/177439008/buildlog_ubuntu-trusty-amd64.netcdf_1%3A4.3.3~20140612-trusty2_UPLOADING.txt.gz
  [3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701233

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

Title:
  Default CMake build type changed between saucy and trusty

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

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


[Bug 1326842] [NEW] can't click on warning window, window not active

2014-06-05 Thread Nico Schlömer
Public bug reported:

http://askubuntu.com/questions/477228/cant-click-on-warning-window-
window-not-active


When I want to connect to a network using a certificate, and I don't provide 
one, the network manager will open the window No Certificate Authority 
certificate chosen, with the buttons Ignore and Choose a CA certificate. I 
would like to Ignore, but I can't click on the popped-up window. The window 
below (Authentication required by Wi-Fi network) remains active, and I can 
click anything there, e.g., Cancel.

Pressing the tab-key doesn't to anything, and the alt+tab list just
contains one entity Network.

Consequence: I cannot connect to the network.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: network-manager 0.9.8.8-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
Uname: Linux 3.13.0-27-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: GNOME
Date: Thu Jun  5 17:05:27 2014
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2013-11-15 (202 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
IpRoute:
 default via 192.168.43.1 dev eth1  proto static 
 192.168.43.0/24 dev eth1  proto kernel  scope link  src 192.168.43.14  metric 
9 
 192.168.122.0/24 dev virbr0  proto kernel  scope link  src 192.168.122.1
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=true
 WimaxEnabled=true
SourcePackage: network-manager
UpgradeStatus: Upgraded to trusty on 2014-04-17 (48 days ago)
nmcli-dev:
 DEVICE TYPE  STATE DBUS-PATH   
   
 eth1   802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/1  
 eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/0
nmcli-nm:
 RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   WIFI  
 WWAN-HARDWARE   WWAN  
 running 0.9.8.8connected   enabled   enabled 
enabledenabled enabled

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


** Tags: amd64 apport-bug trusty

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

Title:
  can't click on warning window, window not active

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

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


[Bug 1310277] [NEW] provide 6.20.* driver

2014-04-20 Thread Nico Schlömer
Public bug reported:

The 6.30.* has some regressions that make working with a BCM4331 chipset
hard to impossible. There are blog posts which describe how to roll
back, e.g., https://zoni.nl/posts/2013/11/09/fixing-the-broadcom-
bcm4331-wireless-drivers-on-ubuntu-1310/, and replies suggest that this
is working well. (I can confirm this.)

I would hence suggest to continue to provide a 6.20.* version of
broadcom-sta.

** Affects: broadcom-sta (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/1310277

Title:
  provide 6.20.* driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/1310277/+subscriptions

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


[Bug 1289857] [NEW] offer 6.20.155.1 build on saucy, trusty, ...

2014-03-08 Thread Nico Schlömer
Public bug reported:

As opposed to open-source software, proprietary software has the USP
that newer versions are not always better. This seems to be the case for
the 6.30.223.141 driver which offers considerably worse performance for
many users than its predecessor 6.20.155.1. This assumption is based on
the reactions https://plus.google.com/+NickGroenen/posts/HF828QcPK6k
to instructions for a forthport of 6.20.155.1 to saucy
https://zoni.nl/posts/2013/11/09/fixing-the-broadcom-bcm4331-wireless-
drivers-on-ubuntu-1310/.

Please continue to provide older BCM packages in the tree to make it
easier for users to switch.

** Affects: bcmwl (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/1289857

Title:
  offer 6.20.155.1 build on saucy, trusty, ...

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

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


[Bug 666881] Re: The SuperLU package must be updated

2014-01-28 Thread Nico Schlömer
See this (resolved) Debian bug report for more details:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709165.

** Bug watch added: Debian Bug tracker #709165
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709165

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

Title:
  The SuperLU package must be updated

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

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


[Bug 1268319] [NEW] upgrade to 4.3.0

2014-01-12 Thread Nico Schlömer
Public bug reported:

The netCDF version currently available is 4.1.3 and was released in June 2011.
Numerous releases haven't made it into Ubuntu/Debian since then, the latest 
being 4.3.1 as of November 2013. Please bump.

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


** Tags: upgrade-software-version

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

Title:
  upgrade to 4.3.0

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

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


[Bug 1255294] [NEW] UMFPACK 5.6.2 bump

2013-11-26 Thread Nico Schlömer
Public bug reported:

UMFPACK 5.6.2 has been released
(http://www.cise.ufl.edu/research/sparse/umfpack/), please bump.

** Affects: umfpack (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/1255294

Title:
  UMFPACK 5.6.2 bump

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

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


[Bug 1246802] Re: STL std::nth_element bug (fixed upstream)

2013-11-25 Thread Nico Schlömer
Finding out that this bug affects me cost me a day, upgrading to gcc-4.8
4.8.1-10ubuntu9 in saucy-proposed fixes the issue.

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

Title:
  STL std::nth_element bug (fixed upstream)

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

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


[Bug 1166425] [NEW] provide package for OpenMPI

2013-04-08 Thread Nico Schlömer
Public bug reported:

Most MPI-aware packages provide packages for both MPICH(2) and OpenMPI, e.g., 
https://launchpad.net/ubuntu/+source/hdf5.
This is a feature request for also providing OpenMPI packages for SCALAPACK.

** Affects: scalapack (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/1166425

Title:
  provide package for OpenMPI

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

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


[Bug 1155806] [NEW] CGAL upgrade to 4.1

2013-03-15 Thread Nico Schlömer
Public bug reported:

CGAL 4.1 has been released in October 2012, cf. 
https://gforge.inria.fr/frs/?group_id=52.
Please bump.

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


** Tags: upgrade-software-version

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

Title:
  CGAL upgrade to 4.1

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

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


[Bug 1155810] [NEW] upgrade to PETSc 3.3

2013-03-15 Thread Nico Schlömer
Public bug reported:

PETSc 3.3 has been release in June 2012, cf. 
http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/.
Please bump.

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


** Tags: upgrade-software-version

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

Title:
  upgrade to PETSc 3.3

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

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


[Bug 1041742] Re: netcdf build against parallel HDF5

2013-02-21 Thread Nico Schlömer
I did some work for this in https://launchpad.net/~nschloe/+archive
/trilinos-nightly which you may want to check out. It's based off of
netCDF's latest dev version which provides a CMake builds, doing away
with many of the flaws previously present.

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

Title:
  netcdf build against parallel HDF5

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

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


[Bug 1109177] [NEW] openmpi-bin: dependency on ssh?

2013-01-29 Thread Nico Schlömer
Public bug reported:

I just bumped into a nasty error when submitting a package to the launchpad 
build farm that contains a number of MPI test cases (involving mpiexec). All of 
the tests failed with funny orte error messages.
I was eventually abel to track it down to 
http://www.open-mpi.org/community/lists/users/2010/07/13508.php which says:

 The problem was that orted couldn't find ssh nor rsh on that machine.

Adding ssh to the list of build dependencies indeed fixed the error.

My question now is: Should ssh be in the list of dependencies of
openmpi-bin itself? Has anyone else had similar issues before?

** Affects: openmpi (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/1109177

Title:
  openmpi-bin: dependency on ssh?

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

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


[Bug 1103400] [NEW] updade to 4.0.2

2013-01-23 Thread Nico Schlömer
Public bug reported:

A feature request:
ParMETIS has been released with version 4.0.2 in 2011, cf. 
http://glaros.dtc.umn.edu/gkhome/metis/parmetis/download. An update of the 
Ubuntu/Debian package would be appreciated.

** Affects: parmetis (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/1103400

Title:
  updade to 4.0.2

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

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


[Bug 1103400] Re: update to 4.0.2

2013-01-23 Thread Nico Schlömer
** Summary changed:

- updade to 4.0.2
+ update to 4.0.2

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

Title:
  update to 4.0.2

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

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


[Bug 1087796] [NEW] update to Trilinos 11

2012-12-07 Thread Nico Schlömer
Public bug reported:

Hi,

Precise is the first Ubuntu version not to feature a Trilinos release
anymore; the previous releases shipped with outdated version (Trilinos
10.4.0). This bug is to address this issue by providing an up-to-date
Trilinos build for Ubuntu 13.04.

I've been working on getting an up-to-date build in shape at
https://launchpad.net/~nschloe/+archive/numerical (stable) and
https://launchpad.net/~nschloe/+archive/trilinos-nightly (nightly), and
things are looking pretty okay as far as I can tell.

Differences from the the previous (10.4.0) build are:
  * most patches are now included upstream;
  * PyTrilinos is not yet included (a patch is in the works);
  * the headers reside in /usr/include/ as is default for Trilinos builds 
(previous Ubuntu builds installed into /usr/include/trilinos/).

Cheers,
Nico

** Affects: trilinos (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/1087796

Title:
  update to Trilinos 11

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

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


[Bug 1064540] [NEW] Java components not installed, but referenced in CMake files

2012-10-09 Thread Nico Schlömer
Public bug reported:

With a clean installation, I get the following kind of warnings when
doing

FIND_PACKAGE(VTK)

in CMake:

= *snip* =
-- The imported target vtkParseJava references the file
   /usr/bin/vtkParseJava
but this file does not exist.  Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
   /usr/lib/vtk-5.8/VTKTargets-release.cmake
but not all the files it references.
= *snap* =

Note that those are warnings, not errors.

** Affects: vtk (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/1064540

Title:
  Java components not installed, but referenced in CMake files

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

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


[Bug 1062246] [NEW] slepcsys.h includes nonexistant slepcconf.h

2012-10-05 Thread Nico Schlömer
Public bug reported:

The file

/usr/include/slepc/slepcsys.h

includes the nonexistant file slepcconf.h which leads to errors when
compiling against slepc.

** Affects: slepc (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/1062246

Title:
  slepcsys.h includes nonexistant slepcconf.h

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

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


[Bug 1059746] [NEW] matio 1.5.0 was released, please bump

2012-10-01 Thread Nico Schlömer
Public bug reported:

cf. http://sourceforge.net/news/?group_id=176643id=307277

** Affects: libmatio (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/1059746

Title:
  matio 1.5.0 was released, please bump

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

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


[Bug 1041742] [NEW] netcdf build against parallel HDF5

2012-08-25 Thread Nico Schlömer
Public bug reported:

So far, netCDF depends on libhdf5-serial-dev, restricting the I/O to serial. 
There are a number of parallel HDF5 installation options in Ubuntu already, 
e.g., libhdf5-mpi-dev or libhdf5-openmpi-dev. NetCDF could as well build 
against those, allowing for parallel I/O. One change in the configure script is 
that NetCDF would need to be configured with the respective MPI compiler.
I'm not sure what the cleanest options here would be. Possible a package 
libnetcdf-openmpi-dev?

** Affects: netcdf (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/1041742

Title:
  netcdf build against parallel HDF5

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

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


[Bug 867806] Re: df -h permission denied error

2012-05-09 Thread Nico Schlömer
This bug also affects anyone trying get disk usage statistics using Cacti.
The script executed by Cacti is

$ perl /usr/share/cacti/site/scripts/query_unix_partitions.pl get
available /dev/sda4

which fails with

/bin/df: `/var/lib/lightdm/.gvfs': Permission denied

--Nico

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

Title:
  df -h permission denied error

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

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


[Bug 997415] [NEW] consider upgrading to netCDF 4.1.3 in Precise

2012-05-09 Thread Nico Schlömer
Public bug reported:

Hi,

netCDF 4.1.2 brings a number of substantial bugfixes comparing to the
(currently present) 4.1.1, e.g., ncdump only now being usable for larger
data sets. For details see http://www.unidata.ucar.edu/software/netcdf
/release-notes-4.1.2.html.

Also, NetCDF 4.1.3 has been in Debian unstable for several months now.
http://packages.debian.org/changelogs/pool/main/n/netcdf/netcdf_4.1.3-6/changelog.html

Cheers,
Nico

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


** Tags: upgrade-software-version

** Tags removed: software upgrade
** Tags added: upgrade-software-version

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

Title:
  consider upgrading to netCDF 4.1.3 in Precise

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

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


[Bug 954871] [NEW] paraview-python is missing dependencies

2012-03-14 Thread Nico Schlömer
*** This bug is a duplicate of bug 882995 ***
https://bugs.launchpad.net/bugs/882995

Public bug reported:

Hi,

after installing paraview-python,

import paraview.simple

in python fails with the error message

ImportError: No module named vtkCommonPytho

I guess some VTK package is missing, or the VTK and ParaView
installations aren't compatible.

Cheers,
Nico

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

** This bug has been marked a duplicate of bug 882995
   crash on from paraview.simple import * after 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/954871

Title:
  paraview-python is missing dependencies

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

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


[Bug 367399] Re: Dragging with touchpad on MacBook does not work

2011-11-01 Thread Nico Schlömer
I have the same issue on a Macbook 8,1 with Ubuntu 11.10.

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

Title:
  Dragging with touchpad on MacBook does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/367399/+subscriptions

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


[Bug 367399] Re: Dragging with touchpad on MacBook does not work

2011-11-01 Thread Nico Schlömer
Okay, I got dragging figured out:
It only requires one finger. Mouse the cursor over the bar above a window, 
click (don't release), and without taking your finger off of the touchpad, move 
around.

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

Title:
  Dragging with touchpad on MacBook does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/367399/+subscriptions

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


[Bug 875070] Re: gnome terminal intercepts my alt key combinations when it shouldn't

2011-10-20 Thread Nico Schlömer
A workaround is described on http://askubuntu.com/questions/66371/gnome-
terminal-keeps-the-menubar-even-when-the-profile-is-configured-to-hide-
it

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

Title:
  gnome terminal intercepts my alt key combinations when it shouldn't

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/875070/+subscriptions

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