Bug#886885: Reported upstream

2018-01-11 Thread Bernardo Dal Seno
Filed bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83808



Bug#886885: gcc-snapshot: "internal compiler error" for invalid input

2018-01-10 Thread Bernardo Dal Seno
Package: gcc-snapshot
Version: 20180107-1
Severity: normal

Dear Maintainer,

I should have reported this upstream, but creating an account on GCC Bugzilla
takes a day. In the meantime...

This sample C++ program

$ cat broken.cc
struct Rect {
  int width;
};

void f() {
  const Rect rect = {11};  // This should be constexpr
  char str[1][rect.width+1] = {
{"12345678901"},
  };
}


fails compilation with this error:

$ /usr/lib/gcc-snapshot/bin/g++ -std=c++17 -c broken.cc
broken.cc: In function 'void f()':
broken.cc:9:3: internal compiler error: in process_init_constructor_array, at
cp/typeck2.c:1318
   };
   ^
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.


If I've understood the standard correctly, the expression used as the size of
the array should be a constexpr, and the compiler should complain about it.
Asking the user to file a bug report instead of fixing their code is the wrong 
response.

-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.14.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), LANGUAGE=en_IE:en 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gcc-snapshot depends on:
ii  binutils2.29.1-12
ii  lib32z1 1:1.2.8.dfsg-5
ii  libc6   2.25-5
ii  libc6-dev   2.25-5
ii  libc6-dev-i386  2.25-5
ii  libc6-dev-x32   2.25-5
ii  libc6-i386  2.25-5
ii  libc6-x32   2.25-5
ii  libgc1c21:7.4.2-8
ii  libgmp102:6.1.2+dfsg-1.1
ii  libisl150.18-1
ii  libmpc3 1.0.3-2
ii  libmpfr43.1.6-1
ii  python  2.7.14-4
ii  zlib1g  1:1.2.8.dfsg-5

gcc-snapshot recommends no packages.

Versions of packages gcc-snapshot suggests:
ii  binutils [binutils-gold]  2.29.1-12

-- no debconf information



Bug#542114: acpitool: Segfault with -b/-B options

2010-04-23 Thread Bernardo Dal Seno
Package: acpitool
Version: 0.5.1-1
Severity: normal
Tags: patch


Running acpitool with options `-b' or `-B' causes a segfault:

> acpitool -v -b
Segmentation fault

Backtrace from gdb:

(gdb) run -b
Starting program: /usr/bin/acpitool -b

Program received signal SIGSEGV, Segmentation fault.
0xb7d92f8a in _IO_vfscanf () from /lib/i686/cmov/libc.so.6
(gdb) bt
#0  0xb7d92f8a in _IO_vfscanf () from /lib/i686/cmov/libc.so.6
#1  0xb7da68f1 in vsscanf () from /lib/i686/cmov/libc.so.6
#2  0xb7d964cb in sscanf () from /lib/i686/cmov/libc.so.6
#3  0x080590d7 in Get_Battery_Info_from_Sys (bat_nr=1, batt_info=0x8061008, 
verbose=0) at battery.cpp:658
#4  0x0805a6d6 in Do_Battery_Stuff (show_empty=0, info_level=0, verbose=0)
at battery.cpp:119
#5  0x0804e99e in Print_ACPI_Info (show_ac=0, show_therm=0, show_trip=0, 
show_fan=0, show_batteries=1, show_empty=0, show_version=0, show_cpu=0, 
show_wake=0, e_set=0, info_level=0, verbose=0) at acpitool.cpp:117
#6  0x0804a3b0 in main (argc=2, argv=0xbac4) at main.cpp:229

