From je-vv at e.email Sat Dec 2 08:26:34 2023 From: je-vv at e.email (Javier) Date: Sat, 2 Dec 2023 01:26:34 -0600 Subject: [artix-general] [artix-genera][dinit] freshclam-dinit "waits-for" adjustment? Message-ID: <9dd8034d-10ad-4bd7-a6a5-de077a5e1177@e.email> Currently freshclam-dinit has: > waits-for = pseudofs However that leads to unsolvable errors at boot: > ERROR: Can't save PID to file /run/clamav/freshclam.pid: No such file or directory > ERROR: Can't save PID to file /run/clamav/freshclam.pid: No such file or directory > ERROR: Can't save PID to file /run/clamav/freshclam.pid: No such file or directory > ERROR: Can't save PID to file /run/clamav/freshclam.pid: No such file or directory And the service getting stopped. A bit better value for "waits-for" is: > waits-for = network That also leads the service to fail at boot with: > ClamAV update process started at Fri Dec 1 23:58:27 2023 > WARNING: Can't query current.cvd.clamav.net > WARNING: Invalid DNS reply. Falling back to HTTP mode. > Trying to retrieve CVD header from https://database.clamav.net/daily.cvd > WARNING: remote_cvdhead: Download failed (6) WARNING: Message: Couldn't resolve host name > WARNING: Failed to get daily database version information from server: https://database.clamav.net > ERROR: check_for_new_database_version: Failed to find daily database using server https://database.clamav.net. > Trying again in 5 secs... > Trying to retrieve CVD header from https://database.clamav.net/daily.cvd > WARNING: remote_cvdhead: Download failed (6) WARNING: Message: Couldn't resolve host name > WARNING: Failed to get daily database version information from server: https://database.clamav.net > ERROR: check_for_new_database_version: Failed to find daily database using server https://database.clamav.net. > Trying again in 5 secs... > Trying to retrieve CVD header from https://database.clamav.net/daily.cvd > ERROR: remote_cvdhead: Download failed (6) ERROR: Message: Couldn't resolve host name > WARNING: Failed to get daily database version information from server: https://database.clamav.net > ERROR: check_for_new_database_version: Failed to find daily database using server https://database.clamav.net. > Giving up on https://database.clamav.net... And then the service also gets stopped. However, here the issue is that at the point "network" completes, it's still too early to be able to access to the internet, which is unfortunate, since that is what can be checked to complete before assuming there's access to internet. Adding: > MaxAttempts 30 To: > /etc/clamav/freshclam.conf Does helps, even 60 can be used if in need. Though it would be better to really start freshclam at a point when it's really valid to query the internet... Thanks ! -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From je-vv at e.email Fri Dec 15 06:24:10 2023 From: je-vv at e.email (Javier) Date: Thu, 14 Dec 2023 23:24:10 -0600 Subject: [artix-general] freerdp mistakenly depending on systemd libraries or built against systemd libs? Message-ID: With non upgraded version of freerdp: > % pacman -Qi freerdp > Name : freerdp > Version : 2:2.11.2-1 > ... > Depends On : glibc libcups libx11 libxcursor libxext libxdamage libxfixes libxkbcommon libxi libxinerama libxkbfile libxrandr libxrender libxtst pcsclite wayland alsa-lib libasound.so=2-64 ffmpeg > libavcodec.so=60-64 libavutil.so=58-64 libswresample.so=4-64 libswscale.so=7-64 icu libicuuc.so=73-64 libjpeg-turbo libjpeg.so=8-64 libpulse libpulse.so=0-64 libusb libusb-1.0.so=0-64 openssl > libcrypto.so=3-64 libssl.so=3-64 pam libpam.so=0-64 But with new upgrade on world: > % pacman -Si world/freerdp > Repository : world > Name : freerdp > Version : 2:2.11.3-1 > ... > Depends On : glibc libcups libx11 libxcursor libxext libxdamage libxfixes libxkbcommon libxi libxinerama libxkbfile libxrandr libxrender libxtst pcsclite wayland alsa-lib libasound.so=2-64 ffmpeg > libavcodec.so=60-64 libavutil.so=58-64 libswresample.so=4-64 libswscale.so=7-64 icu libicuuc.so=73-64 libjpeg-turbo libjpeg.so=8-64 libpulse libpulse.so=0-64 libusb libusb-1.0.so=0-64 openssl > libcrypto.so=3-64 libssl.so=3-64 pam libpam.so=0-64 systemd-libs libsystemd.so There are artix systemd libs providers: > % pacman -Qi artix-archlinux-support > Name : artix-archlinux-support > Version : 2-1 > ... > Provides : arch-release-dummy systemd systemd-libs > Name : lib32-artix-archlinux-support > Version : 1-1 > ... > Provides : lib32-systemd But I'm not sure they actually provide the *.so libraries required to satisfy freerdp dependencies. Actually as I have enabled the multilib repo, as well as the lib32 one, pacman is trying to pull lib32-systemd in, since no other provider seems to provide the required *.so lib: > :: lib32-systemd and lib32-artix-archlinux-support are in conflict. Remove lib32-artix-archlinux-support? [y/N] N > error: unresolvable package conflicts detected > error: failed to prepare transaction (conflicting dependencies) > :: lib32-systemd and lib32-artix-archlinux-support are in conflict I had to make the freerdp non upgradable: > % grep freerdp /etc/pacman.conf > IgnorePkg = freerdp > warning: freerdp: ignoring package upgrade (2:2.11.2-1 => 2:2.11.3-1) So it seems freerdp was made dependent on some *.so sytemd libs not provided by artix systemd provider. Is that the thing? Or perhaps something else, like the artix systemd providers requiring upgrade? Definitely it needs attention. Thanks ! -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From je-vv at e.email Fri Dec 15 23:20:36 2023 From: je-vv at e.email (Javier) Date: Fri, 15 Dec 2023 16:20:36 -0600 Subject: [artix-general] freerdp mistakenly depending on systemd libraries or built against systemd libs? In-Reply-To: References: Message-ID: <6e6066d8-94a6-4bd3-8db1-aee0fbda66d0@e.email> On 12/14/23 23:24, Javier wrote: > ... > So it seems freerdp was made dependent on some *.so sytemd libs not provided by artix systemd provider.? Is that the thing?? Or perhaps something else, like the artix systemd providers requiring upgrade? The issue was solved, and after upgrading to the newer 2:2.11.3-1.1, now freerdp no longer has the dependency on systemd libs neither the *.so as with 2:2.11.3-1: > Name : freerdp > Version : 2:2.11.3-1.1 > ... > Depends On : glibc libcups libx11 libxcursor libxext libxdamage libxfixes libxkbcommon libxi libxinerama libxkbfile libxrandr libxrender > libxtst pcsclite wayland alsa-lib libasound.so=2-64 ffmpeg libavcodec.so=60-64 libavutil.so=58-64 libswresample.so=4-64 > libswscale.so=7-64 icu libicuuc.so=73-64 libjpeg-turbo libjpeg.so=8-64 libpulse libpulse.so=0-64 libusb libusb-1.0.so=0-64 openssl > libcrypto.so=3-64 libssl.so=3-64 pam libpam.so=0-64 Thanks a lot ! -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From icreberr at tutanota.com Sat Dec 23 20:56:47 2023 From: icreberr at tutanota.com (icreberr at tutanota.com) Date: Sat, 23 Dec 2023 20:56:47 +0100 (CET) Subject: [artix-general] unresolvable dependancy of mintlocale "iso-flag-png" Message-ID: As read on the tin, I tried to install mintlocale and was met with an unresolvable dependancy. I do not know where else to post this and here seemed to be the best place.pacman output as follows: # pacman -Syu mintlocale? :: Synchronizing package databases... system is up to date world is up to date galaxy is up to date lib32 is up to date extra is up to date multilib is up to date community is up to date :: Starting full system upgrade... resolving dependencies... warning: cannot resolve "iso-flag-png", a dependency of "mintlocale" :: The following package cannot be upgraded due to unresolvable dependencies: ????? mintlocale :: Do you want to skip the above package for this upgrade? [y/N]? I am new to bug reports, mailing lists and social interaction, so please do forgive me if I am breaching etiqette and please point to my mistakes so I may better myself. -------------- next part -------------- An HTML attachment was scrubbed... URL: From je-vv at e.email Sat Dec 23 22:21:05 2023 From: je-vv at e.email (Javier) Date: Sat, 23 Dec 2023 15:21:05 -0600 Subject: [artix-general] unresolvable dependancy of mintlocale "iso-flag-png" In-Reply-To: References: Message-ID: <63dd2c4a-803b-48d3-b01f-8eccf3ba7217@e.email> On 12/23/23 13:56, icreberr at tutanota.com wrote: > ... > # pacman -Syu mintlocale > ... > warning: cannot resolve "iso-flag-png", a dependency of "mintlocale" > :: The following package cannot be upgraded due to unresolvable dependencies: > ????? mintlocale iso-flag-png is on AUR, you have to install it from there first: > % aur search iso-flag-png > aur/iso-flag-png 1.0.2-2 (+12 1.19%) > ISO country flags in PNG format -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From artist at artixlinux.org Thu Dec 28 14:11:49 2023 From: artist at artixlinux.org (artist) Date: Thu, 28 Dec 2023 14:11:49 +0100 Subject: [artix-general] Librewolf and Firedragon browsers Message-ID: <33df4650-1c79-4735-9341-28df7d42e4aa@artixlinux.org> FYI, about these Firefox based browsers: The developers of the?Firedragon browser have stopped updating it, so it will remain on version 119. This until they have completed the rebase which should result in Firedragon-next. The Librewolf browser package librewolf-121.0-1-x86_64 is now available in the Artix Mmniverse repository, and - provided the builds succeed - will be kept up-to-date. artist -- On a bended knee, or systemd, you will never live free From je-vv at e.email Thu Dec 28 17:57:16 2023 From: je-vv at e.email (Javier) Date: Thu, 28 Dec 2023 10:57:16 -0600 Subject: [artix-general] Librewolf and Firedragon browsers In-Reply-To: <33df4650-1c79-4735-9341-28df7d42e4aa@artixlinux.org> References: <33df4650-1c79-4735-9341-28df7d42e4aa@artixlinux.org> Message-ID: <1987dc3a-f621-453b-bf90-c6c6267f7fd3@e.email> On 12/28/23 07:11, artist wrote: > The Librewolf browser package librewolf-121.0-1-x86_64 is now available in the Artix Mmniverse repository, and - provided the builds succeed - will be kept up-to-date. Woohoo ! Thanks a lot ! -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: