Bugs in Archlinux32 packages, specific to 32-bit issues.

Bugs  FS#2  to  FS#92  have been recovered and may be incomplete, the
recovered Google/Bing cache data can be found here.

IDCategoryTask TypePrioritySeveritySummaryStatusProgress  desc
 357 PackagesBug ReportVery LowMedium pacman-contrib 1.10.5 requires rebuild Closed
100%
Task Description

The pactree tool in pacman-contrib 1.10.5 requires libalpm.so.13 which belongs to an older version of pacman. Rebuilding pacman-contrib with the latest version of pacman installed should resolve the issue.

 356 PackagesBug ReportMediumLow mkinitcpio core dump Closed
100%
Task Description
double free or corruption (out)
/usr/bin/mkinitcpio: line 557:  2387 Aborted                 (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"
error: command failed to execute correctly

Maybe also the age of the machine, the CMOS, the RAM, the moon, the universe could be
at fault here..

 354 PackagesBug ReportVery LowLow staging mkinitcpio<->cryptsetup conflict Closed
100%
Task Description

it is not possible to enable staging

$ sudo pacman -Syuu
:: Synchronizing package databases...
 core-staging is up to date
 core is up to date
 extra-staging                      2.5 MiB  2.22 MiB/s 00:01 [##################################] 100%
 extra is up to date
 community-staging is up to date
 community is up to date
:: Starting full system upgrade...
resolving dependencies...
:: There are 2 providers available for dbus-units:
:: Repository core-staging
   1) dbus-broker-units  2) dbus-daemon-units

Enter a number (default=1): 
looking for conflicting packages...
:: cryptsetup and mkinitcpio are in conflict. Remove mkinitcpio? [y/N] y
error: failed to prepare transaction (could not satisfy dependencies)
:: unable to satisfy dependency 'initramfs' required by linux
 353 PackagesBug ReportVery LowLow mc: is broken Closed
100%
Task Description
$ mc
mc: symbol lookup error: mc: undefined symbol: g_string_new_take

$ mcedit
mcedit: symbol lookup error: mcedit: undefined symbol: g_string_new_take
 350 PackagesBug ReportVery LowHigh openssh service will not start Closed
100%
Task Description

After updating my system I found that sshd.service will no longer start.

As a temporary work round I downgraded openssl from 3.2.1-1.0 to 3.1.4-1.0

[keith@Arch32 ~]$ sudo pacman -Syu
:: Synchronising package databases...
 core-testing is up to date
 core is up to date
 extra-testing is up to date
 extra is up to date
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Package (1)           Old Version  New Version  Net Change

core-testing/openssl  3.1.4-1.0    3.2.1-1.0      1.03 MiB

Total Installed Size:  10.54 MiB
Net Upgrade Size:       1.03 MiB

:: Proceed with installation? [Y/n] 
(1/1) checking keys in keyring                                                                 [--------------------------------------------------------] 100%
(1/1) checking package integrity                                                               [--------------------------------------------------------] 100%
(1/1) loading package files                                                                    [--------------------------------------------------------] 100%
(1/1) checking for file conflicts                                                              [--------------------------------------------------------] 100%
(1/1) checking available disk space                                                            [--------------------------------------------------------] 100%
:: Processing package changes...
(1/1) upgrading openssl                                                                        [--------------------------------------------------------] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
[keith@Arch32 ~]$ systemctl restart sshd.service
[keith@Arch32 ~]$ systemctl status sshd.service
× sshd.service - OpenSSH Daemon
     Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; preset: disabled)
     Active: failed (Result: exit-code) since Tue 2024-02-13 05:36:11 GMT; 6s ago
   Duration: 9ms
    Process: 1008 ExecStart=/usr/bin/sshd -D (code=exited, status=255/EXCEPTION)
   Main PID: 1008 (code=exited, status=255/EXCEPTION)
        CPU: 9ms

Feb 13 05:36:11 Arch32 systemd[1]: sshd.service: Scheduled restart job, restart counter is at 5.
Feb 13 05:36:11 Arch32 systemd[1]: Stopped OpenSSH Daemon.
Feb 13 05:36:11 Arch32 systemd[1]: sshd.service: Start request repeated too quickly.
Feb 13 05:36:11 Arch32 systemd[1]: sshd.service: Failed with result 'exit-code'.
Feb 13 05:36:11 Arch32 systemd[1]: Failed to start OpenSSH Daemon.
[keith@Arch32 ~]$ sudo downgrade openssl
loading packages...
warning: downgrading package openssl (3.2.1-1.0 => 3.1.4-1.0)
resolving dependencies...
looking for conflicting packages...

Package (1)  Old Version  New Version  Net Change

openssl      3.2.1-1.0    3.1.4-1.0     -1.03 MiB

Total Installed Size:   9.51 MiB
Net Upgrade Size:      -1.03 MiB

:: Proceed with installation? [Y/n] 
(1/1) checking keys in keyring                                                                 [--------------------------------------------------------] 100%
(1/1) checking package integrity                                                               [--------------------------------------------------------] 100%
(1/1) loading package files                                                                    [--------------------------------------------------------] 100%
(1/1) checking for file conflicts                                                              [--------------------------------------------------------] 100%
(1/1) checking available disk space                                                            [--------------------------------------------------------] 100%
:: Processing package changes...
(1/1) downgrading openssl                                                                      [--------------------------------------------------------] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
add openssl to IgnorePkg? [y/N] 
[keith@Arch32 ~]$ systemctl restart sshd.service
[keith@Arch32 ~]$ systemctl status sshd.service
● sshd.service - OpenSSH Daemon
     Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; preset: disabled)
     Active: active (running) since Tue 2024-02-13 05:37:20 GMT; 5s ago
   Main PID: 1138 (sshd)
      Tasks: 1 (limit: 2293)
     Memory: 772.0K
        CPU: 61ms
     CGroup: /system.slice/sshd.service
             └─1138 "sshd: /usr/bin/sshd -D [listener] 0 of 10-100 startups"

Feb 13 05:37:20 Arch32 systemd[1]: Started OpenSSH Daemon.
Feb 13 05:37:20 Arch32 sshd[1138]: Server listening on 0.0.0.0 port 22.
Feb 13 05:37:20 Arch32 sshd[1138]: Server listening on :: port 22.
[keith@Arch32 ~]$ 

 344 PackagesBug ReportVery LowMedium [linux] No kernel updates Closed
100%
Task Description

The linux kernel seems to be stuck at version 6.1.12.arch1-1.0. The build log of the latest stable kernel (linux-6.6.4.arch1-1.0) shows the following error:

=⇒ ERROR: Integrity checks (sha256) differ in size from the source array.
erich@rechenknecht

 334 PackagesBug ReportVery LowLow Calibre is out of date and will not start Closed
100%
Task Description

The latest version of calibre is 6.16.

The version in the repositories is 6.11.0-1.0 and unfortunately will no longer start.

