Re: [Slackbuilds-users] Issues with webkit2gtk / webkit2gtk4.1 in a Slackware 32 bit

2024-01-12 Thread Christoph Willing
On 12/1/24 15:31, B. Watson wrote: "${NINJA:=ninja}" -j$(expr $(nproc) / 2) What maniac wrote this? If you run it on a single-core box, nproc says 1, integer-divided by 2... means it runs "ninja -j0". And according to ninja's --help, -j0 means "infinity". This might be the cause of the OP's pr

Re: [Slackbuilds-users] Issues with webkit2gtk / webkit2gtk4.1 in a Slackware 32 bit

2024-01-12 Thread B. Watson
On Fri, 12 Jan 2024, Christoph Willing wrote: Is this idiom a thing that sbolint could check for and warn about (or fail)? It could... though, it's complex enough that it might not be all that reliable. Also consider... The original code was: "${NINJA:=ninja}" -j$(expr $(nproc) / 2) But

Re: [Slackbuilds-users] Issues with webkit2gtk / webkit2gtk4.1 in a Slackware 32 bit

2024-01-12 Thread B. Watson
On Fri, 12 Jan 2024, B. Watson wrote: But this actually would have been OK and not resulted in "-j0" on a single-proc system: "${NINJA:=ninja}" -j$(expr $(nproc) / 2 + 1) That would have done what the author intended: use half the available cores, or 1 core on a single-core box. The peri

[Slackbuilds-users] Updates - 20240113.1

2024-01-12 Thread Willy Sudiarto Raharjo
Sat Jan 13 00:15:21 UTC 2024 academic/arpack-ng: Updated for version 3.9.1 academic/cblas: Updated for version 3.12.0 academic/fet: Updated for version 6.15.1. academic/gerbv: Updated for version 2.10.0. academic/lapacke: Updated for version 3.12.0 academic/octave: Updated for version 8.4.0 academ

[Slackbuilds-users] lightdm

2024-01-12 Thread Franzen via SlackBuilds-users
Hi, in https://slackbuilds.org/uid_gid.txt i saw that a uid/gid for lightdm is listet, but there is no buildscript on SBo. Is someone already working on this? If not, i'd like to put some work on this for a submission. Johannes ___ SlackBuilds-users m

Re: [Slackbuilds-users] lightdm

2024-01-12 Thread Robby Workman
On Sat, 13 Jan 2024 06:18:05 +0100 Franzen via SlackBuilds-users wrote: > in https://slackbuilds.org/uid_gid.txt i saw that a uid/gid for > lightdm is listet, but there is no buildscript on SBo. Is someone > already working on this? > > If not, i'd like to put some work on this for a submission.