Bug#1019262: libxmlb2: Under some circumstances, depending on the data, memory blocks can be double-freed.

2022-09-06 Thread Sergio Costas Rodriguez
Package: libxmlb2
Version: 0.3.6-2build1
Severity: normal
Tags: patch
X-Debbugs-Cc: sergio.cos...@canonical.com

Recently, several users complaint that snap-store (which is derived from gnome-
software) was crashing on start up with a segmentation fault. We found that the
bug was in libxmlb, where, under some circumstances, some memory blocks could
be double-freed when the library performed a prune of the binary tree.

This bug has been there since, at least, version 0.1.8, so it probably affects
Debian Stable and old-Stable too.

A patch was sent to upstream and was merged immediately
(https://github.com/hughsie/libxmlb/pull/127).

Also, a patch adapted for version 0.3.8 (the one currently in Debian SID) has
been sent to the SALSA repository: https://salsa.debian.org/efi-
team/libxmlb/-/merge_requests/6


-- System Information:
Debian Release: bookworm/sid
  APT prefers jammy-updates
  APT policy: (500, 'jammy-updates'), (500, 'jammy-security'), (500, 'jammy'), 
(100, 'jammy-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.15.0-47-generic (SMP w/16 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8), LANGUAGE=es:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libxmlb2 depends on:
ii  libc6 2.35-0ubuntu3.1
ii  libglib2.0-0  2.72.1-1
ii  liblzma5  5.2.5-2ubuntu1

libxmlb2 recommends no packages.

libxmlb2 suggests no packages.

-- no debconf information



Bug#1010418: Fixed loop

2022-05-09 Thread Sergio Costas
Ok, I modified the loop. Now it will gracefully fail if get_user_name() 
returns something that isn't in /etc/passwd:


boolfound = false;
unowned Posix.Passwdpasswd;
Posix.setpwent();
while(null!= (passwd = Posix.getpwent())) {
if(passwd.pw_name == GLib.Environment.get_user_name()) {
found = true;
cmd += passwd.pw_shell;
break;
}
}
if(!found) {
cmd += "/bin/sh";
}
Posix.endpwent();

--
Nos leemos
 RASTER(Linux user #228804)
rasters...@gmail.com https://www.rastersoft.com


Bug#1010418: Proposed bugfix

2022-05-09 Thread Sergio Costas

Mmm... But can "get_user_name" return something that isn't in /etc/passwd?

Anyway, testing for NULL is a good idea.

El 9/5/22 a las 1:18, Barak A. Pearlmutter escribió:

I don't understand this code in that patch:

+   while (true) {
+   unowned Posix.Passwd passwd =
Posix.getpwent();
+   if (passwd.pw_name ==
GLib.Environment.get_user_name()) {
+   found = true;
+   cmd += passwd.pw_shell;
+   break;
+   }
+   }

Will that loop forever if get_user_name returns something that doesn't
have an entry in /etc/passwd?




Bug#1010418: Proposed bugfix

2022-05-07 Thread Sergio Costas
I created a MR that should fix this. It is at 
https://gitlab.com/rastersoft/terminus/-/merge_requests/6 Can you test it?


--
Nos leemos
 RASTER(Linux user #228804)
rasters...@gmail.comhttps://www.rastersoft.com



Bug#994184: libseat1: Libseat1 requires uninstall systemd and install seatd and systemV init. But it is compatible with logind.

2021-09-13 Thread Sergio Costas

Hi:

El 13/9/21 a las 20:26, Guido Günther escribió:

On Mon, Sep 13, 2021 at 08:11:59PM +0200, Sergio Costas wrote:

Now that I see the dependencies, I think that the problem is another: logind
package doesn't exist. I suspect that it should be elogind. But neither that
would fix the problem, because both seatd and elogind are daemons for
sysvinit. The "logind" DBus interface is offered both by elogind (for people
that don't want to use systemd) and, AFAIK, by systemd itself.

So, if I'm right (but please, confirm this with someone else because I'm NOT
an expert), I think that the dependencies should really be:

 libc6 (>= 2.28), libelogind0 (>= 246.9.1), seatd | logind |
 systemd

Ah right, logind in in the systemd not the logind package so i think it
should be:

  Depends: systemd | elogind | seatd

(again keeping systemd first since that is Debian's default). It would
also make sense to extend the seatd package description to indicate that
seat is only needed if no other implementation (logind or elgind) is
used.

As Mark Hindley commented, it seems that the problem is the dependency 
on libelogind0, which specifically conflicts with systemd and 
libsystemd0. The "logind" virtual package does exist and yes, I "have it 
installed" in my system.


--

Nos leemos

RASTER (Linux user #228804)

rasters...@gmail.com https://www.rastersoft.com



Bug#994184: libseat1: Libseat1 requires uninstall systemd and install seatd and systemV init. But it is compatible with logind.

2021-09-13 Thread Sergio Costas

Hello:

El 13/9/21 a las 17:47, Guido Günther escribió:

Thanks for this.

I had already thought this might be an issue. I think the solution is to build
src:seatd against libsystemd-dev rather then libelogind-dev. I have already
tested the build and there are no issues. I just want to check with the Debian
sway packagers that this won't break their plans.




I think building against libsystemd-dev is even prerferable for the
current use cases. But i think the fact that we pull in seatd is

Depends: libc6 (>= 2.28), libelogind0 (>= 246.9.1), seatd | logind

We should swap that to "logind | seatd" (so we keep the common default
in Debian but allow for a replacement).



Now that I see the dependencies, I think that the problem is another: 
logind package doesn't exist. I suspect that it should be elogind. But 
neither that would fix the problem, because both seatd and elogind are 
daemons for sysvinit. The "logind" DBus interface is offered both by 
elogind (for people that don't want to use systemd) and, AFAIK, by 
systemd itself.


So, if I'm right (but please, confirm this with someone else because I'm 
NOT an expert), I think that the dependencies should really be:


libc6 (>= 2.28), libelogind0 (>= 246.9.1), seatd | logind | systemd

But, again, take this with a lot of salt.

--

Nos leemos
 RASTER(Linux user #228804)
rasters...@gmail.comhttps://www.rastersoft.com



Bug#994184: libseat1: Libseat1 requires uninstall systemd and install seatd and systemV init. But it is compatible with logind.

2021-09-13 Thread Sergio Costas
Package: libseat1
Severity: important
X-Debbugs-Cc: rasters...@gmail.com

Dear Maintainer,

Recently I wanted to compile Wayfire, the Wayland window manager, which relies
on a recent version of WlRoots (more recent than the one available in SID).
WlRoots needs libseat, and the problem in Debian is that trying to install
libseat forces to install seatd, which is incompatible with systemd and thus
it forces to remove it and install SystemV init.

The point is that, according to the page of libseat, it is compatible with both
seatd and logind (the systemd interface for seat management), so that
dependency
should not be a must. Or, at least, in my opinion, if that is compiling-
dependent,
two versions of libseat1 should be available: one for seatd and another for
logind.

Thanks.

-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-8-amd64 (SMP w/16 CPU threads)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8), LANGUAGE not
set
Shell: /bin/sh linked to /usr/bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libseat1 depends on:
ii  libc62.32-2
pn  libelogind0  
ii  libpam-systemd [logind]  247.9-1

libseat1 recommends no packages.



Bug#974666: Acknowledgement (gnome-sound-recorder: The export file dialog disappears suddendly after a few seconds.)

2020-11-13 Thread Sergio Costas
Also comment that this bug doesn't happen when the program is run as a 
flatpak, only when run as a native program.


El 13/11/20 a las 15:15, Debian Bug Tracking System escribió:

Thank you for filing a new Bug report with Debian.

You can follow progress on this Bug here: 974666: 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974666.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

As you requested using X-Debbugs-CC, your message was also forwarded to
   rasters...@gmail.com
(after having been given a Bug report number, if it did not have one).

Your message has been sent to the package maintainer(s):
  Debian GNOME Maintainers 

If you wish to submit further information on this problem, please
send it to 974...@bugs.debian.org.

Please do not send mail to ow...@bugs.debian.org unless you wish
to report a problem with the Bug-tracking system.





Bug#960227: [firefox] Can't do videoconference

2020-05-10 Thread Sergio Costas

Package: firefox
Version: 76.0-2
Severity: normal

--- Please enter the report below this line. ---

Two days ago I updated firefox to version 76, and since then I can't do 
videoconference. Before, with version 75, I did several videoconferences 
with the cisco web chat, and jitsi, but now with version 76 it asks for 
permission for audio and video, but keeps "connecting" the video. I 
can't hear or see other people, neither can they see or hear me. The 
same URL works fine with Chrome.



--- System information. ---
Architecture:
Kernel: Linux 5.6.0-1-amd64

Debian Release: bullseye/sid
500 unstable-debug debug.mirrors.debian.org
500 unstable ftp.debian.org
500 suldr www.bchemnet.com
500 stable repo.skype.com
500 stable linux.teamviewer.com
500 stable dl.google.com

--- Package information. ---
Depends (Version) | Installed
=-+-===
libatk1.0-0 (>= 1.12.4) | 2.36.0-2
libc6 (>= 2.29) |
libcairo-gobject2 (>= 1.10.0) |
libcairo2 (>= 1.10.0) |
libdbus-1-3 (>= 1.9.14) |
libdbus-glib-1-2 (>= 0.78) |
libevent-2.1-7 (>= 2.1.8-stable) |
libffi7 (>= 3.3~20180313) |
libfontconfig1 (>= 2.12.6) |
libfreetype6 (>= 2.10.1) |
libgcc-s1 (>= 4.0) |
libgdk-pixbuf2.0-0 (>= 2.22.0) |
libglib2.0-0 (>= 2.31.8) |
libgtk-3-0 (>= 3.0.0) |
libnspr4 (>= 2:4.25~) |
libnss3 (>= 2:3.51.1~) |
libpango-1.0-0 (>= 1.14.0) |
libstdc++6 (>= 9) |
libvpx6 (>= 1.8.0) |
libx11-6 |
libx11-xcb1 (>= 2:1.6.9) |
libxcb-shm0 |
libxcb1 |
libxcomposite1 (>= 1:0.4.5) |
libxdamage1 (>= 1:1.1) |
libxext6 |
libxfixes3 |
libxrender1 |
libxt6 |
zlib1g (>= 1:1.2.11.dfsg) |
fontconfig |
procps |
debianutils (>= 1.16) |


Recommends (Version) | Installed
=-+-===
libavcodec58 |
OR libavcodec-extra58 | 7:4.2.2-1+b1
OR libavcodec57 | 7:3.4.3-1
OR libavcodec-extra57 |
OR libavcodec56 |
OR libavcodec-extra56 |
OR libavcodec55 |
OR libavcodec-extra55 |
OR libavcodec54 |
OR libavcodec-extra54 |
OR libavcodec53 |
OR libavcodec-extra53 |


Suggests (Version) | Installed
===-+-===
fonts-stix |
OR otf-stix |
fonts-lmodern | 2.004.5-6
libgssapi-krb5-2 |
OR libkrb53 |
libcanberra0 |
libgtk2.0-0 |
pulseaudio |



--- Output from package bug script ---


-- Addons package information



Bug#956859: [gnome-tweaks] gnome-tweaks needs gnome-shell-extension-prefs

2020-04-15 Thread Sergio Costas

Package: gnome-tweaks
Version: 3.34.0-3
Severity: normal

--- Please enter the report below this line. ---

The program "gnome-tweaks" requires the program 
"gnome-shell-extension-prefs", but the package of the former doesn't 
have the later as dependency, so the user is unable to configure the 
preferences of the extensions installed in the system, unless (s)he 
manually installs it.



--- System information. ---
Architecture:
Kernel: Linux 5.5.0-1-amd64

Debian Release: bullseye/sid
500 unstable-debug debug.mirrors.debian.org
500 unstable ftp.debian.org
500 suldr www.bchemnet.com
500 stable repo.skype.com
500 stable linux.teamviewer.com
500 stable dl.google.com

--- Package information. ---
Depends (Version) | Installed
-+-===
python3:any |
gsettings-desktop-schemas (>= 3.28) | 3.36.0-1
gnome-settings-daemon | 3.36.0-1
gnome-shell-common (>= 3.24) | 3.36.1-5
mutter-common | 3.36.1-4
python3-gi (>= 3.10) | 3.36.0-2
gir1.2-gtk-3.0 (>= 3.12) | 3.24.18-1
gir1.2-gnomedesktop-3.0 (>= 3.30) | 3.36.1-2
gir1.2-handy-0.0 | 0.0.13-2
gir1.2-soup-2.4 | 2.70.0-1
gir1.2-notify-0.7 | 0.7.9-1
gir1.2-glib-2.0 (>= 1.58) | 1.64.1-1
gir1.2-pango-1.0 | 1.44.7-3


Package's Recommends field is empty.

Package's Suggests field is empty.



Bug#956297: [gnome] Gnome Shell crashes in Wayland if a window is "Stick" in all workspaces and a popup menu is open

2020-04-09 Thread Sergio Costas

Package: gnome
Version: 3.34.2
Severity: important
Tags: patch

--- Please enter the report below this line. ---

If a window is marked as "sticky" (this is, that it must be shown in all 
workspaces), showing a popup menu with a submenu makes gnome shell to 
crash. Tested on:


- Debian SID and Fedora 31, all of them with Gnome Shell 3.34.2: the bug 
is present.


- Ubuntu 19.04 with Gnome Shell 3.32: the bug is present (also there is 
a bug report in Ubuntu: 
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1864326 )


- Debian Buster (current stable) with Gnome Shell 3.30.2: no bug there.

- Fedora 32 beta with Gnome Shell 3.36: no bug.

There is a one-line patch (already applied in Gnome Shell 3.36) that 
fixes this: https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1139


In the original bug-report that led to that MR it says to launch 
transmission-bittorrent, set the window as "show in all desktops", and 
open a menu. I've been unable to find that option, so I wrote a little 
gnome shell extension that allows to test it (download it from 
http://www.rastersoft.com/test_submenu_stick.zip ). Just install it, 
exit and enter again the Wayland gnome shell session, enable it, and a 
window will appear. Right click in the window to show the menu and go to 
the second option (the one with a submenu). Gnome shell will crash (but 
only in Wayland; in X11 it will work fine).



--- System information. ---

Architecture:
Kernel: Linux 5.4.0-4-amd64

Debian Release: bullseye/sid
500 unstable-debug debug.mirrors.debian.org
500 unstable ftp.debian.org
500 suldr www.bchemnet.com
500 stable repo.skype.com
500 stable linux.teamviewer.com
500 stable dl.google.com

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.



Bug#954825: Sent a patch upstream for this

2020-03-28 Thread Sergio Costas
I had the same problem, and some minutes ago I sent a patch upstream for 
this. It is at:


https://gitlab.gnome.org/GNOME/gnome-boxes/-/merge_requests/297



Bug#954095: [gimp] GIMP fails to boot, with a segmentation fault

2020-03-16 Thread Sergio Costas

Package: gimp
Version: 2.10.14-2+b1
Severity: grave

--- Please enter the report below this line. ---

When launching GIMP, it fails with a segmentation fault and opens a 
window with this text:



```
GNU Image Manipulation Program version 2.10.14
git-describe: GIMP_2_10_12-511-ga4f55d6c7e
C compiler:
    Using built-in specs.
    COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
    OFFLOAD_TARGET_NAMES=nvptx-none:hsa
    OFFLOAD_TARGET_DEFAULT=1
    Target: x86_64-linux-gnu
    Configured with: ../src/configure -v --with-pkgversion='Debian 
9.2.1-31' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 
--prefix=/usr --with-gcc-major-version-only --program-suffix=-9 
--program-prefix=x86_64-linux-gnu- --enable-shared 
--enable-linker-build-id --libexecdir=/usr/lib 
--without-included-gettext --enable-threads=posix --libdir=/usr/lib 
--enable-nls --enable-bootstrap --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--with-default-libstdcxx-abi=new --enable-gnu-unique-object 
--disable-vtable-verify --enable-plugin --enable-default-pie 
--with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto 
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none,hsa --without-cuda-driver 
--enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu 
--with-build-config=bootstrap-lto-lean --enable-link-mutex

    Thread model: posix
    gcc version 9.2.1 20200306 (Debian 9.2.1-31)

using babl version 0.1.74 (compiled against version 0.1.74)
using GEGL version 0.4.22 (compiled against version 0.4.22)
using GLib version 2.64.1 (compiled against version 2.64.0)
using GdkPixbuf version 2.40.0 (compiled against version 2.40.0)
using GTK+ version 2.24.32 (compiled against version 2.24.32)
using Pango version 1.42.3 (compiled against version 1.42.3)
using Fontconfig version 2.13.1 (compiled against version 2.13.1)
using Cairo version 1.16.0 (compiled against version 1.16.0)

```
> fatal error: Violación de segmento

Stack trace:
```

# Stack traces obtained from PID 17161 - Thread 17161 #

[New LWP 17162]
[New LWP 17163]
[New LWP 17164]
[New LWP 17165]
[New LWP 17166]
[New LWP 17167]
[New LWP 17168]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
__libc_read (nbytes=256, buf=0x7ffe6551d450, fd=16) at 
../sysdeps/unix/sysv/linux/read.c:26

  Id   Target Id Frame
* 1    Thread 0x7f53f5be3e80 (LWP 17161) "gimp"  __libc_read 
(nbytes=256, buf=0x7ffe6551d450, fd=16) at 
../sysdeps/unix/sysv/linux/read.c:26
  2    Thread 0x7f53f5643700 (LWP 17162) "worker"    syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3    Thread 0x7f53f4e42700 (LWP 17163) "worker"    syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4    Thread 0x7f53e700 (LWP 17164) "worker"    syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5    Thread 0x7f53ee673700 (LWP 17165) "gmain" 0x7f53f77dfb0f in 
__GI___poll (fds=0x560c07512a20, nfds=1, timeout=4482) at 
../sysdeps/unix/sysv/linux/poll.c:29
  6    Thread 0x7f53ede72700 (LWP 17166) "gdbus" 0x7f53f77dfb0f in 
__GI___poll (fds=0x560c0751eac0, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  7    Thread 0x7f53d3fff700 (LWP 17167) "async" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  8    Thread 0x7f53d37fe700 (LWP 17168) "pool-gimp" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38


Thread 8 (Thread 0x7f53d37fe700 (LWP 17168)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7f53f7ab9ae2 in g_cond_wait_until 
(cond=cond@entry=0x560c074e9128, mutex=mutex@entry=0x560c074e9120, 
end_time=end_time@entry=25537426028) at ../../../glib/gthread-posix.c:1588

    now = {tv_sec = 25522, tv_nsec = 426028438}
    span = {tv_sec = 14, tv_nsec = 99562}
    sampled = 0
    res = 
    success = 
#2  0x7f53f7a3e5d1 in g_async_queue_pop_intern_unlocked 
(queue=queue@entry=0x560c074e9120, wait=wait@entry=1, 
end_time=end_time@entry=25537426028) at ../../../glib/gasyncqueue.c:422

    retval = 
    __func__ = "g_async_queue_pop_intern_unlocked"
#3  0x7f53f7a3ebc2 in g_async_queue_timeout_pop 
(queue=0x560c074e9120, timeout=timeout@entry=1500) at 
../../../glib/gasyncqueue.c:545

    end_time = 25537426028
    retval = 
    __func__ = "g_async_queue_timeout_pop"
#4  0x7f53f7a96e19 in g_thread_pool_wait_for_new_pool () at 
../../../glib/gthreadpool.c:183

    pool = 
    local_max_idle_time = 15000
    local_wakeup_thread_serial = 
    last_wakeup_thread_serial = 0
    have_relayed_thread_marker = 
    free_pool = 

Bug#953215: [libreadline-dev] libreadline-dev in stable lacks a .pc file for pkg-config

2020-03-05 Thread Sergio Costas

Package: libreadline-dev
Version: 7.0.5
Severity: grave

--- Please enter the report below this line. ---

The libreadline-dev file for debian stable lacks a .pc file, so it is 
not possible to compile programs using CMake or Meson/Ninja if they 
check for it.


Debian SID package has it.


--- System information. ---
Architecture:
Kernel: Linux 5.4.0-4-amd64

Debian Release: bullseye/sid
500 unstable-debug debug.mirrors.debian.org
500 unstable ftp.debian.org
500 suldr www.bchemnet.com
500 stable repo.skype.com
500 stable linux.teamviewer.com
500 stable dl.google.com

--- Package information. ---
Depends (Version) | Installed
===-+-=
libreadline8 (= 8.0-4) | 8.0-4
libncurses-dev | 6.2-1
dpkg (>= 1.15.4) | 1.19.7
OR install-info | 6.7.0.dfsg.2-5


Package's Recommends field is empty.

Suggests (Version) | Installed
===-+-===
readline-doc |

--
Nos leemos
 RASTER(Linux user #228804)
ras...@rastersoft.com  http://www.rastersoft.com



Bug#952779: [xwayland] XWayland doesn't honor the keyboard layout

2020-02-28 Thread Sergio Costas

Package: xwayland
Version: 1.20.7-3
Severity: important

--- Please enter the report below this line. ---

Programs running under XWayland doesn't honor the keyboard layout 
configured under Gnome Shell.


I have the Spanish keyboard layout configured in my system, with an 
Spanish keyboard. Under X11 everything works as expected: pressing the 
'ñ' key shows an 'ñ' letter, and all the symbols are in the right key.


Logging in Wayland, everything *seems* to work fine, and in fact, native 
Wayland applications (like Gedit) work fine and show the symbols and 
Spanish characters as expected. But applications that use XWayland 
don't, interpreting the keyboard as an American one. Even more: forcing 
GTK3 applications to use XWayland makes them fail too, like doing from a 
terminal:


    GDK_BACKEND=x11 gedit

In this case, gedit also interprets incorrectly the keyboard layout.

HOW TO REPRODUCE:

- set your keyboard layout to Spanish

- logging in Wayland

- launch Firefox

- try to type a symbol

- compare the symbol typed with the one that is inserted when pressing 
the same key in Gedit



--- System information. ---
Architecture:
Kernel: Linux 5.4.0-4-amd64

Debian Release: bullseye/sid
500 unstable-debug debug.mirrors.debian.org
500 unstable ftp.debian.org
500 suldr www.bchemnet.com
500 stable repo.skype.com
500 stable linux.teamviewer.com
500 stable dl.google.com

--- Package information. ---
Depends (Version) | Installed
==-+-
xserver-common (>= 2:1.20.7-3) | 2:1.20.7-3
libaudit1 (>= 1:2.2.1) | 1:2.8.5-2+b1
libbsd0 (>= 0.7.0) |
libc6 (>= 2.29) |
libdrm2 (>= 2.4.75) |
libepoxy0 (>= 1.0) |
libgbm1 (>= 17.1.0~rc2) |
libgcrypt20 (>= 1.8.0) |
libgl1 |
libpixman-1-0 (>= 0.30.0) |
libselinux1 (>= 2.0.82) |
libsystemd0 |
libunwind8 |
libwayland-client0 (>= 1.9.91) |
libxau6 |
libxdmcp6 |
libxfont2 (>= 1:2.0.1) |
libxshmfence1 |


Package's Recommends field is empty.

Package's Suggests field is empty.



Bug#879926: sqlitebrowser: SQLitebrowser prevents gnome shell from switching between virtual desktops

2017-10-27 Thread Sergio Costas
Package: sqlitebrowser
Version: 3.9.1-2
Severity: important
Tags: patch

Dear Maintainer,

When I use sqlitebrowser under Gnome Shell, it "locks" the current virtual
desktop. It is impossible to switch between virtual desktops because every time
I try to do it, it returns again to the virtual desktop where the sqlitebrowser
window is. No matter if I try to do it from the Activities view, or using
hotkeys.

This bug was reported to the creator (
https://github.com/sqlitebrowser/sqlitebrowser/issues/934 ), and there is a
single-line patch that fixes it (
https://github.com/kehugter/sqlitebrowser/commit/c4c4cf62a2adf90c7604a920c409c27192f177ce
). I downloaded the source code and compiled it, and the patch works fine, so I
ask to backport this fix into the current sqlitebrowser package.

Thanks.



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

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

Versions of packages sqlitebrowser depends on:
ii  libc6  2.24-17
ii  libgcc11:7.2.0-12
ii  libqcustomplot1.3  1.3.2+dfsg1-1
ii  libqt5core5a   5.9.1+dfsg-12
ii  libqt5gui5 5.9.1+dfsg-12
ii  libqt5network5 5.9.1+dfsg-12
ii  libqt5printsupport55.9.1+dfsg-12
ii  libqt5scintilla2-12v5  2.9.3+dfsg-5+b1
ii  libqt5test55.9.1+dfsg-12
ii  libqt5widgets5 5.9.1+dfsg-12
ii  libsqlite3-0   3.20.1-2
ii  libstdc++6 7.2.0-12

sqlitebrowser recommends no packages.

sqlitebrowser suggests no packages.

-- no debconf information
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
index 445e9680..6ef0ca43 100644
--- a/src/MainWindow.cpp
+++ b/src/MainWindow.cpp
@@ -863,7 +863,6 @@ void MainWindow::toggleEditDock(bool visible)
 {
 if (!visible) {
 // Update main window
-activateWindow();
 ui->dataTable->setFocus();
 } else {
 // fill edit dock with actual data
diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
index 445e9680..6ef0ca43 100644
--- a/src/MainWindow.cpp
+++ b/src/MainWindow.cpp
@@ -863,7 +863,6 @@ void MainWindow::toggleEditDock(bool visible)
 {
 if (!visible) {
 // Update main window
-activateWindow();
 ui->dataTable->setFocus();
 } else {
 // fill edit dock with actual data


Bug#825916: installation-reports: Installing Debian with AMD/ATI Radeon graphics card does not go well

2017-04-16 Thread Sergio Costas
Package: installation-reports
Followup-For: Bug #825916

I had the same problem after downloading the netinst iso image for debian
testing. I selected to install GNOME desktop, and after rebooting, I received,
in the TTY1 console, the error:

DRM:RADEON_PCI_PROBE[RADEON] *ERROR* Radeon kernel modesetting for r600 or
later requires firmware-amd-graphics

After switching to TTY2 and logging into, I added "contrib" and "non-free", did
an "update", installed "firmware-amd-graphics" and rebooted. And everything
worked fine.



-- Package-specific info:

Boot method: network
Image version: debian testing
Date: 

Machine: Desktop PC with Intel Core i5-4440, 16GB RAM, ATI Radeon HD 7750/8740 
/ R7 250E
Partitions: 


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:




-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="9 (stretch) - installer build 20170410-00:01"
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux debian 4.9.0-2-amd64 #1 SMP Debian 4.9.18-1 (2017-03-30) x86_64 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 4th Gen Core 
Processor DRAM Controller [8086:0c00] (rev 06)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation Xeon E3-1200 v3/4th 
Gen Core Processor PCI Express x16 Controller [8086:0c01] (rev 06)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:16.0 Communication controller [0780]: Intel Corporation 8 
Series/C220 Series Chipset Family MEI Controller #1 [8086:8c3a] (rev 04)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: 00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet 
Connection I217-V [8086:153b] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:859f]
lspci -knn: Kernel driver in use: e1000e
lspci -knn: Kernel modules: e1000e
lspci -knn: 00:1a.0 USB controller [0c03]: Intel Corporation 8 Series/C220 
Series Chipset Family USB EHCI #2 [8086:8c2d] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: Kernel driver in use: ehci-pci
lspci -knn: Kernel modules: ehci_pci
lspci -knn: 00:1b.0 Audio device [0403]: Intel Corporation 8 Series/C220 Series 
Chipset High Definition Audio Controller [8086:8c20] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8576]
lspci -knn: Kernel driver in use: snd_hda_intel
lspci -knn: Kernel modules: snd_hda_intel
lspci -knn: 00:1d.0 USB controller [0c03]: Intel Corporation 8 Series/C220 
Series Chipset Family USB EHCI #1 [8086:8c26] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: Kernel driver in use: ehci-pci
lspci -knn: Kernel modules: ehci_pci
lspci -knn: 00:1f.0 ISA bridge [0601]: Intel Corporation H87 Express LPC 
Controller [8086:8c4a] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: 00:1f.2 SATA controller [0106]: Intel Corporation 8 Series/C220 
Series Chipset Family 6-port SATA Controller 1 [AHCI mode] [8086:8c02] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: Kernel driver in use: ahci
lspci -knn: Kernel modules: ahci
lspci -knn: 00:1f.3 SMBus [0c05]: Intel Corporation 8 Series/C220 Series 
Chipset Family SMBus Controller [8086:8c22] (rev 05)
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:8534]
lspci -knn: 01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, 
Inc. [AMD/ATI] Cape Verde PRO [Radeon HD 7750/8740 / R7 250E] [1002:683f]
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:0459]
lspci -knn: 01:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] 
Cape Verde/Pitcairn HDMI Audio [Radeon HD 7700/7800 Series] [1002:aab0]
lspci -knn: Subsystem: ASUSTeK Computer Inc. Device [1043:aab0]
lspci -knn: Kernel driver in use: snd_hda_intel
lspci -knn: Kernel modules: snd_hda_intel
usb-list: 
usb-list: Bus 01 Device 01: EHCI Host Controller [1d6b:0002]

Bug#859539: Downloaded sources also fail

2017-04-04 Thread Sergio Costas
Hi again:

I also tried to download the sources from filezilla.org and install them
(both filezilla and libfilezilla), and also crashes...

-- 
Nos leemos
 RASTER(Linux user #228804)
ras...@rastersoft.com  http://www.rastersoft.com



Bug#859539: filezilla: Filezilla crashes at startup

2017-04-04 Thread Sergio Costas
Hi John:

This?

raster@rasterhost:~$ gdb filezilla
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from filezilla...Reading symbols from
/usr/lib/debug/.build-id/31/c201bdd8cd0fed8dfd5bb02b38cdfbe4567309.debug...done.
done.
(gdb) r
Starting program: /usr/bin/filezilla
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Reading locale option from /home/raster/.filezilla/filezilla.xml
[New Thread 0x7fffe8eb5700 (LWP 24494)]
[New Thread 0x7fffe3fff700 (LWP 24496)]
[New Thread 0x7fffe2f27700 (LWP 24497)]
[New Thread 0x7fffe2726700 (LWP 24498)]
[New Thread 0x7fffe1f25700 (LWP 24499)]
[New Thread 0x7fffe1724700 (LWP 24500)]

Thread 1 "filezilla" received signal SIGSEGV, Segmentation fault.
0x761bd386 in wxGenericTreeCtrl::Expand(wxTreeItemId const&) ()
from /usr/lib/x86_64-linux-gnu/libwx_gtk2u_core-3.0.so.0
(gdb) bt
#0  0x761bd386 in wxGenericTreeCtrl::Expand(wxTreeItemId const&)
() from /usr/lib/x86_64-linux-gnu/libwx_gtk2u_core-3.0.so.0
#1  0x761b6a97 in wxGenericTreeCtrl::EnsureVisible(wxTreeItemId
const&) () from /usr/lib/x86_64-linux-gnu/libwx_gtk2u_core-3.0.so.0
#2  0x761bd9bc in wxGenericTreeCtrl::DoSelectItem(wxTreeItemId
const&, bool, bool) () from
/usr/lib/x86_64-linux-gnu/libwx_gtk2u_core-3.0.so.0
#3  0x761bde09 in wxGenericTreeCtrl::SelectItem(wxTreeItemId
const&, bool) () from /usr/lib/x86_64-linux-gnu/libwx_gtk2u_core-3.0.so.0
#4  0x55872acc in wxTreeCtrlEx::SafeSelectItem
(this=0x56304660, item=...) at treectrlex.cpp:50
#5  0x55715a86 in CLocalTreeView::SetDir
(this=this@entry=0x56304660, localDir=...) at LocalTreeView.cpp:333
#6  0x55715c78 in CLocalTreeView::OnStateChange
(this=0x56304660, notification=) at LocalTreeView.cpp:871
#7  0x55841ca5 in CState::NotifyHandlers
(this=this@entry=0x562fcc00,
notification=notification@entry=STATECHANGE_LOCAL_DIR, data=...,
data2=data2@entry=0x0) at state.cpp:638
#8  0x5584913b in CState::SetLocalDir
(this=this@entry=0x562fcc00, dir=..., error=error@entry=0x0,
rememberPreviousSubdir=rememberPreviousSubdir@entry=true) at state.cpp:299
#9  0x55849a02 in CState::SetLocalDir
(this=this@entry=0x562fcc00,
dir=L"/home/raster/workspace/pagina_local/html/", error=error@entry=0x0,
rememberPreviousSubdir=rememberPreviousSubdir@entry=true)
at state.cpp:227
#10 0x55674ae0 in CContextControl::CreateTab
(this=0x56167620) at context_control.cpp:119
#11 0x5572d8a7 in CMainFrame::CMainFrame (this=0x5615de90)
at Mainfrm.cpp:352
#12 0x556aa27f in CFileZillaApp::OnInit (this=0x55d4b530) at
FileZilla.cpp:275
#13 0x756f7c12 in wxEntry(int&, wchar_t**) () from
/usr/lib/x86_64-linux-gnu/libwx_baseu-3.0.so.0
#14 0x55625059 in main (argc=,
argv=0x7fffe668) at locale_initializer.cpp:98
(gdb)


El 04/04/17 a las 23:14, John Paul Adrian Glaubitz escribió:
> Control: tags -1 moreinfo
>
> Hi Sergio!
>
> I just tried to reproduce the crash on amd64 but without success.
>
> I added ftp.debian.org as a remote site and added my home directory as the
> local and /debian/ as the remote directories for a bookmark, saved the book-
> mark, connected to ftp.debian.org, then chose the newly generated bookmark
> without any problems.
>
> Could you please install the dbgsym package for filezilla [1],  run filezilla
> within gdb and provide a backtrace.
>
> Thanks,
> Adrian
>
>> [1] https://wiki.debian.org/AutomaticDebugPackages


-- 
Nos leemos
 RASTER(Linux user #228804)
ras...@rastersoft.com  http://www.rastersoft.com



Bug#859539: filezilla: Filezilla crashes at startup

2017-04-04 Thread Sergio Costas
Package: filezilla
Version: 3.24.0-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

After updating my Debian SID system, filezilla stopped working. Launching it
from a command line returns a segmentation fault almost inmediatly:

raster@rasterhost:~/.config$ filezilla
Reading locale option from /home/raster/.filezilla/filezilla.xml
Segmentation fault
raster@rasterhost:~/.config$

Removing the file .filezilla/filezilla.xml allows to launch it, but as soon as
a server is chosen in the bookmarks, it crashes again.

raster@rasterhost:~$ filezilla
Reading locale option from /home/raster/.filezilla/filezilla.xml
wxD-Bus: Signal from /org/freedesktop/DBus, member NameAcquired
wxD-Bus: Reply with serial 2
wxD-Bus: Reply to RegisterClient, our object path is
/org/gnome/SessionManager/Client33

** (filezilla:18791): WARNING **: invalid source position for vertical
gradient

** (filezilla:18791): WARNING **: invalid source position for vertical
gradient

** (filezilla:18791): WARNING **: invalid source position for vertical
gradient

** (filezilla:18791): WARNING **: invalid source position for vertical
gradient
wxD-Bus: CPowerManagementInhibitor: Requesting busy
Segmentation fault
raster@rasterhost:~$




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

Kernel: Linux 4.9.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=, LC_CTYPE= (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages filezilla depends on:
ii  filezilla-common 3.24.0-1
ii  libatk1.0-0  2.22.0-1
ii  libc62.24-9
ii  libcairo21.14.8-1
ii  libdbus-1-3  1.10.16-1
ii  libfilezilla00.9.0-1
ii  libfontconfig1   2.11.0-6.7+b1
ii  libfreetype6 2.6.3-3+b2
ii  libgcc1  1:6.3.0-11
ii  libgdk-pixbuf2.0-0   2.36.5-2
ii  libglib2.0-0 2.50.3-2
ii  libgnutls30  3.5.8-5
ii  libgtk2.0-0  2.24.31-2
ii  libnettle6   3.3-1+b1
ii  libpango-1.0-0   1.40.4-1
ii  libpangocairo-1.0-0  1.40.4-1
ii  libpangoft2-1.0-01.40.4-1
ii  libpugixml1v51.7-2
ii  libsqlite3-0 3.16.2-3
ii  libstdc++6   6.3.0-11
ii  libwxbase3.0-0v5 3.0.2+dfsg-3
ii  libwxgtk3.0-0v5  3.0.2+dfsg-3

Versions of packages filezilla recommends:
ii  xdg-utils  1.1.1-1

filezilla suggests no packages.

-- no debconf information



Bug#857032: thunderbird: Thunderbird 1:45.7.1-2 fails to start

2017-03-08 Thread Sergio Costas
Package: thunderbird
Version: 1:45.7.1-2
Followup-For: Bug #857032

I have the same problem: I have a .thunderbird folder, and an much older
.icedove_moved_by_thunderbird_starter folder, but not .icedove folder. I
receive the message

INFO  -> [[ ... using verbose mode ... ]]
/usr/bin/thunderbird: línea 197:  : no se encontró la orden
DEBUG -> There is already a folder or symlink '/home/raster/.thunderbird', will
do nothing.
DEBUG -> Please investigate by yourself! Some more information below.
<12>Mar  8 09:58:04 raster[28016]: /usr/bin/thunderbird: [profile migration]
Couldn't migrate Icedove into Thunderbird profile due existing or symlinked
folder '/home/raster/.thunderbird'!
DEBUG -> /home/raster/.icedove is probably a symlink pointing to a non existing
target, at least not to /home/raster/.icedove.
<12>Mar  8 09:58:04 raster[28018]: /usr/bin/thunderbird: [profile migration]
/home/raster/.icedove is probably a symlink pointing to a non existing target,
at least not to /home/raster/.icedove.
DEBUG -> Found folder '/home/raster/.thunderbird'



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

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

Versions of packages thunderbird depends on:
ii  debianutils   4.8.1
ii  fontconfig2.11.0-6.7+b1
ii  libasound21.1.3-5
ii  libatk1.0-0   2.22.0-1
ii  libc6 2.24-9
ii  libcairo2 1.14.8-1
ii  libdbus-1-3   1.10.16-1
ii  libdbus-glib-1-2  0.108-2
ii  libevent-2.0-52.0.21-stable-3
ii  libffi6   3.2.1-6
ii  libfontconfig12.11.0-6.7+b1
ii  libfreetype6  2.6.3-3+b2
ii  libgcc1   1:6.3.0-8
ii  libgdk-pixbuf2.0-02.36.5-2
ii  libglib2.0-0  2.50.3-1
ii  libgtk2.0-0   2.24.31-2
ii  libhunspell-1.4-0 1.4.1-2+b2
ii  libicu57  57.1-5
ii  libnspr4  2:4.12-6
ii  libnss3   2:3.26.2-1
ii  libpango-1.0-01.40.4-1
ii  libpangocairo-1.0-0   1.40.4-1
ii  libpangoft2-1.0-0 1.40.4-1
ii  libpixman-1-0 0.34.0-1
ii  libsqlite3-0  3.16.2-3
ii  libstartup-notification0  0.12-4
ii  libstdc++66.3.0-8
ii  libvpx4   1.6.1-2
ii  libx11-6  2:1.6.4-3
ii  libxcomposite11:0.4.4-2
ii  libxdamage1   1:1.1.4-2+b1
ii  libxext6  2:1.3.3-1
ii  libxfixes31:5.0.3-1
ii  libxrender1   1:0.9.10-1
ii  libxt61:1.1.5-1
ii  psmisc22.21-2.1+b2
ii  x11-utils 7.7+3+b1
ii  zlib1g1:1.2.8.dfsg-5

Versions of packages thunderbird recommends:
ii  hunspell-en-gb [hunspell-dictionary]  1:5.2.5-1
ii  hunspell-en-us [hunspell-dictionary]  20070829-7
ii  lightning 1:45.7.1-2
ii  myspell-en-au [myspell-dictionary]2.1-5.4
ii  myspell-es [myspell-dictionary]   1.11-14

Versions of packages thunderbird suggests:
ii  apparmor  2.11.0-2
ii  fonts-lyx 2.2.2-1
ii  libgssapi-krb5-2  1.15-1

-- no debconf information


Bug#851783: gnucash: GNUCash crashes when asking for a report, if talkplugin for chrome is installed

2017-01-18 Thread Sergio Costas
Package: gnucash
Version: 1:2.6.15-1
Severity: important

Dear Maintainer,

I've been using GNUCash for about ten years, but some months ago it started to
crash every time I tried to get a report. Since I use it mainly to keep my
house accounts, it wasn't a big problem, until I really needed a report. I
tried running GNUCash with valgrind and it returned this error:

Vector smash protection is enabled.
No bp log location saved, using default.
[000:000] Cpu: 6.60.3, x4, 3300Mhz, 15989MB
[000:008] Computer model: Not available
[000:011] Browser XEmbed support present: 1
[000:012] Browser toolkit is Gtk2.
==2869==
==2869== Process terminating with default action of signal 11 (SIGSEGV)
==2869==  Access not within mapped region at address 0x38
==2869==at 0x400BABC: elf_machine_rela (dl-machine.h:305)
==2869==by 0x400BABC: elf_dynamic_do_Rela (do-rel.h:137)
==2869==by 0x400BABC: _dl_relocate_object (dl-reloc.c:259)
==2869==by 0x4013BF0: dl_open_worker (dl-open.c:435)
==2869==by 0x400F483: _dl_catch_error (dl-error.c:187)
==2869==by 0x4013418: _dl_open (dl-open.c:660)
==2869==by 0xB224EE8: dlopen_doit (dlopen.c:66)
==2869==by 0x400F483: _dl_catch_error (dl-error.c:187)
==2869==by 0xB225520: _dlerror_run (dlerror.c:163)
==2869==by 0xB224F81: dlopen@@GLIBC_2.2.5 (dlopen.c:87)
==2869==by 0x81658862: ??? (in
/home/raster/datos_extra/opt/google/talkplugin/libnpgoogletalk.so)
==2869==by 0xE151902: ??? (in /usr/lib/x86_64-linux-
gnu/libwebkitgtk-1.0.so.0.22.17)
==2869==by 0xE151A0A: ??? (in /usr/lib/x86_64-linux-
gnu/libwebkitgtk-1.0.so.0.22.17)
==2869==by 0xD8611C6: ??? (in /usr/lib/x86_64-linux-
gnu/libwebkitgtk-1.0.so.0.22.17)
==2869==  If you believe this happened as a result of a stack
==2869==  overflow in your program's main thread (unlikely but
==2869==  possible), you can try to increase the size of the
==2869==  main thread stack using the --main-stacksize= flag.
==2869==  The main thread stack size used in this run was 8388608.
==2869==
==2869== HEAP SUMMARY:
==2869== in use at exit: 62,993,798 bytes in 731,922 blocks
==2869==   total heap usage: 17,810,483 allocs, 17,078,561 frees, 4,698,818,468
bytes allocated
==2869==
==2869== LEAK SUMMARY:
==2869==definitely lost: 330,267 bytes in 37,438 blocks
==2869==indirectly lost: 54,805 bytes in 2,273 blocks
==2869==  possibly lost: 138,963 bytes in 274 blocks
==2869==still reachable: 52,779,443 bytes in 650,723 blocks
==2869==   of which reachable via heuristic:
==2869== stdstring  : 8,234 bytes in 3 blocks
==2869== length64   : 475,408 bytes in 440
blocks
==2869== newarray   : 2,208 bytes in 58 blocks
==2869== suppressed: 0 bytes in 0 blocks
==2869== Rerun with --leak-check=full to see details of leaked memory
==2869==
==2869== For counts of detected and suppressed errors, rerun with: -v
==2869== Use --track-origins=yes to see where uninitialised values come from
==2869== ERROR SUMMARY: 1700407 errors from 187 contexts (suppressed: 1 from 1)
Violación de segmento

After inspecting the output I tried to remove the /opt/google/talkplugin folder
and tried again. This time everything worked like a charm. Enabling again the
plugin made gnucash crash again.

I suspect that the problem is in the libwebkit used in gnucash, that, for some
obscure reason, tries to load all the chrome plugins.



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

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

Versions of packages gnucash depends on:
ii  gnucash-common 1:2.6.15-1
ii  guile-2.0  2.0.13+1-4
ii  guile-2.0-libs 2.0.13+1-4
ii  libaqbanking35 5.6.12-1
ii  libaqbanking35-plugins 5.6.12-1
ii  libc6  2.24-9
ii  libcairo2  1.14.8-1
ii  libcrypt-ssleay-perl   0.73.04-2
ii  libdate-manip-perl 6.57-1
ii  libdbi10.9.0-4
ii  libfinance-quote-perl  1.38-1
ii  libgdk-pixbuf2.0-0 2.36.4-1
ii  libglib2.0-0   2.50.2-2
ii  libgnome-keyring0  3.12.0-1+b1
ii  libgnomecanvas2-0  2.30.3-3
ii  libgoffice-0.8-8   0.8.17-7
ii  libgtk2.0-02.24.31-1
ii  libgwengui-gtk2-0  4.15.3-5
ii  libgwenhywfar604.15.3-5
ii  libhtml-tableextract-perl  2.13-1
ii  libhtml-tree-perl  5.03-2
ii  libktoblzcheck1v5  1.48-2.1
ii  libofx61:0.9.10-2
ii  libpango-1.0-0 1.40.3-3
ii  libpangocairo-1.0-01.40.3-3
ii  libpython2.7   2.7.13-1
ii  libwebkitgtk-1.0-0 2.4.11-3
ii  libwww-perl6.15-1
ii  libx11-6   2:1.6.

Bug#848020: gnome-shell: Custom keyboard shortcuts don't work

2016-12-13 Thread Sergio Costas
Package: gnome-shell
Version: 3.22.2-1
Severity: important

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***

I was trying to add a shortcut in my Debian SID system with gnome shell, but
they don't work.
I went to the control panel, opened the Keyboard icon, went to the bottom of
the list, clicked
the "+" button and a window appeared to configure the shortcut. I put "prueba"
as a name, "gnome-terminal"
as the command, and F12 as the shortcut. Then I clicked "Add" button, and the
shortcut was added to the list.
Unfortunately, pressing F12 did nothing, when it should have launched a
terminal window.

I tested with other keys combinations (Ctrl+T, Shift+F12 and more), other
binaries... Also tried to put the full path ("/usr/bin...") to
the binary, but never worked.

Tried it both in X11 and in Wayland, but it didn't work in neither.



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

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

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-2
ii  evolution-data-server3.22.2-1
ii  gir1.2-accountsservice-1.0   0.6.40-4
ii  gir1.2-atspi-2.0 2.22.0-4
ii  gir1.2-caribou-1.0   0.4.21-1
ii  gir1.2-freedesktop   1.50.0-1
ii  gir1.2-gcr-3 3.20.0-3
ii  gir1.2-gdesktopenums-3.0 3.22.0-1
ii  gir1.2-gdm-1.0   3.22.1-1
ii  gir1.2-glib-2.0  1.50.0-1
ii  gir1.2-gnomebluetooth-1.03.20.0-1
ii  gir1.2-gnomedesktop-3.0  3.22.2-1
ii  gir1.2-gtk-3.0   3.22.5-1
ii  gir1.2-gweather-3.0  3.20.3-1
ii  gir1.2-ibus-1.0  1.5.14-2
ii  gir1.2-mutter-3.03.22.2-2
ii  gir1.2-networkmanager-1.01.4.2-3
ii  gir1.2-nmgtk-1.0 1.4.2-1
ii  gir1.2-pango-1.0 1.40.3-3
ii  gir1.2-polkit-1.00.105-17
ii  gir1.2-soup-2.4  2.56.0-1
ii  gir1.2-telepathyglib-0.120.24.1-1.1
ii  gir1.2-telepathylogger-0.2   0.8.2-2
ii  gir1.2-upowerglib-1.00.99.4-4
ii  gjs  1.46.0-1+b1
ii  gnome-backgrounds3.22.1-1
ii  gnome-settings-daemon3.22.1-1
ii  gnome-shell-common   3.22.2-1
ii  gsettings-desktop-schemas3.22.0-1
ii  libatk-bridge2.0-0   2.22.0-1
ii  libatk1.0-0  2.22.0-1
ii  libc62.24-8
ii  libcairo21.14.6-1.1
ii  libcanberra-gtk3-0   0.30-3
ii  libcanberra0 0.30-3
ii  libcroco30.6.11-2
ii  libdbus-glib-1-2 0.108-1
ii  libecal-1.2-19   3.22.2-1
ii  libedataserver-1.2-223.22.2-1
ii  libgcr-base-3-1  3.20.0-3
ii  libgdk-pixbuf2.0-0   2.36.0-1
ii  libgirepository-1.0-11.50.0-1
ii  libgjs0e [libgjs0-libmozjs-24-0] 1.46.0-1+b1
ii  libglib2.0-0 2.50.2-2
ii  libglib2.0-bin   2.50.2-2
ii  libgstreamer1.0-01.10.2-1
ii  libgtk-3-0   3.22.5-1
ii  libical2 2.0.0-0.5+b1
ii  libicu57 57.1-5
ii  libjson-glib-1.0-0   1.2.2-1
ii  libmozjs-24-024.2.0-5
ii  libmutter0i  3.22.2-2
ii  libnm-glib4  1.4.2-3
ii  libnm-util2  1.4.2-3
ii  libpango-1.0-0   1.40.3-3
ii  libpangocairo-1.0-0  1.40.3-3
ii  libpolkit-agent-1-0  0.105-17
ii  libpolkit-gobject-1-00.105-17
ii  libpulse-mainloop-glib0  9.0-5
ii  libpulse09.0-5
ii  l

Bug#847585: gnome-shell: Gnome-shell fails to launch

2016-12-09 Thread Sergio Costas
Package: gnome-shell
Version: 3.22.2-1
Severity: critical
Justification: breaks the whole system

Dear Maintainer,

I updated some minutes ago my Debian SID system, and after rebooting, the
gnome-shell session didn't start. I tried to run "gnome-shell --replace" from a
terminal that I was able to create, but I receive the following message:

raster@rasterhost:~$ gnome-shell --replace
Window manager warning: Workarounds for broken applications disabled. Some
applications may not behave properly.

(gnome-shell:22788): Gjs-WARNING **: JS ERROR: TypeError: imports.ui is
undefined
** Message: Execution of main.js threw exception: JS_EvaluateScript() failed
raster@rasterhost:~$

Without gnome-shell, and with the autosession enabled, it is impossible to use
the system.



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

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

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-2
ii  evolution-data-server3.22.2-1
ii  gir1.2-accountsservice-1.0   0.6.40-4
ii  gir1.2-atspi-2.0 2.22.0-4
ii  gir1.2-caribou-1.0   0.4.21-1
ii  gir1.2-freedesktop   1.50.0-1
ii  gir1.2-gcr-3 3.20.0-3
ii  gir1.2-gdesktopenums-3.0 3.22.0-1
ii  gir1.2-gdm-1.0   3.22.1-1
ii  gir1.2-glib-2.0  1.50.0-1
ii  gir1.2-gnomebluetooth-1.03.20.0-1
ii  gir1.2-gnomedesktop-3.0  3.22.2-1
ii  gir1.2-gtk-3.0   3.22.4-1
ii  gir1.2-gweather-3.0  3.20.3-1
ii  gir1.2-ibus-1.0  1.5.14-1
ii  gir1.2-mutter-3.03.22.2-2
ii  gir1.2-networkmanager-1.01.4.2-3
ii  gir1.2-nmgtk-1.0 1.4.2-1
ii  gir1.2-pango-1.0 1.40.3-3
ii  gir1.2-polkit-1.00.105-17
ii  gir1.2-soup-2.4  2.56.0-1
ii  gir1.2-telepathyglib-0.120.24.1-1.1
ii  gir1.2-telepathylogger-0.2   0.8.2-2
ii  gir1.2-upowerglib-1.00.99.4-4
ii  gjs  1.46.0-1+b1
ii  gnome-backgrounds3.22.1-1
ii  gnome-settings-daemon3.22.1-1
ii  gnome-shell-common   3.22.2-1
ii  gsettings-desktop-schemas3.22.0-1
ii  libatk-bridge2.0-0   2.22.0-1
ii  libatk1.0-0  2.22.0-1
ii  libc62.24-8
ii  libcairo21.14.6-1.1
ii  libcanberra-gtk3-0   0.30-3
ii  libcanberra0 0.30-3
ii  libcroco30.6.11-2
ii  libdbus-glib-1-2 0.108-1
ii  libecal-1.2-19   3.22.2-1
ii  libedataserver-1.2-223.22.2-1
ii  libgcr-base-3-1  3.20.0-3
ii  libgdk-pixbuf2.0-0   2.36.0-1
ii  libgirepository-1.0-11.50.0-1
ii  libgjs0e [libgjs0-libmozjs-24-0] 1.46.0-1+b1
ii  libglib2.0-0 2.50.2-2
ii  libglib2.0-bin   2.50.2-2
ii  libgstreamer1.0-01.10.2-1
ii  libgtk-3-0   3.22.4-1
ii  libical2 2.0.0-0.5+b1
ii  libicu57 57.1-5
ii  libjson-glib-1.0-0   1.2.2-1
ii  libmozjs-24-024.2.0-4
ii  libmutter0i  3.22.2-2
ii  libnm-glib4  1.4.2-3
ii  libnm-util2  1.4.2-3
ii  libpango-1.0-0   1.40.3-3
ii  libpangocairo-1.0-0  1.40.3-3
ii  libpolkit-agent-1-0  0.105-17
ii  libpolkit-gobject-1-00.105-17
ii  libpulse-mainloop-glib0  9.0-5
ii  libpulse09.0-5
ii  libsecret-1-00.18.5-2
ii  libstartup-notification0 0.12-4
ii  libsystemd0  232-7
ii  libtelepathy-glib0   0.24.1-1.1
ii  libwayland-client0   1.12.0-1
ii  libx11-6 2:1.6.4-2
ii  libxfixes3

Bug#843338: gnome-shell: Launching the autostart files are delayed for about one minute when booting with kernel 4.8.0

2016-11-05 Thread Sergio Costas
Package: gnome-shell
Version: 3.22.1-1
Severity: important

Dear Maintainer,

After updating my Debian SID system to kernel 4.8.0, mysteriously gnome shell
delayed for a little more than one minute the launch of the autostart programs
and some extensions. Sometimes the right menu doesn't work until that minute
passes and everything gets loaded.

Applications work fine, except that Plank, Solaar (they are two programs that I
have to be launched on desktop startup) and Nautilus with the desktop icons
weren't launched until about one minute. Returning to kernel 4.7.0 made
everything boot fine again, launching everything instantaneously. Booting again
with 4.8.0 triggers again that big delay.

Checked the .config/autostart folder and found two .desktop files that pointed
to non-existent binaries, but removing them didn't fixed the problem.

The bug happens only after booting the computer. Closing the session and
opening again doesn't trigger it. Also tried to disable the autologin, but the
bug also happens in this case.



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf

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

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-2
ii  evolution-data-server3.22.1-2
ii  gir1.2-accountsservice-1.0   0.6.40-3
ii  gir1.2-atspi-2.0 2.22.0-3
ii  gir1.2-caribou-1.0   0.4.21-1
ii  gir1.2-freedesktop   1.50.0-1
ii  gir1.2-gcr-3 3.20.0-3
ii  gir1.2-gdesktopenums-3.0 3.22.0-1
ii  gir1.2-gdm-1.0   3.22.1-1
ii  gir1.2-glib-2.0  1.50.0-1
ii  gir1.2-gnomebluetooth-1.03.20.0-1
ii  gir1.2-gnomedesktop-3.0  3.22.1-1
ii  gir1.2-gtk-3.0   3.22.2-1
ii  gir1.2-gweather-3.0  3.20.3-1
ii  gir1.2-ibus-1.0  1.5.14-1
ii  gir1.2-mutter-3.03.22.1-2
ii  gir1.2-networkmanager-1.01.4.2-2
ii  gir1.2-nmgtk-1.0 1.4.2-1
ii  gir1.2-pango-1.0 1.40.3-3
ii  gir1.2-polkit-1.00.105-17
ii  gir1.2-soup-2.4  2.56.0-1
ii  gir1.2-telepathyglib-0.120.24.1-1.1
ii  gir1.2-telepathylogger-0.2   0.8.2-1
ii  gir1.2-upowerglib-1.00.99.4-4
ii  gjs  1.46.0-1+b1
ii  gnome-backgrounds3.22.1-1
ii  gnome-settings-daemon3.22.1-1
ii  gnome-shell-common   3.22.1-1
ii  gsettings-desktop-schemas3.22.0-1
ii  libatk-bridge2.0-0   2.22.0-1
ii  libatk1.0-0  2.22.0-1
ii  libc62.24-5
ii  libcairo21.14.6-1.1
ii  libcanberra-gtk3-0   0.30-3
ii  libcanberra0 0.30-3
ii  libcroco30.6.11-2
ii  libdbus-glib-1-2 0.108-1
ii  libecal-1.2-19   3.22.1-2
ii  libedataserver-1.2-223.22.1-2
ii  libgcr-base-3-1  3.20.0-3
ii  libgdk-pixbuf2.0-0   2.36.0-1
ii  libgirepository-1.0-11.50.0-1
ii  libgjs0e [libgjs0-libmozjs-24-0] 1.46.0-1+b1
ii  libglib2.0-0 2.50.1-1
ii  libglib2.0-bin   2.50.1-1
ii  libgstreamer1.0-01.10.0-1
ii  libgtk-3-0   3.22.2-1
ii  libical2 2.0.0-0.5+b1
ii  libicu57 57.1-4
ii  libjson-glib-1.0-0   1.2.2-1
ii  libmozjs-24-024.2.0-3.1
ii  libmutter0i  3.22.1-2
ii  libnm-glib4  1.4.2-2
ii  libnm-util2  1.4.2-2
ii  libpango-1.0-0   1.40.3-3
ii  libpangocairo-1.0-0  1.40.3-3
ii  libpolkit-agent-1-0  0.105-17
ii  libpolkit-gobject-1-00.105-17
ii  libpulse-mainloop-glib0  9.0-5
ii  libpulse09.0-5
ii  libsecret-1-00.18.5-2
ii  libstartup-notification0  

Bug#789430: gcc-4.9-arm-linux-gnueabihf can't be installed; depends on libgcc-4.9-dev:armhf (= 4.9.2-18) but 4.9.2-21 will be installed

2015-06-20 Thread Sergio Costas
Package: gcc-4.9-arm-linux-gnueabihf
Severity: grave
Justification: renders package unusable

Dear Maintainer,

When I try to install gcc-arm-linux-gnueabihf, neither apt-get, nor aptitude,
are able to do it, because gcc-4.9-arm-linux-gnueabihf depends on version
4.9.2-18 of libgcc-4.9-dev, but only 4.9.2-21 is available. The same for
gcc-4.9-arm-linux-gnueabi.

Thanks.



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf

Kernel: Linux 4.0.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


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



Bug#320751: Anjuta: After saturday upgrade, anjuta's editor window shows incorrectly the characters and lines

2005-08-01 Thread Sergio Costas
Package: Anjuta
Version: 1.2.3-1
Severity: grave
Justification: renders package unusable

After "apt-get update & upgrade" this saturday, Anjuta doesn't work
right. When I type in the editor window, the cursor jumps over all it,
and when I load a source file, the lines are showed mixed and without
order. Is impossible to write code with it.

This happened in my personal computer and in my job's computer
(fortunately, I have a Debian for testings and another for the work
itself).

I'm not sure about what packages were updated, but I think that libatk,
libart and libpango were, so maybe the problem is there...

-- 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.8-1-386
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages Anjuta depends on:
ii  anjuta-common 1.2.3-1Data files for Anjuta
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.0-1   The Bonobo UI library
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-3  GCC support library
ii  libgconf2-4   2.10.1-1   GNOME configuration database syste
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.6.5-1The GLib library of C routines
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeprint2.2-02.10.3-2   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.10.2-2   GNOME 2.2 print architecture User 
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgtk2.0-0   2.6.8-1The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-4 Inter-Client Exchange library
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  liborbit2 1:2.12.2-3 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libpcre3  5.0-1.1Perl 5 Compatible Regular Expressi
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.8.2.dfsg.1-4 X Window System Session Management
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libvte4   1:0.11.13-3Terminal emulator widget for GTK+ 
ii  libx11-6  6.8.2.dfsg.1-4 X Window System protocol client li
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxml2   2.6.20-1   GNOME XML library
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste
ii  xlibs 6.8.2.dfsg.1-4 X Window System client libraries m
ii  zlib1g1:1.2.3-1  compression library - runtime

Versions of packages Anjuta recommends:
ii  autoconf 2.59a-3 automatic configure script builder
ii  autogen  1:5.6.6-2   an automated text file generator
ii  automake1.4 [automake]   1:1.4-p6-9  A tool for generating GNU Standard
pn  ctags  (no description available)
ii  cvs  1:1.12.9-14 Concurrent Versions System
ii  devhelp  0.10-1  A GNOME developers help program
ii  g++  4:4.0.0-2   The GNU C++ compiler
ii  gcc  4:4.0.0-2   The GNU C compiler
ii  gdb  6.3-6   The GNU Debugger
pn  gnome-devel(no description available)
ii  gnome-terminal   2.10.0-2The GNOME 2 terminal emulator appl
ii  indent   2.2.9-7 C language source code formatting 
ii  libtool  1.5.6-6 Generic library support script
ii  make 3.80-9  The GNU version of the "make" util
ii  yelp 2.10.0-2Help browser for GNOME 2

-- no debconf information


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