[keith@Arch32 ~]$ calibre
Failed to import PyQt module: PyQt6.QtNetwork with error: /usr/lib/python3.10/site-packages/PyQt6/QtNetwork.abi3.so: undefined symbol: _ZN16QNetworkDatagram7destroyEP23QNetworkDatagramPrivate, version Qt_6
Traceback (most recent call last):
  File "/usr/bin/calibre", line 21, in <module>
    sys.exit(calibre())
  File "/usr/lib/calibre/calibre/gui_launch.py", line 72, in calibre
    from calibre.gui2.main import main
  File "/usr/lib/calibre/calibre/gui2/__init__.py", line 13, in <module>
    from qt.core import (
ImportError: cannot import name 'QNetworkProxyFactory' from 'qt.core' (/usr/lib/calibre/qt/core.py)
[keith@Arch32 ~]$ pacman -Qi calibre
Name            : calibre
Version         : 6.11.0-1.0
Description     : Ebook management application
Architecture    : pentium4
URL             : https://calibre-ebook.com
Licenses        : GPL3
Groups          : None
Provides        : None
Depends On      : hunspell  hyphen  icu  jxrlib  libmtp  libstemmer  libusb  libwmf  mathjax  mtdev  optipng  podofo
                  python-apsw  python-beautifulsoup4  python-cchardet  python-css-parser  python-cssselect  python-dateutil
                  python-dnspython  python-feedparser  python-html2text  python-html5-parser  python-jeepney  python-lxml
                  python-markdown  python-mechanize  python-msgpack  python-netifaces  python-pdftotext  python-pillow
                  python-psutil  python-py7zr  python-pychm  python-pycryptodome  python-pygments  python-pyqt6
                  python-pyqt6-webengine  python-regex  python-unrardll  python-zeroconf  qt6-imageformats  qt6-svg
                  qt6-webengine  ttf-liberation  uchardet  udisks2
Optional Deps   : poppler: required for converting pdf to html [installed]
                  speech-dispatcher: TTS support in the viewer
Required By     : None
Optional For    : None
Conflicts With  : calibre-common  calibre-python3
Replaces        : calibre-common  calibre-python3
Installed Size  : 91.69 MiB
Packager        : Andreas Baumann <mail@andreasbaumann.cc>
Build Date      : Thu 12 Jan 2023 05:31:50 GMT
Install Date    : Tue 24 Jan 2023 10:15:48 GMT
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : Signature

[keith@Arch32 ~]$ 
 332 PackagesBug ReportVery LowLow firefox 112 compilation Closed
100%
Task Description

any ideas hpw to get past this error (i686)?

18:33.80 /build/iceweasel/src/firefox-112.0/dom/base/nsTextFragmentGeneric.h:38:16: error: ‘any’ is not a member of ‘xsimd’
18:49.36 /build/iceweasel/src/firefox-112.0/dom/base/nsTextFragmentGeneric.h:16:70: error: incomplete type ‘xsimd::batch<short int, xsimd::sse2>’ used in nested name specifier
18:49.36 /build/iceweasel/src/firefox-112.0/dom/base/nsTextFragmentGeneric.h:35:31: error: ‘xsimd::batch<short int, xsimd::sse2> vectmask’ has incomplete type
18:49.36 /build/iceweasel/src/firefox-112.0/dom/base/nsTextFragmentGeneric.h:37:64: error: incomplete type ‘xsimd::batch<short int, xsimd::sse2>’ used in nested name specifier
 331 PackagesBug ReportMediumLow [rust] rebootstrap Closed
100%
Task Description

seems like the virtual memory exhaustion is fixed in the newest version.
We have to bootstrap again (mainly for librsvg and firefox).

 330 PackagesBug ReportVery LowLow [gcompris-qt] no game icons Closed
100%
Task Description

gcompris-qt 3.0-1.0 is missing a dependency on llvm14 (or maybe it needs a rebuild for llvm) and thus it doesn’t show any game in the menu.

 329 PackagesBug ReportVery LowHigh [go] Cannot install yay from AUR Closed
100%
Task Description

Installing yay from AUR

git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -sri

gives following error

go: updates to go.sum needed, disabled by -mod=readonly

Reason - outdated version of go in i686 architecture

Temporary solution - use go for pentium4 (change temporarily architecture to pentium4 in /etc/pacman.conf)

 328 PackagesBug ReportVery LowMedium libreoffice-fresh on i686 is newer then pentium4 Closed
100%
Task Description

i686:- libreoffice-fresh 7.3.4-2.1
pentium4:- libreoffice-fresh 7.3.2-1.0

 327 PackagesBug ReportVery LowHigh [firefox-106.0.3.1.1-pentium4] crashes in VMware virtua ...Closed
100%
Task Description

This is pentium4 related problem. Firefox crashes on startup with following messages:

ExceptionHandler::GenerateDump cloned child 814
ExceptionHandler::SendContinueSignalToChild sent continue signal to child
ExceptionHandler::WaitForContinueSignal waiting for continue signal...

Screenshot. Firefox folder after crash.

Temporary solution is to change in /etc/pacman/conf

Architecture=i686

, delete firefox for pentium4 from pacman cache and reinstall firefox

firefox-106.0.3.1.1-i686
 324 PackagesBug ReportMediumLow [libxft] segfaults Closed
100%
Task Description
Mar 08 19:16:01 arch32 audit[409]: ANOM_ABEND auid=1000 uid=0 gid=0 ses=5 pid=409 comm="slim" exe="/usr/bi                                                                                                          n/slim" sig=11 res=1                                                                                                                                                                                                
Mar 08 19:16:01 arch32 kernel: slim[409]: segfault at 30 ip b7dbe9e9 sp bf84f680 error 4 in libX11.so.6.4.                                                                                                          0[b7d9c000+8c000] likely on CPU 0 (core 0, socket 0)                                                                                                                                                                
Mar 08 19:16:01 arch32 kernel: Code: 04 00 00 83 c4 10 eb 8e 8d b4 26 00 00 00 00 66 90 53 e8 1a dd fd ff                                                                                                           81 c3 92 7a 11 00 83 ec 08 8b 44 24 10 8b 88 38 05 00 00 <8b> 51 30 83 fa ff 74 52 c7 41 30 ff ff ff ff 8b                                                                                                           88 d0 04 00 00 85                                                                                                                                                                  
Mar 08 19:16:01 arch32 systemd[1]: Started Process Core Dump (PID 424/UID 0).                                                                                                                                       
Mar 08 19:16:01 arch32 audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=system                                                                                                          d-coredump@1-424-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'                                                                                                          
Mar 08 19:16:01 arch32 systemd-coredump[425]: [🡕] Process 409 (slim) of user 0 dumped core.                                                                                                                         
                                                                                                                                                                                                                    
                                              Stack trace of thread 409:                                                                                                                                            
                                              #0  0x00000000b7dbe9e9 _XAllocID (libX11.so.6 + 0x349e9)                                                                                                              
                                              #1  0x00000000b7d9f710 XCreatePixmap (libX11.so.6 + 0x15710)                                                                                                          
                                              #2  0x00000000b74cbd41 XRenderFindDisplay (libXrender.so.1 +                                                                                                           0x2d41)                                                                                                                                                                                                            
                                              #3  0x00000000b74cccf1 XRenderFreeGlyphSet (libXrender.so.1                                                                                                           + 0x3cf1)                                                                                                                                                                                                           
                                              #4  0x00000000b766e55b n/a (libXft.so.2 + 0x655b)                                                                                                                     
                                              #5  0x00000000b7c9a4fa _ZN5PanelD2Ev (libslim.so.1.3.6 + 0x1                                                                                                          34fa)                                                                                                                                                                                                               
                                              #6  0x00000000004bc49f _ZN3App13RestartServerEv (slim + 0xd4                                                                                                          9f)                                                                                                                                                                                                                 
                                              #7  0x00000000004bd623 _ZN3App5LoginEv (slim + 0xe623)                                                                                                                
                                              #8  0x00000000004bc073 _ZN3App3RunEv (slim + 0xd073)                                                                                                                  
                                              #9  0x00000000004b4742 main (slim + 0x5742)                                                                                                                           
                                              #10 0x00000000b7850129 n/a (libc.so.6 + 0x1f129)                                                                                                                      
                                              #11 0x00000000b78501fd __libc_start_main (libc.so.6 + 0x1f1f                                                                                                          d)                                                                                                                                                                                                                  
                                              #12 0x00000000004b48b5 _start (slim + 0x58b5)                                                                                                                         
                                              ELF object binary architecture: Intel 80386                                                                                                                           
 323 PackagesBug ReportVery LowMedium qemu-desktop installation error Closed
100%
Task Description

While installing qemu-desktop for Archlinux32 following error appears:

/usr/bin/gtk-query-immodules-3.0: symbol lookup error: /usr/liblibpango-1.0.so.0: undefined symbol: hb_ot_color_has_paint

Pango version pango-1:1.50.14-1.0-pentium4. This is a problem of Archlinux32 only - in Archlinux there is no error.

 318 PackagesBug ReportVery LowLow [multiple]: Note: This key has expired! Closed
100%
Task Description
$ wget http://pool.mirror.archlinux32.org/i686/core/binutils-2.40-2.0-i686.pkg.tar.zst
$ wget http://pool.mirror.archlinux32.org/i686/core/binutils-2.40-2.0-i686.pkg.tar.zst.sig
$ sudo pacman-key --verify binutils-2.40-2.0-i686.pkg.tar.zst.sig
==> Checking binutils-2.40-2.0-i686.pkg.tar.zst.sig... (detached)
gpg: Signature made Mon Jan 23 01:17:18 2023 EST
gpg:                using RSA key 16194A82231E9EF823562181C8E8F5A0AF9BA7E7
gpg: Good signature from "Andreas Baumann (sign) <mail@andreasbaumann.cc>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 1619 4A82 231E 9EF8 2356  2181 C8E8 F5A0 AF9B A7E7
==> ERROR: The signature identified by binutils-2.40-2.0-i686.pkg.tar.zst.sig could not be verified.

<KitsuWhooa> fuse also fails for me

 317 PackagesBug ReportVery LowMedium [pacutils] paccheck core dumps Closed
100%
Task Description

$ paccheck pacman
pacman: all dependencies satisfied
zsh: segmentation fault (core dumped) paccheck pacman

It seems to be in the –files check (as with that the crash happens quicker).

Debuginfod doesn’t seem to work for ArchLinux32 (unlike standard ArchLinux) so no debug symbols, but here is the gdb backtrace:

(gdb) bt
#0 0xb7d1989a in strnlen () from /usr/lib/libc.so.6
#1 0xb7d197ac in strncpy () from /usr/lib/libc.so.6
#2 0x00402abe in ?? ()
#3 0x0040244a in ?? ()
#4 0xb7c96129 in ?? () from /usr/lib/libc.so.6
#5 0xb7c961fd in __libc_start_main () from /usr/lib/libc.so.6
#6 0x004026f5 in ?? ()

Valgrind does not seem to work properly on Arch32 either, so I can’t test that.

 316 PackagesBug ReportMediumLow [rust] exhausts virtual memory Closed
100%
Task Description
/usr/bin/ld: error: lib/libLLVMSupport.a(FileOutputBuffer.cpp.o)(.text._ZN12_GLOBAL__N_112OnDiskBufferD0Ev
) is too large (0x105 bytes)
/usr/bin/ld: failed to set dynamic section sizes: memory exhausted
collect2: error: ld returned 1 exit status

maybe we have to resort to cross-compiling rust in the end..

 315 Packages: StableBug ReportVery LowLow [ncmpcpp] requires wrongly boost libraries  Closed
100%
Task Description

ncmpcpp-git compiles on AUR with no problem with all dependencies found on AL32 repositories.

 312 PackagesBug ReportVery LowLow In testing calibre will not start Closed
100%
Task Description
[keith@Arch32 ~]$ calibre
Failed to import PyQt module: PyQt6.QtQuick with error: No module named 'PyQt6.QtQuick'
Traceback (most recent call last):
  File "/usr/bin/calibre", line 21, in <module>
    sys.exit(calibre())
  File "/usr/lib/calibre/calibre/gui_launch.py", line 73, in calibre
    main(args)
  File "/usr/lib/calibre/calibre/gui2/main.py", line 546, in main
    app, opts, args = init_qt(args)
  File "/usr/lib/calibre/calibre/gui2/main.py", line 123, in init_qt
    app = Application(args, override_program_name=override, windows_app_uid=MAIN_APP_UID)
  File "/usr/lib/calibre/calibre/gui2/__init__.py", line 1096, in __init__
    setup_to_run_webengine()
  File "/usr/lib/calibre/calibre/gui2/__init__.py", line 1078, in setup_to_run_webengine
    from qt.core import QQuickWindow, QSGRendererInterface
ImportError: cannot import name 'QQuickWindow' from 'qt.core' (/usr/lib/calibre/qt/core.py)
[keith@Arch32 ~]$ calibre --version
calibre (calibre 6.7.1)
[keith@Arch32 ~]$ 
 309 PackagesBug ReportVery LowLow gcompris links to openssl-1.1.so Closed
100%
Task Description

```
gcompris-qt: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
```

 308 PackagesBug ReportVery LowLow gettext needs a rebuild for libunistring Closed
100%
Task Description

I’m on pentium4 and I’m getting:

/usr/bin/xgettext: error while loading shared libraries: libunistring.so.2: cannot open shared object file: No such file or directory
/usr/bin/msgmerge: error while loading shared libraries: libunistring.so.2: cannot open shared object file: No such file or directory
/usr/bin/msgfmt: error while loading shared libraries: libunistring.so.2: cannot open shared object file: No such file or directory

gettext 0.21.1-1.1
libunistring 1.1-2.0

 307 PackagesBug ReportMediumLow [i486] make guile JIT failing Closed
100%
Task Description
*** work/functions/guile.base   Wed Nov 16 17:55:19 2022
--- work/functions/guile.log    Wed Nov 16 17:55:19 2022
***************
*** 1,3 ****
--- 1,7 ----
+ JIT failed to initialize
+ disabling automatic JIT compilation
+ JIT failed due to resource exhaustion
+ disabling automatic JIT compilation
 306 PackagesBug ReportMediumLow [Xorg] fails on i686 Closed
100%
Task Description

For instance xauth cannot find libXext.so.6.

 305 Packages: StableBug ReportVery LowMedium [chezmoi] i686 and i486 packages are way out of date, p ...Closed
100%
Task Description

I did not see a way to report a package outdated (unlike upstream arch linux) so here is a bug report.

chezmoi (a dot file manager for your home directory) is way outdated in arch32, especially the non-pentium4 versions. This makes it unusable for me as my config depends on newer features.

I would at least expect arch32 to have the same version for i686 and pentium4.

 304 PackagesBug ReportMediumCritical [systemd] 251.2 breaking systems, cannot login Closed
100%
Task Description
Assertion 'close_nointr(fd) != -EBADF' failed at src/basic/fd-util.c:76, function safe_close(). Aborting.

The temporary workaround is to comment out ‘pam_system.so’ in system-auth and system-login..

 303 PackagesBug ReportVery LowLow codeblocks issue.. Closed
100%
Task Description

its requested that please push the codeblocks testing to stable..

 302 DevopsFeature RequestVery LowLow Are you gonna continue 486 support? Closed
100%
Task Description

https://www.tomshardware.com/news/linux-removes-486-cpu-support

486 will be removed from the kernel and especially from 6.1 onwards rust will be integrated with the kernel…

 301 PackagesBug ReportVery LowLow [dino]: wont start Closed
100%
Task Description
# pacman -Syu dino
$ dino
main.vala:25: Fatal error: /usr/lib/libgupnp-1.2.so.1: undefined symbol: gssdp_client_can_reach
 300 PackagesBug ReportVery LowLow Pinta needs to be updated Closed
100%
Task Description

please update pinta i am facing problems with p.net clone and the closest is pinta so if u look to update it then it would be greatful

 299 PackagesFeature RequestVery LowLow [dart] request for bootstrapping dart Closed
100%
Task Description

The dart sdk files are still availble for ia32:-
https://storage.googleapis.com/dart-archive/channels/stable/release/2.18.2/sdk/dartsdk-linux-ia32-release.zip

can you send the old PKGBUILD which was used

 298 PackagesBug ReportVery LowLow Please update Arduino Closed
100%
Task Description

Arduino is out dated and my teacher said to use the latest arduino version 1.8.x for the robotics class…

 297 PackagesBug ReportVery LowLow jack2 can not install Closed
100%
Task Description
# pacman -S jack --noconfirm
:: There are 2 providers available for jack:
:: Repository extra
   1) jack2  2) pipewire-jack

