[Bug 1936295] Re: Faulty Elantech Trackpoint firmware unusable as it causes sudden cursor jump to an edge/corner on Lenovo Thinkpad X13, T14s, A475 --> Apply kernel patch to mitigate the FW bug

2021-11-21 Thread Alberto Garcia
This fix has been included in several stable and longterm kernel releases, here's the list for reference: - Linux 5.15.3, see here: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.3 - Linux 5.14.19, see here: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.14.19 - Linux

[Bug 1936295] Re: Faulty Elantech Trackpoint firmware unusable as it causes sudden cursor jump to an edge/corner on Lenovo Thinkpad X13, T14s, A475 --> Apply kernel patch to mitigate the FW bug

2021-11-10 Thread Alberto Garcia
Hello the patch was merged in the kernel maintainer's branch yesterday: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git/commit/?id=be896bd3b72b44126c55768f14c22a8729b0992e I confirm that it works in Linux 5.14 and 5.15 -- You received this bug notification because you are a

[Bug 1923817] Re: The balsa/armhf tests are failing with the hirsute-proposed update

2021-04-26 Thread Alberto Garcia
It's g_dbus_proxy_new_sync() (triggered by g_application_register()) that times out. Running the test with DBUS_SESSION_BUS_ADDRESS unset solves the problem for me. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1923817] Re: The balsa/armhf tests are failing with the hirsute-proposed update

2021-04-26 Thread Alberto Garcia
Ok, so running Balsa without xvfb-run shows that with the portal installed the Balsa window takes way longer to appear, I'm pretty sure that's why xwd does not find the window after 2 seconds. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1923817] Re: The balsa/armhf tests are failing with the hirsute-proposed update

