[Bug 788494] [NEW] broadcast does not show anything/ can not load when try to add any account after clicking 'Authenticate'

2011-05-25 Thread Arpit Sharma
Public bug reported:

Binary package hint: gwibber

When I try to add any account for eg, Twitter, and I click on
'Authenticate' button, nothing happens and I am not able to connect.

** Affects: gwibber (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/788494

Title:
  broadcast does not show anything/ can not load when try to add any
  account after clicking 'Authenticate'

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


[Bug 706089] Re: Frequency scaling doesn't work in current kernels

2011-05-25 Thread fireandfuel
Please post which CPU you have and the contents of the following files -
after trying to scale the frequency:

/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq (normally needs root 
privileges to read)
/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

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

Title:
  Frequency scaling doesn't work in current kernels

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


[Bug 777936] Re: libdvdread fills memory and crashes when running lsdvd and other tools

2011-05-25 Thread Steffen
I can confirm this error on Ubuntu 10.04 amd64

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

Title:
  libdvdread fills memory and crashes when running lsdvd and other tools

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


[Bug 783389] Re: not print 11.04 (USB port; HP1020 laserjet); driver install

2011-05-25 Thread fe...@mail.ru
** Tags added: x86-64

** Tags added: amd64
** Tags removed: x86-64

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

Title:
  not print  11.04 (USB port; HP1020 laserjet); driver install

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


[Bug 264961] Re: GNU Binutils for Ubuntu, internal error, assign_file_positions_for_non_load_sections

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 7 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=6494.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-05-08T12:43:20+00:00 Matthias Klose wrote:

building debian-installer with current binutils (20080425) ftbfs (2.18.1
works)

see
http://people.debian.org/~lucas/logs/2008/04/30/debian-installer_20080227_sid32-dpkg.buildlog

reducing libnewt.so.0.52
/usr/lib//libnewt.so.0.5272900L
./tmp/cdrom_gtk/tree/lib/libnewt.sBFD: BFD (GNU Binutils for Debian)
2.18.50.20080425 internal error, aborting at ../../bfd/elf.c line 4622 in
assign_file_positions_for_non_load_sections

BFD: Please report this bug.

[asking the debian-installer team for a reduced testcase]

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/0


On 2008-05-10T02:12:31+00:00 Alan Modra wrote:

I think your log suffers from lack of stdout and stderr flushing. 
libnewt.so.0.52 is a red herring.  The real problem occurs on
  objcopy --strip-unneeded -R .note -R .comment /lib/libpthread.so.0

Don't bother reducing it, libpthread.so isn't too large to attach to this bug
report.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/1


On 2008-08-09T13:08:51+00:00 Alan Modra wrote:

Can we have the libpthread.so.0 that triggers this bug, if the bug is still
present in CVS binutils?

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/2


On 2008-09-17T11:25:36+00:00 Alan Modra wrote:

Testcase in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493651

  GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
0x0003c0 R   0x1

I don't know how we managed to get p_filesz (0x3d) != p_memsz (0x3c0).
HJ, why did you add the p_filesz == p_memsz test in the following:

  if (map->p_type == PT_GNU_RELRO
  && segment->p_filesz == segment->p_memsz)
{
  /* The PT_GNU_RELRO segment may contain the first a few
 bytes in the .got.plt section even if the whole .got.plt
 section isn't in the PT_GNU_RELRO segment.  We won't
 change the size of the PT_GNU_RELRO segment.  */
  map->p_size = segment->p_filesz;
  map->p_size_valid = 1;
}

That results in p_size_valid == 0 for this testcase which then triggers
the abort.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/7


On 2008-09-17T17:19:57+00:00 Hjl-tools wrote:

(In reply to comment #3)
> Testcase in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=493651
> 
>   GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
> 0x0003c0 R   0x1
> 
> I don't know how we managed to get p_filesz (0x3d) != p_memsz (0x3c0).
> HJ, why did you add the p_filesz == p_memsz test in the following:
> 
>   if (map->p_type == PT_GNU_RELRO
> && segment->p_filesz == segment->p_memsz)
>   {
> /* The PT_GNU_RELRO segment may contain the first a few
>bytes in the .got.plt section even if the whole .got.plt
>section isn't in the PT_GNU_RELRO segment.  We won't
>change the size of the PT_GNU_RELRO segment.  */
> map->p_size = segment->p_filesz;
> map->p_size_valid = 1;
>   }
> 
> That results in p_size_valid == 0 for this testcase which then triggers the 
> abort.

Something is wrong with GNU_RELRO segment in libpthread-2.7.so:

1. Why is p_filesz != p_memsz?
2. What does p_filesz > p_memsz mean?

I got

  GNU_RELRO  0x016bc8 0x00216bc8 0x00216bc8 0x0003d0
0x0003c0 R   0x1
...
  08 .ctors .dtors .jcr .data.rel.ro 

For libpthread-2.7.so in Fedora 8, I got

  GNU_RELRO  0x015ba8 0x003035015ba8 0x003035015ba8 0x000458
0x000458 R   0x1
...
   08 .ctors .dtors .jcr .data.rel.ro .dynamic .got 

Please provide ALL inputs used to create the bad libpthread-2.7.so.

Reply at: https://bugs.launchpad.net/binutils/+bug/264961/comments/8


On 2009-03-26T12:24:09+00:00 Cvs-commit wrote:

Subject: Bug 6494

CVSROOT:/cvs/src
Module name:src
Changes by: amo...@sourceware.org   2009-03-26 12:23:52

Modified files:
bfd: ChangeLog elf.c 

Log message:
PR 6494
* elf.c (copy_elf_program_header): Do not check that PT_GNU_RELRO
p_filesz and p_memsz are equal.  Use p_memsz as the segment size.
(assign_file_positions_for_non_load_sections): 

[Bug 692168] Re: Pidgin reports an undefined symbol error

2011-05-25 Thread eros2
Same on Natty.

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

Title:
  Pidgin reports an undefined symbol error

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


Re: [Bug 768801] Re: Banshee always stay visible

2011-05-25 Thread Chow Loong Jin
On 26/05/2011 13:53, Bogdan wrote:
> Sorry I thought I had responded alreadye. Yes, it was not a bug, I did'n
> think that extension could do this. Thanks. Could you close the bug?
> 

  status invalid

-- 
Kind regards,
Loong Jin


** Changed in: banshee (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/768801

Title:
  Banshee always stay visible

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


[Bug 774554] Re: upgrade from 10.10 to 11.04 failed

2011-05-25 Thread Robert Ehelebe
This bug and can be removed. Perhaps this laptop's Nvidia graphics card
can't handle Unity 3D. I still need to find a definitive answer. I don't
recall the 11.04 installer telling me, "Your graphics card won't support
Unity 3D," or a similar message.

Waited a couple of weeks and booted this laptop. Found that I could get
to a garbled white/black console where I blindly logged in and
performed:

sudo apt-get update
sudo apt-get upgrade

Many packages were upgraded.

Rebooted the system and logged in but Unity 3D didn't appear correctly.
Moreover, saw blinking red, green, white, black, blue screens when I
attempted to revive the system from suspension. This has been indicative
of an improper setting of the Nvidia graphics card in the past.

I removed the restricted Nvidia driver 173 to test Ubuntu's Nvidia
driver.

Installed the Unity 2D driver and so far that is working for me.


** Package changed: linux (Ubuntu) => nvidia-graphics-drivers-173
(Ubuntu)

** Changed in: nvidia-graphics-drivers-173 (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/774554

Title:
  upgrade from 10.10 to 11.04 failed

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-25 Thread Matthias Klose
please provide the command line arguments and the pre-processed source

** Changed in: gcc-4.6 (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/788487

Title:
  Build kernel trunk got error

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


[Bug 531801] Re: "none" option in the input method drop-down list selector is not translatable

2011-05-25 Thread Gunnar Hjalmarsson
** Changed in: language-selector (Ubuntu)
   Status: Triaged => In Progress

** Changed in: language-selector (Ubuntu)
 Assignee: (unassigned) => Gunnar Hjalmarsson (gunnarhj)

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

Title:
  "none" option in the input method drop-down list selector is not
  translatable

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


[Bug 663776] Re: [dash] Search field in Unity can not support iBus

2011-05-25 Thread Gunnar Hjalmarsson
** Branch linked: lp:ubuntu/natty-proposed/language-selector

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

Title:
  [dash] Search field in Unity can not support iBus

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


[Bug 531801] Re: "none" option in the input method drop-down list selector is not translatable

2011-05-25 Thread Gunnar Hjalmarsson
** Branch linked: lp:language-selector

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

Title:
  "none" option in the input method drop-down list selector is not
  translatable

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


[Bug 447241] Re: kubuntu Karmic network dsl doesn't work

2011-05-25 Thread grasscap
Guys, don't count on KDE's network manager. This bug exist for years and
it would probably last for another a few years. Those developers
probably don't use DSL.

There is a workaround:

1. sudo apt-get install network-manager-gnome
2. sudo apt-get remove network-manager-kde

add "nm-applet --sm-disable" to autostart

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

Title:
  kubuntu Karmic network dsl doesn't work

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


[Bug 546581] Re: Incorrect LC_MONETARY symbol of es_NI.utf-8

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 3 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=11653.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-06-01T02:28:50+00:00 Red de Grupos Locales Ubuntu en Centroamérica 
wrote:

The currency symbol/sign for Spanish Nicaragua (es_NI.utf-8) is backward, it
shows "$C" when it should be "C$".

$ locale -k LC_MONETARY | grep currency_symbol
currency_symbol="$C"
duo_currency_symbol="$C"

For a quick reference:
http://en.wikipedia.org/wiki/Nicaraguan_c%C3%B3rdoba

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/4


On 2010-07-18T04:13:21+00:00 Red de Grupos Locales Ubuntu en Centroamérica 
wrote:

There's a fix downstream -
http://launchpadlibrarian.net/49246107/langpack-locales_2.11%2Bgit20100304-3ubuntu1.debdiff

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/5


On 2011-05-09T23:25:54+00:00 Drepper-fsp wrote:

Don't reference other bug reporting system.s

I've added a patch.

Reply at: https://bugs.launchpad.net/glibc/+bug/546581/comments/11


** Changed in: glibc
   Status: Confirmed => Fix Released

** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  Incorrect LC_MONETARY symbol of es_NI.utf-8

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

[Bug 575774] Re: 2.6.32-21-generic CE: hpet increasing min_delta_ns flood

2011-05-25 Thread dack
Disabling C1E in bios solved the HPET issues for me.  There is still a
video tearing problem though, but this is a separate issue in bug
#423940.

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

Title:
  2.6.32-21-generic CE: hpet increasing min_delta_ns flood

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


[Bug 788489] Re: package openerp-server 5.0.14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Sebastián Salgado
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788489

Title:
  package openerp-server 5.0.14-1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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


[Bug 788489] [NEW] package openerp-server 5.0.14-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Sebastián Salgado
Public bug reported:

Binary package hint: openerp-server

no more details, sorry

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: openerp-server 5.0.14-1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: wl
Architecture: amd64
Date: Thu May 26 03:01:24 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427)
PackageArchitecture: all
SourcePackage: openerp-server
Title: package openerp-server 5.0.14-1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: openerp-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package natty

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

Title:
  package openerp-server 5.0.14-1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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


[Bug 788490] Re: complains that Global symbol "$LANG" requires explicit package name

2011-05-25 Thread John Massaglia
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788490

Title:
  complains that Global symbol "$LANG" requires explicit package name

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


[Bug 788490] [NEW] complains that Global symbol "$LANG" requires explicit package name

2011-05-25 Thread John Massaglia
Public bug reported:

Binary package hint: tablet-encode

When I try to run the script on my box running Ubuntu 11.04, I get the 
following error:
Error in configuration file: Global symbol "$LANG" requires explicit package 
name at (eval 2) line 1.

I tried copying tablet-encode over to a computer that still had Ubuntu
10.10 on it and the script ran fine. Maybe this is a perl or environment
problem?

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: tablet-encode 2.30-0.1ubuntu1
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Thu May 26 00:05:50 2011
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427.1)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: tablet-encode
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: tablet-encode (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug natty running-unity

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

Title:
  complains that Global symbol "$LANG" requires explicit package name

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


[Bug 788491] [NEW] dist-upgrade to 11.04 "ubuntu-minimal" not found

2011-05-25 Thread Jürgen Hofmarcher
Public bug reported:

Binary package hint: software-center

step to of dist-update stops with an error. "ubuntu-minimal" can not be
found after updating package sources.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: software-center 3.0.8
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Thu May 26 08:06:56 2011
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=de_AT:en
 PATH=(custom, no user)
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
SourcePackage: software-center

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug maverick

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

Title:
  dist-upgrade to 11.04 "ubuntu-minimal" not found

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


[Bug 788491] Re: dist-upgrade to 11.04 "ubuntu-minimal" not found

2011-05-25 Thread Jürgen Hofmarcher
** Attachment added: "files from /var/log/dist-upgrade/"
   
https://bugs.launchpad.net/bugs/788491/+attachment/2143280/+files/apt-clone_system_state.tar.gz

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

Title:
  dist-upgrade to 11.04 "ubuntu-minimal" not found

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-25 Thread teawater
gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6.0/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 
4.6-20101220-1' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs 
--enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr 
--program-suffix=-4.6 --enable-shared --enable-multiarch 
--enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib 
--without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls 
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default 
--with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror 
--with-arch-32=i686 --with-tune=generic --enable-checking=release 
--build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.0 20101220 (experimental) [trunk revision 168097] 
(Ubuntu/Linaro 4.6-20101220-1)

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

Title:
  Build kernel trunk got error

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


[Bug 788487] Re: Build kernel trunk got error

2011-05-25 Thread teawater
** Attachment added: "This is the file that got the bug"
   https://bugs.launchpad.net/bugs/788487/+attachment/2143272/+files/p80211wep.c

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

Title:
  Build kernel trunk got error

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


[Bug 788487] [NEW] Build kernel trunk got error

2011-05-25 Thread teawater
Public bug reported:

Binary package hint: gcc-4.6

  CC [M]  drivers/staging/wlan-ng/p80211wep.o
/home/teawater/kernel/linux-2.6/drivers/staging/wlan-ng/p80211wep.c: In 
function 'wep_decrypt':
/home/teawater/kernel/linux-2.6/drivers/staging/wlan-ng/p80211wep.c:229:1: 
internal compiler error: in form_sum, at reload.c:5331
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
make[5]: *** [drivers/staging/wlan-ng/p80211wep.o] Error 1
make[4]: *** [drivers/staging/wlan-ng] Error 2
make[3]: *** [drivers/staging] Error 2
make[2]: *** [drivers] Error 2
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

** Affects: gcc-4.6 (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/788487

Title:
  Build kernel trunk got error

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


[Bug 788488] [NEW] The cursor suddenly jumps to the right edge of the screen when finger go from the touchpad's main area to vertical scrolling area

2011-05-25 Thread nuclear90
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

please accept this patch https://bugs.freedesktop.org/show_bug.cgi?id=23890
It tested by many people and work fine.

** Affects: xserver-xorg-input-synaptics (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/788488

Title:
  The cursor suddenly jumps to the right edge of the screen when finger
  go from the touchpad's main area to vertical scrolling area

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


[Bug 367537] Re: [jaunty] Segmentation fault in hsearch_r of glibc-2.9

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 3 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=6966.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-10-19T01:29:34+00:00 Bugzilla-t wrote:

hsearch references Kunth vol. 3 6.4 on "open addressing" but the code does
implement the algorithm from Knuth.  Instead of generating the second hash from
the first, the code generates the second hash from the first index.  Because
this hash is then used to step the index, the result is that the first index
generated is (almost) always the same.

This partly defeats the purpose of using a secondary hash.

I say "almost" because it happens for all but 2 of the possible index values in
any given table.  For example, in a table of size 11, all secondary probes will
start at index 10 unless the inital hash produced 9 or 10.

This was reported on news:comp.lang.c by James Dow Allen and I decided to check
on it.  I have a simple patch but I am not sure of the procedure for posting
patches to glibc.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/0


On 2008-10-19T01:33:40+00:00 Bugzilla-t wrote:

Created attachment 3006
Suggested fix.

The patch suggests two related changes.  First, that idx be set from hval
without reducing havl % htab->size.  hval2 can now be derived from hval without
generating the same probe sequence all the time.  Secondly, a new variable must
be used to detect the wrap-around, since hval no longer contains the initial
value of idx.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/1


On 2008-11-01T15:37:54+00:00 Drepper-fsp wrote:

Applied to cvs.

Reply at: https://bugs.launchpad.net/glibc/+bug/367537/comments/2


** Changed in: glibc
   Importance: Unknown => Low

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

Title:
  [jaunty] Segmentation fault in hsearch_r of glibc-2.9

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


[Bug 788486] [NEW] Could not install vlc-nox during kubuntu 10.10 upgrade

2011-05-25 Thread PaulHurleyuk
Public bug reported:

Binary package hint: update-manager

doing dist-upgrade from kubuntu 10.04 to 10.10 and got error Could not
install vlc-nox

** Affects: update-manager (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/788486

Title:
  Could not install vlc-nox during kubuntu 10.10 upgrade

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


[Bug 663776] Re: [dash] Search field in Unity can not support iBus

2011-05-25 Thread Launchpad Bug Tracker
** Branch linked: lp:~gunnarhj/ubuntu/natty/language-selector/natty-
proposed-imfix

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

Title:
  [dash] Search field in Unity can not support iBus

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


[Bug 754712] Re: [Lenovo L420] System unable to resume from suspend

2011-05-25 Thread pinguaw
** Attachment added: "dmesg with acpi and pm debugging on"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/754712/+attachment/2143271/+files/dmesg.tar.gz

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

Title:
  [Lenovo L420] System unable to resume from suspend

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


[Bug 754712] Re: [Lenovo L420] System unable to resume from suspend

2011-05-25 Thread pinguaw
Hi,

cat /sys/power/pm_trace_dev_match

gives only:

block


This is all. I built my own kernel with acpi debuging on. I will attach dmesg 
maybe you will see an interesting line.

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

Title:
  [Lenovo L420] System unable to resume from suspend

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


[Bug 192134] Re: slow math sin function for some values on amd64

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 6 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=5781.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-02-21T09:10:38+00:00 Petr Cervenka wrote:

I would like to repost my previously deleted bug by (lazy IMHO)
car...@codesoucery.com. The math sin function is at least 1000x slower on 64bit
distributions for special numbers (and carlos dosn't care about it). 
I can't try it with CVS head, because I cannot connect to cvs through our 
firewall.
But even when I tried the latest snapshot, I couldn't build it (maybe another 
bug):
a - elf/dl-vdso.os
: /home/inova/projects/glibc/build/libc_pic.a
gcc   -nostdlib -nostartfiles -r -o
/home/inova/projects/glibc/build/elf/librtld.map.o '-Wl,-('
/home/inova/projects/glibc/build/elf/dl-allobjs.os
/home/inova/projects/glibc/build/libc_pic.a -lgcc '-Wl,-)'
-Wl,-Map,/home/inova/projects/glibc/build/elf/librtld.mapT
/home/inova/projects/glibc/build/libc_pic.a(init-first.os):(.data+0x0): multiple
definition of `__libc_multiple_libcs'
/home/inova/projects/glibc/build/elf/dl-allobjs.os:/home/inova/projects/glibc/src/glibc-20080218/elf/rtld.c:641:
first defined here
/home/inova/projects/glibc/build/libc_pic.a(dl-addr.os): In function
`_dl_addr_inside_object':
/home/inova/projects/glibc/src/glibc-20080218/elf/dl-addr.c:158: multiple
definition of `_dl_addr_inside_object'
/home/inova/projects/glibc/build/elf/dl-allobjs.os:/home/inova/projects/glibc/src/glibc-20080218/elf/dl-open.c:700:
first defined here
collect2: ld returned 1 exit status
make[2]: *** [/home/inova/projects/glibc/build/elf/librtld.map] Error 1
make[2]: Leaving directory `/home/inova/projects/glibc/src/glibc-20080218/elf'
make[1]: *** [elf/subdir_lib] Error 2
make[1]: Leaving directory `/home/inova/projects/glibc/src/glibc-20080218'
make: *** [all] Error 2 

Please, anyone with 64bit distribution and glibc CVS head, could you try the
attached example and post the time results of it? (or help me to build the
snapshot...)
Thank you

== Original bug report ==
The math sin(double) function is in 64bit distribution (Kubuntu 7.10 AMD64 and
Fedora - unknown version) unreasonable slow (~400 microseconds on Atlon64 X2
4800+!!!) for some special values. In 32bit distribution is everything fine.
I captured some of those values:
0.93340582292648832662962377071381  0x3fedde75e36bb000
2.3328432680770916363144351635128   0x4002a9a9bb38add0
3.7439477503636453548097051680088   0x400df39ae0cdf500
3.9225160069792437411706487182528   0x400f615012801950
4.0711651639931289992091478779912   0x401048df854fdc20
4.7858438478542097982426639646292   0x401324b43fe92fc0
5.9840767662578002727968851104379   0x4017efb1d1df52a0

Example:
#include 
int main(int argc, char** argv) {
volatile double value = 0.93340582292648832662962377071381;
volatile double out;
int i;
for (i=0; i < 2; i++)
out = sin(value);
return 0;
}

Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/1


On 2008-02-21T09:39:00+00:00 Jakub Jelinek wrote:

Most of the double routines in libm come from IBM accurate matematical library,
which ensures <= 0.5ulp error.  Trigonometric etc. functions are computed using
floating point computations, but if the possible error from that is too high, 
it 
uses slower multiprecision computation to guarantee ultimate precise result.
Guess you just picked some worst-case values.
i386 uses the non-precise hardware instructions instead, so doesn't guarantee
the <= 0.5ulp precision.


Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/2


On 2008-02-21T17:09:30+00:00 Joseph-codesourcery wrote:

Subject: Re:  Slow sine function for special values on AMD64
 - second attempt

On Thu, 21 Feb 2008, jakub at redhat dot com wrote:

> which ensures <= 0.5ulp error.  Trigonometric etc. functions are 
> computed using floating point computations, but if the possible error 
> from that is too high, it uses slower multiprecision computation to 
> guarantee ultimate precise result. Guess you just picked some worst-case 
> values.

Note that the crlibm developers were willing to contribute their code, an 
advantage of which is *much* better worst-case performance.


Reply at: https://bugs.launchpad.net/glibc/+bug/192134/comments/3


On 2008-02-21T17:42:51+00:00 Jakub Jelinek wrote:

Yeah, I'm aware of crlibm, I think if it proves itself that it won't be much
slower on average, has the same ultimate precision guarantees and faster
worst-cases, I don

[Bug 531801] Re: "none" option in the input method drop-down list selector is not translatable

2011-05-25 Thread Launchpad Bug Tracker
** Branch linked: lp:~gunnarhj/language-selector/oneiric

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

Title:
  "none" option in the input method drop-down list selector is not
  translatable

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


[Bug 773113] Re: e-tan generation doesn't wor.

2011-05-25 Thread Yousry Abdallah
Some graphics card driver have an option for crack-free video output.
With this option enabled, the usability is improved .

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

Title:
  e-tan generation doesn't wor.

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


[Bug 768801] Re: Banshee always stay visible

2011-05-25 Thread Bogdan
Sorry I thought I had responded alreadye. Yes, it was not a bug, I did'n
think that extension could do this. Thanks. Could you close the bug?

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

Title:
  Banshee always stay visible

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


[Bug 712101] Re: Ubiquity slideshow is crammed with Traditional Chinese

2011-05-25 Thread Guillem Hernandez Sola
** Changed in: ubiquity-slideshow-ubuntu (Ubuntu)
   Status: Invalid => Confirmed

** Changed in: ubiquity-slideshow-ubuntu (Ubuntu Natty)
   Status: Invalid => Confirmed

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

Title:
  Ubiquity slideshow is crammed with Traditional Chinese

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


[Bug 788483] Re: tracker-extract crashed with SIGSEGV in FLAC__stream_decoder_init_stream()

2011-05-25 Thread Anders Bruun Olsen
** Visibility changed to: Public

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

Title:
  tracker-extract crashed with SIGSEGV in
  FLAC__stream_decoder_init_stream()

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


[Bug 741825] Re: ATI controllers [1002:4383] and [1002:4383] (rev 40): Intermittent record and jack sense failure

2011-05-25 Thread Luke Yelavich
** Description changed:

  Sometimes, but not always, when starting a recording stream through this
  HDA controller, the recording stream is not successfully started.
  Instead, the controller generates a large amount of interrupts (~40 000
  interrupts per second). After this has happened, jack sense (i e
  unsolicited events from the codec) stops working until the next system
  reboot.
  
  === Similar bugs ===
  Here are some possible duplicates:
  Bug #743266 (HP Pavilion dv7)
  Bug #764062 (Lenovo x120e)
  Bug #775245 (Lenovo x100e)
  Bug #770555 (Asus 1215T)
  Bug #755847 (HP Pavilion DV6-1210SA)
  Bug #774654 Dell Inspiron 1546
  Bug #778716 ASRock 890GM Pro3
  Bug #780419 Sapphire Tech PCM-AM3RS790G
  Bug #780532 Toshiba Satellite L645D
  Bug #781240 ASUS 1215T
  Bug #775788 Acer Aspire One 522
  Bug #787281 MSI 880GM-P51 (MS-7623)
  Bug #788371 BIOSTAR Group TA890GXE
  Bug #782891 MICRO-STAR MS-7388
  Bug #787147 HP 62G Notebook PC
+ Bug #787001 HP Presario CQ56 Notebook PC
  
  These controllers are affected: ATI [1002:4383] and ATI [1002:4383] (rev
  40)
  
  === Checking for duplicate ===
  A bug is a duplicate of this if at some point all of the following conditions 
are fulfilled:
  
  1) The PCI controller ID (as checked with "lspci -vvnn") is ATI [1002:4383] 
and ATI [1002:4383] (rev 40)
  2) Jack sense is not working - i e, you still have sound from either internal 
speakers or headphones, but it remains the way it was when the system was last 
rebooted and does not change on plug/unplug.
  3) Recording is not working - there is no recording stream
  4) When you're trying to record, you're instead seeing massive interrupts ( > 
10.000 per second) for hda_intel, i e, the output of "cat /proc/interrupts | 
grep hda_intel" is increasing rapidly while unsuccessfully recording.
  
  === Investigation ===
  By inserting some printk's into the kernel code I've traced down the 
interrupt problem to the recording stream returning a FIFO error (SD0STS 
returns 0x28). The interrupt service routine acknowledges this error but does 
not do anything to counteract the root cause to the problem, so it appears 
again and again.
  Restarting the stream does not seem to help.
  
  I have seen this bug on
  1) 2.6.35
  2) 2.6.38-rc8 mainline kernel build
  3) 2.6.35 + daily snapshot of ALSA HDA modules
  
  I have seen it both with and without fglrx.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: alsa-base 1.0.23+dfsg-1ubuntu4
  Uname: Linux 2.6.38-020638rc8-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1292 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xd060 irq 16'
     Mixer name : 'Conexant CX20582 (Pebble)'
     Components : 'HDA:14f15066,17aa21b2,00100301'
     Controls  : 8
     Simple ctrls  : 5
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6XHT42WW-1.182000'
     Mixer name : 'ThinkPad EC 6XHT42WW-1.182000'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  CurrentDmesg:
   [   89.940031] hda-intel: azx_get_response timeout, switching to polling 
mode: last cmd=0x001f000a
   [   90.944071] hda_intel: azx_get_response timeout, switching to single_cmd 
mode: last cmd=0x001f000a
   [  181.943909] r8169 :02:00.0: eth0: link up
   [  181.944638] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
  Date: Thu Mar 24 11:39:51 2011
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-sutton-20110310-0
  InstallationMedia: Ubuntu 10.10 "Maverick" - Build i386 LIVE Binary 
20110310-01:59
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  dmi.bios.date: 10/28/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6XET46WW (1.29 )
  dmi.board.name: 287622U
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6XET46WW(1.29):bd10/28/2010:svnLENOVO:pn287622U:pvrThinkPadX100e:rvnLENOVO:rn287622U:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name:

[Bug 787001] Re: Audio/sound not working

2011-05-25 Thread Luke Yelavich
*** This bug is a duplicate of bug 741825 ***
https://bugs.launchpad.net/bugs/741825

Thanks for your bug report. With the problem you are having, and given
your hardware is very similar, I am going to mark this bug a duplicate
of bug #741825. Feel free to read that bug to get a better idea of what
is going on.

Thanks again.

** This bug has been marked a duplicate of bug 741825
   ATI controllers [1002:4383] and [1002:4383] (rev 40): Intermittent record 
and jack sense failure

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

Title:
  Audio/sound not working

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


[Bug 787228] Re: MacBook4,1: Bluetooth doesn't work

2011-05-25 Thread Dave Vasilevsky
Ick, this is worse than I thought. It appears that upon every reboot,
all BT pairing info is lost, and I need to re-pair all devices.

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

Title:
  MacBook4,1: Bluetooth doesn't work

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


[Bug 788482] Re: package firmware-b43-installer 4.150.10.5-5 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Brian Bundridge
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788482

Title:
  package firmware-b43-installer 4.150.10.5-5 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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


[Bug 788482] [NEW] package firmware-b43-installer 4.150.10.5-5 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Brian Bundridge
Public bug reported:

Binary package hint: b43-fwcutter

During the installation process, this error message came up several
times before it aborted the install. I have so far been unable to get
beyond this process.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: firmware-b43-installer 4.150.10.5-5
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic i686
NonfreeKernelModules: wl
Architecture: i386
Date: Wed May 25 01:17:19 2011
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationMedia: Ubuntu-Netbook 10.10 "Maverick Meerkat" - Release i386 
(20101007)
PackageArchitecture: all
SourcePackage: b43-fwcutter
Title: package firmware-b43-installer 4.150.10.5-5 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
UpgradeStatus: Upgraded to natty on 2011-05-24 (1 days ago)

** Affects: b43-fwcutter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty ubuntu-une

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

Title:
  package firmware-b43-installer 4.150.10.5-5 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

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


[Bug 741825] Re: ATI controllers [1002:4383] and [1002:4383] (rev 40): Intermittent record and jack sense failure

2011-05-25 Thread Luke Yelavich
** Description changed:

  Sometimes, but not always, when starting a recording stream through this
  HDA controller, the recording stream is not successfully started.
  Instead, the controller generates a large amount of interrupts (~40 000
  interrupts per second). After this has happened, jack sense (i e
  unsolicited events from the codec) stops working until the next system
  reboot.
  
  === Similar bugs ===
  Here are some possible duplicates:
  Bug #743266 (HP Pavilion dv7)
  Bug #764062 (Lenovo x120e)
  Bug #775245 (Lenovo x100e)
  Bug #770555 (Asus 1215T)
  Bug #755847 (HP Pavilion DV6-1210SA)
  Bug #774654 Dell Inspiron 1546
  Bug #778716 ASRock 890GM Pro3
  Bug #780419 Sapphire Tech PCM-AM3RS790G
  Bug #780532 Toshiba Satellite L645D
  Bug #781240 ASUS 1215T
  Bug #775788 Acer Aspire One 522
  Bug #787281 MSI 880GM-P51 (MS-7623)
  Bug #788371 BIOSTAR Group TA890GXE
  Bug #782891 MICRO-STAR MS-7388
+ Bug #787147 HP 62G Notebook PC
  
  These controllers are affected: ATI [1002:4383] and ATI [1002:4383] (rev
  40)
  
  === Checking for duplicate ===
  A bug is a duplicate of this if at some point all of the following conditions 
are fulfilled:
  
  1) The PCI controller ID (as checked with "lspci -vvnn") is ATI [1002:4383] 
and ATI [1002:4383] (rev 40)
  2) Jack sense is not working - i e, you still have sound from either internal 
speakers or headphones, but it remains the way it was when the system was last 
rebooted and does not change on plug/unplug.
  3) Recording is not working - there is no recording stream
  4) When you're trying to record, you're instead seeing massive interrupts ( > 
10.000 per second) for hda_intel, i e, the output of "cat /proc/interrupts | 
grep hda_intel" is increasing rapidly while unsuccessfully recording.
  
  === Investigation ===
  By inserting some printk's into the kernel code I've traced down the 
interrupt problem to the recording stream returning a FIFO error (SD0STS 
returns 0x28). The interrupt service routine acknowledges this error but does 
not do anything to counteract the root cause to the problem, so it appears 
again and again.
  Restarting the stream does not seem to help.
  
  I have seen this bug on
  1) 2.6.35
  2) 2.6.38-rc8 mainline kernel build
  3) 2.6.35 + daily snapshot of ALSA HDA modules
  
  I have seen it both with and without fglrx.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: alsa-base 1.0.23+dfsg-1ubuntu4
  Uname: Linux 2.6.38-020638rc8-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1292 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xd060 irq 16'
     Mixer name : 'Conexant CX20582 (Pebble)'
     Components : 'HDA:14f15066,17aa21b2,00100301'
     Controls  : 8
     Simple ctrls  : 5
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
6XHT42WW-1.182000'
     Mixer name : 'ThinkPad EC 6XHT42WW-1.182000'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  CurrentDmesg:
   [   89.940031] hda-intel: azx_get_response timeout, switching to polling 
mode: last cmd=0x001f000a
   [   90.944071] hda_intel: azx_get_response timeout, switching to single_cmd 
mode: last cmd=0x001f000a
   [  181.943909] r8169 :02:00.0: eth0: link up
   [  181.944638] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
  Date: Thu Mar 24 11:39:51 2011
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-sutton-20110310-0
  InstallationMedia: Ubuntu 10.10 "Maverick" - Build i386 LIVE Binary 
20110310-01:59
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  dmi.bios.date: 10/28/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6XET46WW (1.29 )
  dmi.board.name: 287622U
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6XET46WW(1.29):bd10/28/2010:svnLENOVO:pn287622U:pvrThinkPadX100e:rvnLENOVO:rn287622U:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 287622U
  dmi.product.version: ThinkPad X1

[Bug 742017] Re: "readline() on closed filehandle FILES" warnings caused by multiarch

2011-05-25 Thread Andrey Bondarenko
If you don't mind, I will subscribe ubuntu sponsors to this bug. We have
a patch in "works for me" state and I've prepared it for merging into
natty/oneiric branch. I suppose, applying this patch is better than
current situation, where popcon loses all information about multiarch
packages.

Forwarding patch to Debian is likely inappropriate. As I understand
Debian, does not currently use dpkg multiarch.

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

Title:
  "readline() on closed filehandle FILES" warnings caused by multiarch

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


[Bug 787147] Re: [HP G62 Notebook PC, Realtek ALC270, Mic, Internal] Background noise or low volume

2011-05-25 Thread Luke Yelavich
*** This bug is a duplicate of bug 741825 ***
https://bugs.launchpad.net/bugs/741825

Thanks for your bug report. With the symptoms you have reported, I
suspect this bug is probably a duplicate of bug #741825. Feel free to
have a read through that bug to get a better idea of what is going on.

** This bug has been marked a duplicate of bug 741825
   ATI controllers [1002:4383] and [1002:4383] (rev 40): Intermittent record 
and jack sense failure

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

Title:
  [HP G62 Notebook PC, Realtek ALC270, Mic, Internal] Background noise
  or low volume

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


[Bug 386791] Re: libc getaddrinfo crashes if /etc/hosts has very long lines

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 6 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=10484.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2009-08-05T15:22:27+00:00 Lars Wirzenius wrote:

If /etc/hosts contains a long line (thousands of bytes), getaddrinfo causes a
segmentation fault. A small program to test:

-- 8< ---
#include 
#include 
#include 
#include 

int main(void)
{
struct addrinfo *result;
getaddrinfo("localhost", NULL, NULL, &result);
return 0;
}
--- 8< ---

On a system with short lines in /etc/hosts, the above program exits normally. If
/etc/hosts has a very long line (5500 bytes is sufficiently long), it
segmentation faults.

I think this is due to using alloca and extend_alloca to hold the line when
parsing the file, which leads to a stack overflow, which then results in the
kernel sending a SIGSEGV to the program. The parsing code is not set up to
handle that. Unfortunately, I am too stupid to provide a patch to fix this.

My test /etc/hosts file has IPv6 addresses commented out, so the segmentation
fault happens in sysdeps/posix/getaddrinfo.c, function gaih_inet, around line
531, on this line:

  rc = __gethostbyname2_r (name, family, &th, tmpbuf,
   tmpbuflen, &h, &herrno);

My stack limit is 8 megabytes.

This was originally filed as a bug in Ubuntu, and applies to both versions 2.9
and 2.10 in that distribution. I have compared the source file against the
current version in git, and it has no relevant changes. (I was unable to set up
a chroot to actually test the current git version, sorry.)

Original bug:
https://bugs.launchpad.net/ubuntu/+source/eglibc/+bug/386791

Reply at: https://bugs.launchpad.net/glibc/+bug/386791/comments/11


On 2009-08-05T19:28:48+00:00 Fibonacci wrote:

This also happens on plain x86 processors. The original bug was found on
a PIV.

Perhaps it shouldn't be marked as x86_64.

Reply at: https://bugs.launchpad.net/glibc/+bug/386791/comments/13


On 2009-10-30T05:38:19+00:00 Drepper-fsp wrote:

You have to be much more precise.  I cannot reproduce any problem and your
description doesn't say where the stack overflow is supposed to happen.

Reply at: https://bugs.launchpad.net/glibc/+bug/386791/comments/16


On 2009-10-30T13:49:45+00:00 Fibonacci wrote:

Try a longer line. I've gotten 100k+ lines just by using a hosts file for
adblock and then running network-admin.

Reply at: https://bugs.launchpad.net/glibc/+bug/386791/comments/17


On 2011-01-07T17:40:48+00:00 agl wrote:

The following program will blow its stack and crash if I have an
/etc/hosts line longer than 4Kish.

---
#include 

#include 
#include 
#include 

int main() {
  struct addrinfo hints, *res;

  memset(&hints, 0, sizeof(hints));
  hints.ai_family = PF_INET;
  getaddrinfo("www.google.com", "http", &hints, &res);

  return 0;
}
---

Setting the ai_family in the hints is required in order to reproduce the
crash.

(File and line references in the following are relative to git
16c2895feabae0962e0eba2b9164c6a83014bfe4)

In sysdeps/posix/getaddrinfo.c:531 we have a loop in gaih_inet which
allocas a buffer and doubles the size of that buffer each time
__gethostbyname2_r returns with ERANGE.

The __gethostbyname2_r ends up in nss/nss_files/files-hosts.c:128:

  if (status == NSS_STATUS_SUCCESS»·»···»···»···»···  \
»···  && _res_hconf.flags & HCONF_FLAG_MULTI)»··»···»···  \
»···{»··»···»···»···»···»···»···»···  \
»···  /* We have to get all host entries from the file.  */»»···  \
»···  const size_t tmp_buflen = MIN (buflen, 4096);»»···»···  \
»···  char tmp_buffer[tmp_buflen]»··»···»···»···»···  \
»···__attribute__ ((__aligned__ (__alignof__ (struct hostent_data;\

Here, if HCONF_FLAG_MULTI is set then a secondary buffer is created on
the stack for the use of internal_getent. This buffer is limited to 4K
in size.

internal_getent will try to read lines from /etc/hosts and it will
return ERANGE if the line (plus an internal structure) doesn't fit into
|tmp_buffer|. When this happens the loop in getaddrinfo.c will try
doubling the size of its buffer. However, |tmp_buffer| was limited to 4K
so __gethostbyname2_r repeatedly returns ERANGE and gaih_inet uselessly
expands the buffer on the stack until the program crashes.

I believe that the best s

[Bug 786778] Re: [N73JQ, Realtek ALC269VB, Speaker, Internal] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Could you please try the following;

1. Open /lib/udev/rules.d/90-pulseaudio.rules in an editor as root, so for 
example "sudo gedit /lib/udev/rules.d/90-pulseaudio.rules" should work.
2. Remove the following line from the file:

ATTRS{vendor}=="0x10de", ENV{PULSE_PROFILE_SET}="nvidia.conf"

Save the file, and reboot.

Please report back as to whether this helps solve your problem.

Thanks in advance.

** Changed in: alsa-driver (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/786778

Title:
  [N73JQ, Realtek ALC269VB, Speaker, Internal] No sound at all

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


[Bug 788481] Re: Unity can't handle two GVIM's at the same time

2011-05-25 Thread stu31
Btw, this is on Natty:
Linux desktop 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 
x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  Unity can't handle two GVIM's at the same time

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


[Bug 788481] [NEW] Unity can't handle two GVIM's at the same time

2011-05-25 Thread stu31
Public bug reported:

Binary package hint: vim

When I open two gvim's at the same time (from the command prompt), only
one of them has a global menu, the other does not.

This is not a duplicate of:
https://bugs.launchpad.net/ubuntu/+source/vim/+bug/781180
As I see no warnings. Just the first menu works, and the second GVIM has no 
menu. 
Which also means copy & paste between gvims using menu shortcuts is broken :(
SInce only one instance has a menu... 
Alt+E 'C' is probably one of the most common things I do with two gvims open...

Take care,
  -stu

** Affects: vim (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/788481

Title:
  Unity can't handle two GVIM's at the same time

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


[Bug 777616] Re: Indicator plugin not working after panel customization

2011-05-25 Thread Nikolay Morozov
For me it's now ok. I reinstall one xubuntu, and i don't need indicator-
plugin on other :)

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

Title:
  Indicator plugin not working after panel customization

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


[Bug 786668] Re: [EN996AA-ABA s7310n, Realtek ALC880, Green Line Out, Rear] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Have you used any previous versions of
Ubuntu on this sytem? If so, was sound working without issue in that
install?

Secondly, please try updating your audio drivers, as outlined in the
following URL:
https://wiki.ubuntu.com/Audio/InstallingLinuxAlsaDriverModules.

Thanks in advance.

** Changed in: alsa-driver (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/786668

Title:
  [EN996AA-ABA s7310n, Realtek ALC880, Green Line Out, Rear] No sound at
  all

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


[Bug 691937] Re: Backport rakarrack from maverick to lucid

2011-05-25 Thread Evan Broder
In the future, please don't use the "In progress" status on backports
bugs - that status has a special meaning to the project, and it's likely
to result in us ignoring the bug.

Before we can proceed with the backport, we need some basic verification
that the package can be expected to work once it's backported. In case
you don't have access to a test build, I've uploaded a test build of the
backport to my PPA (https://launchpad.net/~broder/+archive/backports-
tests). Please verify that the package successfully builds, that you can
install the resulting packages, and that the packages run once
installed.

I've marked the bug as "Incomplete" for the moment, but please feel free
to change the status to "Confirmed" once you've verified the test
packages.

** Summary changed:

- Backport rakarrack from maverick to lucid
+ Backport rakarrack 0.5.8-1build1 from maverick to lucid

** Changed in: lucid-backports
   Status: In Progress => Incomplete

** Changed in: lucid-backports
 Assignee: holstein (mikeh789) => (unassigned)

** Changed in: rakarrack (Ubuntu)
 Assignee: holstein (mikeh789) => (unassigned)

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

Title:
  Backport rakarrack 0.5.8-1build1 from maverick to lucid

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


[Bug 20775] Re: libc6's printf and fprintf don't return -1 on closed stdout/stderr.

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=1146.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2005-08-01T18:43:55+00:00 Karl-xiph wrote:

checked of Fedora core 4

A recent report of an app we develope caused me to check the fprintf call. My
understanding is that on an error (like EFBIG from the write syscall) the
fprintf should return a negative value. Instead I'm seeing values greater than 0
returned, which would match the length of the string returned.

It may only be that 1 errno value, I haven't checked all possiblilities but I
thought I should let you know.

karl.

Reply at: https://bugs.launchpad.net/glibc/+bug/20775/comments/0


On 2005-09-02T11:17:45+00:00 Ralph Corderoy wrote:

This looks like it may be similar to an Ubuntu bug that has a
test program.  http://bugzilla.ubuntu.com/show_bug.cgi?id=14542

Reply at: https://bugs.launchpad.net/glibc/+bug/20775/comments/2


On 2005-09-06T18:46:32+00:00 Ralph Corderoy wrote:

I think Ulrich Drepper may have fixed this in CVS having been told of the
problem by Jim Meyering.

2005-09-04  Ulrich Drepper  
...
* stdio-common/Makefile (tests): Add tst-put-error.
* stdio-common/tst-put-error.c: New file.
* libio/fileops.c (_IO_new_file_xsputn): If overflow fails and no more
data would have to be written signal error.
* libio/oldfileops.c (_IO_old_file_xsputn): Likewise.

Reply at: https://bugs.launchpad.net/glibc/+bug/20775/comments/7


On 2005-09-16T13:22:05+00:00 Aj-suse wrote:

Should be fixed by Ulrich's patch.

Reply at: https://bugs.launchpad.net/glibc/+bug/20775/comments/10


** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  libc6's printf and fprintf don't return -1 on closed stdout/stderr.

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


[Bug 786433] Re: [43892GG, Conexant CX20585, Speaker, Internal] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Could you please try the following:

1. Open /lib/udev/rules.d/90-pulseaudio.rules in an editor as root, i.e "sudo 
gedit /lib/udev/rules.d/90-pulseaudio.rules" in a terminal will work.
2. Remove the following line from the file:

ATTRS{vendor}=="0x10de", ENV{PULSE_PROFILE_SET}="nvidia.conf"

Save the file, and reboot.

Please report back as to whether the above helped fix your problem.

** Changed in: alsa-driver (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/786433

Title:
  [43892GG, Conexant CX20585, Speaker, Internal] No sound at all

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


[Bug 652204] Re: [test-pkg-a] Backport Squid 3.1 to Lucid

2011-05-25 Thread Evan Broder
Err, wait, I guess this backport request is about the squid3 package?
That's not particularly clear from the current bug description. I'll
clarify that. Anyway, here are the reverse-dependencies that need
testing:

mingo:~ evan$ chdist apt-cache lucid rdepends --no-suggests --no-conflicts 
--no-breaks --no-replaces --no-enhances squid3 squid3-dbg squid3-common 
squidclient squid-cgi
squid-cgi
Reverse Depends:
squid3
Reverse Depends:
  squidguard
  squid3-dbg
  jesred
squid3-common
Reverse Depends:
  squid3
squid3-dbg
Reverse Depends:
squidclient
Reverse Depends:
  sqcwa


** Summary changed:

- [test-pkg-a] Backport Squid 3.1 to Lucid
+ Please backport squid3 3.1.6-1.1ubuntu1 from maverick to lucid

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

Title:
  Please backport squid3 3.1.6-1.1ubuntu1 from maverick to lucid

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


[Bug 652204] Re: [test-pkg-a] Backport Squid 3.1 to Lucid

2011-05-25 Thread Evan Broder
As Iain mentioned, squid has several reverse-dependencies:


mingo:~ evan$ chdist apt-cache lucid rdepends --no-suggests --no-conflicts 
--no-breaks --no-replaces --no-enhances squid
squid
Reverse Depends:
  srg
  squidtaild
 |squidguard
  squid-prefetch
  squid-deb-proxy
  sqcwa
 |jesred
  gadmin-squid
  ebox-squid
 |adzapper

All of these need to be tested against the new version of squid to
ensure they still work before we can approve the backport. I'm setting
this bug to Incomplete; please change it back to Confirmed once the
testing has been completed.

** Changed in: lucid-backports
   Status: Confirmed => Incomplete

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

Title:
  Please backport squid3 3.1.6-1.1ubuntu1 from maverick to lucid

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


[Bug 41025] Re: [Upstream] [hardy] When font not installed on computer, slideshow is messed up

2011-05-25 Thread Christopher M. Penalver
** Changed in: libreoffice (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  [Upstream] [hardy] When font not installed on computer, slideshow is
  messed up

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


[Bug 153571] Re: getaddrinfo manpage doesn't match glibc implementation when hints is NULL

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=10567.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2009-08-27T10:07:13+00:00 Michael Kerrisk wrote:

POSIX.1-2001 and 2008 say that if the hints argument of getaddrinfo() is
NULL, then

   the behavior shall be as if it referred  to  a  structure
   containing  the value zero for the ai_flags, ai_socktype,
   and ai_protocol fields, and AF_UNSPEC for  the  ai_family
   field.

However, glibc defines ai_flags as AI_V4MAPPED | AI_ADDRCONFIG for this case. Is
this deviation from POSIX.1 intentional? Should it be fixed?

Reply at: https://bugs.launchpad.net/glibc/+bug/153571/comments/4


On 2009-08-31T12:14:51+00:00 Drepper-fsp wrote:

(In reply to comment #0)
> Should it be fixed?

No.  Like several other things in the getaddrinfo spec this is non-optimal at
best.  The defaults used in glibc are much better.

Reply at: https://bugs.launchpad.net/glibc/+bug/153571/comments/9


On 2009-09-03T04:15:22+00:00 Mtk-manpages-googlemail wrote:

Subject: Re:  getaddrinfo() hints==NULL (ai_flags) deviates 
from POSIX.1

On Mon, Aug 31, 2009 at 2:14 PM, drepper at redhat dot
com wrote:
>
> --- Additional Comments From drepper at redhat dot com  2009-08-31 12:14 
> ---
> (In reply to comment #0)
>> Should it be fixed?
>
> No.  Like several other things in the getaddrinfo spec this is non-optimal at
> best.  The defaults used in glibc are much better.

Thanks. I'll update the man page to make it clear that this choice is
deliberate.


Reply at: https://bugs.launchpad.net/glibc/+bug/153571/comments/10


On 2009-10-09T22:08:26+00:00 Paul Fee wrote:

Can some details be added as to why the glibc defaults are better than
the POSIX standard.

The default only applies if hints==NULL.  If the POSIX defaults are 
non-optimal, then users of
other systems (e.g. Solaris) would find it useful to know that different 
settings are preferred. 
On Solaris 10, setting hints to NULL results in POSIX defined behaviour.

Are the reasons behind glibc's defaults unique to glibc or are they related to 
network effects
which would apply to any OS or C resolver library.  If the settings are valid 
everywhere then
getaddrinfo() users would benefit from using them on non-glibc platforms.

Thanks.

Reply at: https://bugs.launchpad.net/glibc/+bug/153571/comments/11


** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  getaddrinfo manpage doesn't match glibc implementation when hints is
  NULL

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

[Bug 357031] Re: Finnish yes/no option: add “o” for yes

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=10935.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2009-11-10T10:57:03+00:00 Martin Pitt wrote:

$ LANG=fi_FI.UTF-8 locale -k -c LC_MESSAGES
LC_MESSAGES
yesexpr="^[KkJjYy].*"

In addition to “k” for “kyllä” and “j” for 
“joo”, “o” for “on” should also be
added for the affirmative response.

‘O’ is for ‘on’, which means ‘[it] is’ (or 
similar in other grammatical person,
as appropriate), and is how one responds to ‘Onko ...’ (‘Is 
it ...’), as an
alternative to ‘joo’ or ‘kyllä’ (‘yes’). 
Colloquially, people say ‘oo’ rather
than ‘on’, so the letter ‘o’ (in addition to 
‘j’ and ‘k’) is appropriate.

Reply at: https://bugs.launchpad.net/glibc/+bug/357031/comments/5


On 2009-11-10T11:00:51+00:00 Martin Pitt wrote:

Gosh, bugzilla, it's 2009, learn some Unicode.

Let's try this again:

In addition to 'k' for 'kyllä' and 'j' for 'joo', 'o' for 'on' should also be
added for the affirmative response.

'O' is for 'on', which means '[it] is' (or similar in other grammatical person,
as appropriate), and is how one responds to 'Onko ...' ('Is it ...'), as an
alternative to 'joo' or 'kyllä' ('yes'). Colloquially, people say 'oo' rather
than 'on', so the letter 'o' (in addition to 'j' and 'k') is appropriate.


Reply at: https://bugs.launchpad.net/glibc/+bug/357031/comments/6


On 2009-11-17T09:38:33+00:00 Myllynen wrote:

I think this would be an unnecessary addition. Grammatically both answers are
correct for your example question but 'kyllä' sounds perhaps slightly more
formal. It should be also noted that CLDR includes only 'kyllä'/'ei' and no
'joo' or 'on'.

> Colloquially, people say 'oo' rather than 'on'

I haven't yet met such people even I'm a Finn :)

Reply at: https://bugs.launchpad.net/glibc/+bug/357031/comments/7


On 2010-04-09T02:49:48+00:00 Drepper-fsp wrote:

Going with comment #2 I won't change anything.

It is also dangerous to accept too many variants.  If any accidental keypress
can be interpreted as a result you better not have cats running across your
keyboards.

Reply at: https://bugs.launchpad.net/glibc/+bug/357031/comments/9


** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  Finnish yes/no option: add “o” for yes

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

[Bug 786039] Re: [M6275, Realtek ALC1200, Speaker, Internal] No sound at all

2011-05-25 Thread Luke Yelavich
Would you mind explaining why you marked this bug invalid? Did you find
a fix to your problem, or was the changing of the bug status an
accident?

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

Title:
  [M6275, Realtek ALC1200, Speaker, Internal] No sound at all

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


[Bug 786398] Re: Lost audio after trying to open 204 mp3 files (from external hard drive) at once with Totem

2011-05-25 Thread Luke Yelavich
Thanks for your reply. Closing the bug as per your last comment. Please
re-open the bug if you find any more problems with sound.

** Changed in: alsa-driver (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/786398

Title:
  Lost audio after trying to open 204 mp3 files (from external hard
  drive) at once with Totem

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


[Bug 785830] Re: [HP Compaq dc7900 Convertible Minitower, Analog Devices AD1884A, Black Headphone Out, Front] No automute

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Is the machine you are using a desktop? If
so, then at the moment, this is by design. There have been discussions
in the development community about how we could allow the user to choose
what is muted etc when plugging in headphones etc to different ports on
the machine, like what is possible in Windows, but there is nothing
decided yet.

If however this machine is a laptop, then this is certainly a bug. If
you could let me know what type of machine it is, then I may be able to
give you something to try to fix the problem.

Thanks again.

** Changed in: alsa-driver (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/785830

Title:
  [HP Compaq dc7900 Convertible Minitower, Analog Devices AD1884A, Black
  Headphone Out, Front] No automute

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


[Bug 788468] Re: rm manages to remove files owned by root without sudo

2011-05-25 Thread Joshua Fallaw
Is it possible that since you became root to 'touch' the file, that is
why the removal didn't generate a warning? Maybe you remained root to
the system? Maybe try 'sudo touch bla' on a file in a different folder
and see if you can then remove it without sudo.

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

Title:
  rm manages to remove files owned by root without sudo

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


[Bug 788475] [NEW] Cannot add to shopping list from the main screen

2011-05-25 Thread Mike Wittman
Public bug reported:

Binary package hint: gourmet

Adding a recipe to a shopping list fails with this error:

WARNING: PLUGIN FAILED TO LOAD 

Traceback (most recent call last):
  File "/usr/share/gourmet/gourmet/plugin_loader.py", line 315, in plugin_plugin
plugin_instance.activate(self)
  File 
"/usr/share/gourmet/gourmet/plugins/nutritional_information/main_plugin.py", 
line 13, in activate
nutritionGrabberGui.check_for_db(pluggable.rd)
  File 
"/usr/share/gourmet/gourmet/plugins/nutritional_information/nutritionGrabberGui.py",
 line 72, in check_for_db
elif not db.fetch_one(db.nutrition_table,ndbno=1123).choline:
  File "/usr/share/gourmet/gourmet/backends/db.py", line 672, in fetch_one
return 
table.select(*make_simple_select_arg(criteria,table)).execute().fetchone()
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/sql/expression.py", line 
2460, in execute
return e._execute_clauseelement(self, multiparams, params)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py", line 1798, 
in _execute_clauseelement
return connection._execute_clauseelement(elem, multiparams, params)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py", line 1274, 
in _execute_clauseelement
return self.__execute_context(context)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py", line 1305, 
in __execute_context
context.parameters[0], context=context)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py", line 1404, 
in _cursor_execute
context)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/base.py", line 1397, 
in _cursor_execute
context)
  File "/usr/lib/python2.7/dist-packages/sqlalchemy/engine/default.py", line 
299, in do_execute
cursor.execute(statement, parameters)
OperationalError: (OperationalError) no such column: nutrition.choline u'SELECT 
nutrition.ndbno, nutrition."desc", nutrition.water, nutrition.kcal, 
nutrition.protein, nutrition.lipid, nutrition.ash, nutrition.carb, 
nutrition.fiber, nutrition.sugar, nutrition.calcium, nutrition.iron, 
nutrition.magnesium, nutrition.phosphorus, nutrition.potassium, 
nutrition.sodium, nutrition.zinc, nutrition.copper, nutrition.manganese, 
nutrition.selenium, nutrition.vitaminc, nutrition.thiamin, 
nutrition.riboflavin, nutrition.niacin, nutrition.pantoacid, 
nutrition.vitaminb6, nutrition.folatetotal, nutrition.folateacid, 
nutrition.foodfolate, nutrition.folatedfe, nutrition.choline, nutrition.vitb12, 
nutrition.vitaiu, nutrition.vitarae, nutrition.retinol, nutrition.alphac, 
nutrition.betac, nutrition.betacrypt, nutrition.lypocene, nutrition.lutzea, 
nutrition.vite, nutrition.vitk, nutrition.fasat, nutrition.famono, 
nutrition.fapoly, nutrition.cholestrl, nutrition.gramwt1, nutrition.gramdsc1, 
nutrition.gramwt2, nutrition.gramdsc2, nutrition.refusepct, nutrition.foodgroup 
\nFROM nutrition \nWHERE nutrition.ndbno = ?' (1123,)
Traceback (most recent call last):
  File "/usr/share/gourmet/gourmet/GourmetRecipeManager.py", line 800, in 
shop_recs
d=shopgui.getOptionalIngDic(self.rd.get_ings(r),mult,self.prefs,self)
AttributeError: 'module' object has no attribute 'getOptionalIngDic'

This has been fixed in the latest upstream (0.15.9).  A patch is also
available at
http://sourceforge.net/tracker/index.php?func=detail&aid=3135758&group_id=108118&atid=649654

gourmet 0.15.7-1
Ubuntu 11.04

** Affects: gourmet (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/788475

Title:
  Cannot add to shopping list from the main screen

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


[Bug 783126] Re: Kile missing icons and widgets look bad in Unity

2011-05-25 Thread Stefan Löffler
I see a similar behavior in Inkscape. The widgets look OK, but most of
the menu icons are missing (see attached screenshot). I presume this is
the same underlying issue?

** Attachment added: "inkscape-missing-icons.png"
   
https://bugs.launchpad.net/unity/+bug/783126/+attachment/2143237/+files/inkscape-missing-icons.png

** Tags removed: i386 kile

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

Title:
  Kile missing icons and widgets look bad in Unity

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


[Bug 787735] Re: Snapstream Firefly non-functional

2011-05-25 Thread Dan Christian
I think you are saying that REMOTE_DEVICE should be set to one of these:
$ ls /dev/input/by-id/usb-Logitech_USB_Receiver-*
/dev/input/by-id/usb-Logitech_USB_Receiver-event-kbd@
/dev/input/by-id/usb-Logitech_USB_Receiver-event-mouse@
/dev/input/by-id/usb-Logitech_USB_Receiver-if01-event-mouse@
/dev/input/by-id/usb-Logitech_USB_Receiver-if01-mouse@
/dev/input/by-id/usb-Logitech_USB_Receiver-mouse@

The only one that made sense to me was the kbd one.

Here is my hardware.conf file (skipping empty entries):
$ grep '="[A-Za-z0-9]' hardware.conf
REMOTE="ATI/NVidia/X10 RF Remote (ati_remote)"
REMOTE_MODULES="ati_remote"
REMOTE_DRIVER="devinput"
REMOTE_LIRCD_CONF="atiusb/lircd.conf.atiusb"
TRANSMITTER="None"
START_LIRCD="true"
FORCE_NONINTERACTIVE_RECONFIGURATION="false"

cp /usr/share/lirc/remotes/devinput/lircd.conf.devinput /etc/lirc/lircd.conf
service lirc restart

I still get nothing through irw.

Here is how lircd is getting run:
$ ps ax | grep -i lirc 
 7360 ?Ss 0:00 /usr/sbin/lircd --output=/var/run/lirc/lircd 
--driver=devinput --device=/dev/input/by-id/usb-Logitech_USB_Receiver-event-kbd

This is made harder because there is no documentation about what the
possible --driver values are!  I'm running out of patience for this.
lirc had bad gaps in documentation and is very hard to debug.  Not fun.

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

Title:
  Snapstream Firefly non-functional

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


[Bug 788447] Re: [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is not installed

2011-05-25 Thread Benjamin Drung
The rmadison command fails with this output (on my IPv4 network):
curl: (7) Failed to connect to 2607:f8f0:610:4000:216:36ff:fe40:3860: Network 
is unreachable

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

Title:
  [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is
  not installed

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


[Bug 788474] Re: package bcmwl-kernel-source 5.100.82.38 bdcom-0ubuntu3 failed to install/upgrade: underproces installerede pre-removal-script returnerede afslutningsstatus 3

2011-05-25 Thread AJenbo
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788474

Title:
  package bcmwl-kernel-source 5.100.82.38 bdcom-0ubuntu3 failed to
  install/upgrade: underproces installerede pre-removal-script
  returnerede afslutningsstatus 3

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


[Bug 788474] [NEW] package bcmwl-kernel-source 5.100.82.38 bdcom-0ubuntu3 failed to install/upgrade: underproces installerede pre-removal-script returnerede afslutningsstatus 3

2011-05-25 Thread AJenbo
Public bug reported:

Broadcom 4313 won't work after installing, it worked perfectly from the
live cd :(

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
AptOrdering: bcmwl-kernel-source: Remove
Architecture: i386
Date: Thu May 26 07:02:49 2011
ErrorMessage: underproces installerede pre-removal-script returnerede 
afslutningsstatus 3
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110427.1)
SourcePackage: bcmwl
Title: package bcmwl-kernel-source 5.100.82.38+bdcom-0ubuntu3 failed to 
install/upgrade: underproces installerede pre-removal-script returnerede 
afslutningsstatus 3
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 natty

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

Title:
  package bcmwl-kernel-source 5.100.82.38 bdcom-0ubuntu3 failed to
  install/upgrade: underproces installerede pre-removal-script
  returnerede afslutningsstatus 3

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


[Bug 784755] Re: [To Be Filled By O.E.M., VIA VT1718S, Green Headphone Out, Front] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Could you please try updating your audio
drivers, as outlined at the following URL:
https://wiki.ubuntu.com/Audio/InstallingLinuxAlsaDriverModules.

Thanks in advance.

** Changed in: alsa-driver (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/784755

Title:
  [To Be Filled By O.E.M., VIA VT1718S, Green Headphone Out, Front] No
  sound at all

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


[Bug 788447] Re: [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is not installed

2011-05-25 Thread Benjamin Drung
This is the command that times out:

rmadison -u debian -s sid -a source atanks

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

Title:
  [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is
  not installed

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


[Bug 788447] Re: [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is not installed

2011-05-25 Thread Benjamin Drung
That's a problem in ubuntutools/archive/rmadison. Even normal timeouts
trigger this information.

try:
assert process.wait() == 0
except AssertionError:
print "Request failed: install the liburi-perl package and try again."


** Changed in: ubuntu-dev-tools (Ubuntu)
   Importance: Undecided => Medium

** Changed in: ubuntu-dev-tools (Ubuntu)
   Status: New => Triaged

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

Title:
  [pull-debian-source] Fails claiming (incorrectly) that liburi-perl is
  not installed

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


[Bug 325159] Re: Outdated version of ISO-14651 table?

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=9844.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2009-02-14T13:25:56+00:00 Martin Pitt wrote:

>From https://launchpad.net/bugs/325159:

Quoting http://en.wikipedia.org/wiki/ĸ:

> It is used to denote the sound written as [q] in the International Phonetic
Alphabet (the voiceless uvular plosive). For collation purposes, it is therefore
considered to be a type of 'q', rather than a type of 'k', and should sort near 
'q'.

At least in fi_FI.UTF-8 and en_US.UTF-8, ĸ appears next to k when
sorted:

% for l in j k l p q r ĸ; do echo "$l"; done | sort | xargs
j k ĸ l p q r

Both Unicode[1] and ISO-14651[2] place ĸ after q and before r.

[1]: http://unicode.org/charts/collation/chart_Latin.html
[2]: http://www.iso.org/ittf/ISO14651_2006_TABLE1_En.txt

The locales seem to base the collation on
/usr/share/i18n/locales/iso14651_t1_common, which places ĸ after k. 
Perhaps the
file is based on an outdated version of the ISO-14651 table and needs to be 
updated.

Reply at: https://bugs.launchpad.net/glibc/+bug/325159/comments/2


On 2009-02-14T13:27:08+00:00 Martin Pitt wrote:

Sorry, bz seems to have broken the wikipedia link. This is a safer one:

  http://en.wikipedia.org/wiki/%C4%B8

Reply at: https://bugs.launchpad.net/glibc/+bug/325159/comments/3


On 2009-02-14T13:29:47+00:00 Martin Pitt wrote:

Meh, it broke the character in the entire text as well. Please look at the
wikipedia or launchpad page. It is a small-caps "K".

Reply at: https://bugs.launchpad.net/glibc/+bug/325159/comments/4


On 2009-03-15T21:12:43+00:00 Drepper-fsp wrote:

I moved the entry.

Reply at: https://bugs.launchpad.net/glibc/+bug/325159/comments/5


** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  Outdated version of ISO-14651 table?

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


[Bug 586700] Re: Paper Size is wrong for locale es_NI (A4 -> Letter)

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=11668.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-06-04T18:45:06+00:00 Red de Grupos Locales Ubuntu en Centroamérica 
wrote:

The standard paper size in Nicaragua is US Letter, not A4.

LC_PAPER=es_NI.UTF-8 locale -k LC_PAPER
gives:
height=297
width=210

should be:
height=279
width=216

http://es.wikipedia.org/wiki/DIN_A4#Otros_formatos

Reply at: https://bugs.launchpad.net/glibc/+bug/586700/comments/3


On 2010-06-28T15:12:10+00:00 David Stansby wrote:

There's a fix downstream -
http://launchpadlibrarian.net/49250972/langpack-locales_2.11%2Bgit20100304-3ubuntu3.debdiff

Reply at: https://bugs.launchpad.net/glibc/+bug/586700/comments/4


On 2011-03-15T14:31:48+00:00 Martin Pitt wrote:

Created attachment 5310
patch

The referenced patch was broken. Here's the real one.

Reply at: https://bugs.launchpad.net/glibc/+bug/586700/comments/6


On 2011-05-09T23:19:54+00:00 Drepper-fsp wrote:

Don't reference other bug reporting systems and attach patches which
actually apply.  I fixed it this time.

Reply at: https://bugs.launchpad.net/glibc/+bug/586700/comments/9


** Changed in: glibc
   Status: Incomplete => Fix Released

** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  Paper Size is wrong for locale es_NI (A4 -> Letter)

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

[Bug 760209] Re: [Dell Vostro 1014] Bluetooth is non-fuctional

2011-05-25 Thread AceLan Kao
*** This bug is a duplicate of bug 714862 ***
https://bugs.launchpad.net/bugs/714862

Marc,

Could you try to restart bluetooth daemon to see if it helps?
   sudo restart bluetooth

And I need some info to figure out what happened.
   1. cat /proc/version_signature
   2. dkms status
   3. dpkg -l | grep linux-

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

Title:
  [Dell Vostro 1014] Bluetooth is non-fuctional

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


[Bug 777946] Re: [AV200 - Xonar D2X, playback] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your reply. I am closing the bug as per the last comment.
Please re-open this bug if you have any further sound troubles.

** Changed in: alsa-driver (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/777946

Title:
  [AV200 - Xonar D2X, playback] No sound at all

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


[Bug 788473] Re: package libassuan0 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package libassuan2-0 2.0.1-0ubuntu2

2011-05-25 Thread Philip Muškovac
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788473

Title:
  package libassuan0 (not installed) failed to install/upgrade: trying
  to overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package
  libassuan2-0 2.0.1-0ubuntu2

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


[Bug 788473] [NEW] package libassuan0 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package libassuan2-0 2.0.1-0ubuntu2

2011-05-25 Thread Philip Muškovac
Public bug reported:

We already have libassuan 2.0.1 in the other package.

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: libassuan0 (not installed)
ProcVersionSignature: Ubuntu 2.6.39-3.9-generic 2.6.39
Uname: Linux 2.6.39-3-generic i686
NonfreeKernelModules: eee
AptOrdering:
 libassuan0: Install
 libassuan0: Configure
 gnupg-agent: Configure
 gpgsm: Configure
 gnupg2: Configure
Architecture: i386
Date: Thu May 26 06:47:00 2011
DpkgTerminalLog:
 Unpacking libassuan0 (from .../libassuan0_2.0.1-3_i386.deb) ...
 dpkg: error processing /var/cache/apt/archives/libassuan0_2.0.1-3_i386.deb 
(--unpack):
  trying to overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package 
libassuan2-0 2.0.1-0ubuntu2
ErrorMessage: trying to overwrite '/usr/lib/libassuan.so.0.1.0', which is also 
in package libassuan2-0 2.0.1-0ubuntu2
InstallationMedia: Kubuntu 11.04 "Natty Narwhal" - Release i386 (20110427)
SourcePackage: libassuan
Title: package libassuan0 (not installed) failed to install/upgrade: trying to 
overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package libassuan2-0 
2.0.1-0ubuntu2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 oneiric

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

Title:
  package libassuan0 (not installed) failed to install/upgrade: trying
  to overwrite '/usr/lib/libassuan.so.0.1.0', which is also in package
  libassuan2-0 2.0.1-0ubuntu2

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


[Bug 782373] Re: [EMU10K1 - SB Live! 5.1, playback] No sound at all

2011-05-25 Thread Luke Yelavich
Thanks for your report. It appears you have 2 sound cards in your
system. Which card are you having trouble hearing audio through? Could
you also tell me the version of pulseaudio you are running? To find out,
open a terminal, and type "apt-cache policy pulseaudio". Then paste the
output into this bug.

Thanks in advance.

** Changed in: alsa-driver (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/782373

Title:
  [EMU10K1 - SB Live! 5.1, playback] No sound at all

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


[Bug 784440] Re: Volume always too loud: "headphone" level always reset to 100% (AD1981B, ICH6)

2011-05-25 Thread Luke Yelavich
Thanks for your bug report. Please try updating your audio drivers, as
outlined at the following URL:
https://wiki.ubuntu.com/Audio/InstallingAlsaDriverModules.

Thanks in advance.

** Changed in: alsa-driver (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/784440

Title:
  Volume always too loud: "headphone" level always reset to 100%
  (AD1981B, ICH6)

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


[Bug 784126] Re: [Realtek ALC259] ALSA test tone not working except on headphones but crackling

2011-05-25 Thread Luke Yelavich
Thanks for your report. Could you please try updating your drivers, as outlined 
at the following URL: 
https://wiki.ubuntu.com/Audio/InstallingLinuxAlsaDriverModules.
Thanks in advance.

** Changed in: alsa-driver (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/784126

Title:
  [Realtek ALC259] ALSA test tone not working except on headphones but
  crackling

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


[Bug 788115] Re: [Oneiric] dpkg error when upgrading librsvg (2.34.0-0ubuntu4)

2011-05-25 Thread Harry
Confirming this bug is now fixed.
Thank You Steve!

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

Title:
  [Oneiric] dpkg error when upgrading librsvg (2.34.0-0ubuntu4)

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


[Bug 788453] Re: Please merge hostname 3.06 (main) from debian unstable (main)

2011-05-25 Thread Scott Moser
** Changed in: hostname (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: hostname (Ubuntu)
   Status: In Progress => Confirmed

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

Title:
  Please merge hostname 3.06 (main) from debian unstable (main)

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


[Bug 783006] Re: Please backport focuswriter 1.3.2.git.69e4975b-1 from oneiric to lucid, maverick, natty

2011-05-25 Thread Evan Broder
Great, thanks for the verification. ACK from backporters for maverick.

I've uploaded a revision of the Lucid backport that drops from requiring
debhelper 8 to only requiring debhelper 7 (which Lucid already has).
Please test once it's built.

** Changed in: maverick-backports
   Status: Confirmed => In Progress

** Changed in: lucid-backports
   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/783006

Title:
  Please backport focuswriter 1.3.2.git.69e4975b-1 from oneiric to
  lucid, maverick, natty

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


[Bug 788453] Re: Please merge hostname 3.06 (main) from debian unstable (main)

2011-05-25 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/oneiric/hostname/merge-debian

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

Title:
  Please merge hostname 3.06 (main) from debian unstable (main)

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


[Bug 788471] Re: package libqt4-dbg (not installed) failed to install/upgrade: subprocess dpkg-deb --control returned error exit status 2

2011-05-25 Thread Robert Mullane
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788471

Title:
  package libqt4-dbg (not installed) failed to install/upgrade:
  subprocess dpkg-deb --control returned error exit status 2

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


[Bug 788471] [NEW] package libqt4-dbg (not installed) failed to install/upgrade: subprocess dpkg-deb --control returned error exit status 2

2011-05-25 Thread Robert Mullane
Public bug reported:

Was trying to download this package for debug sysmbols

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libqt4-dbg (not installed)
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Wed May 25 20:37:20 2011
ErrorMessage: subprocess dpkg-deb --control returned error exit status 2
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110426)
SourcePackage: qt4-x11
Title: package libqt4-dbg (not installed) failed to install/upgrade: subprocess 
dpkg-deb --control returned error exit status 2
UpgradeStatus: Upgraded to natty on 2011-05-25 (0 days ago)

** Affects: qt4-x11 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

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

Title:
  package libqt4-dbg (not installed) failed to install/upgrade:
  subprocess dpkg-deb --control returned error exit status 2

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


[Bug 299261] Re: movemail account does not work with global inbox

2011-05-25 Thread Colan Schwartz
Still a problem in 11.04, Natty.  The checkbox is ignored.

** Changed in: thunderbird (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/299261

Title:
  movemail account does not work with global inbox

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


[Bug 73750] Re: After hibernate: Battery not correctly recognized/displayed in Panel applet

2011-05-25 Thread Anthony Tippett
tru dat.  I've got a new lenovo t420s that this happens to on Ubuntu
natty.  I'm not using hibernate and seems to occur after a suspend.
Suspending and un suspending resolves the issue. Let me know if there
are any output information that i can provide to help get this resolved.

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

Title:
  After hibernate: Battery not correctly recognized/displayed in Panel
  applet

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


[Bug 755169] Re: backport drush into lucid LTS (or maverick?) once in natty

2011-05-25 Thread Evan Broder
Before we can process this backport, there's some verification work that
needs to be done.

First, in order to ensure that there's a valid upgrade path away from
Lucid, drush will definitely also need to be backported to Maverick.

Second, the backports process requires some basic verification that the
packages will work once backported. I've uploaded test backports from
natty to lucid and maverick to my PPA
(https://launchpad.net/~broder/+archive/backports-tests). Please verify
that they successfully build, then install them and ensure that they
run. This must be done for all releases.

Finally, drush has a single reverse-dependency:
> mingo:~ evan$ schroot -c lucid-amd64 -- apt-cache rdepends drush
> drush
> Reverse Depends:
>   aegir-provision
>   aegir-provision
> mingo:~ evan$ schroot -c maverick-amd64 -- apt-cache rdepends drush
> drush
> Reverse Depends:
>   aegir-provision

Please verify that all reverse-dependencies continue to work with the
backported drush package on all releases.

Feel free to change the status of the bug to "Confirmed" once this
testing has been completed.

** Summary changed:

- backport drush into lucid  LTS (or maverick?) once in natty
+ Backport drush 4.4-1 from natty to lucid, maverick

** Changed in: lucid-backports
   Status: New => Incomplete

** Changed in: maverick-backports
   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/755169

Title:
  Backport drush 4.4-1 from natty to lucid, maverick

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


[Bug 775030] Re: [Sync Request] Virtualbox 4.0.6

2011-05-25 Thread Flames_in_Paradise
*** This bug is a duplicate of bug 773038 ***
https://bugs.launchpad.net/bugs/773038

This bug is not a duplicate of 773038, firstly because of the date of issue 
(rather vice versa)
Furthermore bug 773038 regards to a windows host-system, whereas guestadditions 
are to be installed with reference to host as supplied by virtualbox.org.

Took a little peek at
http://changelogs.ubuntu.com/changelogs/pool/universe/v/virtualbox-ose
/virtualbox-ose_4.0.4-dfsg-1ubuntu4/changelog So actually there seems to
be no reason to keep this [update request] alive.

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

Title:
  [Sync Request] Virtualbox 4.0.6

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


[Bug 788470] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Matthew Conolly
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788470

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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


[Bug 788470] [NEW] package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-05-25 Thread Matthew Conolly
Public bug reported:

Binary package hint: initramfs-tools

Attempted update. Attempted to install a few packages, build-essential
and vim-gnome. initramfs-tools returns error from apt-get

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: initramfs-tools 0.98.8ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-1208.11-omap4 2.6.38.2
Uname: Linux 2.6.38-1208-omap4 armv7l
Architecture: armel
Date: Thu May 26 10:50:56 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
PackageArchitecture: all
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package armel natty unity-2d

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

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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


[Bug 761134] Re: Natty update to v2.6.38.3 stable release

2011-05-25 Thread Luke Yelavich
I happen to have hardware that is affected by this regression, will get
a fresh natty install onto it and test the original natty kernel and the
new kernel in proposed.

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

Title:
  Natty update to v2.6.38.3 stable release

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


[Bug 776788] Re: [H55M-USB3, Realtek ALC889, SPDIF Out, Internal] No sound at all

2011-05-25 Thread Luke Yelavich
*** This bug is a duplicate of bug 761134 ***
https://bugs.launchpad.net/bugs/761134

Seems a fix is already in the queue and needs testing. I'll mark this
bug a duplicate of the bug being used to track the progress of this fix.

Thanks.

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

** Changed in: alsa-driver (Ubuntu)
 Assignee: Luke Yelavich (themuso) => (unassigned)

** This bug has been marked a duplicate of bug 761134
   Natty update to v2.6.38.3 stable release

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

Title:
  [H55M-USB3, Realtek ALC889, SPDIF Out, Internal] No sound at all

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


[Bug 782338] Re: error update to ubuntu 10.10

2011-05-25 Thread RedSingularity
So if I am getting this, you are having problems installing the
Operating System all altogether?  You must use the text based install
from the live cd?

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

Title:
  error update to ubuntu 10.10

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


[Bug 788468] [NEW] rm manages to remove files owned by root without sudo

2011-05-25 Thread Volodya
Public bug reported:

To reproduce:

volodya@gnome:~$ sudo touch bla
volodya@gnome:~$ ls -l bla
-rw-r--r-- 1 root root 0 2011-05-26 08:17 bla
volodya@gnome:~$ rm bla
rm: remove write-protected regular empty file `bla'? y
volodya@gnome:~$ ls -l bla
ls: cannot access bla: No such file or directory

What i expect to see:
rm command should not be able to remove files which are owned by root without 
root login

Note:
I have tried to remove from /bin/ directory, and i do see that there it 
generates an error
volodya@gnome:/bin$ rm more
rm: remove write-protected regular file `more'? y
rm: cannot remove `more': Permission denied
However, this is insufficient. Root owned files within home directory should 
also be protected from deletion.

** 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/788468

Title:
  rm manages to remove files owned by root without sudo

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


[Bug 178045] Re: [Hardy 8.04 Alpha-2] "Check CD for Defects" does not work. (Fixed in 8.04 Alpha-3.)

2011-05-25 Thread Bug Watch Updater
Launchpad has imported 2 comments from the remote bug at
http://sourceware.org/bugzilla/show_bug.cgi?id=5441.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2007-12-03T15:29:09+00:00 Aurelien Jarno wrote:

The following code does not work anymore on glibc 2.7, while it was working on 
glibc 2.6:

#include 

int main()
{
  char *buf = " ";
  char *str;

  sscanf (buf, "%as", &str);
  printf("%p\n", str);
  return 0;
}


Instead the glibc now reports an invalid pointer:

*** glibc detected *** ./test: munmap_chunk(): invalid pointer: 
0x7fffe37dd8c0 ***
=== Backtrace: =
/lib/libc.so.6(cfree+0x1b6)[0x2b8ac7560d06]
/lib/libc.so.6(_IO_vfscanf+0x239f)[0x2b8ac753e29f]
/lib/libc.so.6(vsscanf+0x75)[0x2b8ac754ec85]
/lib/libc.so.6(_IO_sscanf+0x88)[0x2b8ac75498b8]
./test[0x4004bf]
/lib/libc.so.6(__libc_start_main+0xf4)[0x2b8ac75071c4]
./test[0x400409]
=== Memory map: 
0040-00401000 r-xp  08:02 
2392545/tmp/test
0060-00601000 rw-p  08:02 
2392545/tmp/test
00601000-00622000 rw-p 00601000 00:00 0  [heap]
2b8ac72cb000-2b8ac72e8000 r-xp  08:02 
6669895/lib/ld-2.7.so
2b8ac72e8000-2b8ac72eb000 rw-p 2b8ac72e8000 00:00 0
2b8ac74e7000-2b8ac74e9000 rw-p 0001c000 08:02 
6669895/lib/ld-2.7.so
2b8ac74e9000-2b8ac763d000 r-xp  08:02 
6669873/lib/libc-2.7.so
2b8ac763d000-2b8ac783d000 ---p 00154000 08:02 
6669873/lib/libc-2.7.so
2b8ac783d000-2b8ac784 r--p 00154000 08:02 
6669873/lib/libc-2.7.so
2b8ac784-2b8ac7842000 rw-p 00157000 08:02 
6669873/lib/libc-2.7.so
2b8ac7842000-2b8ac7848000 rw-p 2b8ac7842000 00:00 0
2b8ac7848000-2b8ac7855000 r-xp  08:02 
21217454   /lib/libgcc_s.so.1
2b8ac7855000-2b8ac7a55000 ---p d000 08:02 
21217454   /lib/libgcc_s.so.1
2b8ac7a55000-2b8ac7a56000 rw-p d000 08:02 
21217454   /lib/libgcc_s.so.1
7fffe37ca000-7fffe37df000 rw-p 7fffe37ca000 00:00 0  
[stack]
ff60-ff601000 r-xp  00:00 0  [vdso]

Reply at: https://bugs.launchpad.net/glibc/+bug/178045/comments/0


On 2007-12-07T16:50:59+00:00 Drepper-fsp wrote:

Changed in cvs.

Reply at: https://bugs.launchpad.net/glibc/+bug/178045/comments/1


** Changed in: glibc
   Importance: Unknown => Medium

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

Title:
  [Hardy 8.04 Alpha-2]  "Check CD for Defects" does not work. (Fixed in
  8.04 Alpha-3.)

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


[Bug 788463] Re: package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 1 terug

2011-05-25 Thread Herman Zweering
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788463

Title:
  package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to
  install/upgrade: subproces installed post-installation script gaf een
  foutwaarde 1 terug

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


[Bug 786014] Re: Errors in links to source files when Calc files are opened in Excel

2011-05-25 Thread Pablo
I have created six files, all  with LibreOffice CALC

The first two files  contain source information
* a file labeled "Source ods file", filed in ods format
* a file labeled "Source xls file, filed in xls format

Then I created four files that link to these source files.
* Two files are in ods format, one linking to the xls-format source file, the 
other linking to the ods-format source file.
* Two files are in xls format, one linking tot he xls-format source file, the 
other linking to the ods-format source file.

When the two ods-format link files are opened and the links are updated, the 
numbers appear directly copied from the source file.  
When the two xls-format link files are opened and the links are updates, the 
numbers do not copy correcly and you only get REF#

In my earlier comments I noted that the link files in xls format do not
copy the sheet name

I hope this helps illustrate the problem

** Attachment added: "LibreOffice Calc files that illustrate the bug"
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/786014/+attachment/2143185/+files/Source%20xls%20file.xls

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

Title:
  Errors in links to source files when Calc files are opened in Excel

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


[Bug 788463] [NEW] package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 1 terug

2011-05-25 Thread Herman Zweering
Public bug reported:

package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to
install/upgrade: subproces installed post-installation script gaf een
foutwaarde 1 terug

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: linux-image-2.6.38-8-generic 2.6.38-8.42
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic i686
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 1: default [PnP Audio Device], device 0: USB Audio [USB Audio]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 1: default [PnP Audio Device], device 0: USB Audio [USB Audio]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  hhzweering   1534 F pulseaudio
CRDA: Error: [Errno 2] Bestand of map bestaat niet
Card1.Amixer.info:
 Card hw:1 'default'/'PnP Audio Device at usb-:00:02.0-7, full 
speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB0d8c:0201'
   Controls  : 17
   Simple ctrls  : 6
Date: Thu May 26 06:11:10 2011
ErrorMessage: subproces installed post-installation script gaf een foutwaarde 1 
terug
HibernationDevice: RESUME=UUID=79c017f4-9ff8-48af-8ed7-27c4aa25f3be
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
Lsusb:
 Bus 002 Device 002: ID 0d8c:0201 C-Media Electronics, Inc. CM6501
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: System manufacturer System Product Name
PciMultimedia:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-28-generic 
root=UUID=EA668A76668A4375 loop=/hostname/disks/root.disk ro quiet splash
RelatedPackageVersions:
 linux-restricted-modules-2.6.35-28-generic N/A
 linux-backports-modules-2.6.35-28-generic  N/A
 linux-firmware 1.52
RfKill:
 
SourcePackage: linux
Title: package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to 
install/upgrade: subproces installed post-installation script gaf een 
foutwaarde 1 terug
UpgradeStatus: Upgraded to natty on 2011-05-04 (21 days ago)
WifiSyslog:
 May 26 06:11:10 ubuntu kernel: [ 1140.879235] depmod[3103]: segfault at 
bbd60e35 ip 0041c798 sp bf85ef5c error 4 in libc-2.13.so[3a9000+15a000]
 May 26 06:11:22 ubuntu kernel: [ 1152.505604] depmod[3183]: segfault at 
bbc6ee35 ip 00183798 sp bff462dc error 4 in libc-2.13.so[11+15a000]
dmi.bios.date: 04/25/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: ASUS M2N-E SLI ACPI BIOS Revision 0801
dmi.board.name: M2N-E SLI
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: 1.XX
dmi.chassis.asset.tag: 123456789000
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2N-ESLIACPIBIOSRevision0801:bd04/25/2007:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-ESLI:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: apport-package i386 natty

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

Title:
  package linux-image-2.6.38-8-generic 2.6.38-8.42 failed to
  install/upgrade: subproces installed post-installation script gaf een
  foutwaarde 1 terug

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