Enter a number (default=1): 
resolving dependencies...
warning: cannot resolve "libcelt0.so=2-32", a dependency of "jack2"
:: The following package cannot be upgraded due to unresolvable dependencies:
      jack2

:: Do you want to skip the above package for this upgrade? [y/N] error: failed to prepare transaction (could not satisfy dependencies)

:: unable to satisfy dependency 'libcelt0.so=2-32' required by jack2
 296 PackagesBug ReportVery LowLow Fix terminal emulators  Closed
100%
Task Description

On arch32 currently foot and alacritty is broken

 295 PackagesBug ReportVery LowLow [qemu][seabios]: file conflict Closed
100%
Task Description
# pacman -S qemu seabios
resolving dependencies...
looking for conflicting packages...

Packages (2) qemu-6.2.0-4.0  seabios-1.16.0-3.2

Total Installed Size:  36.97 MiB

checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
/usr/share/qemu/bios-microvm.bin exists in both 'seabios' and 'qemu'
/usr/share/qemu/vgabios-ati.bin exists in both 'seabios' and 'qemu'
Errors occurred, no packages were upgraded.

 293 PackagesBug ReportVery LowLow Please update those packages:- Closed
100%
Task Description

Gimp
Krita

If possible can u add Julia Lang though its on blacklist but i will try to compile it :)

 292 PackagesFeature RequestVery LowLow Hey , if possible can u build temite based on https://g ...Closed
100%
Task Description

Note:- It will compile very easily as i have a modified PKGBUILD

# Maintainer: Frederik Schwan freswa@archlinux.org pkgdesc=’A simple VTE-based terminal’ pkgname=termite
pkgver=16.4
pkgrel=2
url=https://github.com/aperezdc/termite license=(LGPL)
depends=(gtk3 pcre2 gnutls vte-common)
makedepends=(gperf ‘meson>=0.58’ ninja)
arch=(’x86_64’,’i686’,’pentium4’‘i486’)
backup=(etc/xdg/termite/config)

source=(”${url}/releases/download/v${pkgver}/termite-${pkgver}.tar.xz”{,.asc})
b2sums=(’SKIP’

      'SKIP')

build () {

rm -rf _build
arch-meson _build "${pkgname}-${pkgver}"
meson compile -C _build

}

package () {

meson install -C _build --skip-subprojects vte --destdir "${pkgdir}"

}

 291 PackagesFeature RequestVery LowLow Hey , if possible can u build temite based on https://g ...Closed
100%
Task Description

Note:- It will compile very easily as i have a modified PKGBUILD

```
# Maintainer: Frederik Schwan freswa@archlinux.org pkgdesc=’A simple VTE-based terminal’ pkgname=termite
pkgver=16.4
pkgrel=2
url=https://github.com/aperezdc/termite license=(LGPL)
depends=(gtk3 pcre2 gnutls vte-common)
makedepends=(gperf ‘meson>=0.58’ ninja)
arch=(’x86_64’,’i686’,’pentium4’‘i486’)
backup=(etc/xdg/termite/config)

source=(”${url}/releases/download/v${pkgver}/termite-${pkgver}.tar.xz”{,.asc})
b2sums=(’SKIP’

      'SKIP')

build () {

rm -rf _build
arch-meson _build "${pkgname}-${pkgver}"
meson compile -C _build

}

package () {

meson install -C _build --skip-subprojects vte --destdir "${pkgdir}"

}
```

 286 PackagesBug ReportVery LowLow [speedtest-cli] missing scripts Closed
