From fourtysixandtwo at sliderr.net Wed Oct 1 07:35:29 2025 From: fourtysixandtwo at sliderr.net (fourtysixandtwo) Date: Wed, 1 Oct 2025 01:35:29 -0600 Subject: [Slackbuilds-users] python3-uv and uv-bin In-Reply-To: References: <20250927084523.51cfd12e@home.slackie.org> <17d51fa8-17ef-49f6-bc8d-c9636e11117e@yahoo.com> Message-ID: I've submitted python3-uv_build. I've attached it if you want to test Antonio. Here's the diff for odfdo too diff --git a/python/python3-odfdo/python3-odfdo.SlackBuild b/python/python3-odfdo/python3-odfdo.SlackBuild index 980682676..30daea012 100644 --- a/python/python3-odfdo/python3-odfdo.SlackBuild +++ b/python/python3-odfdo/python3-odfdo.SlackBuild @@ -66,7 +66,8 @@ find -L . \ PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') export PYTHONPATH=/opt/python$PYVER/site-packages/ -uv build --wheel + +python3 -m build --no-isolation python3 -m installer --destdir "$PKG" "dist/odfdo-$VERSION-py3-none-any.whl" find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ diff --git a/python/python3-odfdo/python3-odfdo.info b/python/python3-odfdo/python3-odfdo.info index 3682943cf..9cd2ebe63 100644 --- a/python/python3-odfdo/python3-odfdo.info +++ b/python/python3-odfdo/python3-odfdo.info @@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/jdum/odfdo/archive/v3.16.7/odfdo-3.16.7.tar.gz" MD5SUM="877040cb5476310c7cc63a5d39919d28" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="python3-lxml python3-uv" +REQUIRES="python3-lxml python3-uv_build" MAINTAINER="Antonio Leal" EMAIL="antonioleal at yahoo.com" On Tue, Sep 30, 2025 at 1:52?AM fourtysixandtwo wrote: > > On Sat, Sep 27, 2025 at 2:56?AM Antonio Leal via SlackBuilds-users > wrote: > > > > All good. I agree to remove python3-uv and I'll rework python3-odfdo > > with the existing uv-bin or otherwise. For the moment maybe its also > > good idea to remove python3-odfdo. > > I look to have a python3-uv_build slackbuild working which is just the > uv build backend and is all that is needed for odfdo (using the > regular python build commands). > > I just got it working and it required a change to my vendoring script. > This should mean we'll be able to build python3-uv properly too but I > haven't gotten that far yet. > > > I saw the "-bin" discussion in the list but was it finally decided to > > implement it? > > There are quite a few -bin's...48 to be exact! > > Cheers -------------- next part -------------- A non-text attachment was scrubbed... Name: python3-uv_build.tar.xz Type: application/x-xz Size: 3504 bytes Desc: not available URL: From arnaud.garcia-fernandez at laposte.net Wed Oct 1 11:44:45 2025 From: arnaud.garcia-fernandez at laposte.net (Arnaud) Date: Wed, 1 Oct 2025 13:44:45 +0200 Subject: [Slackbuilds-users] python3-uv and uv-bin In-Reply-To: References: <20250927084523.51cfd12e@home.slackie.org> <17d51fa8-17ef-49f6-bc8d-c9636e11117e@yahoo.com> Message-ID: <20251001134445.9998ef90acf638aebd049a5b@laposte.net> Hi! I was looking at updating pgsanity, and it also requires uv to build. I've tested the build using this python3-uv_build, and it works fine. So I've submitted a PR in Github, for pgsanity, but it is dependant on the integration of python3-uv_build. Previous uv-bin and python3-uv couldn't allow building pgsanity, but that one does. Cheers. On Wed, 1 Oct 2025 01:35:29 -0600 fourtysixandtwo wrote: > I've submitted python3-uv_build. I've attached it if you want to test Antonio. > > Here's the diff for odfdo too > > diff --git a/python/python3-odfdo/python3-odfdo.SlackBuild > b/python/python3-odfdo/python3-odfdo.SlackBuild > index 980682676..30daea012 100644 > --- a/python/python3-odfdo/python3-odfdo.SlackBuild > +++ b/python/python3-odfdo/python3-odfdo.SlackBuild > @@ -66,7 +66,8 @@ find -L . \ > > PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') > export PYTHONPATH=/opt/python$PYVER/site-packages/ > -uv build --wheel > + > +python3 -m build --no-isolation > python3 -m installer --destdir "$PKG" "dist/odfdo-$VERSION-py3-none-any.whl" > > find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared > object" | grep ELF \ > diff --git a/python/python3-odfdo/python3-odfdo.info > b/python/python3-odfdo/python3-odfdo.info > index 3682943cf..9cd2ebe63 100644 > --- a/python/python3-odfdo/python3-odfdo.info > +++ b/python/python3-odfdo/python3-odfdo.info > @@ -5,6 +5,6 @@ > DOWNLOAD="https://github.com/jdum/odfdo/archive/v3.16.7/odfdo-3.16.7.tar.gz" > MD5SUM="877040cb5476310c7cc63a5d39919d28" > DOWNLOAD_x86_64="" > MD5SUM_x86_64="" > -REQUIRES="python3-lxml python3-uv" > +REQUIRES="python3-lxml python3-uv_build" > MAINTAINER="Antonio Leal" > EMAIL="antonioleal at yahoo.com" > > > > On Tue, Sep 30, 2025 at 1:52?AM fourtysixandtwo > wrote: > > > > On Sat, Sep 27, 2025 at 2:56?AM Antonio Leal via SlackBuilds-users > > wrote: > > > > > > All good. I agree to remove python3-uv and I'll rework python3-odfdo > > > with the existing uv-bin or otherwise. For the moment maybe its also > > > good idea to remove python3-odfdo. > > > > I look to have a python3-uv_build slackbuild working which is just the > > uv build backend and is all that is needed for odfdo (using the > > regular python build commands). > > > > I just got it working and it required a change to my vendoring script. > > This should mean we'll be able to build python3-uv properly too but I > > haven't gotten that far yet. > > > > > I saw the "-bin" discussion in the list but was it finally decided to > > > implement it? > > > > There are quite a few -bin's...48 to be exact! > > > > Cheers -- Arnaud From antonioleal at yahoo.com Wed Oct 1 19:25:04 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Wed, 1 Oct 2025 20:25:04 +0100 Subject: [Slackbuilds-users] I would like to orphan the following SlackBuilds In-Reply-To: References: Message-ID: If no one wants them I can take: python3-boto3 python3-h5py electron soci On 9/24/25 5:42 AM, Isaac Yu via SlackBuilds-users wrote: > Hi everyone, > > I had returned to Slackbuilds maintenance this year in March. > That was when Willy wanted to update protobuf to 30.0 and asked me how > that would affect python3-grpcio (a dependency of OpenSnitch): > https://github.com/SlackBuildsOrg/slackbuilds/issues/10021 > > And now, I am back to using Slackware - but this time, Slackware > current rather than 15.0. > > I would like to orphan the following SlackBuilds (these are programs I > don't/no longer use): > > android-file-transfer > apvlv > artix-backgrounds > bazel > cligj > electron > Fiona > geographiclib-python > geopandas > geopy > jupyter-nbclassic > liblzf > munch > podofo > python3-boto3 > python3-h5py > python3-pyogrio > sddm-theme-artix > slbar > soci > > After this, I still have more than 180 SlackBuilds left to maintain. > > - Isaac > > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives -https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ -https://slackbuilds.org/faq/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From antonioleal at yahoo.com Thu Oct 2 19:51:25 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Thu, 2 Oct 2025 20:51:25 +0100 Subject: [Slackbuilds-users] python3-uv and uv-bin In-Reply-To: References: <20250927084523.51cfd12e@home.slackie.org> <17d51fa8-17ef-49f6-bc8d-c9636e11117e@yahoo.com> Message-ID: <7b0bf23d-3cb5-48d4-a29c-27af9e1285b2@yahoo.com> Hi I've tested python3-odfdo with the patch below + python3-uv_build as far as I've tested,?and I can confirm that the odfdo test programs?(for writer and calc)?do work. On 10/1/25 8:35 AM, fourtysixandtwo wrote: > I've submitted python3-uv_build. I've attached it if you want to test Antonio. > > Here's the diff for odfdo too > > diff --git a/python/python3-odfdo/python3-odfdo.SlackBuild > b/python/python3-odfdo/python3-odfdo.SlackBuild > index 980682676..30daea012 100644 > --- a/python/python3-odfdo/python3-odfdo.SlackBuild > +++ b/python/python3-odfdo/python3-odfdo.SlackBuild > @@ -66,7 +66,8 @@ find -L . \ > > PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') > export PYTHONPATH=/opt/python$PYVER/site-packages/ > -uv build --wheel > + > +python3 -m build --no-isolation > python3 -m installer --destdir "$PKG" "dist/odfdo-$VERSION-py3-none-any.whl" > > find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared > object" | grep ELF \ > diff --git a/python/python3-odfdo/python3-odfdo.info > b/python/python3-odfdo/python3-odfdo.info > index 3682943cf..9cd2ebe63 100644 > --- a/python/python3-odfdo/python3-odfdo.info > +++ b/python/python3-odfdo/python3-odfdo.info > @@ -5,6 +5,6 @@ > DOWNLOAD="https://github.com/jdum/odfdo/archive/v3.16.7/odfdo-3.16.7.tar.gz" > MD5SUM="877040cb5476310c7cc63a5d39919d28" > DOWNLOAD_x86_64="" > MD5SUM_x86_64="" > -REQUIRES="python3-lxml python3-uv" > +REQUIRES="python3-lxml python3-uv_build" > MAINTAINER="Antonio Leal" > EMAIL="antonioleal at yahoo.com" > > > > On Tue, Sep 30, 2025 at 1:52?AM fourtysixandtwo > wrote: >> On Sat, Sep 27, 2025 at 2:56?AM Antonio Leal via SlackBuilds-users >> wrote: >>> All good. I agree to remove python3-uv and I'll rework python3-odfdo >>> with the existing uv-bin or otherwise. For the moment maybe its also >>> good idea to remove python3-odfdo. >> I look to have a python3-uv_build slackbuild working which is just the >> uv build backend and is all that is needed for odfdo (using the >> regular python build commands). >> >> I just got it working and it required a change to my vendoring script. >> This should mean we'll be able to build python3-uv properly too but I >> haven't gotten that far yet. >> >>> I saw the "-bin" discussion in the list but was it finally decided to >>> implement it? >> There are quite a few -bin's...48 to be exact! >> >> Cheers From 2458099 at gmail.com Thu Oct 2 16:18:15 2025 From: 2458099 at gmail.com (Gilberto F da Silva) Date: Thu, 2 Oct 2025 13:18:15 -0300 Subject: [Slackbuilds-users] Broken package - arj 3.10 Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 I am using Ponce's repository. I got an error while compiling some SlackBuilds. This is an example. ########################################### New queue process started on: ?a? 02 Okt 2025 11:13:23 -0300 ########################################### +++++++++++++++++++++++++++++++++++++++++++ PRE-CHECK LOG Using the UNSUPPORTED SBo git repository for -current Queue Process: Download, build, and install arj: GPG checks not supported for the SBo-git repository. Processing arj 3.10.22-2 Using original .info file Using original SlackBuild file No build options selected. +++++++++++++++++++++++++++++++++++++++++++ Processing arj arj: arj not found in /var/cache/sbopkg. - - --2025-10-02 11:13:26-- http://arj.sourceforge.net/files/arj-3.10.22.tar.gz Ni solvigas arj.sourceforge.net (arj.sourceforge.net)... 2606:4700::6812:d95, 2606:4700::6812:c95, 104.18.13.149, ... Konektado al arj.sourceforge.net (arj.sourceforge.net)|2606:4700::6812:d95|:80... konektita. HTTP peto sendita, ni atendas respondon... 301 Moved Permanently Loko: https://arj.sourceforge.net/files/arj-3.10.22.tar.gz [sekvanta] - - --2025-10-02 11:13:26-- https://arj.sourceforge.net/files/arj-3.10.22.tar.gz Konektado al arj.sourceforge.net (arj.sourceforge.net)|2606:4700::6812:d95|:443... konektita. HTTP peto sendita, ni atendas respondon... 200 OK Grando: 431467 (421K) [application/octet-stream] Ni konservas al: ?arj-3.10.22.tar.gz? arj-3.10.22.tar.gz 0%[ ] 0 --.-KB/s arj-3.10.22.tar.gz 100%[===================>] 421,35K --.-KB/s en 0,05s 2025-10-02 11:13:27 (8,14 MB/s) - ?arj-3.10.22.tar.gz? konservita [431467/431467] Found arj-3.10.22.tar.gz in /var/cache/sbopkg. Checking MD5SUM: MD5SUM check for arj-3.10.22.tar.gz ... OK Building package for arj... arj-3.10.22/ arj-3.10.22/ansi.c arj-3.10.22/ansi.h arj-3.10.22/arj.c arj-3.10.22/arj.h arj-3.10.22/arjcrypt.c arj-3.10.22/arjcrypt.h arj-3.10.22/arjdata.c arj-3.10.22/arjdata.h arj-3.10.22/arjdisp.c arj-3.10.22/arjsec_h.c arj-3.10.22/arjsec_h.h arj-3.10.22/arjsec_l.c arj-3.10.22/arjsec_l.h arj-3.10.22/arjsfx.c arj-3.10.22/arjsfx.h arj-3.10.22/arjsfxjr.c arj-3.10.22/arjtypes.c arj-3.10.22/arjtypes.h arj-3.10.22/arj_arcv.c arj-3.10.22/arj_arcv.h arj-3.10.22/arj_file.c arj-3.10.22/arj_file.h arj-3.10.22/arj_proc.c arj-3.10.22/arj_proc.h arj-3.10.22/arj_user.c arj-3.10.22/arj_user.h arj-3.10.22/arj_xms.asm arj-3.10.22/arj_xms.h arj-3.10.22/asm_incl.inc arj-3.10.22/bindings.h arj-3.10.22/ChangeLog arj-3.10.22/chk_fmsg.c arj-3.10.22/chk_fmsg.h arj-3.10.22/crc16tab.c arj-3.10.22/crc16tab.h arj-3.10.22/crc32.c arj-3.10.22/crc32.h arj-3.10.22/cset2/ arj-3.10.22/cset2/arj.def arj-3.10.22/cset2/arjcrypt.def arj-3.10.22/cset2/arjdisp.def arj-3.10.22/cset2/arjsfx.def arj-3.10.22/cset2/arjsfxjr.def arj-3.10.22/cset2/arjsfxv.def arj-3.10.22/cset2/default.def arj-3.10.22/cset2/rearj.def arj-3.10.22/cset2/register.def arj-3.10.22/cset2/sfxstub.def arj-3.10.22/date_sig.h arj-3.10.22/debug.c arj-3.10.22/debug.h arj-3.10.22/decode.c arj-3.10.22/decode.h arj-3.10.22/defines.h arj-3.10.22/det_x86.asm arj-3.10.22/det_x86.h arj-3.10.22/doc/ arj-3.10.22/doc/compile.txt arj-3.10.22/doc/COPYING arj-3.10.22/doc/debug.txt arj-3.10.22/doc/glossary.txt arj-3.10.22/doc/rev_hist.txt arj-3.10.22/doc/xlation.txt arj-3.10.22/ea_mgr.c arj-3.10.22/ea_mgr.h arj-3.10.22/encode.c arj-3.10.22/encode.h arj-3.10.22/enc_gwy.c arj-3.10.22/enc_gwy.h arj-3.10.22/environ.c arj-3.10.22/environ.h arj-3.10.22/exe_sear.c arj-3.10.22/exe_sear.h arj-3.10.22/externs.c arj-3.10.22/externs.h arj-3.10.22/ext_hdr.c arj-3.10.22/ext_hdr.h arj-3.10.22/fardata.c arj-3.10.22/fardata.h arj-3.10.22/filelist.c arj-3.10.22/filelist.h arj-3.10.22/filemode.c arj-3.10.22/filemode.h arj-3.10.22/file_reg.c arj-3.10.22/file_reg.h arj-3.10.22/fmemcmp.asm arj-3.10.22/fmemcmp.h arj-3.10.22/garble.c arj-3.10.22/garble.h arj-3.10.22/gnu/ arj-3.10.22/gnu/arj.qpg arj-3.10.22/gnu/arj.spec arj-3.10.22/gnu/arjcrypt.def arj-3.10.22/gnu/ChangeLog arj-3.10.22/gnu/config.guess arj-3.10.22/gnu/config.h.in arj-3.10.22/gnu/config.sub arj-3.10.22/gnu/configure.in arj-3.10.22/gnu/install-sh arj-3.10.22/gnu/makefile.in arj-3.10.22/gnu/mkinstalldirs arj-3.10.22/gnu/stripgcc.lnk arj-3.10.22/gost.c arj-3.10.22/gost.h arj-3.10.22/gost40.c arj-3.10.22/gost40.h arj-3.10.22/gost_asm.asm arj-3.10.22/gost_asm.h arj-3.10.22/gost_t.c arj-3.10.22/gost_t.h arj-3.10.22/highc/ arj-3.10.22/highc/hcd_omf.lib arj-3.10.22/integr.asm arj-3.10.22/integr.c arj-3.10.22/join.c arj-3.10.22/makefile arj-3.10.22/makestub.c arj-3.10.22/make_key.c arj-3.10.22/misc.c arj-3.10.22/misc.h arj-3.10.22/msc6_os2/ arj-3.10.22/msc6_os2/arj.def arj-3.10.22/msc6_os2/arjcrypt.def arj-3.10.22/msc6_os2/arjdisp.def arj-3.10.22/msc6_os2/arjsfx.def arj-3.10.22/msc6_os2/arjsfxjr.def arj-3.10.22/msc6_os2/arjsfxv.def arj-3.10.22/msc6_os2/default.def arj-3.10.22/msc6_os2/rearj.def arj-3.10.22/msc6_os2/register.def arj-3.10.22/msc6_os2/sfxstub.def arj-3.10.22/msgbind.c arj-3.10.22/ntstream.c arj-3.10.22/ntstream.h arj-3.10.22/packager.c arj-3.10.22/postproc.c arj-3.10.22/rearj.c arj-3.10.22/rearj.h arj-3.10.22/recovery.c arj-3.10.22/recovery.h arj-3.10.22/register.c arj-3.10.22/register.h arj-3.10.22/resource/ arj-3.10.22/resource/de/ arj-3.10.22/resource/de/arjl.txt arj-3.10.22/resource/de/arjs.txt arj-3.10.22/resource/de/file_id.diz arj-3.10.22/resource/en/ arj-3.10.22/resource/en/arj-register.1 arj-3.10.22/resource/en/arj.1 arj-3.10.22/resource/en/arjdisp.1 arj-3.10.22/resource/en/arjl.txt arj-3.10.22/resource/en/arjs.txt arj-3.10.22/resource/en/dos.txt arj-3.10.22/resource/en/file_id.diz arj-3.10.22/resource/en/history.txt arj-3.10.22/resource/en/os2.txt arj-3.10.22/resource/en/readme.txt arj-3.10.22/resource/en/rearj.1 arj-3.10.22/resource/en/unix.txt arj-3.10.22/resource/en/win32.txt arj-3.10.22/resource/hadi_de.txt arj-3.10.22/resource/hadi_en.txt arj-3.10.22/resource/hadi_ru.txt arj-3.10.22/resource/hreg_de.txt arj-3.10.22/resource/hreg_en.txt arj-3.10.22/resource/hreg_ru.txt arj-3.10.22/resource/hrejc_de.txt arj-3.10.22/resource/hrejc_en.txt arj-3.10.22/resource/hrejc_ru.txt arj-3.10.22/resource/hrej_de.txt arj-3.10.22/resource/hrej_en.txt arj-3.10.22/resource/hrej_ru.txt arj-3.10.22/resource/hsfxv_de.txt arj-3.10.22/resource/hsfxv_en.txt arj-3.10.22/resource/hsfxv_ru.txt arj-3.10.22/resource/hsfx_de.txt arj-3.10.22/resource/hsfx_en.txt arj-3.10.22/resource/hsfx_ru.txt arj-3.10.22/resource/rearj.cfg arj-3.10.22/resource/rearj.cfg.example arj-3.10.22/resource/resource.txt arj-3.10.22/resource/ru/ arj-3.10.22/resource/ru/arjl.txt arj-3.10.22/resource/ru/arjs.txt arj-3.10.22/resource/ru/dos.txt arj-3.10.22/resource/ru/file_id.diz arj-3.10.22/resource/ru/history.txt arj-3.10.22/resource/ru/os2.txt arj-3.10.22/resource/ru/readme.txt arj-3.10.22/resource/ru/unix.txt arj-3.10.22/resource/ru/win32.txt arj-3.10.22/scrnio.c arj-3.10.22/scrnio.h arj-3.10.22/settings/ arj-3.10.22/settings/bc31.sts arj-3.10.22/settings/bc40.sts arj-3.10.22/settings/msc7.sts arj-3.10.22/settings/msvc10.sts arj-3.10.22/settings/msvc15.sts arj-3.10.22/settings/tc10.sts arj-3.10.22/sfxstub.asm arj-3.10.22/sfxstub.c arj-3.10.22/sfx_id.asm arj-3.10.22/sfx_id.c arj-3.10.22/today.c arj-3.10.22/uxspec.c arj-3.10.22/uxspec.h arj-3.10.22/vacpp/ arj-3.10.22/vacpp/vacpp365.lib arj-3.10.22/wcc2_32/ arj-3.10.22/wcc2_32/owatcomr.lib arj-3.10.22/win32/ arj-3.10.22/win32/arjcrypt.def arj-3.10.22/win95dos.h patching file arj_proc.c patching file arj_proc.h patching file integr.c patching file arj_arcv.c patching file arj_proc.c patching file arj_proc.h patching file gnu/makefile.in patching file fardata.c patching file gnu/config.h.in patching file gnu/configure.in patching file arjdata.c patching file arj.c patching file ea_mgr.c patching file msgbind.c patching file packager.c patching file misc.h patching file environ.c patching file fardata.c patching file arj_user.c patching file arj_arcv.c patching file arjsfx.c patching file rearj.c patching file register.c patching file arjdisp.c patching file resource/en/arj.1 patching file gnu/configure.in patching file gnu/makefile.in patching file gnu/makefile.in patching file arj_proc.c patching file postproc.c patching file decode.c patching file environ.c patching file uxspec.c autoreconf: warning: autoconf input should be named 'configure.ac', not 'configure.in' aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:15: warning: The macro 'AC_CONFIG_HEADER' is obsolete. configure.in:15: You should run autoupdate. ./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from... configure.in:15: the top level configure.in:24: warning: The macro 'AC_HEADER_STDC' is obsolete. configure.in:24: You should run autoupdate. ./lib/autoconf/headers.m4:663: AC_HEADER_STDC is expanded from... configure.in:24: the top level configure.in:33: warning: The macro 'AC_PROG_GCC_TRADITIONAL' is obsolete. configure.in:33: You should run autoupdate. ./lib/autoconf/c.m4:1676: AC_PROG_GCC_TRADITIONAL is expanded from... configure.in:33: the top level configure.in:35: warning: The macro 'AC_FUNC_SETVBUF_REVERSED' is obsolete. Remove it and all references to SETVBUF_REVERSED. ./lib/autoconf/functions.m4:1785: AC_FUNC_SETVBUF_REVERSED is expanded from... configure.in:35: the top level configure.in:36: warning: The macro 'AC_TYPE_SIGNAL' is obsolete. configure.in:36: You should run autoupdate. ./lib/autoconf/types.m4:805: AC_TYPE_SIGNAL is expanded from... configure.in:36: the top level configure.in:157: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ./lib/autoconf/lang.m4:199: AC_LANG_CONFTEST is expanded from... ./lib/autoconf/general.m4:2960: _AC_RUN_IFELSE is expanded from... lib/m4sugar/m4sh.m4:690: _AS_IF_ELSE is expanded from... lib/m4sugar/m4sh.m4:697: AS_IF is expanded from... ./lib/autoconf/general.m4:2979: AC_RUN_IFELSE is expanded from... configure.in:157: the top level autoheader: warning: autoconf input should be named 'configure.ac', not 'configure.in' autoheader: warning: missing template: ALIGN_POINTERS autoheader: warning: Use AC_DEFINE([ALIGN_POINTERS], [], [Description]) autoheader: warning: missing template: USE_COLORS autoreconf: error: /usr/bin/autoheader failed with exit status: 1 checking for a BSD-compatible install... /bin/ginstall -c checking build system type... x86_64-slackware-linux-gnu checking host system type... x86_64-slackware-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for fcntl.h... yes checking for limits.h... yes checking for malloc.h... yes checking for an ANSI C-conforming const... yes checking whether struct tm is in sys/time.h or time.h... time.h checking whether byte ordering is bigendian... no checking for working memcmp... yes checking return type of signal handlers... void checking for vprintf... yes checking for getcwd... yes checking for min... no checking for max... no checking for mkdir... yes checking for mkdtemp... yes checking for rmdir... yes checking for fcloseall... yes checking for strcasecmp... yes checking for setpriority... yes checking for strdup... yes checking for strerror... yes checking for strstr... yes checking for strnlen... yes checking for strupr... no checking for strlwr... no checking for strtol... yes checking for strtoul... yes checking if dynamic C library may be used... yes checking if SFX executables may be packed... yes checking what to use as a dedicated output directory... linux-gnu checking fnmatch() tolerance to incomplete patterns acting as filenames... yes checking if color output is demanded... no configure: creating ./config.status config.status: creating ../GNUmakefile config.status: WARNING: 'makefile.in' seems to ignore the --datarootdir setting config.status: creating ../c_defs.h /tmp/SBo/arj-3.10.22 mkdir -p ./linux-gnu/en/rs mkdir -p ./linux-gnu/en/rs/tools mkdir -p ./linux-gnu/en/rs/arjcrypt mkdir -p ./linux-gnu/en/rs/sfxstub mkdir -p ./linux-gnu/en/rs/arjsfxv mkdir -p ./linux-gnu/en/rs/arjsfx mkdir -p ./linux-gnu/en/rs/arjsfxjr mkdir -p ./linux-gnu/en/rs/arj mkdir -p ./linux-gnu/en/rs/rearj mkdir -p ./linux-gnu/en/rs/register mkdir -p ./linux-gnu/en/rs/arjdisp cc -DARJUTIL -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/tools/filemode.o filemode.c cc -DARJUTIL -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/tools/today.o today.c cc -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -o linux-gnu/en/rs/tools/today ./linux-gnu/en/rs/tools/filemode.o ./linux-gnu/en/rs/tools/today.o ./linux-gnu/en/rs/tools/today en ./linux-gnu/en/rs TODAY v 1.22 [29/10/2000] Not a part of any binary package! make msg-headers make[1]: Entering directory '/tmp/SBo/arj-3.10.22' cc -DARJUTIL -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/tools/msgbind.o msgbind.c cc -DARJUTIL -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/tools/arjdata.o arjdata.c cc -DARJUTIL -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/tools/crc32.o crc32.c cc -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -o linux-gnu/en/rs/tools/msgbind ./linux-gnu/en/rs/tools/filemode.o ./linux-gnu/en/rs/tools/msgbind.o ./linux-gnu/en/rs/tools/arjdata.o ./linux-gnu/en/rs/tools/crc32.o ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_crp UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_stb UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_sfv UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ARJDATA: unknown tag <@!_"> ARJDATA: unknown tag <@: display program option\np: match with Pathname !: execute command option\n"> ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_sfx UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_sfj UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_arj UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_rej UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_reg UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! ./linux-gnu/en/rs/tools/msgbind ./resource/resource.txt msg_adi UNIX s en ./linux-gnu/en/rs MSGBIND v 1.65 [14/12/2002] Not a part of any binary package! make[1]: Leaving directory '/tmp/SBo/arj-3.10.22' make depends make[1]: Entering directory '/tmp/SBo/arj-3.10.22' mkdir -p .deps cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ansi.c -MM > .deps/ansi.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj.c -MM > .deps/arj.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_arcv.c -MM > .deps/arj_arcv.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_file.c -MM > .deps/arj_file.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_proc.c -MM > .deps/arj_proc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_user.c -MM > .deps/arj_user.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjcrypt.c -MM > .deps/arjcrypt.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjdata.c -MM > .deps/arjdata.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjdisp.c -MM > .deps/arjdisp.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsec_h.c -MM > .deps/arjsec_h.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsec_l.c -MM > .deps/arjsec_l.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsfx.c -MM > .deps/arjsfx.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsfxjr.c -MM > .deps/arjsfxjr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjtypes.c -MM > .deps/arjtypes.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC chk_fmsg.c -MM > .deps/chk_fmsg.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC crc16tab.c -MM > .deps/crc16tab.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC crc32.c -MM > .deps/crc32.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC debug.c -MM > .deps/debug.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC decode.c -MM > .deps/decode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ea_mgr.c -MM > .deps/ea_mgr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC enc_gwy.c -MM > .deps/enc_gwy.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC encode.c -MM > .deps/encode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC environ.c -MM > .deps/environ.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC exe_sear.c -MM > .deps/exe_sear.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ext_hdr.c -MM > .deps/ext_hdr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC externs.c -MM > .deps/externs.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC fardata.c -MM > .deps/fardata.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC file_reg.c -MM > .deps/file_reg.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC filelist.c -MM > .deps/filelist.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC filemode.c -MM > .deps/filemode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC garble.c -MM > .deps/garble.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost.c -MM > .deps/gost.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost40.c -MM > .deps/gost40.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost_t.c -MM > .deps/gost_t.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC integr.c -MM > .deps/integr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC join.c -MM > .deps/join.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC make_key.c -MM > .deps/make_key.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC makestub.c -MM > .deps/makestub.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC misc.c -MM > .deps/misc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC msgbind.c -MM > .deps/msgbind.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ntstream.c -MM > .deps/ntstream.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC packager.c -MM > .deps/packager.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC postproc.c -MM > .deps/postproc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC rearj.c -MM > .deps/rearj.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC recovery.c -MM > .deps/recovery.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC register.c -MM > .deps/register.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC scrnio.c -MM > .deps/scrnio.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC sfx_id.c -MM > .deps/sfx_id.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC sfxstub.c -MM > .deps/sfxstub.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC today.c -MM > .deps/today.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC uxspec.c -MM > .deps/uxspec.d make[1]: Leaving directory '/tmp/SBo/arj-3.10.22' make do-all make[1]: Entering directory '/tmp/SBo/arj-3.10.22' cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ansi.c -MM > .deps/ansi.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj.c -MM > .deps/arj.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_arcv.c -MM > .deps/arj_arcv.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_file.c -MM > .deps/arj_file.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_proc.c -MM > .deps/arj_proc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arj_user.c -MM > .deps/arj_user.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjcrypt.c -MM > .deps/arjcrypt.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjdata.c -MM > .deps/arjdata.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjdisp.c -MM > .deps/arjdisp.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsec_h.c -MM > .deps/arjsec_h.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsec_l.c -MM > .deps/arjsec_l.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsfx.c -MM > .deps/arjsfx.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjsfxjr.c -MM > .deps/arjsfxjr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC arjtypes.c -MM > .deps/arjtypes.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC chk_fmsg.c -MM > .deps/chk_fmsg.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC crc16tab.c -MM > .deps/crc16tab.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC crc32.c -MM > .deps/crc32.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC debug.c -MM > .deps/debug.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC decode.c -MM > .deps/decode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ea_mgr.c -MM > .deps/ea_mgr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC enc_gwy.c -MM > .deps/enc_gwy.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC encode.c -MM > .deps/encode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC environ.c -MM > .deps/environ.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC exe_sear.c -MM > .deps/exe_sear.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ext_hdr.c -MM > .deps/ext_hdr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC externs.c -MM > .deps/externs.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC fardata.c -MM > .deps/fardata.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC file_reg.c -MM > .deps/file_reg.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC filelist.c -MM > .deps/filelist.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC filemode.c -MM > .deps/filemode.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC garble.c -MM > .deps/garble.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost.c -MM > .deps/gost.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost40.c -MM > .deps/gost40.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC gost_t.c -MM > .deps/gost_t.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC integr.c -MM > .deps/integr.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC join.c -MM > .deps/join.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC make_key.c -MM > .deps/make_key.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC makestub.c -MM > .deps/makestub.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC misc.c -MM > .deps/misc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC msgbind.c -MM > .deps/msgbind.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC ntstream.c -MM > .deps/ntstream.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC packager.c -MM > .deps/packager.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC postproc.c -MM > .deps/postproc.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC rearj.c -MM > .deps/rearj.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC recovery.c -MM > .deps/recovery.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC register.c -MM > .deps/register.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC scrnio.c -MM > .deps/scrnio.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC sfx_id.c -MM > .deps/sfx_id.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC sfxstub.c -MM > .deps/sfxstub.d cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC today.c -MM > .deps/today.d cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/filemode.o filemode.c ./linux-gnu/en/rs/tools/today en ./linux-gnu/en/rs TODAY v 1.22 [29/10/2000] Not a part of any binary package! cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/date_sig.o linux-gnu/en/rs/date_sig.c cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/fmsg_arj.o linux-gnu/en/rs/fmsg_arj.c cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/imsg_arj.o linux-gnu/en/rs/imsg_arj.c cc -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/nmsg_arj.o linux-gnu/en/rs/nmsg_arj.c cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/integr.o integr.c cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/file_reg.o file_reg.c cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/decode.o decode.c cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/encode.o encode.c cc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib64/arj\"" -D_UNIX -D_UNIX -O2 -fPIC -olinux-gnu/en/rs/arj/arj.o arj.c arj.c: In function ?final_cleanup?: arj.c:594:3: error: implicit declaration of function ?fcloseall?; did you mean ?fclose?? [-Wimplicit-function-declaration] 594 | fcloseall(); | ^~~~~~~~~ | fclose make[1]: *** [GNUmakefile:137: linux-gnu/en/rs/arj/arj.o] Error 1 make[1]: Leaving directory '/tmp/SBo/arj-3.10.22' make: *** [GNUmakefile:176: all] Error 2 arj: Would you like to continue processing the rest of the queue or would you like to abort? If this failed package is a dependency of another package in the queue then it may not make sense to continue. (Y)es to continue, (N)o to abort, (R)etry the build?: [?2004hn [?2004l +++++++++++++++++++++++++++++++++++++++++++ SUMMARY LOG Using the UNSUPPORTED SBo git repository for -current Queue Process: Download, build, and install arj: MD5SUM check for arj-3.10.22.tar.gz ... OK Error occurred with build. Please check the log. - - -- Stela dato:2.460.951,164 Loka tempo:2025-10-02 12:56:15 ?a?do Slackware 15.0 x86_64 (post 15.0 -current) - - -==- A Igreja reclama de persegui??o quando n?o lhe ? permitido perseguir. -- Luis de Zulueta - -----BEGIN PGP SIGNATURE----- Comment: +-----------------------------------------------------+ Comment: ! https://t.me/Gilberto_F_da_Silva ! Comment: +-----------------------------------------------------+ iHUEAREIAB0WIQSWDU9sZ+hOyX91n7l0C/CavLb3GgUCaN6lJwAKCRB0C/CavLb3 GqQ9AP4yzNieAG9rwHwaZqF3xVtwpkznhtiH9t+Ce+3qa7/77wEAvCuPOVAwbtSF 3cf4Qemte8utL2SYEEt1DNihkHUwONs= =4feE - -----END PGP SIGNATURE----- -----BEGIN PGP SIGNATURE----- Comment: +-----------------------------------------------------+ Comment: ! https://t.me/Gilberto_F_da_Silva ! Comment: +-----------------------------------------------------+ iHUEAREIAB0WIQSWDU9sZ+hOyX91n7l0C/CavLb3GgUCaN6lxwAKCRB0C/CavLb3 GuklAP9CH7Og/Jvr+GFS7kYCZZWpv+vA3Xy/cahFjE7vKWpWcgD/Z6rKwz4bUW/N tns/PKebcnao51dPJriMdBJ+Jrjbxpc= =4c87 -----END PGP SIGNATURE----- From 2458099 at gmail.com Fri Oct 3 16:34:05 2025 From: 2458099 at gmail.com (Gilberto F da Silva) Date: Fri, 3 Oct 2025 13:34:05 -0300 Subject: [Slackbuilds-users] How to configure sbopkg to generate individual log files for each SlackBuild? Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Reply-To: In-Reply-To: I looked at the sbopkg man page and the sbopkg.conf man page, but I did not find a way to have the log files created individually by default. - -- Stela dato:2.460.952,181 Loka tempo:2025-10-03 13:20:58 Vendredo Slackware 15.0 x86_64 (post 15.0 -current) - -==- "Quanto mais aprendemos, de menos deuses precisamos. A cren?a em Deus ? somente a resposta de um mist?rio por outro mist?rio, dessa forma n?o respondendo nada". -- Dan Barker -----BEGIN PGP SIGNATURE----- Comment: +-----------------------------------------------------+ Comment: ! https://t.me/Gilberto_F_da_Silva ! Comment: +-----------------------------------------------------+ iHUEAREIAB0WIQSWDU9sZ+hOyX91n7l0C/CavLb3GgUCaN/6/QAKCRB0C/CavLb3 GjKdAQDIeKl1YZordr/I1lVat+TdT9AoyRz8Pui/0VheMkd75QD9E3Ugj5mIU6z1 /J/HlUQ/toZnGfETmxMT8xkS8MSeF+g= =Uu/G -----END PGP SIGNATURE----- From willysr at slackbuilds.org Sat Oct 4 02:47:54 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 4 Oct 2025 09:47:54 +0700 Subject: [Slackbuilds-users] Updates : 20251004.1 Message-ID: <20251004094754.7ca04c7c@home.slackie.org> Sat Oct 4 02:38:59 UTC 2025 academic/plus42: Updated for version 1.3.10d audio/MP3Diags: Updated for version 1.4.01, new maintainer. desktop/artix-backgrounds: Orphan maintenance desktop/mint-themes: Change MD5SUM desktop/mint-themes: Update for 2.3.3 (+new maintainer) desktop/sddm-theme-artix: Orphan maintenance desktop/slbar: Orphan maintenance desktop/vertex-maia-icon-themes: Added (Icon Themes). development/aws-cdk: Updated for version 2.1029.4. development/bazel: Orphan maintenance development/bbcsdl: Updated for version 20250924_9921283 development/cargo-vendor-filterer: Updates to included script. development/claude-code: Added (agentic coding tool). development/corrosion: Added (Rust and C/C++ Integration). development/deno: New maintainer, and vendored sources. development/eisl: Updated for version 5.55 development/electron: Orphan maintenance development/github-cli: Updated for version 2.81.0. development/google-cloud-cli: Added (Google Cloud CLI). development/idea: Updated for version 2025.2.2. development/jujutsu: Updated for version 0.34.0 development/jupyter-nbclassic: Orphan maintenance development/jupyter-notebook: Update for 7.4.7 development/jupyterlab: Update for 4.4.9 development/lm-studio-bin: Updated for version 0.3.27.4 development/obsidian: Updated for version 1.9.14. development/postman: Updated for version 11.64.7 development/sbcl: Updated for version 2.5.9 development/sourcegit: Updated for version 2025.35 development/unicorn: Updated for version 2.1.4. development/vscode-bin: Updated for version 1.104.3. development/vstudio: Updated for version 16.0.1 games/ut99: Update script. gis/Fiona: Orphan maintenance gis/cligj: Orphan maintenance gis/geographiclib-python: Orphan maintenance gis/geopandas: Orphan maintenance gis/geopy: Orphan maintenance graphics/fstl: Updated for version 0.11.1 ham/sdrangel: Updated for version 7.22.9. ham/sdrplay_apiService: Added (SDRPlay service). libraries/fstrm: Added (binary clean protocol). libraries/grpc: Update for 1.75.1 libraries/libcpuid: Updated for version 0.8.1. libraries/liblzf: Orphan maintenance libraries/libmediainfo: Version bump to 25.09 libraries/nlohmann_json: Disable tests (for -current). libraries/podofo: Orphan maintenance libraries/soci: Orphan maintenance misc/yubioath-desktop: Updated for version 7.3.0. multimedia/inputstream.adaptive: Version bump to 21.5.16 multimedia/mediainfo: Version bump to 25.09 network/AdGuardHome: Updated for version 0.107.67. network/abdownloadmanager-bin: Updated for version 1.6.14 network/betterbird-bin: Updated for version 140.3.1esr. network/brave-browser: Fix icons. network/brave-browser: Updated for version 1.83.109. network/bsky-desktop-bin: Added (desktop app of bsky.app). network/dnsproxy-bin: Remove unused file. network/dnsproxy-bin: Updated for version 0.76.2. network/dropbox: Updated for version 233.4.4938. network/kubectl-bin: Updated for version 1.34.0. network/librewolf: Updated for version 143.0.3_1 network/lldpd: Updated for version 1.0.20. network/ocserv: New maintainer. network/rspamd: Updated for version 3.13.0 network/shibboleth-sp: Updated for version 3.5.1. network/signal-desktop: Updated for version 7.23.0. network/teamviewer: Updated for version 15.70.4. network/vivaldi: Updated for version 7.6.3797.58. network/warpinator: Update for 1.8.10 (+new maintainer) network/yt-dlp-bin: Updated for version 2025.09.26. network/yt-dlp: Updated for version 2025.09.26. office/apvlv: Orphan maintenance office/pandoc-bin: Updated for version 3.8.1. office/wps-office-dicts: Updated for version 25.8.2.2 office/xournalpp: Updated for version 1.2.8. python/munch: Orphan maintenance python/python-gssapi: Updated for version 1.10.0. python/python2-mpmath: Updated for version 1.3.0 (+ new maint) python/python3-PyGithub: Rename pynacl dependency to python3-pynacl python/python3-anyio: Version bump to 4.11.0 python/python3-boto3: Orphan maintenance python/python3-click-option-group: Version bump to 0.5.8 python/python3-debugpy: Update for 1.8.17 python/python3-dnspython: reverted to version 2.7.0 python/python3-grpcio: Update for 1.75.1 (+use newer Cython) python/python3-h5py: Orphan maintenance python/python3-libagent: Rename pynacl dependency to python3-pynacl python/python3-narwhals: Update for 2.6.0 python/python3-neovim: New Maintainer python/python3-odfdo: fix script dependencies python/python3-paramiko: Rename pynacl dependency to python3-pynacl python/python3-plotly: Update for 6.3.1 python/python3-pyogrio: Orphan maintenance python/python3-pypdf: Updated for version 6.1.1 python/python3-tox: Version bump to 4.30.3 python/python3-uv: Removed (duplicate of uv-bin) python/python3-uv_build: Added (uv build backend). python/python3-xcffib: Update for 1.11.2 system/Attic: Added (backup program). system/CPU-X: Updated for version 5.4.0. system/FreeFileSync: Updated for version 14.5. system/Iosevka-aile: Updated for version 33.3.1. system/Iosevka-etoile: Updated for version 33.3.1. system/Iosevka-slab: Updated for version 33.3.1 system/Iosevka: Updated for version 33.3.1 system/android-file-transfer: Orphan maintenance system/arch-install-scripts: Updated for version 30. system/arj: Fix -current build. system/chipsec: Updated for version 1.13.16. system/clifm: Updated for version 1.26.3. system/docker-compose: Updated for version 2.39.4 system/hashID: new maintainer, cleanup. system/hashcat: Updated for version 7.1.2, new maintainer. system/incus: Updated for version 6.17 system/lf: Update for r38 (+new maintainer) system/limine: Updated for version 10.0.1 system/mount-zip: Updated for version 1.10. system/netdata: Fix build. system/netdata: Updated for version 2.7.1. system/nvidia-driver: Updated for version 580.95.05. system/nvidia-kernel: Updated for version 580.95.05. system/oxker-bin: Updated for version 0.12.0 system/prometheus: Updated for version 3.6.0 system/thermald: Updated for version 2.5.10. system/unar: Fix -current build. system/vinterm: Fix -current build. system/xfile: Updated for version 1.0.1. system/yubico-piv-tool: Updated for version 2.7.2. +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From andrzej at telszewski.com Wed Oct 8 21:06:38 2025 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Wed, 8 Oct 2025 23:06:38 +0200 Subject: [Slackbuilds-users] Updates : 20251004.1: system/Attic In-Reply-To: <20251004094754.7ca04c7c@home.slackie.org> References: <20251004094754.7ca04c7c@home.slackie.org> Message-ID: <90de05e9-1c75-4f1b-bf56-1e38c0a0ed83@telszewski.com> On 04/10/2025 04:47, Willy Sudiarto Raharjo wrote: > system/Attic: Added (backup program). Not so long ago, I asked Dimitris to actually remove Attic SlackBuild from SBo. Attic is unmaintained for a long time upstream. If this package is to be present on SBo, I suggest that there's info in the README that it's unmaintained and better alternative exists - borgbackup. Spoiler alert - I maintain borgbackup SlackBuild. Also, I used Attic before borgbackup was forked from it. Bcc'd maintainer. Cheers! :) From willysr at slackbuilds.org Sat Oct 11 02:34:27 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 11 Oct 2025 09:34:27 +0700 Subject: [Slackbuilds-users] Updates - 20251011.1 Message-ID: <20251011093427.5034f5d9@home.slackie.org> Sat Oct 11 02:15:49 UTC 2025 academic/hp-prime: Added (Virtual Calculator Emulator). academic/plus42: Updated for version 1.3.10e audio/ocenaudio-bin: Updated for version 3.16.0 desktop/mint-themes: Download source based on commit ID desktop/mint-themes: Update commit desktop/qt6ct: Updated for version 0.11. development/Kiro: Added (agentic IDE). development/a68g: Updated for version 3.9.10 development/aws-cdk: Updated for version 2.1030.0. development/bruno: Updated for version 2.12.0. development/claude-code: Updated for version 2.0.5 development/deno: Updated for version 2.5.4. development/dkms: Update README.nvidia & script development/eisl: Updated for version 5.56 development/gcli: Updated for version 2.9.1. development/gitify-bin: Upgraded for version 6.9.1 development/golangci-lint: Updated for version 2.5.0. development/google-go-lang: 1.24.8. development/icecream-sundae: Added (Monitor for Icecream). development/lm-studio-bin: Updated for version 0.3.28.2 development/mongodb-compass: Updated for version 1.47.1. development/notepad++: Updated for version 8.8.6 development/pnpm: Updated for version 10.18.2. development/postman: Updated for version 11.65.4 development/rider: Updated for version 2025.2.3. development/sbt: Updated for version 1.11.7 development/smartsvn: Updated for version 14.5.1 development/terraform-ls: Updated for version 0.38.2. development/vscode-bin: Updated for version 1.105.0. development/vscodium: Updated for version 1.104.36664. games/mame: Updated for version 0.281. games/shattered-pixel-dungeon: Updated for version 3.2.5. gis/geographiclib-python: New maintainer. gis/geopandas: New maintainer. gis/geopy: New maintainer gis/google-earth: Updated for version 7.3.6.10441. libraries/Botan3: Added (C++ crypto library). libraries/MuseScore-Libraries: Added (MuseScore Libraries). libraries/libjcat: Updated for version 0.2.5. libraries/libxmlb: Updated for version 0.3.24. libraries/podofo: New Maintainer. libraries/pylast: Update README about python3.9 support. libraries/qt-installer-script: Updated for version 4.10.0 libraries/tree-sitter-yaml: Added (YAML grammar for tree-sitter). misc/countryfetch: Fix email in .info file misc/ollama: Updated for version 0.12.3. network/amneziawg-kernel: Updated for version 1.0.20251004. network/brave-browser: update 1.83.112 network/copyparty: Updated for version 1.19.16. network/dnsproxy-bin: Updated for version 0.77.0. network/element-desktop-bin: Updated for version 1.12.1. network/element-desktop: Updated for version 1.12.1. network/floorp-bin: Updated for version 12.2.1. network/grafana: Updated for version 12.2.0. network/jitsi-meet-desktop: Updated for version 2025.10.0 network/k9s: Updated for version 0.50.15. network/librewolf: Updated for version 143.0.4_1 network/phpmyadmin: Updated for version 5.2.3. network/rustdesk: Updated for version 1.4.2. network/syncthingtray-bin: Updated for version 2.0.2. network/telegram: Updated for version 6.1.4. network/telegram: Updated for version 6.2.2. network/tor-browser: Updated for version 14.5.8. network/vivaldi: Updated for version 7.6.3797.63. network/wireshark: Updated for version 4.6.0. network/zen-browser: Added (Web Browser). office/LibreOffice: Updated for version 25.8.2.1 office/ledger-live: Updated for version 2.130.1 office/libreoffice-helppack: Updated for version 25.8.2. office/libreoffice-langpack: Updated for version 25.8.2. office/libreoffice: Updated for version 25.8.2. office/pandoc-bin: Updated for version 3.8.2 office/qownnotes: Added (notepad with markdown). python/pynacl: Remove from SlackBuilds.org (renamed to python3-pynacl) python/python3-Flask-RESTX: Updated for version 1.3.2. python/python3-cattrs: Updated for version 25.3.0. python/python3-click-option-group: Version bump to 0.5.9 python/python3-dbus-fast: Update for 2.44.5 python/python3-filelock: Version bump to 3.20.0 python/python3-json-logger: Update for 4.0.0 python/python3-maturin: Updated for version 1.9.6. python/python3-narwhals: Update for 2.7.0 python/python3-odfdo: Updated for version 3.16.8 python/python3-platformdirs: Version bump to 4.5.0 python/python3-pydantic-core: Updated for version 2.41.1. python/python3-pydantic: Updated for version 2.12.0. python/python3-pyogrio: New maintainer. python/python3-pyproject-api: Add note on why we can't upgrade python/python3-rich: Updated for version 14.2.0. python/python3-slacklog: Fix email in .info file python/python3-tox: Add note on why we can't upgrade python/python3-types-python-dateutil: Update for 20251008 python/python3-typing-inspection: Updated for version 0.4.2. python/python3-uv_build: Updated for version 0.9.1. python/python3-virtualenv: Version bump to 20.35.3 python/python3-websocket-client: Updated for version 1.9.0. python/python3-zeroconf: Update for 1.48.0 ruby/ruby-build: Updated for version 20251008. system/B-em: Updated for version 20251008_4e7eaac system/OpenSnitch: Update for 1.7.2 (+update README.SLACKWARE) system/backasa: Removed unmaintained project. system/bottom: Updated for version 0.11.2. system/brave-browser-the-latest: Updated for version 1.5.3 system/clamav: Updated for version 1.5.0. system/docker-buildx: Updated for version 0.29.1. system/docker-compose: Updated for version 2.40.0 system/eza: Updated for version 0.23.4. system/fakeroot: Updated for version 1.37.1.1. system/fzf: Updated for version 0.65.2. system/hashcat: Fix build. system/limine: Updated for version 10.1.0 system/mongodb: Updated for version 8.2.1. system/munin-node: Updated for version 2.0.76. system/osquery-bin: Updated for version 5.19.0. system/sbotools: Updated for version 4.0. system/slpkg: Updated for version 5.4.5. system/suckless-tools: Update README (no package changes). system/thermald: Fix build on 32 bit and disable systemd. system/usermin: Fix sed typo. system/usermin: Updated for version 2.420. system/vim-airline-themes: Update for 20250922 system/webmin: Updated for version 2.520. +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Sat Oct 11 06:58:58 2025 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Oct 2025 02:58:58 -0400 (EDT) Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds Message-ID: Starting next week... all orphaned builds will have consistent name/email in the .info files: MAINTAINER="orphaned - no maintainer" EMAIL="NOEMAIL" If you're orphaning a build, *please* use *exactly* the same format, for consistency's sake. Please *don't* use EMAIL="nobody at nowhere.com" or use different spacing or punctuation in MAINTAINER. Someone pointed out to me that nowhere.com is a valid domain, owned by google: $ host -t mx nowhere.com nowhere.com mail is handled by 1 smtp.google.com. Cute, huh? From chris.willing at linux.com Sat Oct 11 07:45:28 2025 From: chris.willing at linux.com (Christoph Willing) Date: Sat, 11 Oct 2025 18:45:28 +1100 Subject: [Slackbuilds-users] Steven Voges's SlackBuilds In-Reply-To: <20250924213113.399d1b4d@home.slackie.org> References: <2a861147-5249-4a84-b171-8a292785cf34@gmail.com> <20250924213113.399d1b4d@home.slackie.org> Message-ID: <3509dc5d-f97c-401e-8c3f-7caa2dd1f73e@linux.com> On 25/9/25 00:31, Willy Sudiarto Raharjo wrote: >> Can any SBo admin confirm that all Steven Voges' SlackBuilds are >> actually up for grabs? > > I've sent an email to him just now > we will see in few days > Any decision yet? That email was just over two weeks ago. From richard at aaazen.com Sat Oct 11 13:47:00 2025 From: richard at aaazen.com (Richard Narron) Date: Sat, 11 Oct 2025 06:47:00 -0700 (PDT) Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: References: Message-ID: <2cd7f3dd-a250-c6d0-b061-197df95d0ae@aaazen.com> On Sat, 11 Oct 2025, B. Watson wrote: > > Starting next week... all orphaned builds will have consistent > name/email in the .info files: > > MAINTAINER="orphaned - no maintainer" > EMAIL="NOEMAIL" Thanks for this! Can this be added to the SlackBuilds FAQ or somewhere conspicuous? Richard Narron From urchlay at slackware.uk Sat Oct 11 21:50:07 2025 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Oct 2025 17:50:07 -0400 (EDT) Subject: [Slackbuilds-users] [SBo] dietlibc doesn't build on -current In-Reply-To: References: Message-ID: <78a2b890-43a0-ca7b-1788-4b7aaa72fc@slackware.uk> This message is intended for j+sbo at maschinengott.de. I'm replying via the list because for some reason I can't send mail to your address... On Sat, 11 Oct 2025, J wrote: > Hi, > are you aware? > https://0x0.st/KuRp.txt/dietlibc_buildlog (400 kB) Nope, I never tested on -current. It looks like something that might not be too hard to patch. From urchlay at slackware.uk Sat Oct 11 22:31:06 2025 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Oct 2025 18:31:06 -0400 (EDT) Subject: [Slackbuilds-users] [SBo] dietlibc doesn't build on -current In-Reply-To: <57683c0f-13e1-4261-94e3-718c23932c34@maschinengott.de> References: <78a2b890-43a0-ca7b-1788-4b7aaa72fc@slackware.uk> <57683c0f-13e1-4261-94e3-718c23932c34@maschinengott.de> Message-ID: On Sun, 12 Oct 2025, Jay wrote: > huh, that's a shame you can't mail me. You used to be able to at one time. Yeah, I remember. slackware.uk used to have its own mail server, but in the past year or so, it's switched to a commercial email provider. > Feel free to try without the subaddress (just ). Tried it, got the same response: Mail not sent: I cannot deliver mail for j at maschinengott.de No idea what's going on there, not going to drop everything I'm doing right now to go troubleshoot it... > Matteo has presently come up with a patch > (https://www.linuxquestions.org/questions/slackware-14/sbo-scripts-not-building-on-current-read-1st-post-pls-4175561999/page143.html#post6595740, > but also attached). I haven't tested yet if it's fit for the stable > SlackBuild as well, but I intend to. That was quick! Let me know if it's OK on 15.0... From j+sbo-users at maschinengott.de Sat Oct 11 23:57:36 2025 From: j+sbo-users at maschinengott.de (j+sbo-users at maschinengott.de) Date: Sun, 12 Oct 2025 01:57:36 +0200 Subject: [Slackbuilds-users] [SBo] dietlibc doesn't build on -current In-Reply-To: References: <78a2b890-43a0-ca7b-1788-4b7aaa72fc@slackware.uk> <57683c0f-13e1-4261-94e3-718c23932c34@maschinengott.de> Message-ID: for completeness' sake: the LQ link above won't work for most, this one will https://www.linuxquestions.org/questions/slackware-14/sbo-scripts-not-building-on-current-read-1st-post-pls-4175561999-post6595740/#post6595740 Am 12.10.25 um 00:31 schrieb B. Watson: > >> Matteo has presently come up with a patch (https:// >> www.linuxquestions.org/questions/slackware-14/sbo-scripts-not- >> building-on-current-read-1st-post-pls-4175561999/ >> page143.html#post6595740, but also attached). I haven't tested yet if >> it's fit for the stable SlackBuild as well, but I intend to. > > That was quick! Let me know if it's OK on 15.0... From urchlay at slackware.uk Sun Oct 12 07:50:33 2025 From: urchlay at slackware.uk (B. Watson) Date: Sun, 12 Oct 2025 03:50:33 -0400 (EDT) Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: <2cd7f3dd-a250-c6d0-b061-197df95d0ae@aaazen.com> References: <2cd7f3dd-a250-c6d0-b061-197df95d0ae@aaazen.com> Message-ID: <972aa514-d049-3aae-bd19-e9b8abf7635@slackware.uk> On Sat, 11 Oct 2025, Richard Narron wrote: > On Sat, 11 Oct 2025, B. Watson wrote: > >> >> Starting next week... all orphaned builds will have consistent >> name/email in the .info files: >> >> MAINTAINER="orphaned - no maintainer" >> EMAIL="NOEMAIL" > > Thanks for this! > > Can this be added to the SlackBuilds FAQ or somewhere conspicuous? > > Richard Narron Yes, that's a very good idea. I'm actually working on a "maintainer FAQ", which would be separate from the existing FAQ. From dchmelik at gmail.com Sun Oct 12 17:06:31 2025 From: dchmelik at gmail.com (David Chmelik) Date: Sun, 12 Oct 2025 10:06:31 -0700 Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: References: Message-ID: On 10/10/25 11:58 PM, B. Watson wrote: > > Starting next week... all orphaned builds will have consistent > name/email in the .info files: > > MAINTAINER="orphaned - no maintainer" > EMAIL="NOEMAIL" > > If you're orphaning a build, *please* use *exactly* the same format, > for consistency's sake. > > Please *don't* use EMAIL="nobody at nowhere.com" or use different > spacing or punctuation in MAINTAINER. Someone pointed out to me that > nowhere.com is a valid domain, owned by google: > > $ host -t mx nowhere.com > nowhere.com mail is handled by 1 smtp.google.com. > > Cute, huh? Good.? I'd said I'm giving up Dungeon Crawl Stone Soup (DCSS) and Mathics & dependencies--already gave up some those (has fewer)--but don't go far as to change these fields in my *.info to 'orphaned' just yet: I'll do what I can as long as no one else wants them... hopefully eventually someone does, and then those can be replaced... I want a smooth transition for anyone that may be using/playing these (and I do rarely still play roguelikes myself and sometimes use Mathics, just DCSS changed and Mathics is becoming a 'mess of Python dependencies'). From antonioleal at yahoo.com Sun Oct 12 19:05:33 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Sun, 12 Oct 2025 20:05:33 +0100 Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: References: Message-ID: <401c6999-1b7b-4f7d-92c8-5f0c82b266de@yahoo.com> I'm orphaning cutefish desktop. Juan M. Lasca orphaned them, I pick them up but never actually updated them cuz the project is somehow dead. desktop/cutefish-calculator desktop/cutefish-core desktop/cutefish-dock desktop/cutefish-filemanager desktop/cutefish-gtk-themes desktop/cutefish-icons desktop/cutefish-launcher desktop/cutefish-screenlocker desktop/cutefish-settings desktop/cutefish-statusbar desktop/cutefish-terminal desktop/cutefish-wallpapers libraries/cutefish-kwin-plugins libraries/cutefish-qt-plugins libraries/fishui libraries/libcutefish was on my conscience :-) From urchlay at slackware.uk Mon Oct 13 05:32:00 2025 From: urchlay at slackware.uk (B. Watson) Date: Mon, 13 Oct 2025 01:32:00 -0400 (EDT) Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: <401c6999-1b7b-4f7d-92c8-5f0c82b266de@yahoo.com> References: <401c6999-1b7b-4f7d-92c8-5f0c82b266de@yahoo.com> Message-ID: On Sun, 12 Oct 2025, Antonio Leal via SlackBuilds-users wrote: > I'm orphaning cutefish desktop. > > Juan M. Lasca orphaned them, I pick them up but never actually updated them > cuz the project is somehow dead. > > desktop/cutefish-calculator > desktop/cutefish-core > desktop/cutefish-dock > desktop/cutefish-filemanager > desktop/cutefish-gtk-themes > desktop/cutefish-icons > desktop/cutefish-launcher > desktop/cutefish-screenlocker > desktop/cutefish-settings > desktop/cutefish-statusbar > desktop/cutefish-terminal > desktop/cutefish-wallpapers > libraries/cutefish-kwin-plugins > libraries/cutefish-qt-plugins > libraries/fishui > libraries/libcutefish Are you going to send updates to change the name and maintainer in the .info files? I can do it on my end easily (wrote a "mass-orhpan" shell script that makes the commits), but we shouldn't both change the same build at the same time. From willysr at slackbuilds.org Mon Oct 13 06:59:17 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Mon, 13 Oct 2025 13:59:17 +0700 Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: References: <401c6999-1b7b-4f7d-92c8-5f0c82b266de@yahoo.com> Message-ID: <20251013135917.271073a7@office64.slackie.org> >> I'm orphaning cutefish desktop. >> >> Juan M. Lasca orphaned them, I pick them up but never actually >> updated them cuz the project is somehow dead. >> >> desktop/cutefish-calculator >> desktop/cutefish-core >> desktop/cutefish-dock >> desktop/cutefish-filemanager >> desktop/cutefish-gtk-themes >> desktop/cutefish-icons >> desktop/cutefish-launcher >> desktop/cutefish-screenlocker >> desktop/cutefish-settings >> desktop/cutefish-statusbar >> desktop/cutefish-terminal >> desktop/cutefish-wallpapers >> libraries/cutefish-kwin-plugins >> libraries/cutefish-qt-plugins >> libraries/fishui >> libraries/libcutefish > >Are you going to send updates to change the name and maintainer in the >.info files? I can do it on my end easily (wrote a "mass-orhpan" shell >script that makes the commits), but we shouldn't both change the same >build at the same time. he already sent github PR https://github.com/SlackBuildsOrg/slackbuilds/pulls -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From chris.willing at linux.com Mon Oct 13 22:21:42 2025 From: chris.willing at linux.com (Christoph Willing) Date: Tue, 14 Oct 2025 09:21:42 +1100 Subject: [Slackbuilds-users] Steven Voges's SlackBuilds In-Reply-To: <20251013001107.44197875@home.slackie.org> References: <2a861147-5249-4a84-b171-8a292785cf34@gmail.com> <20250924213113.399d1b4d@home.slackie.org> <3509dc5d-f97c-401e-8c3f-7caa2dd1f73e@linux.com> <20251013001107.44197875@home.slackie.org> Message-ID: <3d63f02c-28e8-453e-a1e9-8604cf1bbdd6@linux.com> On 13/10/25 04:11, Willy Sudiarto Raharjo wrote: >> Any decision yet? That email was just over two weeks ago. > > no answers yet, so consider it up for grabs now :) > I earlier asked to maintain development/Catch libraries/glfw3 libraries/nlohmann_json development/godot Consider these "grabbed" - with a small tweak: only one other SlackBuild depends on Catch but there is also a Catch2 in the repo which several other SlackBuilds depend on. The only SlackBuild depending on Catch is one of mine and I have updated it to use Catch2 i.e. development/Catch is no longer needed. I will now maintain Catch2 instead of Catch which can be removed from the repo. Updates for all these have now been submitted. chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From rizitis at gmail.com Wed Oct 15 21:05:20 2025 From: rizitis at gmail.com (=?UTF-8?B?zpnPic6szr3Ovc63z4I=?=) Date: Thu, 16 Oct 2025 00:05:20 +0300 Subject: [Slackbuilds-users] electron maintainer Message-ID: I see that the electron is orphaned, I would like to be the maintainer. If I have permission, then its better for me to create a new SlackBuild electron-bin as we are repackaging a binary file. So in the future if someone wants to build from source electron will have the electron free. From chris.willing at linux.com Thu Oct 16 02:02:54 2025 From: chris.willing at linux.com (Christoph Willing) Date: Thu, 16 Oct 2025 13:02:54 +1100 Subject: [Slackbuilds-users] electron maintainer In-Reply-To: References: Message-ID: <5157dd02-08e5-460e-895b-2e80d5882d4f@linux.com> On 16/10/25 08:05, ??????? wrote: > I see that the electron is orphaned, I would like to be the maintainer. > If I have permission, then its better for me to create a new > SlackBuild electron-bin as we are repackaging a binary file. So in the > future if someone wants to build from source electron will have the > electron free. After the occasional hoo-ha about naming of SlackBuilds for binary vs source code builds, I'd like to say how much I appreciate a maintainer aiming to "do the right thing". It's a shame when maintainers of binary packages refuse to rename a package (by adding "-bin") to make room for a SlackBuild which builds the same package from source code. For the future, could we add a criterion for new submissions requiring addition of "-bin" to the SlackBuild name when repackaging a binary download? chris From mdinon at gmail.com Thu Oct 16 02:14:40 2025 From: mdinon at gmail.com (Michael Dinon) Date: Wed, 15 Oct 2025 22:14:40 -0400 Subject: [Slackbuilds-users] electron maintainer In-Reply-To: <5157dd02-08e5-460e-895b-2e80d5882d4f@linux.com> References: <5157dd02-08e5-460e-895b-2e80d5882d4f@linux.com> Message-ID: Kind regards, Mike On Wed, Oct 15, 2025 at 10:03?PM Christoph Willing wrote: > On 16/10/25 08:05, ??????? wrote: > > I see that the electron is orphaned, I would like to be the maintainer. > > If I have permission, then its better for me to create a new > > SlackBuild electron-bin as we are repackaging a binary file. So in the > > future if someone wants to build from source electron will have the > > electron free. > > After the occasional hoo-ha about naming of SlackBuilds for binary vs > source code builds, I'd like to say how much I appreciate a maintainer > aiming to "do the right thing". > > It's a shame when maintainers of binary packages refuse to rename a > package (by adding "-bin") to make room for a SlackBuild which builds > the same package from source code. > > For the future, could we add a criterion for new submissions requiring > addition of "-bin" to the SlackBuild name when repackaging a binary > download? > > > chris > > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From 1.41421 at gmail.com Thu Oct 16 21:00:52 2025 From: 1.41421 at gmail.com (Luveh Keraph) Date: Thu, 16 Oct 2025 15:00:52 -0600 Subject: [Slackbuilds-users] Can't build VirtualBox 6.1.50 Message-ID: This is a 15.0 freshly installed, and with all the current updates, which include kernel 5.15.193, using the scripts for the purpose as obtained from slackbuilds.org. Anybody know how to fix this: /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In function ?int RTHttpSetProxy(RTHTTP, const char*, uint32_t, const char*, const char*)?: /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:2058:43: error: invalid conversion from ?long int? to ?curl_proxytype? [-fpermissive] 2058 | return rtHttpUpdateProxyConfig(pThis, CURLPROXY_HTTP, pcszProxy, uPort ? uPort : 1080, pcszProxyUser, pcszProxyPwd); | ^~~~~~~~~~~~~~ | | | long int /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:577:74: note: initializing argument 2 of ?int rtHttpUpdateProxyConfig(PRTHTTPINTERNAL, curl_proxytype, const char*, uint32_t, const char*, const char*)? 577 | static int rtHttpUpdateProxyConfig(PRTHTTPINTERNAL pThis, curl_proxytype enmProxyType, const char *pszHost, | ~~~~~~~~~~~~~~~^~~~~~~~~~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In function ?int RTHttpQueryProxyInfoForUrl(RTHTTP, const char*, PRTHTTPPROXYINFO)?: /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3569:17: warning: case value ?0? not in enumerated type ?curl_proxytype? [-Wswitch] 3569 | case CURLPROXY_HTTP: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3572:17: warning: case value ?1? not in enumerated type ?curl_proxytype? [-Wswitch] 3572 | case CURLPROXY_HTTP_1_0: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3579:17: warning: case value ?2? not in enumerated type ?curl_proxytype? [-Wswitch] 3579 | case CURLPROXY_HTTPS: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3584:17: warning: case value ?4? not in enumerated type ?curl_proxytype? [-Wswitch] 3584 | case CURLPROXY_SOCKS4: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3588:17: warning: case value ?5? not in enumerated type ?curl_proxytype? [-Wswitch] 3588 | case CURLPROXY_SOCKS5: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3585:17: warning: case value ?6? not in enumerated type ?curl_proxytype? [-Wswitch] 3585 | case CURLPROXY_SOCKS4A: | ^~~~ /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3589:17: warning: case value ?7? not in enumerated type ?curl_proxytype? [-Wswitch] 3589 | case CURLPROXY_SOCKS5_HOSTNAME: | ^~~~ kmk: *** [/tmp/SBo/VirtualBox-6.1.50/kBuild/footer-pass2-compiling-targets.kmk:277: /tmp/SBo/VirtualBox-6.1.50/out/linux.amd64/release/obj/VBoxRT/generic/http-curl.o] Error 1 kmk: *** Waiting for unfinished jobs.... CXX VBoxRT - {C}/src/VBox/Runtime/common/misc/s3.cpp CXX VBoxRT - {C}/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp kmk: *** Exiting with status 2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From fernando.lopezjr at gmail.com Thu Oct 16 21:18:02 2025 From: fernando.lopezjr at gmail.com (Fernando Lopez) Date: Thu, 16 Oct 2025 17:18:02 -0400 Subject: [Slackbuilds-users] Can't build VirtualBox 6.1.50 In-Reply-To: References: Message-ID: I usually download the installer from oracle, try it out. ------------ Regards, Fernando Lopez Jr. On Thu, Oct 16, 2025, 5:08?PM Luveh Keraph <1.41421 at gmail.com> wrote: > This is a 15.0 freshly installed, and with all the current updates, which > include kernel 5.15.193, using the scripts for the purpose as obtained from > slackbuilds.org. Anybody know how to fix this: > > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In > function ?int RTHttpSetProxy(RTHTTP, const char*, uint32_t, const char*, > const char*)?: > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:2058:43: > error: invalid conversion from ?long int? to ?curl_proxytype? [-fpermissive] > 2058 | return rtHttpUpdateProxyConfig(pThis, CURLPROXY_HTTP, > pcszProxy, uPort ? uPort : 1080, pcszProxyUser, pcszProxyPwd); > | ^~~~~~~~~~~~~~ > | | > | long int > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:577:74: > note: initializing argument 2 of ?int > rtHttpUpdateProxyConfig(PRTHTTPINTERNAL, curl_proxytype, const char*, > uint32_t, const char*, const char*)? > 577 | static int rtHttpUpdateProxyConfig(PRTHTTPINTERNAL pThis, > curl_proxytype enmProxyType, const char *pszHost, > | > ~~~~~~~~~~~~~~~^~~~~~~~~~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In > function ?int RTHttpQueryProxyInfoForUrl(RTHTTP, const char*, > PRTHTTPPROXYINFO)?: > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3569:17: > warning: case value ?0? not in enumerated type ?curl_proxytype? [-Wswitch] > 3569 | case CURLPROXY_HTTP: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3572:17: > warning: case value ?1? not in enumerated type ?curl_proxytype? [-Wswitch] > 3572 | case CURLPROXY_HTTP_1_0: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3579:17: > warning: case value ?2? not in enumerated type ?curl_proxytype? [-Wswitch] > 3579 | case CURLPROXY_HTTPS: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3584:17: > warning: case value ?4? not in enumerated type ?curl_proxytype? [-Wswitch] > 3584 | case CURLPROXY_SOCKS4: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3588:17: > warning: case value ?5? not in enumerated type ?curl_proxytype? [-Wswitch] > 3588 | case CURLPROXY_SOCKS5: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3585:17: > warning: case value ?6? not in enumerated type ?curl_proxytype? [-Wswitch] > 3585 | case CURLPROXY_SOCKS4A: > | ^~~~ > /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3589:17: > warning: case value ?7? not in enumerated type ?curl_proxytype? [-Wswitch] > 3589 | case CURLPROXY_SOCKS5_HOSTNAME: > | ^~~~ > kmk: *** > [/tmp/SBo/VirtualBox-6.1.50/kBuild/footer-pass2-compiling-targets.kmk:277: > /tmp/SBo/VirtualBox-6.1.50/out/linux.amd64/release/obj/VBoxRT/generic/http-curl.o] > Error 1 > kmk: *** Waiting for unfinished jobs.... > CXX VBoxRT - {C}/src/VBox/Runtime/common/misc/s3.cpp > CXX VBoxRT - > {C}/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp > kmk: *** Exiting with status 2 > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From 1.41421 at gmail.com Thu Oct 16 21:38:11 2025 From: 1.41421 at gmail.com (Luveh Keraph) Date: Thu, 16 Oct 2025 15:38:11 -0600 Subject: [Slackbuilds-users] Can't build VirtualBox 6.1.50 In-Reply-To: References: Message-ID: Thanks. I was wondering though whether there is something broken in the VirtualBox build scripts in Slackbuilds.org. On Thu, Oct 16, 2025 at 3:18?PM Fernando Lopez wrote: > I usually download the installer from oracle, try it out. > > > ------------ > Regards, > Fernando Lopez Jr. > > On Thu, Oct 16, 2025, 5:08?PM Luveh Keraph <1.41421 at gmail.com> wrote: > >> This is a 15.0 freshly installed, and with all the current updates, which >> include kernel 5.15.193, using the scripts for the purpose as obtained from >> slackbuilds.org. Anybody know how to fix this: >> >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In >> function ?int RTHttpSetProxy(RTHTTP, const char*, uint32_t, const char*, >> const char*)?: >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:2058:43: >> error: invalid conversion from ?long int? to ?curl_proxytype? [-fpermissive] >> 2058 | return rtHttpUpdateProxyConfig(pThis, CURLPROXY_HTTP, >> pcszProxy, uPort ? uPort : 1080, pcszProxyUser, pcszProxyPwd); >> | ^~~~~~~~~~~~~~ >> | | >> | long int >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:577:74: >> note: initializing argument 2 of ?int >> rtHttpUpdateProxyConfig(PRTHTTPINTERNAL, curl_proxytype, const char*, >> uint32_t, const char*, const char*)? >> 577 | static int rtHttpUpdateProxyConfig(PRTHTTPINTERNAL pThis, >> curl_proxytype enmProxyType, const char *pszHost, >> | >> ~~~~~~~~~~~~~~~^~~~~~~~~~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp: In >> function ?int RTHttpQueryProxyInfoForUrl(RTHTTP, const char*, >> PRTHTTPPROXYINFO)?: >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3569:17: >> warning: case value ?0? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3569 | case CURLPROXY_HTTP: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3572:17: >> warning: case value ?1? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3572 | case CURLPROXY_HTTP_1_0: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3579:17: >> warning: case value ?2? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3579 | case CURLPROXY_HTTPS: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3584:17: >> warning: case value ?4? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3584 | case CURLPROXY_SOCKS4: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3588:17: >> warning: case value ?5? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3588 | case CURLPROXY_SOCKS5: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3585:17: >> warning: case value ?6? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3585 | case CURLPROXY_SOCKS4A: >> | ^~~~ >> /tmp/SBo/VirtualBox-6.1.50/src/VBox/Runtime/generic/http-curl.cpp:3589:17: >> warning: case value ?7? not in enumerated type ?curl_proxytype? [-Wswitch] >> 3589 | case CURLPROXY_SOCKS5_HOSTNAME: >> | ^~~~ >> kmk: *** >> [/tmp/SBo/VirtualBox-6.1.50/kBuild/footer-pass2-compiling-targets.kmk:277: >> /tmp/SBo/VirtualBox-6.1.50/out/linux.amd64/release/obj/VBoxRT/generic/http-curl.o] >> Error 1 >> kmk: *** Waiting for unfinished jobs.... >> CXX VBoxRT - {C}/src/VBox/Runtime/common/misc/s3.cpp >> CXX VBoxRT - >> {C}/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp >> kmk: *** Exiting with status 2 >> _______________________________________________ >> SlackBuilds-users mailing list >> SlackBuilds-users at slackbuilds.org >> https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users >> Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ >> FAQ - https://slackbuilds.org/faq/ >> >> _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Fri Oct 17 06:24:20 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Fri, 17 Oct 2025 13:24:20 +0700 Subject: [Slackbuilds-users] Can't build VirtualBox 6.1.50 In-Reply-To: References: Message-ID: <20251017132420.22a9b6c9@office64.slackie.org> > Thanks. I was wondering though whether there is something broken in > the >VirtualBox build scripts in Slackbuilds.org. It has been fixed by Ponce https://git.slackbuilds.org/slackbuilds/commit/?id=05578a822 -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From 1.41421 at gmail.com Fri Oct 17 19:26:16 2025 From: 1.41421 at gmail.com (Luveh Keraph) Date: Fri, 17 Oct 2025 13:26:16 -0600 Subject: [Slackbuilds-users] Can't build VirtualBox 6.1.50 In-Reply-To: <20251017132420.22a9b6c9@office64.slackie.org> References: <20251017132420.22a9b6c9@office64.slackie.org> Message-ID: Thanks; that does fix it indeed. On Fri, Oct 17, 2025 at 12:24?AM Willy Sudiarto Raharjo < willysr at slackbuilds.org> wrote: > > Thanks. I was wondering though whether there is something broken in > > the > >VirtualBox build scripts in Slackbuilds.org. > > It has been fixed by Ponce > https://git.slackbuilds.org/slackbuilds/commit/?id=05578a822 > > > -- > Willy Sudiarto Raharjo > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Sat Oct 18 02:20:08 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 18 Oct 2025 09:20:08 +0700 Subject: [Slackbuilds-users] Updates - 20251018.1 Message-ID: <20251018092008.25c68484@home.slackie.org> Sat Oct 18 02:06:52 UTC 2025 academic/plus42: Updated for version 1.3.10f academic/reduce-algebra: Use NOEMAIL for orphaned build. academic/rpy2/Upgraded to version 3.6.4 academic/x48ng: Added (vintage emulator). academic/zotero: Updated for version 7.0.27. audio/dopamine-bin: Updated for version 3.0.0.40 audio/ocenaudio-bin: Updated for version 3.16.1 desktop/SiriKali: Updated for version 1.8.4. desktop/artix-backgrounds: Use NOEMAIL for orphaned build. desktop/awf: Updated for version 3.2.0. desktop/cutefish-calculator: orphaned desktop/cutefish-core: orphaned desktop/cutefish-dock: orphaned desktop/cutefish-filemanager: orphaned desktop/cutefish-gtk-themes: orphaned desktop/cutefish-icons: orphaned desktop/cutefish-kwin-plugins: orphaned desktop/cutefish-launcher: orphaned desktop/cutefish-qt-plugins: orphaned desktop/cutefish-screenlocker: orphaned desktop/cutefish-settings: orphaned desktop/cutefish-statusbar: orphaned desktop/cutefish-terminal: orphaned desktop/cutefish-wallpapers: orphaned desktop/plasma5-themes-breath-migration: Use NOEMAIL. desktop/plasma5-themes-breath: Use NOEMAIL for orphaned build. desktop/sddm-theme-artix: Use NOEMAIL for orphaned build. desktop/slbar: Use NOEMAIL for orphaned build. desktop/standard-notes-bin: Added (notes app). development/Catch2: New maintainer. Updated for version 3.11.0 development/Kiro: Update README. development/SQLAlchemy: Updated for version 2.0.44. development/android-studio-for-platform: Added (IDE for Android OS). development/bazel: Use NOEMAIL for orphaned build. development/claude-code: Updated for version 2.0.14 development/cursor: Added (AI-assisted IDE). development/electron: Use NOEMAIL for orphaned build. development/git-lfs: Updated for version 3.7.1. development/github-cli: Updated for version 2.82.0. development/godot: Updated for version 4.5 + new maintainer development/google-go-lang: Updated for version 1.24.9. development/jupyter-ipykernel: Update README development/jupyter-nbclassic: Use NOEMAIL for orphaned build. development/kForth-64: Updated for version 0.5.1 development/lm-studio-bin: Updated for version 0.3.30.1 development/mongodb-shell: Updated for version 2.5.8. development/pgmodeler: Updated for version 1.2.1. development/poedit: Remove unused option. development/poedit: Updated for version 3.8. development/postman: Updated for version 11.67.0 development/pycharm: Orphaned. development/sourcegit: Updated for version 2025.36 development/vscodium: Updated for version 1.105.06808. development/witsy: Updated for version 3.0.2 development/zxbasic: Updated for version 1.18.3 development/zxbasicstudio: Updated for version 1.6 games/scid: Use NOEMAIL for orphaned build. gis/Fiona: Use NOEMAIL for orphaned build. gis/cligj: Use NOEMAIL for orphaned build. graphics/converseen: Updated for version 0.15.1.0. libraries/SDL3: Added (Simple DirectMedia Layer Version 3). libraries/aqbanking: Updated for version 6.7.4beta. libraries/cppzmq: Updated for version 4.11.0 libraries/fishui: orphaned libraries/glfw3: New maintainer libraries/gtk-fortran: Orphaned libraries/gwenhywfar: Updated for version 5.13.0. libraries/libasr: Orphaned. libraries/libcutefish: orphaned libraries/libgnomecups: Use NOEMAIL for orphaned build. libraries/liblzf: Use NOEMAIL for orphaned build. libraries/libminizip: Update README libraries/nlohmann_json: New maintainer. Upgraded for version 3.11.3 libraries/soci: Use NOEMAIL for orphaned build. libraries/xapp: Updated for version 3.0.1 misc/cliphist: Updated for version 0.7.0. multimedia/MuseScore: Updated for version 4.6.2 multimedia/beets: Updated for version 2.5.1. multimedia/kodi: Fix for curl >= 8.16.0. multimedia/opera-ffmpeg-codecs: Orphaned. multimedia/plexmediaserver: Updated for version 1.42.2.10156_f737b826c. multimedia/subtitleeditor: Updated for version 0.55.0, cleanups. network/SoulseekQt: Use NOEMAIL for orphaned build. network/UDR: Use NOEMAIL for orphaned build. network/amneziawg-kernel: Updated for version 1.0.20251009. network/bitcoin: Updated for version 29.2. network/brave-browser: Updated for version 1.83.118. network/cowpatty: Use NOEMAIL for orphaned build. network/gallery-dl: Updated for version 1.30.10. network/gotty: Added (Share terminal as web app). network/librewolf: Updated for version 144.0_1 network/mullvadvpn-app: Updated for version 2025.10. network/newsboat: Fix for curl >= 8.16.0. network/noss: Updated for version 1.10. network/onedrive/Upgraded to version 2.5.7 network/openvswitch-utils: Updated for version 3.3.6. network/opera: Orphaned. network/owncloud-client: Use NOEMAIL for orphaned build. network/pidgin-extprefs: Use NOEMAIL for orphaned build. network/rustdesk: Fix MD5SUM. network/rustdesk: Updated for version 1.4.3. network/signal-desktop: Updated for version 7.75.1. network/skype4pidgin: Use NOEMAIL for orphaned build. network/tailscale: Updated for version 1.88.4. network/teamviewer: Updated for version 15.70.6. network/telegram: Updated for version 6.2.3. network/waterfox: Updated for version 6.6.4 network/webex: Updated for version 45.10.0.33234 network/yt-dlp-bin: Updated for version 2025.10.14. network/yt-dlp: Updated for version 2025.10.14. office/LibreOffice: Updated for version 25.8.2.2 office/apvlv: Use NOEMAIL for orphaned build. office/onlyoffice-desktopeditors: Updated for version 9.1.0 office/openoffice.org: Orphaned. office/qownnotes: Updated for version 25.10.2. office/trello-cli: Use NOEMAIL for orphaned build. perl/perl-Device-SerialPort: Use NOEMAIL for orphaned build. perl/perl-Email-Date-Format: Use NOEMAIL for orphaned build. perl/perl-Log-Message-Simple: Use NOEMAIL for orphaned build. perl/perl-Log-Message: Use NOEMAIL for orphaned build. perl/perl-MIME-Lite: Use NOEMAIL for orphaned build. perl/perl-Math-Complex_C-L: Use NOEMAIL for orphaned build. perl/perl-Math-Complex_C-Q: Use NOEMAIL for orphaned build. perl/perl-Math-Complex_C: Use NOEMAIL for orphaned build. perl/perl-Math-Decimal64: Use NOEMAIL for orphaned build. perl/perl-Math-GMPf: Use NOEMAIL for orphaned build. perl/perl-Math-LongDouble: Use NOEMAIL for orphaned build. perl/perl-Module-Pluggable: Use NOEMAIL for orphaned build. perl/perl-Module-ScanDeps: Use NOEMAIL for orphaned build. perl/perl-Object-Accessor: Use NOEMAIL for orphaned build. perl/perl-Sys-Mmap: Use NOEMAIL for orphaned build. perl/perl-Term-UI: Use NOEMAIL for orphaned build. perl/perl-Test-Number-Delta: Use NOEMAIL for orphaned build. perl/perl-Text-Iconv: Use NOEMAIL for orphaned build. python/GeoIP-Python: Use NOEMAIL for orphaned build. python/jdcal: Use NOEMAIL for orphaned build. python/jellyfish: Updated for version 1.2.1. python/josepy: Updated for version 2.2.0. python/munch: Use NOEMAIL for orphaned build. python/python2-nuitka: Updated for version 2.8.1 python/python3-aiohttp: Updated for version 3.13.0. python/python3-bitarray: Updated for version 3.7.2. python/python3-boto3: Use NOEMAIL for orphaned build. python/python3-frozenlist: Updated for version 1.8.0. python/python3-h5py: Use NOEMAIL for orphaned build. python/python3-multidict: Updated for version 6.7.0. python/python3-narwhals: Update for 2.8.0 python/python3-nuitka: Updated for version 2.8.1 python/python3-odfdo: Updated for version 3.17.0 python/python3-passlib: Updated for version 1.9.3. python/python3-propcache: Updated for version 0.4.1. python/python3-pydantic-core: Updated for version 2.41.4. python/python3-pydantic: Updated for version 2.12.2. python/python3-pydantic: Updated for version 2.12.3. python/python3-pyudev: Update for 0.24.4 python/python3-uv_build: Updated for version 0.9.3. python/python3-yarl: Updated for version 1.22.0. ruby/3llo: Use NOEMAIL for orphaned build. ruby/tty-prompt: Use NOEMAIL for orphaned build. system/B-em: Updated for version 20251010_0b6f1d2 system/android-file-transfer: Use NOEMAIL for orphaned build. system/brlaser: Updated for version 20251013_9bfea99. system/brother-hll2400d-cups: Added (Brother printer driver). system/doublecmd-qt5: Updated for version 1.1.29 system/drbd-utils: Updated for version 9.32.0. system/intelmas: Use NOEMAIL for orphaned build. system/limine: Updated for version 10.1.1 system/netdata: Updated for version 2.7.2. system/partclone: Updated for version 0.3.38 system/sunflower: Use NOEMAIL for orphaned build. system/virtualbox: Fix for curl >= 8.16.0. system/xen: Updated for version 4.20.1. system/yelp-xsl: Updated for version 49.0. system/yq: Updated for version 4.48.1. +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From hedgehog87 at hotmail.it Sun Oct 19 09:20:26 2025 From: hedgehog87 at hotmail.it (Cristiano Urban) Date: Sun, 19 Oct 2025 11:20:26 +0200 Subject: [Slackbuilds-users] MAINTAINER and EMAIL for orphaned builds In-Reply-To: <20251013135917.271073a7@office64.slackie.org> Message-ID: An HTML attachment was scrubbed... URL: From list+sbo at vahedi.org Mon Oct 20 10:08:21 2025 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Mon, 20 Oct 2025 10:08:21 +0000 Subject: [Slackbuilds-users] Updates - 20251018.1 In-Reply-To: <20251018092008.25c68484@home.slackie.org> References: <20251018092008.25c68484@home.slackie.org> Message-ID: <28659bc06471aec22369f944c12ecbf220702c2f@vahedi.org> October 18, 2025, "Willy Sudiarto Raharjo" wrote: > Sat Oct 18 02:06:52 UTC 2025 > ... > libraries/nlohmann_json: New maintainer. Upgraded for version 3.11.3 The build fails with: json-3.11.3/wsjcpp.yml patching file tests/src/unit-allocator.cpp Hunk #1 FAILED at 20. 1 out of 1 hunk FAILED -- saving rejects to file tests/src/unit-allocator.cpp.rej patching file tests/src/unit-regression2.cpp Reversed (or previously applied) patch detected! Assume -R? [n] Apply anyway? [n] Skipping patch. 1 out of 1 hunk ignored -- saving rejects to file tests/src/unit-regression2.cpp.rej It seems both patches [1] are already applied in v3.11.3. Skipping the patching step leads to a successfull installation. -Shahab [1] patches/1_6cec5aefc97ad219b6fd5a4132f88f7c8f6800ee.patch patches/2_660d0b58565073975d6f5d94365d6cbf150a4cf8.patch From chris.willing at linux.com Mon Oct 20 12:09:52 2025 From: chris.willing at linux.com (Christoph Willing) Date: Mon, 20 Oct 2025 23:09:52 +1100 Subject: [Slackbuilds-users] Updates - 20251018.1 In-Reply-To: <28659bc06471aec22369f944c12ecbf220702c2f@vahedi.org> References: <20251018092008.25c68484@home.slackie.org> <28659bc06471aec22369f944c12ecbf220702c2f@vahedi.org> Message-ID: On 20/10/25 21:08, Shahab Vahedi via SlackBuilds-users wrote: > October 18, 2025, "Willy Sudiarto Raharjo" wrote: > > >> Sat Oct 18 02:06:52 UTC 2025 >> ... >> libraries/nlohmann_json: New maintainer. Upgraded for version 3.11.3 > > The build fails with: > > json-3.11.3/wsjcpp.yml > patching file tests/src/unit-allocator.cpp > Hunk #1 FAILED at 20. > 1 out of 1 hunk FAILED -- saving rejects to file > tests/src/unit-allocator.cpp.rej > patching file tests/src/unit-regression2.cpp > Reversed (or previously applied) patch detected! Assume -R? [n] > Apply anyway? [n] > Skipping patch. > 1 out of 1 hunk ignored -- saving rejects to file > tests/src/unit-regression2.cpp.rej > > It seems both patches [1] are already applied in v3.11.3. > Skipping the patching step leads to a successfull installation. > There are no patches in the official SlackBuild. It looks like there were patches for previous versions in Ponces repo (which I guess you're using) that haven't been removed yet. I've made a request to fix this at the "SBo scripts not building on current" thread at LQ. chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From list+sbo at vahedi.org Mon Oct 20 12:43:54 2025 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Mon, 20 Oct 2025 14:43:54 +0200 (GMT+02:00) Subject: [Slackbuilds-users] Updates - 20251018.1 In-Reply-To: References: <20251018092008.25c68484@home.slackie.org> <28659bc06471aec22369f944c12ecbf220702c2f@vahedi.org> Message-ID: <336db763-ee53-4875-b684-c6ce09f867ec@vahedi.org> Oct 20, 2025, Christoph Willing: > There are no patches in the official SlackBuild. > > It looks like there were patches for previous versions in Ponces repo (which I guess you're using) that haven't been removed yet. I've made a request to fix this at the "SBo scripts not building on current" thread at LQ. Right! I am using Ponce's repo. I should have notified the right thread [1]. -Shahab [1] https://www.linuxquestions.org/questions/slackware-14/sbo-scripts-not-building-on-current-read-1st-post-pls-4175561999/ From s.arcus at open-t.co.uk Tue Oct 21 08:12:31 2025 From: s.arcus at open-t.co.uk (Sebastian Arcus) Date: Tue, 21 Oct 2025 09:12:31 +0100 Subject: [Slackbuilds-users] krb5 removed from SBo, but still needed by Samba components Message-ID: <0ecffc11-502e-dc21-6cdd-72a13f3d0f53@open-t.co.uk> I've searched around on this mailing list and through the changelogs about this issue but have drawn a blank so far. I am guessing (but could be wrong) that krb5 has been removed from SBo because Samba uses now its internal Kerberos code instead of the external MIT Kerberos. However, the dhcp-dyndns.sh script provided by Samba at the link below, which acts as glue between dhcpd, Samba and Bind in Active Directory setups, still uses the "klist" and "kinit" commands, which are provided by the krb5 package. Anyone here knows if: 1. Any other package can provide "klist" or "kinit" for the above script 2. Or the Kerberos package has been merged into a different one at SBo 3. Or the above is all incorrect and there is something else going on which could help The Samba script is here: https://wiki.samba.org/index.php/Configure_DHCP_to_update_DNS_records Any info on the above much appreciated From s.arcus at open-t.co.uk Tue Oct 21 08:58:00 2025 From: s.arcus at open-t.co.uk (Sebastian Arcus) Date: Tue, 21 Oct 2025 09:58:00 +0100 Subject: [Slackbuilds-users] krb5 removed from SBo, but still needed by Samba components In-Reply-To: <0ecffc11-502e-dc21-6cdd-72a13f3d0f53@open-t.co.uk> References: <0ecffc11-502e-dc21-6cdd-72a13f3d0f53@open-t.co.uk> Message-ID: <45ad2c81-e596-4b3b-78a9-ae3e87331ec2@open-t.co.uk> On 21/10/2025 09:12, Sebastian Arcus wrote: > I've searched around on this mailing list and through the changelogs > about this issue but have drawn a blank so far. I am guessing (but could > be wrong) that krb5 has been removed from SBo because Samba uses now its > internal Kerberos code instead of the external MIT Kerberos. However, > the dhcp-dyndns.sh script provided by Samba at the link below, which > acts as glue between dhcpd, Samba and Bind in Active Directory setups, > still uses the "klist" and "kinit" commands, which are provided by the > krb5 package. Anyone here knows if: > > 1. Any other package can provide "klist" or "kinit" for the above script > > 2. Or the Kerberos package has been merged into a different one at SBo > > 3. Or the above is all incorrect and there is something else going on > which could help > > The Samba script is here: > > https://wiki.samba.org/index.php/Configure_DHCP_to_update_DNS_records > > Any info on the above much appreciated Answering my own post - with apologies for the noise. I searched earlier in the mainline repo and I'm not sure how I missed the package there. It has indeed been moved to mainline Slackware From milgram at cgpp.com Wed Oct 22 14:46:01 2025 From: milgram at cgpp.com (J. Milgram) Date: Wed, 22 Oct 2025 10:46:01 -0400 Subject: [Slackbuilds-users] GPG key issue Message-ID: Hello, Forgive me, this may be more of a gpg question, but it's relevant. I was just upgrading a SlackBuild (signal-desktop, if it matters) and /usr/sbin/sboupgrade (sbotools 3.8.1) tells me: The public key for GPG verification is missing. Searching by keyid 0368EF579C7BA3B6... (1)? ? ?SlackBuilds.org Development Team ? ? ? ? ? 1024 bit DSA key 9C7BA3B6, created: 2007-01-27 Download and add this key? [n] Huh? - I already have this? key? on my public keyring. So? I respond "n" and it tells me: The contents of CHECKSUMS.md5 have been altered. Please run sbocheck. ... and exits with a "4" (failed md5sum verify, per the man page.) Never saw this before during many upgrades. So I ran sbocheck and a short way in it stops and gives me the same message about the public key missing. I respond "n" and it proceeds and produces a long list of things that need to be upgraded. Including sbotools which is now at 4.0. But I want to make sure things make sense with the key before I proceed. I figure for something like SlackBuilds I shouldn't ignore GPG key issues. I do have that public key (1024D/9C7BA3B6) on my keyring. It has always been found before. gpg --with-fingerprint --list-keys shows it with the same key ID, same fingerprint and email address as the one at https://www.slackbuilds.org/GPG-KEY. Fingerprint is: D307 6BC3 E783 EE74 7F09? B8B7 0368 EF57 9C7B A3B6 So why is it telling me that it? can't find the key? Can I write this off as some sort of gpg (or gpg-user) oddity? Or has something about the key changed? Should I let sboupgrade download and add the key again? Might upgrading sbotools straighten everything out? I guess I'd have to do it manually, but that's OK. Just realized that I'm running gpg 1, though gpg 2 is also installed (it's a Slack 15.0? system) - could that be the issue? Do I need to reconfigure sbotools somehow to use gpg2? Sorry for the rather inconcise question... thanks! Judah -- ===== milgram at cgpp.com 301-257-7069 -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_0x6E4882672D90BBD4.asc Type: application/pgp-keys Size: 2440 bytes Desc: OpenPGP public key URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 665 bytes Desc: OpenPGP digital signature URL: From mm at dorfdsl.de Wed Oct 22 15:13:39 2025 From: mm at dorfdsl.de (Marco Moock) Date: Wed, 22 Oct 2025 17:13:39 +0200 Subject: [Slackbuilds-users] GPG key issue In-Reply-To: References: Message-ID: <20251022171339.0b60551a@ryz.dorfdsl.de> Am 22.10.2025 um 10:46:01 Uhr schrieb J. Milgram: > Huh? - I already have this? key? on my public keyring. So? I respond > "n" and it tells me: Which keyring? Of your own user? When running as root, I assume root's keyring will be used. -- Gru? Marco Send unsolicited bulk mail to 1761122761muell at cartoonies.org -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: Digitale Signatur von OpenPGP URL: From milgram at cgpp.com Wed Oct 22 17:01:11 2025 From: milgram at cgpp.com (J. Milgram) Date: Wed, 22 Oct 2025 13:01:11 -0400 Subject: [Slackbuilds-users] GPG key issue In-Reply-To: <20251022171339.0b60551a@ryz.dorfdsl.de> References: <20251022171339.0b60551a@ryz.dorfdsl.de> Message-ID: <8da3e4aa-92b2-434c-9936-282052863bc3@cgpp.com> Oh, that's a good point! Thanks. So I became root and found that indeed root does *not* have the required key. I'm baffled as to how sboupgrade & friends could have worked so well for so long (a few years, many upgrades) without root having the correct key, and what changed to make it stop working. Curious, but maybe I don't need to know everything :) Sounds like what I need to do is run as root and let sboupgrade download the correct key. So here we go: /usr/sbin/sboupgrade signal-desktop ... ... wanted sbocheck run first. That downloaded the key. Then: ... run it again, and it works as advertised. Installs, runs perfectly. So other than the mystery about the gpg key, I'm all set. Thanks for the help! regards, Judah On 10/22/25 11:13, Marco Moock wrote: > Am 22.10.2025 um 10:46:01 Uhr schrieb J. Milgram: > >> Huh? - I already have this? key? on my public keyring. So? I respond >> "n" and it tells me: > Which keyring? > Of your own user? > > When running as root, I assume root's keyring will be used. > > > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > -- ===== milgram at cgpp.com 301-257-7069 From milgram at cgpp.com Wed Oct 22 17:02:51 2025 From: milgram at cgpp.com (J. Milgram) Date: Wed, 22 Oct 2025 13:02:51 -0400 Subject: [Slackbuilds-users] GPG key issue In-Reply-To: <8da3e4aa-92b2-434c-9936-282052863bc3@cgpp.com> References: <20251022171339.0b60551a@ryz.dorfdsl.de> <8da3e4aa-92b2-434c-9936-282052863bc3@cgpp.com> Message-ID: <6bdc40b7-9f88-49bc-92e1-63dc433a15d1@cgpp.com> And of course, I have to figure out why this message was duplicated ... sorry about that. JM On 10/22/25 13:01, J. Milgram wrote: > > Oh, that's a good point! Thanks. > > So I became root and found that indeed root does *not* have the > required key. > > I'm baffled as to how sboupgrade & friends could have worked so well > for so long (a few years, many upgrades) without root having the > correct key, and what changed to make it stop working. > > Curious, but maybe I don't need to know everything :) > > Sounds like what I need to do is run as root and let sboupgrade > download the correct key. So here we go: > > /usr/sbin/sboupgrade signal-desktop ... > > ... wanted sbocheck run first. That downloaded the key. Then: > > ... run it again, and it works as advertised. > > Installs, runs perfectly. So other than the mystery about the gpg key, > I'm all set. Thanks for the help! > > regards, > > Judah > > > On 10/22/25 11:13, Marco Moock wrote: >> Am 22.10.2025 um 10:46:01 Uhr schrieb J. Milgram: >> >>> Huh? - I already have this? key? on my public keyring. So? I respond >>> "n" and it tells me: >> Which keyring? >> Of your own user? >> >> When running as root, I assume root's keyring will be used. >> >> >> _______________________________________________ >> SlackBuilds-users mailing list >> SlackBuilds-users at slackbuilds.org >> https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users >> Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ >> FAQ - https://slackbuilds.org/faq/ >> > -- ===== milgram at cgpp.com 301-257-7069 From urchlay at slackware.uk Wed Oct 22 19:40:26 2025 From: urchlay at slackware.uk (B. Watson) Date: Wed, 22 Oct 2025 15:40:26 -0400 (EDT) Subject: [Slackbuilds-users] yt-dlp and python woes Message-ID: As of last night, google changed something on youtube that prevents yt-dlp from working. We have the latest release (2025.10.14), so it's not just a matter of a version upgrade for us. I found that adding this to the yt-dlp command line at least allows some videos to be downloaded: --extractor-args="youtube:player-client=android_vr" We have a worse problem that's specific to Slackware: in the latest yt-dlp git, the devs have dropped support for python 3.9. It's not just a matter of a version check: they have started using python3 syntax that got introduced in 3.10. The yt-dlp precompiled binaries (as used by our yt-dlp-bin) include their own python interpreters, so they will continue to work on 15.0. Starting with the next yt-dlp-bin update, everyone who's been using yt-dlp should switch to yt-dlp-bin. Unfortunately there is no precompiled 32-bit x86 binary, so if you're still using i586/i686, you'll be stuck with yt-dlp 2025.10.14, which is already outdated and will eventually stop working entirely. Since python 3.9 has been officially EOLed as of October 2025, we're going to run into other software that can't be updated. It may even be worth the headache of having a newer python on SBo, to be installed in /opt, but that opens a large can of worms due to python modules... From didier at slint.fr Wed Oct 22 20:41:49 2025 From: didier at slint.fr (Didier Spaier) Date: Wed, 22 Oct 2025 22:41:49 +0200 Subject: [Slackbuilds-users] yt-dlp and python woes In-Reply-To: References: Message-ID: <17b0286c-a1f7-42fa-a797-20b66b30c322@slint.fr> On 10/22/25 21:40, B. Watson wrote: > > As of last night, google changed something on youtube that prevents > yt-dlp from working. > > We have the latest release (2025.10.14), so it's not just a matter of > a version upgrade for us. > > I found that adding this to the yt-dlp command line at least allows > some videos to be downloaded: > > --extractor-args="youtube:player-client=android_vr" > > We have a worse problem that's specific to Slackware: in the latest > yt-dlp git, the devs have dropped support for python 3.9. It's not > just a matter of a version check: they have started using python3 > syntax that got introduced in 3.10. > > The yt-dlp precompiled binaries (as used by our yt-dlp-bin) include > their own python interpreters, so they will continue to work on 15.0. > > Starting with the next yt-dlp-bin update, everyone who's been > using yt-dlp should switch to yt-dlp-bin. Unfortunately there is no > precompiled 32-bit x86 binary, so if you're still using i586/i686, > you'll be stuck with yt-dlp 2025.10.14, which is already outdated and > will eventually stop working entirely. > > Since python 3.9 has been officially EOLed as of October 2025, we're > going to run into other software that can't be updated. It may even be > worth the headache of having a newer python on SBo, to be installed in > /opt, but that opens a large can of worms due to python modules... Thanks for the heads-up. I have forwarded your email to the Slint mailing list. As an aside I already build yt-dlp against python 3.11, as I already do for Orca and its deps (we have 3.11 it alongside 3.9, not in /opt), no fun. Indeed more problems will appear soon. And I do not expect a new Slackware release including newer python (and gibc, while we are at it) any time soon... Cheers, Didier From urchlay at slackware.uk Wed Oct 22 21:03:57 2025 From: urchlay at slackware.uk (B. Watson) Date: Wed, 22 Oct 2025 17:03:57 -0400 (EDT) Subject: [Slackbuilds-users] yt-dlp release Message-ID: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> Right after I sent my email about yt-dlp, the yt-dlp github showed a new release... So what I said in my previous email is happening now: yt-dlp cannot be updated past 2025.10.14, but yt-dlp-can (and I'm doing so right now). If you are running yt-dlp, you should switch to yt-dlp-bin after this week's SBo update. If you want to upgrade to 2025.10.22 *now*, you can get the x86_64 "source" from here: https://github.com/yt-dlp/yt-dlp/releases/download/2025.10.22/yt-dlp_linux Or if you use aarch64, here: https://github.com/yt-dlp/yt-dlp/releases/download/2025.10.14/yt-dlp_linux_aarch64 ...and run yt-dlp-bin.SlackBuild with VERSION="2025.10.14" in the environment. If you're on 32-bit x86, you're out of luck for now. From kvngncrlsn at gmail.com Wed Oct 22 23:43:24 2025 From: kvngncrlsn at gmail.com (K. Eugene Carlson) Date: Thu, 23 Oct 2025 08:43:24 +0900 Subject: [Slackbuilds-users] GPG key issue In-Reply-To: <8da3e4aa-92b2-434c-9936-282052863bc3@cgpp.com> References: <20251022171339.0b60551a@ryz.dorfdsl.de> <8da3e4aa-92b2-434c-9936-282052863bc3@cgpp.com> Message-ID: Perhaps a GPG-related variable is set in your user's environment but not root's environment, or vice versa. That would make "su -" relevant. > > I'm baffled as to how sboupgrade & friends could have worked so well for > so long (a few years, many upgrades) without root having the correct > key, and what changed to make it stop working. > > Curious, but maybe I don't need to know everything :) > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From belka at caraus.de Thu Oct 23 14:33:10 2025 From: belka at caraus.de (Eugen Wissner) Date: Thu, 23 Oct 2025 16:33:10 +0200 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> Message-ID: Hello, just to let the list know. I had the same problem with kitty that requires newer Python as well. So I have a private python3.12 build for Slackware 15.0 in my repository: https://git.caraus.tech/OSS/slackbuilds/src/branch/master/python3.12 That hasn't helped with kitty that also depends on newer versions of other C things, that are not available in Slackware stable. But I was planning to move the package to SBo after finishing another project I'm working on. The problem is ofcause other Python dependencies, yt-dlp has further Python dependencies besides Python itself. Best regards Eugen On Wed Oct 22, 2025 at 11:03 PM CEST, B. Watson wrote: > > Right after I sent my email about yt-dlp, the yt-dlp github showed a > new release... > > So what I said in my previous email is happening now: yt-dlp cannot be > updated past 2025.10.14, but yt-dlp-can (and I'm doing so right now). > > If you are running yt-dlp, you should switch to yt-dlp-bin after this > week's SBo update. > > If you want to upgrade to 2025.10.22 *now*, you can get the x86_64 > "source" from here: > > https://github.com/yt-dlp/yt-dlp/releases/download/2025.10.22/yt-dlp_linux > > Or if you use aarch64, here: > > https://github.com/yt-dlp/yt-dlp/releases/download/2025.10.14/yt-dlp_linux_aarch64 > > ...and run yt-dlp-bin.SlackBuild with VERSION="2025.10.14" in the > environment. > > If you're on 32-bit x86, you're out of luck for now. > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ From didier at slint.fr Thu Oct 23 15:17:33 2025 From: didier at slint.fr (Didier Spaier) Date: Thu, 23 Oct 2025 17:17:33 +0200 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> Message-ID: <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> Hello, On 10/23/25 16:33, Eugen Wissner wrote: > The problem is of cause other Python dependencies, yt-dlp has further > Python dependencies besides Python itself. Indeed. In the list of dependencies below (names could not differ with to the ones @ SBo) I ended up: - rebuilding the packages against both python 3.9 and python 3.11 for those whose name does not end in 3.11, - building new packages against python 3.11 only for the other ones. mutagen python-attrs python-brotli3.11 python-pycryptodomex python-websockets python3.11 python3-calver python3-editables python3-hatchling3.11 python-packaging3.11 python3-pathspec python3-pluggy python3-trove-classifiers Cheers, Didier From fourtysixandtwo at sliderr.net Thu Oct 23 16:01:52 2025 From: fourtysixandtwo at sliderr.net (fourtysixandtwo) Date: Thu, 23 Oct 2025 10:01:52 -0600 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> Message-ID: I've been thinking about this off and on for a while and have a few ideas about it. -If we do this 3.12 should be the target (like current) -It doesn't have to live in /opt necessarily -we could have the existing slackbuilds also build for 3.12 if it's installed (or as necessary) which would allow just rebuilding existing slackbuilds without duplicating every python slackbuild. (other than the stock slackware python builds we don't have "-opt" versions for) -this option would have other concerns so I'm not sure it's viable, (Eugene: like affecting my recent sbotools suggestion) -would be a bit messier like the pre python2/3 split slackbuilds -it would however be easier to manage I think (less duplication of work required) Of course if we knew if the next release of Slackware was imminent this wouldn't be a concern. I would hate to do the work on this then have that drop shortly after. Anyways, I would appreciate any comments or concerns with the above. Cheers On Thu, Oct 23, 2025 at 9:17?AM Didier Spaier via SlackBuilds-users wrote: > > Hello, > > On 10/23/25 16:33, Eugen Wissner wrote: > > > The problem is of cause other Python dependencies, yt-dlp has further > > Python dependencies besides Python itself. > > Indeed. In the list of dependencies below (names could not differ with > to the ones @ SBo) I ended up: > - rebuilding the packages against both python 3.9 and python 3.11 for > those whose name does not end in 3.11, > - building new packages against python 3.11 only for the other ones. > > mutagen > python-attrs > python-brotli3.11 > python-pycryptodomex > python-websockets > python3.11 > python3-calver > python3-editables > python3-hatchling3.11 > python-packaging3.11 > python3-pathspec > python3-pluggy > python3-trove-classifiers > > Cheers, > Didier > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > From urchlay at slackware.uk Thu Oct 23 21:08:24 2025 From: urchlay at slackware.uk (B. Watson) Date: Thu, 23 Oct 2025 17:08:24 -0400 (EDT) Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> Message-ID: <5e3e82a-d56-a395-d064-8aabd010931c@slackware.uk> On Thu, 23 Oct 2025, fourtysixandtwo wrote: > I've been thinking about this off and on for a while and have a few > ideas about it. > > -If we do this 3.12 should be the target (like current) > -It doesn't have to live in /opt necessarily > -we could have the existing slackbuilds also build for 3.12 if it's > installed (or as necessary) which would allow just rebuilding existing > slackbuilds without duplicating every python slackbuild. (other than > the stock slackware python builds we don't have "-opt" versions for) > -this option would have other concerns so I'm not sure it's viable, > (Eugene: like affecting my recent sbotools suggestion) > -would be a bit messier like the pre python2/3 split slackbuilds > -it would however be easier to manage I think (less duplication of > work required) All this makes sense. It can be viable. I was thinking /opt because there might be some random piece of software that would see /usr/bin/python3.12 and decide to build itself against that instead of respecting the /usr/bin/python3 symlink. Using /opt would keep it out of the way, so installing the new python wouldn't affect anything else. > Of course if we knew if the next release of Slackware was imminent > this wouldn't be a concern. I would hate to do the work on this then > have that drop shortly after. Yeah. Going by how long the last Slackware release took, we probably have at least a couple more years before the next one. It's almost 100% certain that PV won't do a release until he has KDE/Plasma 6, and the KDE in -current is still 5. So I'm going with "it'll be a while yet". I'd love to be proven wrong though. From antonioleal at yahoo.com Thu Oct 23 22:16:02 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Thu, 23 Oct 2025 23:16:02 +0100 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: <5e3e82a-d56-a395-d064-8aabd010931c@slackware.uk> References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> <5e3e82a-d56-a395-d064-8aabd010931c@slackware.uk> Message-ID: <8c535bdb-20b1-457a-a9d6-28bdcaa2b7a0@yahoo.com> Having the latest python is tempting... totally agree. But who ensures its does not break stock slackware programs that depend on 3.9? If the issue is just one app wouldn't a python venv be enough? On 10/23/25 10:08 PM, B. Watson wrote: > > > On Thu, 23 Oct 2025, fourtysixandtwo wrote: > >> I've been thinking about this off and on for a while and have a few >> ideas about it. >> >> -If we do this 3.12 should be the target (like current) >> -It doesn't have to live in /opt necessarily >> -we could have the existing slackbuilds also build for 3.12 if it's >> installed (or as necessary) which would allow just rebuilding existing >> slackbuilds without duplicating every python slackbuild.? (other than >> the stock slackware python builds we don't have "-opt" versions for) >> ?-this option would have other concerns so I'm not sure it's viable, >> (Eugene: like affecting my recent sbotools suggestion) >> ?-would be a bit messier like the pre python2/3 split slackbuilds >> ?-it would however be easier to manage I think (less duplication of >> work required) > > All this makes sense. > > It can be viable. > > I was thinking /opt because there might be some random piece of > software that would see /usr/bin/python3.12 and decide to build itself > against that instead of respecting the /usr/bin/python3 symlink. > Using /opt would keep it out of the way, so installing the new python > wouldn't affect anything else. > >> Of course if we knew if the next release of Slackware was imminent >> this wouldn't be a concern.? I would hate to do the work on this then >> have that drop shortly after. > > Yeah. > > Going by how long the last Slackware release took, we probably have > at least a couple more years before the next one. > > It's almost 100% certain that PV won't do a release until he has > KDE/Plasma 6, and the KDE in -current is still 5. So I'm going with > "it'll be a while yet". I'd love to be proven wrong though. > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > From belka at caraus.de Thu Oct 23 22:25:49 2025 From: belka at caraus.de (Eugen Wissner) Date: Fri, 24 Oct 2025 00:25:49 +0200 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: <8c535bdb-20b1-457a-a9d6-28bdcaa2b7a0@yahoo.com> References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> <5e3e82a-d56-a395-d064-8aabd010931c@slackware.uk> <8c535bdb-20b1-457a-a9d6-28bdcaa2b7a0@yahoo.com> Message-ID: Well python binaries have a suffix, /usr/bin/python3.12, /usr/bin/python3.12-config. Then there are symlinks, /usr/bin/python3 and /usr/bin/python, that point to the default python version (/usr/bin/python3.9 in the case of Slackware stable). So different python versions shouldn't conflict and the software would still use 3.9 by default. A lot of people seem to disagree but I prefer to install software in default /usr locations if possible. Python supports suffixes, so why use /opt. But I'm not a Python programmer, maybe I'm missing something. But my script from the previous email installs python into /usr/ but doesn't override standard python. On Fri Oct 24, 2025 at 12:16 AM CEST, Antonio Leal via SlackBuilds-users wrote: > Having the latest python is tempting... totally agree. > > But who ensures its does not break stock slackware programs that depend > on 3.9? > > If the issue is just one app wouldn't a python venv be enough? > > > On 10/23/25 10:08 PM, B. Watson wrote: >> >> >> On Thu, 23 Oct 2025, fourtysixandtwo wrote: >> >>> I've been thinking about this off and on for a while and have a few >>> ideas about it. >>> >>> -If we do this 3.12 should be the target (like current) >>> -It doesn't have to live in /opt necessarily >>> -we could have the existing slackbuilds also build for 3.12 if it's >>> installed (or as necessary) which would allow just rebuilding existing >>> slackbuilds without duplicating every python slackbuild.? (other than >>> the stock slackware python builds we don't have "-opt" versions for) >>> ?-this option would have other concerns so I'm not sure it's viable, >>> (Eugene: like affecting my recent sbotools suggestion) >>> ?-would be a bit messier like the pre python2/3 split slackbuilds >>> ?-it would however be easier to manage I think (less duplication of >>> work required) >> >> All this makes sense. >> >> It can be viable. >> >> I was thinking /opt because there might be some random piece of >> software that would see /usr/bin/python3.12 and decide to build itself >> against that instead of respecting the /usr/bin/python3 symlink. >> Using /opt would keep it out of the way, so installing the new python >> wouldn't affect anything else. >> >>> Of course if we knew if the next release of Slackware was imminent >>> this wouldn't be a concern.? I would hate to do the work on this then >>> have that drop shortly after. >> >> Yeah. >> >> Going by how long the last Slackware release took, we probably have >> at least a couple more years before the next one. >> >> It's almost 100% certain that PV won't do a release until he has >> KDE/Plasma 6, and the KDE in -current is still 5. So I'm going with >> "it'll be a while yet". I'd love to be proven wrong though. >> _______________________________________________ >> SlackBuilds-users mailing list >> SlackBuilds-users at slackbuilds.org >> https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users >> Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ >> FAQ - https://slackbuilds.org/faq/ >> > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ From kvngncrlsn at gmail.com Thu Oct 23 22:41:34 2025 From: kvngncrlsn at gmail.com (K. Eugene Carlson) Date: Fri, 24 Oct 2025 07:41:34 +0900 Subject: [Slackbuilds-users] yt-dlp release In-Reply-To: References: <2efd7910-143f-592c-fdb2-fc5d12898e5@slackware.uk> <3887e726-06e7-4b79-979d-ccecdf300ff6@slint.fr> Message-ID: Interesting question. The current "site-packages" check would become slightly more complicated (especially for runs without the repo present), but I don't think it would be an insurmountable problem from an sbotools perspective. One point in favor of "python3*3.12" scripts is that it would be possible to distinguish between things that do and don't need the newer version, and things that can and can't be built against it. I suspect it would also be easier on folks who like to run builds manually. On Fri, Oct 24, 2025 at 1:02?AM fourtysixandtwo wrote: > -this option would have other concerns so I'm not sure it's viable, > (Eugene: like affecting my recent sbotools suggestion) > -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Sat Oct 25 00:46:31 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 25 Oct 2025 07:46:31 +0700 Subject: [Slackbuilds-users] Updates - 20251025.1 Message-ID: <20251025074631.7c56f563@home.slackie.org> Sat Oct 25 00:35:46 UTC 2025 academic/hp-prime: updated script academic/plus42: Updated for version 1.3.11 academic/x48ng: Updated for version 0.51.1 desktop/yaru-icon-theme: Update for 25.10.3 development/a68g: Orphaned development/aws-cdk: Updated for version 2.1031.0. development/bruno: Updated for version 2.13.2. development/bun-bin: Added (JS, TS, and JSX Toolkit). development/bwbasic: Updated for version 3.40 development/chatgpt_sh: Updated for version 0.116.3 development/claude-code: Updated for version 2.0.22 development/cursor: Updated for version 1.7.54 development/electron-bin: Added (Binary version of Electron). development/github-cli: Updated for version 2.82.1 development/gitify-bin: Updated for version 6.10.0 development/jupyterlab: Update for 4.4.10 development/kotlin: Updated for version 2.2.21. development/lcov: Orphaned. development/lm-studio-bin: Updated for version 0.3.30.2 development/mysql-workbench: Updated for version 8.0.44. development/notepad++: Updated for version 8.8.7 development/pnpm: Updated for version 10.19.0. development/postman: Updated for version 11.67.5 development/pycharm: Updated for version 2025.2.3 development/uftrace: Updated for version 20251010_f0228b8 development/vscodium: Updated for version 1.105.17017. development/vstudio: Updated for version 16.1 development/witsy: Updated for version 3.0.3 development/xmake: Updated for version 3.0.4. development/zmakebas: Added (Basic converter). development/zxtext2p: Added (Command Line Utility). games/devilutionx: Updated for version 1.5.4. games/melonds: Updated for version 1.0. games/nxengine-evo: Updated for version 2.6.5.1. games/puzzles: Updated for version 20251021.790f585. graphics/optipng: Updated for version 7.9.1. libraries/CLI11: Updated for version 2.6.0. libraries/aml: Added (Loop Library). libraries/fmt: Updated for version 11.2.0. libraries/libfabric: Updated for version 2.3.1. libraries/openapv: Updated for version 0.2.0.4. libraries/posixsignalmanager: Added (Posix Signal Manager). libraries/python3-ruamel.yaml: Updated for version 0.18.16. libraries/simdjson: Added (Parsing library). libraries/simdutf: Added (Unicode routines). libraries/termpaint: Added (Low Level Terminal Library). libraries/tuiwidgets: Added (High Level Terminal UI). libraries/vst3sdk: Updated for version 3.8.0 misc/dos2unix: Updated for version 7.5.3. misc/flips: Updated for version 198. misc/open-simh: Updated for version 20251023_4d38373 misc/stardict: Fix permission. misc/stardict: Fix permission. misc/stardict: Updated for version 3.0.7 multimedia/MuseScore: Updated for version 4.6.3 multimedia/exaile: Updated for version 4.2.0. multimedia/freetube: Fix permission. multimedia/freetube: Updated for version 0.23.12. multimedia/kvazaar: Updated for version 2.3.2. network/AdGuardHome: Updated for version 0.107.68. network/darkstat: Updated for version 3.0.722. network/discord: Version bump to 0.0.112 network/dropbox: Updated for version 235.4.5905. network/element-desktop-bin: Updated for version 1.12.2. network/element-desktop: Updated for version 1.12.2. network/opera: Updated for version 122.0.5643.142, new maintainer network/piavpn-app: Added (PIA Desktop App). network/rspamd: Updated for version 3.13.2 network/teams-for-linux: Updated for version 2.6.3. network/telegram: Updated for version 6.2.4. network/yt-dlp-bin: Updated for version 2025.10.22. network/yt-dlp: Python EOL warning in README. network/zen-browser: Updated for version 1.17b network/zoom-linux: Updated for version 6.6.5.5215 office/Joplin: Fix permission. office/Joplin: Updated for version 3.4.12. office/ledger-live: Updated for version 2.131.1 office/qownnotes: Updated for version 25.10.4. office/wps-office-dicts: Updated for version 25.8.3.1 perl/MoarVM: Updated for version 2025.10 perl/nqp: Updated for version 2025.10 perl/perl-YAML-Syck: Updated for version 1.36. perl/rakudo: Updated for version 2025.10 python/odict: Orphaned. python/python2-nuitka: Updated for version 2.8.4 python/python3-argcomplete: Updated for version 3.6.3. python/python3-calver: Updated for version 2025.10.20. python/python3-colorlog: Updated for version 6.10.1. python/python3-fonttools: Updated for version 4.60.1. python/python3-gensim: Update for 4.4.0 python/python3-narwhals: Update for 2.9.0 python/python3-nuitka: Updated for version 2.8.4 python/python3-obspy: Orphaned. python/python3-odfdo: Updated for version 3.17.1 python/python3-orjson: Updated for version 3.11.4. python/python3-patsy: Update for 1.0.2 python/python3-pipx: Updated for version 1.8.0. python/python3-psutil: Updated for version 7.1.1. python/python3-pypdf: Updated for version 6.1.3 python/python3-regex: Update for 2025.10.23 python/python3-reportlab: Updated for version 4.4.4. python/python3-rpds-py: Updated for version 0.28.0. python/python3-smart_open: Update for 7.4.1 python/python3-ufo2ft: Updated for version 3.6.8. python/python3-uv_build: Updated for version 0.9.5. python/uv-bin: Updated for version 0.9.5. ruby/ruby-build: Updated for version 20251023. system/Iosevka-aile: Updated for version 33.3.3. system/Iosevka-etoile: Updated for version 33.3.3. system/Solaar: Updated for version 1.1.16. system/bat: Updated for version 0.26.0. system/chr: Added (Terminal Text Editor). system/docker-compose: Updated for version 2.40.1 system/fzf-bin: Updated for version 0.66.0. system/fzf: Updated for version 0.66.0. system/fzy: Updated for version 1.1 system/gnome-disk-utility: Updated for version 46.1 system/lynis: Updated for version 3.1.6. system/nvidia-kernel: Update kernel support. system/nvidia-legacy470-kernel: Update kernel support. system/openrc-settingsd: Enable OpenRC support system/prometheus: Updated for version 3.7.1 system/sff: Updated for version 1.2 system/smpq: new maintainer. +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From rizitis at gmail.com Sat Oct 25 10:15:51 2025 From: rizitis at gmail.com (=?UTF-8?B?zpnPic6szr3Ovc63z4I=?=) Date: Sat, 25 Oct 2025 13:15:51 +0300 Subject: [Slackbuilds-users] rust and crates Message-ID: Hello, I just want to ask if someone has a custom script to find [dependencies] crates for build a rust package or you manually search for them ? thank you. From fsleg at t-rg.ws Sat Oct 25 10:25:06 2025 From: fsleg at t-rg.ws (fsLeg) Date: Sat, 25 Oct 2025 13:25:06 +0300 Subject: [Slackbuilds-users] rust and crates In-Reply-To: References: Message-ID: Direct dependencies are listed in Cargo.toml file. The entire dependency list is in Cargo.lock file. If the latter doesn't exist, it'll be created by cargo when you first build the project. If you're looking into vendoring the crates, look at cargo-vendor-filterer which is available on SBo. It calculates all dependencies and vendors necessary crates automatically while also filtering out crates for other platforms to reduce size. I also wrote a script to get all crates and do some work to prepare a rust-based SlackBuild to be published, although I later changed my approach and don't use that script anymore. But if I were to no longer have a place to host vendored tarballs I would return to using it. The script in question: https://gist.github.com/fsLeg/2f33cccbce9f3ae6af1a3f720f201cb0 On October 25, 2025 13:15:51 GMT+03:00, "???????" wrote: >Hello, I just want to ask if someone has a custom script to find >[dependencies] crates for build a rust package or you manually search >for them ? > >thank you. From rizitis at gmail.com Sat Oct 25 11:59:21 2025 From: rizitis at gmail.com (=?UTF-8?B?zpnPic6szr3Ovc63z4I=?=) Date: Sat, 25 Oct 2025 14:59:21 +0300 Subject: [Slackbuilds-users] rust and crates In-Reply-To: References: Message-ID: thank you very much! I want to create a SBo for https://github.com/rust-secure-code/cargo-auditable if i have success using your script I will push in SBo repo it else I will come back... thanks again. ???? ??? 25 ??? 2025 ???? 1:25??.?., ?/? fsLeg via SlackBuilds-users ??????: > > Direct dependencies are listed in Cargo.toml file. The entire dependency list is in Cargo.lock file. If the latter doesn't exist, it'll be created by cargo when you first build the project. > > If you're looking into vendoring the crates, look at cargo-vendor-filterer which is available on SBo. It calculates all dependencies and vendors necessary crates automatically while also filtering out crates for other platforms to reduce size. > > I also wrote a script to get all crates and do some work to prepare a rust-based SlackBuild to be published, although I later changed my approach and don't use that script anymore. But if I were to no longer have a place to host vendored tarballs I would return to using it. The script in question: > > https://gist.github.com/fsLeg/2f33cccbce9f3ae6af1a3f720f201cb0 > > On October 25, 2025 13:15:51 GMT+03:00, "???????" wrote: > >Hello, I just want to ask if someone has a custom script to find > >[dependencies] crates for build a rust package or you manually search > >for them ? > > > >thank you. > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > From rizitis at gmail.com Sat Oct 25 14:00:56 2025 From: rizitis at gmail.com (=?UTF-8?B?zpnPic6szr3Ovc63z4I=?=) Date: Sat, 25 Oct 2025 17:00:56 +0300 Subject: [Slackbuilds-users] rust and crates In-Reply-To: References: Message-ID: Your script is amazing exactly what i needed! It makes slackware life easier. I also copied some parts of your script direclty in slackbuild and in 15 minutes I had a valid SBo SlackBuild for slackware-current that builds and works fine. But it's not building in slackware 15.0 because cargo is too old... same issues like python , glibc etc... I spent 1 hour patching for slackware 15.0 with no success and I gave up, so no SBo for this. Its here if someone need it for current https://github.com/rizitis/cargo-auditable/tree/main/SlackBuild regards! ???? ??? 25 ??? 2025 ???? 2:59??.?., ?/? ??????? ??????: > > thank you very much! > I want to create a SBo for > https://github.com/rust-secure-code/cargo-auditable if i have success > using your script I will push in SBo repo it else I will come back... > > thanks again. > > ???? ??? 25 ??? 2025 ???? 1:25??.?., ?/? fsLeg via SlackBuilds-users > ??????: > > > > Direct dependencies are listed in Cargo.toml file. The entire dependency list is in Cargo.lock file. If the latter doesn't exist, it'll be created by cargo when you first build the project. > > > > If you're looking into vendoring the crates, look at cargo-vendor-filterer which is available on SBo. It calculates all dependencies and vendors necessary crates automatically while also filtering out crates for other platforms to reduce size. > > > > I also wrote a script to get all crates and do some work to prepare a rust-based SlackBuild to be published, although I later changed my approach and don't use that script anymore. But if I were to no longer have a place to host vendored tarballs I would return to using it. The script in question: > > > > https://gist.github.com/fsLeg/2f33cccbce9f3ae6af1a3f720f201cb0 > > > > On October 25, 2025 13:15:51 GMT+03:00, "???????" wrote: > > >Hello, I just want to ask if someone has a custom script to find > > >[dependencies] crates for build a rust package or you manually search > > >for them ? > > > > > >thank you. > > _______________________________________________ > > SlackBuilds-users mailing list > > SlackBuilds-users at slackbuilds.org > > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > > FAQ - https://slackbuilds.org/faq/ > > From fsleg at t-rg.ws Sat Oct 25 14:06:44 2025 From: fsleg at t-rg.ws (fsLeg) Date: Sat, 25 Oct 2025 17:06:44 +0300 Subject: [Slackbuilds-users] rust and crates In-Reply-To: References: Message-ID: <58E9BD52-8DEB-43BA-9C51-CD9D364775FB@t-rg.ws> The solution for cargo being too old is specifying rust-opt as a dependency. Now you have the latest rust. I don't think there's any rust programs on SBo that can be used with Slackware's stock rust package, so it's a common practice here. On October 25, 2025 17:00:56 GMT+03:00, "???????" wrote: >But it's not building in slackware 15.0 because cargo is too old... From rizitis at gmail.com Sat Oct 25 16:27:54 2025 From: rizitis at gmail.com (=?UTF-8?B?zpnPic6szr3Ovc63z4I=?=) Date: Sat, 25 Oct 2025 19:27:54 +0300 Subject: [Slackbuilds-users] rust and crates In-Reply-To: <58E9BD52-8DEB-43BA-9C51-CD9D364775FB@t-rg.ws> References: <58E9BD52-8DEB-43BA-9C51-CD9D364775FB@t-rg.ws> Message-ID: I never think about it thanks ???? ??? 25 ??? 2025 ???? 5:06??.?., ?/? fsLeg via SlackBuilds-users ??????: > > The solution for cargo being too old is specifying rust-opt as a dependency. Now you have the latest rust. I don't think there's any rust programs on SBo that can be used with Slackware's stock rust package, so it's a common practice here. > > On October 25, 2025 17:00:56 GMT+03:00, "???????" wrote: > >But it's not building in slackware 15.0 because cargo is too old... > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > From fourtysixandtwo at sliderr.net Sat Oct 25 21:13:13 2025 From: fourtysixandtwo at sliderr.net (fourtysixandtwo) Date: Sat, 25 Oct 2025 15:13:13 -0600 Subject: [Slackbuilds-users] rust and crates In-Reply-To: References: Message-ID: I have a script that vendors the crates if you have a place to host them. It's included with cargo-vendor-filterer on SBo. I suggest you use cargo-vendor-filterer no matter which method you use. If you don't, you are downloading more crates than you need to (namely crates for windows). Have a look at python3-maturin for an example with the vendored sources. It includes a stub script to call the one I included with cargo-vendor-filterer. Oh, my script creates a reproducible tarball. Cheers On Sat, Oct 25, 2025 at 4:16?AM ??????? wrote: > > Hello, I just want to ask if someone has a custom script to find > [dependencies] crates for build a rust package or you manually search > for them ? > > thank you. > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ - https://slackbuilds.org/faq/ > From spycrowsoft at gmail.com Sun Oct 26 10:44:09 2025 From: spycrowsoft at gmail.com (Spycrowsoft) Date: Sun, 26 Oct 2025 11:44:09 +0100 Subject: [Slackbuilds-users] Updates - 20251025.1 In-Reply-To: <20251025074631.7c56f563@home.slackie.org> References: <20251025074631.7c56f563@home.slackie.org> Message-ID: <98c66ed3-eda9-422e-8e81-49f380feb784@gmail.com> Hi all! I just wanted to let you know that?mkvtoolnix doesn't build if you have fmt 11.2.0 on your system as optional dependency. There might be other potential breakages as well, so if you have packages which have an (optional) dependency on fmt or are a maintainer of one of those, please check. Kind regards, Spycrowsoft Op 25-10-2025 om 02:46 schreef Willy Sudiarto Raharjo: > Sat Oct 25 00:35:46 UTC 2025 > academic/hp-prime: updated script > academic/plus42: Updated for version 1.3.11 > academic/x48ng: Updated for version 0.51.1 > desktop/yaru-icon-theme: Update for 25.10.3 > development/a68g: Orphaned > development/aws-cdk: Updated for version 2.1031.0. > development/bruno: Updated for version 2.13.2. > development/bun-bin: Added (JS, TS, and JSX Toolkit). > development/bwbasic: Updated for version 3.40 > development/chatgpt_sh: Updated for version 0.116.3 > development/claude-code: Updated for version 2.0.22 > development/cursor: Updated for version 1.7.54 > development/electron-bin: Added (Binary version of Electron). > development/github-cli: Updated for version 2.82.1 > development/gitify-bin: Updated for version 6.10.0 > development/jupyterlab: Update for 4.4.10 > development/kotlin: Updated for version 2.2.21. > development/lcov: Orphaned. > development/lm-studio-bin: Updated for version 0.3.30.2 > development/mysql-workbench: Updated for version 8.0.44. > development/notepad++: Updated for version 8.8.7 > development/pnpm: Updated for version 10.19.0. > development/postman: Updated for version 11.67.5 > development/pycharm: Updated for version 2025.2.3 > development/uftrace: Updated for version 20251010_f0228b8 > development/vscodium: Updated for version 1.105.17017. > development/vstudio: Updated for version 16.1 > development/witsy: Updated for version 3.0.3 > development/xmake: Updated for version 3.0.4. > development/zmakebas: Added (Basic converter). > development/zxtext2p: Added (Command Line Utility). > games/devilutionx: Updated for version 1.5.4. > games/melonds: Updated for version 1.0. > games/nxengine-evo: Updated for version 2.6.5.1. > games/puzzles: Updated for version 20251021.790f585. > graphics/optipng: Updated for version 7.9.1. > libraries/CLI11: Updated for version 2.6.0. > libraries/aml: Added (Loop Library). > libraries/fmt: Updated for version 11.2.0. > libraries/libfabric: Updated for version 2.3.1. > libraries/openapv: Updated for version 0.2.0.4. > libraries/posixsignalmanager: Added (Posix Signal Manager). > libraries/python3-ruamel.yaml: Updated for version 0.18.16. > libraries/simdjson: Added (Parsing library). > libraries/simdutf: Added (Unicode routines). > libraries/termpaint: Added (Low Level Terminal Library). > libraries/tuiwidgets: Added (High Level Terminal UI). > libraries/vst3sdk: Updated for version 3.8.0 > misc/dos2unix: Updated for version 7.5.3. > misc/flips: Updated for version 198. > misc/open-simh: Updated for version 20251023_4d38373 > misc/stardict: Fix permission. > misc/stardict: Fix permission. > misc/stardict: Updated for version 3.0.7 > multimedia/MuseScore: Updated for version 4.6.3 > multimedia/exaile: Updated for version 4.2.0. > multimedia/freetube: Fix permission. > multimedia/freetube: Updated for version 0.23.12. > multimedia/kvazaar: Updated for version 2.3.2. > network/AdGuardHome: Updated for version 0.107.68. > network/darkstat: Updated for version 3.0.722. > network/discord: Version bump to 0.0.112 > network/dropbox: Updated for version 235.4.5905. > network/element-desktop-bin: Updated for version 1.12.2. > network/element-desktop: Updated for version 1.12.2. > network/opera: Updated for version 122.0.5643.142, new maintainer > network/piavpn-app: Added (PIA Desktop App). > network/rspamd: Updated for version 3.13.2 > network/teams-for-linux: Updated for version 2.6.3. > network/telegram: Updated for version 6.2.4. > network/yt-dlp-bin: Updated for version 2025.10.22. > network/yt-dlp: Python EOL warning in README. > network/zen-browser: Updated for version 1.17b > network/zoom-linux: Updated for version 6.6.5.5215 > office/Joplin: Fix permission. > office/Joplin: Updated for version 3.4.12. > office/ledger-live: Updated for version 2.131.1 > office/qownnotes: Updated for version 25.10.4. > office/wps-office-dicts: Updated for version 25.8.3.1 > perl/MoarVM: Updated for version 2025.10 > perl/nqp: Updated for version 2025.10 > perl/perl-YAML-Syck: Updated for version 1.36. > perl/rakudo: Updated for version 2025.10 > python/odict: Orphaned. > python/python2-nuitka: Updated for version 2.8.4 > python/python3-argcomplete: Updated for version 3.6.3. > python/python3-calver: Updated for version 2025.10.20. > python/python3-colorlog: Updated for version 6.10.1. > python/python3-fonttools: Updated for version 4.60.1. > python/python3-gensim: Update for 4.4.0 > python/python3-narwhals: Update for 2.9.0 > python/python3-nuitka: Updated for version 2.8.4 > python/python3-obspy: Orphaned. > python/python3-odfdo: Updated for version 3.17.1 > python/python3-orjson: Updated for version 3.11.4. > python/python3-patsy: Update for 1.0.2 > python/python3-pipx: Updated for version 1.8.0. > python/python3-psutil: Updated for version 7.1.1. > python/python3-pypdf: Updated for version 6.1.3 > python/python3-regex: Update for 2025.10.23 > python/python3-reportlab: Updated for version 4.4.4. > python/python3-rpds-py: Updated for version 0.28.0. > python/python3-smart_open: Update for 7.4.1 > python/python3-ufo2ft: Updated for version 3.6.8. > python/python3-uv_build: Updated for version 0.9.5. > python/uv-bin: Updated for version 0.9.5. > ruby/ruby-build: Updated for version 20251023. > system/Iosevka-aile: Updated for version 33.3.3. > system/Iosevka-etoile: Updated for version 33.3.3. > system/Solaar: Updated for version 1.1.16. > system/bat: Updated for version 0.26.0. > system/chr: Added (Terminal Text Editor). > system/docker-compose: Updated for version 2.40.1 > system/fzf-bin: Updated for version 0.66.0. > system/fzf: Updated for version 0.66.0. > system/fzy: Updated for version 1.1 > system/gnome-disk-utility: Updated for version 46.1 > system/lynis: Updated for version 3.1.6. > system/nvidia-kernel: Update kernel support. > system/nvidia-legacy470-kernel: Update kernel support. > system/openrc-settingsd: Enable OpenRC support > system/prometheus: Updated for version 3.7.1 > system/sff: Updated for version 1.2 > system/smpq: new maintainer. > +--------------------------+ > > > > -- > Willy Sudiarto Raharjo > > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives -https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ -https://slackbuilds.org/faq/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From antonioleal at yahoo.com Sun Oct 26 11:25:38 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Sun, 26 Oct 2025 11:25:38 +0000 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds References: Message-ID: Qt6 could be better in SlackBuilds. The fact is some packages just build with older/archived versions of Qt6, others require recent ones and don't build with the former. Then, within each Qt6 release, there are the extension&submodules, for sure not all required for our current SlackBuilds apps. SlackBuilds should not have just one "Qt6" but several, maybe implementing just the minimum libs required, depending to the apps requirements (at maintainer request) Location should be something like, for example, /opt/Qt6.4.3 ... /opt/Qt6.9.3 ..etc. Take MuseScore: It is _validated_ against Qt6.9.1 and it needs submodules qtbase, qt5compat, qtnetworkauth, qtscxml, qttools, qtdeclarative and qtsvg, not the whole thing But 6.9.1 does not fit for example Sigil... Antonio -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris.willing at linux.com Sun Oct 26 12:09:41 2025 From: chris.willing at linux.com (Christoph Willing) Date: Sun, 26 Oct 2025 23:09:41 +1100 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds In-Reply-To: References: Message-ID: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> On 26/10/25 22:25, Antonio Leal via SlackBuilds-users wrote: > > Qt6 could be better in SlackBuilds. > > The fact is some packages just build with older/archived versions of > Qt6, others require recent ones and don't build with the former. > > Then, within each Qt6 release, there are the extension&submodules, for > sure not all required for our current SlackBuilds apps. > > > SlackBuilds should not have just one "Qt6" but several, maybe > implementing just the minimum libs required, depending to the apps > requirements (at maintainer request) > > Location should be something like, for example, /opt/Qt6.4.3 ... > /opt/Qt6.9.3 ..etc. > > > Take MuseScore: It is _validated_ against Qt6.9.1 and it needs > submodules qtbase, qt5compat, qtnetworkauth, qtscxml, qttools, > qtdeclarative and qtsvg, not the whole thing > I believe qt6 has no active maintainer at the moment. Are you volunteering? If so, remember that building a specialised version with minimum extensions & modules that just suit one of your own pet projects means that it may not be suitable for anything else. A big monster version with everything possible included (like -current?) will be much more useful to SBo users. chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From antonioleal at yahoo.com Sun Oct 26 12:37:45 2025 From: antonioleal at yahoo.com (Antonio Leal) Date: Sun, 26 Oct 2025 12:37:45 +0000 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds In-Reply-To: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> References: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> Message-ID: <22e0c04d-a94d-441c-9958-20be8771483a@yahoo.com> On 10/26/25 12:09, Christoph Willing wrote: > On 26/10/25 22:25, Antonio Leal via SlackBuilds-users wrote: >> >> Qt6 could be better in SlackBuilds. >> >> The fact is some packages just build with older/archived versions of >> Qt6, others require recent ones and don't build with the former. >> >> Then, within each Qt6 release, there are the extension&submodules, >> for sure not all required for our current SlackBuilds apps. >> >> >> SlackBuilds should not have just one "Qt6" but several, maybe >> implementing just the minimum libs required, depending to the apps >> requirements (at maintainer request) >> >> Location should be something like, for example, /opt/Qt6.4.3 ... >> /opt/Qt6.9.3 ..etc. >> >> >> Take MuseScore: It is _validated_ against Qt6.9.1 and it needs >> submodules qtbase, qt5compat, qtnetworkauth, qtscxml, qttools, >> qtdeclarative and qtsvg, not the whole thing >> > > I believe qt6 has no active maintainer at the moment. Are you > volunteering? LinRs is the new maintiner of Qt6. > If so, remember that building a specialised version with minimum > extensions & modules that just suit one of your own pet projects means > that it may not be suitable for anything else. A big monster version > with everything possible included (like -current?) will be much more > useful to SBo users. > Agreed but why taking build time and disk space if it is not required? > chris > > _______________________________________________ > SlackBuilds-users mailing list > SlackBuilds-users at slackbuilds.org > https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users > Archives -https://lists.slackbuilds.org/pipermail/slackbuilds-users/ > FAQ -https://slackbuilds.org/faq/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Sun Oct 26 15:43:44 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sun, 26 Oct 2025 22:43:44 +0700 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds In-Reply-To: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> References: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> Message-ID: <20251026224344.54aeabda@home.slackie.org> >I believe qt6 has no active maintainer at the moment. Are you >volunteering? > >If so, remember that building a specialised version with minimum >extensions & modules that just suit one of your own pet projects means >that it may not be suitable for anything else. A big monster version >with everything possible included (like -current?) will be much more >useful to SBo users. Take a look at this on progress on newer Qt6 https://github.com/SlackBuildsOrg/slackbuilds/pull/12756 it seems that newer qt6 requires newer llvm, which breaks the SBo rule unless we added newer llvm into SBo, but that *could potentially* make another mess (i might be wrong on this) -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From didier at slint.fr Sun Oct 26 17:29:08 2025 From: didier at slint.fr (Didier Spaier) Date: Sun, 26 Oct 2025 18:29:08 +0100 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds In-Reply-To: <20251026224344.54aeabda@home.slackie.org> References: <00b3ca53-761f-4752-b90b-8384b7aff9d5@linux.com> <20251026224344.54aeabda@home.slackie.org> Message-ID: If I may chime in ... On 10/26/25 16:43, Willy Sudiarto Raharjo wrote: >> I believe qt6 has no active maintainer at the moment. Are you >> volunteering? >> >> If so, remember that building a specialised version with minimum >> extensions & modules that just suit one of your own pet projects means >> that it may not be suitable for anything else. A big monster version >> with everything possible included (like -current?) will be much more >> useful to SBo users. > > > Take a look at this on progress on newer Qt6 > https://github.com/SlackBuildsOrg/slackbuilds/pull/12756 > > it seems that newer qt6 requires newer llvm, which breaks the SBo rule > unless we added newer llvm into SBo, but that *could potentially* make > another mess (i might be wrong on this) Do we need the most recent qt6 for 15.0? Just curious. Currently in Slint we have llvm 17.0.6, needed by LXQt 2.2.0 (thanks for Frank Honolka for the packaging) and a dependency of audacious 4.5.1 and its plugins. Note: llvm13-compat from Slackware is used as build dependency of llvm here. Cheers, Didier From milgram at cgpp.com Sun Oct 26 22:46:56 2025 From: milgram at cgpp.com (J. Milgram) Date: Sun, 26 Oct 2025 18:46:56 -0400 Subject: [Slackbuilds-users] Removal system Message-ID: <77990446-3dc9-485a-850c-ded66636374d@cgpp.com> | I'm embarrassed to say I need to remove and replace a slackbuild I submitted earlier today. In the pending queue as: 26-Oct-2025 16:07||?remind.tar.gz| Unfortunately I never got a confirmation email with the submission md5sum, so can't use the removal system. Could I ask someone to remove it from pending for me? Thanks and sorry for the bother. Lesson learned: take and save the md5sum of whatever I submit. BTW I discovered that this is the 2nd time in just a few weeks that a submission confirmation email never made it to me. A typo inputting my email is possible; twice is less likely. Is there some email error going on, that I can address on my end? I recall there was a time when certain email addresses would cause the submission to fail altogether. thanks! Judah -- ===== milgram at cgpp.com 301-257-7069 -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_0x6E4882672D90BBD4.asc Type: application/pgp-keys Size: 2440 bytes Desc: OpenPGP public key URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature.asc Type: application/pgp-signature Size: 665 bytes Desc: OpenPGP digital signature URL: From willysr at slackbuilds.org Mon Oct 27 06:41:07 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Mon, 27 Oct 2025 13:41:07 +0700 Subject: [Slackbuilds-users] Removal system In-Reply-To: <77990446-3dc9-485a-850c-ded66636374d@cgpp.com> References: <77990446-3dc9-485a-850c-ded66636374d@cgpp.com> Message-ID: <20251027134107.155dfbea@office64.slackie.org> >I'm embarrassed to say I need to remove and replace a slackbuild I >submitted earlier today. > >In the pending queue as: 26-Oct-2025 16:07||?remind.tar.gz| > >Unfortunately I never got a confirmation email with the submission >md5sum, so can't use the removal system. > >Could I ask someone to remove it from pending for me? Thanks and sorry >for the bother. > >Lesson learned: take and save the md5sum of whatever I submit. > >BTW I discovered that this is the 2nd time in just a few weeks that a >submission confirmation email never made it to me. A typo inputting my >email is possible; twice is less likely. > >Is there some email error going on, that I can address on my end? I >recall there was a time when certain email addresses would cause the >submission to fail altogether. the old issue with our email has returned :( it's not your issue, it's our infastructure's fault remind has been removed from pending so you can resubmit. -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From lin.ruohshoei at gmail.com Tue Oct 28 10:20:24 2025 From: lin.ruohshoei at gmail.com (Ruoh-Shoei LIN) Date: Tue, 28 Oct 2025 10:20:24 +0000 Subject: [Slackbuilds-users] Qt6 libs proposal for SlackBuilds In-Reply-To: References: Message-ID: Antonio Leal via SlackBuilds-users: > Qt6 could be better in SlackBuilds. > > The fact is some packages just build with older/archived versions of Qt6, others require recent ones and don't build with the former. > > Then, within each Qt6 release, there are the extension&submodules, for sure not all required for our current SlackBuilds apps. > > > SlackBuilds should not have just one "Qt6" but several, maybe implementing just the minimum libs required, depending to the apps requirements (at maintainer request) > > Location should be something like, for example, /opt/Qt6.4.3 ... /opt/Qt6.9.3 ..etc. > > > Take MuseScore: It is _validated_ against Qt6.9.1 and it needs submodules qtbase, qt5compat, qtnetworkauth, qtscxml, qttools, qtdeclarative and qtsvg, not the whole thing > > But 6.9.1 does not fit for example Sigil... > > Antonio > Regarding Qt version, I have tested 6.10.0, 6.9.3, and 6.8.3. With gcc 11.2.0 and llvm 20.1.8 (Qt6 needs llvm >=17), qtrpc could not be built since 6.5.x, there are no pkgs in SBo which depend on qtrpc, so I disabled the qtrpc module. QtWebEngine could not be built since 6.9.x, so I stayed on 6.8.x and would like to retry when Qt 6.10.1 is released. With gcc 11.2.0 and llvm 13.0.0, For Qt 6.5.x, qtrpc, qttools, and qdoc could only be built if the Qt SlackBuild used a workaround, a prebuilt llvm13 binary, then the compiled version linked to version 13 of the llvm libs available in stock slackware. Willy Sudiarto Raharjo: > Take a look at this on progress on newer Qt6 > https://github.com/SlackBuildsOrg/slackbuilds/pull/12756 > > it seems that newer qt6 requires newer llvm, which breaks the SBo rule > unless we added newer llvm into SBo, but that *could potentially* make > another mess (i might be wrong on this) > > > -- > Willy Sudiarto Raharjo > The modules qttool and qdoc of Qt>=6.8 need newer clang, and depend on newer llvm libs, e.g., libLLVM.so, libclang-cpp.so, libclang.so. If any other pkgs make use of the newer llvm in compile-time, they will also need the new libs in runtime. So I plan to place llvm in /opt/llvm-opt and link the necessary libs to /usr/lib$LIBDIRSUFFIX. llvm-opt will need to be specified in every SlackBuild if necessary: if [ "${LLVM_OPT:-ON}" = "ON" ]; then export PATH="/opt/llvm-opt/bin:$PATH" if [ -z "$LD_LIBRARY_PATH" ]; then export LD_LIBRARY_PATH="/opt/llvm-opt/lib$LIBDIRSUFFIX" else export LD_LIBRARY_PATH="/opt/llvm-opt/lib$LIBDIRSUFFIX:$LD_LIBRARY_PATH" fi fi After compiling, the pkg will depend on llvm libs in /usr/lib$LIBDIRSUFFIX instead of /opt/llvm-opt/lib$LIBDIRSUFFIX. Christoph Willing: > > I believe qt6 has no active maintainer at the moment. Are you volunteering? > > If so, remember that building a specialised version with minimum extensions & modules that just suit one of your own pet projects means that it may not be suitable for anything else. A big monster version with everything possible included (like -current?) will be much more useful to SBo users. > > chris > > If possible, I would like to build the latest version, of course it will be the single qt-everywhere-src tarball. Didier Spaier via SlackBuilds-users: > Do we need the most recent qt6 for 15.0? Just curious. > > Currently in Slint we have llvm 17.0.6, needed by LXQt 2.2.0 (thanks for Frank > Honolka for the packaging) and a dependency of audacious 4.5.1 and its plugins. > Note: llvm13-compat from Slackware is used as build dependency of llvm here. > > Cheers, > Didier > The latest dolphin-emu, pcsx2 need recent qt6. Regards, Lin From didier at slint.fr Tue Oct 28 19:13:23 2025 From: didier at slint.fr (Didier Spaier) Date: Tue, 28 Oct 2025 20:13:23 +0100 Subject: [Slackbuilds-users] inserting "autoreconf -vi" after the line "cd $PRGNAM-$VERSION" removes the dependency of xbindkeys on guile2.2 Message-ID: ... Thus is the guile Slackware package (or another version) is installed building xbindkeys succeeds. Cheers, Didier From 2458099 at gmail.com Wed Oct 29 23:43:56 2025 From: 2458099 at gmail.com (Gilberto F da Silva) Date: Wed, 29 Oct 2025 20:43:56 -0300 Subject: [Slackbuilds-users] -Current- rEFInd does not compile Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Here are my sbopkg.conf file and the log file from the compilation attempt. # $Id$ # # Please read the sbopkg.conf(5) man page for information about this # configuration file, including an explanation of how to set these # variables. # The following variables are used by sbopkg and by the SlackBuild # scripts themselves. They must be exported for this reason. export TMP=${TMP:-/tmp/SBo} export OUTPUT=${OUTPUT:-/tmp} # The following are variables used by sbopkg. Any of these variables # could be exported, if desired. # Path variables LOGFILE=${LOGFILE:-/var/log/sbopkg/sbopkg-build-log} QUEUEDIR=${QUEUEDIR:-/var/lib/sbopkg/queues} REPO_ROOT=${REPO_ROOT:-/var/lib/sbopkg} SRCDIR=${SRCDIR:-/var/cache/sbopkg} BLACKLISTFILE=${BLACKLISTFILE:-/etc/sbopkg/blacklist} # sbopkg's temporary directory (where its internal temporary files are # kept and where packages are made prior to being moved to OUTPUT) # defaults to /tmp/sbopkg.XXXXXX where 'XXXXXX' is a random string. If # /tmp is not a suitable containing directory, pass in an alternate # TMPDIR or modify the following variable. This is actually a mktemp(1) # variable. export TMPDIR=${TMPDIR:-/tmp} # Other variables: CLEANUP=${CLEANUP:-NO} DEBUG_UPDATES=${DEBUG_UPDATES:-0} KEEPLOG=${KEEPLOG:-YES} MKDIR_PROMPT=${MKDIR_PROMPT:-NO} NICE=${NICE:-10} #REPO_BRANCH=${REPO_BRANCH:-15.0} #REPO_NAME=${REPO_NAME:-SBo} REPO_BRANCH=${REPO_BRANCH:-current} REPO_NAME=${REPO_NAME:-SBo-git} # The following variable determines if multiple instances of sbopkg can # be run simultaneously. It is *strongly* recommended that this value be # set to NO. Do not set it to YES without first reading the # sbopkg.conf(5) man page. ALLOW_MULTI=${ALLOW_MULTI:-NO} # The following variables are required and can be tweaked if desired, # although this is not recommended. Note: rsync already uses # --archive, --delete, --no-owner, and --exclude in the main sbopkg # script so there is no need to add those flags here. DIFF=${DIFF:-diff} DIFFOPTS=${DIFFOPTS:--u} RSYNCFLAGS="${RSYNCFLAGS:---verbose --timeout=30}" WGETFLAGS="${WGETFLAGS:--c --progress=bar:force --timeout=30 --tries=5}" # SRC_REPO defaults to "http://slackware.uk/sbosrcarch". To use # a different repository, uncomment and edit this variable. The value # must be the URL of the directory containing the by-name and by-md5 # sub directories, and should NOT have a trailing slash. # SRC_REPO="http://slackware.uk/sbosrcarch" ########################################### New queue process started on: mer 29 Okt 2025 20:05:19 -0300 ########################################### +++++++++++++++++++++++++++++++++++++++++++ PRE-CHECK LOG Using the UNSUPPORTED SBo git repository for -current Queue Process: Download, build, and install rEFInd: GPG checks not supported for the SBo-git repository. Processing rEFInd 0.14.2-1 Using original .info file Using original SlackBuild file No build options selected. +++++++++++++++++++++++++++++++++++++++++++ Processing rEFInd rEFInd: Found refind-src-0.14.2.tar.gz in /var/cache/sbopkg. Checking MD5SUM: MD5SUM check for refind-src-0.14.2.tar.gz ... OK Building package for rEFInd... refind-0.14.2/ refind-0.14.2/gptsync/ refind-0.14.2/gptsync/os_efi.c refind-0.14.2/gptsync/os_unix.c refind-0.14.2/gptsync/AutoGen.h refind-0.14.2/gptsync/Makefile refind-0.14.2/gptsync/gptsync.h refind-0.14.2/gptsync/AutoGen.c refind-0.14.2/gptsync/showpart.c refind-0.14.2/gptsync/Make.gnuefi refind-0.14.2/gptsync/gptsync.8 refind-0.14.2/gptsync/Make.unix refind-0.14.2/gptsync/lib.c refind-0.14.2/gptsync/README.txt refind-0.14.2/gptsync/gptsync.c refind-0.14.2/gptsync/Make.tiano refind-0.14.2/RefindPkg.dec refind-0.14.2/mok/ refind-0.14.2/mok/guid.c refind-0.14.2/mok/COPYING refind-0.14.2/mok/guid.h refind-0.14.2/mok/Makefile refind-0.14.2/mok/security_policy.c refind-0.14.2/mok/mok.c refind-0.14.2/mok/security_policy.h refind-0.14.2/mok/simple_file.c refind-0.14.2/mok/simple_file.h refind-0.14.2/mok/mok.h refind-0.14.2/mok/Make.tiano refind-0.14.2/debian/ refind-0.14.2/debian/compat refind-0.14.2/debian/rules refind-0.14.2/debian/po/ refind-0.14.2/debian/po/pt_BR.po refind-0.14.2/debian/po/es.po refind-0.14.2/debian/po/pt.po refind-0.14.2/debian/po/nl.po refind-0.14.2/debian/po/de.po refind-0.14.2/debian/po/POTFILES.in refind-0.14.2/debian/po/templates.pot refind-0.14.2/debian/po/ru.po refind-0.14.2/debian/po/fr.po refind-0.14.2/debian/source/ refind-0.14.2/debian/source/format refind-0.14.2/debian/gbp.conf refind-0.14.2/debian/copyright refind-0.14.2/debian/refind.docs refind-0.14.2/debian/refind.links refind-0.14.2/debian/refind.doc-base refind-0.14.2/debian/config refind-0.14.2/debian/templates refind-0.14.2/debian/changelog refind-0.14.2/debian/control refind-0.14.2/debian/postinst refind-0.14.2/debian/refind.install refind-0.14.2/debian/watch refind-0.14.2/debian/refind.manpages refind-0.14.2/gptsync.inf refind-0.14.2/RefindPkg.dsc refind-0.14.2/gzip/ refind-0.14.2/gzip/zlib_inflate/ refind-0.14.2/gzip/zlib_inflate/zconf.h refind-0.14.2/gzip/zlib_inflate/inftrees.h refind-0.14.2/gzip/zlib_inflate/infutil.h refind-0.14.2/gzip/zlib_inflate/inflate.c refind-0.14.2/gzip/zlib_inflate/inffast.c refind-0.14.2/gzip/zlib_inflate/zutil.h refind-0.14.2/gzip/zlib_inflate/zlib.h refind-0.14.2/gzip/zlib_inflate/inftrees.c refind-0.14.2/gzip/zlib_inflate/infutil.c refind-0.14.2/gzip/zlib_inflate/inflate.h refind-0.14.2/gzip/zlib_inflate/inffixed.h refind-0.14.2/gzip/zlib_inflate/inffast.h refind-0.14.2/gzip/Makefile refind-0.14.2/gzip/decompress_inflate.c refind-0.14.2/gzip/Make.tiano refind-0.14.2/banners/ refind-0.14.2/banners/refind_banner-alpha.png refind-0.14.2/banners/refind_banner.png refind-0.14.2/banners/refind_banner.svg refind-0.14.2/CREDITS.txt refind-0.14.2/Makefile refind-0.14.2/docs/ refind-0.14.2/docs/Styles/ refind-0.14.2/docs/Styles/styles.css refind-0.14.2/docs/refind/ refind-0.14.2/docs/refind/firmware-badge.png refind-0.14.2/docs/refind/rEFInd-Metro.png refind-0.14.2/docs/refind/hi-theme.png refind-0.14.2/docs/refind/MokManager2.png refind-0.14.2/docs/refind/bootorder.png refind-0.14.2/docs/refind/windows8-on-mac-efi.txt refind-0.14.2/docs/refind/windows-gpt.png refind-0.14.2/docs/refind/tux-refind-theme.png refind-0.14.2/docs/refind/secureboot.html refind-0.14.2/docs/refind/refind.png refind-0.14.2/docs/refind/using.html refind-0.14.2/docs/refind/about.svg refind-0.14.2/docs/refind/mkrlconf.html refind-0.14.2/docs/refind/editor.png refind-0.14.2/docs/refind/bootmode.html refind-0.14.2/docs/refind/HashTool2.png refind-0.14.2/docs/refind/func_csr_rotate.png refind-0.14.2/docs/refind/startup-disk.png refind-0.14.2/docs/refind/index.html refind-0.14.2/docs/refind/install.png refind-0.14.2/docs/refind/refind-mkdefault.html refind-0.14.2/docs/refind/mac-theme.png refind-0.14.2/docs/refind/about.png refind-0.14.2/docs/refind/getting.html refind-0.14.2/docs/refind/mvrefind.html refind-0.14.2/docs/refind/refind-install.html refind-0.14.2/docs/refind/os_legacy.png refind-0.14.2/docs/refind/sip.html refind-0.14.2/docs/refind/submenu.png refind-0.14.2/docs/refind/donate.svg refind-0.14.2/docs/refind/asus-bootmanager.jpg refind-0.14.2/docs/refind/func_install.png refind-0.14.2/docs/refind/automatic-submenu.png refind-0.14.2/docs/refind/bootcoup.html refind-0.14.2/docs/refind/themes.html refind-0.14.2/docs/refind/linux.html refind-0.14.2/docs/refind/features.html refind-0.14.2/docs/refind/msinfo32.png refind-0.14.2/docs/refind/easyuefi.png refind-0.14.2/docs/refind/refind-background-snowy.png refind-0.14.2/docs/refind/FDL-1.3.txt refind-0.14.2/docs/refind/refind-background.png refind-0.14.2/docs/refind/papirus-theme.png refind-0.14.2/docs/refind/donate.png refind-0.14.2/docs/refind/asus-bootorder.jpg refind-0.14.2/docs/refind/ambience.png refind-0.14.2/docs/refind/installing.html refind-0.14.2/docs/refind/drivers.html refind-0.14.2/docs/refind/revisions.html refind-0.14.2/docs/refind/HashTool1.png refind-0.14.2/docs/refind/manual-submenu.png refind-0.14.2/docs/refind/todo.html refind-0.14.2/docs/refind/yosemite.html refind-0.14.2/docs/refind/func_bootorder.png refind-0.14.2/docs/refind/configfile.html refind-0.14.2/docs/man/ refind-0.14.2/docs/man/mvrefind.8 refind-0.14.2/docs/man/mkrlconf.8 refind-0.14.2/docs/man/refind-mkdefault.8 refind-0.14.2/docs/man/refind-sb-healthcheck.8 refind-0.14.2/docs/man/refind-install.8 refind-0.14.2/NEWS.txt refind-0.14.2/mkrlconf refind-0.14.2/icons/ refind-0.14.2/icons/os_frugalware.png refind-0.14.2/icons/os_artful.png refind-0.14.2/icons/vol_internal.png refind-0.14.2/icons/func_about.png refind-0.14.2/icons/os_chakra.png refind-0.14.2/icons/os_void.png refind-0.14.2/icons/os_centos.png refind-0.14.2/icons/tool_part.png refind-0.14.2/icons/tool_memtest.png refind-0.14.2/icons/svg/ refind-0.14.2/icons/svg/os_xenial.svg refind-0.14.2/icons/svg/os_gummiboot.svg refind-0.14.2/icons/svg/os_haiku.wonderbrush refind-0.14.2/icons/svg/os_win.svg refind-0.14.2/icons/svg/boot_win.svg refind-0.14.2/icons/svg/mouse.svg refind-0.14.2/icons/svg/os_netbsd.svg refind-0.14.2/icons/svg/tool_fwupdate.svg refind-0.14.2/icons/svg/os_elementary.svg refind-0.14.2/icons/svg/os_refind.svg refind-0.14.2/icons/svg/tool_memtest.svg refind-0.14.2/icons/svg/os_mac.svg refind-0.14.2/icons/svg/os_haiku.svg refind-0.14.2/icons/svg/os_redhat.svg refind-0.14.2/icons/svg/os_debian.svg refind-0.14.2/icons/svg/func_csr_rotate.svg refind-0.14.2/icons/svg/os_clover.svg refind-0.14.2/icons/svg/os_legacy.svg refind-0.14.2/icons/svg/os_refit.svg refind-0.14.2/icons/svg/os_zesty.png refind-0.14.2/icons/svg/tool_rescue.svg refind-0.14.2/icons/svg/os_devuan.svg refind-0.14.2/icons/os_win8.png refind-0.14.2/icons/os_chrome.png refind-0.14.2/icons/os_mandriva.png refind-0.14.2/icons/os_arch.png refind-0.14.2/icons/os_linux.png refind-0.14.2/icons/os_freebsd.png refind-0.14.2/icons/os_clover.png refind-0.14.2/icons/os_mac.png refind-0.14.2/icons/func_firmware.png refind-0.14.2/icons/func_csr_rotate.png refind-0.14.2/icons/os_crunchbang.png refind-0.14.2/icons/os_fedora.png refind-0.14.2/icons/licenses/ refind-0.14.2/icons/licenses/gpl-2.0.txt refind-0.14.2/icons/licenses/lgpl-3.0.txt refind-0.14.2/icons/licenses/gpl-3.0.txt refind-0.14.2/icons/licenses/cc-by-sa-4.0.txt refind-0.14.2/icons/licenses/cc-3.0.txt refind-0.14.2/icons/os_unknown.png refind-0.14.2/icons/os_devuan.png refind-0.14.2/icons/os_ubuntu.png refind-0.14.2/icons/func_exit.png refind-0.14.2/icons/arrow_right.png refind-0.14.2/icons/tool_netboot.png refind-0.14.2/icons/tool_rescue.png refind-0.14.2/icons/os_redhat.png refind-0.14.2/icons/tool_windows_rescue.png refind-0.14.2/icons/os_slackware.png refind-0.14.2/icons/os_network.png refind-0.14.2/icons/os_xenial.png refind-0.14.2/icons/os_trusty.png refind-0.14.2/icons/os_refind.png refind-0.14.2/icons/os_systemd.png refind-0.14.2/icons/os_legacy.png refind-0.14.2/icons/os_hwtest.png refind-0.14.2/icons/vol_optical.png refind-0.14.2/icons/tool_apple_rescue.png refind-0.14.2/icons/tool_shell.png refind-0.14.2/icons/func_install.png refind-0.14.2/icons/tool_fwupdate.png refind-0.14.2/icons/mouse.png refind-0.14.2/icons/os_xubuntu.png refind-0.14.2/icons/os_debian.png refind-0.14.2/icons/os_linuxmint.png refind-0.14.2/icons/os_kubuntu.png refind-0.14.2/icons/tool_mok_tool.png refind-0.14.2/icons/os_netbsd.png refind-0.14.2/icons/vol_net.png refind-0.14.2/icons/os_haiku.png refind-0.14.2/icons/os_refit.png refind-0.14.2/icons/vol_external.png refind-0.14.2/icons/func_shutdown.png refind-0.14.2/icons/README refind-0.14.2/icons/os_opensuse.png refind-0.14.2/icons/os_manjaro.png refind-0.14.2/icons/os_win.png refind-0.14.2/icons/func_reset.png refind-0.14.2/icons/arrow_left.png refind-0.14.2/icons/os_gentoo.png refind-0.14.2/icons/os_zesty.png refind-0.14.2/icons/os_elementary.png refind-0.14.2/icons/os_suse.png refind-0.14.2/icons/os_bionic.png refind-0.14.2/icons/os_mageia.png refind-0.14.2/icons/os_lubuntu.png refind-0.14.2/icons/boot_win.png refind-0.14.2/icons/boot_linux.png refind-0.14.2/icons/vol_efi.png refind-0.14.2/icons/os_uefi.png refind-0.14.2/icons/os_endeavouros.png refind-0.14.2/icons/func_bootorder.png refind-0.14.2/icons/transparent.png refind-0.14.2/icons/func_hidden.png refind-0.14.2/icons/os_gummiboot.png refind-0.14.2/refind-mkdefault refind-0.14.2/refind-install refind-0.14.2/refind.spec refind-0.14.2/include/ refind-0.14.2/include/syslinux_mbr.h refind-0.14.2/include/tiano_includes.h refind-0.14.2/include/refit_call_wrapper.h refind-0.14.2/include/egemb_arrow_right.h refind-0.14.2/include/Bmp.h refind-0.14.2/include/PeImage2.h refind-0.14.2/include/egemb_back_selected_big.h refind-0.14.2/include/Handle.h refind-0.14.2/include/RemovableMedia.h refind-0.14.2/include/egemb_back_selected_small.h refind-0.14.2/include/version.h refind-0.14.2/include/PeImage.h refind-0.14.2/include/egemb_arrow_left.h refind-0.14.2/include/egemb_refind_banner.h refind-0.14.2/refind/ refind-0.14.2/refind/launch_legacy.c refind-0.14.2/refind/config.h refind-0.14.2/refind/apple.h refind-0.14.2/refind/screen.h refind-0.14.2/refind/screen.c refind-0.14.2/refind/pointer.h refind-0.14.2/refind/crc32.h refind-0.14.2/refind/gpt.c refind-0.14.2/refind/install.h refind-0.14.2/refind/AutoGen.h refind-0.14.2/refind/Makefile refind-0.14.2/refind/menu.h refind-0.14.2/refind/linux.c.orig refind-0.14.2/refind/line_edit.h refind-0.14.2/refind/AutoGen.c refind-0.14.2/refind/log.c refind-0.14.2/refind/menu.c.orig refind-0.14.2/refind/mystrings.h refind-0.14.2/refind/gpt.h refind-0.14.2/refind/icns.c refind-0.14.2/refind/log.h refind-0.14.2/refind/linux.c refind-0.14.2/refind/scan.h refind-0.14.2/refind/launch_legacy.h refind-0.14.2/refind/driver_support.h refind-0.14.2/refind/launch_efi.c refind-0.14.2/refind/apple.c refind-0.14.2/refind/driver_support.c refind-0.14.2/refind/icns.h refind-0.14.2/refind/config.c refind-0.14.2/refind/launch_efi.h refind-0.14.2/refind/pointer.c refind-0.14.2/refind/scan.c refind-0.14.2/refind/main.c refind-0.14.2/refind/crc32.c refind-0.14.2/refind/linux.h refind-0.14.2/refind/lib.h refind-0.14.2/refind/menu.c refind-0.14.2/refind/tools_x64/ refind-0.14.2/refind/tools_x64/gptsync_x64.efi refind-0.14.2/refind/line_edit.c refind-0.14.2/refind/lib.c refind-0.14.2/refind/mystrings.c refind-0.14.2/refind/install.c refind-0.14.2/refind/global.h refind-0.14.2/refind/icns.h.orig refind-0.14.2/refind/Make.tiano refind-0.14.2/filesystems/ refind-0.14.2/filesystems/ext4.inf refind-0.14.2/filesystems/test/ refind-0.14.2/filesystems/test/fsw_posix.h refind-0.14.2/filesystems/test/fsw_posix.c refind-0.14.2/filesystems/test/lslr.c refind-0.14.2/filesystems/test/Makefile refind-0.14.2/filesystems/test/fsw_posix_base.h refind-0.14.2/filesystems/test/README refind-0.14.2/filesystems/test/lsroot.c refind-0.14.2/filesystems/gzio.c refind-0.14.2/filesystems/reiserfs.inf refind-0.14.2/filesystems/fsw_base.h refind-0.14.2/filesystems/ntfs.inf refind-0.14.2/filesystems/fsw_ntfs.c refind-0.14.2/filesystems/btrfs.inf refind-0.14.2/filesystems/fsw_reiserfs.h refind-0.14.2/filesystems/fsw_efi_lib.c refind-0.14.2/filesystems/fsw_reiserfs.c refind-0.14.2/filesystems/fsw_core.h refind-0.14.2/filesystems/fsw_ext2.h refind-0.14.2/filesystems/fsw_hfs.c refind-0.14.2/filesystems/crc32c.c refind-0.14.2/filesystems/lzodefs.h refind-0.14.2/filesystems/fsw_ext2.c refind-0.14.2/filesystems/fsw_ext2_disk.h refind-0.14.2/filesystems/AutoGen.h refind-0.14.2/filesystems/Makefile refind-0.14.2/filesystems/minilzo.h refind-0.14.2/filesystems/lzoconf.h refind-0.14.2/filesystems/fsw_iso9660.c refind-0.14.2/filesystems/edk2/ refind-0.14.2/filesystems/edk2/DriverBinding.h refind-0.14.2/filesystems/edk2/ComponentName.h refind-0.14.2/filesystems/fsw_lib.c refind-0.14.2/filesystems/AutoGen.c refind-0.14.2/filesystems/Make.gnuefi refind-0.14.2/filesystems/iso9660.inf refind-0.14.2/filesystems/LICENSE_GPL.txt refind-0.14.2/filesystems/fsw_core.c refind-0.14.2/filesystems/fsw_strfunc.h refind-0.14.2/filesystems/fsw_btrfs_zstd.h refind-0.14.2/filesystems/fsw_iso9660.h refind-0.14.2/filesystems/fsw_efi_base.h refind-0.14.2/filesystems/design.dox refind-0.14.2/filesystems/zstd/ refind-0.14.2/filesystems/zstd/xxhash.h refind-0.14.2/filesystems/zstd/xxhash64.c refind-0.14.2/filesystems/zstd/fse.h refind-0.14.2/filesystems/zstd/mem.h refind-0.14.2/filesystems/zstd/fse_decompress.c refind-0.14.2/filesystems/zstd/huf_decompress.c refind-0.14.2/filesystems/zstd/zstd_decompress.c refind-0.14.2/filesystems/zstd/huf.h refind-0.14.2/filesystems/zstd/error_private.h refind-0.14.2/filesystems/zstd/zstd_internal.h refind-0.14.2/filesystems/zstd/bitstream.h refind-0.14.2/filesystems/zstd/zstd.h refind-0.14.2/filesystems/hfs.inf refind-0.14.2/filesystems/fsw_reiserfs_disk.h refind-0.14.2/filesystems/mk_fsw_strfunc.py refind-0.14.2/filesystems/fsw_efi.h refind-0.14.2/filesystems/ext2.inf refind-0.14.2/filesystems/LICENSE.txt refind-0.14.2/filesystems/fsw_btrfs.c refind-0.14.2/filesystems/fsw_ext4.c refind-0.14.2/filesystems/hfs_format.h refind-0.14.2/filesystems/fsw_efi.c refind-0.14.2/filesystems/minilzo.c refind-0.14.2/filesystems/scandisk.c refind-0.14.2/filesystems/fsw_ext4_disk.h refind-0.14.2/filesystems/fsw_efi_edk2_base.h refind-0.14.2/filesystems/fsw_ext4.h refind-0.14.2/filesystems/fsw_hfs.h refind-0.14.2/filesystems/Make.tiano refind-0.14.2/refind.conf-sample refind-0.14.2/Make.common refind-0.14.2/refind.inf refind-0.14.2/LICENSE.txt refind-0.14.2/net/ refind-0.14.2/net/discovery/ refind-0.14.2/net/discovery/Makefile.housekeeping refind-0.14.2/net/discovery/efi_discovery_prefix.c refind-0.14.2/net/discovery/console.h refind-0.14.2/net/Makefile refind-0.14.2/EfiLib/ refind-0.14.2/EfiLib/BmLib.c refind-0.14.2/EfiLib/gnuefi-helper.c refind-0.14.2/EfiLib/DevicePathUtilities.h refind-0.14.2/EfiLib/gnuefi-helper.h refind-0.14.2/EfiLib/Makefile refind-0.14.2/EfiLib/BdsConnect.c refind-0.14.2/EfiLib/AbsolutePointer.h refind-0.14.2/EfiLib/BdsHelper.h refind-0.14.2/EfiLib/legacy.h refind-0.14.2/EfiLib/LegacyBios.h refind-0.14.2/EfiLib/legacy.c refind-0.14.2/EfiLib/GenericBdsLib.h refind-0.14.2/EfiLib/BdsHelper.c refind-0.14.2/EfiLib/DevicePath.c refind-0.14.2/EfiLib/BdsTianoCore.c refind-0.14.2/EfiLib/Platform.h refind-0.14.2/EfiLib/Make.tiano refind-0.14.2/mvrefind refind-0.14.2/libeg/ refind-0.14.2/libeg/nanojpeg.c refind-0.14.2/libeg/lodepng.h refind-0.14.2/libeg/screen.c refind-0.14.2/libeg/load_bmp.c refind-0.14.2/libeg/efiUgaDraw.h refind-0.14.2/libeg/libegint.h refind-0.14.2/libeg/Makefile refind-0.14.2/libeg/efiConsoleControl.h refind-0.14.2/libeg/image.c refind-0.14.2/libeg/text.c refind-0.14.2/libeg/lodepng.c refind-0.14.2/libeg/load_icns.c refind-0.14.2/libeg/lodepng_xtra.c refind-0.14.2/libeg/egemb_font.h refind-0.14.2/libeg/nanojpeg_xtra.c refind-0.14.2/libeg/libeg.h refind-0.14.2/libeg/egemb_font_large.h refind-0.14.2/libeg/Make.tiano refind-0.14.2/refind-sbat-local.csv refind-0.14.2/refind-sb-healthcheck refind-0.14.2/COPYING.txt refind-0.14.2/keys/ refind-0.14.2/keys/microsoft-pca-public.cer refind-0.14.2/keys/redhatsecureboot003.crt refind-0.14.2/keys/microsoft-uefica-public.cer refind-0.14.2/keys/openSUSE-UEFI-CA-Certificate.crt refind-0.14.2/keys/openSUSE-UEFI-CA-Certificate-4096.crt refind-0.14.2/keys/redhatsecureboot401.cer refind-0.14.2/keys/openSUSE-UEFI-CA-Certificate.cer refind-0.14.2/keys/redhatsecurebootca2.crt refind-0.14.2/keys/canonical-uefi-ca.cer refind-0.14.2/keys/canonical-uefi-ca.crt refind-0.14.2/keys/centossecureboot201.cer refind-0.14.2/keys/SLES-UEFI-CA-Certificate.crt refind-0.14.2/keys/refind.cer refind-0.14.2/keys/centossecurebootca2.cer refind-0.14.2/keys/refind.crt refind-0.14.2/keys/centossecureboot201.crt refind-0.14.2/keys/redhatsecurebootca2.cer refind-0.14.2/keys/microsoft-uefica-public.crt refind-0.14.2/keys/openSUSE-UEFI-CA-Certificate-4096.cer refind-0.14.2/keys/redhatsecureboot401.crt refind-0.14.2/keys/centossecurebootca2.crt refind-0.14.2/keys/redhatsecurebootca4.crt refind-0.14.2/keys/fedora-ca.crt refind-0.14.2/keys/SLES-UEFI-CA-Certificate.cer refind-0.14.2/keys/altlinux.cer refind-0.14.2/keys/redhatsecurebootca4.cer refind-0.14.2/keys/redhatsecureboot003.cer refind-0.14.2/keys/microsoft-kekca-public.cer refind-0.14.2/keys/fedora-ca.cer refind-0.14.2/keys/debian.cer refind-0.14.2/keys/README.txt refind-0.14.2/images/ refind-0.14.2/images/refind-banner.png refind-0.14.2/images/imgprepare.py refind-0.14.2/images/back-selected-big.png refind-0.14.2/images/txt.pl refind-0.14.2/images/arrow_right.png refind-0.14.2/images/refind_banner2.bmp refind-0.14.2/images/refind_banner.bmp refind-0.14.2/images/refind_banner.odt refind-0.14.2/images/arrow_left.png refind-0.14.2/images/refind-banner.svg refind-0.14.2/images/back-selected-small.png refind-0.14.2/images/mkegemb.py refind-0.14.2/images/mkeei.py refind-0.14.2/BUILDING.txt refind-0.14.2/mountesp refind-0.14.2/fonts/ refind-0.14.2/fonts/nimbus-mono-28.png refind-0.14.2/fonts/nimbus-mono-14.png refind-0.14.2/fonts/mkfont.sh refind-0.14.2/fonts/ubuntu-mono-24.png refind-0.14.2/fonts/nimbus-mono-12.png refind-0.14.2/fonts/ubuntu-mono-14.png refind-0.14.2/fonts/ubuntu-mono-16.png refind-0.14.2/fonts/liberation-mono-regular-14.png refind-0.14.2/fonts/nimbus-mono-24.png refind-0.14.2/fonts/ubuntu-mono-28.png refind-0.14.2/fonts/ubuntu-mono-12.png refind-0.14.2/fonts/liberation-mono-regular-12.png refind-0.14.2/fonts/nimbus-mono-16.png refind-0.14.2/fonts/liberation-mono-regular-24.png refind-0.14.2/fonts/liberation-mono-regular-28.png refind-0.14.2/fonts/README.txt refind-0.14.2/README.txt refind-0.14.2/refind-sbat.csv make MAKEWITH=GNUEFI -C libeg make[1]: Entering directory '/tmp/SBo/refind-0.14.2/libeg' /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c nanojpeg.c -o nanojpeg.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c nanojpeg_xtra.c -o nanojpeg_xtra.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c screen.c -o screen.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c image.c -o image.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c text.c -o text.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c load_bmp.c -o load_bmp.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c load_icns.c -o load_icns.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c lodepng.c -o lodepng.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c lodepng_xtra.c -o lodepng_xtra.o /usr/bin/ar cq libeg.a nanojpeg.o nanojpeg_xtra.o screen.o image.o text.o load_bmp.o load_icns.o lodepng.o lodepng_xtra.o make[1]: Leaving directory '/tmp/SBo/refind-0.14.2/libeg' make MAKEWITH=GNUEFI -C mok make[1]: Entering directory '/tmp/SBo/refind-0.14.2/mok' /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c guid.c -o guid.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c mok.c -o mok.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c security_policy.c -o security_policy.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c simple_file.c -o simple_file.o /usr/bin/ar cq libmok.a guid.o mok.o security_policy.o simple_file.o make[1]: Leaving directory '/tmp/SBo/refind-0.14.2/mok' make MAKEWITH=GNUEFI -C gzip make[1]: Entering directory '/tmp/SBo/refind-0.14.2/gzip' /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c decompress_inflate.c -o decompress_inflate.o /usr/bin/ar cq libgzip.a decompress_inflate.o make[1]: Leaving directory '/tmp/SBo/refind-0.14.2/gzip' make MAKEWITH=GNUEFI -C EfiLib make[1]: Entering directory '/tmp/SBo/refind-0.14.2/EfiLib' /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c gnuefi-helper.c -o gnuefi-helper.o /usr/bin/gcc -Os -fno-strict-aliasing -fno-tree-loop-distribute-patterns -fno-stack-protector -fshort-wchar -Wall -DEFIX64 -DEFI_FUNCTION_WRAPPER -m64 -mno-red-zone -fpic -I/usr/include/efi -I/usr/include/efi/x86_64 -I/usr/include/efi/protocol -I../include -I../refind -I../libeg -I../mok -I../gzip -I. -I./../include \ -D__MAKEWITH_GNUEFI -c legacy.c -o legacy.o In file included from /usr/include/efi/efilib.h:45, from legacy.c:20: legacy.c: In function ?BdsAddNonExistingLegacyBootOptions?: legacy.c:794:31: error: passing argument 1 of ?ReallocatePool_1? makes integer from pointer without a cast [-Wint-conversion] 794 | mBootOptionBbsMapping, | ^~~~~~~~~~~~~~~~~~~~~ | | | BOOT_OPTION_BBS_MAPPING * /usr/include/efi/legacy/efilib.h:28:48: note: in definition of macro ?ReallocatePool? 28 | #define ReallocatePool(a,b,c) ReallocatePool_1(a,b,c) | ^ legacy.c:793:29: note: in expansion of macro ?EfiReallocatePool? 793 | mBootOptionBbsMapping = EfiReallocatePool ( | ^~~~~~~~~~~~~~~~~ /usr/include/efi/legacy/efilib.h:35:19: note: expected ?UINTN? {aka ?long unsigned int?} but argument is of type ?BOOT_OPTION_BBS_MAPPING *? 35 | IN UINTN OldSize, | ~~~~~~~^~~~~~~ legacy.c:796:64: error: passing argument 3 of ?ReallocatePool_1? makes pointer from integer without a cast [-Wint-conversion] 796 | (mBootOptionBbsMappingCount + 1) * sizeof (BOOT_OPTION_BBS_MAPPING) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | long unsigned int /usr/include/efi/legacy/efilib.h:28:52: note: in definition of macro ?ReallocatePool? 28 | #define ReallocatePool(a,b,c) ReallocatePool_1(a,b,c) | ^ legacy.c:793:29: note: in expansion of macro ?EfiReallocatePool? 793 | mBootOptionBbsMapping = EfiReallocatePool ( | ^~~~~~~~~~~~~~~~~ /usr/include/efi/legacy/efilib.h:37:20: note: expected ?VOID *? {aka ?void *?} but argument is of type ?long unsigned int? 37 | IN VOID *OldPool OPTIONAL | ~~~~~~~~^~~~~~~ make[1]: *** [../Make.common:186: legacy.o] Error 1 make[1]: Leaving directory '/tmp/SBo/refind-0.14.2/EfiLib' make: *** [Makefile:88: gnuefi] Error 2 rEFInd: Would you like to continue processing the rest of the queue or would you like to abort? If this failed package is a dependency of another package in the queue then it may not make sense to continue. (Y)es to continue, (N)o to abort, (R)etry the build?: [?2004hn [?2004l +++++++++++++++++++++++++++++++++++++++++++ SUMMARY LOG Using the UNSUPPORTED SBo git repository for -current Queue Process: Download, build, and install rEFInd: MD5SUM check for refind-src-0.14.2.tar.gz ... OK Error occurred with build. Please check the log. +++++++++++++++++++++++++++++++++++++++++++ ########################################### Queue process complete! ########################################### - -- Stela dato:2.460.978,473 Loka tempo:2025-10-29 20:21:02 Merkredo Slackware 15.0 x86_64 (post 15.0 -current) - -==- O sujeito que me far? acreditar na imortalidade da alma ainda est? para ressucitar. -- Mill?r Fernandes -----BEGIN PGP SIGNATURE----- Comment: +-----------------------------------------------------+ Comment: ! https://t.me/Gilberto_F_da_Silva ! Comment: +-----------------------------------------------------+ iHUEAREIAB0WIQSWDU9sZ+hOyX91n7l0C/CavLb3GgUCaQKmsAAKCRB0C/CavLb3 GoC2AP9AXr8iWMdpKAD1YZ4bdOyaJaNh9ItaYNnY8qFywsR7kwD/Z+IT5/+FXUld I96ZP7nmHo62Yop1YjcAAR4bmfDun1E= =zB3s -----END PGP SIGNATURE----- From urchlay at slackware.uk Thu Oct 30 00:51:38 2025 From: urchlay at slackware.uk (B. Watson) Date: Wed, 29 Oct 2025 20:51:38 -0400 (EDT) Subject: [Slackbuilds-users] -Current- rEFInd does not compile In-Reply-To: References: Message-ID: On Wed, 29 Oct 2025, Gilberto F da Silva wrote: > Here are my sbopkg.conf file and the log file from the compilation attempt. ... > Using the UNSUPPORTED SBo git repository for -current There's your problem. If you can come up with a patch to fix it, please send it to ponce. From urchlay at slackware.uk Thu Oct 30 01:08:50 2025 From: urchlay at slackware.uk (B. Watson) Date: Wed, 29 Oct 2025 21:08:50 -0400 (EDT) Subject: [Slackbuilds-users] inserting "autoreconf -vi" after the line "cd $PRGNAM-$VERSION" removes the dependency of xbindkeys on guile2.2 In-Reply-To: References: Message-ID: <40c2a8-e738-ac9b-d834-47ba4fb3808b@slackware.uk> On Tue, 28 Oct 2025, Didier Spaier via SlackBuilds-users wrote: > ... Thus is the guile Slackware package (or another version) is installed > building xbindkeys succeeds. Interesting. How much does the Guile language change between version 2.2 and 3.0? If someone's written Guile bindings for xbindkeys, using guile 2.2, should we expect them to still work under guile 3.0? That's not a rhetorical question, I seriously don't know anything about guile. But it would worth finding out before making such a change... From 2458099 at gmail.com Thu Oct 30 01:35:35 2025 From: 2458099 at gmail.com (Gilberto F da Silva) Date: Wed, 29 Oct 2025 22:35:35 -0300 Subject: [Slackbuilds-users] -Current- rEFInd does not compile In-Reply-To: References: Message-ID: <3acb17b4-1ee4-32f3-84e5-65a337fdf94f@gmail.com> B. Watson wrote: > > > On Wed, 29 Oct 2025, Gilberto F da Silva wrote: > >> Here are my sbopkg.conf file and the log file from the compilation >> attempt. > > ... > >> Using the UNSUPPORTED SBo git repository for -current > > There's your problem. > > If you can come up with a patch to fix it, please send it to ponce. So this list only works for the stable version of Slackware. I?ll reinstall the stable version again. -- Gilberto F da Silva -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 423 bytes Desc: OpenPGP digital signature URL: From andrzej at telszewski.com Thu Oct 30 22:14:38 2025 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Thu, 30 Oct 2025 23:14:38 +0100 (GMT+01:00) Subject: [Slackbuilds-users] GitHub PR and update to an update Message-ID: Hi, I've sent an update for *qbs* using GitHub PR. Now, newer version of qbs is available, and I'd like to sent this update as well. However, I cannot target master, because the previous update is not there yet. How can I achieve that using GH PR? Should I target some other branch possibly? Thanks! -- Best regards, Andrzej Telszewski -------------- next part -------------- An HTML attachment was scrubbed... URL: From j at lngn.net Fri Oct 31 00:02:18 2025 From: j at lngn.net (Jay Lanagan) Date: Thu, 30 Oct 2025 20:02:18 -0400 Subject: [Slackbuilds-users] GitHub PR and update to an update In-Reply-To: References: Message-ID: I just did this today with python3-aiohttp. If you did a PR for the previous update, just do another commit to that branch, and it will carry that forward as the latest revision which would then be the one merged into master this week.* * provided it passes all the checks and tests. ? Jay Lanagan > > On Oct 30, 2025 at 6:14 PM, wrote: > > > > Hi, > > I've sent an update for *qbs* using GitHub PR. > Now, newer version of qbs is available, and I'd like to sent this update as well. > > However, I cannot target master, because the previous update is not there yet. > > How can I achieve that using GH PR? > Should I target some other branch possibly? > > Thanks! > > > -- > Best regards, > Andrzej Telszewski > _______________________________________________ SlackBuilds-users mailing list SlackBuilds-users at slackbuilds.org https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ FAQ - https://slackbuilds.org/faq/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Fri Oct 31 00:02:54 2025 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Fri, 31 Oct 2025 07:02:54 +0700 Subject: [Slackbuilds-users] GitHub PR and update to an update In-Reply-To: References: Message-ID: <20251031070254.6735f1bc@home.slackie.org> >I've sent an update for *qbs* using GitHub PR. >Now, newer version of qbs is available, and I'd like to sent this >update as well. > >However, I cannot target master, because the previous update is not >there yet. > >How can I achieve that using GH PR? >Should I target some other branch possibly? If it's not yet in the master branch, you can push another commit in the PR, and i can take the latest commit btw, i haven't seen your PR yet nor it's not in pending -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From andrzej at telszewski.com Fri Oct 31 09:25:22 2025 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Fri, 31 Oct 2025 10:25:22 +0100 Subject: [Slackbuilds-users] GitHub PR and update to an update In-Reply-To: <20251031070254.6735f1bc@home.slackie.org> References: <20251031070254.6735f1bc@home.slackie.org> Message-ID: On 31/10/2025 01:02, Willy Sudiarto Raharjo wrote: >> I've sent an update for *qbs* using GitHub PR. >> Now, newer version of qbs is available, and I'd like to sent this >> update as well. >> >> However, I cannot target master, because the previous update is not >> there yet. >> >> How can I achieve that using GH PR? >> Should I target some other branch possibly? > If it's not yet in the master branch, you can push another commit in > the PR, and i can take the latest commit Such an obvious thing to do! ;) Thanks. > > btw, i haven't seen your PR yet nor it's not in pending Which one do you mean? - for qbs 3.1.0 it's already here https://git.slackbuilds.org/slackbuilds/commit/?id=b9d006ec4 - for 3.1.1 I've just updated the PR on GitHub. From list+gdb at vahedi.org Mon Oct 20 10:06:49 2025 From: list+gdb at vahedi.org (Shahab Vahedi) Date: Mon, 20 Oct 2025 10:06:49 -0000 Subject: [Slackbuilds-users] Updates - 20251018.1 In-Reply-To: <20251018092008.25c68484@home.slackie.org> References: <20251018092008.25c68484@home.slackie.org> Message-ID: <62d543dda2f68c44563df24de907981c52a87710@vahedi.org> October 18, 2025, "Willy Sudiarto Raharjo" wrote: > Sat Oct 18 02:06:52 UTC 2025 > ... > libraries/nlohmann_json: New maintainer. Upgraded for version 3.11.3 The build fails with: json-3.11.3/wsjcpp.yml patching file tests/src/unit-allocator.cpp Hunk #1 FAILED at 20. 1 out of 1 hunk FAILED -- saving rejects to file tests/src/unit-allocator.cpp.rej patching file tests/src/unit-regression2.cpp Reversed (or previously applied) patch detected! Assume -R? [n] Apply anyway? [n] Skipping patch. 1 out of 1 hunk ignored -- saving rejects to file tests/src/unit-regression2.cpp.rej It seems both patches [1] are already applied in v3.11.3. Skipping the patching step leads to a successfull installation. -Shahab [1] patches/1_6cec5aefc97ad219b6fd5a4132f88f7c8f6800ee.patch patches/2_660d0b58565073975d6f5d94365d6cbf150a4cf8.patch