2021-04-26 Thread Alberto Garcia
With the portal installed: $ xvfb-run bash -c 'NO_AT_BRIDGE=1 balsa --check-mail & sleep 2 ; xwd -name Balsa' xwd: error: No window with name Balsa exists! $ xvfb-run bash -c 'NO_AT_BRIDGE=1 balsa --check-mail & sleep 2 ; xwininfo -root -tree' xwininfo: Window id: 0x50e (the root window) (has

[Bug 1923817] Re: The balsa/armhf tests are failing with the hirsute-proposed update

2021-04-26 Thread Alberto Garcia
I also tried running the test with WEBKIT_FORCE_SANDBOX=0 but it doesn't seem to make a difference. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1923817 Title: The balsa/armhf tests are failing

[Bug 1923817] Re: The balsa/armhf tests are failing with the hirsute-proposed update

2021-04-26 Thread Alberto Garcia
Hi, I can reproduce this problem on amd64 with WebKitGTK 2.30.6 and 2.32.0. The problem seems to happen when xdg-desktop-portal-gtk is installed, webkitgtk 2.32 is the first version that installs the portal by default (see https://bugs.webkit.org/show_bug.cgi?id=213148 for the reasons why). **

[Bug 1872819] Re: newer links cannot be downloaded

2020-04-15 Thread Alberto Garcia
Hi, megatools 1.10.3 has been released with a fix for this bug, and it's already available in Debian. Here's the patch for megatools 1.10.2: https://salsa.debian.org/berto/megatools/-/blob/debian/1.10.2-1+deb10u1/debian/patches /support-new-links.patch And here's the patch for megatools

[Bug 1743381] Re: fuse-gtk window doesn't show complete ZX Spectrum display

2019-08-23 Thread Alberto Garcia
Version 1.5.7+dfsg1-2 mitigates this problem by defaulting to the X11 backend when available. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1743381 Title: fuse-gtk window doesn't show complete ZX

[Bug 1743381] Re: fuse-gtk window doesn't show complete ZX Spectrum display

2019-08-14 Thread Alberto Garcia
Known problem under Wayland, you can force the X11 backend as a workaround: $ GDK_BACKEND=x11 fuse (or use fuse-emulator-sdl) Upstream bug report: https://sourceforge.net/p/fuse-emulator/bugs/367/ -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1588209] Re: Broken multi-arch support with 2.4.11-1ubuntu2

2016-06-02 Thread Alberto Garcia
Ok, thanks! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1588209 Title: Broken multi-arch support with 2.4.11-1ubuntu2 To manage notifications about this bug go to:

[Bug 1588209] Re: Broken multi-arch support with 2.4.11-1ubuntu2

2016-06-02 Thread Alberto Garcia
Sorry, but I still don't see the problem. Can you tell me specifically what is the binary package that you cannot install in two architectures at the same time? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1588209] Re: Broken multi-arch support with 2.4.11-1ubuntu2

2016-06-02 Thread Alberto Garcia
Hello, can you tell me what are the exact packages that you cannot co-install in different architectures? Thanks, Berto -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1588209 Title: Broken

[Bug 1391420]

2015-12-10 Thread Alberto Garcia
(In reply to comment #9) > > Source/JavaScriptCore/interpreter/JSStack.cpp:48 > > +static size_t size = 0; > > +if (!size) > > +size = std::max(16 * 1024, getpagesize()); > > +return size; > > The check for 0 here is unneeded and unhelpful. This should just be: > > static

[Bug 1391420]

2015-12-10 Thread Alberto Garcia
Committed r193648: -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1391420 Title: JSCore crashes on ppc64el To manage notifications about this bug go to:

[Bug 1391420]

2015-12-10 Thread Alberto Garcia
Created attachment 266795 Make commitSize at least as big as the page size Here's a new patch. It makes sure that commitSize is at least as big as the page size without decreasing it if it's less than 16 KB. -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1391420]

2015-12-10 Thread Alberto Garcia
Created attachment 266803 Make commitSize at least as big as the page size (v2) Thanks for your comments, here's the updated version of the patch. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1413640] [NEW] Calendar in clock applet makes mistake on week number

2015-01-22 Thread Alberto Garcia
Public bug reported: Hey, I'm not actually an Ubuntu user but we fixed this in Debian a while ago and since upstream hasn't made any release with it and I consider it a rather important bug I thought it was a good idea to report it here in the meantime. So there's this bug in the gnome shell

[Bug 1394731] Re: [MIR] grilo-plugins

2014-12-16 Thread Alberto Garcia
Hello, and thanks for keeping me in the loop! I think it's a good idea to split the packages. I still haven't had the chance to think about the optimal way to do so, though. I guess we can follow an approach similar to that of gstreamer and have something like

[Bug 1116098] Re: [MIR] grilo

2013-11-07 Thread Alberto Garcia
Hey, I'm the Debian maintainer of Grilo. As upstream mentioned in bug #1119781, those tests don't need to be fixed because they never worked. As far as I'm aware it was just an initial skeleton of a work that was never completed. About splitting the Grilo plugins package, I also think it's a

[Bug 1131983] [NEW] package zabbix-agent 1:2.0.2+dfsg-3 failed to install/upgrade: el subproceso instalado el script post-installation devolvió el código de salida de error 1

2013-02-22 Thread Carlos Alberto Garcia Cobo
Public bug reported: Error después de instalar zabbix ProblemType: Package DistroRelease: Ubuntu 12.10 Package: zabbix-agent 1:2.0.2+dfsg-3 ProcVersionSignature: Ubuntu 3.5.0-25.38-generic 3.5.7.4 Uname: Linux 3.5.0-25-generic i686 ApportVersion: 2.6.1-0ubuntu10 Architecture: i386 Date: Thu Feb

[Bug 1074852] Re: tape2wav is missing

2013-01-11 Thread Alberto Garcia
The fixed version is already available: https://launchpad.net/ubuntu/+source/fuse-emulator-utils/1.0.0-4 ** Changed in: fuse-emulator-utils (Ubuntu) Status: Confirmed = Fix Released ** Changed in: fuse-emulator-utils (Ubuntu) Assignee: (unassigned) = Alberto Garcia (agarcia-igalia

[Bug 1074852] Re: tape2wav is missing

2012-11-19 Thread Alberto Garcia
Yes, audiofile is the problem, I fixed it upstream in r4687, and in Debian in fuse-emulator-utils 1.0.0-4: http://patch-tracker.debian.org/patch/series/view/fuse-emulator- utils/1.0.0-4/audiofile-0.3.patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1079267] Re: package libgrilo-0.2-1 0.2.3-1 failed to install/upgrade: trying to overwrite '/usr/lib/x86_64-linux-gnu/libgrilo-0.2.so.1', which is also in package libgrilo-0.2-0:amd64 0.2.0-0ubun

2012-11-19 Thread Alberto Garcia
You have two packages for the same library, I packaged libgrilo-0.2-1 for Debian, I don't know where libgrilo-0.2-0 came from. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1079267 Title: package

[Bug 511572] [NEW] wireless trouble

2010-01-23 Thread Carlos Alberto Garcia Rojas
Public bug reported: Binary package hint: gnome-nettool it doesnt recocognize the wireless device but before do it now dont show the wireless net ProblemType: Bug Architecture: i386 DistroRelease: Ubuntu 9.04 ExecutablePath: /usr/bin/gnome-nettool NonfreeKernelModules: nvidia Package:

[Bug 511572] Re: wireless trouble

2010-01-23 Thread Carlos Alberto Garcia Rojas
** Attachment added: Dependencies.txt http://launchpadlibrarian.net/38302440/Dependencies.txt ** Attachment added: ProcMaps.txt http://launchpadlibrarian.net/38302441/ProcMaps.txt ** Attachment added: ProcStatus.txt http://launchpadlibrarian.net/38302442/ProcStatus.txt -- wireless