100%
Task Description

The package speedtest-cli (2.1.3-2.0) is missing the following scripts:
usr/bin/speedtest
usr/bin/speedtest-cli

These are generated scripts, but they should be included in the package.

 285 PackagesBug ReportVery LowLow [s-tui] /usr/bin/s-tui missing Closed
100%
Task Description

In s-tui 1.1.3-2.0, the run script /usr/bin/s-tui is missing. Only the files under /usr/lib/python3.10 are included in the package.

In the upstream Arch package the file is included: https://archlinux.org/packages/community/any/s-tui/

Rebuilding the package on a pentium4 machine resulted in a correct package. I cannot find any Arch Linux 32 specific PKGBUILD, so I’m not sure where this problem comes from. Maybe just rebuilding the package will fix it.

 281 Packages: Build-listBug ReportVery LowLow Firefox compilation Closed
100%
Task Description

I checked the firefox on the build-list and its not compiling because of missing lvm13 libs which are packages are llvm13-libs and llvm13

 279 Packages: StableBug ReportVery LowMedium Telegram Desktop doesn't start Closed
100%
Task Description

Telegram Desktop fails to start with an error about incompatible Qt libraries, I think it needs to be rebuilt.

 278 PackagesBug ReportMediumLow [midori] doesn't work Closed
100%
Task Description

llvm13-libs is needed in libEGL (but the browser starts and works also without EGL support).

this one is harmless most likely:

(midori:6483): GLib-GObject-WARNING **: 08:14:57.679: ../glib/gobject/gbinding.c:467: Unable to convert a value of type gpointer to a value of type CairoSurface

this makes sure no tabs and URLs open:

** (midori:6483): CRITICAL **: 08:14:58.151: session.vala:290: Failed add tab to session database: Invalid type '(null)' in statement: 
                INSERT INTO tabs (crdate, tstamp, session_id, uri, title)
                VALUES (:crdate, :tstamp, :session_id, :uri, :title)

Let’s try a rebuild of midori first.. maybe later vala or some database layer for vala..
..or the error is deep in gobject-introspection..

 277 PackagesBug ReportMediumLow [emacs] rebuild fails on 486, needs librsvg Closed
100%
Task Description

/usr/src/debug/emacs-28.1/src/image.c:10009: undefined reference to `rsvg_handle_set_stylesheet’ # /usr/bin/ld: /usr/src/debug/emacs-28.1/src/image.c:10196: undefined reference to `rsvg_handle_set_stylesheet’

 274 PackagesBug ReportVery LowMedium perl-term-readline-gnu should be rebuilt due to new per ...Closed
