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! :)