The mentioned sscanf() call has an incorrect format string, as there are 
asterisks missing.  This fixes it:
---CUT---
--- src/battery.cpp~2010-04-24 00:56:07.0 +0200
+++ src/battery.cpp 2010-04-24 01:03:33.0 +0200
@@ -654,8 +654,8 @@
memset(attr, '\0', 100);
memset(temp, '\0', 100);
fgets(str, 100, power_fp);
-   sscanf(str, "%[^=]s %*s %[^\n]", attr);
-   sscanf(str, "%*[^=] %*c %s %[^\n]",temp); 
+   sscanf(str, "%[^=]s %*s %*[^\n]", attr);
+   sscanf(str, "%*[^=] %*c %s %*[^\n]",temp); 
if (strcmp(attr,"POWER_SUPPLY_STATUS")==0) {
strncpy(batt_info->Charging_State, temp, 12);
}   
---CUT---

Best regards,
Bernardo

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-4-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages acpitool depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.3-9  GCC support library
ii  libstdc++64.4.3-9The GNU Standard C++ Library v3

Versions of packages acpitool recommends:
ii  acpid 1:2.0.3-1  Advanced Configuration and Power I

acpitool suggests no packages.

-- debconf-show failed
--- src/battery.cpp~2010-04-24 00:56:07.0 +0200
+++ src/battery.cpp 2010-04-24 01:03:33.0 +0200
@@ -654,8 +654,8 @@
memset(attr, '\0', 100);
memset(temp, '\0', 100);
fgets(str, 100, power_fp);
-   sscanf(str, "%[^=]s %*s %[^\n]", attr);
-   sscanf(str, "%*[^=] %*c %s %[^\n]",temp); 
+   sscanf(str, "%[^=]s %*s %*[^\n]", attr);
+   sscanf(str, "%*[^=] %*c %s %*[^\n]",temp); 
if (strcmp(attr,"POWER_SUPPLY_STATUS")==0) {
strncpy(batt_info->Charging_State, temp, 12);
}   


Bug#535342: linux-image-2.6.30-1-686: Bug solved upstream

2009-07-03 Thread Bernardo Dal Seno
Package: linux-image-2.6.30-1-686
Version: 2.6.30-1
Severity: normal

I ran into this bug too.  The bug has been already solved upstream:
http://bugzilla.kernel.org/show_bug.cgi?id=13399

Hope the patch will be included in 2.6.30-2.


Best regards,
Bernardo

-- Package-specific info:

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.30-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.93.3 tools for generating an initramfs
ii  module-init-tools 3.9-2  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.30-1-686 recommends:
ii  libc6-i6862.9-18 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.30-1-686 suggests:
ii  grub  0.97-53GRand Unified Bootloader (Legacy v
ii  linux-doc-2.6.30  2.6.30-1   Linux kernel specific documentatio

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#525165: listen: Version 0.6 loses cover images on upgrade from 0.5

2009-04-22 Thread Bernardo Dal Seno
Package: listen
Version: 0.6~rc2-1
Severity: normal

After upgrading from listen 0.5 to 0.6, on the first run listen imports 
the settings from the previous version.  Sadly, it doesn't import cd 
cover images.

After adding some cover images and looking around the filesystem, I 
discovered that the cover images are still kept in 
~/.cache/listen/cover/, but the naming scheme has changed: The artist 
name is not used any more.  It is possible to import all your old cover 
images by just renaming the files.  With bash:

cd ~/.cache/listen/cover/
for i in *+*.jpg; do mv "$i" "`echo "$i"|sed 's/[^+]\++//'`"; done

That removes the "Artist_Name+" part from the file name.  It would be 
nice if listen did the renaming.


Best regards,
Bernardo


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages listen depends on:
ii  gstreamer0.10-alsa0.10.22-5  GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-base0.10.22-5  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.14-2  GStreamer plugins from the "good" 
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
ii  libgtk2.0-0   2.14.7-5   The GTK+ graphical user interface 
ii  notification-daemon   0.4.0-1a daemon that displays passive pop
ii  python-central0.6.11 register and build utility for Pyt
ii  python-dbus   0.83.0-1   simple interprocess messaging syst
ii  python-elementtree1.2.6-12   Light-weight toolkit for XML proce
ii  python-glade2 2.14.1-1   GTK+ bindings: Glade support
ii  python-gst0.100.10.14-2  generic media-playing framework (P
ii  python-gtk2   2.14.1-1   Python bindings for the GTK+ widge
ii  python-gtkmozembed2.25.3-1   Python bindings for the GtkMozEmbe
ii  python-mutagen1.15-2 audio metadata editing library
ii  python-pyinotify  0.7.1-3simple Linux inotify Python bindin

Versions of packages listen recommends:
ii  gnome-icon-theme  2.24.0-4   GNOME Desktop icon theme
ii  gstreamer0.10-esd 0.10.14-2  GStreamer plugin for ESD
ii  gstreamer0.10-x   0.10.22-5  GStreamer plugins for X11 and Pang
pn  libgpod2   (no description available)
ii  python-avahi  0.6.24-3   Python utility package for Avahi
ii  python-daap   0.7.1-2DAAP client implemented in Python
ii  python-gpod   0.7.0-2Python bindings for libgpod
ii  python-musicbrainz2   0.6.0-2An interface to the MusicBrainz XM
ii  python-tunepimp   0.5.3-7Python bindings for MusicBrainz ta

Versions of packages listen suggests:
ii  gstreamer0.10-plugins-bad 0.10.11-2  GStreamer plugins from the "bad" s
ii  gstreamer0.10-plugins-ugly0.10.11-1  GStreamer plugins from the "ugly" 
pn  icecast2 | icecast-server  (no description available)
ii  libtunepimp5  0.5.3-7MusicBrainz tagging library
ii  python-eggtrayicon2.25.3-2   Python module to display icons in 
ii  python-gnome2 2.22.3-3   Python bindings for the GNOME desk
ii  python-sexy   0.1.9-1python language bindings for libse

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#525157: listen: Please depend on python-xdg

2009-04-22 Thread Bernardo Dal Seno
Package: listen
Version: 0.6~rc2-1
Severity: important

If python-xdg is not installed, listen refuses to start with this error:

Traceback (most recent call last):
 File "listen", line 76, in 
  from stock import stock_init
 File "/usr/lib/listen/stock.py", line 94, in 
  from xdg_support import get_xdg_pixmap_file
 File "/usr/lib/listen/xdg_support.py", line 24, in 
  from xdg.BaseDirectory import *
ImportError: No module named xdg.BaseDirectory


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages listen depends on:
ii  gstreamer0.10-alsa0.10.22-5  GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-base0.10.22-5  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.14-2  GStreamer plugins from the "good" 
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
ii  libgtk2.0-0   2.14.7-5   The GTK+ graphical user interface 
ii  notification-daemon   0.4.0-1a daemon that displays passive pop
ii  python-central0.6.11 register and build utility for Pyt
ii  python-dbus   0.83.0-1   simple interprocess messaging syst
ii  python-elementtree1.2.6-12   Light-weight toolkit for XML proce
ii  python-glade2 2.14.1-1   GTK+ bindings: Glade support
ii  python-gst0.100.10.14-2  generic media-playing framework (P
ii  python-gtk2   2.14.1-1   Python bindings for the GTK+ widge
ii  python-gtkmozembed2.25.3-1   Python bindings for the GtkMozEmbe
ii  python-mutagen1.15-2 audio metadata editing library
ii  python-pyinotify  0.7.1-3simple Linux inotify Python bindin

Versions of packages listen recommends:
ii  gnome-icon-theme  2.24.0-4   GNOME Desktop icon theme
ii  gstreamer0.10-esd 0.10.14-2  GStreamer plugin for ESD
ii  gstreamer0.10-x   0.10.22-5  GStreamer plugins for X11 and Pang
pn  libgpod2   (no description available)
ii  python-avahi  0.6.24-3   Python utility package for Avahi
ii  python-daap   0.7.1-2DAAP client implemented in Python
ii  python-gpod   0.7.0-2Python bindings for libgpod
ii  python-musicbrainz2   0.6.0-2An interface to the MusicBrainz XM
ii  python-tunepimp   0.5.3-7Python bindings for MusicBrainz ta

Versions of packages listen suggests:
ii  gstreamer0.10-plugins-bad 0.10.11-2  GStreamer plugins from the "bad" s
ii  gstreamer0.10-plugins-ugly0.10.11-1  GStreamer plugins from the "ugly" 
pn  icecast2 | icecast-server  (no description available)
ii  libtunepimp5  0.5.3-7MusicBrainz tagging library
ii  python-eggtrayicon2.25.3-2   Python module to display icons in 
ii  python-gnome2 2.22.3-3   Python bindings for the GNOME desk
ii  python-sexy   0.1.9-1python language bindings for libse

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#470556: emacs22: scroll-margin and scroll-preserve-screen-position cause refresh problem

2009-04-05 Thread Bernardo Dal Seno
2009/4/3 Sven Joachim :
> I think this problem is solved in Emacs 22.3; the fix mentioned in the
> upstream bug report is part of it.  Can you confirm that?

I installed the new package today, and so far it works fine. I think
you can close the bug.

Thank you.

Happy Easter,
Bernardo



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#470556: emacs22: scroll-margin and scroll-preserve-screen-position cause refresh problem

2008-03-11 Thread Bernardo Dal Seno
Package: emacs22
Version: 22.1+1-3
Severity: normal

With this very minimal '.emacs' file

---BEGIN---
(custom-set-variables
 '(scroll-margin 2)
 '(scroll-preserve-screen-position t)
) 
---END--- 

hitting page-up and page-down (or C-v and M-v) in any order just after 
having open an exiting file does not update the buffer view immediatly. 

In other words, you open a file, and you hit page-down a couple of 
times; the scroll bar and the status bar get updated immediatly, while 
the content of the window is update only after some time, which could be 
less than a second (but the delay is noticeable) or also a few seconds.

If you move the cursor using the arrow keys, the problem disappear.  If 
you move the cursor to the very first line of the buffer, though, and 
then hit page-down, you'll see the problem again.

I'm using X.  In a terminal window Emacs seems to work fine.

I've experienced this problem for a while, but only now I found the 
cause.  It's more apparent with files of a few hundred lines.


Best regards,
Bernardo

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23 (PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages emacs22 depends on:
ii  emacs22-bin-common 22.1+1-3  The GNU Emacs editor's shared, arc
ii  libasound2 1.0.16-1  ALSA library
ii  libc6  2.7-8 GNU C Library: Shared libraries
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libncurses55.6+20080203-1Shared libraries for terminal hand
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  xaw3dg 1.5+E-15  Xaw3d widget set
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

emacs22 recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#458770: icedove: Prossible workaround

2008-01-06 Thread Bernardo Dal Seno
Package: icedove
Version: 2.0.0.9-2
Followup-For: Bug #458770

I experienced the same problem, i.e., opening of RDF pages when checking 
for updates for extensions, after having upgraded from 
2.0.0.6.1 to 2.0.0.9-2.  There is a workaround for a similar 
(possibly the same?) bug here
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459135#10 that worked 
for me.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23 (PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages icedove depends on:
ii  debianutils 2.28.2   Miscellaneous utilities specific t
ii  fontconfig  2.5.0-2  generic font configuration library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-2 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.3-20080104-1 GCC support library
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.7.0~1.9b1-2NetScape Portable Runtime Library
ii  libnss3-1d  3.12.0~1.9b1-2   Network Security Service libraries
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libstdc++6  4.3-20080104-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

icedove recommends no packages.

-- debconf information:
* icedove/browser: Debian



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#403164: apt-listbugs: Same problem here - more info

2006-12-28 Thread Bernardo Dal Seno

On 12/27/06, Junichi Uekawa <[EMAIL PROTECTED]> wrote:

in apt-listbugs source, can you reproduce the problem with:

 ./examples/listbugs-soap.rb 268664 269152 277619 293058 310690 310812 315115 
315718 316453 316476 316955 317332 317720 317911 320019 321136 321352 321783 
322560 325292 328568 329686 330299 330867 331050 331179 332215 49 80 
334467 335363 344395 344424 348087 348102 349196 349549 349587 349729 349947 
350490 351486 351639 354105 357038 360846 361270 363154 363978 368540 369207 
370764 375579 379518 380349 380686 381389 384454 384529 386110 386289 386324 
387121 388069 389940 392561 392567 392658 392659 392704 392757 392846 394060 
394061 394139 394192 397691 398111 400383 401916 402475 403085 403136 403216 
403804 404476 152128 158098 163501 190413 212762 217652 231082 260706 260838 
260839 263270 266228 267480 267527 268143 268163 268164 268165 268225 268357 
269085 270227 271270 271271 271272 274342 278401 279870 280370 282815 283134 
283320 285889 286183 287043 290329 291033 291118 294430 295465 297990 302093 
303415 304260 304300 305568 309049 309847 312358 313067 314385 315013 315064 
315198 315444 315639 315761 316030 316031 316143 316181 316307 316308 316917 
317762 318218 318231 318271 318340 318405 318491 318663 318851 319003 319298 
319672 320017 320047 320357 320958 320963 321049 321194 321205 321420 321432 
321436 321487 321646 321912 322084 322159 322235 322467 322553 323027 323087 
323376 323430 323650 323706 323902 324018 324193 324783 324819 324995 325098 
325142 325152 325379 325484 325527 325570 325944


This command runs fine, while apt-listbugs still fails. A tried both a
few times, and results are always the same.

You can find attached the output (stdout and stderr) of the command
above, if it's useful.


Kind regards,
Bernardo



Bug#377261: openoffice.org-common: Me too (while upgrading to 2.0.3-3)

2006-07-29 Thread Bernardo Dal Seno
Package: openoffice.org-common
Version: 2.0.3-3
Followup-For: Bug #377261

I've just upgraded my sid installation (apt-get upgrade) and got the same
error:

Preparing to replace openoffice.org-common 2.0.3-2 (using 
.../openoffice.org-common_2.0.3-3_all.deb) ...
update-xmlcatalog: error: entity not registered
update-xmlcatalog: error: package catalog /etc/xml/openoffice.org-common.xml 
not found
Unpacking replacement openoffice.org-common ...

apt-get completed the upgrade, and a file /etc/xml/openoffice.org-common.xml
has been created during the upgrade:

>ll /etc/xml/openoffice.org-common.xml
-rw-r--r-- 1 root root 365 Jul 29 20:59 /etc/xml/openoffice.org-common.xml

Running "dpkg-reconfigure openoffice.org-common" afterwards completes with no
problems.


Regards,
Bernardo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-20060711_01
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages openoffice.org-common depends on:
ii  dictionaries-common [openoffi 0.70.2 Common utilities for spelling dict
ii  openoffice.org-l10n-en-us 2.0.3-3English_american language package 
ii  xml-core  0.09-0.1   XML infrastructure and XML catalog

openoffice.org-common recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#377737: udev: A different upgrade

2006-07-10 Thread Bernardo Dal Seno
Package: udev
Version: 0.093-1
Followup-For: Bug #377737

My previous report is incorrect. My last upgrade didn't include the 
upgrade of udev, that happened in the upgrade before. Sorry for the 
mistake. Yet /dev/lp0 is no more there.

These dependencies of udev have been upgraded in my last dist-upgrade:
 libc6 (2.3.6-11 => 2.3.6-15)
 lsb-base (3.1-5 => 3.1-10)
But downgrading them doesn't solve the problem.

I've not changed any configuration files of udev, I've even checked the
file dates. The only file that has been changed recently is
/etc/udev/libgphoto2.rules, but I think it is automatically generated;
surely, I've never touched it.

Is it possible that a package on which udev doesn't depend is causing
the failure? My last dist-upgrade involved 400+ packages.

Regards,
Bernardo


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#377737: udevtrigger doesn't create /dev/lp0

2006-07-10 Thread Bernardo Dal Seno
Package: udev
Version: 0.093-1
Severity: normal

I've done an upgrade of my system (apt-get dist-upgrade), which included
a udev upgrade from 0.090-3 to 0.093-1. After the upgrade /dev/lp0 isn't
there anymore.

The kernel is the same as before the upgrade, it has parallel support
builtin, not as a module. The parallel port works (with another OS), and
it is correctly detected by the kernel:
 /var/log/messages 
Jul 11 00:06:57 alpha kernel: [4294667.815000] parport: PnPBIOS parport 
detected.
Jul 11 00:06:57 alpha kernel: [4294667.815000] parport0: PC-style at 0x378 
(0x778), irq 7 [PCSPP,TRISTATE]
Jul 11 00:06:57 alpha kernel: [4294667.822000] parport0: Printer, 
Hewlett-Packard HP LaserJet 6P
 /var/log/messages 


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 3
lrwxr-xr-x 1 root root  20 2005-05-01 20:23 020_permissions.rules -> 
../permissions.rules
lrwxrwxrwx 1 root root  19 2005-10-30 10:41 025_libgphoto2.rules -> 
../libgphoto2.rules
lrwxrwxrwx 1 root root  16 2006-07-08 23:52 025_libsane.rules -> 
../libsane.rules
lrwxrwxrwx 1 root root  22 2005-12-24 12:22 025_logitechmouse.rules -> 
../logitechmouse.rules
lrwxrwxrwx 1 root root  15 2006-04-23 23:38 85-pcmcia.rules -> ../pcmcia.rules
lrwxrwxrwx 1 root root  19 2005-10-09 11:17 cd-aliases.rules -> 
../cd-aliases.rules
-rw-r--r-- 1 root root 211 2006-05-01 23:18 custom.rules
-rw-r--r-- 1 root root 205 2005-10-09 11:25 custom.rules~
lrwxr-xr-x 1 root root  13 2004-11-30 22:45 udev.rules -> ../udev.rules
lrwxrwxrwx 1 root root  25 2006-04-23 23:35 z20_persistent-input.rules -> 
../persistent-input.rules
lrwxrwxrwx 1 root root  19 2005-09-08 22:01 z20_persistent.rules -> 
../persistent.rules
-rw-r--r-- 1 root root 336 2006-04-23 23:37 z25_persistent-net.rules
lrwxrwxrwx 1 root root  33 2006-04-23 23:35 z45_persistent-net-generator.rules 
-> ../persistent-net-generator.rules
lrwxrwxrwx 1 root root  12 2005-09-08 22:01 z50_run.rules -> ../run.rules
lrwxrwxrwx 1 root root  16 2005-10-09 11:22 z55_hotplug.rules -> 
../hotplug.rules
lrwxrwxrwx 1 root root  19 2005-09-08 22:09 z60_alsa-utils.rules -> 
../alsa-utils.rules
lrwxrwxrwx 1 root root  15 2005-10-03 21:03 z60_hdparm.rules -> ../hdparm.rules
lrwxrwxrwx 1 root root  33 2006-05-28 18:17 z60_xserver-xorg-input-wacom.rules 
-> ../xserver-xorg-input-wacom.rules
lrwxrwxrwx 1 root root  17 2005-09-08 22:01 z70_hotplugd.rules -> 
../hotplugd.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda3/dev
/sys/block/hda/hda4/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/hda/hda7/dev
/sys/block/hda/hda8/dev
/sys/block/hdc/dev
/sys/block/hdc/hdc1/dev
/sys/block/hdc/hdc5/dev
/sys/block/hdc/hdc6/dev
/sys/block/hdc/hdc7/dev
/sys/block/hdc/hdc8/dev
/sys/block/hdd/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/ram0/dev
/sys/block/ram1/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input1/mouse0/dev
/sys/class/input/input2/event2/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/hpet/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D1p/dev
/sys/class/sound/seq/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev3.1/dev
/sys/class/usb_device/usbdev4.1/dev

-- Kernel configuration:
 isapnp_init not present.


-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-20060528_01
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages udev depends on:
ii  initscripts2.86.ds1-14.1 Scripts for initializing and shutt
ii  libc6  2.3.6-15  GNU C Library: Shared libraries
ii  libselinux11.30-1SELinux shared libraries
ii  libvolume-id0  0.093-1   libvolume_id shared library
ii  lsb-base   3.1-10Linux Standard Base 3.1 init scrip

udev recommends no packages.

-- debconf information:
  udev/devfs-warning:
* udev/reboot-warning:


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAI

Bug#368843: octave2.9: info-emacs-info doesn't work

2006-05-25 Thread Bernardo Dal Seno
Package: octave2.9
Version: 2.9.5-7
Severity: normal

Using `info-emacs-info' (within Emacs) makes the command `doc' fail with 
the error message:

 error in process filter: byte-code: Info file /usr/share/info does not exist
 error in process filter: Info file /usr/share/info does not exist


I think the problem lies in the order of the arguments passed to the 
info program, which is different from what `info-emacs-info' expects.

Issuing

 doc "whos"

in an Octave terminal outside Emacs launches the program (as shown by 
"ps x"):

 info --directory /usr/share/info --file /usr/share/info/octave2.9.info 
--index-search whos

while the first line of `info-emacs-info' is

 cmd="(Info-find-node \"$2\" \"Top\")"


A simple experiment from a bash confirmed this: when `--file' is the 
first option passed to the info program, `info-emacs-info' works.


Regards,
Bernardo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-20050908_01
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages octave2.9 depends on:
ii  atlas3-base [liblapack.s 3.6.0-20Automatically Tuned Linear Algebra
ii  fftw33.0.1-14library for computing Fast Fourier
ii  lapack3 [liblapack.so.3] 3.0.2531a-6 library of linear algebra routines
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.0-1   GCC support library
ii  libgfortran0 4.0.3-2 Runtime library for GNU Fortran ap
ii  libglpk0 4.9-1   linear programming kit (shared lib
ii  libhdf5-serial-1.6.5-0 [ 1.6.5-2 Hierarchical Data Format 5 (HDF5) 
ii  libncurses5  5.5-2   Shared libraries for terminal hand
ii  libpcre3 6.4-1.1 Perl 5 Compatible Regular Expressi
ii  libreadline5 5.1-7   GNU readline and history libraries
ii  libstdc++6   4.1.0-1 The GNU Standard C++ Library v3
ii  libufsparse  1.2-5   collection of libraries for comput
ii  refblas3 [libblas.so.3]  1.2-8   Basic Linear Algebra Subroutines 3
ii  texinfo  4.8-8   Documentation system for on-line i
ii  zlib1g   1:1.2.3-11  compression library - runtime

octave2.9 recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#365778: xviewg: Can't install

2006-05-02 Thread Bernardo Dal Seno
Package: xviewg
Version: 3.2p1.4-21
Severity: grave
Justification: renders package unusable

xviewg can't be installed. apt-get output:

$ apt-get -sV install xviewg
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  xviewg: Depends: libx11-6 but it is not going to be installed
  Depends: libxext6 but it is not going to be installed
E: Broken packages

BTW, x11-common conflicts with the current (unstable) version of xviewg.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-20051030_01
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages xviewg depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libx11-6  2:1.0.0-6  X11 client-side library
ii  libxext6  1:1.0.0-4  X11 miscellaneous extension librar

xviewg recommends no packages.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#345338: libservlet2.4-java: Dependency violates Debian Java Policy

2005-12-30 Thread Bernardo Dal Seno
Package: libservlet2.4-java
Severity: serious
Justification: java 2.4


>From the Debian Java Policy (section 2.4):

> Java libraries must depend on the needed runtime environment
> (java1-runtime and/or java2-runtime)

libservlet2.4-java depends on java-runtime instead, and java-runtime is 
not provided by dummy packages java1-runtime-dummy and 
java2-runtime-dummy, nor are JVMs required to provide java-runtime.

Please depend on java1-runtime or java2-runtime.

Best regards,
Bernardo


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#330606: Me too

2005-09-30 Thread Bernardo Dal Seno
I had a similar problem, with firefox not starting and ps hanging.  It
went away when I disabled sound support from the kernel.  I never
managed to get the sound working anyway, though modules would load
correctly.  Not sure if it was a hardware issue, a kernel bug, or a
chip revision not supported by the kernel.

If it's the same problem, probably you should take a look at the kernel level.

If it helps, I can give you more information about my setup.

Best regards,
Bernardo



Bug#320453: acknowledged by developer (Bug#320453: fixed in ethereal 0.10.12-2)

2005-08-01 Thread Bernardo Dal Seno

On 31/07/05 13:48, Debian Bug Tracking System wrote:

Source: ethereal
Source-Version: 0.10.12-2

We believe that the bug you reported is fixed in the latest version of
ethereal, which is due to be installed in the Debian FTP archive:


I confirm the bug is fixed in version 0.10.12-2.

Thank you.

bye
Bernardo


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#320453: sudo ethereal doesn't work

2005-07-29 Thread Bernardo Dal Seno

On 29/07/05 17:34, W. Borgert wrote:

From 0.10.11-2/3 on, capabilities are used for security reasons.
Maybe CAP_SETGID and/or CAP_SETUID are needed for that.  I don't
know much about capabilities, but could you try to add the two
capabilities? (or compile without libcap, or without defining
HAVE_LIBCAP, or with commenting calls to dropexcesscapabilities()?)


Capabilities were not enabled in my kernel.

FYI, I recompiled the kernel with capabilities enabled 
(CONFIG_SECURITY_CAPABILITIES=y) and got the same result.


bye
Bernardo


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#320453: sudo ethereal doesn't work

2005-07-29 Thread Bernardo Dal Seno

Package: ethereal
Version: 0.10.12-1
Severity: normal

I used to run Ethereal with the command "sudo ethereal" from an xterm.
After having upgraded Ethereal to version 0.10.12-1, I get this error:

---CUT---
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified


(ethereal:8050): Gtk-WARNING **: cannot open display:
---CUT---

/etc/sudoers, ~/.Xauthority, DISPLAY are ok.  I can still launch Ethereal as
my user or from a root's xterm without problems.  "sudo gimp" works, so it
doesn't seem a Gtk problem either.

Downgrading Ethereal to version 0.10.11-1 is enough to make "sudo ethereal"
work.  When I upgrade to version 0.10.12-1 again, "sudo ethereal" stops working.

BTW, doing "xhost +" solves the problem (I'm protected by a firewall);
"xhost +localhost" does not.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-20050727_03
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages ethereal depends on:
ii  ethereal-common 0.10.12-1network traffic analyser (common f
ii  libadns11.0-8.3  Asynchronous-capable DNS client li
ii  libatk1.0-0 1.10.1-2 The ATK accessibility toolkit
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libcap1 1:1.10-14support for getting/setting POSIX.
ii  libcomerr2  1.38-1   common error description library
ii  libglib2.0-02.6.5-1  The GLib library of C routines
ii  libgtk2.0-0 2.6.8-1  The GTK+ graphical user interface
ii  libkrb531.3.6-4  MIT Kerberos runtime libraries
ii  libpango1.0-0   1.8.1-1  Layout and rendering of internatio
ii  libpcap0.8  0.9.3-1  System interface for user-level pa
ii  libpcre35.0-1.1  Perl 5 Compatible Regular Expressi
ii  zlib1g  1:1.2.3-1compression library - runtime

Versions of packages ethereal recommends:
pn  gksu   (no description available)

-- no debconf information


bye
Bernardo



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]