aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
10 hoursopenvino: bundle xbyak instead of using the system packagemainDanilo M.2-3/+10
System xbyak's cmake config exports a bare -isystem /usr/include, which makes GCC 15 fail to resolve #include_next <stdlib.h> and aborts the build in src/core/model.cpp. Bundle openvino's pinned xbyak submodule (v7.23.1, commit 0d67fd15) via the bundle_dep helper and drop xbyak from REQUIRES, so find_package(xbyak) finds nothing system-wide and falls back to the bundled copy. Matches the approach the Arch PKGBUILD takes. The xbyak submodule sits directly at thirdparty/xbyak (no nested wrapper dir), so bundle_dep is called with thirdparty as the parent. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 hoursopenvino: update to 2026.2.1Danilo M.3-73/+54
Bump from 2024.4.1. Repin all seven bundled deps to the exact commits openvino references at this tag (submodule gitlinks), downloaded uniformly as archive/<sha> tarballs, and switch flatbuffers/onnx/ittapi/protobuf from version tags to commit SHAs for consistency. Refactor the per-dep extract/symlink blocks into a single bundle_dep helper that derives each dep's directory from the tarball, so future bumps only touch the COMMIT_* vars and .info, not the extract logic. Drop pybind11 from REQUIRES: now satisfied by stock python-pybind11. Add a .gitleaksignore entry for a dep commit SHA that trips the generic-api-key entropy rule (a public commit hash, not a secret). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursnvchecker: track claude-code-bin, mutagen, openvino; rename Kvantum to ↵Danilo M.1-1/+19
kvantum-qt6 Every package dir now has a matching stanza. Rename the Kvantum stanza to the package name kvantum-qt6 (strip the V tag prefix), and add the three previously-untracked packages: claude-code-bin (anthropics/claude-code), mutagen (quodlibet/mutagen, release- prefix), openvino (openvinotoolkit). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursREADME: mark claude-desktop-bin tested on -current and 15.0Danilo M.1-1/+1
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursclaude-desktop-bin: chmod all bundled ELFs, not just top-level libsDanilo M.1-6/+9
The deb buries a 0644 native module (node-pty pty.node) under resources/app.asar.unpacked/ with a .node suffix; the previous *.so* maxdepth-1 chmod missed it and sbopkglint 20-arch failed. Sweep every ELF in $PKG by content instead. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursclaude-desktop-bin: add version 1.18286.2Danilo M.8-0/+192
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursdocs: fix SlackBuild mode step in claude-desktop-bin plan (0644 not +x)Danilo M.1-2/+5
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursdocs: add claude-desktop-bin SlackBuild implementation planDanilo M.1-0/+619
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursCLAUDE.md: require cat over cp when staging files into $PKGDanilo M.1-0/+5
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursdocs: mandate cat over cp for package files in claude-desktop-bin specDanilo M.1-4/+15
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
19 hoursdocs: ship per-package nvchecker stanza in claude-desktop-bin specDanilo M.1-3/+19
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 hoursdocs: rename claude-desktop spec to claude-desktop-binDanilo M.1-10/+14
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 hoursdocs: add claude-desktop SlackBuild design specDanilo M.1-0/+181
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysREADME: mark megasync-bin tested on -current and 15.0Danilo M.1-1/+1
4 daysmegasync-bin: make bundled ELF libs executableDanilo M.1-2/+7
sbopkglint 20-arch flags the bundled ffmpeg libs and integration plugins: the upstream .deb ships them mode 0644 (Debian convention) but Slackware wants ELF objects executable. chmod 755 in the strip pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysmegasync-bin: add version 6.4.0.2Danilo M.8-5/+217
Binary repack of MEGA's official Debian 13 package, bundling the main app plus the dolphin (KDE) and thunar (Xfce) file-manager integration plugins in one package. Links system Qt5, bundles ffmpeg; REQUIRES="". Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysdocs: add megasync-bin SlackBuild design specDanilo M.1-0/+148
4 daysREADME: mark gitea-cli tested on 15.0Danilo M.1-1/+1
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysgitea-cli: use idiomatic || fallback for source tarball nameDanilo M.1-5/+6
Match the pattern other gitea-sourced SBo packages use: try the URL path basename first, fall back to the Content-Disposition name. Fixes the stable batch-test env (plain wget) while keeping slackrepo working. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysgitea-cli: require google-go-lang to buildDanilo M.2-3/+5
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysREADME: add gitea-cli to version tableDanilo M.1-0/+1
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysgitea-cli: read source under Content-Disposition nameDanilo M.1-4/+5
slackrepo saves the gitea archive under its Content-Disposition name (tea-v$VERSION.tar.gz), not the URL path basename. Read that name. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysgitea-cli: fix source tarball name in SlackBuildDanilo M.1-4/+4
slackrepo places the source under the DOWNLOAD URL basename (v$VERSION.tar.gz), not $PRGNAM-v$VERSION.tar.gz. Read the correct name so the build finds it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysCLAUDE.md: check SBo for name collisions before adding a packageDanilo M.1-0/+7
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysgitea-cli: rename from tea to avoid SBo conflictDanilo M.7-32/+48
SBo already has an unrelated "tea" package (a text editor). Rename the package to gitea-cli; the installed binary stays /usr/bin/tea. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daysCLAUDE.md: document .extras/ for non-package filesDanilo M.1-0/+8
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 daystea: add version 0.14.2Danilo M.6-0/+291
Gitea command line client, built from source with go build. Network build (upstream tarball is not vendored), personal repo only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 daysREADME: bump versions for updated packagesDanilo M.1-14/+14
6 dayskitty-bin: update to 0.47.4Danilo M.3-5/+5
Also fix slack-desc first description line to match PRGNAM.
6 dayspython3-typer: update to 0.26.8Danilo M.2-4/+4
6 dayspython3-structlog: update to 26.1.0Danilo M.2-4/+4
6 dayspython3-platformdirs: update to 4.10.0Danilo M.2-4/+4
6 dayspython3-huggingface_hub: update to 1.22.0Danilo M.2-4/+4
6 dayspython3-fsspec: update to 2026.6.0Danilo M.2-4/+4
6 daysplaywright-cli: update to 0.1.15Danilo M.2-4/+4
6 daysopencode-bin: update to 1.17.13Danilo M.2-4/+4
6 daysllama.cpp-vulkan: update to b9871Danilo M.2-4/+4
6 dayskvantum-qt6: update to 1.1.8Danilo M.2-4/+4
6 daysgamescope: update to 3.16.24Danilo M.2-4/+4
6 daysdiscord: update to 1.0.145Danilo M.2-4/+4
6 daysclick: update to 8.4.2Danilo M.2-4/+4
6 daysUrbanTerror: ship nvchecker config and document it in READMEDanilo M.2-1/+12
Copy UrbanTerror.nvchecker into the package docs like the other packages do, and add an NVCHECKER section to the README pointing at it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 daysfirefly-cli: update to 0.4.1Danilo M.2-4/+4
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 daysREADME: add r8125, firefly-cli and UrbanTerror to package listDanilo M.1-0/+3
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 daysUrbanTerror: take over maintenance (version 4.3.4)Danilo M.17-0/+3235
Adopt the orphaned UrbanTerror SlackBuild. Change MAINTAINER/EMAIL to danix, keep the prior maintainers in the copyright header and add mine. Uniform the license and arch blocks to the SBo template, drop the stale inline comments, introduce SRCVERSION to derive the dot-less zip name and extraction dir, and strip the prebuilt game binaries to satisfy sbopkglint. Add the nvchecker stanza (regex against the downloads page). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 daysREADME: mark gamescope and python3-platformdirs available on SBoDanilo M.1-2/+2
7 daysREADME: uniform SBo column and add development approach noteDanilo M.1-4/+12
7 daysr8125: fix build failure by disabling DASH supportDanilo M.1-0/+3
7 daysr8125: add version 9.018.00Danilo M.6-0/+215
10 daysfirefly-cli: update to 0.2.1Danilo M.3-4/+22
Bump to 0.2.1 and ship the bash completion script as /etc/bash_completion.d/firefly.new, merged on install via a standard SBo doinst.sh config() handler. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>