From urchlay at slackware.uk Wed Jul 1 04:40:10 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 1 Jul 2026 00:40:10 -0400 (EDT) Subject: [Slackbuilds-users] musepack-tools In-Reply-To: <53d4792a-2615-480f-9fb1-8cc9f84b63d5@yahoo.com> References: <68ba84bf-3f3-2e89-e07-66c456a8fe1@slackware.uk> <53d4792a-2615-480f-9fb1-8cc9f84b63d5@yahoo.com> Message-ID: On Tue, 30 Jun 2026, Antonio Leal wrote: > Hello B. Watson, > > Sure I'll take then and will submit as described below. > > Cheers Thanks. I've got a list of 422 maintainers who haven't been active since before Slackware 15.0 was released, going through and orphaning the really outdated builds, emailing maintainers, and trying to find new maintainers for ones with dependees. In a few days, there'll be a long list posted to the mailing list... you taking these builds helps the list be slightly less long :) From willysr at slackbuilds.org Wed Jul 1 05:02:55 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Wed, 1 Jul 2026 12:02:55 +0700 Subject: [Slackbuilds-users] musepack-tools In-Reply-To: References: <68ba84bf-3f3-2e89-e07-66c456a8fe1@slackware.uk> <53d4792a-2615-480f-9fb1-8cc9f84b63d5@yahoo.com> Message-ID: <20260701120255.0266afbc@office64.slackie.org> >Thanks. I've got a list of 422 maintainers who haven't been active >since before Slackware 15.0 was released, going through and orphaning >the really outdated builds, emailing maintainers, and trying to find >new maintainers for ones with dependees. > >In a few days, there'll be a long list posted to the mailing >list... you taking these builds helps the list be slightly less >long :) The goal is to remove those orphaned scripts in the next devel cycle, but if someone is willing to step up to take care of the scripts and make sure it would build for -stable and next -stable, that would be better. -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From 414N at slacky.it Wed Jul 1 08:07:20 2026 From: 414N at slacky.it (414N) Date: Wed, 1 Jul 2026 10:07:20 +0200 Subject: [Slackbuilds-users] libindi-2.0.6 build fails In-Reply-To: <451efeb9-8f69-4e2d-a0ad-6ee0a2a5287a@cgpp.com> References: <451efeb9-8f69-4e2d-a0ad-6ee0a2a5287a@cgpp.com> Message-ID: Il 01/07/26 01:17, J. Milgram via SlackBuilds-users ha scritto: > [? 1%] Building C object libs/dsp/CMakeFiles/dsp.dir/fits.c.o > In file included from /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.cpp:18: > /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:78:57: error: ?uint16_t? > has not been declared > ? ?78 |? ? ? ? ?void connectToHost(const std::string &hostName, > uint16_t port); > ? ? ? | ?^~~~~~~~ > /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:25:1: note: ?uint16_t? is > defined in header ??; this is probably fixable by adding > ?#include ? > ? ?24 | #include "indimacros.h" > ? +++ |+#include Hi Judah, the error happens early in the build and sounds to me a basic issue regarding the c++ compiler or its configuration: - are you using something other than the stock gcc to compile the package (like clang)? Maybe a CC or CXX env variable override? - are you overriding any of the CFLAGS/CXXFLAGS, maybe something that changes the c++ standard version used for the build (like -std=c++14)? I just tried rebuilding the libindi package on my system and it works ok. PS: an upgrade to stellarium 26.2 is incoming ;-) -- Alan Alberghini SBo clone: https://github.com/414n/slackbuilds From milgram at cgpp.com Wed Jul 1 12:20:19 2026 From: milgram at cgpp.com (J. Milgram) Date: Wed, 1 Jul 2026 08:20:19 -0400 Subject: [Slackbuilds-users] libindi-2.0.6 build fails In-Reply-To: References: <451efeb9-8f69-4e2d-a0ad-6ee0a2a5287a@cgpp.com> Message-ID: <40ed5a10-4b4c-4ac4-a5d6-41aeea900b85@cgpp.com> Thanks Alan. > the error happens early in the build and sounds to me a basic issue regarding the c++ compiler or its configuration: Yes, has that feel! I haven't (knowingly) installed anything but the stock gcc and related :~: grep -lr bin/gcc /var/log/packages /var/log/packages/gcc-15.2.0-x86_64-1_slack15.0 /var/log/packages/gcc-brig-11.2.0-x86_64-2 /var/log/packages/gcc-go-15.2.0-x86_64-1_slack15.0 /var/log/packages/gccmakedep-1.0.3-noarch-4 /var/log/packages/rust-opt-1.96.0-x86_64-1_SBo /var/log/packages/rust16-1.79.0-x86_64-1_SBo Not setting CFLAGS, CXXFLAGS or any CC or CXX env variables. Will continue poking around. Looking forward to an upgraded stellarium! thx. Useful to confirm that it does build OK given the right circumstances. Judah On 7/1/26 04:07, 414N wrote: > Il 01/07/26 01:17, J. Milgram via SlackBuilds-users ha scritto: >> [? 1%] Building C object libs/dsp/CMakeFiles/dsp.dir/fits.c.o >> In file included from /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.cpp:18: >> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:78:57: error: ?uint16_t? >> has not been declared >> ?? ?78 |? ? ? ? ?void connectToHost(const std::string &hostName, >> uint16_t port); >> ?? ? ? | ?^~~~~~~~ >> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:25:1: note: ?uint16_t? >> is defined in header ??; this is probably fixable by adding >> ?#include ? >> ?? ?24 | #include "indimacros.h" >> ?? +++ |+#include > > Hi Judah, > > the error happens early in the build and sounds to me a basic issue > regarding the c++ compiler or its configuration: > > ?- are you using something other than the stock gcc to compile the > package (like clang)? Maybe a CC or CXX env variable override? > ?- are you overriding any of the CFLAGS/CXXFLAGS, maybe something that > changes the c++ standard version used for the build (like -std=c++14)? > > I just tried rebuilding the libindi package on my system and it works ok. > > PS: an upgrade to stellarium 26.2 is incoming ;-) > > -- ===== milgram at cgpp.com 301-257-7069 From andrzej at telszewski.com Thu Jul 2 08:27:39 2026 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Thu, 2 Jul 2026 10:27:39 +0200 Subject: [Slackbuilds-users] nodejs22 fails to build - internal compiler error In-Reply-To: <48A18FC1-39D6-46CC-82D9-90FA10CFDEFF@t-rg.ws> References: <56db2a2a-8b2f-4af2-b730-cac86f29b22e@telszewski.com> <48A18FC1-39D6-46CC-82D9-90FA10CFDEFF@t-rg.ws> Message-ID: Hi, I ended up building node with LLVM 22 from /extra On 28/06/2026 21:07, fsLeg via SlackBuilds-users wrote: > No idea. It built fine on my machine and passed the weekly build check in CI. 22.23.1 is a minor bugfix update, 22.23.0 was a security update, so nothing major changed recently. Probably something is wrong with your environment. Try spinning up an LXC container with a clean installation and build there. > > I run GCC 15.2.0 from testing/, CI uses stock 11.2.0, both build nodejs22 fine. > > On June 28, 2026 21:47:13 GMT+03:00, Andrzej Telszewski wrote: >> Hi, >> >> while trying to build nodejs22, I receive the following compile error: >> >> >> FAILED: obj/tools/v8_gypfiles/gen/torque-generated/src/builtins/v8_initializers.string-trim-tq-csa.o >> c++ -MMD -MF obj/tools/v8_gypfiles/gen/torque-generated/src/builtins/v8_initializers.string-trim-tq-csa.o.d -D_GLIBCXX_USE_CXX11_ABI=1 -D_FILE_OFFSET_BITS=64 -DNODE_OPENSSL_CONF_NAME=nodejs_conf -DICU_NO_USER_DATA_OVERRIDE -DV8_GYP_BUILD -DV8_TYPED_ARRAY_MAX_SIZE_IN_HEAP=64 -D__STDC_FORMAT_MACROS -DV8_TARGET_ARCH_X64 -DV8_HAVE_TARGET_OS -DV8_TARGET_OS_LINUX '-DV8_EMBEDDER_STRING="-node.56"' -DENABLE_DISASSEMBLER -DV8_PROMISE_INTERNAL_FIELD_COUNT=1 -DV8_ENABLE_PRIVATE_MAPPING_FORK_OPTIMIZATION -DV8_SHORT_BUILTIN_CALLS -DOBJECT_PRINT -DV8_INTL_SUPPORT -DV8_ATOMIC_OBJECT_FIELD_WRITES -DV8_ENABLE_LAZY_SOURCE_POSITIONS -DV8_USE_SIPHASH -DV8_ENABLE_SEEDED_ARRAY_INDEX_HASH -DV8_SHARED_RO_HEAP -DNDEBUG -DV8_WIN64_UNWINDING_INFO -DV8_ENABLE_REGEXP_INTERPRETER_THREADED_DISPATCH -DV8_USE_ZLIB -DV8_ENABLE_SPARKPLUG -DV8_ENABLE_TURBOFAN -DV8_ENABLE_WEBASSEMBLY -DV8_ENABLE_JAVASCRIPT_PROMISE_HOOKS -DV8_ENABLE_CONTINUATION_PRESERVED_EMBEDDER_DATA -DV8_ALLOCATION_FOLDING -DV8_ALLOCATION_SITE_TRACKING -DV8_ADVANCED_BIGINT_ALGORITHMS -DV8_ENABLE_WASM_SIMD256_REVEC -DUCONFIG_NO_SERVICE=1 -DU_ENABLE_DYLOAD=0 -DU_STATIC_IMPLEMENTATION=1 -DU_HAVE_STD_STRING=1 -DUCONFIG_NO_BREAK_ITERATION=0 -I../../deps/v8 -I../../deps/v8/include -Igen -Igen/generate-bytecode-output-root -I../../deps/v8/third_party/abseil-cpp -I../../deps/icu-small/source/i18n -I../../deps/icu-small/source/common -pthread -Wno-unused-parameter -Wno-strict-overflow -Wno-return-type -Wno-int-in-bool-context -Wno-deprecated -Wno-stringop-overflow -Wno-stringop-overread -Wno-restrict -Wno-array-bounds -Wno-nonnull -Wno-dangling-pointer -flax-vector-conversions -m64 -m64 -O3 -fno-omit-frame-pointer -fdata-sections -ffunction-sections -O3 -fno-rtti -fno-exceptions -fno-strict-aliasing -std=gnu++20 -Wno-invalid-offsetof? -c gen/torque-generated/src/builtins/string-trim-tq-csa.cc -o obj/tools/v8_gypfiles/gen/torque-generated/src/builtins/v8_initializers.string-trim-tq-csa.o >> In file included from ../../deps/v8/src/handles/persistent-handles.h:11, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/heap/local-heap.h:19, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/handles/local-handles.h:12, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/execution/local-isolate.h:12, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/execution/local-isolate-inl.h:9, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/common/ptr-compr-inl.h:10, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/execution/isolate-utils-inl.h:8, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/objects/dictionary-inl.h:9, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/objects/contexts-inl.h:11, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/execution/isolate-inl.h:9, >> ? ? ? ? ? ? ? ? ?from ../../deps/v8/src/heap/factory-inl.h:13, >> ? ? ? ? ? ? ? ? ?from gen/torque-generated/src/builtins/string-trim-tq-csa.cc:21: >> ../../deps/v8/src/api/api.h:313:80: internal compiler error: Segmentation fault >> (...) >> ... >> Does anyone has any clue what might be wrong? > _______________________________________________ > 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 Jul 2 20:56:47 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 2 Jul 2026 16:56:47 -0400 (EDT) Subject: [Slackbuilds-users] bbrun needs a maintainer Message-ID: <131065e1-b8cd-506-d54-4e3646752fb@slackware.uk> Any blackbox users here? bbrun's maintainer just notified me he's abandoning the build. It's "old" software, hasn't been updated upstream in ages. But if anyone still uses it, it's worth keeping in the repo. If someone wants to step up as maintainer... anyone? From urchlay at slackware.uk Fri Jul 3 10:39:34 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 3 Jul 2026 06:39:34 -0400 (EDT) Subject: [Slackbuilds-users] Alan Ianson's builds Message-ID: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> Builds up for grabs: UrbanTerror asunder d1x-rebirth d2x-rebirth openarena prboom sylpheed If you want to take any of these builds over, please reply to this message *and* send an update that changes MAINTAINER and EMAIL in the .info file to your contact information. Any of these builds not taken within a week or so will be orphaned. If nobody else wants prboom, I might take it, just to keep it from vanishing from the repo... but it'd be better if someone else (who doesn't already have ~1000 builds) would take it. I asked the old maintainer about these, and here was the response: ---------- Forwarded message ---------- Date: Tue, 30 Jun 2026 16:14:44 -0700 From: Alan Ianson To: B. Watson Subject: Re: Builds on SBo? On Mon, 29 Jun 2026 23:40:24 -0400 (EDT) "B. Watson" wrote: > You're listed as maintainer for 7 builds on SlackBuilds.org: > > https://slackbuilds.org/advsearch.php?stype=maint&q=Alan%20Ianson > > ...but you haven't updated any of them for about 6 years now. Are you > still interested in maintaining these? > > If not, I will try to find them new maintainers. prboom I may want to > take for myself, since I seem to be the SBo "Doom guy". Yes, you can take over or find new maintainers I will step up in the future if time & circumstance permit. From arnaud.garcia-fernandez at laposte.net Fri Jul 3 11:45:42 2026 From: arnaud.garcia-fernandez at laposte.net (Arnaud) Date: Fri, 03 Jul 2026 11:45:42 +0000 Subject: [Slackbuilds-users] Alan Ianson's builds In-Reply-To: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> References: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> Message-ID: <160D8D34-2A2E-4D67-85DC-21098B603FB5@laposte.net> I'm ok taking over Sylpheed as I've been using it since around 2000... - Yth. Le 3 juillet 2026 10:39:34 UTC, "B. Watson" a ?crit : > >Builds up for grabs: > >UrbanTerror >asunder >d1x-rebirth >d2x-rebirth >openarena >prboom >sylpheed > >If you want to take any of these builds over, please reply to this >message *and* send an update that changes MAINTAINER and EMAIL in the >.info file to your contact information. > >Any of these builds not taken within a week or so will be orphaned. >If nobody else wants prboom, I might take it, just to keep it from >vanishing from the repo... but it'd be better if someone else (who >doesn't already have ~1000 builds) would take it. > >I asked the old maintainer about these, and here was the response: > >---------- Forwarded message ---------- >Date: Tue, 30 Jun 2026 16:14:44 -0700 >From: Alan Ianson >To: B. Watson >Subject: Re: Builds on SBo? > >On Mon, 29 Jun 2026 23:40:24 -0400 (EDT) >"B. Watson" wrote: > >> You're listed as maintainer for 7 builds on SlackBuilds.org: >> >> https://slackbuilds.org/advsearch.php?stype=maint&q=Alan%20Ianson >> >> ...but you haven't updated any of them for about 6 years now. Are you >> still interested in maintaining these? >> >> If not, I will try to find them new maintainers. prboom I may want to >> take for myself, since I seem to be the SBo "Doom guy". > >Yes, you can take over or find new maintainers > >I will step up in the future if time & circumstance permit. >_______________________________________________ >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 matt.egger at gmail.com Fri Jul 3 15:41:57 2026 From: matt.egger at gmail.com (Matt Egger) Date: Fri, 3 Jul 2026 11:41:57 -0400 Subject: [Slackbuilds-users] Alan Ianson's builds In-Reply-To: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> References: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> Message-ID: On Fri, Jul 3, 2026 at 6:44?AM B. Watson wrote: > > > Builds up for grabs: > > UrbanTerror > asunder I can take asunder > If you want to take any of these builds over, please reply to this > message *and* send an update that changes MAINTAINER and EMAIL in the > .info file to your contact information. Will do. -Matt From milgram at cgpp.com Fri Jul 3 20:26:00 2026 From: milgram at cgpp.com (J. Milgram) Date: Fri, 3 Jul 2026 16:26:00 -0400 Subject: [Slackbuilds-users] [SOLVED] libindi-2.0.6 build fails In-Reply-To: <40ed5a10-4b4c-4ac4-a5d6-41aeea900b85@cgpp.com> References: <451efeb9-8f69-4e2d-a0ad-6ee0a2a5287a@cgpp.com> <40ed5a10-4b4c-4ac4-a5d6-41aeea900b85@cgpp.com> Message-ID: <58ece1d9-5056-43e8-ad4c-3700002e102d@cgpp.com> The solution was to take the compiler's advice and #include in libs/indiabstractclient/abstractbaseclient.h libs/indibase/stream/streammanager.h and:? libs/sockets/tcpsocket.h Then it builds and makes the package OK. sboupgrade stellarium seems to do the right thing from there. I still don't understand why I need to insert those #includes, while others seem to be able to build it as is. But maybe I don't have to know everything. FWIW the latest libindi (2.2.3) builds fine right out of the box ... no idea if stellarium would be happy with it, though. thx all for the help. Judah On 7/1/26 08:20, J. Milgram via SlackBuilds-users wrote: > > Thanks Alan. > > > the error happens early in the build and sounds to me a basic issue > regarding the c++ compiler or its configuration: > > Yes, has that feel! > > I haven't (knowingly) installed anything but the stock gcc and related > > :~: grep -lr bin/gcc /var/log/packages > /var/log/packages/gcc-15.2.0-x86_64-1_slack15.0 > /var/log/packages/gcc-brig-11.2.0-x86_64-2 > /var/log/packages/gcc-go-15.2.0-x86_64-1_slack15.0 > /var/log/packages/gccmakedep-1.0.3-noarch-4 > /var/log/packages/rust-opt-1.96.0-x86_64-1_SBo > /var/log/packages/rust16-1.79.0-x86_64-1_SBo > > Not setting CFLAGS, CXXFLAGS or any CC or CXX env variables. > > Will continue poking around. Looking forward to an upgraded stellarium! > > thx. Useful to confirm that it does build OK given the right > circumstances. > > Judah > > On 7/1/26 04:07, 414N wrote: >> Il 01/07/26 01:17, J. Milgram via SlackBuilds-users ha scritto: >>> [? 1%] Building C object libs/dsp/CMakeFiles/dsp.dir/fits.c.o >>> In file included from >>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.cpp:18: >>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:78:57: error: >>> ?uint16_t? has not been declared >>> ?? ?78 |? ? ? ? ?void connectToHost(const std::string &hostName, >>> uint16_t port); >>> ?? ? ? | ?^~~~~~~~ >>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:25:1: note: ?uint16_t? >>> is defined in header ??; this is probably fixable by adding >>> ?#include ? >>> ?? ?24 | #include "indimacros.h" >>> ?? +++ |+#include >> >> Hi Judah, >> >> the error happens early in the build and sounds to me a basic issue >> regarding the c++ compiler or its configuration: >> >> ?- are you using something other than the stock gcc to compile the >> package (like clang)? Maybe a CC or CXX env variable override? >> ?- are you overriding any of the CFLAGS/CXXFLAGS, maybe something >> that changes the c++ standard version used for the build (like >> -std=c++14)? >> >> I just tried rebuilding the libindi package on my system and it works >> ok. >> >> PS: an upgrade to stellarium 26.2 is incoming ;-) >> >> > -- ===== milgram at cgpp.com 301-257-7069 From urchlay at slackware.uk Sat Jul 4 03:41:16 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 3 Jul 2026 23:41:16 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned dependencies Message-ID: <8a1cb9ba-6918-3eb1-79db-64baa12b0ab@slackware.uk> We have a lot of orphaned builds. I'm trying to get rid of the ones that have been orphaned for a long time... but some of them are requirements for other builds that are *not* orphaned. The following is a list of orphaned builds, each with a sub-list of builds that depend on it, along with their maintainers. If you see your name here, you should take over maintenance of the orphaned build(s) that your builds depend on. In most cases, there's no need to actually update the build you're taking over (unless you just want to). To take over one of these builds, just send us an update (via website or github/gitlab) setting the name/email in the .info file to your contact info. You don't need to ask the old maintainer for permission because there isn't one (they're already orphaned/unmaintained). The list: cargo-c and rav1e libheif, heif-gimp-plugin (Edward W. Koenig ) qt-heif-image-plugin (Marek ?rejma ) mugshot gtklock-userinfo-module (Jay Lanagan ) bazel fcitx5-mozc (JW(Shinichi Abe) ) electron vesktop (Pouria Rezaei ) Fiona, munch, cligj: gj2ascii and rasterio (Benjamin Trigona-Harany ) libgnomecups, libgnomeprint, and libgnomeprintui Bob Funk (because they're GNOME components) python3-h5py RepeatMasker (Petar Petrov ) cowpatty wifite (Andre Fernando ) perl-Log-Message-Simple, perl-Term-UI, perl-Log-Message, perl-Object-Accessor perl-CPANPLUS (Sergey Poznyakoff ) perl-Net-XMPP, perl-XML-Stream perl-Net-Jabber (Christopher Walker ) perl-Sys-Mmap ZoneMinder (Geno Bob ) perl-Test-Number-Delta perl-Convert-Color (Randall Sawyer ) perl-MaxMind-DB-Reader (Jan F. Chadima ) perl-Text-Iconv muttprint (Manuel Arg?elles ) python3-h5py RepeatMasker (Petar Petrov ) iucode_tool intel-microcode (Andrzej Telszewski ) From urchlay at slackware.uk Sat Jul 4 04:56:24 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 00:56:24 -0400 (EDT) Subject: [Slackbuilds-users] Calling JW(Shinichi Abe) Message-ID: <392fe1c3-4c9a-7db5-b3bb-662c96cbe738@slackware.uk> I can't reach JW(Shinichi Abe) by email. Hopefully you're monitoring this list. I get "user unknown" from your SMTP server. From urchlay at slackware.uk Sat Jul 4 05:16:00 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 01:16:00 -0400 (EDT) Subject: [Slackbuilds-users] Benjamin Trigona-Harany's builds Message-ID: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> Benjamin Trigona-Harany abandoned all his builds in 2022. I'm orphaning the ones that nobody else's builds depend on. The ones that other peoples' builds *do* depend on are listed here. If you see your name here, you should take over maintenance of the build(s) that your builds depend on. In most cases, there's no need to actually update the build you're taking over (unless you just want to). To take over one of these builds, just send us an update (via website or github/gitlab) setting the name/email in the .info file to your contact info. You don't need to ask the old maintainer for permission because there isn't one (they're already unmaintained). The list: ITK, Shark, ossim OTB, OTB-legacy: Giancarlo Dessi laszip libLAS, grass: Christoph Willing xplanet cqrlog: Gustavo Conrad libkml libpqxx OTB, OTB-legacy: Giancarlo Dessi gdal: ArTourter stfl newsboat: Andrew Clemons tornado, backports-abc butterfly, graphterm, tornado_systemd, toro: Dimitris Zlatanidis python2-matplotlib: Serban Udrea backcall ipython, python3-librosa: Jeremy Hansen jupyter* stuff: Isaac Yu Isaac Yu python3-gitdb2, python3-smmap2 GitPython, kaaedit: Dimitris Zlatanidis python3-ptyprocess python3-pexpect: Jeremy Hansen python3-terminado: Isaac Yu From kvngncrlsn at gmail.com Sat Jul 4 05:47:25 2026 From: kvngncrlsn at gmail.com (K. Eugene Carlson) Date: Sat, 4 Jul 2026 14:47:25 +0900 Subject: [Slackbuilds-users] Orphaned dependencies In-Reply-To: <8a1cb9ba-6918-3eb1-79db-64baa12b0ab@slackware.uk> References: <8a1cb9ba-6918-3eb1-79db-64baa12b0ab@slackware.uk> Message-ID: fcitx5-mozc.SlackBuild does the build with gyp instead of bazel. bazel has since become the supported build system for mozc, so it would become an actual build dependency if fcitx5-mozc ever sees a version update. Gene On Sat, Jul 4, 2026 at 12:46?PM B. Watson wrote: > > bazel > fcitx5-mozc (JW(Shinichi Abe) ) > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Sat Jul 4 06:05:57 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 02:05:57 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned dependencies In-Reply-To: References: <8a1cb9ba-6918-3eb1-79db-64baa12b0ab@slackware.uk> Message-ID: <91f0d5bb-a325-c619-c26b-c14c4bacc49@slackware.uk> On Sat, 4 Jul 2026, K. Eugene Carlson wrote: > fcitx5-mozc.SlackBuild does the build with gyp instead of bazel. Interesting. So bazel is a false dependency for now... > bazel has since become the supported build system for mozc, so it would become an actual build dependency if fcitx5-mozc ever sees a version update. ...but may not be a false dependency in the future. Hm. I can't reach the fcitx5-mozc maintainer by email; hopefully he'll see this thread and respond to it. From jebrhansen+SBo at gmail.com Sat Jul 4 07:18:57 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Sat, 4 Jul 2026 01:18:57 -0600 Subject: [Slackbuilds-users] Benjamin Trigona-Harany's builds In-Reply-To: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> References: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> Message-ID: I can take backcall and python3-ptyprocess unless Isaac wants them. However, I won't be able to push a maintainer update for another week or so (I'll finally be back to get everything set back up from my flooded house). Jeremy On Fri, Jul 3, 2026, 11:16?PM B. Watson wrote: > > Benjamin Trigona-Harany abandoned all his builds in 2022. I'm orphaning > the ones that nobody else's builds depend on. > > The ones that other peoples' builds *do* depend on are listed here. > > If you see your name here, you should take over maintenance of the > build(s) that your builds depend on. In most cases, there's no need > to actually update the build you're taking over (unless you just want > to). > > To take over one of these builds, just send us an update (via website > or github/gitlab) setting the name/email in the .info file to your > contact info. You don't need to ask the old maintainer for permission > because there isn't one (they're already unmaintained). > > The list: > > > ITK, Shark, ossim > OTB, OTB-legacy: Giancarlo Dessi > > laszip > libLAS, grass: Christoph Willing > > xplanet > cqrlog: Gustavo Conrad > > libkml > > libpqxx > OTB, OTB-legacy: Giancarlo Dessi > gdal: ArTourter > > stfl > newsboat: Andrew Clemons > > tornado, backports-abc > butterfly, graphterm, tornado_systemd, toro: Dimitris Zlatanidis < > d.zlatanidis at gmail.com> > python2-matplotlib: Serban Udrea > > backcall > ipython, python3-librosa: Jeremy Hansen > jupyter* stuff: Isaac Yu Isaac Yu < > isaacyu at protonmail.com> > > python3-gitdb2, python3-smmap2 > GitPython, kaaedit: Dimitris Zlatanidis > > python3-ptyprocess > python3-pexpect: Jeremy Hansen > python3-terminado: Isaac Yu > -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Sat Jul 4 08:13:49 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 04:13:49 -0400 (EDT) Subject: [Slackbuilds-users] Benjamin Trigona-Harany's builds In-Reply-To: References: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> Message-ID: <441ef4f8-afe4-cd6a-87f2-30a0b49cacc8@slackware.uk> On Sat, 4 Jul 2026, Jeremy Hansen wrote: > I can take backcall and python3-ptyprocess unless Isaac wants them. However, I won't be able to push a maintainer update for another week or so (I'll finally be back > to get everything set back up from my flooded house). I can just change the .info files, put your name/email in place of the old maintainer. Hate that your house got flooded. Knew you were dealing with some kind of problem, didn't know it was that. Hope you & everyone around you are OK. From urchlay at slackware.uk Sat Jul 4 08:34:59 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 04:34:59 -0400 (EDT) Subject: [Slackbuilds-users] misc/beep work for anyone? Message-ID: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> "beep" is supposed to make the PC speaker beep... but I can't make it work on either of the boxes I tested it on. When run as root, it doesn't give any error, and strace shows it doing iotcl() calls on /dev/tty0. I'm trying to see if this works *at all* for *anyone*. The code is 25 or more years old, so it may just be that it's not compatible with modern kernels... Any volunteers want to try it? From chris.willing at linux.com Sat Jul 4 09:01:51 2026 From: chris.willing at linux.com (Christoph Willing) Date: Sat, 4 Jul 2026 19:01:51 +1000 Subject: [Slackbuilds-users] Benjamin Trigona-Harany's builds In-Reply-To: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> References: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> Message-ID: <40a11a69-7b8d-4f2c-83ea-7b560410b701@linux.com> On 4/7/26 15:16, B. Watson wrote: > > Benjamin Trigona-Harany abandoned all his builds in 2022. I'm orphaning > the ones that nobody else's builds depend on. > > The ones that other peoples' builds *do* depend on are listed here. > > If you see your name here, you should take over maintenance of the > build(s) that your builds depend on. In most cases, there's no need > to actually update the build you're taking over (unless you just want > to). [snip] > laszip > ? libLAS, grass: Christoph Willing Done. chris From kvngncrlsn at gmail.com Sat Jul 4 09:01:46 2026 From: kvngncrlsn at gmail.com (K. Eugene Carlson) Date: Sat, 4 Jul 2026 18:01:46 +0900 Subject: [Slackbuilds-users] Orphaned dependencies In-Reply-To: <91f0d5bb-a325-c619-c26b-c14c4bacc49@slackware.uk> References: <8a1cb9ba-6918-3eb1-79db-64baa12b0ab@slackware.uk> <91f0d5bb-a325-c619-c26b-c14c4bacc49@slackware.uk> Message-ID: I would be happy to take care of bazel (and fcitx5-mozc, which will definitely need an upgrade for the next repo) if you can't get a hold of him. On Sat, Jul 4, 2026 at 3:11?PM B. Watson wrote: > > I can't reach the fcitx5-mozc maintainer by email; hopefully he'll see > this thread and respond to it. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fsleg at t-rg.ws Sat Jul 4 09:03:08 2026 From: fsleg at t-rg.ws (fsLeg) Date: Sat, 4 Jul 2026 12:03:08 +0300 Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> Message-ID: <5bc4ac37-0ad0-49d0-a376-15747b2847b7@t-rg.ws> Just tried it on my laptops, nothing on both. The Thinkpad one does have a beeper (or at least emulates one) as it sometimes beeps when I bring the boot device menu in BIOS. Haven't had a proper desktop PC in years, maybe more chances for it to work there. On 04.07.2026 11:34, B. Watson wrote: > > "beep" is supposed to make the PC speaker beep... but I can't make > it work on either of the boxes I tested it on. When run as root, it > doesn't give any error, and strace shows it doing iotcl() calls on > /dev/tty0. > > I'm trying to see if this works *at all* for *anyone*. The code is > 25 or more years old, so it may just be that it's not compatible with > modern kernels... > > Any volunteers want to try it? From alex at dcclost.com Sat Jul 4 09:04:33 2026 From: alex at dcclost.com (Alexander Grotewohl) Date: Sat, 4 Jul 2026 09:04:33 +0000 Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> Message-ID: The Slackbuilds one seems to be out of date. A current one is located at https://github.com/spkr-beep/beep Reading the arch wiki for pc speakers (there's a section on "beep" specifically too) made it sound just obnoxious enough not to try though (pcspkr kernel module, udev, limitations) ________________________________ From: SlackBuilds-users on behalf of B. Watson Sent: Saturday, 04 July 2026 04:34:59 To: SlackBuilds.org Users List Subject: [Slackbuilds-users] misc/beep work for anyone? "beep" is supposed to make the PC speaker beep... but I can't make it work on either of the boxes I tested it on. When run as root, it doesn't give any error, and strace shows it doing iotcl() calls on /dev/tty0. I'm trying to see if this works *at all* for *anyone*. The code is 25 or more years old, so it may just be that it's not compatible with modern kernels... Any volunteers want to try it? _______________________________________________ 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 urchlay at slackware.uk Sat Jul 4 09:45:44 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 05:45:44 -0400 (EDT) Subject: [Slackbuilds-users] Benjamin Trigona-Harany's builds In-Reply-To: <40a11a69-7b8d-4f2c-83ea-7b560410b701@linux.com> References: <1fc97a21-29b3-50b-769c-a5f35258aeb8@slackware.uk> <40a11a69-7b8d-4f2c-83ea-7b560410b701@linux.com> Message-ID: <6353dfd-65dd-3ebd-8ec-8cf06467c9b@slackware.uk> On Sat, 4 Jul 2026, Christoph Willing wrote: >> laszip >> ? libLAS, grass: Christoph Willing > > Done. Thanks From urchlay at slackware.uk Sat Jul 4 09:59:57 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 05:59:57 -0400 (EDT) Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> Message-ID: <5a5aa549-369c-ac3b-d9a9-a1b6e85e44f4@slackware.uk> On Sat, 4 Jul 2026, Alexander Grotewohl wrote: > The Slackbuilds one seems to be out of date.? A current one is located at https://github.com/spkr-beep/beep I actually tried that before I tried the old version on SBo. The plan was to update the build... neither version works. > Reading the arch wiki for pc speakers (there's a section on "beep" specifically too) made it sound just obnoxious enough not to try though (pcspkr kernel module, > udev, limitations) The udev stuff is only to allow non-root users to use beep. I ran my tests as root. Just now tried the pcspkr module (it wasn't loaded before, it is now) but it didn't change anything. From antonioleal at yahoo.com Sat Jul 4 11:34:59 2026 From: antonioleal at yahoo.com (Antonio Leal) Date: Sat, 4 Jul 2026 12:34:59 +0100 Subject: [Slackbuilds-users] jdk11 md5 sum mismatch References: Message-ID: jdk11 md5 sum has a mismatch, needs rechecking and updating From urchlay at slackware.uk Sat Jul 4 11:42:31 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 07:42:31 -0400 (EDT) Subject: [Slackbuilds-users] GOSIKI Agiri, onscripter Message-ID: <68edb4c-9df1-c648-84e1-e8b7dc4cf9bd@slackware.uk> Email to GOSIKI Agiri fails, so I'm asking on the list. Are you still maintaining onscripter? It's been 6 years since your last update, but that by itself isn't a problem (if it hasn't needed updating, I mean). Just trying to find out if you're still interested. Please let me know. From r1w1s1 at fastmail.com Sat Jul 4 12:14:37 2026 From: r1w1s1 at fastmail.com (Ricardson) Date: Sat, 04 Jul 2026 09:14:37 -0300 Subject: [Slackbuilds-users] cwm-openbsd and mg-openbsd SlackBuilds In-Reply-To: References: <416b8dd5-d4e8-45cb-8482-745445b9bc61@app.fastmail.com> Message-ID: <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> maybe remove those 2 packages? ---- Kind regards, Ricardson (r1w1s1) On Fri, Jul 3, 2026, at 5:54 PM, Scott Parker wrote: > Sorry, I?m no longer maintaining them. > >> On Jul 3, 2026, at 12:34?PM, Ricardson wrote: >> >> ?Hi Scott, >> >> I noticed you're listed as the maintainer of both **cwm-openbsd** and **mg-openbsd** SlackBuilds, and it also looks like you're the original developer behind them. >> >> Are you still maintaining these packages? I noticed they're still based on the OpenBSD 5.6 versions, so I was curious whether they're still being maintained or if they've effectively become unmaintained. >> >> ---- >> Kind regards, >> Ricardson (r1w1s1) From danix at danix.xyz Sat Jul 4 13:01:57 2026 From: danix at danix.xyz (Danilo M.) Date: Sat, 4 Jul 2026 15:01:57 +0200 Subject: [Slackbuilds-users] Alan Ianson's builds In-Reply-To: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> References: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> Message-ID: If it's not already taken, I'll take over UrbanTerror. Il 03/07/26 12:39 PM, B. Watson ha scritto: > > Builds up for grabs: > > UrbanTerror > asunder > d1x-rebirth > d2x-rebirth > openarena > prboom > sylpheed > > If you want to take any of these builds over, please reply to this > message *and* send an update that changes MAINTAINER and EMAIL in the > .info file to your contact information. > > Any of these builds not taken within a week or so will be orphaned. > If nobody else wants prboom, I might take it, just to keep it from > vanishing from the repo... but it'd be better if someone else (who > doesn't already have ~1000 builds) would take it. > > I asked the old maintainer about these, and here was the response: > > ---------- Forwarded message ---------- > Date: Tue, 30 Jun 2026 16:14:44 -0700 > From: Alan Ianson > To: B. Watson > Subject: Re: Builds on SBo? > > On Mon, 29 Jun 2026 23:40:24 -0400 (EDT) > "B. Watson" wrote: > >> You're listed as maintainer for 7 builds on SlackBuilds.org: >> >> https://slackbuilds.org/advsearch.php?stype=maint&q=Alan%20Ianson >> >> ...but you haven't updated any of them for about 6 years now. Are you >> still interested in maintaining these? >> >> If not, I will try to find them new maintainers. prboom I may want to >> take for myself, since I seem to be the SBo "Doom guy". > > Yes, you can take over or find new maintainers > > I will step up in the future if time & circumstance permit. > _______________________________________________ > 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/ > -- /Kind Regards/ *Danilo Macr?* Blog: https://danix.xyz Forge: https://forge.slackware.nl/danix/ Github: https://github.com/danixland/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From list+sbo at vahedi.org Sat Jul 4 13:24:16 2026 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Sat, 4 Jul 2026 15:24:16 +0200 Subject: [Slackbuilds-users] cwm-openbsd and mg-openbsd SlackBuilds In-Reply-To: <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> References: <416b8dd5-d4e8-45cb-8482-745445b9bc61@app.fastmail.com> <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> Message-ID: I'd like to take over mg if I can get the latest one packaged. So, please don't remove that. Jul 4, 2026 2:15:07 PM Ricardson : > maybe remove those 2 packages? > > ---- > Kind regards, > Ricardson (r1w1s1) > > On Fri, Jul 3, 2026, at 5:54 PM, Scott Parker wrote: >> Sorry, I?m no longer maintaining them. >> >>> On Jul 3, 2026, at 12:34?PM, Ricardson wrote: >>> I noticed you're listed as the maintainer of both **cwm-openbsd** and **mg-openbsd** SlackBuilds, and it also looks like you're the original developer behind them. >>> >>> Are you still maintaining these packages? I noticed they're still based on the OpenBSD 5.6 versions. -Shahab From willysr at slackbuilds.org Sat Jul 4 13:38:07 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 4 Jul 2026 20:38:07 +0700 Subject: [Slackbuilds-users] Updates - 20260704.1 Message-ID: <20260704203807.26c92bb0@home.slackie.org> We have tons of Updates (or Orphaned/Removed) in this batch of updates as we have too many scripts that have gone unmaintained nor orphaned. The idea is to remove those scripts that were unmaintained or orphaned as much as we can before the development cycle for next repo starts. Sat Jul 4 12:29:08 UTC 2026 academic/artha: Orphaned (unmaintained). academic/cld2: Orphaned (unmaintained). academic/fann: Orphaned (unmaintained). academic/free42: Orphaned (unmaintained). academic/itex2mml: Orphaned (unmaintained). academic/latex2html: Orphaned (unmaintained). academic/mathomatic: Orphaned (unmaintained). academic/papi: Orphaned (unmaintained). academic/qcl: Orphaned (unmaintained). academic/siril: Orphaned (unmaintained). academic/stellarium: Upgraded for version 26.2 academic/sundials: Remove reference to cmake-202x. academic/wxMaxima: Remove reference to cmake-202x. accessibility/Synkron: Orphaned (unmaintained). accessibility/jpilot: Orphaned (unmaintained). accessibility/shorturl: Orphaned (unmaintained). audio/gimmix: Orphaned (unmaintained). audio/gnomad2: Orphaned (unmaintained). audio/gogglesmm: Orphaned (unmaintained). audio/ices: Orphaned (unmaintained). audio/iripdb: Orphaned (unmaintained). audio/musepack-tools: New maintainer audio/ocenaudio-bin: Updated for version 3.19.5 audio/phat: Orphaned (unmaintained). audio/reaper: Updated for version 7.76 audio/rhythmbox: Orphaned (unmaintained). audio/sacd: Added (Audio CD Decoder). audio/specimen: Orphaned (unmaintained). audio/volti: Orphaned (unmaintained). audio/xmms-ctl: Orphaned (unmaintained). audo/asunder: updated for version 3.0.2 desktop/2bwm: Orphaned (unmaintained). desktop/Alphacube-GTK: Orphaned (unmaintained). desktop/AlsaMixer.app: New maintainer. desktop/ClamAV-GUI: Updated for version 1.4.0 desktop/arc-firefox-theme: Orphaned (unmaintained). desktop/arc-icon-theme: Orphaned (unmaintained). desktop/bmpanel2: Orphaned (unmaintained). desktop/boston-icon-theme: Orphaned (unmaintained). desktop/crystalcursors: Orphaned (unmaintained). desktop/cwm: Updated for version 7.9. desktop/fvwm3: Updated for version 1.1.5. desktop/i3lock: Orphaned (unmaintained). desktop/icewm-themes: Orphaned (unmaintained). desktop/kbdd: Orphaned (unmaintained). desktop/kde44-oxygen-molecule: Orphaned (unmaintained). desktop/kwalletcli: Orphaned (unmaintained). desktop/lemonbar-xft: New maintainer. desktop/light: Orphaned (unmaintained). desktop/lightdm-slick-greeter: Updated for version 2.2.7 desktop/luna-wallpapers: Orphaned (unmaintained). desktop/lxhotkey: Updated for version 0.1.2, changed maintainer. desktop/maitreya: Orphaned (unmaintained). desktop/mimi: Orphaned (unmaintained). desktop/parcellite: Orphaned (unmaintained). desktop/pidgin-libnotify: Orphaned (unmaintained). desktop/pidgin-window_merge: Orphaned (unmaintained). desktop/polybar: Orphaned (unmaintained). desktop/vala-panel-appmenu: Orphaned (unmaintained). desktop/vim-qt: Orphaned (unmaintained). desktop/wmname: Orphaned (unmaintained). desktop/wmsysmon: Updated for version 0.8.1, new maintainer. desktop/xfce4-cpugraph-plugin: Orphaned (unmaintained). development/HeidiSQL: Updated for version 12.20. development/LLgen: Orphaned (unmaintained). development/antigravity2: Updated for version 2.2.1 development/antigravity: Fixed script development/aws-cdk: Updated for version 2.1129.0. development/bbcsdl: Updated script development/cf-cli: Orphaned (unmaintained). development/cmake-opt: Add csh profile script. development/composer: Updated for version 2.10.2 development/cppcheck: Orphaned (unmaintained). development/cursor: Updated for version 3.9.16 development/cvsd: Orphaned (unmaintained). development/cxxtools: Orphaned (unmaintained). development/dejagnu: Orphaned (unmaintained). development/diakonos: Orphaned (unmaintained). development/diff-so-fancy: Fix orphaned "maintainer". development/diffoscope: udated for version 323 development/electron-bin: Updated for version 42.5.1 development/eovim: Orphaned (unmaintained). development/epydoc: Orphaned (unmaintained). development/fly: Orphaned (unmaintained). development/ftjam: Orphaned (unmaintained). development/gambit: Updated for version 4.9.7. development/generatorrunner: Orphaned (unmaintained). development/gitlab-cli: Updated for version 1.106.0. development/hexnet: Orphaned (unmaintained). development/hoppscotch: Updated for version 26.6.0. development/icoutils: New maintainer. development/ign-math2: Orphaned (unmaintained). development/ignition-math: Orphaned (unmaintained). development/jasspa: Orphaned (unmaintained). development/jenv: Orphaned (unmaintained). development/jujutsu: Updated for version 0.43.0 development/julia: Orphaned (unmaintained). development/jupyterlab: Updated for version 4.5.9 development/kompozer: Orphaned (unmaintained). development/latrace: Orphaned (unmaintained). development/liberica-jdk-bin: Removed (unmaintained). development/mongodb-shell: Updated for version 2.9.1. development/mongodb-shell: Updated for version 2.9.2. development/mtasc: Orphaned (unmaintained). development/nant: Orphaned (unmaintained). development/nedit: Updated to version 5.8 + new maintainer development/neovim-qt: Orphaned (unmaintained). development/neovim-remote: Removed (unmaintained). development/notepadqq: Updated for version 20260701_d416b04 development/octant: Orphaned (unmaintained). development/oni: Orphaned (unmaintained). development/opencvs: Orphaned (unmaintained). development/osc: Orphaned (unmaintained). development/pasdoc: Orphaned (unmaintained). development/php82: Updated for version 8.2.32 development/php84: Updated for version 8.4.23 development/phpDocumentor: Orphaned (unmaintained). development/polyml: Orphaned (unmaintained). development/prek: Updated for version 0.4.6. development/pycharm: Updated for version 2026.1.3 development/pyclewn: Orphaned (unmaintained). development/pycscope: Orphaned (unmaintained). development/qconf: Orphaned (unmaintained). development/rapidsvn: Orphaned (unmaintained). development/rebar3: Removed (unmaintained). development/rider: Updated for version 2026.1.4. development/rizin: Updated for version 0.9.1 development/robomongo: Orphaned (unmaintained). development/rtags: Removed (unmaintained). development/sbt: Updated for version 2.0.1 development/sourcegit: Updated for version 2026.14 development/spin: Orphaned (unmaintained). development/srcML: Orphaned (unmaintained). development/stubb: Removed (unmaintained). development/swfmill: Orphaned (unmaintained). development/terraform-ls: Updated for version 0.38.8. development/tkcvs: Orphaned (unmaintained). development/uftrace: Updated for version 20260630_39f97db development/vispatch: Orphaned (unmaintained). development/vscode-bin: Updated for version 1.127.0. development/vstudio: Updated for version 17.5.1 development/witsy: Removed (unmaintained). development/wla-dx: Updated for version 10.7. development/xxdiff: Orphaned (unmaintained). development/yaegi: Removed (unmaintained). development/zed-editor-bin: Updated for version 1.9.0. development/zile: Orphaned (unmaintained). games/OpenJK: Orphaned (unmaintained). games/VASSAL: Orphaned (unmaintained). games/antares: Fixed launcher games/assaultcube: Removed (unmaintained). games/briquolo: Orphaned (unmaintained). games/cataclysmdda: Orphaned (unmaintained). games/crispy-doom: Updated script. games/fheroes2: Updated for version 1.1.17. games/fs2open: Orphaned (unmaintained). games/hlsdk: Orphaned (unmaintained). games/ho1: Orphaned (unmaintained). games/openmw: Orphaned (unmaintained). games/pacman: New maintainer. games/powermanga: Added (New game Powermanga). games/scid: Removed (unmaintained). games/spring: Orphaned (unmaintained). games/sunshine: Orphaned => orphaned. games/tome-sx: Removed (unmaintained). games/voxelands: Orphaned (unmaintained). games/xmoto: Remove reference to cmake-202x. games/xskat: Orphaned (unmaintained). gis/Geohash: Orphaned (unmaintained). gis/geojson: Orphaned (unmaintained). gis/gj2ascii: Orphaned (unmaintained). gis/laszip: New maintainer gis/mapnik: Orphaned (unmaintained). gis/opengrads: Orphaned (unmaintained). gis/osm2pgrouting: Orphaned (unmaintained). gis/pgsql-ogr-fdw: Orphaned (unmaintained). gis/pktools: Orphaned (unmaintained). gis/pointcloud: Orphaned (unmaintained). gis/polyline: Orphaned (unmaintained). gis/python-mapnik: Orphaned (unmaintained). gis/rasterio: Orphaned (unmaintained). gis/whitebox-tools: Orphaned (unmaintained). git/ci: Update CI dependencies. graphics/FSPViewer: Orphaned (unmaintained). graphics/barcode: Orphaned (unmaintained). graphics/dxftoqet: Orphaned (unmaintained). graphics/exact-image: Orphaned (unmaintained). graphics/flameshot: Correct cmake-opt path. graphics/gnome-themes-extras: Orphaned (unmaintained). graphics/lcdtest: Orphaned (unmaintained). graphics/screencloud: Orphaned (unmaintained). graphics/shalbum: Orphaned (unmaintained). graphics/tclblt: Orphaned (unmaintained). ham/gridtracker2: Updated for version 2.260701.1. haskell/haskell-composition: Orphaned (unmaintained). haskell/haskell-double-conversion: Orphaned (unmaintained). haskell/haskell-env-locale: Orphaned (unmaintained). haskell/haskell-pipes: Orphaned (unmaintained). haskell/haskell-zeromq4-haskell: Orphaned (unmaintained). libraries/GLee: Orphaned (unmaintained). libraries/MyGUI: Orphaned (unmaintained). libraries/QR-Code-generator: Reinstate QrCode.hpp libraries/SDL3: Updated for version 3.4.12 libraries/activemq-cpp: Orphaned (unmaintained). libraries/bctoolbox: Fix minimum cmake version. libraries/cln: Orphaned (unmaintained). libraries/flint: Orphaned (unmaintained). libraries/gssdp: Updated for version 1.6.6. libraries/gtk-fortran: Removed (unmaintained). libraries/gts: New maintainer libraries/hdf: Orphaned (unmaintained). libraries/hoedown: Orphaned (unmaintained). libraries/iksemel: Removed (unmaintained). libraries/ldacBT: Updated for version 2.0.2.6. libraries/libaaio: Orphaned (unmaintained). libraries/libagentcrypt: Removed (unmaintained). libraries/libasr: Removed (unmaintained). libraries/libayatana-appindicator-glib: Updated for version 2.0.3. libraries/libcuefile: New maintainer libraries/libcurl-gnutls: Updated for version 8.21.0. libraries/libdmapsharing: Orphaned (unmaintained). libraries/libee: Orphaned (unmaintained). libraries/libesmtp: Orphaned (unmaintained). libraries/libhid: Orphaned (unmaintained). libraries/libiio: Orphaned (unmaintained). libraries/libixp: Orphaned (unmaintained). libraries/libkqueue: Orphaned (unmaintained). libraries/libmaa: Orphaned (unmaintained). libraries/libmodbus: Orphaned (unmaintained). libraries/libmrss: Orphaned (unmaintained). libraries/libnodave: Orphaned (unmaintained). libraries/libnxml: Orphaned (unmaintained). libraries/libotr: New maintainer. libraries/libraqm: Orphaned (maintainer MIA). libraries/librcd: Orphaned (unmaintained). libraries/librdkafka: Updated for version 2.15.0 libraries/libreplaygain: New maintainer libraries/libskk: Orphaned (unmaintained). libraries/libsmi: Orphaned (unmaintained). libraries/libversion: Fix build. libraries/libversion: Updated for version 3.0.4. libraries/libvidcap: Orphaned (unmaintained). libraries/libxmlb: Updated for version 0.3.28. libraries/libzookeeper: Orphaned (unmaintained). libraries/lksctp-tools: New maintainer. libraries/log4net: Orphaned (unmaintained). libraries/mathgl: Orphaned (unmaintained). libraries/mongo-c-driver: Orphaned (unmaintained). libraries/mongo-cxx-driver: Orphaned (unmaintained). libraries/mysql++: Orphaned (unmaintained). libraries/nini: Orphaned (unmaintained). libraries/ocaml-batteries: Orphaned (unmaintained). libraries/ocaml-camomile: Orphaned (unmaintained). libraries/p4api: Orphaned (unmaintained). libraries/pam_usb: Updated for version 0.9.3 libraries/php-pdo_dblib: Orphaned (unmaintained). libraries/pidgin-mra: Orphaned (unmaintained). libraries/pigpio: Orphaned (unmaintained). libraries/ptypes: Orphaned (unmaintained). libraries/python-meld3: Orphaned (unmaintained). libraries/python3-dvdvideo: Orphaned (unmaintained). libraries/qt5-styleplugins: Orphaned (unmaintained). libraries/soci: Removed (unmaintained). libraries/squish: Orphaned (unmaintained). libraries/tree-sitter: Updated for version 0.26.10 libraries/tsocks: Orphaned (unmaintained). libraries/xapian-bindings: Orphaned (unmaintained). misc/BISP: Orphaned (unmaintained). misc/ardesia: Orphaned (unmaintained). misc/ascii: New maintainer. misc/bee-host: Removed (unmaintained). misc/birthday: Orphaned (unmaintained). misc/bsdsfv: Orphaned (unmaintained). misc/cflow: Updated for version 1.8, new maintainer. misc/fcitx5-mozc: Remove unneeded bazel dep. misc/gprename: Add missing dep perl-pango. misc/ibus-chewing: Orphaned (unmaintained). misc/ibus-skk: Orphaned (unmaintained). misc/kasumi: Orphaned (unmaintained). misc/kde_cdemu: Orphaned (unmaintained). misc/kronometer: Orphaned (unmaintained). misc/lbdb: Orphaned (unmaintained). misc/mdic: Orphaned (unmaintained). misc/ollama: Updated for version 0.31.1. misc/open-simh: Updated for version 20260703_a1f57fa misc/owfs: Orphaned (unmaintained). misc/pmw: Add note about maintainer. misc/rsnapshot: Orphaned (unmaintained). misc/spotlighter: Orphaned (unmaintained). misc/xapian-omega: Orphaned (unmaintained). misc/xvnkb: Orphaned (unmaintained). misc/yapet: Orphaned (unmaintained). multimedia/clamz: Orphaned (unmaintained). multimedia/cowbell: Orphaned (unmaintained). multimedia/mimms: Orphaned (unmaintained). multimedia/nrg2iso: Updated for version 0.4.1, new maintainer. multimedia/oggconvert: Orphaned (unmaintained). multimedia/pragha: Orphaned (unmaintained). multimedia/qnapi: Added (Subtitles downloader). multimedia/rosa-media-player: Orphaned (unmaintained). multimedia/serviio: Orphaned (unmaintained). multimedia/strawberry: Updated for version 1.2.21. multimedia/tabu_audio_player: Orphaned (unmaintained). multimedia/tvtime: Orphaned (unmaintained). multimedia/xawtv: Orphaned (unmaintained). multimedia/youtube-music: Updated for version 3.12.0. network/SoulseekQt: Removed (unmaintained). network/UDR: Removed (unmaintained). network/anydesk: Updated for version 8.0.4. network/aoetools: Removed (unmaintained). network/bollux: Orphaned (unmaintained). network/brave-browser: Updated for version 1.91.180 network/brave-origin: Updated for version 1.91.180 network/bsflite: Orphaned (unmaintained). network/btpd: Orphaned (unmaintained). network/cadaver: Orphaned (unmaintained). network/chawan: updated for version 0.4.3 network/cisco-secure-client-vpn: Updated for version 5.1.18.314. network/clive: Orphaned (unmaintained). network/conkeror: Orphaned (unmaintained). network/courier-unicode: Updated for version 2.6.0 network/cryptcat-unix: Orphaned (unmaintained). network/dnsproxy-bin: Updated for version 0.82.1. network/dnstop: Orphaned (unmaintained). network/e2guardian: Orphaned (unmaintained). network/ejabberd-bin: Removed (unmaintained). network/etherpad-lite: Orphaned (unmaintained). network/fdm: Orphaned (unmaintained). network/firehol: Orphaned (unmaintained). network/floorp-bin: Updated for version 12.15.3. network/fqterm: Orphaned (unmaintained). network/franz: Updated for version 6.4.1. network/gallery-dl: Updated for version 1.32.5 network/go-sendxmpp: Removed (unmaintained). network/goimapnotify: Removed (unmaintained). network/googlecl: Orphaned (unmaintained). network/gutenberg: Removed (unmaintained). network/hamachi: Orphaned (non-functional). network/haproxy: Updated for version 3.4.1. network/haskell-network-multicast: Orphaned (unmaintained). network/helium-browser: Updated for version 0.13.6.1 network/identicurse: Orphaned (unmaintained). network/igmpproxy: Orphaned (unmaintained). network/jitsi: Orphaned (unmaintained). network/kwakd: Orphaned (unmaintained). network/ldapvi: Orphaned (unmaintained). network/librewolf: Updated for version 152.0.2_1 network/maildrop: Updated for version 4.0.1 network/malheur: Orphaned (unmaintained). network/megatools: Orphaned (unmaintained). network/metasploit: Orphaned (unmaintained). network/mew: Orphaned (unmaintained). network/microsoft-edge: Updated for version 150.0.4078.48. network/mod_chroot: Orphaned (unmaintained). network/mod_evasive: Orphaned (unmaintained). network/mod_geoip2: Orphaned (unmaintained). network/mod_wsgi-metrics: Orphaned (unmaintained). network/mod_wsgi: Orphaned (unmaintained). network/naim: Orphaned (unmaintained). network/netmask: Added (Netmask generator). network/nfdump: Orphaned (unmaintained). network/noss: Removed (unmaintained). network/opendchub: Orphaned (unmaintained). network/opensmtpd-filter-dkimsign: Removed (unmaintained). network/opera: Updated for version 133.0.5932.10 network/owncloud-client: Removed (unmaintained). network/palemoon: Updated for version 34.3.1. network/periscope: Orphaned (unmaintained). network/pgbouncer: Orphaned (unmaintained). network/pidgin-authorization-blocker: Orphaned (unmaintained). network/pidgin-birthday-reminder: Orphaned (unmaintained). network/pidgin-extprefs: Removed (unmaintained). network/pidgin-nudge: Orphaned (unmaintained). network/pidgin-opensteamworks: Orphaned (unmaintained). network/pidgin-sound: Orphaned (unmaintained). network/pidgin-toolbar-shrink: Orphaned (unmaintained). network/pidgin-whatsapp: Orphaned (unmaintained). network/psad: Orphaned (unmaintained). network/ptokax: Orphaned (unmaintained). network/purple-telegram: Orphaned (unmaintained). network/qutebrowser-bin: Removed (unmaintained). network/r8125: Updated for version 9.018.00. network/sabnzbd: Orphaned (unmaintained). network/skype4pidgin: Removed (unmaintained). network/slack: Updated for version 4.50.143. network/snmpsim: Orphaned (unmaintained). network/sopcast-player: Orphaned (unmaintained). network/sopcast: Orphaned (unmaintained). network/sqlninja: Orphaned (unmaintained). network/squidanalyzer: Orphaned (unmaintained). network/tntnet: Orphaned (unmaintained). network/tor-browser: Updated for version 15.0.17. network/transmission: Updated for version 4.1.3. network/trojita: Orphaned (unmaintained). network/ttdnsd: Orphaned (unmaintained). network/tucan: Orphaned (unmaintained). network/uget-chrome-wrapper: Orphaned (unmaintained). network/vblade: Orphaned (unmaintained). network/vimfx: Removed (unmaintained). network/vivaldi-altffmpeg: Added (Vivaldi propietary media support). network/vivaldi: Updated for version 8.0.4033.57. network/vrrpd: Orphaned (unmaintained). network/vuze: Orphaned (unmaintained). network/w3af: Orphaned (unmaintained). network/wpa-cute: Removed (unmaintained). network/wvdial: Orphaned (unmaintained). network/ytfzf: Removed (unmaintained). network/zen-browser: Updated for version 1.21.4b network/zerotier-one: Orphaned (unmaintained). office/BibTool: Removed (unmaintained). office/NME: Orphaned (unmaintained). office/abiword: Fix homepage. office/apvlv: Removed (unmaintained). office/basket: Orphaned (unmaintained). office/beaver: Orphaned (unmaintained). office/broffice.org: Orphaned (unmaintained). office/dictd: Orphaned (unmaintained). office/elyxer: Orphaned (unmaintained). office/freemind: Orphaned (unmaintained). office/kchmviewer-qt: Removed (unmaintained). office/keepnote: Orphaned (unmaintained). office/ledger-live: Updated for version 4.10.0 office/mtp2-fonts: Removed (unmaintained). office/multivalent-tool-pdf: Removed (unmaintained). office/pdfstudio: Removed (unmaintained). office/pdfstudioviewer: Removed (unmaintained). office/qownnotes: Updated for version 26.7.0. office/tellico: Orphaned (unmaintained). office/timew: Orphaned (unmaintained). office/traduisons: Orphaned (unmaintained). office/trello-cli: Removed (unmaintained). office/verbiste: Orphaned (unmaintained). office/when: Removed (unmaintained). perl/MoarVM: Updated for version 2026.06 perl/libpurple-kwallet-plugin: Orphaned (unmaintained). perl/nqp: Updated for version 2026.06 perl/perl-CSS-Squish: Orphaned (unmaintained). perl/perl-Class-Gomor: Orphaned (unmaintained). perl/perl-Class-ReturnValue: Orphaned (unmaintained). perl/perl-Crypt-OpenSSL-AES: Orphaned (unmaintained). perl/perl-CryptX: Updated for version 0.090. perl/perl-Danga-Socket: Orphaned (unmaintained). perl/perl-DateTime-Format-Mail: Removed (unmaintained). perl/perl-DateTime-Format-RFC3339: Removed (unmaintained). perl/perl-Digest-SHA: Fix orphaned "maintainer". perl/perl-IO-Socket-Multicast: Orphaned (unmaintained). perl/perl-IPTables-ChainMgr: Orphaned (unmaintained). perl/perl-IPTables-Parse: Orphaned (unmaintained). perl/perl-Mail-DMARC: Updated for version 2.20260621. perl/perl-Math-Base85: Orphaned (unmaintained). perl/perl-Math-Complex_C-L: Removed (unmaintained). perl/perl-Math-Complex_C-Q: Removed (unmaintained). perl/perl-Math-Complex_C: Removed (unmaintained). perl/perl-Math-Decimal64: Removed (unmaintained). perl/perl-Math-GMPf: Removed (unmaintained). perl/perl-Math-LongDouble: Removed (unmaintained). perl/perl-Modern-Perl: Orphaned (unmaintained). perl/perl-Module-Versions-Report: Orphaned (unmaintained). perl/perl-Net-Curl: Removed (unmaintained). perl/perl-Net-Daemon: Orphaned (unmaintained). perl/perl-Net-IPv4Addr: Orphaned (unmaintained). perl/perl-Net-IPv6Addr: Orphaned (unmaintained). perl/perl-Net-LibIDN: Orphaned (unmaintained). perl/perl-Net-Libdnet: Orphaned (unmaintained). perl/perl-Net-Pcap: Orphaned (unmaintained). perl/perl-Net-RawIP: Orphaned (unmaintained). perl/perl-Net-Telnet: Orphaned (unmaintained). perl/perl-Net-Write: Orphaned (unmaintained). perl/perl-NetPacket: Orphaned (unmaintained). perl/perl-Regexp-IPv6: Orphaned (unmaintained). perl/perl-Sort-Versions: Orphaned (unmaintained). perl/perl-Sys-Syscall: Orphaned (unmaintained). perl/perl-Test-LongString: Orphaned (unmaintained). perl/perl-Text-Password-Pronounceable: Orphaned (unmaintained). perl/perl-Text-Tabulate: Orphaned (unmaintained). perl/perl-Tree-Simple: Orphaned (unmaintained). perl/perl-WWW-Curl: Orphaned (unmaintained). perl/perl-gstreamer: Orphaned (unmaintained). perl/perl-libintl: Updated for version 1.37, new maintainer. perl/perl-text-aspell: Orphaned (unmaintained). perl/rakudo: Updated for version 2026.06 python/GeoIP-Python: Removed (unmaintained). python/PyXB: Orphaned (unmaintained). python/RBTools: Orphaned (unmaintained). python/SOAPpy: Orphaned (unmaintained). python/affine: Orphaned (unmaintained). python/async_generator: Orphaned (unmaintained). python/backcall: New maintainer. python/bitarray: Orphaned (unmaintained). python/cddb-py: Orphaned (unmaintained). python/jdcal: Removed (unmaintained). python/json-py: Orphaned (unmaintained). python/odict: Removed (unmaintained). python/p4python: Orphaned (unmaintained). python/pycld2: Orphaned (unmaintained). python/pycxx: Orphaned (unmaintained). python/pyfeed: Orphaned (unmaintained). python/pypng: Removed (unmaintained). python/pyquery: Orphaned (maintainer MIA). python/pysvn: Orphaned (unmaintained). python/python-emoji: Orphaned (unmaintained). python/python2-Levenshtein: Orphaned (unmaintained). python/python2-MonthDelta: Orphaned (unmaintained). python/python2-bigfloat: Orphaned (unmaintained). python/python2-cheetah: Orphaned (unmaintained). python/python2-cluster: Orphaned (unmaintained). python/python2-gmpy2: Removed (unmaintained). python/python2-neovim: Removed (unmaintained). python/python2-pdfrw: Removed (unmaintained). python/python2-progress: Removed (unmaintained). python/python2-pycdio: Removed (unmaintained). python/python2-regex: Orphaned (unmaintained). python/python2-simpy: Orphaned (unmaintained). python/python2-wordpress-xmlrpc: Orphaned (unmaintained). python/python2-x11_hash: Orphaned (unmaintained). python/python3-APScheduler: Updated for version 3.11.3. python/python3-maturin: Updated for version 1.14.1. python/python3-obspy: Removed (unmaintained). python/python3-ptyprocess: New maintainer. python/python3-pulsectl-asyncio: Update for 1.3.2 python/python3-pypdf: Updated for version 6.14.2 python/python3-setuptools-rust-opt: Updated for version 1.13.0. python/python3-socks: Updated for version 2.8.2. python/python3-types-python-dateutil: Removed (unmaintained). python/pywal: Orphaned (unmaintained). python/relatorio: Orphaned (unmaintained). python/snuggs: Orphaned (unmaintained). python/sphinxcontrib-websupport: Orphaned (unmaintained). python/timehash: Orphaned (unmaintained). python/xe: Orphaned (unmaintained). ruby/ruby-build: Updated for version 20260701. system/B-em: Updated for version 20260701_6018d5e system/FontAwesome: Updated for version 7.3.0 system/FreeFileSync: Updated for version 14.10 system/Iosevka-aile: Updated for version 34.7.0. system/Iosevka-core: update to 34.7.0 system/Iosevka-etoile: Updated for version 34.7.0. system/Iosevka-slab: Updated for version 34.7.0 system/Iosevka: Updated for version 34.7.0 system/ProFont: Orphaned (unmaintained). system/android-file-transfer: Removed (unmaintained). system/anything-sync-daemon: Orphaned (unmaintained). system/apache-activemq: Orphaned (unmaintained). system/audit: Orphaned (unmaintained). system/babeltrace: Orphaned (unmaintained). system/bfs: Updated for version 4.1.4 system/bit-babbler: Orphaned (unmaintained). system/bottom: Updated for version 0.14.3. system/brave-origin-the-latest: Updated for version 1.0.1 system/byobu: Orphaned (unmaintained). system/ccd2iso: New maintainer. system/clamav: Updated for version 1.5.3. system/crmsh: Orphaned (unmaintained). system/culmus: Orphaned (unmaintained). system/detox: Updated for version 3.0.1, new maintainer. system/dieharder: New maintainer. system/docbook-xml: Orphaned (unmaintained). system/dvdisaster: Orphaned (unmaintained). system/elasticsearch: Orphaned (unmaintained). system/emelfm2: Orphaned (unmaintained). system/fakechroot: Orphaned (unmaintained). system/fastfetch: Updated for version 2.65.2. system/ffproxy: Orphaned (unmaintained). system/file-roller: New maintainer. system/fileschanged: New maintainer. system/fira-code-fonts: Orphaned (unmaintained). system/font-manager: Orphaned (unmaintained). system/freefont: Orphaned (unmaintained). system/fwupd: Updated for version 2.1.6. system/graveman: Orphaned (unmaintained). system/hntool: Orphaned (unmaintained). system/ibam: Orphaned (unmaintained). system/idle3-tools: Removed (unmaintained). system/incus: Updated for version 7.2 system/intelmas: Removed (unmaintained). system/lilyterm: Orphaned (unmaintained). system/limine: Updated for version 12.4.0 system/logpp: Orphaned (unmaintained). system/lziprecover: Updated for version 1.26, new maintainer. system/memuse: Orphaned (unmaintained). system/mongodb: Updated for version 8.2.11. system/nmon: Orphaned (unmaintained). system/ntopng: Removed (unmaintained). system/osquery-bin: Updated for version 5.23.1. system/otf-hermit: New maintainer. system/pam_ssh: Removed (unmaintained). system/pdksh: New maintainer. system/pdsh: Orphaned (unmaintained). system/pev: Orphaned (unmaintained). system/procinfo-ng: Orphaned (unmaintained). system/pspg: Orphaned (unmaintained). system/pwsafe: Orphaned (unmaintained). system/qstardict: Orphaned (unmaintained). system/qtgzmanager: Orphaned (unmaintained). system/rasdaemon: Updated for version 0.8.5. system/rdup: Orphaned (unmaintained). system/rear: Orphaned (unmaintained). system/recoverdm: Updated for version 0.20_9, new maintainer. system/reprepro: Orphaned (unmaintained). system/samhain: Orphaned (unmaintained). system/sarasa-gothic: Updated for version 1.0.40. system/sbokeeper: Removed (unmaintained). system/scanmem: Orphaned (unmaintained). system/siji-font: Orphaned (unmaintained). system/smart: Orphaned (unmaintained). system/sst: Removed (unmaintained). system/sudosh2: Orphaned (unmaintained). system/sunflower: Removed (unmaintained). system/swun: Orphaned (unmaintained). system/tarsnap: Orphaned (unmaintained). system/tc-play: Orphaned (unmaintained). system/tewi-font: Removed (unmaintained). system/thinkfan: Orphaned (unmaintained). system/tm: Removed (unmaintained). system/tokyocabinet: Orphaned (unmaintained). system/tokyotyrant: Orphaned (unmaintained). system/ttf-lato: Orphaned (unmaintained). system/ttmkfdir: Orphaned (unmaintained). system/twin: Orphaned (unmaintained). system/uhd: Orphaned (unmaintained). system/un-fonts-core: Orphaned (unmaintained). system/uptimed: Orphaned (unmaintained). system/usermin: Updated for version 2.550. system/vagrant-public-key: Orphaned (unmaintained). system/vagrant: Orphaned (unmaintained). system/ventoy: Updated for version 1.1.16 system/vim-airline-themes: Removed (unmaintained). system/vim-airline: Removed (unmaintained). system/warp-terminal: Fix orphaned "maintainer". system/wdfs: Orphaned (unmaintained). system/webmin: Updated for version 2.651. system/whowatch: Orphaned (unmaintained). system/wqy-microhei-font-ttf: Orphaned (unmaintained). system/xbrightness: New maintainer. system/xdiskusage: Orphaned (unmaintained). system/xosview: Updated for version 1.25 +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From willysr at slackbuilds.org Sat Jul 4 14:29:28 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 4 Jul 2026 21:29:28 +0700 Subject: [Slackbuilds-users] jdk11 md5 sum mismatch In-Reply-To: References: Message-ID: <20260704212928.66dc601f@home.slackie.org> >jdk11 md5 sum has a mismatch, needs rechecking and updating have you login to oracle site yet? -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From willysr at slackbuilds.org Sat Jul 4 14:30:35 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 4 Jul 2026 21:30:35 +0700 Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <5a5aa549-369c-ac3b-d9a9-a1b6e85e44f4@slackware.uk> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> <5a5aa549-369c-ac3b-d9a9-a1b6e85e44f4@slackware.uk> Message-ID: <20260704213035.757d10d1@home.slackie.org> >> The Slackbuilds one seems to be out of date.? A current one is located at >> https://github.com/spkr-beep/beep > >I actually tried that before I tried the old version on SBo. The plan >was to update the build... neither version works. > >> Reading the arch wiki for pc speakers (there's a section on "beep" >> specifically too) made it sound just obnoxious enough not to try though >> (pcspkr kernel module, udev, limitations) > >The udev stuff is only to allow non-root users to use beep. I ran my >tests as root. > >Just now tried the pcspkr module (it wasn't loaded before, it is now) >but it didn't change anything. last update was me in 2013, so it's time to remove it from SBo -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From jebrhansen+SBo at gmail.com Sat Jul 4 14:47:07 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Sat, 4 Jul 2026 08:47:07 -0600 Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <20260704213035.757d10d1@home.slackie.org> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> <5a5aa549-369c-ac3b-d9a9-a1b6e85e44f4@slackware.uk> <20260704213035.757d10d1@home.slackie.org> Message-ID: On Sat, Jul 4, 2026, 8:30?AM Willy Sudiarto Raharjo wrote: > >> The Slackbuilds one seems to be out of date. A current one is located > at > >> https://github.com/spkr-beep/beep > > > >I actually tried that before I tried the old version on SBo. The plan > >was to update the build... neither version works. > > > >> Reading the arch wiki for pc speakers (there's a section on "beep" > >> specifically too) made it sound just obnoxious enough not to try though > >> (pcspkr kernel module, udev, limitations) > > > >The udev stuff is only to allow non-root users to use beep. I ran my > >tests as root. > > > >Just now tried the pcspkr module (it wasn't loaded before, it is now) > >but it didn't change anything. > Looks like it might require specific hardware. https://github.com/spkr-beep/beep/issues/13 last update was me in 2013, so it's time to remove it from SBo > That is the original version. The forked version mentioned by Alexander had a release in 2022 and commits last year. Jeremy > -------------- next part -------------- An HTML attachment was scrubbed... URL: From antonioleal at yahoo.com Sat Jul 4 15:42:56 2026 From: antonioleal at yahoo.com (Antonio Leal) Date: Sat, 4 Jul 2026 16:42:56 +0100 Subject: [Slackbuilds-users] jdk11 md5 sum mismatch In-Reply-To: <20260704212928.66dc601f@home.slackie.org> References: <20260704212928.66dc601f@home.slackie.org> Message-ID: <2a84e737-3c89-4a5a-b3bd-02486a204026@yahoo.com> I did, and now its fine. This one needs a manual registration+license+download. How does the CI/CE do it? - AL On 7/4/26 15:29, Willy Sudiarto Raharjo wrote: >> jdk11 md5 sum has a mismatch, needs rechecking and updating > > have you login to oracle site yet? > > > -- > 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/ > From matteo.bernardini at gmail.com Sat Jul 4 17:02:40 2026 From: matteo.bernardini at gmail.com (Matteo Bernardini) Date: Sat, 4 Jul 2026 19:02:40 +0200 Subject: [Slackbuilds-users] jdk11 md5 sum mismatch In-Reply-To: <2a84e737-3c89-4a5a-b3bd-02486a204026@yahoo.com> References: <20260704212928.66dc601f@home.slackie.org> <2a84e737-3c89-4a5a-b3bd-02486a204026@yahoo.com> Message-ID: I suppose it doesn't... Matteo Il giorno sab 4 lug 2026 alle ore 17:43 Antonio Leal via SlackBuilds-users < slackbuilds-users at slackbuilds.org> ha scritto: > I did, and now its fine. > > This one needs a manual registration+license+download. How does the > CI/CE do it? > > - AL > > On 7/4/26 15:29, Willy Sudiarto Raharjo wrote: > >> jdk11 md5 sum has a mismatch, needs rechecking and updating > > > > have you login to oracle site yet? > > > > > > -- > > 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/ > > > _______________________________________________ > 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 list+sbo at vahedi.org Sat Jul 4 20:07:06 2026 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Sat, 4 Jul 2026 22:07:06 +0200 Subject: [Slackbuilds-users] cwm-openbsd and mg-openbsd SlackBuilds In-Reply-To: References: <416b8dd5-d4e8-45cb-8482-745445b9bc61@app.fastmail.com> <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> Message-ID: <32af236e-a972-4259-9134-e96daae95bfd@vahedi.org> Jul 4, 2026 Shahab Vahedi: > I'd like to take over mg if I can get the latest one packaged. So, please don't remove that. Scratch that. The upstream is abandoned. -Shahab From urchlay at slackware.uk Sat Jul 4 20:50:50 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 16:50:50 -0400 (EDT) Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <20260704213035.757d10d1@home.slackie.org> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> <5a5aa549-369c-ac3b-d9a9-a1b6e85e44f4@slackware.uk> <20260704213035.757d10d1@home.slackie.org> Message-ID: <9ca3fc57-25ec-46d-2534-96451c9bb2fe@slackware.uk> On Sat, 4 Jul 2026, Willy Sudiarto Raharjo wrote: > last update was me in 2013, so it's time to remove it from SBo Actually, I got it working on my laptop, with the fork from github (which is still maintained, even). So I took over the build. It's kinda niche-market, but it's still useful software. From urchlay at slackware.uk Sat Jul 4 20:53:23 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 16:53:23 -0400 (EDT) Subject: [Slackbuilds-users] cwm-openbsd and mg-openbsd SlackBuilds In-Reply-To: <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> References: <416b8dd5-d4e8-45cb-8482-745445b9bc61@app.fastmail.com> <62a85143-e205-4865-a5eb-2e376dcb03a3@app.fastmail.com> Message-ID: <19d3885b-68b6-44-5a0-5b7fec5fec11@slackware.uk> On Sat, 4 Jul 2026, Ricardson wrote: > maybe remove those 2 packages? Yeah, I think so. From urchlay at slackware.uk Sat Jul 4 22:09:43 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 18:09:43 -0400 (EDT) Subject: [Slackbuilds-users] lightyears Message-ID: <4a8f3178-506a-fb4b-bd6b-e79bfbf75cdc@slackware.uk> Anyone interested in taking over the game lighyears? It's a simple realtime strategy game, it looks like it might be fun. The version on SBo is 1.4. It works, but is rather dated (it's from 2011). There's a new 1.5.2 release from upstream, from March 2026. See: https://github.com/20kly/20kly/tags The SlackBuild will need some work for 1.5.2, since it uses python3 and python3-pyganme, but that shouldn't be difficult. Any takers? From davidnchmelik at gmail.com Sat Jul 4 22:59:36 2026 From: davidnchmelik at gmail.com (David Chmelik) Date: Sat, 4 Jul 2026 15:59:36 -0700 Subject: [Slackbuilds-users] misc/beep work for anyone? In-Reply-To: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> References: <66bfe916-1467-5a32-5b52-e23f1f4cc611@slackware.uk> Message-ID: On 04/07/2026 01:34, B. Watson wrote: > "beep" is supposed to make the PC speaker beep... but I can't make > it work on either of the boxes I tested it on. When run as root, it > doesn't give any error, and strace shows it doing iotcl() calls on > /dev/tty0. > > I'm trying to see if this works *at all* for *anyone*. The code is > 25 or more years old, so it may just be that it's not compatible with > modern kernels... > > Any volunteers want to try it? The beep-1.4.12-x86_64-2_SBo works for me on Slackware64-current with Linux kernel 7.0.14.? It works on my current PC and worked on the computer I gave you as long as I did the following. # /etc/rc.d/rc.modules.local /sbin/modprobe pcspkr# PC speaker -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Sun Jul 5 01:03:40 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 4 Jul 2026 21:03:40 -0400 (EDT) Subject: [Slackbuilds-users] postgresql 14.x going EOL on November 2 Message-ID: <2af29692-dc87-552d-2f1c-8331e334b296@slackware.uk> To everyone who has scripts with REQUIRES="postgresql"... We already have 4 newer versions of postgresql in the repo, postgresql15 through postgresql18. Please test your scripts against these versions, and get them working with the highest-numbered version of postgresql possible. Most likely, most of these will work fine without patching/etc, but there's no way to find out until you try it. postgresql 14.x is going to be EOLed upstream in November of this year, and we plan to remove it from our repo. That's about 90 days from now, which hopefully gives enough time for getting things to work with a newer postgresql. At the same time, we'd like to remove postgresql15, postgresql16, and postgresql17 if possible (if nothing ends up requiring them). Ideally, all dependees should be updated to work with postgresql18 (which may mean updating the dependees' versions, too). Affected builds and maintainers: PyGreSQL (Christoph Willing ) barman (Dimitris Zlatanidis ) cyphesis (Dimitris Zlatanidis ) dovecot-pgsql (Eugene Wissner ) geopandas (ArTourter ) grass (Christoph Willing ) libpqxx (Benjamin Trigona-Harany ) odoo (Fernando Lopez Jr. ) osm2pgsql (Giancarlo Dessi ) osm2pgsql-legacy (Giancarlo Dessi ) pcp (Lockywolf ) pd-psql (Michales Michaloudes ) pdal (Giancarlo Dessi ) perl-DBD-Pg (Kevin Bryant ) pgmodeler (Joielechong ) pgpool-II (Dejan Strbac ) pgrouting (Giancarlo Dessi ) pgsanity (Yth - Arnaud ) pgtcl-ng (Richard Ellis ) php-pgsql (Heinz Wiesinger ) php82 (Eugene Wissner ) php84 (Eugene Wissner ) phppgadmin (Michel A. Begue ) postfix-pgsql (Eugene Wissner ) postgis (Giancarlo Dessi ) psqlodbc (Chris Walker ) python3-psycopg2 (Yth - Arnaud ) python3-psycopg3 (Zlatanidis Dimitris ) qgis (Giancarlo Dessi ) qt5-postgresql (Heinz Wiesinger ) virtualpg (Konrad J Hambrick ) From sbo at linuxgalaxy.org Sun Jul 5 02:02:47 2026 From: sbo at linuxgalaxy.org (KB_SBo) Date: Sun, 05 Jul 2026 02:02:47 +0000 Subject: [Slackbuilds-users] aom-3.6.0 md5sum mismatch Message-ID: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> Hello aom-3.60: expected: 4c73a44a710688e8c496b3740ecee84b found: d41d8cd98f00b204e9800998ecf8427e reason: source file is EMPTY - unable to download via wget or HTTP -Ed From urchlay at slackware.uk Sun Jul 5 05:45:51 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 01:45:51 -0400 (EDT) Subject: [Slackbuilds-users] razercfg? Message-ID: razercfg needs a new maintainer. It looks useful, if you own any of the hardware it supports. Any takers? From urchlay at slackware.uk Sun Jul 5 05:41:29 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 01:41:29 -0400 (EDT) Subject: [Slackbuilds-users] hfsprogs up for grabs Message-ID: <6e36ad3-3484-493d-3746-a8d138256b44@slackware.uk> hfsprogs looks like it would be very useful for anyone who runs both Slackware and Mac OS X. It needs a new maintainer... any takers? From jebrhansen+SBo at gmail.com Sun Jul 5 05:46:57 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Sat, 4 Jul 2026 23:46:57 -0600 Subject: [Slackbuilds-users] razercfg? In-Reply-To: References: Message-ID: I have a Razer mouse. I can take it unless someone else wants it. Jeremy On Sat, Jul 4, 2026, 11:46?PM B. Watson wrote: > > razercfg needs a new maintainer. It looks useful, if you own any of > the hardware it supports. > > Any takers? > _______________________________________________ > 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 urchlay at slackware.uk Sun Jul 5 05:51:50 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 01:51:50 -0400 (EDT) Subject: [Slackbuilds-users] razercfg? In-Reply-To: References: Message-ID: <27ae79d1-53f7-6df2-2538-c249db969a7b@slackware.uk> On Sat, 4 Jul 2026, Jeremy Hansen wrote: > I have a Razer mouse. I can take it unless someone else wants it.? It's yours. Thanks. From andrew.david.strong at gmail.com Sun Jul 5 08:47:31 2026 From: andrew.david.strong at gmail.com (Andrew David) Date: Sun, 5 Jul 2026 18:47:31 +1000 Subject: [Slackbuilds-users] aom-3.6.0 md5sum mismatch In-Reply-To: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> References: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> Message-ID: Hi, I am the former aom maintainer for Sbo and when I looked after the script I also kept a tarball on my personal web space. If there is a new maintainer they will need to do the same I suspect; that web space no longer exists... Andrew On Sun, 5 July 2026, 12:02 KB_SBo, wrote: > Hello > > aom-3.60: > > expected: 4c73a44a710688e8c496b3740ecee84b > found: d41d8cd98f00b204e9800998ecf8427e > > reason: source file is EMPTY - unable to download via wget or HTTP > > -Ed > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From johannes at schoepfer.info Sun Jul 5 14:16:51 2026 From: johannes at schoepfer.info (=?ISO-8859-1?Q?Johannes_Sch=F6pfer?=) Date: Sun, 05 Jul 2026 16:16:51 +0200 Subject: [Slackbuilds-users] Alan Ianson's builds In-Reply-To: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> References: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> Message-ID: <4D421AE9-84D8-48F7-B65B-13B308F1B165@schoepfer.info> Hi, i'll take prboom and send an Update today. Johannes Am 3. Juli 2026 12:39:34 MESZ schrieb "B. Watson" : > >Builds up for grabs: > >UrbanTerror >asunder >d1x-rebirth >d2x-rebirth >openarena >prboom >sylpheed > >If you want to take any of these builds over, please reply to this >message *and* send an update that changes MAINTAINER and EMAIL in the >.info file to your contact information. > >Any of these builds not taken within a week or so will be orphaned. >If nobody else wants prboom, I might take it, just to keep it from >vanishing from the repo... but it'd be better if someone else (who >doesn't already have ~1000 builds) would take it. > >I asked the old maintainer about these, and here was the response: > >---------- Forwarded message ---------- >Date: Tue, 30 Jun 2026 16:14:44 -0700 >From: Alan Ianson >To: B. Watson >Subject: Re: Builds on SBo? > >On Mon, 29 Jun 2026 23:40:24 -0400 (EDT) >"B. Watson" wrote: > >> You're listed as maintainer for 7 builds on SlackBuilds.org: >> >> https://slackbuilds.org/advsearch.php?stype=maint&q=Alan%20Ianson >> >> ...but you haven't updated any of them for about 6 years now. Are you >> still interested in maintaining these? >> >> If not, I will try to find them new maintainers. prboom I may want to >> take for myself, since I seem to be the SBo "Doom guy". > >Yes, you can take over or find new maintainers > >I will step up in the future if time & circumstance permit. >_______________________________________________ >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 milgram at cgpp.com Sun Jul 5 14:25:50 2026 From: milgram at cgpp.com (J. Milgram) Date: Sun, 5 Jul 2026 10:25:50 -0400 Subject: [Slackbuilds-users] [SOLVED] libindi-2.0.6 build fails In-Reply-To: <58ece1d9-5056-43e8-ad4c-3700002e102d@cgpp.com> References: <451efeb9-8f69-4e2d-a0ad-6ee0a2a5287a@cgpp.com> <40ed5a10-4b4c-4ac4-a5d6-41aeea900b85@cgpp.com> <58ece1d9-5056-43e8-ad4c-3700002e102d@cgpp.com> Message-ID: <1e1f055f-211c-4932-8ad3-19fd349c0935@cgpp.com> And just to? close the loop ... sboupgrade stellarium succeeds now with the new stellarium 26.2 SlackBuild too. Thanks for that! JM On 7/3/26 16:26, J. Milgram via SlackBuilds-users wrote: > > > The solution was to take the compiler's advice and #include in > > libs/indiabstractclient/abstractbaseclient.h > > libs/indibase/stream/streammanager.h > > and:? libs/sockets/tcpsocket.h > > Then it builds and makes the package OK. sboupgrade stellarium seems > to do the right thing from there. > > I still don't understand why I need to insert those #includes, while > others seem to be able to build it as is. But maybe I don't have to > know everything. > > FWIW the latest libindi (2.2.3) builds fine right out of the box ... > no idea if stellarium would be happy with it, though. > > thx all for the help. > > Judah > > > > > On 7/1/26 08:20, J. Milgram via SlackBuilds-users wrote: >> >> Thanks Alan. >> >> > the error happens early in the build and sounds to me a basic issue >> regarding the c++ compiler or its configuration: >> >> Yes, has that feel! >> >> I haven't (knowingly) installed anything but the stock gcc and related >> >> :~: grep -lr bin/gcc /var/log/packages >> /var/log/packages/gcc-15.2.0-x86_64-1_slack15.0 >> /var/log/packages/gcc-brig-11.2.0-x86_64-2 >> /var/log/packages/gcc-go-15.2.0-x86_64-1_slack15.0 >> /var/log/packages/gccmakedep-1.0.3-noarch-4 >> /var/log/packages/rust-opt-1.96.0-x86_64-1_SBo >> /var/log/packages/rust16-1.79.0-x86_64-1_SBo >> >> Not setting CFLAGS, CXXFLAGS or any CC or CXX env variables. >> >> Will continue poking around. Looking forward to an upgraded stellarium! >> >> thx. Useful to confirm that it does build OK given the right >> circumstances. >> >> Judah >> >> On 7/1/26 04:07, 414N wrote: >>> Il 01/07/26 01:17, J. Milgram via SlackBuilds-users ha scritto: >>>> [? 1%] Building C object libs/dsp/CMakeFiles/dsp.dir/fits.c.o >>>> In file included from >>>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.cpp:18: >>>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:78:57: error: >>>> ?uint16_t? has not been declared >>>> ?? ?78 |? ? ? ? ?void connectToHost(const std::string &hostName, >>>> uint16_t port); >>>> ?? ? ? | ?^~~~~~~~ >>>> /tmp/SBo/indi-2.0.6/libs/sockets/tcpsocket.h:25:1: note: ?uint16_t? >>>> is defined in header ??; this is probably fixable by >>>> adding ?#include ? >>>> ?? ?24 | #include "indimacros.h" >>>> ?? +++ |+#include >>> >>> Hi Judah, >>> >>> the error happens early in the build and sounds to me a basic issue >>> regarding the c++ compiler or its configuration: >>> >>> ?- are you using something other than the stock gcc to compile the >>> package (like clang)? Maybe a CC or CXX env variable override? >>> ?- are you overriding any of the CFLAGS/CXXFLAGS, maybe something >>> that changes the c++ standard version used for the build (like >>> -std=c++14)? >>> >>> I just tried rebuilding the libindi package on my system and it >>> works ok. >>> >>> PS: an upgrade to stellarium 26.2 is incoming ;-) >>> >>> >> > -- ===== milgram at cgpp.com 301-257-7069 From emmanueln at gmail.com Sun Jul 5 15:20:02 2026 From: emmanueln at gmail.com (Emmanuel) Date: Sun, 5 Jul 2026 12:20:02 -0300 Subject: [Slackbuilds-users] lightyears In-Reply-To: <4a8f3178-506a-fb4b-bd6b-e79bfbf75cdc@slackware.uk> References: <4a8f3178-506a-fb4b-bd6b-e79bfbf75cdc@slackware.uk> Message-ID: Hi, I can update and maintain Lightyears. I already have it running on its latest version. Best regards On Sat, Jul 4, 2026 at 7:15?PM B. Watson wrote: > > Anyone interested in taking over the game lighyears? It's a simple > realtime strategy game, it looks like it might be fun. > > The version on SBo is 1.4. It works, but is rather dated (it's > from 2011). There's a new 1.5.2 release from upstream, from March > 2026. See: > > https://github.com/20kly/20kly/tags > > The SlackBuild will need some work for 1.5.2, since it uses python3 > and python3-pyganme, but that shouldn't be difficult. > > Any takers? > _______________________________________________ > 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/ > > -- ***************** Emmanuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From artourter at gmail.com Sun Jul 5 19:50:09 2026 From: artourter at gmail.com (Greg Tourte) Date: Sun, 5 Jul 2026 20:50:09 +0100 Subject: [Slackbuilds-users] postgresql 14.x going EOL on November 2 In-Reply-To: <2af29692-dc87-552d-2f1c-8331e334b296@slackware.uk> References: <2af29692-dc87-552d-2f1c-8331e334b296@slackware.uk> Message-ID: Thanks for the heads up. Geopandas is not really affected directly as the dependency on postgresql comes from python3-psycopg2 (I should update that dependency to python3-psycopg3) to connect to postgis. So if python3-psycopg* works with the lastest postgresql, so will geopandas. Cheers Greg On Sun, 5 Jul 2026 at 02:03, B. Watson wrote: > > To everyone who has scripts with REQUIRES="postgresql"... > > We already have 4 newer versions of postgresql in the repo, > postgresql15 through postgresql18. Please test your scripts against > these versions, and get them working with the highest-numbered version > of postgresql possible. Most likely, most of these will work fine > without patching/etc, but there's no way to find out until you try it. > > postgresql 14.x is going to be EOLed upstream in November of this > year, and we plan to remove it from our repo. That's about 90 days > from now, which hopefully gives enough time for getting things to work > with a newer postgresql. > > At the same time, we'd like to remove postgresql15, postgresql16, and > postgresql17 if possible (if nothing ends up requiring them). Ideally, > all dependees should be updated to work with postgresql18 (which may > mean updating the dependees' versions, too). > > Affected builds and maintainers: > > PyGreSQL (Christoph Willing ) > barman (Dimitris Zlatanidis ) > cyphesis (Dimitris Zlatanidis ) > dovecot-pgsql (Eugene Wissner ) > geopandas (ArTourter ) > grass (Christoph Willing ) > libpqxx (Benjamin Trigona-Harany ) > odoo (Fernando Lopez Jr. ) > osm2pgsql (Giancarlo Dessi ) > osm2pgsql-legacy (Giancarlo Dessi ) > pcp (Lockywolf ) > pd-psql (Michales Michaloudes ) > pdal (Giancarlo Dessi ) > perl-DBD-Pg (Kevin Bryant ) > pgmodeler (Joielechong ) > pgpool-II (Dejan Strbac ) > pgrouting (Giancarlo Dessi ) > pgsanity (Yth - Arnaud ) > pgtcl-ng (Richard Ellis ) > php-pgsql (Heinz Wiesinger ) > php82 (Eugene Wissner ) > php84 (Eugene Wissner ) > phppgadmin (Michel A. Begue ) > postfix-pgsql (Eugene Wissner ) > postgis (Giancarlo Dessi ) > psqlodbc (Chris Walker ) > python3-psycopg2 (Yth - Arnaud ) > python3-psycopg3 (Zlatanidis Dimitris ) > qgis (Giancarlo Dessi ) > qt5-postgresql (Heinz Wiesinger ) > virtualpg (Konrad J Hambrick ) > -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Sun Jul 5 20:36:26 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 16:36:26 -0400 (EDT) Subject: [Slackbuilds-users] Alan Ianson's builds In-Reply-To: <4D421AE9-84D8-48F7-B65B-13B308F1B165@schoepfer.info> References: <426a37a4-75e-9a99-ee38-304d5f844761@slackware.uk> <4D421AE9-84D8-48F7-B65B-13B308F1B165@schoepfer.info> Message-ID: <85339ddd-1075-e144-3b97-abf9918d1a1@slackware.uk> On Sun, 5 Jul 2026, Johannes Sch?pfer via SlackBuilds-users wrote: > Hi, > > i'll take prboom and send an Update today. Thanks. I played a short game of Doom II with prboom and I guess I've gotten corrupted by gzdoom, I kept trying to mouselook like I was playing Quake. From urchlay at slackware.uk Sun Jul 5 20:39:50 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 16:39:50 -0400 (EDT) Subject: [Slackbuilds-users] lightyears In-Reply-To: References: <4a8f3178-506a-fb4b-bd6b-e79bfbf75cdc@slackware.uk> Message-ID: <377ce8bc-af85-9abf-fb7b-33612ae30a3@slackware.uk> On Sun, 5 Jul 2026, Emmanuel wrote: > Hi,? > I can update and maintain Lightyears. I already have it running on its > latest version.? Nice! Thanks. From urchlay at slackware.uk Sun Jul 5 20:45:39 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 16:45:39 -0400 (EDT) Subject: [Slackbuilds-users] quakeforge up for grabs Message-ID: <345594c9-becf-89c1-bf3b-21e76969cc46@slackware.uk> Anyone want quakeforge? Its old maintainer no longer uses Slackware, so it needs a new home. From urchlay at slackware.uk Sun Jul 5 22:39:57 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 18:39:57 -0400 (EDT) Subject: [Slackbuilds-users] unebootin needs a maintainer Message-ID: <548979d4-b225-d33c-f881-3f9c823aad75@slackware.uk> Anyone using unetbootin, and would like to take over maintenance? It looks too useful to orphan or delete. From sbo at linuxgalaxy.org Sun Jul 5 23:31:04 2026 From: sbo at linuxgalaxy.org (KB_SBo) Date: Sun, 05 Jul 2026 23:31:04 +0000 Subject: [Slackbuilds-users] aom-3.6.0 md5sum mismatch In-Reply-To: References: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> Message-ID: On 7/5/26 01:47, Andrew David wrote: > Hi, > > I am the former aom maintainer for Sbo and when I looked after the > script I also kept a tarball on my personal web space. If there is a new > maintainer they will need to do the same I suspect; that web space no > longer exists... > > Andrew > > On Sun, 5 July 2026, 12:02 KB_SBo, > wrote: > > Hello > > aom-3.60: > > expected: 4c73a44a710688e8c496b3740ecee84b > found: d41d8cd98f00b204e9800998ecf8427e > > reason:? source file is EMPTY - unable to download via wget or HTTP > > -Ed Andrew, No worries; aom is now included in Slackware-current going forward. I took over for the time being and updated the version. Archive is now on Sourceforge SBo links. -Ed From willysr at slackbuilds.org Mon Jul 6 01:33:00 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Mon, 6 Jul 2026 08:33:00 +0700 Subject: [Slackbuilds-users] aom-3.6.0 md5sum mismatch In-Reply-To: References: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> Message-ID: <20260706083300.6901560f@office64.slackie.org> >> I am the former aom maintainer for Sbo and when I looked after the >> script I also kept a tarball on my personal web space. If there is a >> new maintainer they will need to do the same I suspect; that web >> space no longer exists... >> >> Andrew >> >> On Sun, 5 July 2026, 12:02 KB_SBo, > > wrote: >> >> Hello >> >> aom-3.60: >> >> expected: 4c73a44a710688e8c496b3740ecee84b >> found: d41d8cd98f00b204e9800998ecf8427e >> >> reason:? source file is EMPTY - unable to download via wget or >> HTTP >> >> -Ed > >Andrew, > >No worries; aom is now included in Slackware-current going forward. I >took over for the time being and updated the version. Archive is now >on Sourceforge SBo links. Ed, please follow the SlackBuild templates when you take over please remove this part NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "} make $NUMJOBS || make || exit 1 the previous code was -j1 that's probably there for a reason https://git.slackbuilds.org/slackbuilds/commit/?id=38dee70ccd621e9a078a4cb4f0e3847703f694f5 also the comments here # Automatically determine the architecture we're building on: # Unless $ARCH is already set, use uname -m for all other archs: # If the variable PRINT_PACKAGE_NAME is set, then this script will # report what +# the name of the created package would be, and then exit. This information + # could be useful to other scripts. -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Mon Jul 6 02:04:29 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 22:04:29 -0400 (EDT) Subject: [Slackbuilds-users] cups-bjnp up for grabs Message-ID: <457c4c35-25ce-8c25-3456-b0bfd92724ef@slackware.uk> cups-bjnp needs a new maintainer. It's a printer driver, so if you own one of these printers and use the drive, it's in your best interest to take over this build. Anyone interested? From sbo at linuxgalaxy.org Mon Jul 6 02:18:57 2026 From: sbo at linuxgalaxy.org (KB_SBo) Date: Mon, 06 Jul 2026 02:18:57 +0000 Subject: [Slackbuilds-users] aom-3.6.0 md5sum mismatch In-Reply-To: <20260706083300.6901560f@office64.slackie.org> References: <367891cc-61df-4182-9bf5-ea634dbb27f5@linuxgalaxy.org> <20260706083300.6901560f@office64.slackie.org> Message-ID: On 7/5/26 18:33, Willy Sudiarto Raharjo wrote: > > Ed, > > please follow the SlackBuild templates when you take over > > please remove this part > NUMJOBS=${NUMJOBS:-" -j $(expr $(nproc) + 1) "} > make $NUMJOBS || make || exit 1 > > the previous code was -j1 > that's probably there for a reason > https://git.slackbuilds.org/slackbuilds/commit/?id=38dee70ccd621e9a078a4cb4f0e3847703f694f5 > > also the comments here > # Automatically determine the architecture we're building on: > # Unless $ARCH is already set, use uname -m for all other archs: > > # If the variable PRINT_PACKAGE_NAME is set, then this script will > # report what +# the name of the created package would be, and then > exit. This information + > # could be useful to other scripts. > Willy, The script is nearly identical to Pat's script in Current. I just changed some of the build location variables and PKGTYPE. '-j1' is no longer applicable. Since aom is in current and will be dropped from SBo soon, I'd rather leave it as is, unless there is some reason NUMJOBS breaks SBo testing tools. Although I prefer heavy explanatory commentary in a script, I'll remove Pat's "extraneous" comments. -Ed From urchlay at slackware.uk Mon Jul 6 02:40:11 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 22:40:11 -0400 (EDT) Subject: [Slackbuilds-users] Attn Caterino Tommaso, T.O.P. Message-ID: <5996475e-dbc4-aa11-e978-9deacf3be6b@slackware.uk> Tried to reach you via email, but the mail is rejected. Are you still interested in maintaining these builds? WolframEngine cryptominisat kissat louvain-community anki cbmc diffuse jupyter-ipywidgets jupyter-widgetsnbextension scantailor-advanced simplex-desktop jpdfbookmarks krop ibus-typing-booster waydroid Please let us know. From urchlay at slackware.uk Mon Jul 6 02:46:33 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 5 Jul 2026 22:46:33 -0400 (EDT) Subject: [Slackbuilds-users] zarfy needs a new maintainer Message-ID: <5a568668-9efa-8995-635f-7c36482e63c8@slackware.uk> zarfy looks useful, and has no active maintainer. Anyone interested? From danix at danix.xyz Mon Jul 6 12:35:10 2026 From: danix at danix.xyz (Danilo M.) Date: Mon, 6 Jul 2026 14:35:10 +0200 Subject: [Slackbuilds-users] metasploit-framework Message-ID: <5e37a140-e50f-48fa-97f1-8df4b3818956@danix.xyz> Hello everyone, I see in its changelog that metasploit-framework has been orphaned. I maintain an up-to-date SlackBuild for it that repacks the .deb from rapid7 (the authors of Kali Linux). If that's ok I could take over and maintain it. Let me know if OK, and I'll submit a tarball later today. -- /Kind Regards/ *Danilo Macr?* aka '*danix*' Blog: https://danix.xyz Forge: https://forge.slackware.nl/danix/ Github: https://github.com/danixland/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From kvngncrlsn at gmail.com Mon Jul 6 13:25:55 2026 From: kvngncrlsn at gmail.com (K. Eugene Carlson) Date: Mon, 6 Jul 2026 22:25:55 +0900 Subject: [Slackbuilds-users] zarfy needs a new maintainer In-Reply-To: <5a568668-9efa-8995-635f-7c36482e63c8@slackware.uk> References: <5a568668-9efa-8995-635f-7c36482e63c8@slackware.uk> Message-ID: Looks pretty good, and it even builds in -current. I'll make a PR in a bit. On Mon, Jul 6, 2026 at 11:51?AM B. Watson wrote: > > zarfy looks useful, and has no active maintainer. > > Anyone interested? > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at slackbuilds.org Mon Jul 6 15:21:34 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Mon, 6 Jul 2026 22:21:34 +0700 Subject: [Slackbuilds-users] metasploit-framework In-Reply-To: <5e37a140-e50f-48fa-97f1-8df4b3818956@danix.xyz> References: <5e37a140-e50f-48fa-97f1-8df4b3818956@danix.xyz> Message-ID: <20260706222134.47ca07ec@home.slackie.org> >Hello everyone, > >I see in its changelog that metasploit-framework has been orphaned. I >maintain an up-to-date SlackBuild for it that repacks the .deb from >rapid7 (the authors of Kali Linux). > >If that's ok I could take over and maintain it. > >Let me know if OK, and I'll submit a tarball later today. go for it -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Mon Jul 6 15:18:48 2026 From: urchlay at slackware.uk (B. Watson) Date: Mon, 6 Jul 2026 11:18:48 -0400 (EDT) Subject: [Slackbuilds-users] metasploit-framework In-Reply-To: <5e37a140-e50f-48fa-97f1-8df4b3818956@danix.xyz> References: <5e37a140-e50f-48fa-97f1-8df4b3818956@danix.xyz> Message-ID: On Mon, 6 Jul 2026, Danilo M. wrote: > > Hello everyone,? > > I see in its changelog that metasploit-framework has been orphaned. I > maintain an up-to-date SlackBuild for it that repacks the .deb from rapid7 > (the authors of Kali Linux).? > > If that's ok I could take over and maintain it. > > Let me know if OK, and I'll submit a tarball later today. It should be fine. It would be better to call the .deb repack version either metasploit-bin or metasploit-framework-bin. That leaves the regular metasploit name open in case someone wants to de-orphan or submit a new build-from-source for it. From urchlay at slackware.uk Mon Jul 6 15:19:09 2026 From: urchlay at slackware.uk (B. Watson) Date: Mon, 6 Jul 2026 11:19:09 -0400 (EDT) Subject: [Slackbuilds-users] zarfy needs a new maintainer In-Reply-To: References: <5a568668-9efa-8995-635f-7c36482e63c8@slackware.uk> Message-ID: <1cb25e6-5996-674a-4aaa-78ab96096e@slackware.uk> On Mon, 6 Jul 2026, K. Eugene Carlson wrote: > Looks pretty good, and it even builds in -current. I'll make a PR in a bit.? Thanks! From poprocks at gmail.com Mon Jul 6 16:08:34 2026 From: poprocks at gmail.com (Logan Rathbone) Date: Mon, 6 Jul 2026 12:08:34 -0400 Subject: [Slackbuilds-users] bbrun needs a maintainer In-Reply-To: <131065e1-b8cd-506-d54-4e3646752fb@slackware.uk> References: <131065e1-b8cd-506-d54-4e3646752fb@slackware.uk> Message-ID: On Thu, Jul 2, 2026 at 5:02?PM B. Watson wrote: > Any blackbox users here? Not currently but I have used it a bit in the past and could see myself using it again or firing it up from time to time, so I figured, why not give it a try. > bbrun's maintainer just notified me he's abandoning the build. > > It's "old" software, hasn't been updated upstream in ages. But if > anyone still uses it, it's worth keeping in the repo. If someone wants > to step up as maintainer... anyone? I just tried it - it wouldn't build for me on -current without a further patch to deal with newer GCC's not liking multiple re-definitions of global variables without 'extern'. I got a lot of compiler warnings about trying to to' and fro' values between objects of incompatible size (ie, UB type code smells that might only work on 32-bit). I got it to run, but when I launched an xterm, my X server dead-locked and stopped responding and I had to go to a virtual console to kill bbrun. I'd vote in favour of dropping it. We do ship fluxbox which includes fbrun, so folks already have the option of using that instead of bbrun anyway. -Logan From urchlay at slackware.uk Mon Jul 6 21:51:52 2026 From: urchlay at slackware.uk (B. Watson) Date: Mon, 6 Jul 2026 17:51:52 -0400 (EDT) Subject: [Slackbuilds-users] bbrun needs a maintainer In-Reply-To: References: <131065e1-b8cd-506-d54-4e3646752fb@slackware.uk> Message-ID: <157a745d-147a-3f9-e84b-15cf6ec075ca@slackware.uk> On Mon, 6 Jul 2026, Logan Rathbone wrote: > I just tried it - it wouldn't build for me on -current without a > further patch to deal with newer GCC's not liking multiple > re-definitions of global variables without 'extern'. The fix for that for 15.0 was to add -fcommon to the flags. Surprised to hear that doesn't work any more on -current... > I got a lot of compiler warnings about trying to to' and fro' values > between objects of incompatible size (ie, UB type code smells that > might only work on 32-bit). I got it to run, but when I launched an > xterm, my X server dead-locked and stopped responding and I had to go > to a virtual console to kill bbrun. Yuck. > I'd vote in favour of dropping it. We do ship fluxbox which includes > fbrun, so folks already have the option of using that instead of bbrun > anyway. Yeah, I agree, broken and nobody's interested enough to spend the time fixing, including its original author. It shall go away. For now I'll just orphan it, with "broken" in the commit message. In the future, there's going to be a process in place to automatically remove old orphaned builds from the repo, after they've been orphaned for X amount of time (90 days maybe). There are some kinks to work out (like, what if the orphaned build has a non-orphaned dependee?) but it's definitely going to happen. From urchlay at slackware.uk Mon Jul 6 22:08:05 2026 From: urchlay at slackware.uk (B. Watson) Date: Mon, 6 Jul 2026 18:08:05 -0400 (EDT) Subject: [Slackbuilds-users] icecat and compton need maintainers Message-ID: The maintainer of icecat and compton has abandoned them. If anyone's interested in taking over one or both, they're up for grabs. compton hasn't had a new release since 2013. It looks like icecat is still actively developed (last release May 2026), but no longer releases source or binary tarballs (all I can find is a git repo). I found unofficial prebuilt binaries here: https://codeberg.org/jessienab/icecat-bin Building it from source is probably not for the faint of heart... From urchlay at slackware.uk Tue Jul 7 06:15:41 2026 From: urchlay at slackware.uk (B. Watson) Date: Tue, 7 Jul 2026 02:15:41 -0400 (EDT) Subject: [Slackbuilds-users] Thorsten aka tjohann's AVR stuff Message-ID: avr-gcc avr-gdb avr-libc avarice mphidflash openocd These look useful, for someone who owns and uses the hardware they're for. If anyone's using them, please step up and take over as maintainer. From gray at gnu.org.ua Tue Jul 7 06:05:09 2026 From: gray at gnu.org.ua (Sergey Poznyakoff) Date: Tue, 07 Jul 2026 08:05:09 +0200 Subject: [Slackbuilds-users] icecat and compton need maintainers In-Reply-To: Your message of Mon, 6 Jul 2026 18:08:05 -0400 (EDT) References: Message-ID: <20260707080509.3057@pirx.gnu.org.ua> B. Watson wrote: > It looks like icecat is still actively developed (last release May > 2026), but no longer releases source or binary tarballs (all I can > find is a git repo). The git repo is here: https://cgit.git.savannah.gnu.org/cgit/gnuzilla.git and the source tarballs are available at: {ftp,http,https}://ftp.gnu.org/gnu/gnuzilla/ Best, Sergey From urchlay at slackware.uk Tue Jul 7 06:33:38 2026 From: urchlay at slackware.uk (B. Watson) Date: Tue, 7 Jul 2026 02:33:38 -0400 (EDT) Subject: [Slackbuilds-users] icecat and compton need maintainers In-Reply-To: <20260707080509.3057@pirx.gnu.org.ua> References: <20260707080509.3057@pirx.gnu.org.ua> Message-ID: On Tue, 7 Jul 2026, Sergey Poznyakoff wrote: > The git repo is here: > > https://cgit.git.savannah.gnu.org/cgit/gnuzilla.git Yes, that has tags (aka versions) going up through version 140.12.0, from 3 weeks ago. But... > and the source tarballs are available at: > > {ftp,http,https}://ftp.gnu.org/gnu/gnuzilla/ The newest source tarball there is 7 years old: 60.7.0, from 2019. So whoever takes over the build will have to find source tarballs for the current versions, or else host their own. No point in having icecat stay in the repo if it's going to be stuck at an ancient version: I haven't checked for CVEs but I assume any modern full-featured browser that old is riddled with holes. From heiko.rosemann at web.de Tue Jul 7 07:22:14 2026 From: heiko.rosemann at web.de (Heiko Rosemann) Date: Tue, 07 Jul 2026 09:22:14 +0200 Subject: [Slackbuilds-users] Thorsten aka tjohann's AVR stuff In-Reply-To: References: Message-ID: <0540CC40-A2C2-4CB0-B322-AE3968443DFF@web.de> On July 7, 2026 8:15:41 AM GMT+02:00, "B. Watson" wrote: > >avr-gcc avr-gdb avr-libc avarice mphidflash openocd > >These look useful, for someone who owns and uses the hardware they're for. > >If anyone's using them, please step up and take over as maintainer. >_______________________________________________ >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/ > I can take avr-gcc, avr-gdb and avr-libc (in fact I have an update for avr-libc locally). Don't have any hardware for the other three, I believe, but I'll double check. Heiko P.S: I'm about to go on holiday without computer and largely without internet, so I may not update until mid August. -- Sent from my Android device with K-9 Mail. Please excuse my brevity. -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Tue Jul 7 07:26:38 2026 From: urchlay at slackware.uk (B. Watson) Date: Tue, 7 Jul 2026 03:26:38 -0400 (EDT) Subject: [Slackbuilds-users] Thorsten aka tjohann's AVR stuff In-Reply-To: <0540CC40-A2C2-4CB0-B322-AE3968443DFF@web.de> References: <0540CC40-A2C2-4CB0-B322-AE3968443DFF@web.de> Message-ID: <63e1f2ee-b449-af2f-ca40-58307f50a8e3@slackware.uk> On Tue, 7 Jul 2026, Heiko Rosemann via SlackBuilds-users wrote: > On July 7, 2026 8:15:41 AM GMT+02:00, "B. Watson" wrote: > > avr-gcc avr-gdb avr-libc avarice mphidflash openocd > These look useful, for someone who owns and uses the hardware they're for. > If anyone's using them, please step up and take over as maintainer. > ______________________________________________________________________________________________________________________________________________________________________ > 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/ > > > I can take avr-gcc, avr-gdb and avr-libc (in fact I have an update for avr-libc locally). > > Don't have any hardware for the other three, I believe, but I'll double check. > > Heiko > > P.S: I'm about to go on holiday without computer and largely without internet, so I may not update until mid August. Thanks. I'll go ahead and put your contact info in the .info files for avr-gcc, avr-gdb, and avr-libc this week. For the other 3, let me know if you decide to take them. From for_slackbuilds-users_mlist_2023-04-21 at lockywolf.net Tue Jul 7 07:37:17 2026 From: for_slackbuilds-users_mlist_2023-04-21 at lockywolf.net (Lockywolf) Date: Tue, 07 Jul 2026 15:37:17 +0800 Subject: [Slackbuilds-users] icecat and compton need maintainers In-Reply-To: References: <20260707080509.3057@pirx.gnu.org.ua> Message-ID: <87h5mbjln6.fsf@laptop.lockywolf.net> "B. Watson" writes: > So whoever takes over the build will have to find source tarballs > for the current versions, or else host their own. No point in > having icecat stay in the repo if it's going to be stuck at an > ancient version: I haven't checked for CVEs but I assume any modern > full-featured browser that old is riddled with holes. Interestingly, I had a look at the cgit repo, and cgit usually allows downloading tar.gz snapshots following a link like: https://cgit.git.savannah.gnu.org/cgit/gnuzilla.git/snapshot/gnuzilla-39e2003399c78e440862b415da0fbb6d8fafac0f.tar.gz This works, for example, for GNU Emacs, which is also hosted at savannah. However, in the case of gnuzilla, this link is explicitly disabled. (Verify by visiting the link I gave.) -- Your sincerely, Vladimir Nikishkin (MiEr, lockywolf) (Laptop) From willysr at slackbuilds.org Tue Jul 7 08:01:09 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Tue, 7 Jul 2026 15:01:09 +0700 Subject: [Slackbuilds-users] redasm Message-ID: <20260707150109.186125c0@office64.slackie.org> Hi anyone here still use redasm? https://slackbuilds.org/repository/15.0/development/REDasm/ the script need some love since it's still at retired version we need to update it to the newer version Please take a look on the new web page: https://redasm.dev/ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From dchmelik at gmail.com Tue Jul 7 09:49:20 2026 From: dchmelik at gmail.com (David Chmelik) Date: Tue, 7 Jul 2026 02:49:20 -0700 Subject: [Slackbuilds-users] great IM/IRC plugin BitlBee.SlackBuild not updated in 10 years despite new versions Message-ID: <3f451d4d-e4b6-4158-8e4b-e34189dd0379@gmail.com> BitlBee is a great plugin for any/all IRC clients that lets you use other IM in IRC.? Unfortunately the SlackBuild hasn't been updated in 10 years, though there's a new version eight years ago.? The maintainer's email bounces.? I highly recommend this to anyone who uses IRC if you know people who won't use it but use IM and they want to talk but you don't want to open other IM, or you just want all-in-one.? Here are some proposed updates, though I'm not very knowledgeable about networks, so I don't maintain network SlackBuilds.? Maybe SlackBuilds.org team members or potential maintainers could test this? ---------------------------------------------------------------------------------------------------- #!/bin/sh # Slackware build script for "bitlbee". # Copyright 2007-2016 Michiel van Wessem, Leicester, United Kingdom # Copyright 2016 Marcel Saegebarth # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=bitlbee VERSION=${VERSION:-3.6} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then ? ? case "$( uname -m )" in ? ? ? ? i?86) ARCH=i486 ;; ? ? ? ? arm*) ARCH=arm ;; ? ? ? ? *) ARCH=$( uname -m ) ;; ? ? esac fi CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} BITLBEE_USER=${BITLBEE_USER:-250} BITLBEE_GROUP=${BITLBEE_GROUP:-250} if [ "$ARCH" = "i486" ]; then ? ? SLKCFLAGS="-O2 -march=i486 -mtune=i686" ? ? LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then ? ? SLKCFLAGS="-O2 -march=i686 -mtune=i686" ? ? LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then ? ? SLKCFLAGS="-O2 -fPIC" ? ? LIBDIRSUFFIX="64" else ? ? SLKCFLAGS="-O2" ? ? LIBDIRSUFFIX="" fi set -e OTR=${OTR:-no} if [ "$OTR" = "yes" ]; then ? USEOTR=1 else ? USEOTR=0 fi SKYPE=${SKYPE:-no} if [ "$SKYPE" = "yes" ]; then ? USESKYPE=1 else ? USESKYPE=0 fi rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $TMP/$PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.?z cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; # Bail if user or group isn't valid on your system if ! grep ^bitlbee: /etc/passwd 2>&1 > /dev/null; then cat << EOF ? You must have a bitlbee user to run this script ? # groupadd -g $BITLBEE_USER bitlbee ? # useradd -u $BITLBEE_USER -d /var/lib/bitlbee -s /bin/false -g bitlbee bitlbee EOF ? exit elif ! grep ^bitlbee: /etc/group 2>&1 > /dev/null; then cat << EOF ? You must have a bitlbee? group to run this script ? # groupadd -g $BITLBEE_GROUP bitlbee EOF ? exit fi # This seems to require gnutls to work properly... CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ CPU="$ARCH" \ ./configure \ ? --prefix=/usr \ ? --libdir=/usr/lib${LIBDIRSUFFIX} \ ? --pcdir=/usr/lib${LIBDIRSUFFIX}/pkgconfig \ ? --plugindir=/usr/lib${LIBDIRSUFFIX}/$PRGNAM \ ? --config=/var/lib/$PRGNAM \ ? --etcdir=/etc/$PRGNAM \ ? --datadir=/usr/doc/$PRGNAM-$VERSION \ ? --mandir=/usr/man \ ? --msn=0 \ ? --jabber=1 \ ? --oscar=0 \ ? --yahoo=0 \ ? --twitter=1 \ ? --purple=1 \ ? --ipv6=0 \ ? --plugins=1 \ ? --debug=1 \ ? --events=${EVENTS:-glib} \ ? --ssl=${CRYPT:-gnutls} \ ? --otr=${USEOTR} \ ? --skype=${USESKYPE} \ ? --build=$ARCH-slackware-linux if [ -e Makefile.settings ]; then ? ? sed -i "s#CPU=i686#CPU=$ARCH#" Makefile.settings fi make all make install install-dev install-etc install-doc install-plugins DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ ? ? | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/{oscar,skype} $PKG/var/lib/$PRGNAM cp -a \ ? COPYING doc/AUTHORS doc/CHANGES doc/CREDITS doc/FAQ doc/INSTALL \ ? doc/README doc/HACKING doc/bitlbee.xinetd doc/comic_3.0.png \ ? doc/example_plugin.c doc/user-guide/help.txt $PKG/usr/doc/$PRGNAM-$VERSION #cp -a protocols/oscar/{AUTHORS,COPYING} $PKG/usr/doc/$PRGNAM-$VERSION/oscar #cp -a protocols/skype/{HACKING,NEWS,README} $PKG/usr/doc/$PRGNAM-$VERSION/skype cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild # Rewrite the documentation to replace /usr/local/ with /usr # and /etc/init.d/inetd wih /etc/rc.d/rc.inetd find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec \ sed -i 's#/usr/local/#/usr/#' {} \; find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec \ sed -i 's#/etc/init.d/inetd#/etc/rc.d/rc.inetd#' {} \; mv $PKG/etc/$PRGNAM/$PRGNAM.conf $PKG/etc/$PRGNAM/$PRGNAM.conf.new mv $PKG/etc/$PRGNAM/motd.txt $PKG/etc/$PRGNAM/motd.txt.new chown -R $BITLBEE_USER:$BITLBEE_GROUP $PKG/var/lib/$PRGNAM mkdir -p $PKG/etc/rc.d/ cat $CWD/rc.$PRGNAM > $PKG/etc/rc.d/rc.$PRGNAM.new chmod 0755 $PKG/etc/rc.d/rc.$PRGNAM.new mkdir $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} From mab974 at misouk.com Tue Jul 7 16:52:31 2026 From: mab974 at misouk.com (Mab974) Date: Tue, 7 Jul 2026 20:52:31 +0400 Subject: [Slackbuilds-users] unebootin needs a maintainer In-Reply-To: <548979d4-b225-d33c-f881-3f9c823aad75@slackware.uk> References: <548979d4-b225-d33c-f881-3f9c823aad75@slackware.uk> Message-ID: <20260707205231.9a92953af139bd1014fd7eec@misouk.com> I can take it over if nobody else wants it. Selon "B. Watson" : > > Anyone using unetbootin, and would like to take over maintenance? > > It looks too useful to orphan or delete. > _______________________________________________ > 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/ > -*- Mab974 From urchlay at slackware.uk Tue Jul 7 19:44:51 2026 From: urchlay at slackware.uk (B. Watson) Date: Tue, 7 Jul 2026 15:44:51 -0400 (EDT) Subject: [Slackbuilds-users] unebootin needs a maintainer In-Reply-To: <20260707205231.9a92953af139bd1014fd7eec@misouk.com> References: <548979d4-b225-d33c-f881-3f9c823aad75@slackware.uk> <20260707205231.9a92953af139bd1014fd7eec@misouk.com> Message-ID: <4e3fee-9a4f-1ce3-1162-d756c43bbe11@slackware.uk> On Tue, 7 Jul 2026, Mab974 wrote: > I can take it over if nobody else wants it. It's yours. Updated .info file already. From urchlay at slackware.uk Wed Jul 8 10:06:44 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 8 Jul 2026 06:06:44 -0400 (EDT) Subject: [Slackbuilds-users] perforce (p4, p4d, p4v) Message-ID: <824aa872-8cf7-441c-77ca-ff5e977a69cf@slackware.uk> I emailed Davis Sullins about these 9 days ago and got no response. He hasn't been active on SBo since 2018. Does anyone here actually use perforce, and would like to take over these builds? They're kind of "niche-market": most people have no use for them, but the ones who do, *really* need them. Any takers? From klaatu at mixedsignals.ml Wed Jul 8 16:50:01 2026 From: klaatu at mixedsignals.ml (Klaatu) Date: Thu, 09 Jul 2026 04:50:01 +1200 Subject: [Slackbuilds-users] hfsprogs up for grabs In-Reply-To: <6e36ad3-3484-493d-3746-a8d138256b44@slackware.uk> References: <6e36ad3-3484-493d-3746-a8d138256b44@slackware.uk> Message-ID: <5054857.OV4Wx5bFTl@beast.slackermedia.local> I can take hfsprogs. I don't use MacOS but I did as a kid, and hfsprogs was invaluable whilst switching to Slackware. -klaatu On Sunday, July 5, 2026 5:41:29 PM NZST B. Watson wrote: > hfsprogs looks like it would be very useful for anyone who runs both > Slackware and Mac OS X. It needs a new maintainer... any takers? > _______________________________________________ > 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 -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part. URL: From urchlay at slackware.uk Thu Jul 9 02:58:12 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 8 Jul 2026 22:58:12 -0400 (EDT) Subject: [Slackbuilds-users] hfsprogs up for grabs In-Reply-To: <5054857.OV4Wx5bFTl@beast.slackermedia.local> References: <6e36ad3-3484-493d-3746-a8d138256b44@slackware.uk> <5054857.OV4Wx5bFTl@beast.slackermedia.local> Message-ID: <7738f0a6-6583-93d6-6eda-6fdc60a278ff@slackware.uk> On Thu, 9 Jul 2026, Klaatu wrote: > I can take hfsprogs. > > I don't use MacOS but I did as a kid, and hfsprogs was invaluable whilst > switching to Slackware. It's yours. Yeah, it's way too useful to let it die. From urchlay at slackware.uk Thu Jul 9 03:07:50 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 8 Jul 2026 23:07:50 -0400 (EDT) Subject: [Slackbuilds-users] wendzelnntpd up for grabs Message-ID: <5fd6c554-c950-b5ae-8135-65563094b070@slackware.uk> The wendzelnntpd maintainer is no longer able to maintain it. Currently the build works and is slightly outdated (it's for 2.1.2, there's been a 2.1.3 stable release since then). Would anyone like to take this over? From urchlay at slackware.uk Thu Jul 9 03:03:38 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 8 Jul 2026 23:03:38 -0400 (EDT) Subject: [Slackbuilds-users] iscan-proprietary-drivers and iscan-firmware Message-ID: These are for older Epson USB scanners. The iscan-firmware maintainer is MIA, and the iscan-proprietary-drivers maintainer has given it up because it won't work on Slackware 15.0 (the package builds, but the scanner doesn't actually work). If anyone would like to take up the challenge (and still owns/uses these old scanners), these builds are up for grabs. If nobody takes them within a week or so, they'll be removed. From urchlay at slackware.uk Thu Jul 9 03:20:27 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 8 Jul 2026 23:20:27 -0400 (EDT) Subject: [Slackbuilds-users] Anyone still using fax machines in 2026? Message-ID: <82edd55f-e3ce-9974-4f12-f46b90beead0@slackware.uk> efax-gtk and its dependency c++-gtk-utils need a new maintainer. Any takes? From urchlay at slackware.uk Thu Jul 9 04:06:43 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 00:06:43 -0400 (EDT) Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer Message-ID: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> LukenShiro seems to have vanished... pcsc-perl and pcsc-tools look useful, and have new releases available. Projects have moved to: https://pcsc-perl.apdu.fr/ https://pcsc-tools.apdu.fr/ If anyone's using these and would like to take over, please do. From urchlay at slackware.uk Thu Jul 9 04:16:56 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 00:16:56 -0400 (EDT) Subject: [Slackbuilds-users] libwwwperl and dependencies up for grabs Message-ID: Need new maintainer(s) for: libwww-perl perl-encode-locale perl-file-listing perl-html-parser perl-http-cookies perl-http-daemon perl-http-date perl-http-message perl-http-negotiate perl-lwp-mediatypes perl-net-http perl-www-robotrules The candidates (people with direct dependees of libwww-perl) are: Charadon Chris Walker David Somero Dimitar Nikov Donald Cooley Gerardo Zamudio Lockywolf Manuel Fill Nikos Giotis Thomas Morper I should be in that list, too, but I already have over 1000 builds... From lists at osh.id.au Thu Jul 9 06:03:43 2026 From: lists at osh.id.au (David O'Shaughnessy) Date: Thu, 09 Jul 2026 14:03:43 +0800 Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer In-Reply-To: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> References: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> Message-ID: I do use pcsc-tools, so I'd consider taking just that one if no one else wants it. On Thu, 9 Jul 2026, at 12:06 PM, B. Watson wrote: > LukenShiro seems to have vanished... > > pcsc-perl and pcsc-tools look useful, and have new releases available. Projects > have moved to: > > https://pcsc-perl.apdu.fr/ > > https://pcsc-tools.apdu.fr/ > > If anyone's using these and would like to take over, please do. > _______________________________________________ > 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 Jul 9 06:18:35 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 02:18:35 -0400 (EDT) Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer In-Reply-To: References: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> Message-ID: <226b663-b887-9af4-3fce-fb0e78ce94c@slackware.uk> On Thu, 9 Jul 2026, David O'Shaughnessy wrote: > I do use pcsc-tools, so I'd consider taking just that one if no one else wants it. It's yours! Thanks. Updated the .info files: MAINTAINER="David O'Shaughnessy" EMAIL="dev at osh.id.au" From urchlay at slackware.uk Thu Jul 9 06:34:27 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 02:34:27 -0400 (EDT) Subject: [Slackbuilds-users] wol (Wake on LAN) needs a maintainer Message-ID: <142e5859-8ca3-ebd3-d18a-a6f71d3bb440@slackware.uk> wol hasn't been updated upstream in ages, but that's probably because it Just Works. I'm sure a lot of us are using it. Anyone want to take it over? From urchlay at slackware.uk Thu Jul 9 06:50:27 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 02:50:27 -0400 (EDT) Subject: [Slackbuilds-users] ggmud (MUD client) needs a maintainer Message-ID: <6456df7-41b2-d8cc-58cf-e993832ad7ab@slackware.uk> Got any MUD users here? ggmud needs a new maintainer. From urchlay at slackware.uk Thu Jul 9 08:00:52 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 04:00:52 -0400 (EDT) Subject: [Slackbuilds-users] Attn: Caterino Tommaso, T.O.P. Message-ID: <614c40b9-1c2a-4c9f-5424-4bb2db971ca0@slackware.uk> Tried to reach you via email, but it bounced. Are you still maintaining your SlackBuilds? You've got quite a few: WolframEngine cryptominisat kissat louvain-community anki cbmc diffuse jupyter-ipywidgets jupyter-widgetsnbextension scantailor-advanced simplex-desktop jpdfbookmarks krop ibus-typing-booster waydroid Your last activity was in 2023. Still with us? From alik at ejik.org Thu Jul 9 11:19:07 2026 From: alik at ejik.org (Alexander Verbovetsky) Date: Thu, 9 Jul 2026 14:19:07 +0300 Subject: [Slackbuilds-users] Attn: Caterino Tommaso, T.O.P. In-Reply-To: <614c40b9-1c2a-4c9f-5424-4bb2db971ca0@slackware.uk> References: <614c40b9-1c2a-4c9f-5424-4bb2db971ca0@slackware.uk> Message-ID: > Your last activity was in 2023. Still with us? I exchanged mails with him (regarding SlackBuilds) in April. He updated WolframEngine on 4 April 2026 and scantailor-advanced on 30 May 2026. Best regards, Alexander From mab974 at misouk.com Thu Jul 9 12:16:08 2026 From: mab974 at misouk.com (Mab974) Date: Thu, 9 Jul 2026 16:16:08 +0400 Subject: [Slackbuilds-users] wol (Wake on LAN) needs a maintainer In-Reply-To: <142e5859-8ca3-ebd3-d18a-a6f71d3bb440@slackware.uk> References: <142e5859-8ca3-ebd3-d18a-a6f71d3bb440@slackware.uk> Message-ID: <20260709161608.9a9dd305a407690a3aaed2d3@misouk.com> I can take it as I use it regularly. Selon "B. Watson" : > > wol hasn't been updated upstream in ages, but that's probably because > it Just Works. I'm sure a lot of us are using it. > > Anyone want to take it over? > _______________________________________________ > 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/ > -*- Mab974 From sultmhoor at gmail.com Thu Jul 9 12:28:57 2026 From: sultmhoor at gmail.com (Kevin Bryant) Date: Thu, 9 Jul 2026 08:28:57 -0400 Subject: [Slackbuilds-users] libwwwperl and dependencies up for grabs In-Reply-To: References: Message-ID: I can take these, I use several of them extensively. On Thu, Jul 9, 2026, 12:22?AM B. Watson wrote: > > Need new maintainer(s) for: > > libwww-perl > perl-encode-locale > perl-file-listing > perl-html-parser > perl-http-cookies > perl-http-daemon > perl-http-date > perl-http-message > perl-http-negotiate > perl-lwp-mediatypes > perl-net-http > perl-www-robotrules > > The candidates (people with direct dependees of libwww-perl) are: > > Charadon > Chris Walker > David Somero > Dimitar Nikov > Donald Cooley > Gerardo Zamudio > Lockywolf > Manuel Fill > Nikos Giotis > Thomas Morper > > I should be in that list, too, but I already have over 1000 builds... > _______________________________________________ > 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 urchlay at slackware.uk Thu Jul 9 19:58:30 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 9 Jul 2026 15:58:30 -0400 (EDT) Subject: [Slackbuilds-users] wol (Wake on LAN) needs a maintainer In-Reply-To: <20260709161608.9a9dd305a407690a3aaed2d3@misouk.com> References: <142e5859-8ca3-ebd3-d18a-a6f71d3bb440@slackware.uk> <20260709161608.9a9dd305a407690a3aaed2d3@misouk.com> Message-ID: On Thu, 9 Jul 2026, Mab974 wrote: > I can take it as I use it regularly. Thanks. It's yours, I updated the .info. From lists at osh.id.au Fri Jul 10 01:05:35 2026 From: lists at osh.id.au (David O'Shaughnessy) Date: Fri, 10 Jul 2026 09:05:35 +0800 Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer In-Reply-To: <226b663-b887-9af4-3fce-fb0e78ce94c@slackware.uk> References: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> <226b663-b887-9af4-3fce-fb0e78ce94c@slackware.uk> Message-ID: Oops, I got this confused with pcsc-lite, so sorry scratch that, I don't actually use the pcsc-tools, it's pcsc-lite I was thinking of. Apologies. On Thu, 9 Jul 2026, at 2:18 PM, B. Watson wrote: > On Thu, 9 Jul 2026, David O'Shaughnessy wrote: > >> I do use pcsc-tools, so I'd consider taking just that one if no one else wants it. > > It's yours! Thanks. Updated the .info files: > > MAINTAINER="David O'Shaughnessy" > EMAIL="dev at osh.id.au" > _______________________________________________ > 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 jebrhansen+SBo at gmail.com Fri Jul 10 01:10:14 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Thu, 9 Jul 2026 18:10:14 -0700 Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer In-Reply-To: References: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> <226b663-b887-9af4-3fce-fb0e78ce94c@slackware.uk> Message-ID: I can take them then. I occasionally use a smart card on my computer. Jeremy On Thu, Jul 9, 2026, 6:06?PM David O'Shaughnessy wrote: > Oops, I got this confused with pcsc-lite, so sorry scratch that, I don't > actually use the pcsc-tools, it's pcsc-lite I was thinking of. Apologies. > > On Thu, 9 Jul 2026, at 2:18 PM, B. Watson wrote: > > On Thu, 9 Jul 2026, David O'Shaughnessy wrote: > > > >> I do use pcsc-tools, so I'd consider taking just that one if no one > else wants it. > > > > It's yours! Thanks. Updated the .info files: > > > > MAINTAINER="David O'Shaughnessy" > > EMAIL="dev at osh.id.au" > > _______________________________________________ > > 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 urchlay at slackware.uk Fri Jul 10 04:28:32 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 10 Jul 2026 00:28:32 -0400 (EDT) Subject: [Slackbuilds-users] pcsc-perl pcsc-tools need a maintainer In-Reply-To: References: <1cbdd36f-c39c-7c61-4bd-3f8cfba01f@slackware.uk> <226b663-b887-9af4-3fce-fb0e78ce94c@slackware.uk> Message-ID: On Thu, 9 Jul 2026, Jeremy Hansen wrote: > I can take them then. I occasionally use a smart card on my computer.? Thanks. Updated .info files on my branch. From urchlay at slackware.uk Sat Jul 11 03:53:01 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 10 Jul 2026 23:53:01 -0400 (EDT) Subject: [Slackbuilds-users] libwwwperl and dependencies up for grabs In-Reply-To: References: Message-ID: On Thu, 9 Jul 2026, Kevin Bryant wrote: > I can take these, I use several of them extensively. They are yours, thanks for taking them. From julian at dotcore.co.il Sat Jul 11 09:30:29 2026 From: julian at dotcore.co.il (Julian Grinblat) Date: Sat, 11 Jul 2026 18:30:29 +0900 Subject: [Slackbuilds-users] =?utf-8?q?=5Bqemu-static=5D_update-binfmts_-?= =?utf-8?q?-import_=E2=80=94_intended_manual_step=3F?= Message-ID: Hi all, qemu-static (maintained by Lockywolf) installs its binfmt profiles into /usr/share/binfmts/, but neither the SlackBuild's doinst.sh nor binfmt-support's rc.binfmt-support ever runs `update-binfmts --import` ? the rc script's start action only calls --enable, which activates whatever's already in /var/lib/binfmts, not new profiles sitting in /usr/share/binfmts. So it looks like update-binfmts --import has to be run manually, once, after installing ? matching the manual runbook in the package's own README. Is that intentional? If so, it might be worth adding a one-line callout in the README, since it's easy to miss. Thanks, Julian From for_slackbuilds-users_mlist_2023-04-21 at lockywolf.net Sat Jul 11 10:39:44 2026 From: for_slackbuilds-users_mlist_2023-04-21 at lockywolf.net (Lockywolf) Date: Sat, 11 Jul 2026 18:39:44 +0800 Subject: [Slackbuilds-users] =?utf-8?q?=5Bqemu-static=5D_update-binfmts_-?= =?utf-8?q?-import_=E2=80=94__intended_manual_step=3F?= In-Reply-To: References: Message-ID: <87ech9kdxr.fsf@laptop.lockywolf.net> Julian Grinblat writes: > So it looks like update-binfmts --import has to be run manually, once, > after installing ? matching the manual runbook in the package's own > README. Is that intentional? Yes, this is intentional. The point is that the SBo "tradition" is that builds only _install_ packages, services, programs, modules, but don't "activate them by default", in order to avoid unintentionally damaging whatever fragile setup the user has. >If so, it might be worth adding a > one-line callout in the README, since it's easy to miss. I don't mind improving the README, but I am not exactly sure what is missing. Doesn't the "runbook" give enough info on how to run aarch64 docker containers on x86_64 Slackware64, including running `update-binfmts --import` ? Could you send a git patch/diff with your intended improvement to my email, and I will gladly accept it, if it makes sense. -- Your sincerely, Vladimir Nikishkin (MiEr, lockywolf) (Laptop) From willysr at slackbuilds.org Sat Jul 11 10:41:30 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 11 Jul 2026 17:41:30 +0700 Subject: [Slackbuilds-users] Updates - 20260711.1 Message-ID: <20260711174041.0cd004c6@tuf15.slackie.org> Sat Jul 11 10:12:20 UTC 2026 academic/armadillo: Orphaned (unmaintained). academic/arpack: Orphaned (unmaintained). academic/cdo: Updated for version 2.6.3. academic/free42: New Maintainer academic/g3data: Orphaned (unmaintained). academic/lapack95: Orphaned (unmaintained). academic/ncview: Orphaned (unmaintained). academic/ngspice-jit: Added (ngspice with JIT compilation). academic/pcalc: Orphaned (unmaintained). academic/verilator: Orphaned (unmaintained). accessibility/ruvim: Orphaned (unmaintained). audio/cava: Orphaned (unmaintained). audio/dcd: Orphaned (unmaintained). audio/easymp3gain: Orphaned (unmaintained). audio/id3v2: Updated for version 0.1.12_10, new maintainer. audio/mp3check: New maintainer. audio/mp3wrap: Orphaned (unmaintained). audio/mt-daapd: Orphaned (unmaintained). audio/openvino-plugins-ai-audacity: Orphaned - no maintainer. audio/pmidi: Orphaned (unmaintained). audio/reaper: Updated for version 7.77 audio/rplay: Orphaned (unmaintained). audio/sacd-extract: Added (Extract Tracks). audio/snd: Orphaned (unmaintained). audio/sonata: Orphaned (unmaintained). audio/whipper: Rename python-discid dep. audio/xmms-scrobbler: Orphaned (unmaintained). audio/xmms-shn: New maintainer. desktop/2bwm: Updated for version 0.3 + new maintainer desktop/ClamAV-GUI: Updated for version 1.4.1 desktop/PyPanel: Orphaned (unmaintained). desktop/Vanilla-DMZ: Orphaned (unmaintained). desktop/XDecorations: Orphaned (unmaintained). desktop/alacarte: Orphaned (unmaintained). desktop/awf: Updated for version 4.2.0. desktop/bashrun2: Orphaned (unmaintained). desktop/bashrun: Orphaned (unmaintained). desktop/claude-desktop: Added (Claude desktop). desktop/cwm-openbsd: Removed (unmaintained). desktop/draco: Orphaned (unmaintained). desktop/dzen2: Orphaned (unmaintained). desktop/human-gtk-theme: Updated for version 3.2.0. desktop/i3lock: Updated for version 2.16 + new maintainer desktop/ion: Orphaned (unmaintained). desktop/kanyremote: Orphaned (unmaintained). desktop/macopix: Orphaned (unmaintained). desktop/mugshot: Updated script + new maintainer desktop/musca: Orphaned (unmaintained). desktop/netwmpager: Orphaned (unmaintained). desktop/nitrokey-app: Orphaned (unmaintained). desktop/obapps: Orphaned (unmaintained). desktop/parcellite: Updated for version 1.2.5 + new maintainer desktop/pidgin-guifications: Orphaned (unmaintained). desktop/polybar: Updated for version 3.7.2 + new maintainer desktop/razercfg: New maintainer. desktop/rodent: Orphaned (unmaintained). desktop/root-tail: Orphaned (unmaintained). desktop/stalonetray: Orphaned (unmaintained). desktop/vtwm: Orphaned (unmaintained). desktop/wmctrl: New maintainer. development/Xdialog: Orphaned (unmaintained). development/antlr2: New maintainer. development/atom-amd64: Orphaned (unmaintained). development/avr-gcc: New maintainer. development/avr-gdb: New maintainer. development/bakefile: Orphaned (unmaintained). development/blocksruntime: Orphaned (unmaintained). development/claude-code: Updated for version 2.1.201 development/cutter: Updated for version 2.5.0. development/dbeaver-ce: Updated for version 26.1.2. development/dejagnu: Updated for version 1.6.3. development/devhelp: Orphaned (unmaintained). development/ecl: Orphaned (unmaintained). development/edb-debugger: Orphaned (unmaintained). development/electron-bin: Updated for version 43.0.0 development/github-cli: Updated for version 2.96.0 development/goland: Updated for version 2026.1.4. development/google-go-lang: Updated for version 1.26.5. development/gtkdialog: Orphaned (unmaintained). development/idea: Updated for version 2026.1.4. development/kcov: Orphaned (unmaintained). development/kiwi: Orphaned (unmaintained). development/letos: Updated for version 4.0.1 development/logisim: Orphaned (unmaintained). development/mg-openbsd: Removed (unmaintained). development/mongodb-compass: Updated for version 1.49.10. development/nickle: Orphaned (unmaintained). development/nose: New maintainer. development/notepadqq: Updated for version 20260704_1c748d5 development/pgmodeler: Updated REQUIRES. development/polyml: New maintainer development/positron: Updated script. development/prek: Updated for version 0.4.8. development/rust-opt: Updated for version 1.96.1. development/shiboken: Orphaned (unmaintained). development/stgit: Orphaned (unmaintained). development/sublime_merge: Orphaned (unmaintained). development/systemtap: Orphaned (unmaintained). development/typos-lsp: Added (Source Code Spell Checker). development/typos: Added (Spellchecker). development/vscode-bin: Updated for version 1.128.0. games/UrbanTerror: New maintainer. games/VASSAL: New Maintainer games/beetle-psx-libretro: Updated for version 2026.07.07_672f213. games/bluemoon: Orphaned (unmaintained). games/cataclysmdda: Updated for version 0.I + new maintainer games/cgoban: Orphaned (unmaintained). games/dgen: New maintainer. games/dopewars: New maintainer. games/firestorm-opensim: Orphaned (unmaintained). games/firestorm: Orphaned (unmaintained). games/frogatto: Orphaned (unmaintained). games/fs2open: Updated for version 26.0.0 + new maintainer games/glxosd: Orphaned (unmaintained and *broken*). games/gnugo: Orphaned (unmaintained). games/hnefatafl: Orphaned (unmaintained). games/lightyears: Updated for version 1.5.2 + new maintainer games/onscripter: Orphaned (unmaintained). games/openmw: Updated for version 0.51.0 + new maintainer games/prboom: New maintainer. games/residualvm: Orphaned (unmaintained). games/rlvm: Orphaned (unmaintained). games/roll: Updated for version 2.7.0, new maintainer. games/scid_vs_pc: Update source. games/singularity: Orphaned (unmaintained). games/warsow: Orphaned (unmaintained). games/worldofpadman: Orphaned (unmaintained). games/wxLauncher: Added (Launcher for Freespace2). games/xmoto: Orphaned (unmaintained). gis/eccodes: Updated for version 2.47.3. gis/gmapcatcher: Orphaned (unmaintained). git/ci: Update CI dependencies. graphics/XnViewMP: Orphaned (unmaintained). graphics/azpainter: Orphaned (unmaintained). graphics/barcode: Add douninst.sh; new maintainer. graphics/converseen: Updated for version 0.15.2.6. graphics/djview4: Orphaned (unmaintained). graphics/gimagereader: Orphaned (unmaintained). graphics/gliv: Orphaned (unmaintained). graphics/imgmin: Orphaned (unmaintained). graphics/ipe: Orphaned (unmaintained). graphics/jpeg2ps: Orphaned (unmaintained). graphics/metapixel: Orphaned (unmaintained). graphics/svp: Orphaned (unmaintained). graphics/vips: Updated for version 8.18.4. graphics/wavelet-denoise: Orphaned (unmaintained). graphics/white_dune: Orphaned (unmaintained). graphics/whyteboard: Orphaned (unmaintained). graphics/zgv: Orphaned (unmaintained). ham/gridtracker2: Updated for version 2.260705.2. ham/libsigmf: Updated for version 20260708.877b069e. ham/qlog: Updated for version 0.51.1. ham/sdrangel: Updated for version 7.27.1. libraries/BeautifulSoup: New maintainer. libraries/FormEncode: Orphaned (unmaintained). libraries/MyGUI: Updated for version 3.4.3. libraries/SQLObject: Orphaned (unmaintained). libraries/avr-libc: New maintainer. libraries/collada-dom: Updated for version 2.5.0. libraries/fltk: New maintainer. libraries/globalqss: Updated for version 1.2.0. libraries/goffice: Updated for version 0.10.61. libraries/imlib2_loaders: Fix email address. libraries/iniparser: Orphaned (unmaintained). libraries/jcal: Orphaned (unmaintained). libraries/jreen: Orphaned (unmaintained). libraries/libQuotient: Orphaned (unmaintained). libraries/libaec: Updated for version 1.1.7. libraries/libaosd: Orphaned (unmaintained). libraries/libdbh2: Orphaned (unmaintained). libraries/libdbi: New maintainer. libraries/libdynamite: New maintainer. libraries/libgadu: Orphaned (unmaintained). libraries/libgnomecups: New maintainer. libraries/libgnomeprint: New maintainer. libraries/libgnomeprintui: New maintainer. libraries/libgringotts: Orphaned (unmaintained). libraries/libheif: Updated for version 1.23.1 libraries/liblxi: Orphaned (unmaintained). libraries/libmodbus: New Maintainer libraries/libmpdclient: Updated for version 2.26 libraries/libpar2: New maintainer. libraries/librfm5: Orphaned (unmaintained). libraries/libspf2: Orphaned (unmaintained). libraries/libtubo0: Orphaned (unmaintained). libraries/libversion: Use newer cmake. libraries/libxml++: New maintainer. libraries/lksctp-tools: Updated for version 1.0.21. libraries/log4c: Orphaned (unmaintained). libraries/netcdf: Updated for version 4.10.1. libraries/pthsem: Orphaned (unmaintained). libraries/qoauth: Orphaned (unmaintained). libraries/quesoglc: New maintainer. libraries/squish: Removed (Unmaintained). libraries/stfl: New maintainer. libraries/tox-extension-messages: Orphaned (unmaintained). libraries/toxext: Orphaned (unmaintained). libraries/udunits: New maintainer. libraries/vcglib: Orphaned (unmaintained). libraries/wxWidgets: Updated for version 3.2.11. libraries/xerces-c: Updated for version 3.3.0 + new maintainer libraries/zimg: Updated for version 3.0.6 misc/IMSProg: Added (EEPROM Programmer). misc/KeePassHttp: Orphaned (unmaintained). misc/bbrun: Orphaned (unmaintained). misc/beep: Updated for version 1.4.12, new maintainer. misc/dwdiff: New maintainer. misc/ghostpcl: Orphaned. misc/glogg: Orphaned (unmaintained). misc/gxmessage: Orphaned (unmaintained). misc/hoorex: Updated for version 0.10.5 misc/iscan-firmware: New maintainer. misc/ltunify: Orphaned (unmaintained). misc/megatunix: Orphaned (unmaintained). misc/ollama: Updated for version 0.31.2. misc/qtspell: Orphaned (unmaintained). misc/sdcv: Orphaned (unmaintained). misc/seahorse-plugins: Orphaned (unmaintained). misc/utimer: Orphaned (unmaintained). misc/with-readline: New maintainer. misc/yubioath-desktop: Updated for version 7.4.1. multimedia/anyremote: Orphaned (unmaintained). multimedia/aom: New maintainer multimedia/aom: Remove extraneous comments multimedia/aom: Updated for version 3.14.1 multimedia/dvdrip: Orphaned (unmaintained). multimedia/emoc: Orphaned (unmaintained). multimedia/iat: New maintainer. multimedia/ivtv-utils: Orphaned (unmaintained). multimedia/mp3fs: Orphaned (unmaintained). multimedia/picard: Rename python-discid dep. multimedia/sinthgunt: Orphaned (unmaintained). multimedia/spek: Orphaned (unmaintained). multimedia/strawberry: Updated for version 1.2.23. multimedia/telepathy-farstream: Orphaned (unmaintained). multimedia/telepathy-glib: New maintainer. multimedia/telepathy-qt: Orphaned (unmaintained). multimedia/videocut: Orphaned (unmaintained). multimedia/xvid4conf: Orphaned (unmaintained). network/3proxy: Updated for version 0.9.7. network/GhostInTheMail: Orphaned (unmaintained). network/Quaternion: Orphaned (unmaintained). network/QuiteRSS: Updated README. network/aggregate: Orphaned (unmaintained). network/aiccu: Orphaned (unmaintained). network/arp-scan: New maintainer. network/arpwatch: Orphaned (unmaintained). network/bitcoin: Updated for version 29.4. network/bitlbee: New maintainer. network/canto: Orphaned (unmaintained). network/ckermit: Orphaned (unmaintained). network/cmdiag: Orphaned (unmaintained). network/csync: Orphaned (unmaintained). network/dhcping: New maintainer. network/dianara: Orphaned (unmaintained). network/dnsproxy-bin: Updated for version 0.83.0. network/docsis: Orphaned (unmaintained). network/dropbear: Updated for version 2026.92. network/dropbox: Updated for version 260.4.2926. network/element-desktop-bin: Updated for version 1.12.23. network/element-desktop: Updated for version 1.12.23. network/et: Updated for version 6.2.8. network/glusterfs: Orphaned (unmaintained). network/gns3: Orphaned (unmaintained). network/havp: Orphaned (unmaintained). network/helium-browser: Updated for version 0.14.3.1 network/httping: Orphaned (unmaintained). network/httptunnel: Orphaned (unmaintained). network/iodine: Updated for version 0.8.0, new maintainer. network/iperf: Orphaned (unmaintained). network/kasp_updater: Orphaned (unmaintained). network/libmaxminddb: New maintainer. network/librewolf: Updated for version 152.0.4_1 network/lxi-tools: Orphaned (unmaintained). network/megatools: Updated for version 1.11.5. network/metasploit-framework-bin: Added (Penetration Testing) network/monkey: Orphaned (unmaintained). network/mpop: update to 1.4.22 network/netperf: Orphaned (unmaintained). network/niceshaper: Orphaned (unmaintained). network/opera: Updated for version 133.0.5932.24 network/pidgin-otr: Orphaned (unmaintained). network/pidgin-visnotes: Orphaned (unmaintained). network/proxytunnel: Orphaned (unmaintained). network/pure-ftpd: Updated for version 1.0.54. network/radvd: Orphaned (unmaintained). network/rejik: Orphaned (unmaintained). network/rspamd: Updated for version 4.1.1 network/rssh: Orphaned (unmaintained). network/signal-desktop: Updated for version 8.18.0. network/sipcalc: Orphaned (unmaintained). network/slowhttptest: Orphaned (unmaintained). network/sniffjoke: Orphaned (unmaintained). network/spambayes: Orphaned (unmaintained). network/spawn-fcgi: New maintainer. network/sshamble: Updated for version 0.3.3. network/syncthingtray-bin: Updated for version 2.1.2. network/t50: Orphaned (unmaintained). network/tcptunnel: Orphaned (unmaintained). network/trurl: New maintainer. network/tunctl: Orphaned (unmaintained). network/ucspi-tcp: New maintainer. network/udpxy: Orphaned (unmaintained). network/uwsgi: New maintainer. network/vivaldi: Updated for version 8.1.4087.46. network/waterfox: Updated for version 6.6.16 network/wireshark: Updated for version 4.6.7. network/wol: New maintainer. network/yle-dl: Updated for version 20260624. network/yt-dlp-bin: Updated for version 2026.07.04. network/zen-browser: Updated for version 1.21.5b office/Joplin: Updated for version 3.6.15. office/Ted: Fix email address. office/ding: Orphaned (unmaintained). office/epdfview: Orphaned (unmaintained). office/flowkeeper: Orphaned (unmaintained). office/full-pack: Orphaned (unmaintained). office/ganttproject: Orphaned (unmaintained). office/gnumeric: Updated for version 1.12.61. office/hebcal: Updated for version 5.13.0. office/kbgoffice: Orphaned (unmaintained). office/kchmviewer-qt: Added (CHM & EPUB Viewer). office/lcal: Orphaned (unmaintained). office/openoffice-langpack: Orphaned (unmaintained). office/pcal: Orphaned (unmaintained). office/qownnotes: Updated for version 26.7.5. office/texstudio: Updated for version 4.9.5 perl/libwww-perl: New maintainer. perl/perl-AnyEvent-HTTP: Orphaned (unmaintained). perl/perl-Archive-Zip: New maintainer. perl/perl-Carp-Clan: New maintainer. perl/perl-Class-Inspector: New maintainer. perl/perl-Config-Find: Orphaned (unmaintained). perl/perl-Curses-UI: New maintainer. perl/perl-Data-OptList: New maintainer. perl/perl-Date-Calc: New maintainer. perl/perl-Digest-SHA: Removed (already in Slackware). perl/perl-File-HomeDir: New maintainer. perl/perl-Gnome2-Vte: New maintainer. perl/perl-HTML-Tree: New maintainer. perl/perl-IO-Stty: New maintainer. perl/perl-IPC-DirQueue: Orphaned (unmaintained). perl/perl-IPC-Run3: Orphaned (unmaintained). perl/perl-Image-Size: New maintainer. perl/perl-List-MoreUtils: New maintainer. perl/perl-Log-Log4perl: New maintainer. perl/perl-Params-Util: New maintainer. perl/perl-Probe-Perl: Orphaned (unmaintained). perl/perl-Proc-ProcessTable: New maintainer. perl/perl-Regexp-Common: New maintainer. perl/perl-Socket6: New maintainer. perl/perl-Statistics-Descriptive: Orphaned (unmaintained). perl/perl-Sub-Exporter: New maintainer. perl/perl-Sub-Override: New maintainer. perl/perl-TeX-Hyphen: Orphaned (unmaintained). perl/perl-Test-MockModule: Orphaned (unmaintained). perl/perl-Test-MockObject: Orphaned (unmaintained). perl/perl-Text-Hyphen: Orphaned (unmaintained). perl/perl-Time-modules: Orphaned (unmaintained). perl/perl-config-general: New maintainer. perl/perl-digest-sha1: New maintainer. perl/perl-encode-locale: New maintainer. perl/perl-file-listing: New maintainer. perl/perl-html-parser: New maintainer. perl/perl-html-parser: New maintainer. perl/perl-http-cookies: New maintainer. perl/perl-http-daemon: New maintainer. perl/perl-http-date: New maintainer. perl/perl-http-message: New maintainer. perl/perl-http-negotiate: New maintainer. perl/perl-lwp-mediatypes: New maintainer. perl/perl-net-http: New maintainer. perl/perl-www-robotrules: New maintainer. python/PyGreSQL: Updated REQUIRES to use postgres18 python/hgsubversion: Orphaned (unmaintained). python/pychecker: Orphaned (unmaintained). python/pydblite: Orphaned (unmaintained). python/pyflakes: Orphaned (unmaintained). python/pyfltk: Orphaned (unmaintained). python/pygtksourceview: New maintainer. python/pyside: New maintainer. python/python-bitstring: Updated for version 4.4.0. python/python-discid: Removed (renamed to python3-discid). python/python2-cached-property: Orphaned (unmaintained). python/python2-mpd: Orphaned (unmaintained). python/python2-oauth: Orphaned (unmaintained). python/python2-pydns: Orphaned (unmaintained). python/python2-pypolicyd-spf: Orphaned (unmaintained). python/python2-pyspf: Orphaned (unmaintained). python/python2-texttable: Orphaned (unmaintained). python/python2-vatnumber: New maintainer. python/python2-xlwt: New maintainer. python/python3-bitarray: Updated for version 3.8.2. python/python3-cffi: Updated for version 2.1.0. python/python3-discid: Added (libdiscid Python Bindings). python/python3-libusb1: Updated for version 3.4.0. python/python3-mistune: Updated for version 3.3.3 python/python3-odfdo: Updated for version 3.22.10 python/python3-plotly: Updated for version 6.9.0 python/python3-pyproject-metadata: Updated for version 0.12.1. python/subvertpy: Orphaned (unmaintained). python/tqdm: New maintainer. python/tzdata: Updated for version 2026.3. python/vinetto: Orphaned (unmaintained). python/winpdb: Orphaned (unmaintained). system/Lmod: Updated for version 9.2.5. system/TLP: Updated for version 1.10.2 system/bottom: Updated for version 0.14.4. system/c-icap: Orphaned (unmaintained). system/capabilities: Orphaned (unmaintained). system/ccid: Updated for version 1.8.2 + new maintainer system/cfengine: Orphaned (unmaintained). system/containerd: New maintainer. system/cpuid: Updated for version 20260503. system/crunch: Orphaned (unmaintained). system/docker-cli: New maintainer. system/docker-compose: Updated for version 5.3.0 system/docker-machine-kvm: Removed (unmaintained). system/docker-machine: Removed (unmaintained). system/docker: New maintainer. system/dtach: Orphaned (unmaintained). system/dymo-cups-drivers: Orphaned (unmaintained). system/dynamips: Orphaned (unmaintained). system/ecofont-ttf: Orphaned (unmaintained). system/eibd: Orphaned (unmaintained). system/eltclsh: Updated for version 1.20. system/eza: Updated for version 0.23.5. system/fastfetch: Updated for version 2.66.0. system/fdupes: Updated for version 2.4.0, new mtaintainer. system/file-roller: Edit README, slack-desc, maintainer info system/fira-code-fonts: Updated for version 6.2; new maintainer. system/font-manager: New Maintainer system/fzf: Updated for version 0.74.0. system/gigolo: Orphaned (unmaintained). system/glyptodon: Orphaned (unmaintained). system/gtklp: Orphaned (unmaintained). system/hal-flash: Orphaned (unmaintained). system/hdapsd: Orphaned (unmaintained). system/heirloom-sh: New maintainer. system/hfsprogs: New maintainer. system/incus-ui: Updated for version 20260706_64d46e71 system/incus: Added a README.docker system/iotop: Orphaned (unmaintained). system/iucode_tool: New maintainer system/jenkins: Updated for version 2.568.1. system/libnatspec: Orphaned (unmaintained). system/limine: Updated for version 12.4.1 system/lsb-release: New maintainer. system/lxsplit: Orphaned (unmaintained). system/mingetty: Orphaned (unmaintained). system/mrxvt: New maintainer. system/ms-sys: New maintainer. system/mtftar: Orphaned (unmaintained). system/multibootusb: Orphaned (unmaintained). system/nanum-coding-fonts-ttf: Orphaned (unmaintained). system/nanum-fonts-ttf: Orphaned (unmaintained). system/newrelic-sysmond: Orphaned (unmaintained). system/nologind: Orphaned (unmaintained). system/nut: Orphaned (unmaintained). system/nvidia-kernel: Update README. system/nvidia-legacy390-driver: New maintainer. system/nvidia-legacy390-kernel: New maintainer. system/nvidia-legacy580-driver: Updated for version 580.173.02. system/nvidia-legacy580-kernel: Updated for version 580.173.02. system/open-vm-tools: Orphaned (unmaintained). system/openct: Orphaned (unmaintained). system/pcsc-perl: New maintainer. system/pcsc-tools: New maintainer. system/physlock: Orphaned (unmaintained). system/powerkit: Orphaned (unmaintained). system/prometheus: Updated for version 3.13.0 system/qtfm: Orphaned (unmaintained). system/quotatool: Orphaned (unmaintained). system/recoverjpeg: Orphaned (unmaintained). system/rng-tools: Orphaned (unmaintained). system/runc: New maintainer. system/schedtool: New maintainer. system/seahorse: Orphaned (unmaintained). system/set_rlimits: New maintainer. system/shake: Orphaned (unmaintained). system/squidclamav: Orphaned (unmaintained). system/telegraf: Updated for version 1.39.1 system/thinkfan: Updated for version 2.0.0; new maintainer. system/tini: New maintainer. system/tkdvd: Orphaned (unmaintained). system/tp_smapi: Orphaned (unmaintained). system/tracker: New maintainer. system/ttf-arphic-uming: Orphaned (unmaintained). system/ttf-lato: Fix download link; new maintainer. system/uae: Orphaned (unmaintained). system/udftools: Orphaned (unmaintained). system/ugrep: Added (Fast searching). system/unetbootin: New maintainer. system/uptimed: Updated for version 0.4.7. system/veracrypt: Orphaned (unmaintained). system/wmconfig: Orphaned (unmaintained). system/wqy-microhei-font-ttf: Fixes for version 0.2.0_beta. system/xchm: Updated for version 1.39, new maintainer. system/xinput_calibrator: Orphaned (unmaintained). system/zarfy: ARCH handling; new maintainer. system/zfs-auto-snapshot: Orphaned (unmaintained). system/znapzend: Orphaned (unmaintained). system/zopfli: New maintainer. +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Sat Jul 11 10:53:04 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Jul 2026 06:53:04 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC Message-ID: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> I've written a new page for the site, that hopefully explains all about orphaned SlackBuilds. Currently, it's here: https://slackbuilds.org/orphaned_builds_faq.txt ...but it will get turned into pretty (or at least less-ugly) HTML and linked to the rest of the site Real Soon Now. I'm posting the text-only version now because it's easier to edit, in case any of you make any suggestions or corrections that should be added/corrected. I especially want to hear from you if you have a question about orphaned builds that's *not* addressed in the FAQ. From tonus1 at free.fr Sat Jul 11 12:00:03 2026 From: tonus1 at free.fr (Tonus) Date: Sat, 11 Jul 2026 14:00:03 +0200 Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> Message-ID: <3DF98620-C894-4441-8ACA-93E4AEEFD0B8@free.fr> Hi Thanks for all the cleanup work you've done these past weeks ! Isn't there a typo in : "Q: How do I find out long it's been since a build became orphaned?" ? I would have put "how" before long. Regards, Tonus Le 11 juillet 2026 12:53:04 GMT+02:00, "B. Watson" a ?crit : > >I've written a new page for the site, that hopefully explains all >about orphaned SlackBuilds. > >Currently, it's here: > >https://slackbuilds.org/orphaned_builds_faq.txt > >...but it will get turned into pretty (or at least less-ugly) HTML and >linked to the rest of the site Real Soon Now. > >I'm posting the text-only version now because it's easier to edit, >in case any of you make any suggestions or corrections that should be >added/corrected. > >I especially want to hear from you if you have a question about >orphaned builds that's *not* addressed in the 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 julian at dotcore.co.il Sat Jul 11 12:24:25 2026 From: julian at dotcore.co.il (Julian Grinblat) Date: Sat, 11 Jul 2026 21:24:25 +0900 Subject: [Slackbuilds-users] =?utf-8?q?=5Bqemu-static=5D_update-binfmts_-?= =?utf-8?q?-import_=E2=80=94_intended_manual_step=3F?= In-Reply-To: <87ech9kdxr.fsf@laptop.lockywolf.net> References: <87ech9kdxr.fsf@laptop.lockywolf.net> Message-ID: > Doesn't the "runbook" give enough info on how to run aarch64 docker containers on x86_64 Slackware64, including running `update-binfmts --import`? The commands are there, but what's missing is *why* `--import` is a separate, necessary step: binfmt-support only re-enables formats already recorded in /var/lib/binfmts, it doesn't scan /usr/share/binfmts for new ones. So a user who already has binfmt-support running fine can reasonably (and wrongly) assume installing this package is enough on its own. I've included a small patch below, which I think will be useful for newcomers: --- a/README +++ b/README @@ -11,6 +11,11 @@ If you have installed (and activated in /etc/rc.d/) the binfmt-support service, they will be loaded at machine start up. +Note: update-binfmts --import (below) must be run once after installing +or upgrading this package - binfmt-support only re-enables formats +already recorded in /var/lib/binfmts, it does not scan /usr/share/binfmts +for new ones. + Then you should be able to run all compatible docker images through qemu emulation transparently. As an aside, not part of this patch: I hit a build failure worth flagging if you're aware of it - the bundled static glibc fails with `OPEN_TREE_CLONE redefined [-Werror]` when built against the experimental linux-7.1.x testing kernel line (kernel-headers-7.1.x) rather than mainline -current. kernel-headers-7.1.x reformats some mount.h flags to bit-shift notation, which collides with glibc's own bundled definition of the same constant - harmless (same value), but fatal since glibc's build enables -Werror. Slackware's own official glibc build doesn't hit this, since it's built against mainline kernel-headers, not the testing branch. --disable-werror on the bundled glibc's configure works around it, in case it's useful to know about even without a formal patch. Thanks again for maintaining this. On Sat, Jul 11, 2026 at 7:39?PM Lockywolf wrote: > > Julian Grinblat writes: > > > So it looks like update-binfmts --import has to be run manually, once, > > after installing ? matching the manual runbook in the package's own > > README. Is that intentional? > > Yes, this is intentional. > The point is that the SBo "tradition" is that builds only _install_ > packages, services, programs, modules, but don't "activate them by > default", in order to avoid unintentionally damaging whatever fragile > setup the user has. > > >If so, it might be worth adding a > > one-line callout in the README, since it's easy to miss. > > I don't mind improving the README, but I am not exactly sure what is > missing. Doesn't the "runbook" give enough info on how to run aarch64 > docker containers on x86_64 Slackware64, including running > `update-binfmts --import` ? > > Could you send a git patch/diff with your intended improvement to my > email, and I will gladly accept it, if it makes sense. > > -- > Your sincerely, > Vladimir Nikishkin (MiEr, lockywolf) > (Laptop) > _______________________________________________ > 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 willysr at slackbuilds.org Sat Jul 11 14:27:10 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 11 Jul 2026 21:27:10 +0700 Subject: [Slackbuilds-users] todays Update for slackbuild.org In-Reply-To: <7e8dba24-5d40-40b9-871d-8ee55e26e306@uni-mannheim.de> References: <534e0c34-1de2-441c-8b3a-6759909dd23f@uni-mannheim.de> <7e8dba24-5d40-40b9-871d-8ee55e26e306@uni-mannheim.de> Message-ID: <20260711212633.7e7746e4@tuf15.slackie.org> >Hello Willy, > >same Problem: >[TXT] SLACKBUILDS.TXT 2026-07-04 08:21 >6.0M [ ] SLACKBUILDS.TXT.gz 2026-07-04 08:21 >1.3M [TXT] SLACKBUILDS.TXT.new 2026-07-11 05:59 >1.7M This is due to this commit apparently https://git.slackbuilds.org/slackbuilds/commit/games/beetle-psx-libretro?h=15.0&id=2e8cf7d0099e8b40095508b5ad9cd8524362f5fc khronosschoty, can you rename the .info into another name? mednafen_psx_libretro.info mednafen_psx_hw_libretro.info the script parse this as part of the .info files used for SBo -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From willysr at slackbuilds.org Sat Jul 11 14:46:33 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 11 Jul 2026 21:46:33 +0700 Subject: [Slackbuilds-users] Update - 20260711.2 Message-ID: <20260711214607.652ce2c9@tuf15.slackie.org> Small update to fix the public update script Sat Jul 11 14:37:17 UTC 2026 games/beetle-psx-libretro: Fix script. misc/hoorex: Fix MD5SUM +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From 1.41421 at gmail.com Sat Jul 11 16:28:24 2026 From: 1.41421 at gmail.com (Luveh Keraph) Date: Sat, 11 Jul 2026 10:28:24 -0600 Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: <20260711174041.0cd004c6@tuf15.slackie.org> References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: claude-desktop completely messed up my Xfce desktop. Even killing all of the processes that I could find related to claude, my xfwm4 window manager became unresponsive. Nothing that I tried could bring it back to life; I had to reboot my system. On Sat, Jul 11, 2026 at 4:41?AM Willy Sudiarto Raharjo < willysr at slackbuilds.org> wrote: > Sat Jul 11 10:12:20 UTC 2026 > academic/armadillo: Orphaned (unmaintained). > academic/arpack: Orphaned (unmaintained). > academic/cdo: Updated for version 2.6.3. > academic/free42: New Maintainer > academic/g3data: Orphaned (unmaintained). > academic/lapack95: Orphaned (unmaintained). > academic/ncview: Orphaned (unmaintained). > academic/ngspice-jit: Added (ngspice with JIT compilation). > academic/pcalc: Orphaned (unmaintained). > academic/verilator: Orphaned (unmaintained). > accessibility/ruvim: Orphaned (unmaintained). > audio/cava: Orphaned (unmaintained). > audio/dcd: Orphaned (unmaintained). > audio/easymp3gain: Orphaned (unmaintained). > audio/id3v2: Updated for version 0.1.12_10, new maintainer. > audio/mp3check: New maintainer. > audio/mp3wrap: Orphaned (unmaintained). > audio/mt-daapd: Orphaned (unmaintained). > audio/openvino-plugins-ai-audacity: Orphaned - no maintainer. > audio/pmidi: Orphaned (unmaintained). > audio/reaper: Updated for version 7.77 > audio/rplay: Orphaned (unmaintained). > audio/sacd-extract: Added (Extract Tracks). > audio/snd: Orphaned (unmaintained). > audio/sonata: Orphaned (unmaintained). > audio/whipper: Rename python-discid dep. > audio/xmms-scrobbler: Orphaned (unmaintained). > audio/xmms-shn: New maintainer. > desktop/2bwm: Updated for version 0.3 + new maintainer > desktop/ClamAV-GUI: Updated for version 1.4.1 > desktop/PyPanel: Orphaned (unmaintained). > desktop/Vanilla-DMZ: Orphaned (unmaintained). > desktop/XDecorations: Orphaned (unmaintained). > desktop/alacarte: Orphaned (unmaintained). > desktop/awf: Updated for version 4.2.0. > desktop/bashrun2: Orphaned (unmaintained). > desktop/bashrun: Orphaned (unmaintained). > desktop/claude-desktop: Added (Claude desktop). > desktop/cwm-openbsd: Removed (unmaintained). > desktop/draco: Orphaned (unmaintained). > desktop/dzen2: Orphaned (unmaintained). > desktop/human-gtk-theme: Updated for version 3.2.0. > desktop/i3lock: Updated for version 2.16 + new maintainer > desktop/ion: Orphaned (unmaintained). > desktop/kanyremote: Orphaned (unmaintained). > desktop/macopix: Orphaned (unmaintained). > desktop/mugshot: Updated script + new maintainer > desktop/musca: Orphaned (unmaintained). > desktop/netwmpager: Orphaned (unmaintained). > desktop/nitrokey-app: Orphaned (unmaintained). > desktop/obapps: Orphaned (unmaintained). > desktop/parcellite: Updated for version 1.2.5 + new maintainer > desktop/pidgin-guifications: Orphaned (unmaintained). > desktop/polybar: Updated for version 3.7.2 + new maintainer > desktop/razercfg: New maintainer. > desktop/rodent: Orphaned (unmaintained). > desktop/root-tail: Orphaned (unmaintained). > desktop/stalonetray: Orphaned (unmaintained). > desktop/vtwm: Orphaned (unmaintained). > desktop/wmctrl: New maintainer. > development/Xdialog: Orphaned (unmaintained). > development/antlr2: New maintainer. > development/atom-amd64: Orphaned (unmaintained). > development/avr-gcc: New maintainer. > development/avr-gdb: New maintainer. > development/bakefile: Orphaned (unmaintained). > development/blocksruntime: Orphaned (unmaintained). > development/claude-code: Updated for version 2.1.201 > development/cutter: Updated for version 2.5.0. > development/dbeaver-ce: Updated for version 26.1.2. > development/dejagnu: Updated for version 1.6.3. > development/devhelp: Orphaned (unmaintained). > development/ecl: Orphaned (unmaintained). > development/edb-debugger: Orphaned (unmaintained). > development/electron-bin: Updated for version 43.0.0 > development/github-cli: Updated for version 2.96.0 > development/goland: Updated for version 2026.1.4. > development/google-go-lang: Updated for version 1.26.5. > development/gtkdialog: Orphaned (unmaintained). > development/idea: Updated for version 2026.1.4. > development/kcov: Orphaned (unmaintained). > development/kiwi: Orphaned (unmaintained). > development/letos: Updated for version 4.0.1 > development/logisim: Orphaned (unmaintained). > development/mg-openbsd: Removed (unmaintained). > development/mongodb-compass: Updated for version 1.49.10. > development/nickle: Orphaned (unmaintained). > development/nose: New maintainer. > development/notepadqq: Updated for version 20260704_1c748d5 > development/pgmodeler: Updated REQUIRES. > development/polyml: New maintainer > development/positron: Updated script. > development/prek: Updated for version 0.4.8. > development/rust-opt: Updated for version 1.96.1. > development/shiboken: Orphaned (unmaintained). > development/stgit: Orphaned (unmaintained). > development/sublime_merge: Orphaned (unmaintained). > development/systemtap: Orphaned (unmaintained). > development/typos-lsp: Added (Source Code Spell Checker). > development/typos: Added (Spellchecker). > development/vscode-bin: Updated for version 1.128.0. > games/UrbanTerror: New maintainer. > games/VASSAL: New Maintainer > games/beetle-psx-libretro: Updated for version 2026.07.07_672f213. > games/bluemoon: Orphaned (unmaintained). > games/cataclysmdda: Updated for version 0.I + new maintainer > games/cgoban: Orphaned (unmaintained). > games/dgen: New maintainer. > games/dopewars: New maintainer. > games/firestorm-opensim: Orphaned (unmaintained). > games/firestorm: Orphaned (unmaintained). > games/frogatto: Orphaned (unmaintained). > games/fs2open: Updated for version 26.0.0 + new maintainer > games/glxosd: Orphaned (unmaintained and *broken*). > games/gnugo: Orphaned (unmaintained). > games/hnefatafl: Orphaned (unmaintained). > games/lightyears: Updated for version 1.5.2 + new maintainer > games/onscripter: Orphaned (unmaintained). > games/openmw: Updated for version 0.51.0 + new maintainer > games/prboom: New maintainer. > games/residualvm: Orphaned (unmaintained). > games/rlvm: Orphaned (unmaintained). > games/roll: Updated for version 2.7.0, new maintainer. > games/scid_vs_pc: Update source. > games/singularity: Orphaned (unmaintained). > games/warsow: Orphaned (unmaintained). > games/worldofpadman: Orphaned (unmaintained). > games/wxLauncher: Added (Launcher for Freespace2). > games/xmoto: Orphaned (unmaintained). > gis/eccodes: Updated for version 2.47.3. > gis/gmapcatcher: Orphaned (unmaintained). > git/ci: Update CI dependencies. > graphics/XnViewMP: Orphaned (unmaintained). > graphics/azpainter: Orphaned (unmaintained). > graphics/barcode: Add douninst.sh; new maintainer. > graphics/converseen: Updated for version 0.15.2.6. > graphics/djview4: Orphaned (unmaintained). > graphics/gimagereader: Orphaned (unmaintained). > graphics/gliv: Orphaned (unmaintained). > graphics/imgmin: Orphaned (unmaintained). > graphics/ipe: Orphaned (unmaintained). > graphics/jpeg2ps: Orphaned (unmaintained). > graphics/metapixel: Orphaned (unmaintained). > graphics/svp: Orphaned (unmaintained). > graphics/vips: Updated for version 8.18.4. > graphics/wavelet-denoise: Orphaned (unmaintained). > graphics/white_dune: Orphaned (unmaintained). > graphics/whyteboard: Orphaned (unmaintained). > graphics/zgv: Orphaned (unmaintained). > ham/gridtracker2: Updated for version 2.260705.2. > ham/libsigmf: Updated for version 20260708.877b069e. > ham/qlog: Updated for version 0.51.1. > ham/sdrangel: Updated for version 7.27.1. > libraries/BeautifulSoup: New maintainer. > libraries/FormEncode: Orphaned (unmaintained). > libraries/MyGUI: Updated for version 3.4.3. > libraries/SQLObject: Orphaned (unmaintained). > libraries/avr-libc: New maintainer. > libraries/collada-dom: Updated for version 2.5.0. > libraries/fltk: New maintainer. > libraries/globalqss: Updated for version 1.2.0. > libraries/goffice: Updated for version 0.10.61. > libraries/imlib2_loaders: Fix email address. > libraries/iniparser: Orphaned (unmaintained). > libraries/jcal: Orphaned (unmaintained). > libraries/jreen: Orphaned (unmaintained). > libraries/libQuotient: Orphaned (unmaintained). > libraries/libaec: Updated for version 1.1.7. > libraries/libaosd: Orphaned (unmaintained). > libraries/libdbh2: Orphaned (unmaintained). > libraries/libdbi: New maintainer. > libraries/libdynamite: New maintainer. > libraries/libgadu: Orphaned (unmaintained). > libraries/libgnomecups: New maintainer. > libraries/libgnomeprint: New maintainer. > libraries/libgnomeprintui: New maintainer. > libraries/libgringotts: Orphaned (unmaintained). > libraries/libheif: Updated for version 1.23.1 > libraries/liblxi: Orphaned (unmaintained). > libraries/libmodbus: New Maintainer > libraries/libmpdclient: Updated for version 2.26 > libraries/libpar2: New maintainer. > libraries/librfm5: Orphaned (unmaintained). > libraries/libspf2: Orphaned (unmaintained). > libraries/libtubo0: Orphaned (unmaintained). > libraries/libversion: Use newer cmake. > libraries/libxml++: New maintainer. > libraries/lksctp-tools: Updated for version 1.0.21. > libraries/log4c: Orphaned (unmaintained). > libraries/netcdf: Updated for version 4.10.1. > libraries/pthsem: Orphaned (unmaintained). > libraries/qoauth: Orphaned (unmaintained). > libraries/quesoglc: New maintainer. > libraries/squish: Removed (Unmaintained). > libraries/stfl: New maintainer. > libraries/tox-extension-messages: Orphaned (unmaintained). > libraries/toxext: Orphaned (unmaintained). > libraries/udunits: New maintainer. > libraries/vcglib: Orphaned (unmaintained). > libraries/wxWidgets: Updated for version 3.2.11. > libraries/xerces-c: Updated for version 3.3.0 + new maintainer > libraries/zimg: Updated for version 3.0.6 > misc/IMSProg: Added (EEPROM Programmer). > misc/KeePassHttp: Orphaned (unmaintained). > misc/bbrun: Orphaned (unmaintained). > misc/beep: Updated for version 1.4.12, new maintainer. > misc/dwdiff: New maintainer. > misc/ghostpcl: Orphaned. > misc/glogg: Orphaned (unmaintained). > misc/gxmessage: Orphaned (unmaintained). > misc/hoorex: Updated for version 0.10.5 > misc/iscan-firmware: New maintainer. > misc/ltunify: Orphaned (unmaintained). > misc/megatunix: Orphaned (unmaintained). > misc/ollama: Updated for version 0.31.2. > misc/qtspell: Orphaned (unmaintained). > misc/sdcv: Orphaned (unmaintained). > misc/seahorse-plugins: Orphaned (unmaintained). > misc/utimer: Orphaned (unmaintained). > misc/with-readline: New maintainer. > misc/yubioath-desktop: Updated for version 7.4.1. > multimedia/anyremote: Orphaned (unmaintained). > multimedia/aom: New maintainer > multimedia/aom: Remove extraneous comments > multimedia/aom: Updated for version 3.14.1 > multimedia/dvdrip: Orphaned (unmaintained). > multimedia/emoc: Orphaned (unmaintained). > multimedia/iat: New maintainer. > multimedia/ivtv-utils: Orphaned (unmaintained). > multimedia/mp3fs: Orphaned (unmaintained). > multimedia/picard: Rename python-discid dep. > multimedia/sinthgunt: Orphaned (unmaintained). > multimedia/spek: Orphaned (unmaintained). > multimedia/strawberry: Updated for version 1.2.23. > multimedia/telepathy-farstream: Orphaned (unmaintained). > multimedia/telepathy-glib: New maintainer. > multimedia/telepathy-qt: Orphaned (unmaintained). > multimedia/videocut: Orphaned (unmaintained). > multimedia/xvid4conf: Orphaned (unmaintained). > network/3proxy: Updated for version 0.9.7. > network/GhostInTheMail: Orphaned (unmaintained). > network/Quaternion: Orphaned (unmaintained). > network/QuiteRSS: Updated README. > network/aggregate: Orphaned (unmaintained). > network/aiccu: Orphaned (unmaintained). > network/arp-scan: New maintainer. > network/arpwatch: Orphaned (unmaintained). > network/bitcoin: Updated for version 29.4. > network/bitlbee: New maintainer. > network/canto: Orphaned (unmaintained). > network/ckermit: Orphaned (unmaintained). > network/cmdiag: Orphaned (unmaintained). > network/csync: Orphaned (unmaintained). > network/dhcping: New maintainer. > network/dianara: Orphaned (unmaintained). > network/dnsproxy-bin: Updated for version 0.83.0. > network/docsis: Orphaned (unmaintained). > network/dropbear: Updated for version 2026.92. > network/dropbox: Updated for version 260.4.2926. > network/element-desktop-bin: Updated for version 1.12.23. > network/element-desktop: Updated for version 1.12.23. > network/et: Updated for version 6.2.8. > network/glusterfs: Orphaned (unmaintained). > network/gns3: Orphaned (unmaintained). > network/havp: Orphaned (unmaintained). > network/helium-browser: Updated for version 0.14.3.1 > network/httping: Orphaned (unmaintained). > network/httptunnel: Orphaned (unmaintained). > network/iodine: Updated for version 0.8.0, new maintainer. > network/iperf: Orphaned (unmaintained). > network/kasp_updater: Orphaned (unmaintained). > network/libmaxminddb: New maintainer. > network/librewolf: Updated for version 152.0.4_1 > network/lxi-tools: Orphaned (unmaintained). > network/megatools: Updated for version 1.11.5. > network/metasploit-framework-bin: Added (Penetration Testing) > network/monkey: Orphaned (unmaintained). > network/mpop: update to 1.4.22 > network/netperf: Orphaned (unmaintained). > network/niceshaper: Orphaned (unmaintained). > network/opera: Updated for version 133.0.5932.24 > network/pidgin-otr: Orphaned (unmaintained). > network/pidgin-visnotes: Orphaned (unmaintained). > network/proxytunnel: Orphaned (unmaintained). > network/pure-ftpd: Updated for version 1.0.54. > network/radvd: Orphaned (unmaintained). > network/rejik: Orphaned (unmaintained). > network/rspamd: Updated for version 4.1.1 > network/rssh: Orphaned (unmaintained). > network/signal-desktop: Updated for version 8.18.0. > network/sipcalc: Orphaned (unmaintained). > network/slowhttptest: Orphaned (unmaintained). > network/sniffjoke: Orphaned (unmaintained). > network/spambayes: Orphaned (unmaintained). > network/spawn-fcgi: New maintainer. > network/sshamble: Updated for version 0.3.3. > network/syncthingtray-bin: Updated for version 2.1.2. > network/t50: Orphaned (unmaintained). > network/tcptunnel: Orphaned (unmaintained). > network/trurl: New maintainer. > network/tunctl: Orphaned (unmaintained). > network/ucspi-tcp: New maintainer. > network/udpxy: Orphaned (unmaintained). > network/uwsgi: New maintainer. > network/vivaldi: Updated for version 8.1.4087.46. > network/waterfox: Updated for version 6.6.16 > network/wireshark: Updated for version 4.6.7. > network/wol: New maintainer. > network/yle-dl: Updated for version 20260624. > network/yt-dlp-bin: Updated for version 2026.07.04. > network/zen-browser: Updated for version 1.21.5b > office/Joplin: Updated for version 3.6.15. > office/Ted: Fix email address. > office/ding: Orphaned (unmaintained). > office/epdfview: Orphaned (unmaintained). > office/flowkeeper: Orphaned (unmaintained). > office/full-pack: Orphaned (unmaintained). > office/ganttproject: Orphaned (unmaintained). > office/gnumeric: Updated for version 1.12.61. > office/hebcal: Updated for version 5.13.0. > office/kbgoffice: Orphaned (unmaintained). > office/kchmviewer-qt: Added (CHM & EPUB Viewer). > office/lcal: Orphaned (unmaintained). > office/openoffice-langpack: Orphaned (unmaintained). > office/pcal: Orphaned (unmaintained). > office/qownnotes: Updated for version 26.7.5. > office/texstudio: Updated for version 4.9.5 > perl/libwww-perl: New maintainer. > perl/perl-AnyEvent-HTTP: Orphaned (unmaintained). > perl/perl-Archive-Zip: New maintainer. > perl/perl-Carp-Clan: New maintainer. > perl/perl-Class-Inspector: New maintainer. > perl/perl-Config-Find: Orphaned (unmaintained). > perl/perl-Curses-UI: New maintainer. > perl/perl-Data-OptList: New maintainer. > perl/perl-Date-Calc: New maintainer. > perl/perl-Digest-SHA: Removed (already in Slackware). > perl/perl-File-HomeDir: New maintainer. > perl/perl-Gnome2-Vte: New maintainer. > perl/perl-HTML-Tree: New maintainer. > perl/perl-IO-Stty: New maintainer. > perl/perl-IPC-DirQueue: Orphaned (unmaintained). > perl/perl-IPC-Run3: Orphaned (unmaintained). > perl/perl-Image-Size: New maintainer. > perl/perl-List-MoreUtils: New maintainer. > perl/perl-Log-Log4perl: New maintainer. > perl/perl-Params-Util: New maintainer. > perl/perl-Probe-Perl: Orphaned (unmaintained). > perl/perl-Proc-ProcessTable: New maintainer. > perl/perl-Regexp-Common: New maintainer. > perl/perl-Socket6: New maintainer. > perl/perl-Statistics-Descriptive: Orphaned (unmaintained). > perl/perl-Sub-Exporter: New maintainer. > perl/perl-Sub-Override: New maintainer. > perl/perl-TeX-Hyphen: Orphaned (unmaintained). > perl/perl-Test-MockModule: Orphaned (unmaintained). > perl/perl-Test-MockObject: Orphaned (unmaintained). > perl/perl-Text-Hyphen: Orphaned (unmaintained). > perl/perl-Time-modules: Orphaned (unmaintained). > perl/perl-config-general: New maintainer. > perl/perl-digest-sha1: New maintainer. > perl/perl-encode-locale: New maintainer. > perl/perl-file-listing: New maintainer. > perl/perl-html-parser: New maintainer. > perl/perl-html-parser: New maintainer. > perl/perl-http-cookies: New maintainer. > perl/perl-http-daemon: New maintainer. > perl/perl-http-date: New maintainer. > perl/perl-http-message: New maintainer. > perl/perl-http-negotiate: New maintainer. > perl/perl-lwp-mediatypes: New maintainer. > perl/perl-net-http: New maintainer. > perl/perl-www-robotrules: New maintainer. > python/PyGreSQL: Updated REQUIRES to use postgres18 > python/hgsubversion: Orphaned (unmaintained). > python/pychecker: Orphaned (unmaintained). > python/pydblite: Orphaned (unmaintained). > python/pyflakes: Orphaned (unmaintained). > python/pyfltk: Orphaned (unmaintained). > python/pygtksourceview: New maintainer. > python/pyside: New maintainer. > python/python-bitstring: Updated for version 4.4.0. > python/python-discid: Removed (renamed to python3-discid). > python/python2-cached-property: Orphaned (unmaintained). > python/python2-mpd: Orphaned (unmaintained). > python/python2-oauth: Orphaned (unmaintained). > python/python2-pydns: Orphaned (unmaintained). > python/python2-pypolicyd-spf: Orphaned (unmaintained). > python/python2-pyspf: Orphaned (unmaintained). > python/python2-texttable: Orphaned (unmaintained). > python/python2-vatnumber: New maintainer. > python/python2-xlwt: New maintainer. > python/python3-bitarray: Updated for version 3.8.2. > python/python3-cffi: Updated for version 2.1.0. > python/python3-discid: Added (libdiscid Python Bindings). > python/python3-libusb1: Updated for version 3.4.0. > python/python3-mistune: Updated for version 3.3.3 > python/python3-odfdo: Updated for version 3.22.10 > python/python3-plotly: Updated for version 6.9.0 > python/python3-pyproject-metadata: Updated for version 0.12.1. > python/subvertpy: Orphaned (unmaintained). > python/tqdm: New maintainer. > python/tzdata: Updated for version 2026.3. > python/vinetto: Orphaned (unmaintained). > python/winpdb: Orphaned (unmaintained). > system/Lmod: Updated for version 9.2.5. > system/TLP: Updated for version 1.10.2 > system/bottom: Updated for version 0.14.4. > system/c-icap: Orphaned (unmaintained). > system/capabilities: Orphaned (unmaintained). > system/ccid: Updated for version 1.8.2 + new maintainer > system/cfengine: Orphaned (unmaintained). > system/containerd: New maintainer. > system/cpuid: Updated for version 20260503. > system/crunch: Orphaned (unmaintained). > system/docker-cli: New maintainer. > system/docker-compose: Updated for version 5.3.0 > system/docker-machine-kvm: Removed (unmaintained). > system/docker-machine: Removed (unmaintained). > system/docker: New maintainer. > system/dtach: Orphaned (unmaintained). > system/dymo-cups-drivers: Orphaned (unmaintained). > system/dynamips: Orphaned (unmaintained). > system/ecofont-ttf: Orphaned (unmaintained). > system/eibd: Orphaned (unmaintained). > system/eltclsh: Updated for version 1.20. > system/eza: Updated for version 0.23.5. > system/fastfetch: Updated for version 2.66.0. > system/fdupes: Updated for version 2.4.0, new mtaintainer. > system/file-roller: Edit README, slack-desc, maintainer info > system/fira-code-fonts: Updated for version 6.2; new maintainer. > system/font-manager: New Maintainer > system/fzf: Updated for version 0.74.0. > system/gigolo: Orphaned (unmaintained). > system/glyptodon: Orphaned (unmaintained). > system/gtklp: Orphaned (unmaintained). > system/hal-flash: Orphaned (unmaintained). > system/hdapsd: Orphaned (unmaintained). > system/heirloom-sh: New maintainer. > system/hfsprogs: New maintainer. > system/incus-ui: Updated for version 20260706_64d46e71 > system/incus: Added a README.docker > system/iotop: Orphaned (unmaintained). > system/iucode_tool: New maintainer > system/jenkins: Updated for version 2.568.1. > system/libnatspec: Orphaned (unmaintained). > system/limine: Updated for version 12.4.1 > system/lsb-release: New maintainer. > system/lxsplit: Orphaned (unmaintained). > system/mingetty: Orphaned (unmaintained). > system/mrxvt: New maintainer. > system/ms-sys: New maintainer. > system/mtftar: Orphaned (unmaintained). > system/multibootusb: Orphaned (unmaintained). > system/nanum-coding-fonts-ttf: Orphaned (unmaintained). > system/nanum-fonts-ttf: Orphaned (unmaintained). > system/newrelic-sysmond: Orphaned (unmaintained). > system/nologind: Orphaned (unmaintained). > system/nut: Orphaned (unmaintained). > system/nvidia-kernel: Update README. > system/nvidia-legacy390-driver: New maintainer. > system/nvidia-legacy390-kernel: New maintainer. > system/nvidia-legacy580-driver: Updated for version 580.173.02. > system/nvidia-legacy580-kernel: Updated for version 580.173.02. > system/open-vm-tools: Orphaned (unmaintained). > system/openct: Orphaned (unmaintained). > system/pcsc-perl: New maintainer. > system/pcsc-tools: New maintainer. > system/physlock: Orphaned (unmaintained). > system/powerkit: Orphaned (unmaintained). > system/prometheus: Updated for version 3.13.0 > system/qtfm: Orphaned (unmaintained). > system/quotatool: Orphaned (unmaintained). > system/recoverjpeg: Orphaned (unmaintained). > system/rng-tools: Orphaned (unmaintained). > system/runc: New maintainer. > system/schedtool: New maintainer. > system/seahorse: Orphaned (unmaintained). > system/set_rlimits: New maintainer. > system/shake: Orphaned (unmaintained). > system/squidclamav: Orphaned (unmaintained). > system/telegraf: Updated for version 1.39.1 > system/thinkfan: Updated for version 2.0.0; new maintainer. > system/tini: New maintainer. > system/tkdvd: Orphaned (unmaintained). > system/tp_smapi: Orphaned (unmaintained). > system/tracker: New maintainer. > system/ttf-arphic-uming: Orphaned (unmaintained). > system/ttf-lato: Fix download link; new maintainer. > system/uae: Orphaned (unmaintained). > system/udftools: Orphaned (unmaintained). > system/ugrep: Added (Fast searching). > system/unetbootin: New maintainer. > system/uptimed: Updated for version 0.4.7. > system/veracrypt: Orphaned (unmaintained). > system/wmconfig: Orphaned (unmaintained). > system/wqy-microhei-font-ttf: Fixes for version 0.2.0_beta. > system/xchm: Updated for version 1.39, new maintainer. > system/xinput_calibrator: Orphaned (unmaintained). > system/zarfy: ARCH handling; new maintainer. > system/zfs-auto-snapshot: Orphaned (unmaintained). > system/znapzend: Orphaned (unmaintained). > system/zopfli: 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 urchlay at slackware.uk Sat Jul 11 20:35:09 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Jul 2026 16:35:09 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <3DF98620-C894-4441-8ACA-93E4AEEFD0B8@free.fr> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> <3DF98620-C894-4441-8ACA-93E4AEEFD0B8@free.fr> Message-ID: On Sat, 11 Jul 2026, Tonus via SlackBuilds-users wrote: > I would have put "how" before long. Well-spotted, thanks. From lumin+slackbuilds at etherlight.link Sat Jul 11 21:52:11 2026 From: lumin+slackbuilds at etherlight.link (Lumin Etherlight) Date: Sun, 12 Jul 2026 00:52:11 +0300 Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> (B. Watson's message of "Sat, 11 Jul 2026 06:53:04 -0400 (EDT)") References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> Message-ID: "B. Watson" writes: > [...] > https://slackbuilds.org/orphaned_builds_faq.txt > [...] > make any suggestions or corrections that should be > added/corrected. For the question: > Q: One of my builds depends on a build that got > orphaned. What should I do? The answer: > If you don't, eventually the orphaned build may be > deleted, which leave your build broken. Is perhaps missing a "would" between "which" and "leave", or it should be "leaves" instead. Thank you for your work :) Best Regards, Lumin Etherlight From urchlay at slackware.uk Sat Jul 11 21:56:37 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 11 Jul 2026 17:56:37 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> Message-ID: On Sun, 12 Jul 2026, Lumin Etherlight via SlackBuilds-users wrote: >> If you don't, eventually the orphaned build may be >> deleted, which leave your build broken. > > Is perhaps missing a "would" between "which" > and "leave", or it should be "leaves" instead. Nice catch. Fixed. From andrzej at telszewski.com Sun Jul 12 22:56:08 2026 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Mon, 13 Jul 2026 00:56:08 +0200 Subject: [Slackbuilds-users] Scripts up for grabs Message-ID: Hi, I'm orphaning the following SlackBuilds, please feel free to grab. (Some seem to be dead upstream already.) development/Hex2bin development/avr8-burn-o-mat development/avr8-gnu-toolchain development/eagle development/flawfinder development/guzzle_sphinx_theme development/kconfig-frontends development/u-boot-tools libraries/Smarty libraries/geshi network/liferea network/ntpclient network/rtl8821ce network/sshguard office/gnokii office/osmo system/acpi_call system/fpm2 system/microcode_ctl system/x86_energy_perf_policy -- Best regards, Andrzej Telszewski From urchlay at slackware.uk Sun Jul 12 23:03:03 2026 From: urchlay at slackware.uk (B. Watson) Date: Sun, 12 Jul 2026 19:03:03 -0400 (EDT) Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: References: Message-ID: <28364da-7552-31c9-8e2c-5754a53ba0@slackware.uk> On Mon, 13 Jul 2026, Andrzej Telszewski wrote: > network/rtl8821ce You happen to know if this still builds with recent kernels? I hate to see hardware drivers disappear, if they work at all... From slackinfo at slackwarelinux.se Mon Jul 13 09:14:50 2026 From: slackinfo at slackwarelinux.se (slackinfo at slackwarelinux.se) Date: Mon, 13 Jul 2026 11:14:50 +0200 Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: <28364da-7552-31c9-8e2c-5754a53ba0@slackware.uk> References: <28364da-7552-31c9-8e2c-5754a53ba0@slackware.uk> Message-ID: <80fc0ff88440f80ee6b48a5c1ebd4616@slackwarelinux.se> Morning! This driver seems to be included with later kernels. At least in 6.18 (If I read it correct, since 2023 at the latest) Maintained by Bitterblue Smith (?) I didn't check all active/current kernel versions. /mdkdio a.k.a. Jorgen On 2026-07-13 01:03, B. Watson wrote: > On Mon, 13 Jul 2026, Andrzej Telszewski wrote: > >> network/rtl8821ce > > You happen to know if this still builds with recent kernels? > > I hate to see hardware drivers disappear, if they work at all... > _______________________________________________ > 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 Mon Jul 13 09:45:28 2026 From: urchlay at slackware.uk (B. Watson) Date: Mon, 13 Jul 2026 05:45:28 -0400 (EDT) Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: <80fc0ff88440f80ee6b48a5c1ebd4616@slackwarelinux.se> References: <28364da-7552-31c9-8e2c-5754a53ba0@slackware.uk> <80fc0ff88440f80ee6b48a5c1ebd4616@slackwarelinux.se> Message-ID: On Mon, 13 Jul 2026, slackinfo at slackwarelinux.se wrote: > Morning! > This driver seems to be included with later kernels. At least in 6.18 > (If I read it correct, since 2023 at the latest) > Maintained by Bitterblue Smith (?) > > I didn't check all active/current kernel versions. OK, maybe I'll take it over because it's still needed for 15.0's 5.x kernel. It can vanish at the next Slackware release (15.1 or 16.0 or whatever it ends up being called). From andrzej at telszewski.com Mon Jul 13 09:54:42 2026 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Mon, 13 Jul 2026 11:54:42 +0200 Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: References: <28364da-7552-31c9-8e2c-5754a53ba0@slackware.uk> <80fc0ff88440f80ee6b48a5c1ebd4616@slackwarelinux.se> Message-ID: <21119084-20bf-4d50-b8dc-12020716ef20@telszewski.com> On 13/07/2026 11:45, B. Watson wrote: > > > On Mon, 13 Jul 2026, slackinfo at slackwarelinux.se wrote: > >> Morning! >> This driver seems to be included with later kernels. At least in 6.18 >> (If I read it correct, since 2023 at the latest) >> Maintained by Bitterblue Smith (?) >> >> I didn't check all active/current kernel versions. > > OK, maybe I'll take it over because it's still needed for 15.0's 5.x > kernel. It can vanish at the next Slackware release (15.1 or 16.0 or > whatever it ends up being called). Unfortunately I don't have said hardware, and I'm running 6.18.x from -current on my 15.0 (otherwise graphics wouldn't work.) From milgram at cgpp.com Tue Jul 14 03:56:58 2026 From: milgram at cgpp.com (J. Milgram) Date: Mon, 13 Jul 2026 23:56:58 -0400 Subject: [Slackbuilds-users] md5sum fails for SLACKBUILDS.TXT.gz Message-ID: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> Getting a checksum error when running sbocheck: (sbotools 4.2) sudo /usr/sbin/sbocheck Updating SlackBuilds tree... Using mirror: rsync://slackbuilds.org/slackbuilds/15.0/ ? ? ? 6,395,807? ?4%? 262.94kB/s? ? 0:00:23 (xfr#1, to-chk=0/81752) CHECKSUMS.md5.asc verified. See /usr/sbo/gpg.log. ./SLACKBUILDS.TXT.gz: FAILED md5sum: WARNING: 1 computed checksum did NOT match Could? it be some config thing I need to take care of here on my end? Or something actually amiss? thx Judah -- ===== milgram at cgpp.com 301-257-7069 From urchlay at slackware.uk Tue Jul 14 04:35:50 2026 From: urchlay at slackware.uk (B. Watson) Date: Tue, 14 Jul 2026 00:35:50 -0400 (EDT) Subject: [Slackbuilds-users] md5sum fails for SLACKBUILDS.TXT.gz In-Reply-To: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> References: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> Message-ID: <19a05a37-79fc-f171-5a78-7332cf8bb0@slackware.uk> On Mon, 13 Jul 2026, J. Milgram via SlackBuilds-users wrote: > ./SLACKBUILDS.TXT.gz: FAILED > md5sum: WARNING: 1 computed checksum did NOT match > > Could? it be some config thing I need to take care of here on my end? Or > something actually amiss? That would be me. I regenerated SLACKBUILDS.TXT and SLACKBUILDS.TXT.gz because there was a bug in the script that creates them. I actually didn't know CHECKSUMS.md5 contained a checksum for SLACKBUILDS.TXT.gz so didn't regenerate it, too... From slackcoder at server.ky Tue Jul 14 13:17:10 2026 From: slackcoder at server.ky (Slack Coder) Date: Tue, 14 Jul 2026 08:17:10 -0500 Subject: [Slackbuilds-users] md5sum fails for SLACKBUILDS.TXT.gz In-Reply-To: <19a05a37-79fc-f171-5a78-7332cf8bb0@slackware.uk> References: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> <19a05a37-79fc-f171-5a78-7332cf8bb0@slackware.uk> Message-ID: Some workflow files are still showing up too, ./.forgejo/workflows/ci.yml' and './.forgejo/workflows/ci.yml'. On 7/13/26 23:35, B. Watson wrote: > > > On Mon, 13 Jul 2026, J. Milgram via SlackBuilds-users wrote: > >> ./SLACKBUILDS.TXT.gz: FAILED >> md5sum: WARNING: 1 computed checksum did NOT match >> >> Could? it be some config thing I need to take care of here on my end? >> Or something actually amiss? > > That would be me. I regenerated SLACKBUILDS.TXT and SLACKBUILDS.TXT.gz > because there was a bug in the script that creates them. I actually > didn't know CHECKSUMS.md5 contained a checksum for SLACKBUILDS.TXT.gz > so didn't regenerate it, too... > > _______________________________________________ > 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 mm at dorfdsl.de Tue Jul 14 15:49:53 2026 From: mm at dorfdsl.de (Marco Moock) Date: Tue, 14 Jul 2026 17:49:53 +0200 Subject: [Slackbuilds-users] creating a Slackbuild for Hearts Message-ID: Hello! I am currently playing around with Hearts from https://github.com/Rescator7/Hearts/ I have a few questions regarding this software for a submission in SBo. It does not use "configure" nor "make install", so the compiled binary (this is the only thing that make creates) must be copied to the build dir to be packet in the Slackware tgz package. The binary begins with an uppercase letter. Is such a command acceptable or does it need to be renamed? It does not include a .desktop file for being started from the graphical user interfaces. It also does not include a manpage. Is it acceptable to create a slackbuild for this software? -- kind regards Marco Junk-Mail bitte an trashcan at stinkedores.dorfdsl.de From belka at caraus.de Tue Jul 14 18:41:39 2026 From: belka at caraus.de (Eugen Wissner) Date: Tue, 14 Jul 2026 20:41:39 +0200 Subject: [Slackbuilds-users] creating a Slackbuild for Hearts In-Reply-To: References: Message-ID: Hello, that all sounds fine. Software maintainers and developers use all sort of different ways to build and package their software and package maintainers have to handle it. Their programs on SBo that provide uppercase binaries - it wouldn't be the first one. Since it is desktop software, you may want to write a .desktop file yourself and put it together with the slackbuild in a separate file - you will find a lot of examples in SBo that are doing exactly that. Best regards Eugen On Tue Jul 14, 2026 at 5:49 PM CEST, Marco Moock wrote: > Hello! > > I am currently playing around with Hearts from > https://github.com/Rescator7/Hearts/ > > I have a few questions regarding this software for a submission in SBo. > > It does not use "configure" nor "make install", so the compiled binary > (this is the only thing that make creates) must be copied to the build > dir to be packet in the Slackware tgz package. > > The binary begins with an uppercase letter. > Is such a command acceptable or does it need to be renamed? > > It does not include a .desktop file for being started from the graphical > user interfaces. > > It also does not include a manpage. > > Is it acceptable to create a slackbuild for this software? From jebrhansen+SBo at gmail.com Tue Jul 14 22:00:01 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Tue, 14 Jul 2026 15:00:01 -0700 Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: <20260711174041.0cd004c6@tuf15.slackie.org> References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: My computer is finally back up. I can take the following: audio/easymp3gain games/warsow games/xmoto graphics/XnViewMP misc/utimer multimedia/dvdrip network/sipcalc system/iotop system/nut Some look stagnant, but still seem useful. I'll work on pushing updates for those that need version bumps as I have time. Jeremy On Sat, Jul 11, 2026 at 3:41?AM Willy Sudiarto Raharjo < willysr at slackbuilds.org> wrote: > Sat Jul 11 10:12:20 UTC 2026 > academic/armadillo: Orphaned (unmaintained). > academic/arpack: Orphaned (unmaintained). > academic/cdo: Updated for version 2.6.3. > academic/free42: New Maintainer > academic/g3data: Orphaned (unmaintained). > academic/lapack95: Orphaned (unmaintained). > academic/ncview: Orphaned (unmaintained). > academic/ngspice-jit: Added (ngspice with JIT compilation). > academic/pcalc: Orphaned (unmaintained). > academic/verilator: Orphaned (unmaintained). > accessibility/ruvim: Orphaned (unmaintained). > audio/cava: Orphaned (unmaintained). > audio/dcd: Orphaned (unmaintained). > audio/easymp3gain: Orphaned (unmaintained). > audio/id3v2: Updated for version 0.1.12_10, new maintainer. > audio/mp3check: New maintainer. > audio/mp3wrap: Orphaned (unmaintained). > audio/mt-daapd: Orphaned (unmaintained). > audio/openvino-plugins-ai-audacity: Orphaned - no maintainer. > audio/pmidi: Orphaned (unmaintained). > audio/reaper: Updated for version 7.77 > audio/rplay: Orphaned (unmaintained). > audio/sacd-extract: Added (Extract Tracks). > audio/snd: Orphaned (unmaintained). > audio/sonata: Orphaned (unmaintained). > audio/whipper: Rename python-discid dep. > audio/xmms-scrobbler: Orphaned (unmaintained). > audio/xmms-shn: New maintainer. > desktop/2bwm: Updated for version 0.3 + new maintainer > desktop/ClamAV-GUI: Updated for version 1.4.1 > desktop/PyPanel: Orphaned (unmaintained). > desktop/Vanilla-DMZ: Orphaned (unmaintained). > desktop/XDecorations: Orphaned (unmaintained). > desktop/alacarte: Orphaned (unmaintained). > desktop/awf: Updated for version 4.2.0. > desktop/bashrun2: Orphaned (unmaintained). > desktop/bashrun: Orphaned (unmaintained). > desktop/claude-desktop: Added (Claude desktop). > desktop/cwm-openbsd: Removed (unmaintained). > desktop/draco: Orphaned (unmaintained). > desktop/dzen2: Orphaned (unmaintained). > desktop/human-gtk-theme: Updated for version 3.2.0. > desktop/i3lock: Updated for version 2.16 + new maintainer > desktop/ion: Orphaned (unmaintained). > desktop/kanyremote: Orphaned (unmaintained). > desktop/macopix: Orphaned (unmaintained). > desktop/mugshot: Updated script + new maintainer > desktop/musca: Orphaned (unmaintained). > desktop/netwmpager: Orphaned (unmaintained). > desktop/nitrokey-app: Orphaned (unmaintained). > desktop/obapps: Orphaned (unmaintained). > desktop/parcellite: Updated for version 1.2.5 + new maintainer > desktop/pidgin-guifications: Orphaned (unmaintained). > desktop/polybar: Updated for version 3.7.2 + new maintainer > desktop/razercfg: New maintainer. > desktop/rodent: Orphaned (unmaintained). > desktop/root-tail: Orphaned (unmaintained). > desktop/stalonetray: Orphaned (unmaintained). > desktop/vtwm: Orphaned (unmaintained). > desktop/wmctrl: New maintainer. > development/Xdialog: Orphaned (unmaintained). > development/antlr2: New maintainer. > development/atom-amd64: Orphaned (unmaintained). > development/avr-gcc: New maintainer. > development/avr-gdb: New maintainer. > development/bakefile: Orphaned (unmaintained). > development/blocksruntime: Orphaned (unmaintained). > development/claude-code: Updated for version 2.1.201 > development/cutter: Updated for version 2.5.0. > development/dbeaver-ce: Updated for version 26.1.2. > development/dejagnu: Updated for version 1.6.3. > development/devhelp: Orphaned (unmaintained). > development/ecl: Orphaned (unmaintained). > development/edb-debugger: Orphaned (unmaintained). > development/electron-bin: Updated for version 43.0.0 > development/github-cli: Updated for version 2.96.0 > development/goland: Updated for version 2026.1.4. > development/google-go-lang: Updated for version 1.26.5. > development/gtkdialog: Orphaned (unmaintained). > development/idea: Updated for version 2026.1.4. > development/kcov: Orphaned (unmaintained). > development/kiwi: Orphaned (unmaintained). > development/letos: Updated for version 4.0.1 > development/logisim: Orphaned (unmaintained). > development/mg-openbsd: Removed (unmaintained). > development/mongodb-compass: Updated for version 1.49.10. > development/nickle: Orphaned (unmaintained). > development/nose: New maintainer. > development/notepadqq: Updated for version 20260704_1c748d5 > development/pgmodeler: Updated REQUIRES. > development/polyml: New maintainer > development/positron: Updated script. > development/prek: Updated for version 0.4.8. > development/rust-opt: Updated for version 1.96.1. > development/shiboken: Orphaned (unmaintained). > development/stgit: Orphaned (unmaintained). > development/sublime_merge: Orphaned (unmaintained). > development/systemtap: Orphaned (unmaintained). > development/typos-lsp: Added (Source Code Spell Checker). > development/typos: Added (Spellchecker). > development/vscode-bin: Updated for version 1.128.0. > games/UrbanTerror: New maintainer. > games/VASSAL: New Maintainer > games/beetle-psx-libretro: Updated for version 2026.07.07_672f213. > games/bluemoon: Orphaned (unmaintained). > games/cataclysmdda: Updated for version 0.I + new maintainer > games/cgoban: Orphaned (unmaintained). > games/dgen: New maintainer. > games/dopewars: New maintainer. > games/firestorm-opensim: Orphaned (unmaintained). > games/firestorm: Orphaned (unmaintained). > games/frogatto: Orphaned (unmaintained). > games/fs2open: Updated for version 26.0.0 + new maintainer > games/glxosd: Orphaned (unmaintained and *broken*). > games/gnugo: Orphaned (unmaintained). > games/hnefatafl: Orphaned (unmaintained). > games/lightyears: Updated for version 1.5.2 + new maintainer > games/onscripter: Orphaned (unmaintained). > games/openmw: Updated for version 0.51.0 + new maintainer > games/prboom: New maintainer. > games/residualvm: Orphaned (unmaintained). > games/rlvm: Orphaned (unmaintained). > games/roll: Updated for version 2.7.0, new maintainer. > games/scid_vs_pc: Update source. > games/singularity: Orphaned (unmaintained). > games/warsow: Orphaned (unmaintained). > games/worldofpadman: Orphaned (unmaintained). > games/wxLauncher: Added (Launcher for Freespace2). > games/xmoto: Orphaned (unmaintained). > gis/eccodes: Updated for version 2.47.3. > gis/gmapcatcher: Orphaned (unmaintained). > git/ci: Update CI dependencies. > graphics/XnViewMP: Orphaned (unmaintained). > graphics/azpainter: Orphaned (unmaintained). > graphics/barcode: Add douninst.sh; new maintainer. > graphics/converseen: Updated for version 0.15.2.6. > graphics/djview4: Orphaned (unmaintained). > graphics/gimagereader: Orphaned (unmaintained). > graphics/gliv: Orphaned (unmaintained). > graphics/imgmin: Orphaned (unmaintained). > graphics/ipe: Orphaned (unmaintained). > graphics/jpeg2ps: Orphaned (unmaintained). > graphics/metapixel: Orphaned (unmaintained). > graphics/svp: Orphaned (unmaintained). > graphics/vips: Updated for version 8.18.4. > graphics/wavelet-denoise: Orphaned (unmaintained). > graphics/white_dune: Orphaned (unmaintained). > graphics/whyteboard: Orphaned (unmaintained). > graphics/zgv: Orphaned (unmaintained). > ham/gridtracker2: Updated for version 2.260705.2. > ham/libsigmf: Updated for version 20260708.877b069e. > ham/qlog: Updated for version 0.51.1. > ham/sdrangel: Updated for version 7.27.1. > libraries/BeautifulSoup: New maintainer. > libraries/FormEncode: Orphaned (unmaintained). > libraries/MyGUI: Updated for version 3.4.3. > libraries/SQLObject: Orphaned (unmaintained). > libraries/avr-libc: New maintainer. > libraries/collada-dom: Updated for version 2.5.0. > libraries/fltk: New maintainer. > libraries/globalqss: Updated for version 1.2.0. > libraries/goffice: Updated for version 0.10.61. > libraries/imlib2_loaders: Fix email address. > libraries/iniparser: Orphaned (unmaintained). > libraries/jcal: Orphaned (unmaintained). > libraries/jreen: Orphaned (unmaintained). > libraries/libQuotient: Orphaned (unmaintained). > libraries/libaec: Updated for version 1.1.7. > libraries/libaosd: Orphaned (unmaintained). > libraries/libdbh2: Orphaned (unmaintained). > libraries/libdbi: New maintainer. > libraries/libdynamite: New maintainer. > libraries/libgadu: Orphaned (unmaintained). > libraries/libgnomecups: New maintainer. > libraries/libgnomeprint: New maintainer. > libraries/libgnomeprintui: New maintainer. > libraries/libgringotts: Orphaned (unmaintained). > libraries/libheif: Updated for version 1.23.1 > libraries/liblxi: Orphaned (unmaintained). > libraries/libmodbus: New Maintainer > libraries/libmpdclient: Updated for version 2.26 > libraries/libpar2: New maintainer. > libraries/librfm5: Orphaned (unmaintained). > libraries/libspf2: Orphaned (unmaintained). > libraries/libtubo0: Orphaned (unmaintained). > libraries/libversion: Use newer cmake. > libraries/libxml++: New maintainer. > libraries/lksctp-tools: Updated for version 1.0.21. > libraries/log4c: Orphaned (unmaintained). > libraries/netcdf: Updated for version 4.10.1. > libraries/pthsem: Orphaned (unmaintained). > libraries/qoauth: Orphaned (unmaintained). > libraries/quesoglc: New maintainer. > libraries/squish: Removed (Unmaintained). > libraries/stfl: New maintainer. > libraries/tox-extension-messages: Orphaned (unmaintained). > libraries/toxext: Orphaned (unmaintained). > libraries/udunits: New maintainer. > libraries/vcglib: Orphaned (unmaintained). > libraries/wxWidgets: Updated for version 3.2.11. > libraries/xerces-c: Updated for version 3.3.0 + new maintainer > libraries/zimg: Updated for version 3.0.6 > misc/IMSProg: Added (EEPROM Programmer). > misc/KeePassHttp: Orphaned (unmaintained). > misc/bbrun: Orphaned (unmaintained). > misc/beep: Updated for version 1.4.12, new maintainer. > misc/dwdiff: New maintainer. > misc/ghostpcl: Orphaned. > misc/glogg: Orphaned (unmaintained). > misc/gxmessage: Orphaned (unmaintained). > misc/hoorex: Updated for version 0.10.5 > misc/iscan-firmware: New maintainer. > misc/ltunify: Orphaned (unmaintained). > misc/megatunix: Orphaned (unmaintained). > misc/ollama: Updated for version 0.31.2. > misc/qtspell: Orphaned (unmaintained). > misc/sdcv: Orphaned (unmaintained). > misc/seahorse-plugins: Orphaned (unmaintained). > misc/utimer: Orphaned (unmaintained). > misc/with-readline: New maintainer. > misc/yubioath-desktop: Updated for version 7.4.1. > multimedia/anyremote: Orphaned (unmaintained). > multimedia/aom: New maintainer > multimedia/aom: Remove extraneous comments > multimedia/aom: Updated for version 3.14.1 > multimedia/dvdrip: Orphaned (unmaintained). > multimedia/emoc: Orphaned (unmaintained). > multimedia/iat: New maintainer. > multimedia/ivtv-utils: Orphaned (unmaintained). > multimedia/mp3fs: Orphaned (unmaintained). > multimedia/picard: Rename python-discid dep. > multimedia/sinthgunt: Orphaned (unmaintained). > multimedia/spek: Orphaned (unmaintained). > multimedia/strawberry: Updated for version 1.2.23. > multimedia/telepathy-farstream: Orphaned (unmaintained). > multimedia/telepathy-glib: New maintainer. > multimedia/telepathy-qt: Orphaned (unmaintained). > multimedia/videocut: Orphaned (unmaintained). > multimedia/xvid4conf: Orphaned (unmaintained). > network/3proxy: Updated for version 0.9.7. > network/GhostInTheMail: Orphaned (unmaintained). > network/Quaternion: Orphaned (unmaintained). > network/QuiteRSS: Updated README. > network/aggregate: Orphaned (unmaintained). > network/aiccu: Orphaned (unmaintained). > network/arp-scan: New maintainer. > network/arpwatch: Orphaned (unmaintained). > network/bitcoin: Updated for version 29.4. > network/bitlbee: New maintainer. > network/canto: Orphaned (unmaintained). > network/ckermit: Orphaned (unmaintained). > network/cmdiag: Orphaned (unmaintained). > network/csync: Orphaned (unmaintained). > network/dhcping: New maintainer. > network/dianara: Orphaned (unmaintained). > network/dnsproxy-bin: Updated for version 0.83.0. > network/docsis: Orphaned (unmaintained). > network/dropbear: Updated for version 2026.92. > network/dropbox: Updated for version 260.4.2926. > network/element-desktop-bin: Updated for version 1.12.23. > network/element-desktop: Updated for version 1.12.23. > network/et: Updated for version 6.2.8. > network/glusterfs: Orphaned (unmaintained). > network/gns3: Orphaned (unmaintained). > network/havp: Orphaned (unmaintained). > network/helium-browser: Updated for version 0.14.3.1 > network/httping: Orphaned (unmaintained). > network/httptunnel: Orphaned (unmaintained). > network/iodine: Updated for version 0.8.0, new maintainer. > network/iperf: Orphaned (unmaintained). > network/kasp_updater: Orphaned (unmaintained). > network/libmaxminddb: New maintainer. > network/librewolf: Updated for version 152.0.4_1 > network/lxi-tools: Orphaned (unmaintained). > network/megatools: Updated for version 1.11.5. > network/metasploit-framework-bin: Added (Penetration Testing) > network/monkey: Orphaned (unmaintained). > network/mpop: update to 1.4.22 > network/netperf: Orphaned (unmaintained). > network/niceshaper: Orphaned (unmaintained). > network/opera: Updated for version 133.0.5932.24 > network/pidgin-otr: Orphaned (unmaintained). > network/pidgin-visnotes: Orphaned (unmaintained). > network/proxytunnel: Orphaned (unmaintained). > network/pure-ftpd: Updated for version 1.0.54. > network/radvd: Orphaned (unmaintained). > network/rejik: Orphaned (unmaintained). > network/rspamd: Updated for version 4.1.1 > network/rssh: Orphaned (unmaintained). > network/signal-desktop: Updated for version 8.18.0. > network/sipcalc: Orphaned (unmaintained). > network/slowhttptest: Orphaned (unmaintained). > network/sniffjoke: Orphaned (unmaintained). > network/spambayes: Orphaned (unmaintained). > network/spawn-fcgi: New maintainer. > network/sshamble: Updated for version 0.3.3. > network/syncthingtray-bin: Updated for version 2.1.2. > network/t50: Orphaned (unmaintained). > network/tcptunnel: Orphaned (unmaintained). > network/trurl: New maintainer. > network/tunctl: Orphaned (unmaintained). > network/ucspi-tcp: New maintainer. > network/udpxy: Orphaned (unmaintained). > network/uwsgi: New maintainer. > network/vivaldi: Updated for version 8.1.4087.46. > network/waterfox: Updated for version 6.6.16 > network/wireshark: Updated for version 4.6.7. > network/wol: New maintainer. > network/yle-dl: Updated for version 20260624. > network/yt-dlp-bin: Updated for version 2026.07.04. > network/zen-browser: Updated for version 1.21.5b > office/Joplin: Updated for version 3.6.15. > office/Ted: Fix email address. > office/ding: Orphaned (unmaintained). > office/epdfview: Orphaned (unmaintained). > office/flowkeeper: Orphaned (unmaintained). > office/full-pack: Orphaned (unmaintained). > office/ganttproject: Orphaned (unmaintained). > office/gnumeric: Updated for version 1.12.61. > office/hebcal: Updated for version 5.13.0. > office/kbgoffice: Orphaned (unmaintained). > office/kchmviewer-qt: Added (CHM & EPUB Viewer). > office/lcal: Orphaned (unmaintained). > office/openoffice-langpack: Orphaned (unmaintained). > office/pcal: Orphaned (unmaintained). > office/qownnotes: Updated for version 26.7.5. > office/texstudio: Updated for version 4.9.5 > perl/libwww-perl: New maintainer. > perl/perl-AnyEvent-HTTP: Orphaned (unmaintained). > perl/perl-Archive-Zip: New maintainer. > perl/perl-Carp-Clan: New maintainer. > perl/perl-Class-Inspector: New maintainer. > perl/perl-Config-Find: Orphaned (unmaintained). > perl/perl-Curses-UI: New maintainer. > perl/perl-Data-OptList: New maintainer. > perl/perl-Date-Calc: New maintainer. > perl/perl-Digest-SHA: Removed (already in Slackware). > perl/perl-File-HomeDir: New maintainer. > perl/perl-Gnome2-Vte: New maintainer. > perl/perl-HTML-Tree: New maintainer. > perl/perl-IO-Stty: New maintainer. > perl/perl-IPC-DirQueue: Orphaned (unmaintained). > perl/perl-IPC-Run3: Orphaned (unmaintained). > perl/perl-Image-Size: New maintainer. > perl/perl-List-MoreUtils: New maintainer. > perl/perl-Log-Log4perl: New maintainer. > perl/perl-Params-Util: New maintainer. > perl/perl-Probe-Perl: Orphaned (unmaintained). > perl/perl-Proc-ProcessTable: New maintainer. > perl/perl-Regexp-Common: New maintainer. > perl/perl-Socket6: New maintainer. > perl/perl-Statistics-Descriptive: Orphaned (unmaintained). > perl/perl-Sub-Exporter: New maintainer. > perl/perl-Sub-Override: New maintainer. > perl/perl-TeX-Hyphen: Orphaned (unmaintained). > perl/perl-Test-MockModule: Orphaned (unmaintained). > perl/perl-Test-MockObject: Orphaned (unmaintained). > perl/perl-Text-Hyphen: Orphaned (unmaintained). > perl/perl-Time-modules: Orphaned (unmaintained). > perl/perl-config-general: New maintainer. > perl/perl-digest-sha1: New maintainer. > perl/perl-encode-locale: New maintainer. > perl/perl-file-listing: New maintainer. > perl/perl-html-parser: New maintainer. > perl/perl-html-parser: New maintainer. > perl/perl-http-cookies: New maintainer. > perl/perl-http-daemon: New maintainer. > perl/perl-http-date: New maintainer. > perl/perl-http-message: New maintainer. > perl/perl-http-negotiate: New maintainer. > perl/perl-lwp-mediatypes: New maintainer. > perl/perl-net-http: New maintainer. > perl/perl-www-robotrules: New maintainer. > python/PyGreSQL: Updated REQUIRES to use postgres18 > python/hgsubversion: Orphaned (unmaintained). > python/pychecker: Orphaned (unmaintained). > python/pydblite: Orphaned (unmaintained). > python/pyflakes: Orphaned (unmaintained). > python/pyfltk: Orphaned (unmaintained). > python/pygtksourceview: New maintainer. > python/pyside: New maintainer. > python/python-bitstring: Updated for version 4.4.0. > python/python-discid: Removed (renamed to python3-discid). > python/python2-cached-property: Orphaned (unmaintained). > python/python2-mpd: Orphaned (unmaintained). > python/python2-oauth: Orphaned (unmaintained). > python/python2-pydns: Orphaned (unmaintained). > python/python2-pypolicyd-spf: Orphaned (unmaintained). > python/python2-pyspf: Orphaned (unmaintained). > python/python2-texttable: Orphaned (unmaintained). > python/python2-vatnumber: New maintainer. > python/python2-xlwt: New maintainer. > python/python3-bitarray: Updated for version 3.8.2. > python/python3-cffi: Updated for version 2.1.0. > python/python3-discid: Added (libdiscid Python Bindings). > python/python3-libusb1: Updated for version 3.4.0. > python/python3-mistune: Updated for version 3.3.3 > python/python3-odfdo: Updated for version 3.22.10 > python/python3-plotly: Updated for version 6.9.0 > python/python3-pyproject-metadata: Updated for version 0.12.1. > python/subvertpy: Orphaned (unmaintained). > python/tqdm: New maintainer. > python/tzdata: Updated for version 2026.3. > python/vinetto: Orphaned (unmaintained). > python/winpdb: Orphaned (unmaintained). > system/Lmod: Updated for version 9.2.5. > system/TLP: Updated for version 1.10.2 > system/bottom: Updated for version 0.14.4. > system/c-icap: Orphaned (unmaintained). > system/capabilities: Orphaned (unmaintained). > system/ccid: Updated for version 1.8.2 + new maintainer > system/cfengine: Orphaned (unmaintained). > system/containerd: New maintainer. > system/cpuid: Updated for version 20260503. > system/crunch: Orphaned (unmaintained). > system/docker-cli: New maintainer. > system/docker-compose: Updated for version 5.3.0 > system/docker-machine-kvm: Removed (unmaintained). > system/docker-machine: Removed (unmaintained). > system/docker: New maintainer. > system/dtach: Orphaned (unmaintained). > system/dymo-cups-drivers: Orphaned (unmaintained). > system/dynamips: Orphaned (unmaintained). > system/ecofont-ttf: Orphaned (unmaintained). > system/eibd: Orphaned (unmaintained). > system/eltclsh: Updated for version 1.20. > system/eza: Updated for version 0.23.5. > system/fastfetch: Updated for version 2.66.0. > system/fdupes: Updated for version 2.4.0, new mtaintainer. > system/file-roller: Edit README, slack-desc, maintainer info > system/fira-code-fonts: Updated for version 6.2; new maintainer. > system/font-manager: New Maintainer > system/fzf: Updated for version 0.74.0. > system/gigolo: Orphaned (unmaintained). > system/glyptodon: Orphaned (unmaintained). > system/gtklp: Orphaned (unmaintained). > system/hal-flash: Orphaned (unmaintained). > system/hdapsd: Orphaned (unmaintained). > system/heirloom-sh: New maintainer. > system/hfsprogs: New maintainer. > system/incus-ui: Updated for version 20260706_64d46e71 > system/incus: Added a README.docker > system/iotop: Orphaned (unmaintained). > system/iucode_tool: New maintainer > system/jenkins: Updated for version 2.568.1. > system/libnatspec: Orphaned (unmaintained). > system/limine: Updated for version 12.4.1 > system/lsb-release: New maintainer. > system/lxsplit: Orphaned (unmaintained). > system/mingetty: Orphaned (unmaintained). > system/mrxvt: New maintainer. > system/ms-sys: New maintainer. > system/mtftar: Orphaned (unmaintained). > system/multibootusb: Orphaned (unmaintained). > system/nanum-coding-fonts-ttf: Orphaned (unmaintained). > system/nanum-fonts-ttf: Orphaned (unmaintained). > system/newrelic-sysmond: Orphaned (unmaintained). > system/nologind: Orphaned (unmaintained). > system/nut: Orphaned (unmaintained). > system/nvidia-kernel: Update README. > system/nvidia-legacy390-driver: New maintainer. > system/nvidia-legacy390-kernel: New maintainer. > system/nvidia-legacy580-driver: Updated for version 580.173.02. > system/nvidia-legacy580-kernel: Updated for version 580.173.02. > system/open-vm-tools: Orphaned (unmaintained). > system/openct: Orphaned (unmaintained). > system/pcsc-perl: New maintainer. > system/pcsc-tools: New maintainer. > system/physlock: Orphaned (unmaintained). > system/powerkit: Orphaned (unmaintained). > system/prometheus: Updated for version 3.13.0 > system/qtfm: Orphaned (unmaintained). > system/quotatool: Orphaned (unmaintained). > system/recoverjpeg: Orphaned (unmaintained). > system/rng-tools: Orphaned (unmaintained). > system/runc: New maintainer. > system/schedtool: New maintainer. > system/seahorse: Orphaned (unmaintained). > system/set_rlimits: New maintainer. > system/shake: Orphaned (unmaintained). > system/squidclamav: Orphaned (unmaintained). > system/telegraf: Updated for version 1.39.1 > system/thinkfan: Updated for version 2.0.0; new maintainer. > system/tini: New maintainer. > system/tkdvd: Orphaned (unmaintained). > system/tp_smapi: Orphaned (unmaintained). > system/tracker: New maintainer. > system/ttf-arphic-uming: Orphaned (unmaintained). > system/ttf-lato: Fix download link; new maintainer. > system/uae: Orphaned (unmaintained). > system/udftools: Orphaned (unmaintained). > system/ugrep: Added (Fast searching). > system/unetbootin: New maintainer. > system/uptimed: Updated for version 0.4.7. > system/veracrypt: Orphaned (unmaintained). > system/wmconfig: Orphaned (unmaintained). > system/wqy-microhei-font-ttf: Fixes for version 0.2.0_beta. > system/xchm: Updated for version 1.39, new maintainer. > system/xinput_calibrator: Orphaned (unmaintained). > system/zarfy: ARCH handling; new maintainer. > system/zfs-auto-snapshot: Orphaned (unmaintained). > system/znapzend: Orphaned (unmaintained). > system/zopfli: 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 willysr at slackbuilds.org Wed Jul 15 00:58:47 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Wed, 15 Jul 2026 07:58:47 +0700 Subject: [Slackbuilds-users] md5sum fails for SLACKBUILDS.TXT.gz In-Reply-To: References: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> <19a05a37-79fc-f171-5a78-7332cf8bb0@slackware.uk> Message-ID: <20260715075847.3d72f6c2@office64.slackie.org> >Some workflow files are still showing up too, >./.forgejo/workflows/ci.yml' and './.forgejo/workflows/ci.yml'. it's now fixed, but i still need to sign them again later -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Wed Jul 15 04:11:19 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 00:11:19 -0400 (EDT) Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: On Tue, 14 Jul 2026, Jeremy Hansen wrote: > My computer is finally back up. I can take the following: > audio/easymp3gain > games/warsow > games/xmoto > graphics/XnViewMP > misc/utimer > multimedia/dvdrip > network/sipcalc > system/iotop > system/nut Thanks for adopting these orphans. If you don't have any other changes to make, I've already updated the .info files for these. > Some look stagnant, but still seem useful. I'll work on pushing updates for those that need version bumps as I have time. A game is useful if it's fun, no matter how old it is... From milgram at cgpp.com Wed Jul 15 04:24:05 2026 From: milgram at cgpp.com (J. Milgram) Date: Wed, 15 Jul 2026 00:24:05 -0400 Subject: [Slackbuilds-users] md5sum fails for SLACKBUILDS.TXT.gz In-Reply-To: <20260715075847.3d72f6c2@office64.slackie.org> References: <6530fd76-eda1-437d-9ddc-e413ca34c0d2@cgpp.com> <19a05a37-79fc-f171-5a78-7332cf8bb0@slackware.uk> <20260715075847.3d72f6c2@office64.slackie.org> Message-ID: <1ddd07e8-26db-455f-b09e-cc1b075eb64a@cgpp.com> All seems well. sbocheck gpg-verifies the checksums file and no checksum errors reported. Thanks for taking care of this! r/ Judah On 7/14/26 20:58, Willy Sudiarto Raharjo wrote: >> Some workflow files are still showing up too, >> ./.forgejo/workflows/ci.yml' and './.forgejo/workflows/ci.yml'. > it's now fixed, but i still need to sign them again later > > -- > 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/ > -- ===== milgram at cgpp.com 301-257-7069 From urchlay at slackware.uk Wed Jul 15 08:13:58 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 04:13:58 -0400 (EDT) Subject: [Slackbuilds-users] Introducing the SlackBuild Boneyard Message-ID: I think this is ready for public consumption now... I've created an archive of all the SlackBuilds that have been removed from SBo since the start of Slackware 15.0: https://slackware.uk/~urchlay/boneyard/ The files there are regular SlackBuild tarballs, like the ones on the SBo website. Anything that got deleted will end up there, so it won't be buried in the git log where it's hard to find out it ever existed. It will be updated weekly, probably on Saturdays (after the regular weekly SBo update). Anything that was deleted from the repo but got reinstated (as a new submission) will disappear from the boneyard. If you find something there that you think really shouldn't have been deleted, feel free to submit it as your own new build (giving credit to the original author). The text of the page already says this, but I'll repeat it here: Note that this is purely a personal project of B. Watson . It is NOT part of the SlackBuilds.org project or website. That doesn't mean you can't talk about it at all on this mailing list, but it does mean longer conversations belong in private emails, not the list. Anyway, there's not that much to say about it. From jebrhansen+SBo at gmail.com Wed Jul 15 08:22:14 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Wed, 15 Jul 2026 01:22:14 -0700 Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: On Tue, Jul 14, 2026, 9:16?PM B. Watson wrote: > > > On Tue, 14 Jul 2026, Jeremy Hansen wrote: > > > My computer is finally back up. I can take the following: > > audio/easymp3gain > > games/warsow > > games/xmoto > > graphics/XnViewMP > > misc/utimer > > multimedia/dvdrip > > network/sipcalc > > system/iotop > > system/nut > > Thanks for adopting these orphans. > > If you don't have any other changes to make, I've already updated the > .info files for these. > I had already submitted updates on my branch for all of these before sending the email, including a version bump of XnViewMP (it was broken as it was). > Some look stagnant, but still seem useful. I'll work on pushing updates > for those that need version bumps as I have time. > > A game is useful if it's fun, no matter how old it is... > Exactly my thought. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Wed Jul 15 08:25:20 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 04:25:20 -0400 (EDT) Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: On Wed, 15 Jul 2026, Jeremy Hansen wrote: > I had already submitted updates on my branch for all of these before sending the email, including a version bump of XnViewMP (it was broken as it was).? OK, I'll remove my commits then. Sorry for the noise. From list+sbo at vahedi.org Wed Jul 15 08:42:54 2026 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Wed, 15 Jul 2026 08:42:54 +0000 Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> Message-ID: <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> July 11, 2026, "B. Watson" wrote: > I've written a new page for the site, that hopefully explains all > about orphaned SlackBuilds. > > Currently, it's here: > > https://slackbuilds.org/orphaned_builds_faq.txt Thank you for taking the time and effort to do this. I have a comment about the following Q/A: --- Q: What happens to orphaned builds? A: Eventually, they get removed from SBo. In the past, orphaned builds have been allowed to stay in the repo for months or even years. Starting soon, there will be an automatic process that removes orphaned builds after they've been orphaned for some number of days (90, 120, or maybe 180; we still haven't decided). --- Having a package removed automatically after N days, only because it has no maintainer is a bit strict in my opinion. There are many "maintained" packages that don't see an update for periods longer than N: Maybe the upstream hasn't updated it, maybe the maintainer did not, what have you. The only difference between these two cases is that one of them is labeled "unmaintained" and the other is not. I think another dimension should be added to this criteria. Something along the lines of "If there is an open ticket on this package AND it has been unmaintained for this long". By "ticket" here, I don't necessarily mean there should be a ticketing system in place, but more like if the build fails and there's no one to fix it. While I was writing this, I noticed that lack of a build failure is not enough for a good package. It should also be tested. Something that we hope maintainers do using their packages routinely. But is that really the case? I just have mixed feelings about this. -Shahab From mm at dorfdsl.de Wed Jul 15 09:22:01 2026 From: mm at dorfdsl.de (Marco Moock) Date: Wed, 15 Jul 2026 11:22:01 +0200 Subject: [Slackbuilds-users] xskat maintainer Message-ID: Hello! As a proposal was published to remove orphaned Slackbuilds, I volunteer to take over xskat if no one else wants to do this. Currently it works, so no changes needed. -- kind regards Marco Junk-Mail bitte an trashcan at stinkedores.dorfdsl.de -------------- 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 Wed Jul 15 09:25:52 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Wed, 15 Jul 2026 16:25:52 +0700 Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> Message-ID: <20260715162552.70ec3f3e@office64.slackie.org> >Having a package removed automatically after N days, only because it >has no maintainer is a bit strict in my opinion. There are many >"maintained" packages that don't see an update for periods longer >than N: Maybe the upstream hasn't updated it, maybe the maintainer >did not, what have you. The only difference between these two cases >is that one of them is labeled "unmaintained" and the other is not. > >I think another dimension should be added to this criteria. >Something along the lines of "If there is an open ticket on >this package AND it has been unmaintained for this long". >By "ticket" here, I don't necessarily mean there should be a ticketing >system in place, but more like if the build fails and there's no one >to fix it. We check with upstream and maintainer's activity before orphaning them We might miss it sometimes (we are all humans anyway), but that's why we have a grace period of N days. To give time people to verify or confirm about it. If a maintainer steps up, that would be ideal. If not, then it will be removed after some time. >While I was writing this, I noticed that lack of a build failure >is not enough for a good package. It should also be tested. >Something that we hope maintainers do using their packages routinely. >But is that really the case? > >I just have mixed feelings about this. So far, we can only do build test using CI becase we don't provide binaries, we only provides scripts to build the source into Slackware packages. We can't test every scripts in our machine manually. That's up to users/maintainers who actually use that apps/libraries -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From urchlay at slackware.uk Wed Jul 15 09:29:07 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 05:29:07 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> Message-ID: <616e5b3b-cab-4886-4bc6-857d267285b0@slackware.uk> Apologies, this got long-winded. I think most of it actually should go in the FAQ... On Wed, 15 Jul 2026, Shahab Vahedi via SlackBuilds-users wrote: > Having a package removed automatically after N days, only because it > has no maintainer is a bit strict in my opinion. There are many > "maintained" packages that don't see an update for periods longer > than N: Maybe the upstream hasn't updated it, maybe the maintainer > did not, what have you. The only difference between these two cases > is that one of them is labeled "unmaintained" and the other is not. The "unmaintained" label doesn't get applied randomly, though. There are reasons. Usually: 1. Maintainer can't be reached by email, after multiple attempts over a period of at least a week. 2. Maintainer posted "I'm abandoning my builds, whoever wants them can have them" on this list, but some (or all) of the builds never got taken. In this case, the polite thing for the maintainer to do would be to orphan the remaining builds himself... but that very rarely actually happens. 3. Maintainer has multiple builds, some of which have upstream updates, but hasn't updated any of them at all in at least 5 years. Actually, sometimes this number is more like 10 or 12 years. We don't mark a build unmaintainted/orphaned just because it hasn't been updated in N days. Like you said, upstream may not have updated it, or the maintainer has a good reason to stay at an older version. It's unmaintained if nobody is paying attention to it. Which is a lot harder to verify than just "hasn't had any updates" which we can check for in the git log. What I've been doing over the last 2 weeks is actually emailing all these maintainers we haven't heard from in years, verifying that their email addresses still work, and that they're still interested in maintaining their builds. Some of them are, but a lot more of them either never respond to the mail, or respond with "I stopped using Slackware years ago". If you think about it... orphaning a build whose maintainer has disappeared is just making the .info file reflect reality. It's already unmaintained, we're just documenting it as such. There's another angle: a couple of the other admins are in favor of immediately removing any build that's found to be unmaintained (rather than orphaning it). They rightly point out that orphaned builds have sometimes stuck around for years, getting occasional fixes and updates by the SBo staff. The "auto-remove orphans after N days" represents a compromise between "let them stay forever" and "remove them immediately". > I think another dimension should be added to this criteria. > Something along the lines of "If there is an open ticket on > this package AND it has been unmaintained for this long". > By "ticket" here, I don't necessarily mean there should be a ticketing > system in place, but more like if the build fails and there's no one > to fix it. Yes, if the build fails, that leads to an attempt to contact the maintainer, and if there's no response, we get situation 1 from above. Note that, once a build gets orphaned, *anyone* can take it over and become the new maintainer. So if something you use gets orphaned, you can keep it in the repo by adopting it yourself. > While I was writing this, I noticed that lack of a build failure > is not enough for a good package. It should also be tested. > Something that we hope maintainers do using their packages routinely. It's supposed to be. The admins can't run-test everything, we don't have the time, and in some cases the knowledge (a lot of things in academic/; anything related to DNA sequencing is beyond my comprehension) or the hardware (printer drivers, network cards, weird or old hardware). It's assumed that the maintainer is doing this testing. That's the maintainer's job. If he's not, we'll eventually find out about it from people complaining on the mailing list (at least we hope so). > But is that really the case? We have no way of knowing, other than asking the maintainer (and if he doesn't respond, see (1) above). > I just have mixed feelings about this. TBH, so do I. But there's a good reason for it: we've now got over 10,000 builds in the repo. A large percentage of them are old, outdated, not actively maintained... and for those builds, what ends up happening is that the SBo admins effectively become the maintainers. There are only 7 of us currently active, and we already have a lot to do. We're also finding out that our infrastructure doesn't scale as well as we'd like. When we only had 500 or 1000 builds, everything worked smoothly, but with 10K builds, we're having to rethink processes and rewrite scripts. Getting rid of unmaintained builds will keep the repo smaller (or anyway, keep its growth rate down), giving us more time to address the scaling issues before they become actual show-stoppers. Because the idea of removing potentially useful stuff bothers me, I came up with a stopgap solution, the SBo Boneyard: https://slackware.uk/~urchlay/boneyard/ ...see the other email thread about it. Now I'll get down off my soapbox... From urchlay at slackware.uk Wed Jul 15 09:32:45 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 05:32:45 -0400 (EDT) Subject: [Slackbuilds-users] xskat maintainer In-Reply-To: References: Message-ID: <5cebafcd-238c-f09-a352-78fe8d429d5@slackware.uk> On Wed, 15 Jul 2026, Marco Moock wrote: > Hello! > > As a proposal was published to remove orphaned Slackbuilds, I volunteer to > take over xskat if no one else wants to do this. Yes, please do. Thanks. > Currently it works, so no changes needed. I can update the name and email in the .info file for you, or you can submit an update yourself. Which would you rather do? From mm at dorfdsl.de Wed Jul 15 09:39:02 2026 From: mm at dorfdsl.de (Marco Moock) Date: Wed, 15 Jul 2026 11:39:02 +0200 Subject: [Slackbuilds-users] xskat maintainer In-Reply-To: <5cebafcd-238c-f09-a352-78fe8d429d5@slackware.uk> References: <5cebafcd-238c-f09-a352-78fe8d429d5@slackware.uk> Message-ID: Am 15.07.26 um 11:32 schrieb B. Watson: > > > On Wed, 15 Jul 2026, Marco Moock wrote: > >> Hello! >> >> As a proposal was published to remove orphaned Slackbuilds, I >> volunteer to take over xskat if no one else wants to do this. > > Yes, please do. Thanks. Ok! >> Currently it works, so no changes needed. > > I can update the name and email in the .info file for you, or you can > submit an update yourself. Which would you rather do? Please do it, as I currently do not have git access and not further modification is needed, it currently works. -- kind regards Marco -------------- 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 Jul 15 10:23:09 2026 From: mm at dorfdsl.de (Marco Moock) Date: Wed, 15 Jul 2026 12:23:09 +0200 Subject: [Slackbuilds-users] ARCH determination Message-ID: Hello! Various SlackBuilds include something like this: # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi Which purpose does it have? I understand that defining an architecture is sometimes used to produce builds specific for a CPU (e.g. to use x86_64-v3 instructions etc.). Although, which purpose do the other values have? $ARCH is not set by default. If it gets the value of uname -m, that should be fine, or is that guess wrong? -- kind regards Marco Junk-Mail bitte an trashcan at stinkedores.dorfdsl.de -------------- 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 urchlay at slackware.uk Wed Jul 15 10:23:32 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 06:23:32 -0400 (EDT) Subject: [Slackbuilds-users] xskat maintainer In-Reply-To: References: <5cebafcd-238c-f09-a352-78fe8d429d5@slackware.uk> Message-ID: On Wed, 15 Jul 2026, Marco Moock wrote: >> I can update the name and email in the .info file for you, or you can >> submit an update yourself. Which would you rather do? > > Please do it, as I currently do not have git access and not further > modification is needed, it currently works. Done, on my git branch. Will go live on the site at the next weekly update (friday or saturday). From list+sbo at vahedi.org Wed Jul 15 10:31:36 2026 From: list+sbo at vahedi.org (Shahab Vahedi) Date: Wed, 15 Jul 2026 10:31:36 +0000 Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <616e5b3b-cab-4886-4bc6-857d267285b0@slackware.uk> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> <616e5b3b-cab-4886-4bc6-857d267285b0@slackware.uk> Message-ID: <929d64eec7dd308d0c37416d351029dacf10267a@vahedi.org> July 15, 2026 "Willy Sudiarto Raharjo" wrote: > We check with upstream and maintainer's activity before orphaning them July 15, "B. Watson" wrote: > Now I'll get down off my soapbox... Actually, you answered everything that I needed to know and I agree with them. I humbly suggest that the context of this email to be captured in that document as well. I guess it won't be a FAQ style then anymore, but it will carry the spirit of what the intention is. -Shahab From davidnchmelik at gmail.com Wed Jul 15 10:34:22 2026 From: davidnchmelik at gmail.com (David Chmelik) Date: Wed, 15 Jul 2026 03:34:22 -0700 Subject: [Slackbuilds-users] Introducing the SlackBuild Boneyard In-Reply-To: References: Message-ID: <60b56e56-0fb5-42e2-aa6b-265ee004f336@gmail.com> On 15/07/2026 01:13, B. Watson wrote: > > I think this is ready for public consumption now... > > I've created an archive of all the SlackBuilds that have been removed > from SBo since the start of Slackware 15.0: > > https://slackware.uk/~urchlay/boneyard/ > > The files there are regular SlackBuild tarballs, like the ones on the > SBo website. Anything that got deleted will end up there, so it won't > be buried in the git log where it's hard to find out it ever existed. > > It will be updated weekly, probably on Saturdays (after the regular > weekly SBo update). Anything that was deleted from the repo but got > reinstated (as a new submission) will disappear from the boneyard. > > If you find something there that you think really shouldn't have been > deleted, feel free to submit it as your own new build (giving credit > to the original author). > > The text of the page already says this, but I'll repeat it here: > > ? Note that this is purely a personal project of B. Watson > ? . It is NOT part of the SlackBuilds.org project > ? or website. > > That doesn't mean you can't talk about it at all on this mailing > list, but it does mean longer conversations belong in private emails, > not the list. Anyway, there's not that much to say about it. That's good, and might be interesting someday to see the archive slowly go back to the beginning.? Many were removed I wanted to see if they might still work--especially games--and I still use stuff from Slackware 14.n-stable extra/ on 15+current.? Some of the interesting games maybe just went defunct and with a fork becoming more popular (even 10 or 20 years ago, sometimes several times over years) but I don't know.? I have a fair number of packages I'm still interested in from old versions.? Some the utilities, etc., broke but never really were replaced with something as good or better, though often not as necessary anymore.? I'd guess it might be too big a project, but maybe something to consider, especially if there might be a way to automate it? ? ? ? ? I guess you've also heard of alienBOB's git-like/-based site.? I never really got into git, but he has a good idea, and I wonder if it makes sense to put an old archive there to be useable with that, though I guess often they will need modification.? I'm confused why he left SlackBuilds.org and then made this separate project.? I guess he has his own way of doing SlackBuilds that doesn't always fit SBo specifications. ? ? ? ? To Urchlay: still waiting to hear from you on other topics, but sounds like you've been busy, so that's fine/good. From urchlay at slackware.uk Wed Jul 15 10:41:24 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 06:41:24 -0400 (EDT) Subject: [Slackbuilds-users] Orphaned Builds FAQ (draft) RFC In-Reply-To: <929d64eec7dd308d0c37416d351029dacf10267a@vahedi.org> References: <23f57083-3cbf-dee1-6ce0-5c72ff9f56b5@slackware.uk> <0a4db82238533603b47fe1d17edeead2835f644d@vahedi.org> <616e5b3b-cab-4886-4bc6-857d267285b0@slackware.uk> <929d64eec7dd308d0c37416d351029dacf10267a@vahedi.org> Message-ID: <738858ee-28c9-be63-8961-5f85bcca138@slackware.uk> On Wed, 15 Jul 2026, Shahab Vahedi wrote: > Actually, you answered everything that I needed to know and I > agree with them. > > I humbly suggest that the context of this email to be captured > in that document as well. I guess it won't be a FAQ style then > anymore, but it will carry the spirit of what the intention is. Well, it's a fake FAQ anyway. It really ought to be called "Questions I think people might frequently ask, but haven't yet". But that's a mouthful. Thanks for your input. You asked *actual* questions, which means the FAQ will be less fake after I add to it. From urchlay at slackware.uk Wed Jul 15 10:39:03 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 06:39:03 -0400 (EDT) Subject: [Slackbuilds-users] ARCH determination In-Reply-To: References: Message-ID: <3bbfa2fc-7ffa-6d98-dde5-6ab37a9875be@slackware.uk> On Wed, 15 Jul 2026, Marco Moock wrote: > Hello! > > Various SlackBuilds include something like this: > > # Automatically determine the architecture we're building on: > if [ -z "$ARCH" ]; then > case "$( uname -m )" in > i?86) ARCH=i486 ;; > arm*) ARCH=arm ;; > # Unless $ARCH is already set, use uname -m for all other archs: > *) ARCH=$( uname -m ) ;; > esac > fi That's old template. You can tell because it uses i486. The new template lives here: https://git.slackbuilds.org/templates/ > Which purpose does it have? Mostly, it affects the compiler flags, and the location of the library directory (/usr/lib/ on 32-bit, /usr/lib64/ on 64-bit). A bit later in the slackbuild, you should something similar to: if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" elif [ "$ARCH" = "aarch64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" fi LIBDIRSUFFIX gets fed to the ./configure (or cmake, meson, etc) command to tell it where to install shared libraries. SLKCFLAGS is fed in to set the compiler flags. For some builds, LIBDIRSUFFIX isn't used, and sometimes it gets removed from the section of code that sets it. For some builds, there's no compiled code at all. Those, we get rid of all the code that sets ARCH, SLKCFLAGS, and LIBDIRSUFFIX... and put ARCH=noarch at the top of the script. Examples of this would be software that's just shell scripts (rtirq), or just data files (e.g. doom_shareware_data). > I understand that defining an architecture is sometimes used to produce > builds specific for a CPU (e.g. to use x86_64-v3 instructions etc.). We generally don't do that. If you were to set ARCH to a weird value, it would be caught by the "else" in the code above, and the compiler flags would be set to -O2, and libraries would go in /usr/lib. > Although, which purpose do the other values have? > $ARCH is not set by default. > If it gets the value of uname -m, that should be fine, or is that guess > wrong? Well, uname -m might be either i586 or i686 on 32-bit platforms. We allow overriding it in the environment in case you're compiling a package on an i686 machine, but you're going to install it on an i586 (maybe it's old and slow, or doesn't have enough RAM to do the compile itself). Hopefully this explains it. From urchlay at slackware.uk Wed Jul 15 10:52:42 2026 From: urchlay at slackware.uk (B. Watson) Date: Wed, 15 Jul 2026 06:52:42 -0400 (EDT) Subject: [Slackbuilds-users] Introducing the SlackBuild Boneyard In-Reply-To: <60b56e56-0fb5-42e2-aa6b-265ee004f336@gmail.com> References: <60b56e56-0fb5-42e2-aa6b-265ee004f336@gmail.com> Message-ID: On Wed, 15 Jul 2026, David Chmelik wrote: > That's good, and might be interesting someday to see the archive slowly > go back to the beginning.? Many were removed I wanted to see if they > might still work--especially games--and I still use stuff from Slackware > 14.n-stable extra/ on 15+current. I limited it to 15.0 only partly to keep the archive size down, and partly because stuff for older releases isn't generally as useful: some of the 14.2 stuff that got removed, specifically was removed because we couldn't get it to compile or run on 15.0 (or, because whatever it is, was added to Slackware). > Some of the interesting games maybe just went defunct and with > a fork becoming more popular (even 10 or 20 years ago, sometimes > several times over years) but I don't know.? Yeah, I hate for games to disappear. Right now I'm updating quakeforge, since its maintainer has been gone since 2012. It's an old project, but there actually was a release in 2023. Of course there are other Quake engines on SBo (darkplaces, for one). So even if quakeforge were to vanish, we haven't lost a game... > I have a fair number of packages I'm still interested in from old > versions.? Some the utilities, etc., broke but never really were > replaced with something as good or better You could port them to 15.0. It might be a fun & interesting project. > especially if there might be a way to automate it? It's already automated. I just have the script only look at the git log back to the first 15.0-* tag. I could change that to the first 14.2-* one, or have it use the whole log, but I don't think it would be that useful (see above). Plus, the way the script works, it'd require extra logic to figure out which Slackware version the script was originally for (and you really would want to know that). From jebrhansen+SBo at gmail.com Wed Jul 15 15:29:48 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Wed, 15 Jul 2026 08:29:48 -0700 Subject: [Slackbuilds-users] Updates - 20260711.1 In-Reply-To: References: <20260711174041.0cd004c6@tuf15.slackie.org> Message-ID: On Wed, Jul 15, 2026, 1:30?AM B. Watson wrote: > > > On Wed, 15 Jul 2026, Jeremy Hansen wrote: > > > I had already submitted updates on my branch for all of these before > sending the email, including a version bump of XnViewMP (it was broken as > it was). > > OK, I'll remove my commits then. Sorry for the noise. > I am super appreciative of all the changes you did make for me while my computer was down. So thanks for that! > -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Thu Jul 16 06:11:14 2026 From: urchlay at slackware.uk (B. Watson) Date: Thu, 16 Jul 2026 02:11:14 -0400 (EDT) Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: References: Message-ID: <5e49e5f-7a5e-1386-2ab2-27ebf2611a45@slackware.uk> On Mon, 13 Jul 2026, Andrzej Telszewski wrote: > development/flawfinder > network/ntpclient > network/rtl8821ce > network/sshguard I'll take these, unless someone else has a burning desire to take them. From belka at caraus.de Thu Jul 16 11:22:25 2026 From: belka at caraus.de (Eugen Wissner) Date: Thu, 16 Jul 2026 13:22:25 +0200 Subject: [Slackbuilds-users] postgresql 14.x going EOL on November 2 In-Reply-To: <2af29692-dc87-552d-2f1c-8331e334b296@slackware.uk> References: <2af29692-dc87-552d-2f1c-8331e334b296@slackware.uk> Message-ID: Just a quick status update. My production servers were using PostgreSQL 16. Last week I updated to PostgreSQL 17. I hope to upgrade to 18 this or next week. After that I will know for sure that php84 is compatible and update my slackbuild dependencies. I understand that it's difficult to maintain that many PostgreSQL versions, but I still think that it defeats the purpose of PostgreSQL having long-term support for their major releases to switch to each new major release. Switching to the new major release is not a simple "upgradepkg"; I need to rebuild my replica data each time for example. Having said that, thanks for the excellent PostgreSQL support for Slackware. Regards Eugen On Sun Jul 5, 2026 at 3:03 AM CEST, B. Watson wrote: > > To everyone who has scripts with REQUIRES="postgresql"... > > We already have 4 newer versions of postgresql in the repo, > postgresql15 through postgresql18. Please test your scripts against > these versions, and get them working with the highest-numbered version > of postgresql possible. Most likely, most of these will work fine > without patching/etc, but there's no way to find out until you try it. > > postgresql 14.x is going to be EOLed upstream in November of this > year, and we plan to remove it from our repo. That's about 90 days > from now, which hopefully gives enough time for getting things to work > with a newer postgresql. > > At the same time, we'd like to remove postgresql15, postgresql16, and > postgresql17 if possible (if nothing ends up requiring them). Ideally, > all dependees should be updated to work with postgresql18 (which may > mean updating the dependees' versions, too). > > Affected builds and maintainers: > > PyGreSQL (Christoph Willing ) > barman (Dimitris Zlatanidis ) > cyphesis (Dimitris Zlatanidis ) > dovecot-pgsql (Eugene Wissner ) > geopandas (ArTourter ) > grass (Christoph Willing ) > libpqxx (Benjamin Trigona-Harany ) > odoo (Fernando Lopez Jr. ) > osm2pgsql (Giancarlo Dessi ) > osm2pgsql-legacy (Giancarlo Dessi ) > pcp (Lockywolf ) > pd-psql (Michales Michaloudes ) > pdal (Giancarlo Dessi ) > perl-DBD-Pg (Kevin Bryant ) > pgmodeler (Joielechong ) > pgpool-II (Dejan Strbac ) > pgrouting (Giancarlo Dessi ) > pgsanity (Yth - Arnaud ) > pgtcl-ng (Richard Ellis ) > php-pgsql (Heinz Wiesinger ) > php82 (Eugene Wissner ) > php84 (Eugene Wissner ) > phppgadmin (Michel A. Begue ) > postfix-pgsql (Eugene Wissner ) > postgis (Giancarlo Dessi ) > psqlodbc (Chris Walker ) > python3-psycopg2 (Yth - Arnaud ) > python3-psycopg3 (Zlatanidis Dimitris ) > qgis (Giancarlo Dessi ) > qt5-postgresql (Heinz Wiesinger ) > virtualpg (Konrad J Hambrick ) > _______________________________________________ > 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 philip at vd-hoeven.nl Thu Jul 16 19:47:12 2026 From: philip at vd-hoeven.nl (Philip van der Hoeven) Date: Thu, 16 Jul 2026 21:47:12 +0200 Subject: [Slackbuilds-users] Orphaning my slackbuilds Message-ID: <0efa3c21-03f2-4a9b-b969-271e37ec4be4@mail.infomaniak.com> Hi, Due to new job and other life obligations, I won't be able to maintain my slackbuilds anymore in the future. This is the list: LDView LDraw_data android-tools arc-theme leocad leocad_pieces openmsx openmsx-catapult openmsx-debugger pidgin-sipe samsung-mfp-drivers sl slackware-grub2-theme openmsx-catapult and openmsx-debugger are deprecated upstream as they are now integrated in openmsx itself, so they should probably be removed. Thanks to everybody who helped me maintaining these over the years. Philip From jebrhansen+SBo at gmail.com Thu Jul 16 19:48:22 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Thu, 16 Jul 2026 12:48:22 -0700 Subject: [Slackbuilds-users] Orphaning my slackbuilds In-Reply-To: <0efa3c21-03f2-4a9b-b969-271e37ec4be4@mail.infomaniak.com> References: <0efa3c21-03f2-4a9b-b969-271e37ec4be4@mail.infomaniak.com> Message-ID: I can take android-tools. Jeremy On Thu, Jul 16, 2026, 12:47?PM Philip van der Hoeven via SlackBuilds-users < slackbuilds-users at slackbuilds.org> wrote: > Hi, > > Due to new job and other life obligations, I won't be able to maintain my > slackbuilds anymore in the future. > > This is the list: > > LDView > LDraw_data > android-tools > arc-theme > leocad > leocad_pieces > openmsx > openmsx-catapult > openmsx-debugger > pidgin-sipe > samsung-mfp-drivers > sl > slackware-grub2-theme > > openmsx-catapult and openmsx-debugger are deprecated upstream as they are > now integrated in openmsx itself, so they should probably be removed. > > Thanks to everybody who helped me maintaining these over the years. > > Philip > _______________________________________________ > 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 urchlay at slackware.uk Fri Jul 17 06:09:53 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 02:09:53 -0400 (EDT) Subject: [Slackbuilds-users] grub_legacy worth keeping in the repo? Message-ID: I'm not a GRUB user, never have been (I still use lilo and legacy boot, or elilo if that's impossible), so I have to ask... Is there a reason for grub_legacy (grub-0.97) to exist? Is there hardware that is supported by the old version of grub that can't be booted with the newer grub that ships with Slackware? Does anyone on this mailing list own such hardware, and would miss grub_legacy if it were gone? I'd just ask the maintainer (Jan F. Chadima)... in fact I did, but never got a response. So I'm asking here. Anyone? From pyllyukko at maimed.org Fri Jul 17 06:36:22 2026 From: pyllyukko at maimed.org (pyllyukko) Date: Fri, 17 Jul 2026 09:36:22 +0300 Subject: [Slackbuilds-users] Fwd: perl-Crypt-CBC SlackBuild is vulnerable to CVE-2025-2814 Message-ID: Hello, list. FYI. Tried reaching the maintainer, but haven't gotten any response. ----- Forwarded message from pyllyukko ----- Date: Sun, 26 Apr 2026 13:42:35 +0300 From: pyllyukko To: kris240376 at gmail.com Subject: perl-Crypt-CBC SlackBuild is vulnerable to CVE-2025-2814 Hello. Just wanted to let you know that your SlackBuild for Crypt::CBC is vulnerable to CVE-2025-2814. See [1]. I tried to update it, but it turned out it packs a whole bunch of new dependencies that are not available in SBo. Could you take a look? Thanks. 1: https://lists.security.metacpan.org/cve-announce/msg/28699380/ -- pyllyukko email: PGP: https://keybase.io/pyllyukko ----- End forwarded message ----- -- pyllyukko email: PGP: https://keybase.io/pyllyukko -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From urchlay at slackware.uk Fri Jul 17 06:50:56 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 02:50:56 -0400 (EDT) Subject: [Slackbuilds-users] Fwd: perl-Crypt-CBC SlackBuild is vulnerable to CVE-2025-2814 In-Reply-To: References: Message-ID: On Fri, 17 Jul 2026, pyllyukko wrote: > Hello, list. > > FYI. Tried reaching the maintainer, but haven't gotten any response. It looks like Chris Walker hasn't responded to emails from either you (since April 26) or me (about a week ago). Chris, are you on the mailing list? From matteo.bernardini at gmail.com Fri Jul 17 07:07:00 2026 From: matteo.bernardini at gmail.com (Matteo Bernardini) Date: Fri, 17 Jul 2026 09:07:00 +0200 Subject: [Slackbuilds-users] Fwd: perl-Crypt-CBC SlackBuild is vulnerable to CVE-2025-2814 In-Reply-To: References: Message-ID: FWIW that CVE don't apply to us: from the link - - - Crypt::CBC versions between 1.21 and 3.04 for Perl may use insecure rand() function for cryptographic functions Description ----------- Crypt::CBC versions between 1.21 and 3.04 for Perl may use the rand() function as the default source of entropy, which is not cryptographically secure, for cryptographic functions. This issue affects operating systems where "/dev/urandom'" is unavailable. In that case, Crypt::CBC will fallback to use the insecure rand() function. - - - # ls -la /dev/urandom crw-rw-rw- 1 root root 1, 9 Jun 23 12:41 /dev/urandom Matteo Il giorno ven 17 lug 2026 alle ore 08:56 B. Watson ha scritto: > > > On Fri, 17 Jul 2026, pyllyukko wrote: > > > Hello, list. > > > > FYI. Tried reaching the maintainer, but haven't gotten any response. > > It looks like Chris Walker hasn't responded to emails from either > you (since April 26) or me (about a week ago). Chris, are you on the > mailing list? > _______________________________________________ > 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 mm at dorfdsl.de Fri Jul 17 07:07:59 2026 From: mm at dorfdsl.de (Marco Moock) Date: Fri, 17 Jul 2026 09:07:59 +0200 Subject: [Slackbuilds-users] grub_legacy worth keeping in the repo? In-Reply-To: References: Message-ID: Am 17.07.26 um 08:09 schrieb B. Watson: > > I'm not a GRUB user, never have been (I still use lilo and legacy > boot, or elilo if that's impossible), so I have to ask... > > Is there a reason for grub_legacy (grub-0.97) to exist? Is there > hardware that is supported by the old version of grub that can't be > booted with the newer grub that ships with Slackware? Does anyone on > this mailing list own such hardware, and would miss grub_legacy if it > were gone? I am not ware of any hardware that can be booted with GRUB 0.97, but not GRUB2. Both are BIOS bootloaders. GRUB 2 support booting from MBR and GPT (with bios_boot partition). A BIOS just boots the first sector of a disk - rest is task of the bootloader. -- Gru? Marco Junk-Mail bitte an trashcan at stinkedores.dorfdsl.de -------------- 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 urchlay at slackware.uk Fri Jul 17 07:28:31 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 03:28:31 -0400 (EDT) Subject: [Slackbuilds-users] grub_legacy worth keeping in the repo? In-Reply-To: References: Message-ID: <79631672-1b2-bda-bea5-9923ef25dfc4@slackware.uk> On Fri, 17 Jul 2026, Marco Moock wrote: > I am not ware of any hardware that can be booted with GRUB 0.97, but not > GRUB2. > Both are BIOS bootloaders. GRUB 2 support booting from MBR and GPT (with > bios_boot partition). > > A BIOS just boots the first sector of a disk - rest is task of the > bootloader. OK.. so maybe someone prefers the user interface of the old version (if it's different from 2.x)... or maybe the config file syntax changed and someone preferred the old style? These are just guesses... I'm trying to justify not removing grub_legacy from the repo (as its maintainer is MIA). From fsleg at t-rg.ws Fri Jul 17 08:19:19 2026 From: fsleg at t-rg.ws (fsLeg) Date: Fri, 17 Jul 2026 11:19:19 +0300 Subject: [Slackbuilds-users] grub_legacy worth keeping in the repo? In-Reply-To: <79631672-1b2-bda-bea5-9923ef25dfc4@slackware.uk> References: <79631672-1b2-bda-bea5-9923ef25dfc4@slackware.uk> Message-ID: The only reason to use grub-legacy AFAIK is the `map` command that allows you to do some things which aren't possible with grub2. But you'd usually use grub4dos as the purpose of this command is to boot from images for which loop mounting isn't enough, and it's usually done from removable media. The only meaningful difference between grub-legacy and grub4dos is filesystem support, unless I'm mixing things up and mapping is exclusive to grub4dos (it's been a long time since I used old grub). Obviously, it's only useful for deprecated images on deprecated hardware. On July 17, 2026 10:28:31 GMT+03:00, "B. Watson" wrote: > >These are just guesses... I'm trying to justify not removing >grub_legacy from the repo (as its maintainer is MIA). From urchlay at slackware.uk Fri Jul 17 09:12:27 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 05:12:27 -0400 (EDT) Subject: [Slackbuilds-users] squid needs a maintainer Message-ID: The squid maintainer (David Somero) has been inactive for 10 years now. We (the SBo admins) have been occasionally updating squid over the years, but it really needs a maintainer who actually uses it and cares about it. It's too important/useful to just mark as orphaned. Would someone like to take it over? It's up-to-date currently (7.6). From andrzej at telszewski.com Fri Jul 17 09:55:15 2026 From: andrzej at telszewski.com (Andrzej Telszewski) Date: Fri, 17 Jul 2026 11:55:15 +0200 Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: <5e49e5f-7a5e-1386-2ab2-27ebf2611a45@slackware.uk> References: <5e49e5f-7a5e-1386-2ab2-27ebf2611a45@slackware.uk> Message-ID: <54c9a1f7-eb98-49ff-8f12-3d1c5bf75991@telszewski.com> On 16/07/2026 08:11, B. Watson wrote: > > > On Mon, 13 Jul 2026, Andrzej Telszewski wrote: > >> development/flawfinder >> network/ntpclient >> network/rtl8821ce >> network/sshguard > > I'll take these, unless someone else has a burning desire to take them. I haven't updated them in long time, and don't remember anyone asking me for an update. Since you already have more than sufficient scripts on you, these can stay assigned to me. From urchlay at slackware.uk Fri Jul 17 10:02:31 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 06:02:31 -0400 (EDT) Subject: [Slackbuilds-users] Scripts up for grabs In-Reply-To: <54c9a1f7-eb98-49ff-8f12-3d1c5bf75991@telszewski.com> References: <5e49e5f-7a5e-1386-2ab2-27ebf2611a45@slackware.uk> <54c9a1f7-eb98-49ff-8f12-3d1c5bf75991@telszewski.com> Message-ID: On Fri, 17 Jul 2026, Andrzej Telszewski wrote: > I haven't updated them in long time, and don't remember anyone asking me for > an update. flawfinder, ntpclient, and sshguard all have new releases, I version-updated them when I took over... > Since you already have more than sufficient scripts on you, these can stay > assigned to me. Well, I can give them back to you if you want. I actually use ntpclient (for keeping the time synced on a crappy laptop with a dead CMOS battery). rtl8821ce just needs to stay in the 15.0 repo until the next Slackware release. I doubt it matters who its maintainer is, so long as it's someone who answers email and/or monitors this list. It's true that I have entirely too many builds... From brusso at gmail.com Fri Jul 17 22:23:03 2026 From: brusso at gmail.com (Bruno Tadeu Russo) Date: Fri, 17 Jul 2026 19:23:03 -0300 Subject: [Slackbuilds-users] squid needs a maintainer In-Reply-To: References: Message-ID: <9a9d9a785d5edaa5c0acc34888329b8bf8eff42c.camel@gmail.com> Hi! I can maintainer squid. thanks, Bruno Russo Em sex, 2026-07-17 ?s 05:12 -0400, B. Watson escreveu: > > The squid maintainer (David Somero) has been inactive for 10 years > now. We (the SBo admins) have been occasionally updating squid over > the years, but it really needs a maintainer who actually uses it and > cares about it. > > It's too important/useful to just mark as orphaned. Would someone > like to take it over? It's up-to-date currently (7.6). > _______________________________________________ > 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 urchlay at slackware.uk Sat Jul 18 00:10:22 2026 From: urchlay at slackware.uk (B. Watson) Date: Fri, 17 Jul 2026 20:10:22 -0400 (EDT) Subject: [Slackbuilds-users] squid needs a maintainer In-Reply-To: <9a9d9a785d5edaa5c0acc34888329b8bf8eff42c.camel@gmail.com> References: <9a9d9a785d5edaa5c0acc34888329b8bf8eff42c.camel@gmail.com> Message-ID: On Fri, 17 Jul 2026, Bruno Tadeu Russo wrote: > Hi! > > I can maintainer squid. OK. Send an update (submission or PR/MR) when you're ready. Uh, I orphaned your other build (freemind) because you hadn't updated it since 2015 and you didn't respond to an email I sent you. I thought you were no longer active... Do you want me to un-orphan freemind (make you the maintainer again)? From willysr at slackbuilds.org Sat Jul 18 01:45:52 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 18 Jul 2026 08:45:52 +0700 Subject: [Slackbuilds-users] Updates - 20260718.1 Message-ID: <20260718084552.310178e3@home.slackie.org> We have over 900 commits this week, more orphaned scripts that are going to be removed, and we have a new mirror at CodeBerg: https://codeberg.org/SlackBuildsOrg/slackbuilds Happy Weekend :) Sat Jul 18 01:21:24 UTC 2026 academic/CAFS_divergence: Orphaned (unmaintained). academic/CAPS_coevolution: Orphaned (unmaintained). academic/Data2FCS: Orphaned (unmaintained). academic/DendroPy: Orphaned (unmaintained). academic/EMBASSY: Orphaned (unmaintained). academic/EMBOSS: Orphaned (unmaintained). academic/FCSalyzer: Orphaned (unmaintained). academic/FastTree: Orphaned (unmaintained). academic/FigTree: Orphaned (unmaintained). academic/FreeFem: Updated for version 4.17. academic/Gblocks: Orphaned (unmaintained). academic/HMMER: Orphaned (unmaintained). academic/IGV: Orphaned (unmaintained). academic/MetaPhlAn2: Orphaned (unmaintained). academic/PhyML: Orphaned (unmaintained). academic/RAxML: Orphaned (unmaintained). academic/RepeatMasker: Orphaned (unmaintained). academic/SeqMonk: Orphaned (unmaintained). academic/WEVOTE: Orphaned (unmaintained). academic/abntex: Orphaned (unmaintained). academic/aline: Orphaned (unmaintained). academic/aliview: Orphaned (unmaintained). academic/amplicon: Orphaned (unmaintained). academic/amplifx: Orphaned (unmaintained). academic/arka: Orphaned (unmaintained). academic/bedGraphToBigWig: Orphaned (unmaintained). academic/bedtools: Orphaned (unmaintained). academic/bibus: Orphaned (unmaintained). academic/biopython: Orphaned (unmaintained). academic/bowtie2-legacy: Orphaned (unmaintained). academic/bowtie: Orphaned (unmaintained). academic/bpp-core: Orphaned (unmaintained). academic/bpp-phyl-omics: Orphaned (unmaintained). academic/bpp-phyl: Orphaned (unmaintained). academic/bpp-popgen: Orphaned (unmaintained). academic/bpp-seq-omics: Orphaned (unmaintained). academic/bpp-seq: Orphaned (unmaintained). academic/bpp1.9-numcalc: Orphaned (unmaintained). academic/bpp1.9-phyl: Orphaned (unmaintained). academic/bpp1.9-seq: Orphaned (unmaintained). academic/bpp1.9-utils: Orphaned (unmaintained). academic/bppsuite: Orphaned (unmaintained). academic/bwa: Orphaned (unmaintained). academic/cap3: Orphaned (unmaintained). academic/cistrome-CEAS: Orphaned (unmaintained). academic/cistrome-MACS: Orphaned (unmaintained). academic/cistrome-conductGO: Orphaned (unmaintained). academic/cistrome-extra: Orphaned (unmaintained). academic/cistrome-mdseqpos: Orphaned (unmaintained). academic/clark-ugene: Orphaned (unmaintained). academic/clustalo: Orphaned (unmaintained). academic/clustalw: Orphaned (unmaintained). academic/clustalx: Orphaned (unmaintained). academic/convertall: Orphaned (unmaintained). academic/cufflinks: Orphaned (unmaintained). academic/cutadapt: Orphaned (unmaintained). academic/datamash: Orphaned (unmaintained). academic/diamond: Orphaned (unmaintained). academic/exonerate: Orphaned (unmaintained). academic/extrema: Orphaned (unmaintained). academic/fiji: Orphaned (unmaintained). academic/finchtv: Orphaned (unmaintained). academic/free42: Updated for version 3.3.12 academic/gchemutils: Orphaned (unmaintained). academic/geda-gaf: Orphaned (unmaintained). academic/gelemental: Orphaned (unmaintained). academic/geneconv: Orphaned (unmaintained). academic/genometools: Orphaned (unmaintained). academic/genpak: Orphaned (unmaintained). academic/glpk: New maintainer. academic/gp2fasta: Orphaned (unmaintained). academic/gresistor: Orphaned (unmaintained). academic/gtkwave: Orphaned (unmaintained). academic/hyphy: Orphaned (unmaintained). academic/io_lib: Orphaned (unmaintained). academic/iqtree: Orphaned (unmaintained). academic/isoelectric-point: Orphaned (unmaintained). academic/jalview: Orphaned (unmaintained). academic/jellyfish_k-mer: Orphaned (unmaintained). academic/kalign: Orphaned (unmaintained). academic/knime: Orphaned (unmaintained). academic/kraken: Orphaned (unmaintained). academic/kurso: Orphaned (unmaintained). academic/lalnview: Orphaned (unmaintained). academic/mafft: Orphaned (unmaintained). academic/megax: Orphaned (unmaintained). academic/meme-db-gomo: Orphaned (unmaintained). academic/meme-db-motif: Orphaned (unmaintained). academic/meme-db-tgene: Orphaned (unmaintained). academic/meme-suite: Orphaned (unmaintained). academic/mendeleydesktop: Orphaned (unmaintained). academic/mkDSSP: Orphaned (unmaintained). academic/mrbayes: Orphaned (unmaintained). academic/mumsa: Orphaned (unmaintained). academic/muscle5: Orphaned (unmaintained). academic/muscle: Orphaned (unmaintained). academic/ncbi-blast+: Orphaned (unmaintained). academic/ncbi-blast: Orphaned (unmaintained). academic/ncbi-edirect: Orphaned (unmaintained). academic/ncbi-rmblastn: Orphaned (unmaintained). academic/pal2nal: Orphaned (unmaintained). academic/paml: Orphaned (unmaintained). academic/pamlX: Orphaned (unmaintained). academic/pcb: Orphaned (unmaintained). academic/perlprimer: Orphaned (unmaintained). academic/plasmidomics: Orphaned (unmaintained). academic/prank-msa: Orphaned (unmaintained). academic/primer3: Orphaned (unmaintained). academic/root: Updated for version 6.36.14 academic/samtools-legacy: Orphaned (unmaintained). academic/seaview: Orphaned (unmaintained). academic/seqkit: Orphaned (unmaintained). academic/sequence-analysis: Orphaned (unmaintained). academic/sim: Orphaned (unmaintained). academic/snpEff: Orphaned (unmaintained). academic/spades: Orphaned (unmaintained). academic/spidey: Orphaned (unmaintained). academic/squizz: Orphaned (unmaintained). academic/staden: Orphaned (unmaintained). academic/stringtie: Orphaned (unmaintained). academic/t_coffee: Orphaned (unmaintained). academic/tabix-legacy: Orphaned (unmaintained). academic/topdraw: Orphaned (unmaintained). academic/tophat: Orphaned (unmaintained). academic/treebest-ensembl: Orphaned (unmaintained). academic/treerecs: Orphaned (unmaintained). academic/treeviewx: Orphaned (unmaintained). academic/trfind: Orphaned (unmaintained). academic/trimmomatic: Orphaned (unmaintained). academic/tuxtype2: Orphaned (unmaintained). academic/ucsc-blat: Orphaned (unmaintained). academic/ugene: Orphaned (unmaintained). academic/vCAPS_coevolution: Orphaned (unmaintained). academic/vcftools: Orphaned (unmaintained). academic/wehi-cellsymphony: Orphaned (unmaintained). academic/wehi-deid: Orphaned (unmaintained). academic/wehi-hackit: Orphaned (unmaintained). academic/wehi-weasel: Orphaned (unmaintained). academic/wise: Orphaned (unmaintained). academic/zotero-gtk2: Orphaned (unmaintained). academic/zotero: Updated for version 9.0.6 audio/SuperCollider: Orphaned (unmaintained). audio/acxi: Fix MD5SUM. audio/audacious-aac: Update maintainer email. audio/cardinal: Updated for version 26.02 audio/easymp3gain: New maintainer audio/ezstream: Orphaned (unmaintained). audio/faust: Orphaned (unmaintained). audio/gmpc-plugins: Orphaned (unmaintained). audio/gmpc: Orphaned (unmaintained). audio/herrie: Orphaned (unmaintained). audio/mpd: New maintainer. audio/muse: Orphaned (unmaintained). audio/ogmtools: Orphaned (unmaintained). audio/python-audiotools: Orphaned (unmaintained). audio/qtractor: Updated for version 1.6.2. audio/rezound: Orphaned (unmaintained). audio/sbagen: Orphaned (unmaintained). audio/soundconverter: Orphaned (unmaintained). audio/twolame: New maintainer. audio/xmms-wma: Orphaned (unmaintained). business/ledger: New maintainer. desktop/LX-Colors-Revival: Orphaned (unmaintained). desktop/ambiance-radiance-flat-colors-gtk-theme: Orphaned. desktop/areao43-icon-theme: Orphaned (unmaintained). desktop/cairo-dock-plugins: Orphaned (unmaintained). desktop/cairo-dock: Orphaned (unmaintained). desktop/cbatticon: Orphaned (unmaintained). desktop/claude-desktop: Updated for version 1.19367.0 desktop/clearlooks-classic-themes: Orphaned (unmaintained). desktop/clearlooks-phenix-theme: Update maintainer email. desktop/compton: Orphaned (unmaintained). desktop/devilspie: Orphaned (unmaintained). desktop/dolphin-megasync: Orphaned (unmaintained). desktop/fbpanel: Orphaned (unmaintained). desktop/gnome-icon-theme-stock: Orphaned (unmaintained). desktop/gtk1-industrial-engine: Orphaned (unmaintained). desktop/gtk1-theme-switch: Orphaned (unmaintained). desktop/herbe: Orphaned (unmaintained). desktop/icewm-themes: New maintainer desktop/joystickwake: Updated for version 0.5.4 desktop/kdocker: Orphaned (unmaintained). desktop/keynav: Orphaned (unmaintained). desktop/polar-cursor-themes: Orphaned (unmaintained). desktop/protozoa-cursor-themes: Orphaned (unmaintained). desktop/q4wine: Orphaned (unmaintained). desktop/slackware-xdg-menu: Orphaned (unmaintained). desktop/stalonetray: Updated for version 1.5.0; new maintainer. desktop/thunar-megasync: Orphaned (unmaintained). desktop/wmcpuwatch: New maintainer. desktop/wmfishtime: New maintainer. desktop/wmimagedock: New maintainer. desktop/wmshutdown: Orphaned (unmaintained and *broken*). desktop/wmslideshow: Updated for version 1.3.2, New maintainer. desktop/wmuptime: New maintainer. desktop/xmms-skins-almond: Orphaned (unmaintained). desktop/xmms-skins-ater: Orphaned (unmaintained). desktop/xmms-status-plugin: Orphaned (unmaintained). desktop/xpenguins-xtrathemes: New maintainer. desktop/xpenguins: Updated for version 3.2.4. desktop/xseticon: Update maintainer email. development/Arduino: Update maintainer email. development/Catch2: Updated for version 3.15.2 development/Kiro: Updated for version 1.0.138. development/MySQL-python: New maintainer. development/a68g: Updated for version 3.12.3 development/android-tools: Version bump to 36.0.1 + New maintainer development/antigravity2: Updated for version 2.3.0 development/arduino: Update maintainer email. development/aspnetcore-runtime-10.0: Updated for version 10.0.10. development/aspnetcore-runtime-8.0: Updated for version 8.0.29. development/aspnetcore-runtime-9.0: Updated for version 9.0.18. development/aws-cdk: Updated for version 2.1130.0. development/bas: Orphaned (unmaintained). development/bbcsdl: Updated for version 20260713_22fb22f development/beautysh: Updated for version 6.4.3. development/boost-di: Orphaned (unmaintained). development/bruno: Updated for version 3.5.1. development/cim: Orphaned (unmaintained). development/cloc: Version bump to 2.10 development/cpan2tgz: Orphaned (unmaintained). development/deno-bin: Updated for version 2.9.3 development/dotnet-runtime-10.0: Updated for version 10.0.10. development/dotnet-runtime-8.0: Updated for version 8.0.29. development/dotnet-runtime-9.0: Updated for version 9.0.18. development/dotnet-sdk-10.0: Updated for version 10.0.302. development/dotnet-sdk-8.0: Updated for version 8.0.423. development/dotnet-sdk-9.0: Updated for version 9.0.316. development/dte: Orphaned (unmaintained). development/ebe: Orphaned (unmaintained). development/electron-bin: Updated for version 43.1.0 development/energia: Orphaned (unmaintained). development/flawfinder: New maintainer. development/freetds: Update maintainer email. development/g3log: Orphaned (unmaintained). development/gisto: Orphaned (unmaintained). development/git-cola: Orphaned (unmaintained). development/git-crypt: Orphaned (unmaintained). development/gitlab-cli: Updated for version 1.108.0. development/gnuradio: Update maintainer email. development/gopls: Updated for version 0.23.0. development/gplcver: Orphaned (unmaintained). development/gr-osmosdr: Update maintainer email. development/grails: Orphaned (unmaintained). development/guile2.0: Update maintainer email. development/icdiff: Updated for version 2.0.10. development/jdk11: Orphaned (unmaintained). development/jsmin: Orphaned (unmaintained). development/kdesvn: Orphaned (unmaintained). development/kotlin: Updated for version 2.4.10. development/libcutl: Orphaned (unmaintained). development/libxbgi: Orphaned (unmaintained). development/lighttable: Orphaned (unmaintained). development/mongodb-compass: Updated for version 1.49.12. development/mono-addins: Orphaned (unmaintained). development/mstch: Orphaned (unmaintained). development/notepad++: Updated for version 8.9.7 development/omake: Update maintainer email. development/onetrueawk: Updated for version 20260426. development/ophis: Updated for version 2.3. development/p4: Orphaned (unmaintained). development/p4d: Orphaned (unmaintained). development/p4v: Orphaned (unmaintained). development/perf: Orphaned (unmaintained). development/pingendo: Orphaned (unmaintained). development/pnpm: Updated for version 11.13.1. development/positron: Updated for version 2026.07.1_5. development/prek: Updated for version 0.4.10. development/pycharm: Updated for version 2026.1.4 development/pyside-tools: Orphaned (unmaintained). development/quilt: Orphaned (unmaintained). development/reckless: Orphaned (unmaintained). development/redo: Orphaned (unmaintained). development/s9fes: Updated for version 20250812. development/sauce: Orphaned (unmaintained). development/sbt: Updated for version 2.0.3 development/shiboken: New maintainer. development/sourcegit: Updated for version 2026.15 development/sqliteman: Orphaned (unmaintained). development/teensy_loader_cli: Orphaned (unmaintained). development/typos-lsp: Updated for version 0.1.53. development/viewvc: Orphaned (unmaintained). development/vscode-bin: Updated for version 1.129.0. development/vscodium: Updated for version 1.126.04524. development/vstudio: Updated for version 17.5.2 development/xsp: Orphaned (unmaintained). development/zed-editor-bin: Updated for version 1.10.2. development/zizmor: Updated for version 1.27.0. games/PrismLauncher: Updated for version 11.0.3. games/VASSAL: Updated for version 3.7.24 games/abuse: Fix maintainer info (whoops). games/atari800: Updated for version 7.0.0, add SDL2 option. games/bstone: Updated for version 1.3.4. games/d1x-rebirth: Orphaned (unmaintained). games/d2x-rebirth: Orphaned (unmaintained). games/empire: Orphaned (unmaintained). games/exult: Updated for version 1.12.1 games/ggmud: Orphaned (unmaintained). games/openarena: Orphaned (unmaintained). games/openmw: Fix .info. games/playonlinux: Orphaned (unmaintained). games/quake3_shareware_data: Orphaned (unmaintained). games/quakeforge: Orphaned (unmaintained). games/quarry: Orphaned (unmaintained). games/qxw: Orphaned (unmaintained). games/smokinguns: Orphaned (unmaintained). games/solarus: Updated for version 2.0.4 games/uligo: Orphaned (unmaintained). games/warsow: New maintainer games/xmoto: New maintainer games/xskat: New maintainer. gis/openorienteering-mapper: Orphaned (unmaintained). gis/osgEarth: Updated for version 3.8.1 git/README: Add codeberg repository. git/ci: Update CI dependencies. graphics/Pixie: Orphaned (unmaintained). graphics/VariCAD: Orphaned (unmaintained). graphics/XnViewMP: Version bump to 1.11.2 + New Maintainer graphics/dcraw: Orphaned (unmaintained). graphics/fbgrab: Orphaned (unmaintained). graphics/fotowall: Orphaned (unmaintained). graphics/fyre: Orphaned (unmaintained). graphics/g3dviewer: Orphaned (unmaintained). graphics/gallery: Orphaned (unmaintained). graphics/gpaint: Orphaned (unmaintained). graphics/inkscape-gtk2: Orphaned (unmaintained). graphics/kim4: Orphaned (unmaintained). graphics/ldglite: Orphaned (unmaintained). graphics/maim: Updated for version 5.8.2. graphics/mtpaint: Orphaned (unmaintained). graphics/openclipart: Orphaned (unmaintained). graphics/pencil3: Orphaned (unmaintained). graphics/pngquant: New maintainer. graphics/ufraw: Orphaned (unmaintained). graphics/uniconvertor: Orphaned (unmaintained). graphics/xdaliclock: Orphaned (unmaintained). graphics/xfishtank: Orphaned (unmaintained). graphics/ximaging: Updated for version 1.9.2. graphics/xpe: Orphaned (unmaintained). ham/gqrx-sdr: Update maintainer email. ham/gsmlib: Update maintainer email. ham/libosmocore: Updated for version 1.14.0. ham/redsea: Updated for version 1.3.1. ham/rtl-sdr: Update maintainer email. libraries/CEGUI: Orphaned (unmaintained). libraries/Crypt-SSLeay: Orphaned (unmaintained). libraries/Hypodermic: Orphaned (unmaintained). libraries/PDFlib-Lite: Orphaned (unmaintained). libraries/PyXML: Orphaned (unmaintained). libraries/RxCpp: Orphaned (unmaintained). libraries/adodb: Orphaned (unmaintained). libraries/alglib: Orphaned (unmaintained). libraries/apiextractor: Orphaned (unmaintained). libraries/barry: Update maintainer email. libraries/bzrtp: Orphaned (unmaintained). libraries/c++-gtk-utils: Orphaned (unmaintained). libraries/capnproto: New maintainer. libraries/ccrtp: New maintainer. libraries/cpp-netlib: Orphaned (unmaintained). libraries/cpprestsdk: Orphaned (unmaintained). libraries/daq: Updated for version 3.0.27. libraries/dlib: Orphaned (unmaintained). libraries/gl2ps: New maintainer. libraries/gmtk: Orphaned (unmaintained). libraries/gnome-media: Orphaned (unmaintained). libraries/gnome-sharp: Orphaned (unmaintained). libraries/gnome-vfsmm: Orphaned (unmaintained). libraries/google-fruit: Orphaned (unmaintained). libraries/gperftools: Orphaned (unmaintained). libraries/gspell: New maintainer. libraries/gtkmm-utils: Orphaned (unmaintained). libraries/jbigkit: New maintainer. libraries/kashmir: Orphaned (unmaintained). libraries/libantlr3c: New maintainer. libraries/libcamera: Updated for version 0.7.2 libraries/libcdaudio: Orphaned (unmaintained). libraries/libcifpp: Orphaned (unmaintained). libraries/libdynamite: New maintainer. libraries/libexif-gtk: New maintainer. libraries/libfilteraudio: Update maintainer email. libraries/libg3d: Orphaned (unmaintained). libraries/libgnomemm: Orphaned (unmaintained). libraries/libgnomeuimm: Orphaned (unmaintained). libraries/libgraphqlparser: Orphaned (unmaintained). libraries/libgxps: New maintainer. libraries/libiptcdata: New maintainer. libraries/libisoburn: Orphaned (unmaintained). libraries/libisofs: New maintainer. libraries/libjson-rpc-cpp: Update maintainer email. libraries/libkate: New maintainer. libraries/liblinebreak: Orphaned (unmaintained). libraries/libmediainfo: Version bump to 26.05 libraries/libmimic: Orphaned (unmaintained). libraries/libmodbus: Updated for version 3.2.0 libraries/libmpd: Orphaned (unmaintained). libraries/libr3: Orphaned (unmaintained). libraries/libsrtp: Orphaned (unmaintained). libraries/libsuinput: Orphaned (unmaintained). libraries/libtins: Orphaned (unmaintained). libraries/libunibreak: Updated for version 7.0. libraries/libvmime: Orphaned (unmaintained). libraries/libvorbisidec: Orphaned (unmaintained). libraries/libyubikey: Orphaned (unmaintained). libraries/libzrtpcpp: New maintainer. libraries/manubulon-snmp-plugins: Update maintainer email. libraries/med: Orphaned (unmaintained). libraries/mysqltcl: Update maintainer email. libraries/opendht: Update maintainer email. libraries/php-memcache: Update maintainer email. libraries/php-oci8: Orphaned (unmaintained). libraries/php-ssh2: Update maintainer email. libraries/polyclipping: Orphaned (unmaintained). libraries/python-gnupg: Removed (see python3-gnupg) libraries/qt-assistant-compat: New maintainer. libraries/qt5-pbfimageplugin: Orphaned (unmaintained). libraries/restbed: Orphaned (unmaintained). libraries/rrdtool: Update maintainer email. libraries/rudiments: Update maintainer email. libraries/sqlpp11: Orphaned (unmaintained). libraries/stk: New maintainer. libraries/tamu_anova: Orphaned (unmaintained). libraries/tcl-promise: Orphaned (unmaintained). libraries/tree-sitter: Updated for version 0.26.11 libraries/tslib: Orphaned (unmaintained). libraries/ucommon: New maintainer. libraries/vigra: New maintainer. libraries/volk: Update maintainer email. libraries/xmlrpc-c: Update maintainer email. libraries/yaz: Orphaned (unmaintained). misc/asr-manpages: New maintainer. misc/bodr: Orphaned (unmaintained). misc/chemical-mime-data: Orphaned (unmaintained). misc/cksfv: Update maintainer email. misc/dcc: Updated for version 2.3.169. misc/drg2sbg: Orphaned (unmaintained). misc/exploitdb: Updated for version 2026_07_09. misc/fcitx5-mozc: Orphaned (unmaintained). misc/funny-manpages: New maintainer. misc/gcp: Orphaned (unmaintained). misc/gourmet: Orphaned (unmaintained). misc/nuclei: Updated for version 3.11.0. misc/utimer: New Maintainer misc/ykpers: Orphaned (unmaintained). misc/yubikey-personalization-gui: Orphaned (unmaintained). multimedia/MuseScore-Legacy: Updated README multimedia/MuseScore: Updated for version 4.7.3 multimedia/castget: Orphaned (unmaintained). multimedia/castnow: Orphaned (unmaintained). multimedia/dirac: New maintainer. multimedia/dvdrip: New Maintainer multimedia/ffmpeg2theora: Orphaned (unmaintained). multimedia/filebot: Version bump to 5.2.3 multimedia/flvtool2: Orphaned (unmaintained). multimedia/gnome-mplayer: Orphaned (unmaintained). multimedia/gnupod: Orphaned (unmaintained). multimedia/gst-plugins-bad-nonfree: New maintainer. multimedia/iat: Fix typo (PKE => PKG). multimedia/inputstream.adaptive: Version bump to 21.5.22 multimedia/intel-gmmlib: Update maintainer email. multimedia/intel-media-driver: Update maintainer email. multimedia/intel-media-sdk: Update maintainer email. multimedia/kaffeine-mozilla: Orphaned (unmaintained). multimedia/kaffeine: Orphaned (unmaintained). multimedia/mediainfo: Version bump to 26.05 multimedia/minidlna: Update maintainer email. multimedia/mozplugger: Orphaned (unmaintained). multimedia/opencaster: Update maintainer email. multimedia/pipe-viewer: Updated for version 0.5.8. multimedia/playerctl: Script updated + new maintainer. multimedia/schroedinger: New maintainer. multimedia/strawberry: Updated for version 1.2.24. multimedia/subtitleripper: Orphaned (unmaintained). multimedia/tstools: Update maintainer email. multimedia/vobcopy: Orphaned (unmaintained). multimedia/xmltv: Orphaned (unmaintained). network/2ping: Updated for version 4.6.1. network/AdGuardHome: Updated for version 0.107.78. network/MEGAcmd: Orphaned (unmaintained). network/MEGAsync: Orphaned (unmaintained). network/NetworkManager-ssh: Updated for version 1.4.5. network/acme.sh: Updated for version 3.1.3. network/amavisd-new: Orphaned (unmaintained). network/awstats: Orphaned (unmaintained). network/barnyard2: Orphaned (unmaintained). network/bluejeans: Orphaned (unmaintained). network/bombadillo: Orphaned (unmaintained). network/brave-browser: Updated for version 1.92.140. network/brave-origin: Updated for version 1.92.140. network/c-toxcore: Update maintainer email. network/clamav-unofficial-sigs: Orphaned (unmaintained). network/cyrus-imapd: Update maintainer email. network/discord: Version bump to 1.0.147 network/dnscrypt-wrapper: Orphaned (unmaintained). network/dooble: Updated for version 2026.07.09 network/dovecot-pigeonhole: Update maintainer email. network/dublin-traceroute: Orphaned (unmaintained). network/dukto: Orphaned (unmaintained). network/efax-gtk: Orphaned (unmaintained). network/eiskaltdcpp: Orphaned (unmaintained). network/ffuf: Updated for version 2.2.1. network/fping: Update maintainer email. network/franz: Updated for version 6.5.1. network/freeradius-server: Update maintainer email. network/gajim: Updated REQUIRES network/gallery-dl: Updated for version 1.32.6 network/geoipupdate: Orphaned (unmaintained). network/go-ipfs: Orphaned (unmaintained). network/helium-browser: Updated for version 0.14.5.1 network/host-sflow: Orphaned (unmaintained). network/icecat: Orphaned (unmaintained). network/icinga2: Update maintainer email. network/inadyn: Orphaned (unmaintained). network/iodine: New homepage/download. network/ipfs-pack: Orphaned (unmaintained). network/jitsi-meet-desktop: Updated for version 2026.7.0 network/libnatpmp: Update maintainer email. network/librewolf: Updated for version 152.0.5_1 network/lighttpd: Updated for version 1.4.85. network/lizardfs: Orphaned (unmaintained). network/maildrop: Updated for version 4.0.3 network/mdk3: Orphaned (unmaintained). network/metasploit-framework-bin: Updated for version 6.4.144. network/microsoft-edge: Updated for version 150.0.4078.65. network/miniupnpd: Orphaned (unmaintained). network/mk-livestatus: Update maintainer email. network/mod_ruid2: Update maintainer email. network/modemu2k: Updated for version 0.2.3 network/msmtp: update to 1.8.33 network/mullvad-browser: Updated for version 15.0.18 network/nagios: Update maintainer email. network/nagiosgraph: Update maintainer email. network/neomutt: Updated for version 20260616. network/netdrive-connector: Orphaned (unmaintained). network/netstat-nat: Orphaned (unmaintained). network/nginx: Updated for version 1.30.4 network/noip2: Orphaned (unmaintained). network/nordvpn-gui: Updated for version 5.2.0. network/nordvpn: Updated for version 5.2.0. network/nrpe: Update maintainer email. network/nsca: Update maintainer email. network/ntpclient: Updated for version 2024_132, new maintainer. network/offlineimap: Orphaned (unmaintained). network/opendmarc: Update maintainer email. network/openvswitch-utils: Update maintainer email. network/opera: Updated for version 133.0.5932.34 network/pCloudDrive: Orphaned (unmaintained). network/pexip-infinity-connect: Orphaned (unmaintained). network/pflogsumm: Orphaned (unmaintained). network/pfqueue: Orphaned (unmaintained). network/pidgin-musictracker: Orphaned (unmaintained). network/pmacct: Orphaned (unmaintained). network/policyd2: Orphaned (unmaintained). network/policyd: Orphaned (unmaintained). network/pptp: Update maintainer email. network/qTox: Update maintainer email. network/rclone-src: Updated for version 1.74.4 network/rclone: Updated for version 1.74.4 network/remotebox: Orphaned (unmaintained). network/rtl8188eu: New maintainer. network/rtl8821ce: New maintainer. network/sflowtool: Orphaned (unmaintained). network/shadowsocks-libev: Orphaned (unmaintained). network/signal-desktop: Updated for version 8.19.0. network/sipcalc: New Maintainer network/smcroute: Update maintainer email. network/snmptt: Update maintainer email. network/snort: Fix UID. network/snort: Updated for version 3.12.2.0. network/sqlrelay: Update maintainer email. network/sshguard: Updated for version 2.5.1, new maintainer. network/sshpass: Update maintainer email. network/sstp-client: Update maintainer email. network/sylpheed: Orphaned (unmaintained). network/syncthingtray-bin: Updated for version 2.1.3. network/tailscale: Updated for version 1.98.8 network/telegram: Updated for version 7.0.1. network/thrift: Orphaned (unmaintained). network/tor-browser: Updated for version 15.0.18. network/toxcore: Update maintainer email. network/uTox: Patch bootstrap-updates.diff network/udns: Updated for version 0.6. network/verlihub: Update maintainer email. network/viber: Updated for version 27.3.0.2 + new maintainer network/vivaldi: Updated for version 8.1.4087.53. network/waterfox: Updated for version 6.6.16.1 network/wavemon: Orphaned (unmaintained). network/wendzelnntpd: Orphaned (unmaintained). network/wifite: Orphaned (unmaintained). network/xl2tpd: Update maintainer email. network/zen-browser: Updated for version 1.21.6b network/znc: Update maintainer email. network/zsync: Orphaned (unmaintained). office/FreeOffice: Orphaned (unmaintained). office/aigaion: Orphaned (unmaintained). office/bibutils: Orphaned (unmaintained). office/devtodo: Orphaned (unmaintained). office/gbgoffice: Orphaned (unmaintained). office/gcalctool-gtk2: Orphaned (unmaintained). office/gnumeric-gtk2: Orphaned (unmaintained). office/hebcal: Updated for version 5.14.0. office/hunspell-es: Orphaned (unmaintained). office/hunspell-id: Orphaned (unmaintained). office/kbbi-qt: Orphaned (unmaintained). office/latexdiff: Updated for version 1.4.0 office/mdp: Orphaned (unmaintained). office/mythes-id: Orphaned (unmaintained). office/osmo-gtk2: Orphaned (unmaintained). office/pdfsam-basic: Updated for version 6.0.4. office/qownnotes: Updated for version 26.7.7. office/referencer: Orphaned (unmaintained). office/text2pdf: Update maintainer email. office/trelby: Orphaned (unmaintained). office/turtl: Orphaned (unmaintained). office/wps-office-dicts: Updated for version 26.8.0.1 perl/MoarVM: Updated for version 2026.06.1 perl/cpanminus: Orphaned (unmaintained). perl/perl-B-COW: New maintainer. perl/perl-BerkeleyDB: New maintainer. perl/perl-CPAN-Perl-Releases: Orphaned (unmaintained). perl/perl-CPAN-Requirements-Dynamic: Updated for version 0.003. perl/perl-Cache-FastMmap: Orphaned (unmaintained). perl/perl-Canary-Stability: New maintainer perl/perl-Carp-Clan: Updated for version 6.08 perl/perl-Class-Factory-Util: Orphaned (unmaintained). perl/perl-Class-Inspector: Updated for version 1.36. perl/perl-Class-MethodMaker: Orphaned (unmaintained). perl/perl-Class-Mix: Orphaned (unmaintained). perl/perl-Clone: New maintainer. perl/perl-Config-File: Update maintainer email. perl/perl-Config-IniFiles: New maintainer. perl/perl-Config-Simple: New maintainer. perl/perl-Convert-ASN1: Updated for version 0.34. perl/perl-Convert-BinHex: Orphaned (unmaintained). perl/perl-Convert-Color: Orphaned (unmaintained). perl/perl-Convert-TNEF: Orphaned (unmaintained). perl/perl-Convert-UUlib: Orphaned (unmaintained). perl/perl-Crypt-Eksblowfish: Orphaned (unmaintained). perl/perl-Crypt-OpenSSL-DSA: Orphaned (unmaintained). perl/perl-Crypt-OpenSSL-EC: Orphaned (unmaintained). perl/perl-Crypt-OpenSSL-ECDSA: Orphaned (unmaintained). perl/perl-Crypt-OpenSSL-RSA: New maintainer. perl/perl-Crypt-OpenSSL-Random: Orphaned (unmaintained). perl/perl-Crypt-Rijndael: Updated for version 1.16. perl/perl-Data-Compare: Update maintainer email. perl/perl-Data-OptList: Updated for version 0.114. perl/perl-DateTime-Format-Builder: Orphaned (unmaintained). perl/perl-DateTime-Format-ISO8601: Orphaned (unmaintained). perl/perl-DateTime-Format-Strptime: Orphaned (unmaintained). perl/perl-Devel-PatchPerl: Orphaned (unmaintained). perl/perl-Digest-GOST: Orphaned (unmaintained). perl/perl-Error: Change ARCH to noarch. perl/perl-ExtUtils-XSBuilder: Orphaned (unmaintained). perl/perl-File-Copy-Recursive: Updated for version 0.44, new maint. perl/perl-File-Find-Rule: New maintainer. perl/perl-File-ReadBackwards: New maintainer. perl/perl-File-ShareDir-Install: Updated for v0.13, new maint. perl/perl-File-Which: New maintainer. perl/perl-Geo-IP: Orphaned (unmaintained). perl/perl-HTML-TableExtract: Orphaned (unmaintained). perl/perl-HTTP-Cache-Transparent: Orphaned (unmaintained). perl/perl-HTTP-CookieJar: Change ARCH to noarch. perl/perl-IO-All: New maintainer. perl/perl-IO-Multiplex: New maintainer. perl/perl-IO-SessionData: Orphaned (unmaintained). perl/perl-IO-Socket-Timeout: Orphaned (unmaintained). perl/perl-IPC-Run: New maintainer. perl/perl-Inline-C: New maintainer. perl/perl-Inline: New maintainer. perl/perl-JSON-MaybeXS: Updated for version 1.004008 perl/perl-JSON: New maintainer. perl/perl-Lingua-EN-Numbers-Ordinate: Orphaned (unmaintained). perl/perl-Lingua-Preferred: Orphaned (unmaintained). perl/perl-List-MoreUtils: Updated for version 0.430 perl/perl-Log-Dispatch: Update maintainer email. perl/perl-Log-Log4perl: Updated for version 1.57 perl/perl-MIME-tools: Orphaned (unmaintained). perl/perl-MailTools: New maintainer. perl/perl-Net-CIDR: Orphaned (unmaintained). perl/perl-Net-DNS-Native: Orphaned (unmaintained). perl/perl-Net-DNS-SEC: Orphaned (unmaintained). perl/perl-Net-LibIDN2: Included extra_compiler_flags="${SLKCFLAGS}" perl/perl-Net-Patricia: Orphaned (unmaintained). perl/perl-Net-SNMP: Update maintainer email. perl/perl-Net-Server: New maintainer. perl/perl-Net-UPnP: Orphaned (unmaintained). perl/perl-Number-Compare: New maintainer. perl/perl-Params-Classify: Orphaned (unmaintained). perl/perl-Params-Util: Updated for version 1.102. perl/perl-Parse-RecDescent: New maintainer perl/perl-Pegex: New maintainer. perl/perl-PerlIO-via-Timeout: Orphaned (unmaintained). perl/perl-Proc-PID-File: Update maintainer email. perl/perl-Proc-ProcessTable: Updated for version 0.637 perl/perl-Religion-Islam-Quran: Orphaned (unmaintained). perl/perl-SOAP-Lite: Orphaned (unmaintained). perl/perl-String-ShellQuote: Orphaned (unmaintained). perl/perl-Sub-Exporter: Updated for version 0.991. perl/perl-Sub-Override: Updated for version 0.12 perl/perl-Sub-Uplevel: New maintainer perl/perl-Switch: New maintainer. perl/perl-Term-ProgressBar: Orphaned (unmaintained). perl/perl-Test-Deep: new maintainer perl/perl-Test-Fatal: New maintainer. perl/perl-Test-File: New maintainer. perl/perl-Test-Inter: Updated for version 1.13. perl/perl-Test-Needs: New maintainer. perl/perl-Test-NoWarnings: New maintainer. perl/perl-Test-Output: New maintainer. perl/perl-Test-Requires: New maintainer. perl/perl-Test-SharedFork: Orphaned (unmaintained). perl/perl-Test-Spec: Orphaned (unmaintained). perl/perl-Test-TCP: Orphaned (unmaintained). perl/perl-Test-TempDir-Tiny: Orphaned (unmaintained). perl/perl-Test-Warnings: New maintainer. perl/perl-Test-utf8: New maintainer. perl/perl-Text-Autoformat: Updated for version 1.75, new maintainer. perl/perl-Text-CSV_XS: Orphaned (unmaintained). perl/perl-Text-Glob: New maintainer. perl/perl-Text-Iconv: New maintainer. perl/perl-Text-Quoted: Orphaned (unmaintained). perl/perl-Text-Reform: New maintainer plus fixes. perl/perl-Text-Tabs+Wrap: Updated for version 2024.001, new maintainer. perl/perl-Tie-IxHash: Orphaned (unmaintained). perl/perl-Time-Out: Orphaned (unmaintained). perl/perl-Time-Piece: Orphaned (unmaintained). perl/perl-TimeDate: New maintainer. perl/perl-Tk-TableMatrix: Orphaned (unmaintained). perl/perl-Try-Tiny: New maintainer. perl/perl-Unicode-UTF8simple: Orphaned (unmaintained). perl/perl-Unix-Syslog: New maintainer. perl/perl-XML-LibXSLT: New maintainer perl/perl-XML-XPath: Orphaned (unmaintained). perl/perl-YAML-LibYAML: New maintainer. perl/perl-ZMQ-Constants: Orphaned (unmaintained). perl/perl-config-general: Updated for version 2.67 perl/perl-test-warn: New maintainer. perl/perlbrew: Orphaned (unmaintained). python/cfgparse: Orphaned (unmaintained). python/fasteners: Orphaned (unmaintained). python/gnome-python-desktop: Orphaned (unmaintained). python/monotonic: Orphaned (unmaintained). python/node-semver: Orphaned (unmaintained). python/pattern: Orphaned (unmaintained). python/pluginbase: Orphaned (unmaintained). python/pycassa: Orphaned (unmaintained). python/pyjwt: Orphaned (unmaintained). python/python-fusepy: Orphaned (unmaintained). python/python-setuptools-git: New maintainer. python/python2-django-tagging: Update maintainer email. python/python2-django: Update maintainer email. python/python2-elib.intl: Orphaned (unmaintained). python/python2-patch: Orphaned (unmaintained). python/python2-whisper: Update maintainer email. python/python3-docker: Updated for version 7.2.0. python/python3-gnupg: Added (Renamed from python-gnupg). python/python3-hatchling: Updated for version 1.31.0. python/python3-odfdo: Updated for version 3.22.11 python/python3-tabulate: Updated for version 0.9.0 + new maintainer python/ramlfications: Orphaned (outdated, unmaintained). python/sk1libs: Orphaned (unmaintained). python/virtualenv: Orphaned (unmaintained). python/xopen: Orphaned (unmaintained). ruby/ruby-build: Updated for version 20260716. ruby/rubygem-ast: Orphaned. ruby/rubygem-cairo-gobject: Orphaned. ruby/rubygem-cool.io: Update maintainer email. ruby/rubygem-fluentd: Update maintainer email. ruby/rubygem-gdk3: Orphaned. ruby/rubygem-gio2: Orphaned. ruby/rubygem-gobject-introspection: Orphaned. ruby/rubygem-gtk3: Orphaned. ruby/rubygem-hpricot: New maintainer. ruby/rubygem-http_parser.rb: Update maintainer email. ruby/rubygem-matrix: Orphaned. ruby/rubygem-msgpack: Update maintainer email. ruby/rubygem-mustache: Updated for version 1.1.2, new maint. ruby/rubygem-native-package-installer: Orphaned. ruby/rubygem-parallel: Orphaned. ruby/rubygem-parser: Orphaned. ruby/rubygem-rdiscount: Updated for version 2.2.7.5. ruby/rubygem-red-colors: Orphaned. ruby/rubygem-ronn: New maintainer. ruby/rubygem-sass: Update maintainer email. ruby/rubygem-sigdump: Update maintainer email. ruby/rubygem-string-scrub: Update maintainer email. ruby/rubygem-thread_safe: Update maintainer email. ruby/rubygem-tzinfo-data: Update maintainer email. ruby/rubygem-tzinfo: Update maintainer email. ruby/rubygem-yajl-ruby: Update maintainer email. system/FontAwesome: Update for 7.3.1 system/MySQL-Sandbox: Orphaned (unmaintained). system/ZoneMinder: Orphaned (unmaintained). system/acpitool: Orphaned (unmaintained). system/apple-emoji: Orphaned (unmaintained). system/apple-fonts-Garamond: Orphaned (unmaintained). system/apple-fonts-NY: Orphaned (unmaintained). system/apple-fonts-SF: Orphaned (unmaintained). system/bacula-client: Update maintainer email. system/bacula: Update maintainer email. system/betty: Orphaned (unmaintained). system/ccrypt: Orphaned (unmaintained). system/clamsmtp: Orphaned (unmaintained). system/cndrvcups-capt: Update maintainer email. system/cndrvcups-common: Update maintainer email. system/collectd: Orphaned (unmaintained). system/corosync: Update maintainer email. system/cpuid: Orphaned (unmaintained). system/crikey: Orphaned (unmaintained). system/cups-bjnp: Orphaned (unmaintained). system/cve-check-tool: Orphaned (upstream DB gone). system/dateutils: Orphaned (unmaintained). system/debootstrap: Update maintainer email. system/direvent: Orphaned (unmaintained). system/displaylink: Orphaned (unmaintained). system/dlm: Update maintainer email. system/docker-compose: Updated for version 5.3.1 system/doublecmd-qt5: Updated for version 1.1.32 system/drbd-utils: Update maintainer email. system/duplicity: Orphaned (unmaintained). system/duply: Orphaned (unmaintained). system/epson-inkjet-printer-escpr: Orphaned (unmaintained). system/evdi-kernel: Orphaned (unmaintained). system/evdi: Orphaned (unmaintained). system/eventlog: Update maintainer email. system/exfat-utils: Update maintainer email. system/file-roller-gtk2: Orphaned (unmaintained). system/fish: Updated for version 4.8.1 system/freeswitch: Update maintainer email. system/fuse-archive: Updated for version 1.22. system/fuse-exfat: Update maintainer email. system/fxload: Orphaned (unmaintained). system/gitolite: Update maintainer email. system/gnome-commander: Orphaned (unmaintained). system/gnome-pkgtool: Orphaned (unmaintained). system/hercules: Orphaned (unmaintained). system/herculesstudio: Orphaned (unmaintained). system/hime: Orphaned (unmaintained). system/hw-probe: Orphaned (unmaintained). system/icingaweb2: Update maintainer email. system/ifuse: Orphaned (unmaintained). system/incus: Added README.slackware & associated scripts system/ioping: Orphaned (unmaintained). system/iotop: New Maintainer system/kafka: Orphaned (unmaintained). system/keylaunch: Orphaned (unmaintained). system/ktsuss: Orphaned (unmaintained). system/limine: Updated for version 12.4.2 system/listpkg: Orphaned (unmaintained). system/lvm2-cluster: Update maintainer email. system/lvm2-lockd: Update maintainer email. system/magiic: Orphaned (unmaintained). system/mbootpack: Update maintainer email. system/mcrypt: Orphaned (unmaintained). system/mdcat-bin: Updated for version 2.5.0. system/mediaextract: Updated for version 1.2.1. system/midisport-firmware: Orphaned (unmaintained). system/monitoring-plugins: Update maintainer email. system/mount-zip: Updated for version 1.12. system/nagios-plugins: Update maintainer email. system/nagvis: Update maintainer email. system/netdata: Updated for version 2.10.4. system/nsca-ng: Update maintainer email. system/numlockx: New maintainer. system/nut: New Maintainer system/ocfs2-tools: Update maintainer email. system/ohmyalias: Orphaned (unmaintained). system/ohsnap: Orphaned (unmaintained). system/omnidb-app: Orphaned (unmaintained). system/onerng: Updated REQUIRES system/openrc: Updated for version 0.63.3. system/openrgb: Version bump to 1.0rc3 system/oracle-instantclient-basic: Orphaned (unmaintained). system/oracle-instantclient-devel: Orphaned (unmaintained). system/ossec-agent: Update maintainer email. system/ossec-local: Update maintainer email. system/ossec-server: Update maintainer email. system/otf-ibm-plex: Orphaned (unmaintained). system/overpass-desktop-fonts: Orphaned (unmaintained). system/overpass-webfonts: Orphaned (unmaintained). system/pacemaker: Update maintainer email. system/pbzx: Orphaned (unmaintained). system/phpsysinfo: Orphaned (unmaintained). system/posixovl: Orphaned (unmaintained). system/pwman: New maintainer. system/qemu-static: Improve README. system/rEFInd: Fix build on current. system/rar2fs: Update maintainer email. system/rar: Update maintainer email. system/ripgrep: Updated for version 15.2.0. system/rndaddentropy: Orphaned (unmaintained). system/rng-tools: Updated for version 6.17. system/sanlock: Update maintainer email. system/spacefm: Orphaned (unmaintained). system/splix: Orphaned (unmaintained). system/sqlcipher: Update maintainer email. system/syslog-ng: Update maintainer email. system/tagtools: Orphaned (unmaintained). system/tpc: Orphaned (unmaintained). system/trash: Orphaned (unmaintained). system/ttf-ibm-plex: Orphaned (unmaintained). system/tty2gif: Orphaned (unmaintained). system/unrar: Update maintainer email. system/winusb: Orphaned (unmaintained). system/wmconfig: Updated for version 1.5.2 system/xautolock: Orphaned (unmaintained). system/xnp2: Orphaned (unmaintained). system/zookeeper: Orphaned (unmaintained). +--------------------------+ -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From willysr at slackbuilds.org Sat Jul 18 02:04:06 2026 From: willysr at slackbuilds.org (Willy Sudiarto Raharjo) Date: Sat, 18 Jul 2026 09:04:06 +0700 Subject: [Slackbuilds-users] Anyone using TAGS? Message-ID: <20260718090406.61ed4765@home.slackie.org> Does anyone uses https://slackbuilds.org/slackbuilds/15.0/TAGS.txt? it's rarely updated (only when new scripts are added) and it's time consuming If no one even use it, i will reduce the update period from weekly to monthly or more to saves time when doing public update -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 870 bytes Desc: OpenPGP digital signature URL: From jebrhansen+SBo at gmail.com Sat Jul 18 02:12:12 2026 From: jebrhansen+SBo at gmail.com (Jeremy Hansen) Date: Fri, 17 Jul 2026 19:12:12 -0700 Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: <20260718090406.61ed4765@home.slackie.org> References: <20260718090406.61ed4765@home.slackie.org> Message-ID: Is there more to them than just adding extra keywords to allow better searching? If that's the only benefit, I think they're incredibly useful since they allow you to put things that may not be obvious with the package name. This allows you to search for adb and get android-tools or sbolint and get sbo-maintainer-tools. If these are separate from keywords, then I may not understand what they're for. Jeremy On Fri, Jul 17, 2026, 7:04?PM Willy Sudiarto Raharjo < willysr at slackbuilds.org> wrote: > Does anyone uses https://slackbuilds.org/slackbuilds/15.0/TAGS.txt? > it's rarely updated (only when new scripts are added) and it's time > consuming > > If no one even use it, i will reduce the update period from weekly to > monthly or > more to saves time when doing public update > > > -- > 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 alex at dcclost.com Sat Jul 18 02:12:29 2026 From: alex at dcclost.com (Alexander Grotewohl) Date: Sat, 18 Jul 2026 02:12:29 +0000 Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: <20260718090406.61ed4765@home.slackie.org> References: <20260718090406.61ed4765@home.slackie.org> Message-ID: If that's what's used for finding software in the Slackbuilds search box, then it has certainly led me to similar software I ended up using instead. I doubt it has to be updated very often though. If something isn't on the site it isn't on the site. ________________________________ From: SlackBuilds-users on behalf of Willy Sudiarto Raharjo Sent: Friday, 17 July 2026 22:04:06 To: slackbuilds-users at slackbuilds.org Subject: [Slackbuilds-users] Anyone using TAGS? Does anyone uses https://slackbuilds.org/slackbuilds/15.0/TAGS.txt? it's rarely updated (only when new scripts are added) and it's time consuming If no one even use it, i will reduce the update period from weekly to monthly or more to saves time when doing public update -- Willy Sudiarto Raharjo -------------- next part -------------- An HTML attachment was scrubbed... URL: From urchlay at slackware.uk Sat Jul 18 05:53:03 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 18 Jul 2026 01:53:03 -0400 (EDT) Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: References: <20260718090406.61ed4765@home.slackie.org> Message-ID: <38e4948b-6f95-8861-abdc-82a1a1dadcdd@slackware.uk> On Sat, 18 Jul 2026, Alexander Grotewohl wrote: > If that's what's used for finding software in the Slackbuilds search box, then it has certainly led me to similar software I ended up using instead. TAGS.txt isn't used for searches. It's a list of all the search keywords from the database, but when you do a search on the site, the database is used, not the text file. TAGS.txt exists as a convenience. It would let you e.g. write your own local scripts that know about the keywords. I use it for exactly that... Getting rid of the text file wouldn't affect the database. But, good news, we're not getting rid of the text file anyway. I've just rewritten the script that generates it, so it runs in about 2 seconds instead of however many minutes it used to take. From urchlay at slackware.uk Sat Jul 18 05:56:35 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 18 Jul 2026 01:56:35 -0400 (EDT) Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: <20260718090406.61ed4765@home.slackie.org> References: <20260718090406.61ed4765@home.slackie.org> Message-ID: <1ad7e528-ac8e-3ec0-3777-a4cb214608a@slackware.uk> On Sat, 18 Jul 2026, Willy Sudiarto Raharjo wrote: > Does anyone uses https://slackbuilds.org/slackbuilds/15.0/TAGS.txt? > it's rarely updated (only when new scripts are added) and it's time consuming Not any more :) Next time you update it, you should notice it's a lot faster. > If no one even use it, i will reduce the update period from weekly to monthly or > more to saves time when doing public update Yeah, I still use it. I'm the one who asked for it to be created in the first place, ages ago... From rizitis at gmail.com Sat Jul 18 06:40:56 2026 From: rizitis at gmail.com (Yiannis) Date: Sat, 18 Jul 2026 09:40:56 +0300 Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: <1ad7e528-ac8e-3ec0-3777-a4cb214608a@slackware.uk> References: <20260718090406.61ed4765@home.slackie.org> <1ad7e528-ac8e-3ec0-3777-a4cb214608a@slackware.uk> Message-ID: Hello all and thanks for the work you are doing here, Q: Is there an index somewhere or a list, with all these: *.txt *.html * pages that https://slackbuilds.org/? There is very useful material and information that is essentially almost hidden, unless it exists somewhere and I don't see it! thank you rizitis. ???? ??? 18 ???? 2026 ???? 9:01??.?., ?/? B. Watson ??????: > > > On Sat, 18 Jul 2026, Willy Sudiarto Raharjo wrote: > > > Does anyone uses https://slackbuilds.org/slackbuilds/15.0/TAGS.txt? > > it's rarely updated (only when new scripts are added) and it's time > consuming > > Not any more :) > > Next time you update it, you should notice it's a lot faster. > > > If no one even use it, i will reduce the update period from weekly to > monthly or > > more to saves time when doing public update > > Yeah, I still use it. I'm the one who asked for it to be created in > the first place, ages ago... > _______________________________________________ > 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 urchlay at slackware.uk Sat Jul 18 06:45:54 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 18 Jul 2026 02:45:54 -0400 (EDT) Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: References: <20260718090406.61ed4765@home.slackie.org> <1ad7e528-ac8e-3ec0-3777-a4cb214608a@slackware.uk> Message-ID: On Sat, 18 Jul 2026, Yiannis wrote: > Hello all and thanks for the work you are doing here, > Q: Is there an index somewhere or a list, with all these: > *.txt > *.html > * > pages that https://slackbuilds.org/? > > There is very useful material and information that is essentially almost hidden,? > unless it exists somewhere and I don't see it! > thank you > rizitis. It's under the "REPOSITORY" link. "Access to the repository is available via", choose http, then click on 15.0/ You end up here: https://slackbuilds.org/slackbuilds/15.0/ Also if you git clone the repo (or rsync it), you'll see the .txt files in the root of the tree. From rizitis at gmail.com Sat Jul 18 07:03:01 2026 From: rizitis at gmail.com (Yiannis) Date: Sat, 18 Jul 2026 10:03:01 +0300 Subject: [Slackbuilds-users] Anyone using TAGS? In-Reply-To: References: <20260718090406.61ed4765@home.slackie.org> <1ad7e528-ac8e-3ec0-3777-a4cb214608a@slackware.uk> Message-ID: Thanks for the answer! So whatever help there is we find here: https://slackbuilds.org/faq/#uid_gid plus the tags.txt at https://slackbuilds.org/slackbuilds/15.0/ ???? ??? 18 ???? 2026 ???? 9:51??.?., ?/? B. Watson ??????: > > > On Sat, 18 Jul 2026, Yiannis wrote: > > > Hello all and thanks for the work you are doing here, > > Q: Is there an index somewhere or a list, with all these: > > *.txt > > *.html > > * > > pages that https://slackbuilds.org/? > > > > There is very useful material and information that is essentially almost > hidden, > > unless it exists somewhere and I don't see it! > > thank you > > rizitis. > > It's under the "REPOSITORY" link. "Access to the repository is > available via", choose http, then click on 15.0/ > > You end up here: > > https://slackbuilds.org/slackbuilds/15.0/ > > Also if you git clone the repo (or rsync it), you'll see the .txt > files in the root of the > tree._______________________________________________ > 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 mab974 at misouk.com Sat Jul 18 08:07:05 2026 From: mab974 at misouk.com (Mab974) Date: Sat, 18 Jul 2026 12:07:05 +0400 Subject: [Slackbuilds-users] Updates - 20260718.1 In-Reply-To: <20260718084552.310178e3@home.slackie.org> References: <20260718084552.310178e3@home.slackie.org> Message-ID: <20260718120705.bd5ce7d55855b685d9bd591b@misouk.com> I can take these ones if nobody ....... perl-String-Random sylpheed phpsysinfo perlbrew and maybe some more (not enough time now for this long list..) Regards, Michel Selon Willy Sudiarto Raharjo : > We have over 900 commits this week, more orphaned scripts that are going to be > removed, and we have a new mirror at CodeBerg: > https://codeberg.org/SlackBuildsOrg/slackbuilds > > Happy Weekend :) > > -- > Willy Sudiarto Raharjo -*- Mab974 From urchlay at slackware.uk Sat Jul 18 08:12:56 2026 From: urchlay at slackware.uk (B. Watson) Date: Sat, 18 Jul 2026 04:12:56 -0400 (EDT) Subject: [Slackbuilds-users] Updates - 20260718.1 In-Reply-To: <20260718120705.bd5ce7d55855b685d9bd591b@misouk.com> References: <20260718084552.310178e3@home.slackie.org> <20260718120705.bd5ce7d55855b685d9bd591b@misouk.com> Message-ID: On Sat, 18 Jul 2026, Mab974 wrote: > I can take these ones if nobody ....... > > perl-String-Random > sylpheed > phpsysinfo > perlbrew > > and maybe some more (not enough time now for this long list..) Please do. You probably already know, but I'll say it for the whole list: when you take over an orphaned build, make sure you also take over any orphaned dependencies it has. I guess that should be an item for the FAQ...