100%
Task Description

When you have system update there is this warning:

Warn about old perl modules
WARNING: '/usr/lib/perl5/5.34' contains data from at least 1 packages which will NOT be used by the installed perl interpreter.
 -> Run the following command to get a list of affected packages: pacman -Qqo '/usr/lib/perl5/5.34'

After searching you see it’s caused by

$ pacman -Qqo '/usr/lib/perl5/5.34'
perl-term-readline-gnu

So this package should be rebulded, because in repositories is perl 5.36

More info and problem description https://forum.manjaro.pl/t/archlinux32-ostrzezenie-od-perl/2356

 273 Packages: StableBug ReportVery LowMedium Quazip Qt5 package contains Qt6 libraries Closed
100%
Task Description

The quazip-qt5 package for both i686 and pentium4 contains the Qt6 libraries instead of the Qt5 ones.

The quazip package also no longer seems to exist upstream and should probably be removed in Arch32 as well.

 272 PackagesBug ReportVery LowLow [spam] Closed
100%
Task Description

spam

 271 PackagesBug ReportVery LowLow [spam] Closed
100%
Task Description

spam

 270 PackagesBug ReportVery LowLow [spam] Closed
100%
Task Description

spam

 269 PackagesBug ReportVery LowLow [spam] Closed
100%
Task Description

spam

Showing tasks 1 - 50 of 348 Page 1 of 71 - 2 - 3 - 4 - 5 - Last >>

Available keyboard shortcuts

Tasklist

Task Details

Task Editing