From fded4ddd9f014284bb2c4a39e5ce39c377916816 Mon Sep 17 00:00:00 2001 From: Dustin Pilgrim Date: Mon, 26 Jan 2026 17:04:13 -0400 Subject: [PATCH 001/295] feat: add installer for Stasis, a lightweight event driven idle manager for wayland written in Rust --- srcpkgs/stasis-git/template | 53 +++++++++++++++++++++++++++++++++++++ srcpkgs/stasis/template | 32 ++++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 srcpkgs/stasis-git/template create mode 100644 srcpkgs/stasis/template diff --git a/srcpkgs/stasis-git/template b/srcpkgs/stasis-git/template new file mode 100644 index 00000000000000..2f682b7ceb3050 --- /dev/null +++ b/srcpkgs/stasis-git/template @@ -0,0 +1,53 @@ +# Template file for 'stasis-git' +pkgname=stasis-git +version=0.9.0 +revision=1 +build_style=cargo +hostmakedepends="pkg-config git" +makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" +short_desc="Modern Wayland idle manager (development snapshot)" +maintainer="Dustin Pilgrim " +license="MIT" +homepage="https://github.com/saltnpepper97/stasis" +conflicts="stasis" +distfiles="" +checksum="" + +do_fetch() { + git clone https://github.com/saltnpepper97/stasis.git "$wrksrc" + cd "$wrksrc" + + # Version string like: 0.9.0.r23.gabcdef0 (similar to your PKGBUILD) + # If no tags exist, fall back to commit hash only. + _desc=$(git describe --long --tags --always 2>/dev/null || git rev-parse --short HEAD) + _desc=${_desc#v} + _desc=$(printf %s "$_desc" | sed 's/-/.r/; s/-/./') + version="${version}.${_desc}" +} + +do_extract() { + : +} + +do_install() { + # Binary (handle target/*/release just in case) + local bin + for p in target/*/release/stasis target/release/stasis; do + [ -x "$p" ] && bin="$p" && break + done + [ -n "$bin" ] || verror "built binary not found" + + vbin "$bin" + vlicense LICENSE + + # Example configuration (doc location) + vmkdir usr/share/doc/${pkgname}/examples + vinstall examples/stasis.rune 644 usr/share/doc/${pkgname}/examples stasis.rune + + # systemd user unit (ship as documentation only; Void doesn't use systemd) + if [ -f packaging/systemd/user/stasis.service ]; then + vmkdir usr/share/doc/${pkgname}/systemd/user + vinstall packaging/systemd/user/stasis.service 644 usr/share/doc/${pkgname}/systemd/user stasis.service + fi +} + diff --git a/srcpkgs/stasis/template b/srcpkgs/stasis/template new file mode 100644 index 00000000000000..3441a3f0f67aa8 --- /dev/null +++ b/srcpkgs/stasis/template @@ -0,0 +1,32 @@ +# Template file for 'stasis' +pkgname=stasis +version=0.9.0 +revision=1 +build_style=cargo +hostmakedepends="pkg-config" +makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" +depends="dbus eudev-libudev wayland libinput" +short_desc="Modern Wayland idle manager designed for simplicity and effectiveness" +maintainer="Dustin Pilgrim " +license="MIT" +homepage="https://github.com/saltnpepper97/stasis" +distfiles="https://github.com/saltnpepper97/stasis/archive/refs/tags/v${version}.tar.gz" +checksum="7e69a46e3db4145f85a34d822a6f8d4ec67195cc70ad270585119ed9c1d5bd90" + +do_install() { + # Find the built binary (cargo builds into target/*/release or target/release) + local bin + for p in target/*/release/stasis target/release/stasis; do + [ -x "$p" ] && bin="$p" && break + done + [ -n "$bin" ] || verror "built binary not found (expected stasis in target/*/release/ or target/release/)" + + vbin "$bin" + + vlicense LICENSE + + vmkdir usr/share/stasis/examples + vinstall examples/stasis.rune 644 usr/share/stasis/examples stasis.rune + + vbin scripts/media_bridge_host.py +} From 7ae9e612448fcc6a09aea4251dfc2dca21d6db30 Mon Sep 17 00:00:00 2001 From: Vyferora Date: Tue, 14 Oct 2025 12:17:53 +0200 Subject: [PATCH 002/295] tor: update to 0.4.8.22 Closes #57533 --- srcpkgs/tor/patches/python-3.14.patch | 37 +++++++++++++++++++++++++++ srcpkgs/tor/template | 4 +-- 2 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 srcpkgs/tor/patches/python-3.14.patch diff --git a/srcpkgs/tor/patches/python-3.14.patch b/srcpkgs/tor/patches/python-3.14.patch new file mode 100644 index 00000000000000..637d3f84f2cd6b --- /dev/null +++ b/srcpkgs/tor/patches/python-3.14.patch @@ -0,0 +1,37 @@ +From 1982ef09417304e29962b3147e703c6b9947f60c Mon Sep 17 00:00:00 2001 +From: "Alex Xu (Hello71)" +Date: Mon, 15 Sep 2025 19:37:00 -0400 +Subject: [PATCH] practracker: codecs.open -> io.open for python 3.14 + +codecs.open is now deprecated: https://docs.python.org/3.14/whatsnew/3.14.html. +it prints a DeprecationWarning which makes tests fail, and may be removed in +the future. io.open works on python 2 and 3 +--- + scripts/maint/practracker/practracker.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/scripts/maint/practracker/practracker.py b/scripts/maint/practracker/practracker.py +index 76ffd64cfb..fd2abe6c27 100755 +--- a/scripts/maint/practracker/practracker.py ++++ b/scripts/maint/practracker/practracker.py +@@ -24,7 +24,7 @@ from __future__ import division + from __future__ import print_function + from __future__ import unicode_literals + +-import codecs, os, sys ++import io, os, sys + + import metrics + import util +@@ -64,7 +64,7 @@ TOR_TOPDIR = None + ####################################################### + + def open_file(fname): +- return codecs.open(fname, 'r', encoding='utf-8') ++ return io.open(fname, 'r', encoding='utf-8') + + def consider_file_size(fname, f): + """Consider the size of 'f' and yield an FileSizeItem for it. +-- +GitLab + diff --git a/srcpkgs/tor/template b/srcpkgs/tor/template index f3974a39d0ae7c..60f13050593158 100644 --- a/srcpkgs/tor/template +++ b/srcpkgs/tor/template @@ -1,6 +1,6 @@ # Template file for 'tor' pkgname=tor -version=0.4.8.17 +version=0.4.8.22 revision=1 build_style=gnu-configure configure_args="--enable-gpl" @@ -14,7 +14,7 @@ license="BSD-3-Clause, GPL-3.0-only" homepage="https://www.torproject.org/" changelog="https://gitlab.torproject.org/tpo/core/tor/-/raw/main/ChangeLog" distfiles="https://dist.torproject.org/tor-${version}.tar.gz" -checksum=79b4725e1d4b887b9e68fd09b0d2243777d5ce3cd471e538583bcf6f9d8cdb56 +checksum=c88620d9278a279e3d227ff60975b84aa41359211f8ecff686019923b9929332 case "${XBPS_TARGET_MACHINE}" in # Tests just don't work here From 7279a76e679efd05651cf0be7fe9136cf77508fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 29 Jan 2026 16:36:46 +0700 Subject: [PATCH 003/295] texlive: fix replacement --- srcpkgs/texlive/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/texlive/template b/srcpkgs/texlive/template index d2884a3e3b8f0e..7adeaa17d25022 100644 --- a/srcpkgs/texlive/template +++ b/srcpkgs/texlive/template @@ -260,6 +260,7 @@ texlive-devel_package() { texlive-BibTeX_package() { depends="${sourcepkg}>=${version}_${revision} bash" + replaces="texlive-bibtexextra<=2024_1" short_desc+=" - reference management software" pkg_install() { for i in bbl2bib ctanbib ; do From 160b037ead08cd2f8b5011e09824aaa49319c5b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 29 Jan 2026 16:36:48 +0700 Subject: [PATCH 004/295] texlive-core: fix replacement --- srcpkgs/texlive-core/template | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template index 798a0362dac911..6cd98b9519c3b2 100644 --- a/srcpkgs/texlive-core/template +++ b/srcpkgs/texlive-core/template @@ -1,7 +1,7 @@ # Template file for 'texlive-core' pkgname=texlive-core version=20250308 -revision=1 +revision=2 depends="fontforge python3 python3-Pygments perl perl-File-Which" short_desc="TeX Live - core texmf distribution" maintainer="fosslinux " @@ -14,6 +14,14 @@ checksum="08dcda7430bf0d2f6ebb326f1e197e1473d3f7cc0984a2adb7236df45316c7cf python_version=3 make_dirs="/var/lib/texmf 0755 root root" nostrip=yes +replaces="texlive-latexextra<=2024_1 texlive-pictures<=2024_1 + texlive-fontsextra<=2024_1 texlive-formatsextra<=2024_1 + texlive-games<=2024_1 texlive-humanities<=2024_1 + texlive-langchinese<=2024_1 texlive-langcyrillic<=2024_1 + texlive-langextra<=2024_1 texlive-langgreek<=2024_1 + texlive-langjapanese<=2024_1 texlive-langkorean<=2024_1 + texlive-music<=2024_1 texlive-pstricks<=2024_1 + texlive-publishers<=2024_1 texlive-science<=2024_1" post_extract() { mv texlive-${version}-texmf/* . From acde953bc47dbbe7d0c1555095251421414f53af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 29 Jan 2026 16:36:55 +0700 Subject: [PATCH 005/295] texlive-basic: fix replacement --- srcpkgs/texlive-basic/template | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template index f15032c7676e5e..a0bd7cdee0df15 100644 --- a/srcpkgs/texlive-basic/template +++ b/srcpkgs/texlive-basic/template @@ -1,16 +1,14 @@ # Template file for 'texlive-basic' pkgname=texlive-basic version=2023.0 -revision=1 +revision=2 metapackage=yes _year=${version%.*} depends="texlive>=20230313 texlive-BibTeX>=20230313 texlive-LuaTeX>=20230313 texlive-dvi>=20210313 - texlive-core>=${_year} - texlive-latexextra>=${_year} - texlive-pictures>=${_year}" + texlive-core>=${_year}" short_desc="TeX Live - Metapackage including some simple packages" maintainer="fosslinux " license="GPL-2.0-or-later" From 4bac45df899256293aef32629396c4a713f695b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Fri, 30 Jan 2026 10:04:51 +0700 Subject: [PATCH 006/295] removed-packages: update to 0.1.20260130. --- srcpkgs/removed-packages/template | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 299a791c398a39..4d996d5ac0f4b2 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -1,6 +1,6 @@ # Template file for 'removed-packages' pkgname=removed-packages -version=0.1.20260120 +version=0.1.20260130 revision=1 metapackage=yes short_desc="Uninstalls packages removed from repository" @@ -954,23 +954,6 @@ replaces=" text-engine-devel<=0.1.1_1 text-engine<=0.1.1_1 thefuck<=3.32_5 - texlive-bibtexextra<=2023.66579_1 - texlive-fontsextra<=2023.66328_1 - texlive-formatsextra<=2023.66186_1 - texlive-games<=2023.66190_1 - texlive-humanities<=2023.65502_1 - texlive-langchinese<=2023.66188_1 - texlive-langcyrillic<=2023.64588_1 - texlive-langextra<=2023.66225_1 - texlive-langgreek<=2023.66513_1 - texlive-langjapanese<=2023.66482_1 - texlive-langkorean<=2023.66513_1 - texlive-latexextra<=2023.66551_1 - texlive-music<=2023.66278_1 - texlive-pictures<=2023.66549_1 - texlive-pstricks<=2023.66115_1 - texlive-publishers<=2023.66550_1 - texlive-science<=2023.66461_1 threadweaver<=5.116.0_1 tilp2<=1.18_2 tlsdate<=0.0.13_16 From f066f18be8c258965ab42fc66bd87c52a66f2428 Mon Sep 17 00:00:00 2001 From: oreo639 Date: Wed, 28 Jan 2026 00:03:48 -0800 Subject: [PATCH 007/295] v4l-utils: update to 1.32.0. --- srcpkgs/v4l-utils/patches/musl-ioctl.patch | 84 ++++++++-------------- srcpkgs/v4l-utils/template | 6 +- 2 files changed, 34 insertions(+), 56 deletions(-) diff --git a/srcpkgs/v4l-utils/patches/musl-ioctl.patch b/srcpkgs/v4l-utils/patches/musl-ioctl.patch index 877ebe18cc7c9c..82136f48787d2a 100644 --- a/srcpkgs/v4l-utils/patches/musl-ioctl.patch +++ b/srcpkgs/v4l-utils/patches/musl-ioctl.patch @@ -1,56 +1,34 @@ -From fd882f9e77b13cbc6a669e6836c3943393b44152 Mon Sep 17 00:00:00 2001 -From: Michal Rostecki -Date: Fri, 6 Sep 2024 14:46:31 +0200 -Subject: libv4l2: Guard the v4l2_ioctl function with HAVE_POSIX_IOCTL +Ensure that LIBV4L_HAVE_POSIX_IOCTL define is used when linking with other packages. -Lack of this check leads to issues on musl-based system. Even though -compilation of libv4l2 itself with musl doesn't cause any errors, -using the library inside gst-plugins-v4l2 causes a compiler error -due to mismatch of the ioctl signature. - -A similar check is already performed in v4l2convert.c, so the change -doesn't bring any inconsistency. - -Link: https://bugs.gentoo.org/896418 -Signed-off-by: Michal Rostecki -Signed-off-by: Hans Verkuil ---- - lib/include/libv4l2.h | 4 ++++ - lib/libv4l2/libv4l2.c | 4 ++++ - 2 files changed, 8 insertions(+) - -diff --git a/lib/include/libv4l2.h b/lib/include/libv4l2.h -index ea1870db..16565555 100644 ---- a/lib/include/libv4l2.h -+++ b/lib/include/libv4l2.h -@@ -63,7 +63,11 @@ LIBV4L_PUBLIC extern FILE *v4l2_log_file; - LIBV4L_PUBLIC int v4l2_open(const char *file, int oflag, ...); - LIBV4L_PUBLIC int v4l2_close(int fd); - LIBV4L_PUBLIC int v4l2_dup(int fd); -+#ifdef HAVE_POSIX_IOCTL -+LIBV4L_PUBLIC int v4l2_ioctl(int fd, int request, ...); -+#else - LIBV4L_PUBLIC int v4l2_ioctl(int fd, unsigned long int request, ...); -+#endif - LIBV4L_PUBLIC ssize_t v4l2_read(int fd, void *buffer, size_t n); - LIBV4L_PUBLIC ssize_t v4l2_write(int fd, const void *buffer, size_t n); - LIBV4L_PUBLIC void *v4l2_mmap(void *start, size_t length, int prot, int flags, -diff --git a/lib/libv4l2/libv4l2.c b/lib/libv4l2/libv4l2.c -index 032a4f1c..1607ec35 100644 ---- a/lib/libv4l2/libv4l2.c -+++ b/lib/libv4l2/libv4l2.c -@@ -1051,7 +1051,11 @@ static int v4l2_s_fmt(int index, struct v4l2_format *dest_fmt) - return 0; - } +diff -rup meson.build.orig meson.build +--- a/meson.build.orig ++++ b/meson.build +@@ -383,12 +383,14 @@ if have_qt_opengl + conf.set('HAVE_QTGL', 1) + endif + ++pkg_arguments = [] + ioctl_posix_test = ''' + #include + int ioctl (int, int, ...); + ''' + if cc.compiles(ioctl_posix_test) + conf.set('LIBV4L_HAVE_POSIX_IOCTL', 1) ++ pkg_arguments += '-DLIBV4L_HAVE_POSIX_IOCTL=1' + endif + + c_arguments = [] +diff -rup lib/libv4l2/meson.build.orig lib/libv4l2/meson.build +--- a/lib/libv4l2/meson.build.orig ++++ b/lib/libv4l2/meson.build +@@ -48,7 +48,8 @@ pkg.generate( + name : 'libv4l2', + version : meson.project_version(), + requires_private : 'libv4lconvert', +- description : 'v4l2 device access library') ++ description : 'v4l2 device access library', ++ extra_cflags : pkg_arguments) -+#ifdef HAVE_POSIX_IOCTL -+int v4l2_ioctl(int fd, int request, ...) -+#else - int v4l2_ioctl(int fd, unsigned long int request, ...) -+#endif - { - void *arg; - va_list ap; --- -cgit v1.2.3 + if not get_option('v4l-wrappers') + subdir_done() diff --git a/srcpkgs/v4l-utils/template b/srcpkgs/v4l-utils/template index 9c6ffaf6b9f761..04321740e34e13 100644 --- a/srcpkgs/v4l-utils/template +++ b/srcpkgs/v4l-utils/template @@ -1,7 +1,7 @@ # Template file for 'v4l-utils' pkgname=v4l-utils -version=1.28.1 -revision=2 +version=1.32.0 +revision=1 build_style=meson configure_args="-Dqv4l2=disabled -Dudevdir=/usr/lib/udev -Dgconv=disabled" hostmakedepends="perl pkg-config gettext-devel" @@ -13,7 +13,7 @@ license="GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://linuxtv.org/" changelog="https://git.linuxtv.org/v4l-utils.git/plain/ChangeLog" distfiles="https://linuxtv.org/downloads/v4l-utils/v4l-utils-${version}.tar.xz" -checksum=0fa075ce59b6618847af6ea191b6155565ccaa44de0504581ddfed795a328a82 +checksum=6828828a17775526eb93fb258a9294d1d1073d633c344dd71ecd4e7a1ffb7dfc conf_files="/etc/rc_maps.cfg" case "$XBPS_TARGET_MACHINE" in From f5102a36ff14b4666a81005cfe7444a9ed85d5b1 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 30 Jan 2026 09:43:24 -0500 Subject: [PATCH 008/295] python3-yt-dlp-ejs: update to 0.4.0. --- .../patches/ignore-scripts.patch | 18 ++++---- .../python3-yt-dlp-ejs/patches/rollup.patch | 41 +++++++------------ srcpkgs/python3-yt-dlp-ejs/template | 4 +- 3 files changed, 26 insertions(+), 37 deletions(-) diff --git a/srcpkgs/python3-yt-dlp-ejs/patches/ignore-scripts.patch b/srcpkgs/python3-yt-dlp-ejs/patches/ignore-scripts.patch index 741968fb6e1ddb..9097e01452483d 100644 --- a/srcpkgs/python3-yt-dlp-ejs/patches/ignore-scripts.patch +++ b/srcpkgs/python3-yt-dlp-ejs/patches/ignore-scripts.patch @@ -2,14 +2,14 @@ don't run npm scripts source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt-dlp-ejs/ignore-scripts.patch ---- ./pnpm.py.orig -+++ ./pnpm.py -@@ -21,7 +21,7 @@ - ) - print(f"Building with {name}...") +--- ./hatch_build.py.orig ++++ ./hatch_build.py +@@ -38,7 +38,7 @@ -- pnpm(["install", "--frozen-lockfile"]) -+ pnpm(["install", "--frozen-lockfile", "--no-optional", "--ignore-scripts"]) - pnpm(["run", "bundle"]) + if pnpm := shutil.which("pnpm"): + name = "pnpm" +- install = [pnpm, "install", "--frozen-lockfile"] ++ install = [pnpm, "install", "--frozen-lockfile", "--ignore-scripts"] + bundle = [pnpm, "run", "bundle"] - build_data["force_include"].update( + elif deno := shutil.which("deno"): diff --git a/srcpkgs/python3-yt-dlp-ejs/patches/rollup.patch b/srcpkgs/python3-yt-dlp-ejs/patches/rollup.patch index 30b818fe483465..865d583a2a0b50 100644 --- a/srcpkgs/python3-yt-dlp-ejs/patches/rollup.patch +++ b/srcpkgs/python3-yt-dlp-ejs/patches/rollup.patch @@ -5,30 +5,19 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- --- ./package.json.orig +++ ./package.json -@@ -26,5 +26,10 @@ +@@ -22,7 +22,7 @@ + "eslint": "9.38.0", + "globals": "16.4.0", + "prettier": "3.6.2", +- "rollup": "4.52.5", ++ "rollup": "npm:@rollup/wasm-node@4.52.5", "rollup-plugin-license": "3.6.0", "typescript-eslint": "8.46.2" - }, -+ "pnpm": { -+ "overrides": { -+ "rollup": "npm:@rollup/wasm-node@4.52.5" -+ } -+ }, - "packageManager": "pnpm@10.24.0" - } + } + --- ./pnpm-lock.yaml.orig +++ ./pnpm-lock.yaml -@@ -4,6 +4,9 @@ - autoInstallPeers: true - excludeLinksFromLockfile: false - -+overrides: -+ rollup: npm:@rollup/wasm-node@4.52.5 -+ - importers: - - .: -@@ -20,13 +23,13 @@ +@@ -20,13 +20,13 @@ version: 9.38.0 '@rollup/plugin-node-resolve': specifier: 16.0.3 @@ -45,7 +34,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- '@types/bun': specifier: 1.3.0 version: 1.3.0(@types/react@19.2.7) -@@ -46,11 +49,11 @@ +@@ -46,11 +46,11 @@ specifier: 3.6.2 version: 3.6.2 rollup: @@ -60,7 +49,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- typescript-eslint: specifier: 8.46.2 version: 8.46.2(eslint@9.38.0)(typescript@5.9.3) -@@ -179,116 +182,11 @@ +@@ -179,116 +179,11 @@ rollup: optional: true @@ -181,7 +170,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- '@types/bun@1.3.0': resolution: {integrity: sha512-+lAGCYjXjip2qY375xX/scJeVRmZ5cY0wyHYyCYxNcdEXrQ4AOe3gACgd4iQ8ksOslJtW4VNxBJ8llUwc3a6AA==} -@@ -790,11 +688,6 @@ +@@ -790,11 +685,6 @@ peerDependencies: rollup: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 @@ -193,7 +182,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} -@@ -1023,105 +916,45 @@ +@@ -1023,105 +913,45 @@ '@nodelib/fs.scandir': 2.1.5 fastq: 1.19.1 @@ -314,7 +303,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- '@types/bun@1.3.0(@types/react@19.2.7)': dependencies: bun-types: 1.3.0(@types/react@19.2.7) -@@ -1606,7 +1439,7 @@ +@@ -1606,7 +1436,7 @@ reusify@1.1.0: {} @@ -323,7 +312,7 @@ source: https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/yt- dependencies: commenting: 1.1.0 fdir: 6.5.0(picomatch@4.0.3) -@@ -1614,39 +1447,11 @@ +@@ -1614,39 +1444,11 @@ magic-string: 0.30.21 moment: 2.30.1 package-name-regex: 2.0.6 diff --git a/srcpkgs/python3-yt-dlp-ejs/template b/srcpkgs/python3-yt-dlp-ejs/template index e3c7247e6f81d4..60cd834f68afec 100644 --- a/srcpkgs/python3-yt-dlp-ejs/template +++ b/srcpkgs/python3-yt-dlp-ejs/template @@ -1,6 +1,6 @@ # Template file for 'python3-yt-dlp-ejs' pkgname=python3-yt-dlp-ejs -version=0.3.2 +version=0.4.0 revision=1 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs pnpm" @@ -10,4 +10,4 @@ license="Unlicense" homepage="https://github.com/yt-dlp/ejs" changelog="https://github.com/yt-dlp/ejs/releases" distfiles="${PYPI_SITE}/y/yt_dlp_ejs/yt_dlp_ejs-${version}.tar.gz" -checksum=31a41292799992bdc913e03c9fac2a8c90c82a5cbbc792b2e3373b01da841e3e +checksum=3c67e0beb6f9f3603fbcb56f425eabaa37c52243d90d20ccbcce1dd941cfbd07 From 64a1ad68f716842c87782403f6a2432633bd6368 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Fri, 30 Jan 2026 09:43:28 -0500 Subject: [PATCH 009/295] yt-dlp: update to 2026.01.29. --- srcpkgs/yt-dlp/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/yt-dlp/template b/srcpkgs/yt-dlp/template index ca3d75c5388838..9d01cb7eabb4b0 100644 --- a/srcpkgs/yt-dlp/template +++ b/srcpkgs/yt-dlp/template @@ -1,9 +1,9 @@ # Template file for 'yt-dlp' pkgname=yt-dlp -version=2025.12.08 +version=2026.01.29 revision=1 # XXX: keep python3-yt-dlp-ejs in sync with pyproject.toml -_ejs_ver=0.3.2 +_ejs_ver=0.4.0 build_style=python3-pep517 make_check_args="-k not((download)or(test_socks))" hostmakedepends="hatchling" @@ -17,7 +17,7 @@ license="Unlicense" homepage="https://github.com/yt-dlp/yt-dlp" changelog="https://raw.githubusercontent.com/yt-dlp/yt-dlp/master/Changelog.md" distfiles="https://github.com/yt-dlp/yt-dlp/releases/download/${version}/yt-dlp.tar.gz>yt-dlp-$version.tar.gz" -checksum=9814ae7dd4118a80a6104399d4984e355d2a71f78e6bbc48137a5b299eddcbaf +checksum=e4edd01abd229f646b8280209d462785c2d0929f7612fb24740fa528e5eff433 if [ "$XBPS_WORDSIZE" -eq "$XBPS_TARGET_WORDSIZE" ]; then # nodejs can only be built for this platform combination From 254aa7e3395bad53639e087b0777da8ab8c048a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:23:55 -0500 Subject: [PATCH 010/295] Gokapi: update to 2.2.1. --- srcpkgs/Gokapi/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/Gokapi/template b/srcpkgs/Gokapi/template index 42bee44ae82531..7fef6d312f3aae 100644 --- a/srcpkgs/Gokapi/template +++ b/srcpkgs/Gokapi/template @@ -1,6 +1,6 @@ # Template file for 'Gokapi' pkgname=Gokapi -version=2.1.0 +version=2.2.1 revision=1 build_style=go make_check_args="--tags=test,noaws" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="AGPL-3.0-only" homepage="https://github.com/Forceu/Gokapi" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=2b2f6e6b5f3d7d449f627ea6fa5eb27387c3130e4bfcbfcfca453bb836743d40 +checksum=99db481d37a3b80f5beb11a46599221de23778985b9151f4e6bbd74787eb885e system_accounts="_gokapi" _gokapi_homedir="/var/lib/gokapi" make_dirs="/var/lib/gokapi 700 _gokapi _gokapi" From d49166c2d8bbdcb8909d39e9465fd9bce1470b43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:30:49 -0500 Subject: [PATCH 011/295] openblas: update to 0.3.31. --- srcpkgs/openblas/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/openblas/template b/srcpkgs/openblas/template index be335df3e22df6..690d191cc412eb 100644 --- a/srcpkgs/openblas/template +++ b/srcpkgs/openblas/template @@ -1,6 +1,6 @@ # Template file for 'openblas' pkgname=openblas -version=0.3.30 +version=0.3.31 revision=1 build_style=gnu-makefile make_build_args="HOSTCC=gcc USE_OPENMP=1" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://www.openblas.net/" changelog="https://raw.githubusercontent.com/xianyi/OpenBLAS/develop/Changelog.txt" distfiles="https://github.com/xianyi/OpenBLAS/archive/v${version}.tar.gz" -checksum=27342cff518646afb4c2b976d809102e368957974c250a25ccc965e53063c95d +checksum=6dd2a63ac9d32643b7cc636eab57bf4e57d0ed1fff926dfbc5d3d97f2d2be3a6 case "$XBPS_TARGET_MACHINE" in ppc64*) ;; From c108417e678eade21ae5f2c2a6954a5bd68a416a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:30:58 -0500 Subject: [PATCH 012/295] python3-packaging-bootstrap: update to 26.0. --- srcpkgs/python3-packaging-bootstrap/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-packaging-bootstrap/template b/srcpkgs/python3-packaging-bootstrap/template index cbc3bc8fcfc8fc..b55cf69bf8f4ee 100644 --- a/srcpkgs/python3-packaging-bootstrap/template +++ b/srcpkgs/python3-packaging-bootstrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-packaging-bootstrap' pkgname=python3-packaging-bootstrap -version=25.0 -revision=2 +version=26.0 +revision=1 # This package is required by python3-build, used by the python3-pep517 style; # using that style here would create a cycle build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="Apache-2.0, BSD-2-Clause" homepage="https://github.com/pypa/packaging" distfiles="${PYPI_SITE}/p/packaging/packaging-${version}.tar.gz" -checksum=d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f +checksum=00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4 make_check=no # provides no tests, bootstrap repository=bootstrap nopyprovides=yes From 4130db88f488d48116bf50cca0aa9ad8ef03f264 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:31:08 -0500 Subject: [PATCH 013/295] python3-packaging: update to 26.0. --- srcpkgs/python3-packaging/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-packaging/template b/srcpkgs/python3-packaging/template index 091bf6ce61f431..86c48ee86ce1c1 100644 --- a/srcpkgs/python3-packaging/template +++ b/srcpkgs/python3-packaging/template @@ -1,7 +1,7 @@ # Template file for 'python3-packaging' pkgname=python3-packaging -version=25.0 -revision=2 +version=26.0 +revision=1 # This package is required by python3-build, used by the python3-pep517 style; # using that style here would create a cycle build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Andrew J. Hesford " license="Apache-2.0, BSD-2-Clause" homepage="https://github.com/pypa/packaging" distfiles="${PYPI_SITE}/p/packaging/packaging-${version}.tar.gz" -checksum=d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f +checksum=00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4 make_check=no # provides no tests do_build() { From 32e02d75950488babbb64817c8671df35971e742 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:34:25 -0500 Subject: [PATCH 014/295] python3-hypothesis: update to 6.151.0. --- srcpkgs/python3-hypothesis/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-hypothesis/template b/srcpkgs/python3-hypothesis/template index 90346f5ad00463..c6cc606f3f5fa4 100644 --- a/srcpkgs/python3-hypothesis/template +++ b/srcpkgs/python3-hypothesis/template @@ -1,6 +1,6 @@ # Template file for 'python3-hypothesis' pkgname=python3-hypothesis -version=6.150.0 +version=6.151.0 revision=1 build_wrksrc=hypothesis-python build_style=python3-pep517 @@ -24,7 +24,7 @@ license="MPL-2.0" homepage="https://hypothesis.works/" changelog="https://raw.githubusercontent.com/HypothesisWorks/hypothesis/master/hypothesis-python/docs/changes.rst" distfiles="https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-${version}.tar.gz" -checksum=5d2fc046bec93c3c6e047ad8b46da98e9fa65efc1e19196bc018168bd891edc2 +checksum=cb879e623ad8a6cf4decfff7d27db8abe82f449318018cd75f0273959748ede8 if [ "$XBPS_CHECK_PKGS" != full ]; then # Skip "full" tests unless explicitly requested" From ec6816ae499061bdaf3c6b66f2bdd0c9f5a7af35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:34:43 -0500 Subject: [PATCH 015/295] python3-meson-python: update to 0.19.0. --- srcpkgs/python3-meson-python/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-meson-python/template b/srcpkgs/python3-meson-python/template index b5f41912198568..d9e60b24085c65 100644 --- a/srcpkgs/python3-meson-python/template +++ b/srcpkgs/python3-meson-python/template @@ -1,7 +1,7 @@ # Template file for 'python3-meson-python' pkgname=python3-meson-python -version=0.18.0 -revision=2 +version=0.19.0 +revision=1 build_style=python3-pep517 hostmakedepends="meson python3-pyproject-metadata patchelf" depends="meson python3-pyproject-metadata python3-packaging patchelf" @@ -11,7 +11,7 @@ license="MIT" homepage="https://meson-python.readthedocs.io/" changelog="https://raw.githubusercontent.com/mesonbuild/meson-python/main/CHANGELOG.rst" distfiles="${PYPI_SITE}/m/meson_python/meson_python-${version}.tar.gz" -checksum=c56a99ec9df669a40662fe46960321af6e4b14106c14db228709c1628e23848d +checksum=9959d198aa69b57fcfd354a34518c6f795b781a73ed0656f4d01660160cc2553 # tests require custom-built executables, need reconciliation with xbps-src env make_check=no From d1a24adde9e7c86c16cda864bce6c91b96227d72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:35:07 -0500 Subject: [PATCH 016/295] python3-parsing: update to 3.3.2. --- srcpkgs/python3-parsing/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-parsing/template b/srcpkgs/python3-parsing/template index 7ac1f071cfa5f8..ccc1ba7fc63298 100644 --- a/srcpkgs/python3-parsing/template +++ b/srcpkgs/python3-parsing/template @@ -1,6 +1,6 @@ # Template file for 'python3-parsing' pkgname=python3-parsing -version=3.3.1 +version=3.3.2 revision=1 # This package is used by the python3-pep517 build style; using that style here # would create a build cycle @@ -20,7 +20,7 @@ license="MIT" homepage="https://github.com/pyparsing/pyparsing" changelog="https://github.com/pyparsing/pyparsing/raw/master/CHANGES" distfiles="${PYPI_SITE}/p/pyparsing/pyparsing-${version}.tar.gz" -checksum=47fad0f17ac1e2cad3de3b458570fbc9b03560aa029ed5e16ee5554da9a2251c +checksum=c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc do_build() { python3 -m flit_core.wheel From 38c9a25c727e92564c5febc1defff81203befa37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:35:34 -0500 Subject: [PATCH 017/295] python3-nanobind: update to 2.11.0. --- srcpkgs/python3-nanobind/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-nanobind/template b/srcpkgs/python3-nanobind/template index 2d09a1bafb2bc9..47619cba30fd0b 100644 --- a/srcpkgs/python3-nanobind/template +++ b/srcpkgs/python3-nanobind/template @@ -1,6 +1,6 @@ # Template file for 'python3-nanobind' pkgname=python3-nanobind -version=2.10.2 +version=2.11.0 revision=1 build_style=python3-pep517 hostmakedepends="python3-scikit-build-core ninja" @@ -14,7 +14,7 @@ _robin_map_hash="188c45569cc2a5dd768077c193830b51d33a5020" distfiles="${homepage}/archive/v${version}.tar.gz https://github.com/Tessil/robin-map/archive/${_robin_map_hash}.tar.gz " -checksum="5bb7f866f6c9c64405308b69de7e7681d8f779323e345bd71a00199c1eaec073 +checksum="62ba05e5f720c76c510d6ab2a77f8ccc17a76c5cea951bea47355a7dfa460449 2f4be670fa4f53c3261ed7af392b414a00e75591f87da0a8dd525de376430747" skip_extraction="${_robin_map_hash}.tar.gz" From 813ac167593ba61d47197e292ca2e4ced5f81a52 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:36:04 -0500 Subject: [PATCH 018/295] python3-pyopencl: update to 2026.1.2. --- srcpkgs/python3-pyopencl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyopencl/template b/srcpkgs/python3-pyopencl/template index 5321f947fcead2..2aedd10c91fb46 100644 --- a/srcpkgs/python3-pyopencl/template +++ b/srcpkgs/python3-pyopencl/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyopencl' pkgname=python3-pyopencl -version=2026.1.1 +version=2026.1.2 revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-numpy @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="X11, Apache-2.0, BSD-3-Clause" homepage="https://mathema.tician.de/software/pyopencl" distfiles="${PYPI_SITE}/p/pyopencl/pyopencl-${version}.tar.gz" -checksum=114197542f4fcee633b50d155812e2f4e2f91e05ed27c09e0cc75ce9f22d5c1a +checksum=4397dd0b4cbb8b55f3e09bf87114a2465574506b363890b805b860c348b61970 # Tests require a working OpenCL platform make_check=no From 995e6b821e95ba4fb6d6edb02eb943182ff999e2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:36:17 -0500 Subject: [PATCH 019/295] python3-tifffile: update to 2026.1.28. --- srcpkgs/python3-tifffile/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template index 291f0d74e33201..55dd0ed8633178 100644 --- a/srcpkgs/python3-tifffile/template +++ b/srcpkgs/python3-tifffile/template @@ -1,6 +1,6 @@ # Template file for 'python3-tifffile' pkgname=python3-tifffile -version=2025.12.20 +version=2026.1.28 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -11,7 +11,7 @@ license="BSD-3-Clause" homepage="https://github.com/cgohlke/tifffile" changelog="https://raw.githubusercontent.com/cgohlke/tifffile/master/CHANGES.rst" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=48ad84abb0f3669dc734de4cfe97c54470436cbc57f766731c9840b5e0764345 +checksum=48838c4adf0fde744da37d2b109d92e14bf9aafceda2c15640fec99a3e233ebb # Tests require unpackaged fsspec make_check=no From d5f1095ed3cbb00fe08dacf0b3f4acc2e4c9aca2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:36:32 -0500 Subject: [PATCH 020/295] python3-wheel: update to 0.46.3. --- srcpkgs/python3-wheel/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-wheel/template b/srcpkgs/python3-wheel/template index 026387ee511125..6651da8f593418 100644 --- a/srcpkgs/python3-wheel/template +++ b/srcpkgs/python3-wheel/template @@ -1,7 +1,7 @@ # Template file for 'python3-wheel' pkgname=python3-wheel -version=0.46.1 -revision=2 +version=0.46.3 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/pypa/wheel" distfiles="${PYPI_SITE}/w/wheel/wheel-${version}.tar.gz" -checksum=fd477efb5da0f7df1d3c76c73c14394002c844451bd63229d8570f376f5e6a38 +checksum=e3e79874b07d776c40bd6033f8ddf76a7dad46a7b8aa1b2787a83083519a1803 conflicts="python-wheel>=0" do_check() { From c6ad0c4be4728d15a2c9e4995ff4992b28b913fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 30 Jan 2026 08:36:48 -0500 Subject: [PATCH 021/295] python3-setuptools: update to 80.10.2. --- srcpkgs/python3-setuptools/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template index cc731db69bfeeb..4f0b1b2c6bee2a 100644 --- a/srcpkgs/python3-setuptools/template +++ b/srcpkgs/python3-setuptools/template @@ -1,7 +1,7 @@ # Template file for 'python3-setuptools' pkgname=python3-setuptools -version=80.9.0 -revision=2 +version=80.10.2 +revision=1 build_style=python3-module hostmakedepends="python3-devel" depends="python3" @@ -11,7 +11,7 @@ license="MIT" homepage="https://github.com/pypa/setuptools" changelog="https://setuptools.pypa.io/en/stable/history.html" distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz" -checksum=f36b47402ecde768dbfafc46e8e4207b4360c654f1f3bb84475f0a28628fb19c +checksum=8b0e9d10c784bf7d262c4e5ec5d4ec94127ce206e8738f29a437945fbc219b70 provides="python3-distribute-${version}_1" replaces="python3-distribute>=0" # Tests rely on jaraco.path, which relies on singledispatch, both unpackaged; From 92041a84660fa2d4e07daeaa02273bb5a06ab9aa Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Fri, 30 Jan 2026 12:45:39 +0100 Subject: [PATCH 022/295] ntpd-rs: update to 1.7.0, orphan --- srcpkgs/ntpd-rs/patches/use-ring.patch | 667 +------------------------ srcpkgs/ntpd-rs/template | 11 +- 2 files changed, 14 insertions(+), 664 deletions(-) diff --git a/srcpkgs/ntpd-rs/patches/use-ring.patch b/srcpkgs/ntpd-rs/patches/use-ring.patch index d450d1a5c28c0f..18b1e0d0609aea 100644 --- a/srcpkgs/ntpd-rs/patches/use-ring.patch +++ b/srcpkgs/ntpd-rs/patches/use-ring.patch @@ -1,671 +1,16 @@ -diff --git a/Cargo.lock b/Cargo.lock -index 75007d7..da27a0e 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -54,15 +54,6 @@ dependencies = [ - "zeroize", - ] - --[[package]] --name = "aho-corasick" --version = "1.1.3" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" --dependencies = [ -- "memchr", --] -- - [[package]] - name = "arbitrary" - version = "1.4.1" -@@ -80,29 +71,6 @@ dependencies = [ - "syn", - ] - --[[package]] --name = "aws-lc-rs" --version = "1.13.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7" --dependencies = [ -- "aws-lc-sys", -- "zeroize", --] -- --[[package]] --name = "aws-lc-sys" --version = "0.29.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079" --dependencies = [ -- "bindgen", -- "cc", -- "cmake", -- "dunce", -- "fs_extra", --] -- - [[package]] - name = "backtrace" - version = "0.3.75" -@@ -118,29 +86,6 @@ dependencies = [ - "windows-targets 0.52.6", - ] - --[[package]] --name = "bindgen" --version = "0.69.5" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" --dependencies = [ -- "bitflags", -- "cexpr", -- "clang-sys", -- "itertools", -- "lazy_static", -- "lazycell", -- "log", -- "prettyplease", -- "proc-macro2", -- "quote", -- "regex", -- "rustc-hash", -- "shlex", -- "syn", -- "which", --] -- - [[package]] - name = "bitflags" - version = "2.9.1" -@@ -168,8 +113,6 @@ version = "1.2.27" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc" - dependencies = [ -- "jobserver", -- "libc", - "shlex", - ] - -@@ -179,15 +122,6 @@ version = "1.1.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" - --[[package]] --name = "cexpr" --version = "0.6.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" --dependencies = [ -- "nom", --] -- - [[package]] - name = "cfg-if" - version = "1.0.1" -@@ -204,17 +138,6 @@ dependencies = [ - "inout", - ] - --[[package]] --name = "clang-sys" --version = "1.8.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" --dependencies = [ -- "glob", -- "libc", -- "libloading", --] -- - [[package]] - name = "clock-steering" - version = "0.2.1" -@@ -235,15 +158,6 @@ dependencies = [ - "digest", - ] - --[[package]] --name = "cmake" --version = "0.1.54" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0" --dependencies = [ -- "cc", --] -- - [[package]] - name = "combine" - version = "4.6.7" -@@ -319,40 +233,12 @@ dependencies = [ - "subtle", - ] - --[[package]] --name = "dunce" --version = "1.0.5" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" -- --[[package]] --name = "either" --version = "1.15.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" -- - [[package]] - name = "equivalent" - version = "1.0.2" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - --[[package]] --name = "errno" --version = "0.3.13" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" --dependencies = [ -- "libc", -- "windows-sys 0.60.2", --] -- --[[package]] --name = "fs_extra" --version = "1.3.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" -- - [[package]] - name = "generic-array" - version = "0.14.7" -@@ -371,19 +257,7 @@ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" - dependencies = [ - "cfg-if", - "libc", -- "wasi 0.11.1+wasi-snapshot-preview1", --] -- --[[package]] --name = "getrandom" --version = "0.3.3" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" --dependencies = [ -- "cfg-if", -- "libc", -- "r-efi", -- "wasi 0.14.2+wasi-0.2.4", -+ "wasi", - ] - - [[package]] -@@ -392,27 +266,12 @@ version = "0.31.1" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" - --[[package]] --name = "glob" --version = "0.3.2" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" -- - [[package]] - name = "hashbrown" - version = "0.15.4" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" - --[[package]] --name = "home" --version = "0.5.11" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" --dependencies = [ -- "windows-sys 0.59.0", --] -- - [[package]] - name = "indexmap" - version = "2.9.0" -@@ -432,15 +291,6 @@ dependencies = [ - "generic-array", - ] - --[[package]] --name = "itertools" --version = "0.12.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" --dependencies = [ -- "either", --] -- - [[package]] - name = "itoa" - version = "1.0.15" -@@ -469,50 +319,18 @@ version = "0.3.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" - --[[package]] --name = "jobserver" --version = "0.1.33" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" --dependencies = [ -- "getrandom 0.3.3", -- "libc", --] -- - [[package]] - name = "lazy_static" - version = "1.5.0" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - --[[package]] --name = "lazycell" --version = "1.3.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" -- - [[package]] - name = "libc" - version = "0.2.174" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" - --[[package]] --name = "libloading" --version = "0.8.8" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" --dependencies = [ -- "cfg-if", -- "windows-targets 0.53.2", --] -- --[[package]] --name = "linux-raw-sys" --version = "0.4.15" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" -- - [[package]] - name = "log" - version = "0.4.27" -@@ -535,12 +353,6 @@ version = "2.7.5" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" - --[[package]] --name = "minimal-lexical" --version = "0.2.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" -- - [[package]] - name = "miniz_oxide" - version = "0.8.9" -@@ -557,20 +369,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" - dependencies = [ - "libc", -- "wasi 0.11.1+wasi-snapshot-preview1", -+ "wasi", - "windows-sys 0.59.0", - ] - --[[package]] --name = "nom" --version = "7.1.3" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" --dependencies = [ -- "memchr", -- "minimal-lexical", --] -- - [[package]] - name = "ntp-proto" - version = "1.6.0" -@@ -670,16 +472,6 @@ dependencies = [ - "zerocopy", - ] - --[[package]] --name = "prettyplease" --version = "0.2.35" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a" --dependencies = [ -- "proc-macro2", -- "syn", --] -- - [[package]] - name = "proc-macro2" - version = "1.0.95" -@@ -698,12 +490,6 @@ dependencies = [ - "proc-macro2", - ] - --[[package]] --name = "r-efi" --version = "5.3.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" -- - [[package]] - name = "rand" - version = "0.8.5" -@@ -731,38 +517,9 @@ version = "0.6.4" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" - dependencies = [ -- "getrandom 0.2.16", --] -- --[[package]] --name = "regex" --version = "1.11.1" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" --dependencies = [ -- "aho-corasick", -- "memchr", -- "regex-automata", -- "regex-syntax", -+ "getrandom", - ] - --[[package]] --name = "regex-automata" --version = "0.4.9" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" --dependencies = [ -- "aho-corasick", -- "memchr", -- "regex-syntax", --] -- --[[package]] --name = "regex-syntax" --version = "0.8.5" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" -- - [[package]] - name = "ring" - version = "0.17.14" -@@ -771,7 +528,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" - dependencies = [ - "cc", - "cfg-if", -- "getrandom 0.2.16", -+ "getrandom", - "libc", - "untrusted", - "windows-sys 0.52.0", -@@ -783,34 +540,15 @@ version = "0.1.25" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" - --[[package]] --name = "rustc-hash" --version = "1.1.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" -- --[[package]] --name = "rustix" --version = "0.38.44" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" --dependencies = [ -- "bitflags", -- "errno", -- "libc", -- "linux-raw-sys", -- "windows-sys 0.59.0", --] -- - [[package]] - name = "rustls" - version = "0.23.28" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643" - dependencies = [ -- "aws-lc-rs", - "log", - "once_cell", -+ "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", -@@ -871,7 +609,6 @@ version = "0.103.3" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" - dependencies = [ -- "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted", -@@ -1203,15 +940,6 @@ version = "0.11.1+wasi-snapshot-preview1" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" - --[[package]] --name = "wasi" --version = "0.14.2+wasi-0.2.4" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" --dependencies = [ -- "wit-bindgen-rt", --] -- - [[package]] - name = "webpki-root-certs" - version = "0.26.11" -@@ -1230,18 +958,6 @@ dependencies = [ - "rustls-pki-types", - ] - --[[package]] --name = "which" --version = "4.4.2" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" --dependencies = [ -- "either", -- "home", -- "once_cell", -- "rustix", --] -- - [[package]] - name = "winapi" - version = "0.3.9" -@@ -1300,15 +1016,6 @@ dependencies = [ - "windows-targets 0.52.6", - ] - --[[package]] --name = "windows-sys" --version = "0.60.2" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" --dependencies = [ -- "windows-targets 0.53.2", --] -- - [[package]] - name = "windows-targets" - version = "0.42.2" -@@ -1333,29 +1040,13 @@ dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", -- "windows_i686_gnullvm 0.52.6", -+ "windows_i686_gnullvm", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", - ] - --[[package]] --name = "windows-targets" --version = "0.53.2" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" --dependencies = [ -- "windows_aarch64_gnullvm 0.53.0", -- "windows_aarch64_msvc 0.53.0", -- "windows_i686_gnu 0.53.0", -- "windows_i686_gnullvm 0.53.0", -- "windows_i686_msvc 0.53.0", -- "windows_x86_64_gnu 0.53.0", -- "windows_x86_64_gnullvm 0.53.0", -- "windows_x86_64_msvc 0.53.0", --] -- - [[package]] - name = "windows_aarch64_gnullvm" - version = "0.42.2" -@@ -1368,12 +1059,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - --[[package]] --name = "windows_aarch64_gnullvm" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" -- - [[package]] - name = "windows_aarch64_msvc" - version = "0.42.2" -@@ -1386,12 +1071,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - --[[package]] --name = "windows_aarch64_msvc" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" -- - [[package]] - name = "windows_i686_gnu" - version = "0.42.2" -@@ -1404,24 +1083,12 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - --[[package]] --name = "windows_i686_gnu" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" -- - [[package]] - name = "windows_i686_gnullvm" - version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - --[[package]] --name = "windows_i686_gnullvm" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" -- - [[package]] - name = "windows_i686_msvc" - version = "0.42.2" -@@ -1434,12 +1101,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - --[[package]] --name = "windows_i686_msvc" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" -- - [[package]] - name = "windows_x86_64_gnu" - version = "0.42.2" -@@ -1452,12 +1113,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - --[[package]] --name = "windows_x86_64_gnu" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" -- - [[package]] - name = "windows_x86_64_gnullvm" - version = "0.42.2" -@@ -1470,12 +1125,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - --[[package]] --name = "windows_x86_64_gnullvm" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" -- - [[package]] - name = "windows_x86_64_msvc" - version = "0.42.2" -@@ -1488,12 +1137,6 @@ version = "0.52.6" - source = "registry+https://github.com/rust-lang/crates.io-index" - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - --[[package]] --name = "windows_x86_64_msvc" --version = "0.53.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" -- - [[package]] - name = "winnow" - version = "0.7.11" -@@ -1503,15 +1146,6 @@ dependencies = [ - "memchr", - ] - --[[package]] --name = "wit-bindgen-rt" --version = "0.39.0" --source = "registry+https://github.com/rust-lang/crates.io-index" --checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" --dependencies = [ -- "bitflags", --] -- - [[package]] - name = "zerocopy" - version = "0.8.26" diff --git a/Cargo.toml b/Cargo.toml -index eeec0ea..a649b38 100644 +index e36919e..d5e07b8 100644 --- a/Cargo.toml +++ b/Cargo.toml -@@ -47,9 +47,9 @@ clock-steering = "0.2.1" +@@ -45,9 +45,9 @@ clock-steering = "0.2.1" pps-time = "0.2.3" # TLS --rustls23 = { package = "rustls", version = "0.23.16", features = ["logging", "std", "tls12"] } -+rustls23 = { package = "rustls", version = "0.23.16", default-features = false, features = ["ring", "logging", "std", "tls12"] } +-rustls23 = { package = "rustls", version = "0.23.16", features = ["logging", "std"] } ++rustls23 = { package = "rustls", version = "0.23.16", default-features = false, features = ["ring", "logging", "std"] } rustls-platform-verifier = "0.5.0" --tokio-rustls = { version = "0.26.0", features = ["logging", "tls12"] } # testing only -+tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring", "logging", "tls12"] } # testing only +-tokio-rustls = { version = "0.26.0", features = ["logging"] } ++tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring", "logging"] } # crypto aead = "0.5.0" diff --git a/srcpkgs/ntpd-rs/template b/srcpkgs/ntpd-rs/template index 2e404fd6b464ea..ea68452b0fe7d6 100644 --- a/srcpkgs/ntpd-rs/template +++ b/srcpkgs/ntpd-rs/template @@ -1,6 +1,6 @@ # Template file for 'ntpd-rs' pkgname=ntpd-rs -version=1.6.2 +version=1.7.0 revision=1 build_style=cargo make_check_args="-- @@ -10,12 +10,12 @@ make_check_args="-- " make_install_args="--path ntpd" short_desc="Full-featured implementation of the Network Time Protocol" -maintainer="tranzystorekk " +maintainer="Orphaned " license="Apache-2.0 OR MIT" homepage="https://github.com/pendulum-project/ntpd-rs" changelog="https://raw.githubusercontent.com/pendulum-project/ntpd-rs/main/CHANGELOG.md" distfiles="https://github.com/pendulum-project/ntpd-rs/archive/refs/tags/v${version}.tar.gz" -checksum=cf88a2f65dcbff37d7f713713aff10eb7fe9c9d6d4d7ab694f972990b121821b +checksum=f1585c2c0f052423cb5187ceed4f6a6d2b43a177b4de1d1f8bcc443d5386ca55 system_accounts="_ntpd_rs" conf_files="/etc/ntpd-rs/ntp.toml" @@ -24,6 +24,11 @@ alternatives=" ntpd:ntpd:/usr/bin/ntp-daemon ntpd:ntpd:/etc/sv/ntpd-rs" +post_patch() { + # apply patched Cargo.toml changes to lockfile + cargo metadata > /dev/null +} + post_install() { vinstall ntp.toml 644 etc/ntpd-rs vlicense LICENSE-MIT From 47080dca53a394f9eb4fe7a8c7f2c25ccbbe381c Mon Sep 17 00:00:00 2001 From: Adam Liliemark Date: Tue, 13 Jan 2026 21:44:53 +0100 Subject: [PATCH 023/295] elixir: update to 1.19.5 --- srcpkgs/elixir/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/elixir/template b/srcpkgs/elixir/template index 6e8e0dcf26e327..4ca6866e00a1d5 100644 --- a/srcpkgs/elixir/template +++ b/srcpkgs/elixir/template @@ -1,6 +1,6 @@ # Template file for 'elixir' pkgname=elixir -version=1.19.4 +version=1.19.5 revision=1 build_style=gnu-makefile make_check_target="test_erlang test_elixir" @@ -13,7 +13,7 @@ license="Apache-2.0" homepage="https://elixir-lang.org/" changelog="https://raw.githubusercontent.com/elixir-lang/elixir/v${version%.*}/CHANGELOG.md" distfiles="https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz" -checksum=a2df9d5411fc53d97ec17c069765c8fb781f8dc36c4e06ec1cd4b189340d364b +checksum=10750b8bd74b10ac1e25afab6df03e3d86999890fa359b5f02aa81de18a78e36 do_check() { ERL_EPMD_PORT=5369 make ${make_check_target} From 7d1287c3011204e081259252d64323806e9a5bb2 Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Fri, 30 Jan 2026 19:58:56 +0100 Subject: [PATCH 024/295] lxqt-config: update to 2.3.1. --- srcpkgs/lxqt-config/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/lxqt-config/template b/srcpkgs/lxqt-config/template index 1b49f519d4d5a0..d43227de35f6ab 100644 --- a/srcpkgs/lxqt-config/template +++ b/srcpkgs/lxqt-config/template @@ -1,6 +1,6 @@ # Template file for 'lxqt-config' pkgname=lxqt-config -version=2.3.0 +version=2.3.1 revision=1 build_style=cmake configure_args="-DCMAKE_CXX_STANDARD=17" @@ -14,4 +14,4 @@ maintainer="Helmut Pozimski " license="LGPL-2.1-or-later" homepage="https://lxqt-project.org" distfiles="https://github.com/lxqt/lxqt-config/archive/${version}.tar.gz" -checksum=7c8f4399eb902b7dd09ccfba6e05ffdea7512839b193371a22b1c73732b5b13b +checksum=2b27590967d087a95c8c21ccdb04844e9797eae5c06a552aabe8d4dc7e8ce13a From d01ce7365b2a7d8ec741b4b7ea62d59b12045838 Mon Sep 17 00:00:00 2001 From: voidbert Date: Mon, 19 Jan 2026 22:14:11 +0000 Subject: [PATCH 025/295] swayimg: update to 4.7. --- srcpkgs/swayimg/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/swayimg/template b/srcpkgs/swayimg/template index e2aaf0dba2b272..a02ff0f8b5e597 100644 --- a/srcpkgs/swayimg/template +++ b/srcpkgs/swayimg/template @@ -1,6 +1,6 @@ # Template file for 'swayimg' pkgname=swayimg -version=4.6 +version=4.7 revision=1 build_style=meson configure_args="-D version=${version}" @@ -14,7 +14,7 @@ maintainer="voidbert " license="MIT" homepage="https://github.com/artemsen/swayimg" distfiles="https://github.com/artemsen/swayimg/archive/v${version}.tar.gz" -checksum=030ac867501f4d10a2d85bb47d65d51f31c75282f3805079e0aaf9ac05bfb1df +checksum=342952aa30f62f163dfcb36448d7f2a860abf972bb24690d2e49b28b6f2ba7cc post_install() { vcompletion extra/bash.completion bash From bd4f7e1959db767203defc5082b66ecd74f9daf4 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 30 Jan 2026 18:06:00 +0100 Subject: [PATCH 026/295] typos: update to 1.42.3. --- srcpkgs/typos/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/typos/template b/srcpkgs/typos/template index 7347fca645cc51..3306f773b19d64 100644 --- a/srcpkgs/typos/template +++ b/srcpkgs/typos/template @@ -1,6 +1,6 @@ # Template file for 'typos' pkgname=typos -version=1.40.0 +version=1.42.3 revision=1 build_style=cargo make_install_args="--path crates/typos-cli" @@ -10,7 +10,7 @@ license="Apache-2.0 OR MIT" homepage="https://github.com/crate-ci/typos" changelog="https://raw.githubusercontent.com/crate-ci/typos/refs/heads/master/CHANGELOG.md" distfiles="https://github.com/crate-ci/typos/archive/refs/tags/v${version}.tar.gz" -checksum=f8317b77e124f0201a47289a1d3e7a196e93cdbec3df9a0fc82d10c934c0ca85 +checksum=d1b5fcd3ddc49c279c1813086e80dabb6a524d9fb67befb4e3619d236ada5781 post_install() { vlicense LICENSE-MIT From 9575281e0322932c35c67d7da9269db7309b562b Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 30 Jan 2026 18:11:43 +0100 Subject: [PATCH 027/295] yamlfmt: update to 0.21.0. --- srcpkgs/yamlfmt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/yamlfmt/template b/srcpkgs/yamlfmt/template index 072c3bab1e75d6..32340e7dbb6582 100644 --- a/srcpkgs/yamlfmt/template +++ b/srcpkgs/yamlfmt/template @@ -1,6 +1,6 @@ # Template file for 'yamlfmt' pkgname=yamlfmt -version=0.20.0 +version=0.21.0 revision=1 build_style=go go_import_path="github.com/google/yamlfmt" @@ -11,7 +11,7 @@ maintainer="Bnyro " license="Apache-2.0" homepage="https://github.com/google/yamlfmt" distfiles="https://github.com/google/yamlfmt/archive/refs/tags/v${version}.tar.gz" -checksum=de6bc4373ba46c520d936dd4b60395868ec17aba338b9fd849594c1f41b6c057 +checksum=9ec915d70e527a94171eaaf6b785d1423222b5b82e7633f80dcc6b66e6a655aa do_check() { make test_v From 79b4c8c39780e61c4035305d90a6824b197aec96 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 30 Jan 2026 18:10:52 +0100 Subject: [PATCH 028/295] yazi: update to 26.1.22. --- srcpkgs/yazi/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/yazi/template b/srcpkgs/yazi/template index 915808f4c6fa1c..646b3d0a427949 100644 --- a/srcpkgs/yazi/template +++ b/srcpkgs/yazi/template @@ -1,6 +1,6 @@ # Template file for 'yazi' pkgname=yazi -version=26.1.4 +version=26.1.22 revision=1 build_style=cargo hostmakedepends="pkg-config" @@ -12,7 +12,7 @@ license="MIT" homepage="https://yazi-rs.github.io" changelog="https://github.com/sxyazi/yazi/releases" distfiles="https://github.com/sxyazi/yazi/archive/refs/tags/v${version}.tar.gz" -checksum=17839410a2865dc6ddb40da4b034dbf2729602fc325d07ad4df7dbc354c94c9e +checksum=83b8a1bf166bfcb54b44b966fa3f34afa7c55584bf81d29275a1cdd99d1c9c4c export VERGEN_GIT_SHA="${version}_${revision}" # enable the generation of shell auto completions From 4036ac4dfe17ee3f8ea7ea8aeab0a7f0528c4ee5 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Sat, 31 Jan 2026 03:32:48 +0100 Subject: [PATCH 029/295] linux6.18: update to 6.18.8. --- srcpkgs/linux6.18/files/arm64-dotconfig | 3 ++- srcpkgs/linux6.18/files/i386-dotconfig | 3 ++- srcpkgs/linux6.18/files/x86_64-dotconfig | 12 +++++++++--- srcpkgs/linux6.18/template | 4 ++-- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/srcpkgs/linux6.18/files/arm64-dotconfig b/srcpkgs/linux6.18/files/arm64-dotconfig index 77778fa1d9d71e..e8a39bba7fa5f7 100644 --- a/srcpkgs/linux6.18/files/arm64-dotconfig +++ b/srcpkgs/linux6.18/files/arm64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 6.18.7 Kernel Configuration +# Linux/arm64 6.18.8 Kernel Configuration # CONFIG_CC_VERSION_TEXT="aarch64-linux-musl-gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y @@ -4467,6 +4467,7 @@ CONFIG_RTL8821AE=m CONFIG_RTL8192DU=m CONFIG_RTLWIFI=m CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m CONFIG_RTLWIFI_DEBUG=y CONFIG_RTL8192C_COMMON=m CONFIG_RTL8192D_COMMON=m diff --git a/srcpkgs/linux6.18/files/i386-dotconfig b/srcpkgs/linux6.18/files/i386-dotconfig index 06e4aee8c933cd..776af4117144d9 100644 --- a/srcpkgs/linux6.18/files/i386-dotconfig +++ b/srcpkgs/linux6.18/files/i386-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/i386 6.18.7 Kernel Configuration +# Linux/i386 6.18.8 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y @@ -3872,6 +3872,7 @@ CONFIG_RTL8821AE=m CONFIG_RTL8192DU=m CONFIG_RTLWIFI=m CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m CONFIG_RTLWIFI_DEBUG=y CONFIG_RTL8192C_COMMON=m CONFIG_RTL8192D_COMMON=m diff --git a/srcpkgs/linux6.18/files/x86_64-dotconfig b/srcpkgs/linux6.18/files/x86_64-dotconfig index a6e3dcdc33ba20..42feee0a661c26 100644 --- a/srcpkgs/linux6.18/files/x86_64-dotconfig +++ b/srcpkgs/linux6.18/files/x86_64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86_64 6.18.7 Kernel Configuration +# Linux/x86_64 6.18.8 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y @@ -11,8 +11,8 @@ CONFIG_AS_VERSION=24400 CONFIG_LD_IS_BFD=y CONFIG_LD_VERSION=24400 CONFIG_LLD_VERSION=0 -CONFIG_RUSTC_VERSION=0 -CONFIG_RUSTC_LLVM_VERSION=0 +CONFIG_RUSTC_VERSION=109300 +CONFIG_RUSTC_LLVM_VERSION=210107 CONFIG_CC_CAN_LINK=y CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y @@ -21,6 +21,11 @@ CONFIG_CC_HAS_ASM_INLINE=y CONFIG_CC_HAS_ASSUME=y CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY=y +CONFIG_RUSTC_HAS_COERCE_POINTEE=y +CONFIG_RUSTC_HAS_SPAN_FILE=y +CONFIG_RUSTC_HAS_UNNECESSARY_TRANSMUTES=y +CONFIG_RUSTC_HAS_FILE_WITH_NUL=y +CONFIG_RUSTC_HAS_FILE_AS_C_STR=y CONFIG_PAHOLE_VERSION=131 CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_TABLE_SORT=y @@ -4118,6 +4123,7 @@ CONFIG_RTL8821AE=m CONFIG_RTL8192DU=m CONFIG_RTLWIFI=m CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m CONFIG_RTLWIFI_DEBUG=y CONFIG_RTL8192C_COMMON=m CONFIG_RTL8192D_COMMON=m diff --git a/srcpkgs/linux6.18/template b/srcpkgs/linux6.18/template index adfdecda2c4bf3..f47a2eebe5b8dc 100644 --- a/srcpkgs/linux6.18/template +++ b/srcpkgs/linux6.18/template @@ -1,6 +1,6 @@ # Template file for 'linux6.18' pkgname=linux6.18 -version=6.18.7 +version=6.18.8 revision=1 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Duncaen " @@ -18,7 +18,7 @@ rc*) distfiles="https://git.kernel.org/torvalds/t/linux-${version%.*}-${version# esac checksum="9106a4605da9e31ff17659d958782b815f9591ab308d03b0ee21aad6c7dced4b - 1a89d0952d52f5a0114f9f3058e6c07ab2789941dc05d67befa277c8a9f265c4" + 9fef335718b61b79b3cf025089a85c534d13592cbf087a50fe6d76105ed4927f" python_version=3 From 0212c0a55a8e08b5ed24bb60bea6677789348e95 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Sat, 31 Jan 2026 03:32:58 +0100 Subject: [PATCH 030/295] linux6.12: update to 6.12.68. --- srcpkgs/linux6.12/files/arm64-dotconfig | 2 +- srcpkgs/linux6.12/files/i386-dotconfig | 2 +- srcpkgs/linux6.12/files/x86_64-dotconfig | 2 +- srcpkgs/linux6.12/template | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/linux6.12/files/arm64-dotconfig b/srcpkgs/linux6.12/files/arm64-dotconfig index 87761771fe1a5d..106334ee8ac19b 100644 --- a/srcpkgs/linux6.12/files/arm64-dotconfig +++ b/srcpkgs/linux6.12/files/arm64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 6.12.67 Kernel Configuration +# Linux/arm64 6.12.68 Kernel Configuration # CONFIG_CC_VERSION_TEXT="aarch64-linux-musl-gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.12/files/i386-dotconfig b/srcpkgs/linux6.12/files/i386-dotconfig index dc063490640896..bc0daa617149a9 100644 --- a/srcpkgs/linux6.12/files/i386-dotconfig +++ b/srcpkgs/linux6.12/files/i386-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/i386 6.12.67 Kernel Configuration +# Linux/i386 6.12.68 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.12/files/x86_64-dotconfig b/srcpkgs/linux6.12/files/x86_64-dotconfig index 9d5ce4f4080e13..9500c0852e8db5 100644 --- a/srcpkgs/linux6.12/files/x86_64-dotconfig +++ b/srcpkgs/linux6.12/files/x86_64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86_64 6.12.67 Kernel Configuration +# Linux/x86_64 6.12.68 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.12/template b/srcpkgs/linux6.12/template index 2ec1f820f30e10..a465d4a8d0395c 100644 --- a/srcpkgs/linux6.12/template +++ b/srcpkgs/linux6.12/template @@ -1,6 +1,6 @@ # Template file for 'linux6.12' pkgname=linux6.12 -version=6.12.67 +version=6.12.68 revision=1 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Duncaen " @@ -14,7 +14,7 @@ if [ "${version##*.}" != 0 ]; then fi checksum="b1a2562be56e42afb3f8489d4c2a7ac472ac23098f1ef1c1e40da601f54625eb - 53407c2e4a7e91e4bef035c868258ba8b2e76a1af6137caaaa0af73e99b7a202" + 8b511b34ada9b010ea0c37f72684514dfa294946ba637a73043142e5269db797" python_version=3 # XXX Restrict archs until a proper -dotconfig is available in FILESDIR. From cc1be44344aca9db9651d3307795c1cee2e5b1dc Mon Sep 17 00:00:00 2001 From: Duncaen Date: Sat, 31 Jan 2026 03:35:22 +0100 Subject: [PATCH 031/295] linux6.6: update to 6.6.122. --- srcpkgs/linux6.6/files/arm64-dotconfig | 2 +- srcpkgs/linux6.6/files/i386-dotconfig | 2 +- srcpkgs/linux6.6/files/x86_64-dotconfig | 2 +- srcpkgs/linux6.6/template | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/linux6.6/files/arm64-dotconfig b/srcpkgs/linux6.6/files/arm64-dotconfig index c8e55c18316c49..76f2dbf3edb089 100644 --- a/srcpkgs/linux6.6/files/arm64-dotconfig +++ b/srcpkgs/linux6.6/files/arm64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 6.6.121 Kernel Configuration +# Linux/arm64 6.6.122 Kernel Configuration # CONFIG_CC_VERSION_TEXT="aarch64-linux-musl-gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.6/files/i386-dotconfig b/srcpkgs/linux6.6/files/i386-dotconfig index 6512815a978971..da74e1f69f9ecd 100644 --- a/srcpkgs/linux6.6/files/i386-dotconfig +++ b/srcpkgs/linux6.6/files/i386-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/i386 6.6.121 Kernel Configuration +# Linux/i386 6.6.122 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.6/files/x86_64-dotconfig b/srcpkgs/linux6.6/files/x86_64-dotconfig index 65c752a1eae277..eb4de9c36c4eb4 100644 --- a/srcpkgs/linux6.6/files/x86_64-dotconfig +++ b/srcpkgs/linux6.6/files/x86_64-dotconfig @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86_64 6.6.121 Kernel Configuration +# Linux/x86_64 6.6.122 Kernel Configuration # CONFIG_CC_VERSION_TEXT="gcc (GCC) 14.2.1 20250405" CONFIG_CC_IS_GCC=y diff --git a/srcpkgs/linux6.6/template b/srcpkgs/linux6.6/template index 36ee2aaf0ef27d..097e71569145a2 100644 --- a/srcpkgs/linux6.6/template +++ b/srcpkgs/linux6.6/template @@ -1,6 +1,6 @@ # Template file for 'linux6.6' pkgname=linux6.6 -version=6.6.121 +version=6.6.122 revision=1 short_desc="Linux kernel and modules (${version%.*} series)" maintainer="Duncaen " @@ -14,7 +14,7 @@ if [ "${version##*.}" != 0 ]; then fi checksum="d926a06c63dd8ac7df3f86ee1ffc2ce2a3b81a2d168484e76b5b389aba8e56d0 - bdd82a425061cb89e8d7ca270feec184b515f56c8d619e4f6e612c5ddf001187" + 2fd71bbddb9293b0fa6ddc38ccb1c68c5dcd3b49c8b9d7047d66cde36e985611" python_version=3 # XXX Restrict archs until a proper -dotconfig is available in FILESDIR. From 465e1538abb6af9ad6a9675db73db1f36616178b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Fri, 30 Jan 2026 20:25:59 -0800 Subject: [PATCH 032/295] libgme: fix symbol exports patch --- srcpkgs/libgme/patches/header.patch | 2 +- srcpkgs/libgme/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libgme/patches/header.patch b/srcpkgs/libgme/patches/header.patch index be687786429b2e..d19a0bdc1bc1ce 100644 --- a/srcpkgs/libgme/patches/header.patch +++ b/srcpkgs/libgme/patches/header.patch @@ -4,7 +4,7 @@ #ifndef GME_H #define GME_H -+#ifdef GME_INTERAL_BUILD ++#ifdef GME_INTERNAL_BUILD #include "blargg_source.h" +#else +#define BLARGG_EXPORT /* blank */ diff --git a/srcpkgs/libgme/template b/srcpkgs/libgme/template index 08ee4879ba6541..a6e600ffaf7adf 100644 --- a/srcpkgs/libgme/template +++ b/srcpkgs/libgme/template @@ -1,7 +1,7 @@ # Template file for 'libgme' pkgname=libgme version=0.6.3 -revision=2 +revision=3 build_style=cmake configure_args="-DENABLE_UBSAN=OFF" makedepends="zlib-devel SDL2-devel" From 93531ece29ecc5023f97349c7367eef7ec384ee2 Mon Sep 17 00:00:00 2001 From: cherrybtw <86654605+cherrybtw@users.noreply.github.com> Date: Sat, 31 Jan 2026 01:43:28 +0100 Subject: [PATCH 033/295] spotify: update template to 1.2.79.427.g80eb4a07 Updated version and checksum to match new Spotify 1.2.79.427.g80eb4a07 release. Checksum updated due to Spotify reuploading the binary. --- srcpkgs/spotify/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/spotify/template b/srcpkgs/spotify/template index 34f612af8d08be..c6cc28d1837217 100644 --- a/srcpkgs/spotify/template +++ b/srcpkgs/spotify/template @@ -2,7 +2,7 @@ pkgname=spotify version=1.2.79 revision=1 -_subver=425.g1d0fcf61 +_subver=427.g80eb4a07 archs="x86_64" create_wrksrc=yes hostmakedepends="libcurl" @@ -12,7 +12,7 @@ maintainer="Stefan Mühlinghaus " license="custom:Proprietary" homepage="https://www.spotify.com" distfiles="http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}.${_subver}_amd64.deb" -checksum=9843c7aeddffbd02ea7b0212231bda1f85904995e57bed612d3a38de6e13efe8 +checksum=456d2699a1affd8fa22e5a46e2cf7560b0d91b1d5cd29c74b70682fbfb064b0a repository=nonfree restricted=yes nostrip=yes From d7c967a2f9cd2245faac8b5f279bea9656a0e9a6 Mon Sep 17 00:00:00 2001 From: Yushi Date: Sat, 17 Jan 2026 01:39:12 +0800 Subject: [PATCH 034/295] sanoid: update to 2.3.0. --- srcpkgs/sanoid/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sanoid/template b/srcpkgs/sanoid/template index 415f33a8c75600..36d2acc64a117c 100644 --- a/srcpkgs/sanoid/template +++ b/srcpkgs/sanoid/template @@ -1,6 +1,6 @@ # Template file for 'sanoid' pkgname=sanoid -version=2.2.0 +version=2.3.0 revision=1 depends="perl perl-Config-IniFiles perl-Capture-Tiny" short_desc="Policy-driven snapshot management tool for ZFS filesystems" @@ -9,7 +9,7 @@ license="GPL-3.0-or-later" homepage="http://www.openoid.net/products/" distfiles="https://github.com/jimsalterjrs/sanoid/archive/v$version.tar.gz" conf_files="/etc/sanoid/sanoid.conf /etc/sanoid/sanoid.defaults.conf" -checksum=a997552e3c5f9fc8407fd20fa1adc99fc37a1f61547f738114c96a1ea1658fe2 +checksum=1d8735a271a34ec87ea46313a66f6f20bd38b583886924574d3c1f72ea173620 do_install() { vdoc README.md From d6856f870f0fb16b95eaeaef14e5d056476234fd Mon Sep 17 00:00:00 2001 From: Mateusz Sylwestrzak Date: Sun, 25 Jan 2026 19:51:03 +0100 Subject: [PATCH 035/295] python3-pynitrokey: update to 0.11.3 --- srcpkgs/python3-pynitrokey/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pynitrokey/template b/srcpkgs/python3-pynitrokey/template index 752da07bbfe512..61c46ce5ff29ad 100644 --- a/srcpkgs/python3-pynitrokey/template +++ b/srcpkgs/python3-pynitrokey/template @@ -1,6 +1,6 @@ # Template file for 'python3-pynitrokey' pkgname=python3-pynitrokey -version=0.11.2 +version=0.11.3 revision=1 build_style=python3-pep517 make_build_args="--skip-dependency-check" @@ -15,10 +15,10 @@ depends="python3-cffi python3-click python3-tqdm python3-tlv8 python3-chardet" short_desc="CLI for the Nitrokey FIDO2, Nitrokey Start, Nitrokey 3 and NetHSM" maintainer="Mateusz Sylwestrzak " -license="LGPL-3.0-only, GPL-3.0-or-later, Apache-2.0, MIT" +license="LGPL-3.0-only OR GPL-3.0-or-later OR Apache-2.0 OR MIT" homepage="https://github.com/Nitrokey/pynitrokey" distfiles="https://github.com/Nitrokey/pynitrokey/archive/refs/tags/v${version}.tar.gz" -checksum=c9c0ab311d48acc88dad69d0b691b57a32fc1bf4dd4e1dbab31e518e0ce61ce2 +checksum=db593bdc86568e4d956231d0441beafa3df4cbc08298ae819bf800b831d83063 post_install() { vlicense LICENSES/MIT.txt From d4a6653a1c7d494aff88dd792c10d67f19dac2b1 Mon Sep 17 00:00:00 2001 From: Hendrik Boll Date: Fri, 30 Jan 2026 16:21:22 +0100 Subject: [PATCH 036/295] ty: update to 0.0.14. --- srcpkgs/ty/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ty/template b/srcpkgs/ty/template index 3d8fc6f2fcb5b4..8ad89afc7e2f84 100644 --- a/srcpkgs/ty/template +++ b/srcpkgs/ty/template @@ -1,6 +1,6 @@ # Template file for 'ty' pkgname=ty -version=0.0.13 +version=0.0.14 revision=1 build_style=python3-pep517 build_helper="rust qemu" @@ -12,7 +12,7 @@ license="MIT" homepage="https://docs.astral.sh/ty/" changelog="https://raw.githubusercontent.com/astral-sh/ty/main/CHANGELOG.md" distfiles="https://github.com/astral-sh/ty/releases/download/${version}/source.tar.gz" -checksum=2b16d7db24c1b5a7a619f75ff6bd8c91c1ee3571a4e51b8e2e9b2f1370c106f2 +checksum=1a28a8931f511c111f4284ca343e19abb3fc660be8cf796d9ca299d8b706a423 post_install() { vlicense LICENSE From 8d894b93030a740fbc44b0623a461dfb207eb801 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Sat, 31 Jan 2026 11:18:00 +0100 Subject: [PATCH 037/295] lemoa: remove package --- srcpkgs/lemoa/template | 22 ---------------------- srcpkgs/removed-packages/template | 3 ++- 2 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 srcpkgs/lemoa/template diff --git a/srcpkgs/lemoa/template b/srcpkgs/lemoa/template deleted file mode 100644 index ff258cc8c6ca1c..00000000000000 --- a/srcpkgs/lemoa/template +++ /dev/null @@ -1,22 +0,0 @@ -# Template file for 'lemoa' -pkgname=lemoa -version=0.5.1 -revision=1 -build_style=meson -build_helper=rust -hostmakedepends="pkg-config cargo desktop-file-utils glib-devel gtk-update-icon-cache" -makedepends="rust-std gtk4-devel libglib-devel libadwaita-devel" -short_desc="Gtk client for Lemmy" -maintainer="Bnyro " -license="GPL-3.0-or-later" -homepage="https://github.com/lemmygtk/lemoa" -changelog="https://github.com/lemmygtk/lemoa/releases" -distfiles="https://github.com/lemmygtk/lemoa/releases/download/v${version}/lemoa-${version}.tar.xz" -checksum=8943d0f181104c3d2e0c3e81238422462efa94d8757f819d1ad757378f6ee15f - -post_patch() { - if [ "$CROSS_BUILD" ]; then - vsed -i src/meson.build \ - -e "s%rust_target /%'${RUST_TARGET}' / rust_target /%" - fi -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 4d996d5ac0f4b2..4ff41a39c18780 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -1,7 +1,7 @@ # Template file for 'removed-packages' pkgname=removed-packages version=0.1.20260130 -revision=1 +revision=2 metapackage=yes short_desc="Uninstalls packages removed from repository" maintainer="Piotr Wójcik " @@ -390,6 +390,7 @@ replaces=" ladish<=1_11 laditools<=1.1.0_3 leatherman<=1.12.4_8 + lemoa<=0.5.1_1 libArcus-devel<=4.13.1_8 libArcus-python3<=4.13.1_8 libArcus<=4.13.1_8 From a1c3e36a870e1a63510edcebd71b67c3f0e33ca6 Mon Sep 17 00:00:00 2001 From: al20ov Date: Fri, 23 Jan 2026 01:16:59 +0100 Subject: [PATCH 038/295] qmk: update to 1.2.0 --- srcpkgs/qmk/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template index 63e952d417ee97..b20e4a240ca91a 100644 --- a/srcpkgs/qmk/template +++ b/srcpkgs/qmk/template @@ -1,7 +1,7 @@ # Template file for 'qmk' pkgname=qmk -version=1.1.6 -revision=2 +version=1.2.0 +revision=1 build_style=python3-pep517 hostmakedepends="python3-wheel" # This includes the requirements from requirements.txt in the qmk_firmware @@ -15,7 +15,7 @@ maintainer="Orphaned " license="MIT" homepage="https://github.com/qmk/qmk_cli" distfiles="${PYPI_SITE}/q/qmk/qmk-${version}.tar.gz" -checksum=dc436cdbabf2f8cec6dbad453de3832be01bac8e7e9c19075c29866ee22a8b50 +checksum=164bd16c4c401b2b765ee4f017bcfa8141942ddf362961c4cba1975d8cb28a48 post_install() { vlicense LICENSE From 4f37e94ba7d56af56e9d1b90afd068188f44a799 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Sat, 31 Jan 2026 12:50:51 +0100 Subject: [PATCH 039/295] zoxide: update to 0.9.9 --- srcpkgs/zoxide/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/zoxide/template b/srcpkgs/zoxide/template index a327ee090ba2ac..3f8724e20c89d2 100644 --- a/srcpkgs/zoxide/template +++ b/srcpkgs/zoxide/template @@ -1,6 +1,6 @@ # Template file for 'zoxide' pkgname=zoxide -version=0.9.8 +version=0.9.9 revision=1 build_style=cargo short_desc="Faster way to navigate your filesystem" @@ -9,7 +9,7 @@ license="MIT" homepage="https://github.com/ajeetdsouza/zoxide" changelog="https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/CHANGELOG.md" distfiles="https://github.com/ajeetdsouza/zoxide/archive/refs/tags/v${version}.tar.gz" -checksum=1b276edbf328aafc86afe1ebce41f45ccba3a3125412e89c8c5d8e825b0c7407 +checksum=eddc76e94db58567503a3893ecac77c572f427f3a4eabdfc762f6773abf12c63 post_install() { vlicense LICENSE From edaabd1e68b41b27135c6cbbef2384d65d8576b5 Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 30 Jan 2026 18:48:56 -0500 Subject: [PATCH 040/295] nodejs: update to 24.13.0 --- srcpkgs/nodejs/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template index 7af6d8632313af..d87c13c84db7ae 100644 --- a/srcpkgs/nodejs/template +++ b/srcpkgs/nodejs/template @@ -1,6 +1,6 @@ # Template file for 'nodejs' pkgname=nodejs -version=24.12.0 +version=24.13.0 revision=1 build_style=configure configure_args=" @@ -43,7 +43,7 @@ license="MIT" homepage="https://nodejs.org/" changelog="https://raw.githubusercontent.com/nodejs/node/main/doc/changelogs/CHANGELOG_V${version%%.*}.md" distfiles="https://nodejs.org/dist/v${version}/node-v${version}.tar.xz" -checksum=6d3e891a016b90f6c6a19ea5cbc9c90c57eef9198670ba93f04fa82af02574ae +checksum=320fe909cbb347dcf516201e4964ef177b8138df9a7f810d0d54950481b3158b python_version=3 build_options="ssl libuv icu nghttp2 cares brotli" From bac5599d877a29b4fa478aaf210655f38ba8a04c Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 30 Jan 2026 18:49:17 -0500 Subject: [PATCH 041/295] Signal-Desktop: update to 7.87.0 --- srcpkgs/Signal-Desktop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/Signal-Desktop/template b/srcpkgs/Signal-Desktop/template index cf0f236c0c5b33..13bdac95a7380b 100644 --- a/srcpkgs/Signal-Desktop/template +++ b/srcpkgs/Signal-Desktop/template @@ -1,6 +1,6 @@ # Template file for 'Signal-Desktop' pkgname=Signal-Desktop -version=7.85.0 +version=7.87.0 revision=1 # *-musl could potentially work based on the Alpine port: # https://git.alpinelinux.org/aports/tree/testing/signal-desktop @@ -13,7 +13,7 @@ maintainer="dkwo " license="AGPL-3.0-only" homepage="https://github.com/signalapp/Signal-Desktop" distfiles="https://github.com/signalapp/Signal-Desktop/archive/v${version}.tar.gz" -checksum=6a856e38ede48a6279c2d26a4b73ed2c779e47f8c608a354e5df02471e6cb850 +checksum=42457dd05857090cde4c3db0ac898aab0c0b56997d19a41baf7e2c0ac5b9adbc nostrip_files="signal-desktop" nocross="gyp -> aarch64-linux-gnu-gcc: error: unrecognized command-line option '-m64'" From 7bdb82fa9e940bb3b107a65841e5d21e5e7a25d4 Mon Sep 17 00:00:00 2001 From: dkwo Date: Fri, 30 Jan 2026 10:17:34 -0500 Subject: [PATCH 042/295] biber: update to 2.21. --- srcpkgs/biber/template | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template index ebfa40ddc09586..40d3bf2b7f5bc8 100644 --- a/srcpkgs/biber/template +++ b/srcpkgs/biber/template @@ -1,6 +1,6 @@ # Template file for 'biber' pkgname=biber -version=2.20 +version=2.21 revision=1 build_style=perl-ModuleBuild hostmakedepends="perl-Module-Build" @@ -53,4 +53,11 @@ license="Artistic-2.0" homepage="http://biblatex-biber.sourceforge.net" changelog="https://raw.githubusercontent.com/plk/biber/dev/Changes" distfiles="https://github.com/plk/biber/archive/refs/tags/v${version}.tar.gz" -checksum=19f0312e59bf2f5711b8d69b3585a0ca894c36574f086fbb8d53ccd5c0a45ff9 +checksum=2652cf3ae0abff5fb233aa77f18e70014cc2c70b94a8693c099a3cad9bbb4b20 + +pre_check() { + # failure is harmless since reference data for tests assume 64-bit + if [ "${XBPS_TARGET_WORDSIZE}" == 32 ]; then + rm t/dateformats.t + fi +} From 0036bd71aa3d9dcef6f5c88d2bdf60c04db52e26 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:11:55 +0100 Subject: [PATCH 043/295] qt6-3d: update to 6.10.1. --- srcpkgs/qt6-3d/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-3d/template b/srcpkgs/qt6-3d/template index 89172e9e0bf2b9..ac71bc2fae8888 100644 --- a/srcpkgs/qt6-3d/template +++ b/srcpkgs/qt6-3d/template @@ -1,6 +1,6 @@ # Template file for 'qt6-3d' pkgname=qt6-3d -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qt3d-everywhere-src-${version}.tar.xz" -checksum=bd885ff3741f4b6e4e9b29e1dd05feeae834063c0ca84239f38e3f4eed78e9b7 +checksum=febbca9d491feca0fa2d770e912590b4ef18e461f739ca6e855ea62a488bbb6d subpackages="qt6-3d-private-devel qt6-3d-devel" From 9dcb89c485b56c6bf4af89758d457b5b5f503fee Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:11:57 +0100 Subject: [PATCH 044/295] qt6-base: update to 6.10.1. --- srcpkgs/qt6-base/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qt6-base/template b/srcpkgs/qt6-base/template index 822c229022fc4f..47d65a0688c834 100644 --- a/srcpkgs/qt6-base/template +++ b/srcpkgs/qt6-base/template @@ -4,8 +4,8 @@ # - update qt6_version in common/hooks/pre-pkg/04-generate-runtime-deps.sh # - rebuild all pkg with qt6-base-private-devel pkgname=qt6-base -version=6.10.0 -revision=3 +version=6.10.2 +revision=1 build_style=cmake configure_args="-DINSTALL_DATADIR=share/qt6 -DINSTALL_ARCHDATADIR=lib${XBPS_TARGET_WORDSIZE}/qt6 @@ -38,7 +38,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtbase-everywhere-src-${version}.tar.xz" -checksum=ead4623bcb54a32257c5b3e3a5aec6d16ec96f4cda58d2e003f5a0c16f72046d +checksum=aeb78d29291a2b5fd53cb55950f8f5065b4978c25fb1d77f627d695ab9adf21e python_version=3 if [ "$CROSS_BUILD" ]; then From 047d8207007841114b8ada38132a261542029ad9 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:11:59 +0100 Subject: [PATCH 045/295] qt6-charts: update to 6.10.1. --- srcpkgs/qt6-charts/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-charts/template b/srcpkgs/qt6-charts/template index 49d3b2f6e89652..0f29fc68697736 100644 --- a/srcpkgs/qt6-charts/template +++ b/srcpkgs/qt6-charts/template @@ -1,6 +1,6 @@ # Template file for 'qt6-charts' pkgname=qt6-charts -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtcharts-everywhere-src-${version}.tar.xz" -checksum=1bff529320e7bf4da19984d70492b19149168be58aa1e77b0868779fb3437f6b +checksum=405116b4c5eded981484c4c154eb392d44b69b587342f1193181175e309f2c00 subpackages="qt6-charts-private-devel qt6-charts-devel" From 87ea499b3562c00a9ee0fefee5b75fb4ee9aca62 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:01 +0100 Subject: [PATCH 046/295] qt6-connectivity: update to 6.10.1. --- srcpkgs/qt6-connectivity/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-connectivity/template b/srcpkgs/qt6-connectivity/template index 49d5d57cc8281c..5a068d7464fe95 100644 --- a/srcpkgs/qt6-connectivity/template +++ b/srcpkgs/qt6-connectivity/template @@ -1,6 +1,6 @@ # Template file for 'qt6-connectivity' pkgname=qt6-connectivity -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake configure_args="-DQT_FEATURE_pcsclite=ON" @@ -12,7 +12,7 @@ maintainer="Đoàn Trần Công Danh " license="GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtconnectivity-everywhere-src-${version}.tar.xz" -checksum=560ad5cf2600a0620b811ff9fb4ad0ca2a18ca7b2b6699dadf1961e5bf41fa99 +checksum=cf58f021f32857b5b6799cd4404ef613399ecc1c515492f0f620ce338a311a32 do_check() { ctest -E tst_qlowenergycontroller From 26623b408caad9b88cd9843f10340e3523123e41 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:02 +0100 Subject: [PATCH 047/295] qt6-datavis3d: update to 6.10.1. --- srcpkgs/qt6-datavis3d/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-datavis3d/template b/srcpkgs/qt6-datavis3d/template index aff48894fa47c9..6dc3041da86195 100644 --- a/srcpkgs/qt6-datavis3d/template +++ b/srcpkgs/qt6-datavis3d/template @@ -1,6 +1,6 @@ # Template file for 'qt6-datavis3d' pkgname=qt6-datavis3d -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base qt6-declarative-host-tools" @@ -10,7 +10,7 @@ maintainer="Đoàn Trần Công Danh " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtdatavis3d-everywhere-src-${version}.tar.xz" -checksum=fdf62265fa8b4eb5194fe2b93b0f0c374b85b84a349f2e30b713271966ce36e2 +checksum=b769408bf4a3d03220331d5de59636fdf97a21831d01d3fd141c36c698355bc1 subpackages="qt6-datavis3d-private-devel qt6-datavis3d-devel" From c5a45053dec04011f2d1859c388f0b3d30cafada Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:05 +0100 Subject: [PATCH 048/295] qt6-declarative: update to 6.10.1. --- ...E-2025-12385-qtdeclarative-6.10-0001.patch | 76 --------- ...E-2025-12385-qtdeclarative-6.10-0002.patch | 149 ------------------ srcpkgs/qt6-declarative/template | 6 +- 3 files changed, 3 insertions(+), 228 deletions(-) delete mode 100644 srcpkgs/qt6-declarative/patches/001-CVE-2025-12385-qtdeclarative-6.10-0001.patch delete mode 100644 srcpkgs/qt6-declarative/patches/002-CVE-2025-12385-qtdeclarative-6.10-0002.patch diff --git a/srcpkgs/qt6-declarative/patches/001-CVE-2025-12385-qtdeclarative-6.10-0001.patch b/srcpkgs/qt6-declarative/patches/001-CVE-2025-12385-qtdeclarative-6.10-0001.patch deleted file mode 100644 index ef2778de62fae6..00000000000000 --- a/srcpkgs/qt6-declarative/patches/001-CVE-2025-12385-qtdeclarative-6.10-0001.patch +++ /dev/null @@ -1,76 +0,0 @@ -From 907c7ceb7b27586039262567273efd5ec79e6202 Mon Sep 17 00:00:00 2001 -From: Eskil Abrahamsen Blomfeldt -Date: Wed, 29 Oct 2025 09:43:40 +0100 -Subject: [PATCH] Increase robustness of tag in Text component - -For Text.StyledText, there was no protection against tags -with very large widths or heights. This could cause an application -to spend a very long time processing a layout and sometimes crash -if the size was too large. - -We reuse the internal coord limit in QPainter as our maximum size -here, similar to what we do in Qt Svg for instance. - -For Text.RichText, there were no issues in release builds, but in -debug builds, you could trigger an overflow assert when rounding -the number if it exceeded INT_MAX. For this, we simply cap the -width and height at INT_MAX. - -Fixes: QTBUG-141515 -Pick-to: 6.8 6.5 5.15 -Change-Id: I4bcba16158f5f495a0de38963316effc4c46aae1 -Reviewed-by: Eirik Aavitsland -(cherry picked from commit 4aaf9bf21f7cc69d73066785e254b664fcc82025) -Reviewed-by: Qt Cherry-pick Bot ---- - ---- a/src/quick/items/qquicktextdocument.cpp -+++ b/src/quick/items/qquicktextdocument.cpp -@@ -590,9 +590,9 @@ QSizeF QQuickTextImageHandler::intrinsic - { - if (format.isImageFormat()) { - QTextImageFormat imageFormat = format.toImageFormat(); -- int width = qRound(imageFormat.width()); -+ int width = qRound(qBound(qreal(INT_MIN), imageFormat.width(), qreal(INT_MAX))); - const bool hasWidth = imageFormat.hasProperty(QTextFormat::ImageWidth) && width > 0; -- const int height = qRound(imageFormat.height()); -+ const int height = qRound(qBound(qreal(INT_MIN), imageFormat.height(), qreal(INT_MAX))); - const bool hasHeight = imageFormat.hasProperty(QTextFormat::ImageHeight) && height > 0; - const auto maxWidth = imageFormat.maximumWidth(); - const bool hasMaxWidth = imageFormat.hasProperty(QTextFormat::ImageMaxWidth) && maxWidth.type() != QTextLength::VariableLength; ---- a/src/quick/util/qquickstyledtext.cpp -+++ b/src/quick/util/qquickstyledtext.cpp -@@ -11,6 +11,11 @@ - #include "qquickstyledtext_p.h" - #include - #include -+#include -+ -+#ifndef QQUICKSTYLEDPARSER_COORD_LIMIT -+# define QQUICKSTYLEDPARSER_COORD_LIMIT QT_RASTER_COORD_LIMIT -+#endif - - Q_STATIC_LOGGING_CATEGORY(lcStyledText, "qt.quick.styledtext") - -@@ -660,9 +665,19 @@ void QQuickStyledTextPrivate::parseImage - if (is_equal_ignoring_case(attr.first, QLatin1String("src"))) { - image->url = QUrl(attr.second.toString()); - } else if (is_equal_ignoring_case(attr.first, QLatin1String("width"))) { -- image->size.setWidth(attr.second.toString().toInt()); -+ bool ok; -+ int v = attr.second.toString().toInt(&ok); -+ if (ok && v <= QQUICKSTYLEDPARSER_COORD_LIMIT) -+ image->size.setWidth(v); -+ else -+ qCWarning(lcStyledText) << "Invalid width provided for "; - } else if (is_equal_ignoring_case(attr.first, QLatin1String("height"))) { -- image->size.setHeight(attr.second.toString().toInt()); -+ bool ok; -+ int v = attr.second.toString().toInt(&ok); -+ if (ok && v <= QQUICKSTYLEDPARSER_COORD_LIMIT) -+ image->size.setHeight(v); -+ else -+ qCWarning(lcStyledText) << "Invalid height provided for "; - } else if (is_equal_ignoring_case(attr.first, QLatin1String("align"))) { - if (is_equal_ignoring_case(attr.second, QLatin1String("top"))) { - image->align = QQuickStyledTextImgTag::Top; diff --git a/srcpkgs/qt6-declarative/patches/002-CVE-2025-12385-qtdeclarative-6.10-0002.patch b/srcpkgs/qt6-declarative/patches/002-CVE-2025-12385-qtdeclarative-6.10-0002.patch deleted file mode 100644 index fdc1c26bb737fa..00000000000000 --- a/srcpkgs/qt6-declarative/patches/002-CVE-2025-12385-qtdeclarative-6.10-0002.patch +++ /dev/null @@ -1,149 +0,0 @@ -From c3a07c99f9d2328cee4aa48a51d261d243b50d85 Mon Sep 17 00:00:00 2001 -From: Eskil Abrahamsen Blomfeldt -Date: Fri, 31 Oct 2025 09:08:51 +0100 -Subject: [PATCH] Rich text: Limit size of text object - -When we draw a text object, we need to store this in RAM -since the QTextObjectInterface is QPainter-based. This -could lead to over-allocation if the text object size -was set to be very large. We use the existing image IO -infrastructure for making sure allocations are within -reasonable (and configurable) limits. - -Pick-to: 6.8 6.5 5.15 -Task-number: QTBUG-141515 -Change-Id: Ieae06a9e92a7bd078d22ab2314889201c2049122 -Reviewed-by: Eirik Aavitsland -(cherry picked from commit 144ce34e846b3f732bdb003f99b1f9455425416f) -Reviewed-by: Qt Cherry-pick Bot ---- - ---- a/src/quick/items/qquicktextnodeengine.cpp -+++ b/src/quick/items/qquicktextnodeengine.cpp -@@ -11,6 +11,7 @@ - #include - #include - #include -+#include - - #include - #include -@@ -434,12 +435,15 @@ void QQuickTextNodeEngine::addTextObject - } - - if (image.isNull()) { -- image = QImage((size * m_devicePixelRatio).toSize(), QImage::Format_ARGB32_Premultiplied); -- image.setDevicePixelRatio(m_devicePixelRatio); -- image.fill(Qt::transparent); -- { -- QPainter painter(&image); -- handler->drawObject(&painter, QRectF({}, size), textDocument, pos, format); -+ if (QImageIOHandler::allocateImage((size * m_devicePixelRatio).toSize(), -+ QImage::Format_ARGB32_Premultiplied, -+ &image)) { -+ image.setDevicePixelRatio(m_devicePixelRatio); -+ image.fill(Qt::transparent); -+ { -+ QPainter painter(&image); -+ handler->drawObject(&painter, QRectF({}, size), textDocument, pos, format); -+ } - } - } - ---- a/tests/auto/quick/qquicktext/tst_qquicktext.cpp -+++ b/tests/auto/quick/qquicktext/tst_qquicktext.cpp -@@ -125,6 +125,8 @@ private slots: - void imgTagsElide(); - void imgTagsUpdates(); - void imgTagsError(); -+ void imgSize_data(); -+ void imgSize(); - void fontSizeMode_data(); - void fontSizeMode(); - void fontSizeModeMultiline_data(); -@@ -3451,6 +3453,85 @@ void tst_qquicktext::imgTagsError() - QVERIFY(textObject != nullptr); - } - -+void tst_qquicktext::imgSize_data() -+{ -+ QTest::addColumn("url"); -+ QTest::addColumn("width"); -+ QTest::addColumn("height"); -+ QTest::addColumn("format"); -+ -+ QTest::newRow("negative (styled text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(-0x7FFFFF) -+ << qint64(-0x7FFFFF) -+ << QQuickText::StyledText; -+ QTest::newRow("negative (rich text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(-0x7FFFFF) -+ << qint64(-0x7FFFFF) -+ << QQuickText::RichText; -+ QTest::newRow("large (styled text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(0x7FFFFF) -+ << qint64(0x7FFFFF) -+ << QQuickText::StyledText; -+ QTest::newRow("large (right text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(0x7FFFFF) -+ << qint64(0x7FFFFF) -+ << QQuickText::RichText; -+ QTest::newRow("medium (styled text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(0x10000) -+ << qint64(0x10000) -+ << QQuickText::StyledText; -+ QTest::newRow("medium (right text)") << QStringLiteral("images/starfish_2.png") -+ << qint64(0x10000) -+ << qint64(0x10000) -+ << QQuickText::RichText; -+ QTest::newRow("large non-existent (styled text)") << QStringLiteral("a") -+ << qint64(0x7FFFFF) -+ << qint64(0x7FFFFF) -+ << QQuickText::StyledText; -+ QTest::newRow("medium non-existent (styled text)") << QStringLiteral("a") -+ << qint64(0x10000) -+ << qint64(0x10000) -+ << QQuickText::StyledText; -+ QTest::newRow("out-of-bounds non-existent (styled text)") << QStringLiteral("a") -+ << (qint64(INT_MAX) + 1) -+ << (qint64(INT_MAX) + 1) -+ << QQuickText::StyledText; -+ QTest::newRow("large non-existent (rich text)") << QStringLiteral("a") -+ << qint64(0x7FFFFF) -+ << qint64(0x7FFFFF) -+ << QQuickText::RichText; -+ QTest::newRow("medium non-existent (rich text)") << QStringLiteral("a") -+ << qint64(0x10000) -+ << qint64(0x10000) -+ << QQuickText::RichText; -+} -+ -+void tst_qquicktext::imgSize() -+{ -+ QFETCH(QString, url); -+ QFETCH(qint64, width); -+ QFETCH(qint64, height); -+ QFETCH(QQuickText::TextFormat, format); -+ -+ // Reusing imgTagsUpdates.qml here, since it is just an empty Text component -+ QScopedPointer window(createView(testFile("imgTagsUpdates.qml"))); -+ window->show(); -+ QVERIFY(QTest::qWaitForWindowExposed(window.data())); -+ -+ QScopedPointer myText(window->rootObject()->findChild("myText")); -+ QVERIFY(myText); -+ -+ myText->setTextFormat(format); -+ -+ QString imgStr = QStringLiteral("") -+ .arg(url) -+ .arg(width) -+ .arg(height); -+ myText->setText(imgStr); -+ -+ QVERIFY(QQuickTest::qWaitForPolish(myText.data())); -+} -+ - void tst_qquicktext::fontSizeMode_data() - { - QTest::addColumn("text"); diff --git a/srcpkgs/qt6-declarative/template b/srcpkgs/qt6-declarative/template index f95bb6e04d47d9..67bf8578e7df01 100644 --- a/srcpkgs/qt6-declarative/template +++ b/srcpkgs/qt6-declarative/template @@ -2,8 +2,8 @@ # # On update, rebuild pkgs with qt6-declarative-private-devel pkgname=qt6-declarative -version=6.10.0 -revision=3 +version=6.10.2 +revision=1 build_style=cmake configure_args="-DQT_BUILD_TESTS=ON" hostmakedepends="qt6-base perl pkg-config wayland-devel qt6-shadertools python3" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtdeclarative-everywhere-src-${version}.tar.xz" -checksum=6efd35520902395d865bc12e89f8442c3c228d0374f13af9a1888b844f56f6b0 +checksum=a249914ff66cdcdbf0df8b5ffad997a2ee6dce01cc17d43c6cc56fdc1d0f4b0f replaces="qt6-quickcontrols2>=0" if [ "$CROSS_BUILD" ]; then From 1d6590e4c4972c9b2029c93edadf0158ae6e8df3 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:06 +0100 Subject: [PATCH 049/295] qt6-graphs: update to 6.10.1. --- srcpkgs/qt6-graphs/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qt6-graphs/template b/srcpkgs/qt6-graphs/template index e99477b6ac49d1..d46d1e0c1be2de 100644 --- a/srcpkgs/qt6-graphs/template +++ b/srcpkgs/qt6-graphs/template @@ -1,7 +1,7 @@ # Template file for 'qt6-graphs' pkgname=qt6-graphs -version=6.10.0 -revision=2 +version=6.10.2 +revision=1 build_style=cmake hostmakedepends="qt6-base qt6-declarative-host-tools qt6-shadertools" makedepends="qt6-declarative-private-devel qt6-base-private-devel @@ -11,7 +11,7 @@ maintainer="John " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtgraphs-everywhere-src-${version}.tar.xz" -checksum=6ec8f1b3b3bea6636da8846353e170794c76d5833fc908016f911647a6a714ea +checksum=f690fc6aa567d89a6e76ce370d684beb243dc0c2ed1187dd305433e278dd7aaf qt6-graphs-devel_package() { depends="${sourcepkg}>=${version}_${revision} From 3d14021e55b69ca64c8f1b5cb5b115bc921ebc0d Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:08 +0100 Subject: [PATCH 050/295] qt6-httpserver: update to 6.10.1. --- srcpkgs/qt6-httpserver/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-httpserver/template b/srcpkgs/qt6-httpserver/template index 907555e7d8b119..a5e7c10d490e5c 100644 --- a/srcpkgs/qt6-httpserver/template +++ b/srcpkgs/qt6-httpserver/template @@ -1,6 +1,6 @@ # Template file for 'qt6-httpserver' pkgname=qt6-httpserver -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base" @@ -11,7 +11,7 @@ maintainer="Đoàn Trần Công Danh " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qthttpserver-everywhere-src-${version}.tar.xz" -checksum=e4705701db5f425e8f7025b3f74bf87b43af83742a615a20d4aa171d03251fc5 +checksum=26568d59bee258fd35297823d2f7839ef1337042a009b752769e688703fe4643 qt6-httpserver-devel_package() { depends="${sourcepkg}>=${version}_${revision} qt6-base-devel From be3f81a5f12ac19c1c7d456d70ae1945a88015b0 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:10 +0100 Subject: [PATCH 051/295] qt6-imageformats: update to 6.10.1. --- srcpkgs/qt6-imageformats/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-imageformats/template b/srcpkgs/qt6-imageformats/template index 690672abf026a2..43ae6ba8695db3 100644 --- a/srcpkgs/qt6-imageformats/template +++ b/srcpkgs/qt6-imageformats/template @@ -1,6 +1,6 @@ # Template file for 'qt6-imageformats' pkgname=qt6-imageformats -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base" @@ -10,4 +10,4 @@ maintainer="John " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtimageformats-everywhere-src-${version}.tar.xz" -checksum=64450a52507c540de53616ed5e516df0e0905a99d3035ddfaa690f2b3f7c0cea +checksum=8b8f9c718638081e7b3c000e7f31910140b1202a98e98df5d1b496fe6f639d67 From a8447b4662031cc60467041d5c2bf4a4ff3d8e22 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:11 +0100 Subject: [PATCH 052/295] qt6-languageserver: update to 6.10.1. --- srcpkgs/qt6-languageserver/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-languageserver/template b/srcpkgs/qt6-languageserver/template index 2c1418af8cde11..bb08d2d4de55e5 100644 --- a/srcpkgs/qt6-languageserver/template +++ b/srcpkgs/qt6-languageserver/template @@ -1,6 +1,6 @@ # Template file for 'qt6-languageserver' pkgname=qt6-languageserver -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake configure_args="-DQT_BUILD_TESTS=ON" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtlanguageserver-everywhere-src-${version}.tar.xz" -checksum=4c9e03e09f392c0855251ac2d8c69fda4c5f015c0201c30b14dc09d8712821a6 +checksum=9a043f2c84b0b470065fc7a954dc4ff0388db3e1b2c457c3d69670baecc40d53 subpackages="qt6-languageserver-private-devel qt6-languageserver-devel" From 2b353b635144ae00545d526392ee58ccd4722462 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:13 +0100 Subject: [PATCH 053/295] qt6-location: update to 6.10.1. --- srcpkgs/qt6-location/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-location/template b/srcpkgs/qt6-location/template index 5af5b28e082d2e..a05e616c8b6ef9 100644 --- a/srcpkgs/qt6-location/template +++ b/srcpkgs/qt6-location/template @@ -1,6 +1,6 @@ # Template file for 'qt6-location' pkgname=qt6-location -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtlocation-everywhere-src-${version}.tar.xz" -checksum=cbd43e87fb4b2cccd8e01e0c762f951fc3c3d6b99cd2b80d6e526120a25df800 +checksum=d313f05dedc593517c47d0fa3eb131a2597c01db23de263fe89fea561be50f3c pre_check() { export QML2_IMPORT_PATH="$wrksrc/build/lib${XBPS_TARGET_WORDSIZE}/qt6/qml" From 59266828664d04e0423c74ff84cc787fdf612783 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:15 +0100 Subject: [PATCH 054/295] qt6-lottie: update to 6.10.1. --- srcpkgs/qt6-lottie/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qt6-lottie/template b/srcpkgs/qt6-lottie/template index 93932232d0d0c2..5d60c67d9fe42f 100644 --- a/srcpkgs/qt6-lottie/template +++ b/srcpkgs/qt6-lottie/template @@ -1,7 +1,7 @@ # Template file for 'qt6-lottie' pkgname=qt6-lottie -version=6.10.0 -revision=2 +version=6.10.2 +revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" makedepends="qt6-declarative-private-devel qt6-base-private-devel" @@ -10,7 +10,7 @@ maintainer="John " license="GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtlottie-everywhere-src-${version}.tar.xz" -checksum=70a413af5bc20a28d79c74a4182a1bb23f0709306721dc4878106891e5a87b25 +checksum=a5d86b7a07833a0f2bd203042bbc156ec6588fd957f00a3c166788410ea4028c if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 4f30cc0900f9c19c20bd593cb8f8bdc4c95ae0a6 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:16 +0100 Subject: [PATCH 055/295] qt6-multimedia: update to 6.10.1. --- srcpkgs/qt6-multimedia/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-multimedia/template b/srcpkgs/qt6-multimedia/template index 85c3bb89ecb967..0579b0b769fa73 100644 --- a/srcpkgs/qt6-multimedia/template +++ b/srcpkgs/qt6-multimedia/template @@ -1,6 +1,6 @@ # Template file for 'qt6-multimedia' pkgname=qt6-multimedia -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake configure_args="-DQT_FEATURE_gstreamer=ON" @@ -14,7 +14,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtmultimedia-everywhere-src-${version}.tar.xz" -checksum=04424021cf0d1d19799f5967310d484d1afa6fdd0b31725d0ee7608d2eef1126 +checksum=93f7ef0106fbd731165a2723f3e436c911fc5e6880f5bc987b55516c20833e2b if [ "$XBPS_MACHINE" = "i686" ]; then CXXFLAGS="-DPFFFT_SIMD_DISABLE=1 -DDISABLE_SIMD=1" From 35a752c713e103e398e78c736949d56f7addd69c Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:18 +0100 Subject: [PATCH 056/295] qt6-networkauth: update to 6.10.1. --- srcpkgs/qt6-networkauth/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-networkauth/template b/srcpkgs/qt6-networkauth/template index 2ee72a857dfc96..f8fc511be140bd 100644 --- a/srcpkgs/qt6-networkauth/template +++ b/srcpkgs/qt6-networkauth/template @@ -1,6 +1,6 @@ # Template file for 'qt6-networkauth' pkgname=qt6-networkauth -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base" @@ -10,7 +10,7 @@ maintainer="John " license="GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtnetworkauth-everywhere-src-${version}.tar.xz" -checksum=0460855d71e22d1f08045c9577c3ab09790b78f9de263405c2b9b00f6c33b3c8 +checksum=4f29fd9e4b505f5714fc42296b04c701f66ced185c49de4d520cb8de4b1981b3 if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 489fb87d879f99c1e77b01f0b3ff0b03307e9f1c Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:29 +0100 Subject: [PATCH 057/295] qt6-pdf: update to 6.10.1. --- .../patches/0004-no-glibc-cmake-check.patch | 14 +++++++------- srcpkgs/qt6-pdf/patches/no-sandbox-settls.patch | 14 ++++++++++++++ srcpkgs/qt6-pdf/template | 6 +++--- 3 files changed, 24 insertions(+), 10 deletions(-) create mode 100644 srcpkgs/qt6-pdf/patches/no-sandbox-settls.patch diff --git a/srcpkgs/qt6-pdf/patches/0004-no-glibc-cmake-check.patch b/srcpkgs/qt6-pdf/patches/0004-no-glibc-cmake-check.patch index c36f9c7f360a36..b7b7db6af0b9f5 100644 --- a/srcpkgs/qt6-pdf/patches/0004-no-glibc-cmake-check.patch +++ b/srcpkgs/qt6-pdf/patches/0004-no-glibc-cmake-check.patch @@ -1,16 +1,16 @@ ---- a/configure.cmake -+++ b/configure.cmake -@@ -370,13 +370,6 @@ qt_webengine_configure_check("pkg-config - DOCUMENTATION "A pkg-config binary on Linux." +--- a/configure.cmake 2026-01-23 20:06:19.000000000 +0100 ++++ - 2026-01-28 22:59:29.757508810 +0100 +@@ -388,13 +388,6 @@ + DOCUMENTATION "A pkg-config binary." TAGS LINUX_PLATFORM ) -qt_webengine_configure_check("glibc" - MODULES QtWebEngine - CONDITION NOT LINUX OR TEST_glibc - MESSAGE "A suitable version >= ${QT_CONFIGURE_CHECK_glibc_version} of glibc is required." -- DOCUMENTATION "glibc library at least ${QT_CONFIGURE_CHECK_glibc_version} version or later." +- DOCUMENTATION "Glibc library at least ${QT_CONFIGURE_CHECK_glibc_version} version or later." - TAGS LINUX_PLATFORM -) - qt_webengine_configure_check("glib" + qt_webengine_configure_check("mesa-headers" MODULES QtWebEngine - CONDITION NOT UNIX OR GLIB_FOUND + CONDITION NOT LINUX OR TEST_khr diff --git a/srcpkgs/qt6-pdf/patches/no-sandbox-settls.patch b/srcpkgs/qt6-pdf/patches/no-sandbox-settls.patch new file mode 100644 index 00000000000000..686549071436bb --- /dev/null +++ b/srcpkgs/qt6-pdf/patches/no-sandbox-settls.patch @@ -0,0 +1,14 @@ +this optimisation of CLONE_SETTLS is not valid used like this, and future musl +clone(3) will EINVAL on this use +-- +--- a/src/3rdparty/chromium/sandbox/linux/services/credentials.cc ++++ b/src/3rdparty/chromium/sandbox/linux/services/credentials.cc +@@ -89,7 +89,7 @@ + + int clone_flags = CLONE_FS | LINUX_SIGCHLD; + void* tls = nullptr; +-#if (defined(ARCH_CPU_X86_64) || defined(ARCH_CPU_ARM_FAMILY)) && \ ++#if 0 && (defined(ARCH_CPU_X86_64) || defined(ARCH_CPU_ARM_FAMILY)) && \ + !defined(MEMORY_SANITIZER) + // Use CLONE_VM | CLONE_VFORK as an optimization to avoid copying page tables. + // Since clone writes to the new child's TLS before returning, we must set a diff --git a/srcpkgs/qt6-pdf/template b/srcpkgs/qt6-pdf/template index 4648333ff4b277..9e32ca5f03ca28 100644 --- a/srcpkgs/qt6-pdf/template +++ b/srcpkgs/qt6-pdf/template @@ -1,7 +1,7 @@ # Template file for 'qt6-pdf' pkgname=qt6-pdf -version=6.10.0 -revision=2 +version=6.10.2 +revision=1 build_style=cmake configure_args="-DQT_FEATURE_qtpdf_build=ON -DQT_FEATURE_qtpdf_widgets_build=ON @@ -24,7 +24,7 @@ maintainer="John " license="GPL-3.0-only, GPL-2.0-only, LGPL-3.0-only, BSD-3-Clause" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwebengine-everywhere-src-${version}.tar.xz" -checksum=c44c77b11c30f9d11b423d0a38debe272cdec5883b5e54703eb1f7e96651c51c +checksum=856eddf292a69a88618567deea67711b4ec720e69bcb575ed7bb539c9023961e if [ "$XBPS_LIBC" = "musl" ]; then hostmakedepends+=" musl-legacy-compat" From 68e60a07640260d305f766ff4425b0a4a3ae9cef Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:30 +0100 Subject: [PATCH 058/295] qt6-position: update to 6.10.1. --- srcpkgs/qt6-position/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-position/template b/srcpkgs/qt6-position/template index 6188e7a830cabe..20fafdd1fbeb3d 100644 --- a/srcpkgs/qt6-position/template +++ b/srcpkgs/qt6-position/template @@ -1,6 +1,6 @@ # Template file for 'qt6-position' pkgname=qt6-position -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtpositioning-everywhere-src-${version}.tar.xz" -checksum=ecbfbc90636be19d65c975716e26689558e030e841c4a01afb3bd425756a1ee1 +checksum=7051fa64477c66769840cad396fc3772a01ba5516363c8842a7a513fa0c4cdce pre_check() { export QML2_IMPORT_PATH="$wrksrc/build/lib${XBPS_TARGET_WORDSIZE}/qt6/qml" From 386757fc909d68e87e4d8d35c34a583ea27a2df4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:32 +0100 Subject: [PATCH 059/295] qt6-qt5compat: update to 6.10.1. --- srcpkgs/qt6-qt5compat/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-qt5compat/template b/srcpkgs/qt6-qt5compat/template index 5df8646c5ab196..237d03f5e9cbb2 100644 --- a/srcpkgs/qt6-qt5compat/template +++ b/srcpkgs/qt6-qt5compat/template @@ -1,6 +1,6 @@ # Template file for 'qt6-qt5compat' pkgname=qt6-qt5compat -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake configure_args="-DQT_FEATURE_textcodec=ON -DQT_FEATURE_codecs=ON @@ -13,7 +13,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qt5compat-everywhere-src-${version}.tar.xz" -checksum=d025c59d658b5e1f5fa1650bf01f23ddec15ce8f4c6ae5f6bc343f8427b02b7e +checksum=3fa418f0fac02eb9efc5f762fbe25f20647b0ebb7fa92faf07e6de85044161c2 if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From fb6e7a2158ade9ea0b4433b0792b8a4e883d593c Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:35 +0100 Subject: [PATCH 060/295] qt6-quick3d: update to 6.10.1. --- srcpkgs/qt6-quick3d/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qt6-quick3d/template b/srcpkgs/qt6-quick3d/template index 0aba818e7a8ed9..55de9186701f5e 100644 --- a/srcpkgs/qt6-quick3d/template +++ b/srcpkgs/qt6-quick3d/template @@ -1,7 +1,7 @@ # Template file for 'qt6-quick3d' pkgname=qt6-quick3d -version=6.10.0 -revision=2 +version=6.10.2 +revision=1 build_style=cmake hostmakedepends="perl qt6-declarative-host-tools qt6-shadertools" makedepends="qt6-base-private-devel qt6-declarative-private-devel @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtquick3d-everywhere-src-${version}.tar.xz" -checksum=98258c1ea876e1f29fd73889f1de32008d13c91c9bff3fc8edfd92f663ecd488 +checksum=b95439f31d1e580c379e9828b48b03b932b0bdade4ff09f4dd639eff9da2cd75 subpackages="qt6-quick3d-tools qt6-quick3d-private-devel qt6-quick3d-devel" if [ "$CROSS_BUILD" ]; then From 7dec5c99886a0667f20fe4654f9077af7dee04a6 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:36 +0100 Subject: [PATCH 061/295] qt6-quick3dphysics: update to 6.10.1. --- srcpkgs/qt6-quick3dphysics/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-quick3dphysics/template b/srcpkgs/qt6-quick3dphysics/template index fb0013f70fcb7e..91757e1f190bb4 100644 --- a/srcpkgs/qt6-quick3dphysics/template +++ b/srcpkgs/qt6-quick3dphysics/template @@ -1,6 +1,6 @@ # Template file for 'qt6-quick3dphysics' pkgname=qt6-quick3dphysics -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base qt6-declarative-host-tools qt6-quick3d-tools qt6-shadertools" @@ -11,7 +11,7 @@ maintainer="John " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtquick3dphysics-everywhere-src-${version}.tar.xz" -checksum=c2b408bfe7ed9d9a7eda371dc657c623789d5086d445b242fda61bd8db054942 +checksum=b7aff67bd05794351d7c19b178c54b674afc3ea2b4632df892aaee98f12c1cdb case "$XBPS_TARGET_MACHINE" in i686*) CXXFLAGS+=" -msse2" ;; From eedf5e7984697932a4acb6e87ea1366ca3d4dcda Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:38 +0100 Subject: [PATCH 062/295] qt6-quickeffectmaker: update to 6.10.1. --- srcpkgs/qt6-quickeffectmaker/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-quickeffectmaker/template b/srcpkgs/qt6-quickeffectmaker/template index 2d2c23787c77f0..b75aabeba0279f 100644 --- a/srcpkgs/qt6-quickeffectmaker/template +++ b/srcpkgs/qt6-quickeffectmaker/template @@ -1,6 +1,6 @@ # Template file for 'qt6-quickeffectmaker' pkgname=qt6-quickeffectmaker -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-declarative-host-tools qt6-base qt6-shadertools" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtquickeffectmaker-everywhere-src-${version}.tar.xz" -checksum=64c21d028bebe90fb32df2c751ed4fc8c5219bff50173a0bbf1d33b28c2eb96e +checksum=e3caf13b4e0c0d9e6d696192137615e8e748d7999272c74472945067f469c2c4 post_patch() { sed -i 's/CMAKE_CROSSCOMPILING/FALSE/' CMakeLists.txt From e9f8188b92bd7727b5168a676dd4b8873939a2b4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:40 +0100 Subject: [PATCH 063/295] qt6-quicktimeline: update to 6.10.1. --- srcpkgs/qt6-quicktimeline/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-quicktimeline/template b/srcpkgs/qt6-quicktimeline/template index 48422e269ca84a..8c3832c96bd3a9 100644 --- a/srcpkgs/qt6-quicktimeline/template +++ b/srcpkgs/qt6-quicktimeline/template @@ -1,6 +1,6 @@ # Template file for 'qt6-quicktimeline' pkgname=qt6-quicktimeline -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" @@ -10,7 +10,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version/rc/-rc}/submodules/qtquicktimeline-everywhere-src-${version/rc/-rc}.tar.xz" -checksum=dfbc185d58dc8fb80ec72e297abf461927ea6455b96a780cd2a8bb58c5b14ba0 +checksum=7032d8b758d21fdf790dde0d070e1c82819abcf5ee7194dbf21589dbdfd36324 if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 201e10c4d46f2063b91cd061017f6acff33a8ab7 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:41 +0100 Subject: [PATCH 064/295] qt6-remoteobjects: update to 6.10.1. --- srcpkgs/qt6-remoteobjects/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-remoteobjects/template b/srcpkgs/qt6-remoteobjects/template index 56290dc974bef9..b4126068810d8b 100644 --- a/srcpkgs/qt6-remoteobjects/template +++ b/srcpkgs/qt6-remoteobjects/template @@ -1,6 +1,6 @@ # Template file for 'qt6-remoteobjects' pkgname=qt6-remoteobjects -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-declarative-host-tools pkg-config" @@ -14,7 +14,7 @@ maintainer="Đoàn Trần Công Danh " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtremoteobjects-everywhere-src-${version}.tar.xz" -checksum=b1402d5906930011ed6163e55a0313eead19286f01471e22ccc8e87f9f6a2698 +checksum=bc683f044fe74dcf06c2b47f31fff2d967b5ac81896620108697dcc942eb65cd if [ "$CROSS_BUILD" ]; then hostmakedepends+=" qt6-remoteobjects-tools" From c3a0e920b4f5a6d17aadb88a1b27d1baef680fe4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:43 +0100 Subject: [PATCH 065/295] qt6-scxml: update to 6.10.1. --- srcpkgs/qt6-scxml/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-scxml/template b/srcpkgs/qt6-scxml/template index aa6eb4126e6d3a..2a631df209728a 100644 --- a/srcpkgs/qt6-scxml/template +++ b/srcpkgs/qt6-scxml/template @@ -1,6 +1,6 @@ # Template file for 'qt6-scxml' pkgname=qt6-scxml -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake configure_args="-DQT_FEATURE_scxml_ecmascriptdatamodel=ON" @@ -11,7 +11,7 @@ maintainer="John " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtscxml-everywhere-src-${version}.tar.xz" -checksum=b5946c405fe1e568a8b0589695f9572dfabf85ac9ac8ec3778f9f791e76131e4 +checksum=0f9c178db3f1b1b06d20172aaaa4d7f5513bcb99de01f880c29e23b5ffdd236a subpackages="qt6-scxml-tools qt6-scxml-devel" if [ "$CROSS_BUILD" ]; then From 69698186bdc7da8099f9f2f2c6e7a3ace579b93d Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:45 +0100 Subject: [PATCH 066/295] qt6-sensors: update to 6.10.1. --- srcpkgs/qt6-sensors/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-sensors/template b/srcpkgs/qt6-sensors/template index e2889b56b20ede..e70eefbd1ac175 100644 --- a/srcpkgs/qt6-sensors/template +++ b/srcpkgs/qt6-sensors/template @@ -1,6 +1,6 @@ # Template file for 'qt6-sensors' pkgname=qt6-sensors -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-declarative-host-tools pkg-config" @@ -10,7 +10,7 @@ maintainer="Đoàn Trần Công Danh " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtsensors-everywhere-src-${version}.tar.xz" -checksum=67525e1ad1833ce556a208c4fd8adc59fe6e20d9450e621977ade96300668739 +checksum=91e6515b7cebbfae3696861933f5359cc303dfe82f7849cf5a10df378c8ef581 post_install() { rm -rf ${DESTDIR}/usr/tests From 9dc4f135fa8868b0b2a4905df2019daedbdf4084 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:46 +0100 Subject: [PATCH 067/295] qt6-serialbus: update to 6.10.1. --- srcpkgs/qt6-serialbus/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-serialbus/template b/srcpkgs/qt6-serialbus/template index 2f8ab569ecb240..eb691a9b3459f6 100644 --- a/srcpkgs/qt6-serialbus/template +++ b/srcpkgs/qt6-serialbus/template @@ -1,6 +1,6 @@ # Template file for 'qt6-serialbus' pkgname=qt6-serialbus -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base" @@ -10,7 +10,7 @@ maintainer="Đoàn Trần Công Danh " license="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtserialbus-everywhere-src-${version}.tar.xz" -checksum=c627b2bfffe267bb53bbdbac60c22a08bcdbfb6775983ae5d16c975298a4ec30 +checksum=4736bffecfb6940ebd7aeae260a7ac2c68da979bdf9153c2b59dcafa40793a7b qt6-serialbus-tools_package() { short_desc+=" - tools" From fa239cbb30d42f196e8d1d70f77d0e80961007cf Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:48 +0100 Subject: [PATCH 068/295] qt6-serialport: update to 6.10.1. --- srcpkgs/qt6-serialport/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-serialport/template b/srcpkgs/qt6-serialport/template index d5793ef3ec1a04..c847e00dfe6772 100644 --- a/srcpkgs/qt6-serialport/template +++ b/srcpkgs/qt6-serialport/template @@ -1,6 +1,6 @@ # Template file for 'qt6-serialport' pkgname=qt6-serialport -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base pkg-config" @@ -10,7 +10,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtserialport-everywhere-src-${version}.tar.xz" -checksum=4f1ea0788d1d5dc74c35f605f6edbb09fef89c75ce6028cf418d79c1a0d9f805 +checksum=b40cbf29da111ffa8fee7e7cb44b9097042782cd17a10448a83ff3156cdebd6b qt6-serialport-devel_package() { depends="${sourcepkg}>=${version}_${revision} qt6-base-devel>=${version}_1" From 286aac712e38b8a22cd17ed89fdc8c038878ab81 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:50 +0100 Subject: [PATCH 069/295] qt6-shadertools: update to 6.10.1. --- srcpkgs/qt6-shadertools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-shadertools/template b/srcpkgs/qt6-shadertools/template index b2299075d32903..5f0739c0772380 100644 --- a/srcpkgs/qt6-shadertools/template +++ b/srcpkgs/qt6-shadertools/template @@ -1,6 +1,6 @@ # Template file for 'qt6-shadertools' pkgname=qt6-shadertools -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-or-later" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtshadertools-everywhere-src-${version}.tar.xz" -checksum=87ba478c3fd827862fc79f6d78d369dfec162c901b7f66ed988b3e1d6ffdfbf6 +checksum=18d9dbbc4f7e6e96e6ed89a9965dc032e2b58158b65156c035537826216716c9 if [ "$CROSS_BUILD" ]; then configure_args="-DQT_FORCE_BUILD_TOOLS=true" From 88992d2d58455d1c7d459a1f8aab34adf61fac4f Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:51 +0100 Subject: [PATCH 070/295] qt6-speech: update to 6.10.1. --- srcpkgs/qt6-speech/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-speech/template b/srcpkgs/qt6-speech/template index 20c913fc19fab1..b2396d6b8196ce 100644 --- a/srcpkgs/qt6-speech/template +++ b/srcpkgs/qt6-speech/template @@ -1,6 +1,6 @@ # Template file for 'qt6-speech' pkgname=qt6-speech -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl pkg-config qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtspeech-everywhere-src-${version}.tar.xz" -checksum=13033066830ccc8be50951e3a2f2564c712e5f5e9b0af4e1040184f1a64aa51e +checksum=d937f6c715792b0d8f036e94513ebfc8def6b988a65f3ff30a7f4a8cc1263014 if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 4cab59c623850503af09456b18d7a3894f905756 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:53 +0100 Subject: [PATCH 071/295] qt6-svg: update to 6.10.1. --- srcpkgs/qt6-svg/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-svg/template b/srcpkgs/qt6-svg/template index d3a59e993a17a2..dc8e738640473c 100644 --- a/srcpkgs/qt6-svg/template +++ b/srcpkgs/qt6-svg/template @@ -1,6 +1,6 @@ # Template file for 'qt6-svg' pkgname=qt6-svg -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base perl" @@ -10,7 +10,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, GPL-2.0-or-later, LGPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtsvg-everywhere-src-${version}.tar.xz" -checksum=5ed2c0e04d5e73ff75c2a2ed92db5dc1788ba70f704fc2b71bc21644beda2533 +checksum=f07ff80f38caf235187200345392ca7479445ddf49a36c3694cd52a735dad6e1 if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 79738b12c5dfb49cb1b2d5e9e3ecd6f8d04d2bc4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:55 +0100 Subject: [PATCH 072/295] qt6-tools: update to 6.10.1. --- srcpkgs/qt6-tools/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/qt6-tools/template b/srcpkgs/qt6-tools/template index b761dfc724ff97..545489eb98b830 100644 --- a/srcpkgs/qt6-tools/template +++ b/srcpkgs/qt6-tools/template @@ -1,7 +1,7 @@ # Template file for 'qt6-tools' pkgname=qt6-tools -version=6.10.0 -revision=2 +version=6.10.2 +revision=1 _llvmver=21 build_style=cmake configure_args="-DEXTERNAL_GUMBO=ON -DLITEHTML_UTF8=ON -DUSE_ICU=ON @@ -17,7 +17,7 @@ maintainer="John " license="custom:GPL-3.0-only-with-Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qttools-everywhere-src-${version}.tar.xz" -checksum=d86d5098cf3e3e599f37e18df477e65908fc8f036e10ea731b3469ec4fdbd02a +checksum=1e3d2c07c1fd76d2425c6eaeeaa62ffaff5f79210c4e1a5bc2a6a9db668d5b24 if [ "$CROSS_BUILD" ]; then configure_args+=" -DQT_FORCE_BUILD_TOOLS=TRUE" From 5423e55f21338001d311fdb3388b43a24abd712c Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:56 +0100 Subject: [PATCH 073/295] qt6-translations: update to 6.10.1. --- srcpkgs/qt6-translations/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-translations/template b/srcpkgs/qt6-translations/template index 8632af6896a421..09c2fbc64b5d09 100644 --- a/srcpkgs/qt6-translations/template +++ b/srcpkgs/qt6-translations/template @@ -1,6 +1,6 @@ # Template file for 'qt6-translations' pkgname=qt6-translations -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base qt6-tools perl" @@ -10,7 +10,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qttranslations-everywhere-src-${version}.tar.xz" -checksum=326e8253cfd0cb5745238117f297da80e30ce8f4c1db81990497bd388b026cde +checksum=b3b3813bc9d76b545716dc8b6e659fa71b6e2bc14569e9fab6dab8b30650a644 pre_configure() { rm -rf build From acca7372627386565c95b79c0c4aac22284c1aac Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:12:58 +0100 Subject: [PATCH 074/295] qt6-virtualkeyboard: update to 6.10.1. --- srcpkgs/qt6-virtualkeyboard/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-virtualkeyboard/template b/srcpkgs/qt6-virtualkeyboard/template index 67079f2e68d1c3..107837a2461645 100644 --- a/srcpkgs/qt6-virtualkeyboard/template +++ b/srcpkgs/qt6-virtualkeyboard/template @@ -1,6 +1,6 @@ # Template file for 'qt6-virtualkeyboard' pkgname=qt6-virtualkeyboard -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl pkg-config qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="GPL-3.0-only" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtvirtualkeyboard-everywhere-src-${version}.tar.xz" -checksum=abb267f2682bc66d078b71fb342aca946414d3c60adb97d454308acc0ca31381 +checksum=6273256091a83f3f283d1a91498964fd6a91256b667d7b9e98005d731fdb986b if [ "$XBPS_CHECK_PKGS" ]; then configure_args="-DQT_BUILD_TESTS=ON" From 01e55546f3658ba40ed82212e90efb4726a33fb4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:13:00 +0100 Subject: [PATCH 075/295] qt6-wayland: update to 6.10.1. --- srcpkgs/qt6-wayland/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-wayland/template b/srcpkgs/qt6-wayland/template index c745dd2c7d389b..a8fd5ddc641356 100644 --- a/srcpkgs/qt6-wayland/template +++ b/srcpkgs/qt6-wayland/template @@ -1,6 +1,6 @@ # Template file for 'qt6-wayland' pkgname=qt6-wayland -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base perl pkg-config wayland-devel qt6-declarative-host-tools" @@ -14,7 +14,7 @@ maintainer="John " license="GPL-3.0-only WITH Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwayland-everywhere-src-${version}.tar.xz" -checksum=603f2b0a259b24bd0fb14f880d7761b1d248118a42a6870cdbe8fdda4173761f +checksum=391998eb432719df26a6a67d8efdc67f8bf2afdd76c1ee3381ebff4fe7527ee2 subpackages="qt6-wayland-private-devel qt6-wayland-devel" From 92b23738d96d3295c094e13871c8bf9f1740008b Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:13:01 +0100 Subject: [PATCH 076/295] qt6-webchannel: update to 6.10.1. --- srcpkgs/qt6-webchannel/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-webchannel/template b/srcpkgs/qt6-webchannel/template index 633199a5bc9a12..61b3047f6f8d3d 100644 --- a/srcpkgs/qt6-webchannel/template +++ b/srcpkgs/qt6-webchannel/template @@ -1,6 +1,6 @@ # Template file for 'qt6-webchannel' pkgname=qt6-webchannel -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" @@ -11,7 +11,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwebchannel-everywhere-src-${version}.tar.xz" -checksum=74165864fabf580e622fbb52553d8ca41b53b660ba20ec1f73fb71f4d9a95009 +checksum=e31ea59f8e19e0374d54fdc7a8479c840acffc4ba5297ee43564b5158a4f2c27 do_check() { cd build From 0c5807b25a0ed752581c0f2310033f6e898d23e2 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:13:03 +0100 Subject: [PATCH 077/295] qt6-websockets: update to 6.10.1. --- srcpkgs/qt6-websockets/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-websockets/template b/srcpkgs/qt6-websockets/template index 09d2228237000a..09fbc4abf6b4ca 100644 --- a/srcpkgs/qt6-websockets/template +++ b/srcpkgs/qt6-websockets/template @@ -1,6 +1,6 @@ # Template file for 'qt6-websockets' pkgname=qt6-websockets -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="perl qt6-base qt6-declarative-host-tools" @@ -12,7 +12,7 @@ maintainer="John " license="(LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only) AND GPL-3.0-only WITH Qt-GPL-exception-1.0" homepage="https://qt.io/" distfiles="http://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwebsockets-everywhere-src-${version}.tar.xz" -checksum=d1092e7da5c3b8eea242e4069f05ff8e710a17c54d5010c1b557e26f7948806e +checksum=eccc751bea509ef656d20029693987a0fc03c58e21c38f1351480f3c8eb42ebd do_check() { cd build From 54ea322fb4f7f0cae17c3f10d2eaa29f193d4225 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Jan 2026 21:13:05 +0100 Subject: [PATCH 078/295] qt6-webview: update to 6.10.1. --- srcpkgs/qt6-webview/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt6-webview/template b/srcpkgs/qt6-webview/template index cfce84a852f6e8..b81dc3016cbcb3 100644 --- a/srcpkgs/qt6-webview/template +++ b/srcpkgs/qt6-webview/template @@ -1,6 +1,6 @@ # Template file for 'qt6-webview' pkgname=qt6-webview -version=6.10.0 +version=6.10.2 revision=1 build_style=cmake hostmakedepends="qt6-base qt6-declarative-host-tools" @@ -10,7 +10,7 @@ maintainer="Đoàn Trần Công Danh " license="GPL-3.0-only, GPL-2.0-only, LGPL-3.0-only" homepage="https://www.qt.io" distfiles="https://download.qt.io/official_releases/qt/${version%.*}/${version}/submodules/qtwebview-everywhere-src-${version}.tar.xz" -checksum=a93564e6a5d10c09954b01a3140725caa2de574ce9c3332d4bced291d9fa3a0f +checksum=7ec406ff0998900ccef0ff8e4e5b1fbf15e4e18f3b43eb72e8b2aeda0dd0eab4 if [ "$XBPS_WORDSIZE$XBPS_WORDSIZE" != "64$XBPS_TARGET_WORDSIZE" ]; then broken="no qt6-webengine" From c870533984bd06a5083ac97ad00f95f25629d56e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 21:48:28 +0100 Subject: [PATCH 079/295] common: qt6 version updates --- .../hooks/pre-pkg/04-generate-runtime-deps.sh | 2 +- common/shlibs | 234 +++++++++--------- 2 files changed, 118 insertions(+), 118 deletions(-) diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh index 78781b91b4e78e..67caecf59cc6fd 100644 --- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh +++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh @@ -69,7 +69,7 @@ hook() { local _shlib_dir="${XBPS_STATEDIR}/shlib-provides" local _shlibtmp - local Qt_6_PRIVATE_API=6.10.0 + local Qt_6_PRIVATE_API=6.10.2 # Disable trap on ERR, xbps-uhelper cmd might return error... but not something # to be worried about because if there are broken shlibs this hook returns diff --git a/common/shlibs b/common/shlibs index e22fe2706e867d..ef93e614c251e4 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2150,123 +2150,123 @@ libqtermwidget5.so.1 qtermwidget-1.0.0_1 libqtermwidget6.so.2 qtermwidget-qt6-2.0.0_1 libmd4c.so.0 libmd4c-0.4.8_1 libmd4c-html.so.0 libmd4c-html-0.4.8_1 -libQt6Core.so.6 qt6-core-6.10.0_1 -libQt_6_PRIVATE_API.6.10.0 qt6-core-6.10.0_1 -libQt6OpenGL.so.6 qt6-gui-6.10.0_1 -libQt6DBus.so.6 qt6-dbus-6.10.0_1 -libQt6PrintSupport.so.6 qt6-printsupport-6.10.0_1 -libQt6Concurrent.so.6 qt6-concurrent-6.10.0_1 -libQt6Widgets.so.6 qt6-widgets-6.10.0_1 -libQt6Network.so.6 qt6-network-6.10.0_1 -libQt6Sql.so.6 qt6-sql-6.10.0_1 -libQt6Xml.so.6 qt6-xml-6.10.0_1 -libQt6Gui.so.6 qt6-gui-6.10.0_1 -libQt6XcbQpa.so.6 qt6-gui-6.10.0_1 -libQt6EglFSDeviceIntegration.so.6 qt6-gui-6.10.0_1 -libQt6EglFsKmsSupport.so.6 qt6-gui-6.10.0_1 -libQt6EglFsKmsGbmSupport.so.6 qt6-gui-6.10.0_1 -libQt6OpenGLWidgets.so.6 qt6-opengl-widgets-6.10.0_1 -libQt6Test.so.6 qt6-test-6.10.0_1 -libQt6WaylandCompositor.so.6 qt6-wayland-6.10.0_1 -libQt6WaylandClient.so.6 qt6-wayland-client-6.10.0_1 -libQt6Core5Compat.so.6 qt6-qt5compat-6.10.0_1 -libQt6Svg.so.6 qt6-svg-6.10.0_1 -libQt6SvgWidgets.so.6 qt6-svg-6.10.0_1 -libQt6Qml.so.6 qt6-declarative-6.10.0_1 -libQt6LabsAnimation.so.6 qt6-declarative-6.10.0_1 -libQt6LabsFolderListModel.so.6 qt6-declarative-6.10.0_1 -libQt6LabsQmlModels.so.6 qt6-declarative-6.10.0_1 -libQt6LabsSettings.so.6 qt6-declarative-6.10.0_1 -libQt6LabsSharedImage.so.6 qt6-declarative-6.10.0_1 -libQt6LabsWavefrontMesh.so.6 qt6-declarative-6.10.0_1 -libQt6QmlLocalStorage.so.6 qt6-declarative-6.10.0_1 -libQt6QmlWorkerScript.so.6 qt6-declarative-6.10.0_1 -libQt6QmlXmlListModel.so.6 qt6-declarative-6.10.0_1 -libQt6QuickTest.so.6 qt6-quick-test-6.10.0_1 -libQt6QuickShapes.so.6 qt6-declarative-6.10.0_1 -libQt6QuickWidgets.so.6 qt6-declarative-6.10.0_1 -libQt6Quick.so.6 qt6-declarative-6.10.0_1 -libQt6QmlMeta.so.6 qt6-declarative-6.10.0_1 -libQt6QmlModels.so.6 qt6-declarative-6.10.0_1 -libQt6QuickLayouts.so.6 qt6-declarative-6.10.0_1 -libQt6QuickParticles.so.6 qt6-declarative-6.10.0_1 -libQt6QmlCompiler.so.6 qt6-declarative-6.10.0_1 -libQt6ShaderTools.so.6 libqt6shadertools-6.10.0_1 -libQt6Quick3D.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DRuntimeRender.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DUtils.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DAssetImport.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DIblBaker.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DParticles.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DGlslParser.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DAssetUtils.so.6 qt6-quick3d-6.10.0_1 -libQt6Quick3DPhysics.so.6 qt6-quick3dphysics-6.10.0_1 -libQt6Quick3DPhysicsHelpers.so.6 qt6-quick3dphysics-6.10.0_1 -libQt6QuickTimeline.so.6 qt6-quicktimeline-6.10.0_1 -libQt6QuickControls2Impl.so.6 qt6-declarative-6.10.0_1 -libQt6QuickControls2.so.6 qt6-declarative-6.10.0_1 -libQt6QuickTemplates2.so.6 qt6-declarative-6.10.0_1 -libQt6QuickVectorImageGenerator.so.6 qt6-declarative-6.10.0_1 -libQt6NetworkAuth.so.6 qt6-networkauth-6.10.0_1 -libQt6ScxmlQml.so.6 qt6-scxml-6.10.0_1 -libQt6Scxml.so.6 qt6-scxml-6.10.0_1 -libQt6StateMachine.so.6 qt6-scxml-6.10.0_1 -libQt6StateMachineQml.so.6 qt6-scxml-6.10.0_1 -libQt6Bodymovin.so.6 qt6-lottie-6.10.0_1 -libQt63DQuickAnimation.so.6 qt6-3d-6.10.0_1 -libQt63DQuickRender.so.6 qt6-3d-6.10.0_1 -libQt63DExtras.so.6 qt6-3d-6.10.0_1 -libQt63DQuickInput.so.6 qt6-3d-6.10.0_1 -libQt63DCore.so.6 qt6-3d-6.10.0_1 -libQt63DQuickScene2D.so.6 qt6-3d-6.10.0_1 -libQt63DLogic.so.6 qt6-3d-6.10.0_1 -libQt63DRender.so.6 qt6-3d-6.10.0_1 -libQt63DAnimation.so.6 qt6-3d-6.10.0_1 -libQt63DQuickExtras.so.6 qt6-3d-6.10.0_1 -libQt63DInput.so.6 qt6-3d-6.10.0_1 -libQt63DQuick.so.6 qt6-3d-6.10.0_1 -libQt6Charts.so.6 qt6-charts-6.10.0_1 -libQt6Designer.so.6 qt6-designer-6.10.0_1 -libQt6DesignerComponents.so.6 qt6-designer-6.10.0_1 -libQt6Help.so.6 qt6-help-6.10.0_1 -libQt6UiTools.so.6 qt6-ui-tools-6.10.0_1 -libQt6Nfc.so.6 qt6-connectivity-6.10.0_1 -libQt6Bluetooth.so.6 qt6-connectivity-6.10.0_1 -libQt6RemoteObjects.so.6 qt6-remoteobjects-6.10.0_1 -libQt6RemoteObjectsQml.so.6 qt6-remoteobjects-6.10.0_1 -libQt6Sensors.so.6 qt6-sensors-6.10.0_1 -libQt6SensorsQuick.so.6 qt6-sensors-6.10.0_1 -libQt6HunspellInputMethod.so.6 qt6-virtualkeyboard-6.10.0_1 -libQt6VirtualKeyboard.so.6 qt6-virtualkeyboard-6.10.0_1 -libQt6SerialPort.so.6 qt6-serialport-6.10.0_1 -libQt6SerialBus.so.6 qt6-serialbus-6.10.0_1 -libQt6WebSockets.so.6 qt6-websockets-6.10.0_1 -libQt6HttpServer.so.6 qt6-httpserver-6.10.0_1 -libQt6WebChannel.so.6 qt6-webchannel-6.10.0_1 -libQt6WebChannelQuick.so.6 qt6-webchannel-6.10.0_1 -libQt6Positioning.so.6 qt6-position-6.10.0_1 -libQt6PositioningQuick.so.6 qt6-position-6.10.0_1 -libQt6Location.so.6 qt6-location-6.10.0_1 -libQt6MultimediaWidgets.so.6 qt6-multimedia-6.10.0_1 -libQt6MultimediaQuick.so.6 qt6-multimedia-6.10.0_1 -libQt6Multimedia.so.6 qt6-multimedia-6.10.0_1 -libQt6SpatialAudio.so.6 qt6-multimedia-6.10.0_1 -libQt6Graphs.so.6 qt6-graphs-6.10.0_1 -libQt6GraphsWidgets.so.6 qt6-graphs-6.10.0_1 -libQt6DataVisualization.so.6 qt6-datavis3d-6.10.0_1 -libQt6DataVisualizationQml.so.6 qt6-datavis3d-6.10.0_1 -libQt6TextToSpeech.so.6 qt6-speech-6.10.0_1 -libQt6JsonRpc.so.6 qt6-languageserver-6.10.0_1 -libQt6LanguageServer.so.6 qt6-languageserver-6.10.0_1 -libQt6Pdf.so.6 qt6-pdf-6.10.0_1 -libQt6PdfWidgets.so.6 qt6-pdf-6.10.0_1 -libQt6PdfQuick.so.6 qt6-pdf-6.10.0_1 -libQt6WebEngineCore.so.6 qt6-webengine-6.10.0_1 -libQt6WebEngineQuick.so.6 qt6-webengine-6.10.0_1 -libQt6WebEngineQuickDelegatesQml.so.6 qt6-webengine-6.10.0_1 -libQt6WebEngineWidgets.so.6 qt6-webengine-6.10.0_1 -libQt6WebView.so.6 qt6-webview-6.10.0_1 -libQt6WebViewQuick.so.6 qt6-webview-6.10.0_1 +libQt6Core.so.6 qt6-core-6.10.2_1 +libQt_6_PRIVATE_API.6.10.2 qt6-core-6.10.2_1 +libQt6OpenGL.so.6 qt6-gui-6.10.2_1 +libQt6DBus.so.6 qt6-dbus-6.10.2_1 +libQt6PrintSupport.so.6 qt6-printsupport-6.10.2_1 +libQt6Concurrent.so.6 qt6-concurrent-6.10.2_1 +libQt6Widgets.so.6 qt6-widgets-6.10.2_1 +libQt6Network.so.6 qt6-network-6.10.2_1 +libQt6Sql.so.6 qt6-sql-6.10.2_1 +libQt6Xml.so.6 qt6-xml-6.10.2_1 +libQt6Gui.so.6 qt6-gui-6.10.2_1 +libQt6XcbQpa.so.6 qt6-gui-6.10.2_1 +libQt6EglFSDeviceIntegration.so.6 qt6-gui-6.10.2_1 +libQt6EglFsKmsSupport.so.6 qt6-gui-6.10.2_1 +libQt6EglFsKmsGbmSupport.so.6 qt6-gui-6.10.2_1 +libQt6OpenGLWidgets.so.6 qt6-opengl-widgets-6.10.2_1 +libQt6Test.so.6 qt6-test-6.10.2_1 +libQt6WaylandCompositor.so.6 qt6-wayland-6.10.2_1 +libQt6WaylandClient.so.6 qt6-wayland-client-6.10.2_1 +libQt6Core5Compat.so.6 qt6-qt5compat-6.10.2_1 +libQt6Svg.so.6 qt6-svg-6.10.2_1 +libQt6SvgWidgets.so.6 qt6-svg-6.10.2_1 +libQt6Qml.so.6 qt6-declarative-6.10.2_1 +libQt6LabsAnimation.so.6 qt6-declarative-6.10.2_1 +libQt6LabsFolderListModel.so.6 qt6-declarative-6.10.2_1 +libQt6LabsQmlModels.so.6 qt6-declarative-6.10.2_1 +libQt6LabsSettings.so.6 qt6-declarative-6.10.2_1 +libQt6LabsSharedImage.so.6 qt6-declarative-6.10.2_1 +libQt6LabsWavefrontMesh.so.6 qt6-declarative-6.10.2_1 +libQt6QmlLocalStorage.so.6 qt6-declarative-6.10.2_1 +libQt6QmlWorkerScript.so.6 qt6-declarative-6.10.2_1 +libQt6QmlXmlListModel.so.6 qt6-declarative-6.10.2_1 +libQt6QuickTest.so.6 qt6-quick-test-6.10.2_1 +libQt6QuickShapes.so.6 qt6-declarative-6.10.2_1 +libQt6QuickWidgets.so.6 qt6-declarative-6.10.2_1 +libQt6Quick.so.6 qt6-declarative-6.10.2_1 +libQt6QmlMeta.so.6 qt6-declarative-6.10.2_1 +libQt6QmlModels.so.6 qt6-declarative-6.10.2_1 +libQt6QuickLayouts.so.6 qt6-declarative-6.10.2_1 +libQt6QuickParticles.so.6 qt6-declarative-6.10.2_1 +libQt6QmlCompiler.so.6 qt6-declarative-6.10.2_1 +libQt6ShaderTools.so.6 libqt6shadertools-6.10.2_1 +libQt6Quick3D.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DRuntimeRender.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DUtils.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DAssetImport.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DIblBaker.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DParticles.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DGlslParser.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DAssetUtils.so.6 qt6-quick3d-6.10.2_1 +libQt6Quick3DPhysics.so.6 qt6-quick3dphysics-6.10.2_1 +libQt6Quick3DPhysicsHelpers.so.6 qt6-quick3dphysics-6.10.2_1 +libQt6QuickTimeline.so.6 qt6-quicktimeline-6.10.2_1 +libQt6QuickControls2Impl.so.6 qt6-declarative-6.10.2_1 +libQt6QuickControls2.so.6 qt6-declarative-6.10.2_1 +libQt6QuickTemplates2.so.6 qt6-declarative-6.10.2_1 +libQt6QuickVectorImageGenerator.so.6 qt6-declarative-6.10.2_1 +libQt6NetworkAuth.so.6 qt6-networkauth-6.10.2_1 +libQt6ScxmlQml.so.6 qt6-scxml-6.10.2_1 +libQt6Scxml.so.6 qt6-scxml-6.10.2_1 +libQt6StateMachine.so.6 qt6-scxml-6.10.2_1 +libQt6StateMachineQml.so.6 qt6-scxml-6.10.2_1 +libQt6Bodymovin.so.6 qt6-lottie-6.10.2_1 +libQt63DQuickAnimation.so.6 qt6-3d-6.10.2_1 +libQt63DQuickRender.so.6 qt6-3d-6.10.2_1 +libQt63DExtras.so.6 qt6-3d-6.10.2_1 +libQt63DQuickInput.so.6 qt6-3d-6.10.2_1 +libQt63DCore.so.6 qt6-3d-6.10.2_1 +libQt63DQuickScene2D.so.6 qt6-3d-6.10.2_1 +libQt63DLogic.so.6 qt6-3d-6.10.2_1 +libQt63DRender.so.6 qt6-3d-6.10.2_1 +libQt63DAnimation.so.6 qt6-3d-6.10.2_1 +libQt63DQuickExtras.so.6 qt6-3d-6.10.2_1 +libQt63DInput.so.6 qt6-3d-6.10.2_1 +libQt63DQuick.so.6 qt6-3d-6.10.2_1 +libQt6Charts.so.6 qt6-charts-6.10.2_1 +libQt6Designer.so.6 qt6-designer-6.10.2_1 +libQt6DesignerComponents.so.6 qt6-designer-6.10.2_1 +libQt6Help.so.6 qt6-help-6.10.2_1 +libQt6UiTools.so.6 qt6-ui-tools-6.10.2_1 +libQt6Nfc.so.6 qt6-connectivity-6.10.2_1 +libQt6Bluetooth.so.6 qt6-connectivity-6.10.2_1 +libQt6RemoteObjects.so.6 qt6-remoteobjects-6.10.2_1 +libQt6RemoteObjectsQml.so.6 qt6-remoteobjects-6.10.2_1 +libQt6Sensors.so.6 qt6-sensors-6.10.2_1 +libQt6SensorsQuick.so.6 qt6-sensors-6.10.2_1 +libQt6HunspellInputMethod.so.6 qt6-virtualkeyboard-6.10.2_1 +libQt6VirtualKeyboard.so.6 qt6-virtualkeyboard-6.10.2_1 +libQt6SerialPort.so.6 qt6-serialport-6.10.2_1 +libQt6SerialBus.so.6 qt6-serialbus-6.10.2_1 +libQt6WebSockets.so.6 qt6-websockets-6.10.2_1 +libQt6HttpServer.so.6 qt6-httpserver-6.10.2_1 +libQt6WebChannel.so.6 qt6-webchannel-6.10.2_1 +libQt6WebChannelQuick.so.6 qt6-webchannel-6.10.2_1 +libQt6Positioning.so.6 qt6-position-6.10.2_1 +libQt6PositioningQuick.so.6 qt6-position-6.10.2_1 +libQt6Location.so.6 qt6-location-6.10.2_1 +libQt6MultimediaWidgets.so.6 qt6-multimedia-6.10.2_1 +libQt6MultimediaQuick.so.6 qt6-multimedia-6.10.2_1 +libQt6Multimedia.so.6 qt6-multimedia-6.10.2_1 +libQt6SpatialAudio.so.6 qt6-multimedia-6.10.2_1 +libQt6Graphs.so.6 qt6-graphs-6.10.2_1 +libQt6GraphsWidgets.so.6 qt6-graphs-6.10.2_1 +libQt6DataVisualization.so.6 qt6-datavis3d-6.10.2_1 +libQt6DataVisualizationQml.so.6 qt6-datavis3d-6.10.2_1 +libQt6TextToSpeech.so.6 qt6-speech-6.10.2_1 +libQt6JsonRpc.so.6 qt6-languageserver-6.10.2_1 +libQt6LanguageServer.so.6 qt6-languageserver-6.10.2_1 +libQt6Pdf.so.6 qt6-pdf-6.10.2_1 +libQt6PdfWidgets.so.6 qt6-pdf-6.10.2_1 +libQt6PdfQuick.so.6 qt6-pdf-6.10.2_1 +libQt6WebEngineCore.so.6 qt6-webengine-6.10.2_1 +libQt6WebEngineQuick.so.6 qt6-webengine-6.10.2_1 +libQt6WebEngineQuickDelegatesQml.so.6 qt6-webengine-6.10.2_1 +libQt6WebEngineWidgets.so.6 qt6-webengine-6.10.2_1 +libQt6WebView.so.6 qt6-webview-6.10.2_1 +libQt6WebViewQuick.so.6 qt6-webview-6.10.2_1 libQCoro6Core.so.0 qcoro-qt6-0.10.0_1 libQCoro6DBus.so.0 qcoro-qt6-0.10.0_1 libQCoro6Network.so.0 qcoro-qt6-0.10.0_1 From fcd4346fc500061d3a04e68a7180ef3a153be4e0 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:45 +0100 Subject: [PATCH 080/295] CopyQ: rebuild against Qt 6.10.2 --- srcpkgs/CopyQ/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/CopyQ/template b/srcpkgs/CopyQ/template index baec0921c04448..646309d5193a71 100644 --- a/srcpkgs/CopyQ/template +++ b/srcpkgs/CopyQ/template @@ -1,14 +1,14 @@ # Template file for 'CopyQ' pkgname=CopyQ version=13.0.0 -revision=1 +revision=2 build_style=cmake configure_args="-DWITH_QT6=ON" hostmakedepends="extra-cmake-modules pkg-config qt6-base qt6-tools wayland-devel" makedepends="qt6-base-private-devel qt6-declarative-devel qt6-svg-devel kf6-knotifications-devel kf6-kstatusnotifieritem-devel - kf6-kguiaddons-devel wayland-devel libX11-devel" + kf6-kguiaddons-devel wayland-devel libX11-devel qt6-tools-devel" depends="qt6-svg" short_desc="Clipboard manager with searchable and editable history" maintainer="mobinmob " From 5a2d2b90741359d62c51dc64a96bf6ed9efcf25c Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:46 +0100 Subject: [PATCH 081/295] actiona: rebuild against Qt 6.10.2 --- srcpkgs/actiona/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/actiona/template b/srcpkgs/actiona/template index a0b2081173d046..b85620126917b5 100644 --- a/srcpkgs/actiona/template +++ b/srcpkgs/actiona/template @@ -1,7 +1,7 @@ # Template file for 'actiona' pkgname=actiona version=3.11.1 -revision=1 +revision=2 build_style=cmake configure_args="-DACT_UPDATER=OFF" hostmakedepends="pkg-config qt6-base qt6-tools" From 480091697b5fd2070ad378c36800156e4d8bb79a Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:46 +0100 Subject: [PATCH 082/295] bibletime: rebuild against Qt 6.10.2 --- srcpkgs/bibletime/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bibletime/template b/srcpkgs/bibletime/template index 23d89f8715a3f3..2fb192b3c5d742 100644 --- a/srcpkgs/bibletime/template +++ b/srcpkgs/bibletime/template @@ -4,7 +4,7 @@ # to start. pkgname=bibletime version=3.1.1 -revision=1 +revision=2 build_style=cmake configure_args="-DBT_DOCBOOK_XSL_HTML_CHUNK_XSL=/usr/share/xsl/docbook/html/chunk.xsl -DBT_DOCBOOK_XSL_PDF_DOCBOOK_XSL=/usr/share/xsl/docbook/fo/docbook.xsl" From 7c5483ae8bad4e0d9853a54f4cc2a53ca1bdac22 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:47 +0100 Subject: [PATCH 083/295] calibre: rebuild against Qt 6.10.2 --- srcpkgs/calibre/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/calibre/template b/srcpkgs/calibre/template index 885f0f6b6ec887..729869f4201185 100644 --- a/srcpkgs/calibre/template +++ b/srcpkgs/calibre/template @@ -1,7 +1,7 @@ # Template file for 'calibre' pkgname=calibre version=8.7.0 -revision=3 +revision=4 build_helper=python3 pycompile_dirs="/usr/lib/calibre/" hostmakedepends="pkg-config cmake python3-BeautifulSoup4 python3-Pillow From 793ef67cd0cd707238034e813a08e06f7a32c687 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:47 +0100 Subject: [PATCH 084/295] dolphin: rebuild against Qt 6.10.2 --- srcpkgs/dolphin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dolphin/template b/srcpkgs/dolphin/template index f4c99a96ee9292..7723499b45d7e4 100644 --- a/srcpkgs/dolphin/template +++ b/srcpkgs/dolphin/template @@ -1,7 +1,7 @@ # Template file for 'dolphin' pkgname=dolphin version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From c2b5ac54783d72a5d6bc6caf93592208f2ce29bb Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:47 +0100 Subject: [PATCH 085/295] dooble: rebuild against Qt 6.10.2 --- srcpkgs/dooble/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dooble/template b/srcpkgs/dooble/template index 6405e143730633..7b83615dfd2f55 100644 --- a/srcpkgs/dooble/template +++ b/srcpkgs/dooble/template @@ -1,7 +1,7 @@ # Template file for 'dooble' pkgname=dooble version=2025.02.28 -revision=3 +revision=4 archs="x86_64* aarch64*" build_style=qmake configure_args="dooble.pro" From f744c2398f27e92d72e5713129d654bc4101407e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:48 +0100 Subject: [PATCH 086/295] dragon-player: rebuild against Qt 6.10.2 --- srcpkgs/dragon-player/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dragon-player/template b/srcpkgs/dragon-player/template index 6272730ac11486..fc5942e2e2b60f 100644 --- a/srcpkgs/dragon-player/template +++ b/srcpkgs/dragon-player/template @@ -1,7 +1,7 @@ # Template file for 'dragon-player' pkgname=dragon-player version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From ac5ab2c4c635f07cc86cdeff63ee9cd26c7ce2d8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:48 +0100 Subject: [PATCH 087/295] easyeffects: rebuild against Qt 6.10.2 --- srcpkgs/easyeffects/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/easyeffects/template b/srcpkgs/easyeffects/template index 15bd3a637160ee..e76fa09323bcaf 100644 --- a/srcpkgs/easyeffects/template +++ b/srcpkgs/easyeffects/template @@ -1,7 +1,7 @@ # Template file for 'easyeffects' pkgname=easyeffects version=8.0.9 -revision=3 +revision=4 build_style=cmake hostmakedepends="pkg-config desktop-file-utils extra-cmake-modules gettext glib-devel kf6-kconfig qt6-base qt6-declarative-tools qt6-declarative-private-devel" From 81de7acefcc2e1c59951761b8708277b6eba9664 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:49 +0100 Subject: [PATCH 088/295] elisa: rebuild against Qt 6.10.2 --- srcpkgs/elisa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/elisa/template b/srcpkgs/elisa/template index 421880692822eb..a71acd379d67e9 100644 --- a/srcpkgs/elisa/template +++ b/srcpkgs/elisa/template @@ -1,7 +1,7 @@ # Template file for 'elisa' pkgname=elisa version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 80a990ad30b01822b58c120c8a01f10d535e1a50 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:49 +0100 Subject: [PATCH 089/295] eqonomize: rebuild against Qt 6.10.2 --- srcpkgs/eqonomize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eqonomize/template b/srcpkgs/eqonomize/template index 0fb7bd07862bc8..f58916d6820e11 100644 --- a/srcpkgs/eqonomize/template +++ b/srcpkgs/eqonomize/template @@ -1,7 +1,7 @@ # Template file for 'eqonomize' pkgname=eqonomize version=1.5.11 -revision=1 +revision=2 build_style=qmake hostmakedepends="qt6-base" makedepends="qt6-charts-private-devel qt6-base-devel" From f1bac10db9c231095d48f3a148d39cc4f3638801 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:49 +0100 Subject: [PATCH 090/295] fcitx5-qt: rebuild against Qt 6.10.2 --- srcpkgs/fcitx5-qt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fcitx5-qt/template b/srcpkgs/fcitx5-qt/template index 3a3189dab51bd5..c7e7fcceb9db3b 100644 --- a/srcpkgs/fcitx5-qt/template +++ b/srcpkgs/fcitx5-qt/template @@ -1,7 +1,7 @@ # Template file for 'fcitx5-qt' pkgname=fcitx5-qt version=5.1.12 -revision=1 +revision=2 build_style=cmake configure_args="-DENABLE_QT4=OFF -DENABLE_QT5=ON -DCMAKE_INSTALL_QT6PLUGINDIR=/usr/lib/qt6/plugins From 15a52aa23177d6b35451fc7f5860e281659bd0e8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:50 +0100 Subject: [PATCH 091/295] gst-plugins-good1: rebuild against Qt 6.10.2 --- srcpkgs/gst-plugins-good1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gst-plugins-good1/template b/srcpkgs/gst-plugins-good1/template index 98daa698a809ac..df75298e53e5cd 100644 --- a/srcpkgs/gst-plugins-good1/template +++ b/srcpkgs/gst-plugins-good1/template @@ -1,7 +1,7 @@ # Template file for 'gst-plugins-good1' pkgname=gst-plugins-good1 version=1.26.5 -revision=2 +revision=3 build_style=meson build_helper="qmake qmake6" qmake_default_version=none From 1ff5502dc1d7526fbbebc23515ec8f8f4a2197c4 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:50 +0100 Subject: [PATCH 092/295] gwenview: rebuild against Qt 6.10.2 --- srcpkgs/gwenview/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gwenview/template b/srcpkgs/gwenview/template index 6eb9fd8b65389a..e0c920f1b133b6 100644 --- a/srcpkgs/gwenview/template +++ b/srcpkgs/gwenview/template @@ -1,7 +1,7 @@ # Template file for 'gwenview' pkgname=gwenview version=25.12.1 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From a7c74fcbbb5fc198a856273f178934fbb165e317 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:51 +0100 Subject: [PATCH 093/295] kasts: rebuild against Qt 6.10.2 --- srcpkgs/kasts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kasts/template b/srcpkgs/kasts/template index 7bd9268d7606ea..d6a928b9e96a2d 100644 --- a/srcpkgs/kasts/template +++ b/srcpkgs/kasts/template @@ -1,7 +1,7 @@ # Template file for 'kasts' pkgname=kasts version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 86f768e8e516fbbf3573d4b511c4244eab26b662 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:51 +0100 Subject: [PATCH 094/295] kate: rebuild against Qt 6.10.2 --- srcpkgs/kate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kate/template b/srcpkgs/kate/template index df203a8383e603..aad51603829554 100644 --- a/srcpkgs/kate/template +++ b/srcpkgs/kate/template @@ -1,7 +1,7 @@ # Template file for 'kate' pkgname=kate version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 3a49c3c0785b95230e3d1dc12be0296cf17906cb Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:51 +0100 Subject: [PATCH 095/295] kcm-wacomtablet: rebuild against Qt 6.10.2 --- srcpkgs/kcm-wacomtablet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kcm-wacomtablet/template b/srcpkgs/kcm-wacomtablet/template index 07c3ad2f3de466..7cacb5d0bd63c0 100644 --- a/srcpkgs/kcm-wacomtablet/template +++ b/srcpkgs/kcm-wacomtablet/template @@ -1,7 +1,7 @@ # Template file for 'kcm-wacomtablet' pkgname=kcm-wacomtablet version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From aadaaccfef2676446a825b9fd234f323a3e7bff8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:52 +0100 Subject: [PATCH 096/295] kddockwidgets: rebuild against Qt 6.10.2 --- srcpkgs/kddockwidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kddockwidgets/template b/srcpkgs/kddockwidgets/template index 5ff4231a3b52ee..7f93c7211aa337 100644 --- a/srcpkgs/kddockwidgets/template +++ b/srcpkgs/kddockwidgets/template @@ -1,7 +1,7 @@ # Template file for 'kddockwidgets' pkgname=kddockwidgets version=2.4.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDDockWidgets_QT6=true -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt6/mkspecs" From 3d682a94b1cc425d740b35591e2ae95653e8dd35 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:52 +0100 Subject: [PATCH 097/295] kde-cli-tools: rebuild against Qt 6.10.2 --- srcpkgs/kde-cli-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kde-cli-tools/template b/srcpkgs/kde-cli-tools/template index 04431f0796b42f..201a4e54ab3017 100644 --- a/srcpkgs/kde-cli-tools/template +++ b/srcpkgs/kde-cli-tools/template @@ -1,7 +1,7 @@ # Template file for 'kde-cli-tools' pkgname=kde-cli-tools version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 9ed44789144ab6fd76bb4bc2f74e589f17e6cbc7 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:53 +0100 Subject: [PATCH 098/295] kdeconnect: rebuild against Qt 6.10.2 --- srcpkgs/kdeconnect/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdeconnect/template b/srcpkgs/kdeconnect/template index 21f4af016f514d..ee2454049080ed 100644 --- a/srcpkgs/kdeconnect/template +++ b/srcpkgs/kdeconnect/template @@ -1,7 +1,7 @@ # Template file for 'kdeconnect' pkgname=kdeconnect version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DBLUETOOTH_ENABLED=ON From ae52701ef9be2fdf8f1e2ea76c967c3303317174 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:53 +0100 Subject: [PATCH 099/295] kdenlive: rebuild against Qt 6.10.2 --- srcpkgs/kdenlive/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdenlive/template b/srcpkgs/kdenlive/template index a14c2af9474529..3c30d8ca94577e 100644 --- a/srcpkgs/kdenlive/template +++ b/srcpkgs/kdenlive/template @@ -1,7 +1,7 @@ # Template file for 'kdenlive' pkgname=kdenlive version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DFETCH_OTIO=OFF From 464a6adace45f05e086d53b4081e2b646364a94d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:54 +0100 Subject: [PATCH 100/295] kdeplasma-addons: rebuild against Qt 6.10.2 --- srcpkgs/kdeplasma-addons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdeplasma-addons/template b/srcpkgs/kdeplasma-addons/template index fb957e185790cd..0f5f88e655972f 100644 --- a/srcpkgs/kdeplasma-addons/template +++ b/srcpkgs/kdeplasma-addons/template @@ -1,7 +1,7 @@ # Template file for 'kdeplasma-addons' pkgname=kdeplasma-addons version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 7464d8d35594c8abe69bc93ca10a8ecdd55ce82c Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:54 +0100 Subject: [PATCH 101/295] kf6-akonadi: rebuild against Qt 6.10.2 --- srcpkgs/kf6-akonadi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-akonadi/template b/srcpkgs/kf6-akonadi/template index 640b9e3ee8b90e..2b379ed8629a68 100644 --- a/srcpkgs/kf6-akonadi/template +++ b/srcpkgs/kf6-akonadi/template @@ -1,7 +1,7 @@ # Template file for 'kf6-akonadi' pkgname=kf6-akonadi version=25.12.0 -revision=1 +revision=2 build_style=cmake build_helper="qemu" configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake From 75eba147449fd7d19438a216b24dfc3b93bd7eb1 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:54 +0100 Subject: [PATCH 102/295] kf6-bluez-qt: rebuild against Qt 6.10.2 --- srcpkgs/kf6-bluez-qt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-bluez-qt/template b/srcpkgs/kf6-bluez-qt/template index 24fefe6f57ac0e..d28c00ccd30add 100644 --- a/srcpkgs/kf6-bluez-qt/template +++ b/srcpkgs/kf6-bluez-qt/template @@ -1,7 +1,7 @@ # Template file for 'kf6-bluez-qt' pkgname=kf6-bluez-qt version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml" hostmakedepends="extra-cmake-modules qt6-tools qt6-base From 22de4069aa919547a4b545ab752813b7d4c5b32b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:55 +0100 Subject: [PATCH 103/295] kf6-kcmutils: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kcmutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kcmutils/template b/srcpkgs/kf6-kcmutils/template index 5874d0baabf202..b59ba165f53a31 100644 --- a/srcpkgs/kf6-kcmutils/template +++ b/srcpkgs/kf6-kcmutils/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kcmutils' pkgname=kf6-kcmutils version=6.21.0 -revision=1 +revision=2 build_style=cmake build_helper=qemu configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake From 4ca5304bd39bc1b7a92f49edd6e25824f27c8c50 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:55 +0100 Subject: [PATCH 104/295] kf6-kcolorscheme: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kcolorscheme/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kcolorscheme/template b/srcpkgs/kf6-kcolorscheme/template index 8e850e556f5f10..a44957727ebc81 100644 --- a/srcpkgs/kf6-kcolorscheme/template +++ b/srcpkgs/kf6-kcolorscheme/template @@ -1,12 +1,14 @@ # Template file for 'kf6-kcolorscheme' pkgname=kf6-kcolorscheme version=6.21.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules qt6-tools qt6-base kf6-kconfig gettext" makedepends="kf6-kconfig-devel kf6-kguiaddons-devel kf6-ki18n-devel qt6-base-private-devel" +# transitive deps from kf6-kguiaddons, for build ordering +makedepends+=" libpyside6-devel" short_desc="Classes to read and interact with KColorScheme" maintainer="John " license="LGPL-2.1-or-later" From c2fc701cf07b3fbdbfc3dfcfeaeed024d4fd7f26 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:56 +0100 Subject: [PATCH 105/295] kf6-kconfigwidgets: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kconfigwidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kconfigwidgets/template b/srcpkgs/kf6-kconfigwidgets/template index ff8565235ded71..d4f77225454740 100644 --- a/srcpkgs/kf6-kconfigwidgets/template +++ b/srcpkgs/kf6-kconfigwidgets/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kconfigwidgets' pkgname=kf6-kconfigwidgets version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules qt6-tools qt6-base From de5a3aa09b20a1e9dbacae9f6d973f9630521eb5 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:56 +0100 Subject: [PATCH 106/295] kf6-kdbusaddons: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kdbusaddons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kdbusaddons/template b/srcpkgs/kf6-kdbusaddons/template index 7602b717312d5a..16a8a152debeca 100644 --- a/srcpkgs/kf6-kdbusaddons/template +++ b/srcpkgs/kf6-kdbusaddons/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kdbusaddons' pkgname=kf6-kdbusaddons version=6.21.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules qt6-tools qt6-base " makedepends="qt6-base-private-devel" From bd5c64580e3308f3f7386a5399d32e9a1a99634c Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:56 +0100 Subject: [PATCH 107/295] kf6-kdeclarative: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kdeclarative/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kdeclarative/template b/srcpkgs/kf6-kdeclarative/template index d971f49f16bb4f..41d89333267b4b 100644 --- a/srcpkgs/kf6-kdeclarative/template +++ b/srcpkgs/kf6-kdeclarative/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kdeclarative' pkgname=kf6-kdeclarative version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml" hostmakedepends="extra-cmake-modules qt6-tools qt6-base From f76f74161a9e998aca89fe87df98de52f3447ed6 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:57 +0100 Subject: [PATCH 108/295] kf6-kglobalaccel: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kglobalaccel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kglobalaccel/template b/srcpkgs/kf6-kglobalaccel/template index 02eba798da4c23..f150d032fe80fa 100644 --- a/srcpkgs/kf6-kglobalaccel/template +++ b/srcpkgs/kf6-kglobalaccel/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kglobalaccel' pkgname=kf6-kglobalaccel version=6.21.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="extra-cmake-modules qt6-tools qt6-base " makedepends="qt6-base-private-devel qt6-declarative-devel" From cfb5305e9dc41cc0846e0346e18410c5cafea648 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:57 +0100 Subject: [PATCH 109/295] kf6-kiconthemes: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kiconthemes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kiconthemes/template b/srcpkgs/kf6-kiconthemes/template index 75c7ed312a36d3..9227b30166136c 100644 --- a/srcpkgs/kf6-kiconthemes/template +++ b/srcpkgs/kf6-kiconthemes/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kiconthemes' pkgname=kf6-kiconthemes version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From f913b3e7d18c5d195b07f7d04428dadd95879fd9 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:58 +0100 Subject: [PATCH 110/295] kf6-kio: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kio/template b/srcpkgs/kf6-kio/template index c5d5f6807ab084..b8356feb112ab2 100644 --- a/srcpkgs/kf6-kio/template +++ b/srcpkgs/kf6-kio/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kio' pkgname=kf6-kio version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKF6_HOST_TOOLING=/usr/lib/cmake From 9bbc8f8c9469a5909defe395ee2b044450ca8393 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:58 +0100 Subject: [PATCH 111/295] kf6-kirigami: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kirigami/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kirigami/template b/srcpkgs/kf6-kirigami/template index 0f1e6bf00ff3d5..652754ffd94ebf 100644 --- a/srcpkgs/kf6-kirigami/template +++ b/srcpkgs/kf6-kirigami/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kirigami' pkgname=kf6-kirigami version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 0c01e7c3d203ae48d8ace57b4edde61de0f807b0 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:59 +0100 Subject: [PATCH 112/295] kf6-kjobwidgets: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kjobwidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kjobwidgets/template b/srcpkgs/kf6-kjobwidgets/template index 43b02b69f85f32..711452f8bd4c97 100644 --- a/srcpkgs/kf6-kjobwidgets/template +++ b/srcpkgs/kf6-kjobwidgets/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kjobwidgets' pkgname=kf6-kjobwidgets version=6.21.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From b24d5e84296be9c2124d8ef53ba670326a96d99b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:59 +0100 Subject: [PATCH 113/295] kf6-knewstuff: rebuild against Qt 6.10.2 --- srcpkgs/kf6-knewstuff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-knewstuff/template b/srcpkgs/kf6-knewstuff/template index d66f25889d3e25..d8c1c46b26212a 100644 --- a/srcpkgs/kf6-knewstuff/template +++ b/srcpkgs/kf6-knewstuff/template @@ -1,7 +1,7 @@ # Template file for 'kf6-knewstuff' pkgname=kf6-knewstuff version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 1987c3b77a513e8903b1211c0f076a685f326844 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:47:59 +0100 Subject: [PATCH 114/295] kf6-kquickcharts: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kquickcharts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kquickcharts/template b/srcpkgs/kf6-kquickcharts/template index 2afe9c1770e075..65a04d46ab25df 100644 --- a/srcpkgs/kf6-kquickcharts/template +++ b/srcpkgs/kf6-kquickcharts/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kquickcharts' pkgname=kf6-kquickcharts version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 48556f40e8fd50933d4d8235a3a8a6d99c4e831b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:00 +0100 Subject: [PATCH 115/295] kf6-kwayland: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kwayland/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kwayland/template b/srcpkgs/kf6-kwayland/template index a88062f5284df9..a60f5cb679453b 100644 --- a/srcpkgs/kf6-kwayland/template +++ b/srcpkgs/kf6-kwayland/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kwayland' pkgname=kf6-kwayland version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" hostmakedepends="kf6-kcoreaddons pkg-config extra-cmake-modules qt6-tools qt6-base From 1374e2d78f7523023e3ff3ee131f31d5cde93ad8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:00 +0100 Subject: [PATCH 116/295] kf6-kwindowsystem: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kwindowsystem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kwindowsystem/template b/srcpkgs/kf6-kwindowsystem/template index d72c5e03828c9c..1d23ff1622f255 100644 --- a/srcpkgs/kf6-kwindowsystem/template +++ b/srcpkgs/kf6-kwindowsystem/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kwindowsystem' pkgname=kf6-kwindowsystem version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 75cf1f9621ad8f1cd82fbb4c8e544fefa9942181 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:01 +0100 Subject: [PATCH 117/295] kf6-kxmlgui: rebuild against Qt 6.10.2 --- srcpkgs/kf6-kxmlgui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kxmlgui/template b/srcpkgs/kf6-kxmlgui/template index 1dcc0ccebcf9ad..2fa6f4ec6ea743 100644 --- a/srcpkgs/kf6-kxmlgui/template +++ b/srcpkgs/kf6-kxmlgui/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kxmlgui' pkgname=kf6-kxmlgui version=6.21.0 -revision=1 +revision=2 _llvmver=21 build_style=cmake configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From b2f4d6adf32cb4257fffdb23a98a0eef45aafc53 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:01 +0100 Subject: [PATCH 118/295] kf6-purpose: rebuild against Qt 6.10.2 --- srcpkgs/kf6-purpose/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-purpose/template b/srcpkgs/kf6-purpose/template index 44b4ef15007620..c779df6226ff58 100644 --- a/srcpkgs/kf6-purpose/template +++ b/srcpkgs/kf6-purpose/template @@ -1,7 +1,7 @@ # Template file for 'kf6-purpose' pkgname=kf6-purpose version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 6b9a62b92a7e87be3399b0f34097cecf66b065ae Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:01 +0100 Subject: [PATCH 119/295] kf6-qqc2-desktop-style: rebuild against Qt 6.10.2 --- srcpkgs/kf6-qqc2-desktop-style/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-qqc2-desktop-style/template b/srcpkgs/kf6-qqc2-desktop-style/template index 643cbb8d37ce91..fd22b8982a9cb0 100644 --- a/srcpkgs/kf6-qqc2-desktop-style/template +++ b/srcpkgs/kf6-qqc2-desktop-style/template @@ -1,7 +1,7 @@ # Template file for 'kf6-qqc2-desktop-style' pkgname=kf6-qqc2-desktop-style version=6.21.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From db3ca9c6b57772f0a6a097b3121e2a9b73251d06 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:02 +0100 Subject: [PATCH 120/295] kglobalacceld: rebuild against Qt 6.10.2 --- srcpkgs/kglobalacceld/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kglobalacceld/template b/srcpkgs/kglobalacceld/template index a5c51e858c688a..b7d6211d5990c4 100644 --- a/srcpkgs/kglobalacceld/template +++ b/srcpkgs/kglobalacceld/template @@ -1,7 +1,7 @@ # Template file for 'kglobalacceld' pkgname=kglobalacceld version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules qt6-base qt6-tools kf6-kconfig" From 393bb8addd5c4c4e6c90c1fc30c475caf356faae Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:02 +0100 Subject: [PATCH 121/295] kidentitymanagement: rebuild against Qt 6.10.2 --- srcpkgs/kidentitymanagement/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kidentitymanagement/template b/srcpkgs/kidentitymanagement/template index 91cbeef0eff24f..97507b8787414b 100644 --- a/srcpkgs/kidentitymanagement/template +++ b/srcpkgs/kidentitymanagement/template @@ -1,7 +1,7 @@ # Template file for 'kidentitymanagement' pkgname=kidentitymanagement version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 56920d9ec0b3fbbbd1ff5e8a5a348fb6d25d34ed Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:03 +0100 Subject: [PATCH 122/295] kinfocenter: rebuild against Qt 6.10.2 --- srcpkgs/kinfocenter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kinfocenter/template b/srcpkgs/kinfocenter/template index 367b9e6f512416..e4c44284fd073d 100644 --- a/srcpkgs/kinfocenter/template +++ b/srcpkgs/kinfocenter/template @@ -1,7 +1,7 @@ # Template file for 'kinfocenter' pkgname=kinfocenter version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 9d15fbc2ba46d10b7ec377d8ef483544fea66c83 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:03 +0100 Subject: [PATCH 123/295] kirigami-addons: rebuild against Qt 6.10.2 --- srcpkgs/kirigami-addons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kirigami-addons/template b/srcpkgs/kirigami-addons/template index 8cba3e15c477b1..70017bead5f8dd 100644 --- a/srcpkgs/kirigami-addons/template +++ b/srcpkgs/kirigami-addons/template @@ -1,7 +1,7 @@ # Template file for 'kirigami-addons' pkgname=kirigami-addons version=1.11.0 -revision=3 +revision=4 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DBUILD_TESTING=OFF -DBUILD_QCH=ON" From e695dd63d034c1bebef7288b677852b968820dda Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:04 +0100 Subject: [PATCH 124/295] kmail-account-wizard: rebuild against Qt 6.10.2 --- srcpkgs/kmail-account-wizard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kmail-account-wizard/template b/srcpkgs/kmail-account-wizard/template index df8bc9bd94817f..e9bcb45be71a13 100644 --- a/srcpkgs/kmail-account-wizard/template +++ b/srcpkgs/kmail-account-wizard/template @@ -1,7 +1,7 @@ # Template file for 'kmail-account-wizard' pkgname=kmail-account-wizard version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 0e9ca96b7f178c566d0d7d2ebf4836a0d339fc9d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:04 +0100 Subject: [PATCH 125/295] kmymoney: rebuild against Qt 6.10.2 --- srcpkgs/kmymoney/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kmymoney/template b/srcpkgs/kmymoney/template index d21f87d5260294..659548227eb405 100644 --- a/srcpkgs/kmymoney/template +++ b/srcpkgs/kmymoney/template @@ -1,7 +1,7 @@ # Template file for 'kmymoney' pkgname=kmymoney version=5.2.1 -revision=5 +revision=6 build_style=cmake configure_args="-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DBUILD_WITH_QT6=ON -DENABLE_GPG=ON From cf1d7b36e4db07415de74fd11a6ea359bf00f648 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:04 +0100 Subject: [PATCH 126/295] konqueror: rebuild against Qt 6.10.2 --- srcpkgs/konqueror/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/konqueror/template b/srcpkgs/konqueror/template index a44d882b6237a0..0100a0c428e4e5 100644 --- a/srcpkgs/konqueror/template +++ b/srcpkgs/konqueror/template @@ -1,7 +1,7 @@ # Template file for 'konqueror' pkgname=konqueror version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_WITH_QT6=ON -DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake From 25b934b5aa13828a253ae983432da5901cc1478f Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:05 +0100 Subject: [PATCH 127/295] kontactinterface: rebuild against Qt 6.10.2 --- srcpkgs/kontactinterface/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kontactinterface/template b/srcpkgs/kontactinterface/template index 6ff68eb43c43a0..fad988a36e756c 100644 --- a/srcpkgs/kontactinterface/template +++ b/srcpkgs/kontactinterface/template @@ -1,7 +1,7 @@ # Template file for 'kontactinterface' pkgname=kontactinterface version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 7151a1fe2887c5e2065c5878d062f865c27d19bf Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:05 +0100 Subject: [PATCH 128/295] kquickimageeditor: rebuild against Qt 6.10.2 --- srcpkgs/kquickimageeditor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kquickimageeditor/template b/srcpkgs/kquickimageeditor/template index 9379690422653a..76f97953a82ea7 100644 --- a/srcpkgs/kquickimageeditor/template +++ b/srcpkgs/kquickimageeditor/template @@ -1,7 +1,7 @@ # Template file for 'kquickimageeditor' pkgname=kquickimageeditor version=0.5.1 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_WITH_QT6=ON -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt6/mkspecs/modules From b61b7085c00b7ad513b94cf77ba94b9ad0aad1a8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:06 +0100 Subject: [PATCH 129/295] krfb: rebuild against Qt 6.10.2 --- srcpkgs/krfb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/krfb/template b/srcpkgs/krfb/template index 8a1b4a3b8cc214..f2e3553b9f9729 100644 --- a/srcpkgs/krfb/template +++ b/srcpkgs/krfb/template @@ -1,7 +1,7 @@ # Template file for 'krfb' pkgname=krfb version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 74c64f5c598cec3f90d4094558ea02bb4f3e6ed8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:06 +0100 Subject: [PATCH 130/295] kruler: rebuild against Qt 6.10.2 --- srcpkgs/kruler/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kruler/template b/srcpkgs/kruler/template index 179584077ae023..6d55ebfc67c98d 100644 --- a/srcpkgs/kruler/template +++ b/srcpkgs/kruler/template @@ -1,7 +1,7 @@ # Template file for 'kruler' pkgname=kruler version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 3c067e002f834db6a14443058047ef5f2d994453 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:06 +0100 Subject: [PATCH 131/295] kscreen: rebuild against Qt 6.10.2 --- srcpkgs/kscreen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kscreen/template b/srcpkgs/kscreen/template index e534aaee0ceab3..324cee1750e65c 100644 --- a/srcpkgs/kscreen/template +++ b/srcpkgs/kscreen/template @@ -1,7 +1,7 @@ # Template file for 'kscreen' pkgname=kscreen version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 40bd32e118c45edafb6987d3ec597ab5d6748a60 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:07 +0100 Subject: [PATCH 132/295] ktouch: rebuild against Qt 6.10.2 --- srcpkgs/ktouch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ktouch/template b/srcpkgs/ktouch/template index 8f774dc873b278..79d301b4093bc9 100644 --- a/srcpkgs/ktouch/template +++ b/srcpkgs/ktouch/template @@ -1,7 +1,7 @@ # Template file for 'ktouch' pkgname=ktouch version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DWITHOUT_X11=OFF" hostmakedepends="extra-cmake-modules kf6-kconfig kf6-kcoreaddons kf6-kdoctools From 55e885c48960865f289534f0fc957fe2ce68357e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:07 +0100 Subject: [PATCH 133/295] kwin: rebuild against Qt 6.10.2 --- srcpkgs/kwin/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/kwin/template b/srcpkgs/kwin/template index e75fe808593e42..125712e964b56c 100644 --- a/srcpkgs/kwin/template +++ b/srcpkgs/kwin/template @@ -1,7 +1,7 @@ # Template file for 'kwin' pkgname=kwin version=6.5.5 -revision=1 +revision=2 build_style=cmake build_helper=qemu configure_args="-DBUILD_TESTING=OFF -DFORCE_CROSSCOMPILED_TOOLS=ON @@ -27,6 +27,8 @@ makedepends="libplasma-devel kf6-kcmutils-devel kf6-knewstuff-devel kf6-kglobalaccel-devel kf6-kguiaddons kf6-ki18n-devel kf6-kidletime-devel kf6-kservice-devel kf6-ksvg-devel kf6-kwidgetsaddons-devel kf6-kpackage-devel kf6-kauth-devel kf6-kconfig-devel aurorae" +# transitive deps from kscreenlocker, for build ordering +makedepends+=" layer-shell-qt-devel libkf6screen-devel" depends="breeze-qt6 hicolor-icon-theme kglobalacceld hwids libcap-progs aurorae" short_desc="KDE Window manager" maintainer="John " From 22f53f1618ab859d610877a06dc24c84b6c774f4 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:08 +0100 Subject: [PATCH 134/295] kwin-x11: rebuild against Qt 6.10.2 --- srcpkgs/kwin-x11/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/kwin-x11/template b/srcpkgs/kwin-x11/template index 709491574bbf5b..68dcd91cceb832 100644 --- a/srcpkgs/kwin-x11/template +++ b/srcpkgs/kwin-x11/template @@ -1,7 +1,7 @@ # Template file for 'kwin-x11' pkgname=kwin-x11 version=6.5.5 -revision=1 +revision=2 build_style=cmake build_helper=qemu configure_args="-DBUILD_TESTING=OFF -DFORCE_CROSSCOMPILED_TOOLS=ON @@ -26,6 +26,8 @@ makedepends="qt6-tools-devel qt6-base-private-devel qt6-sensors-devel libqaccessibilityclient-devel libdisplay-info-devel libgbm-devel libei-devel libxkbcommon-devel kf6-knotifications-devel elogind-devel kf6-kdbusaddons-devel" +# transitive deps from kscreenlocker, for build ordering +makedepends+=" layer-shell-qt-devel libkf6screen-devel" depends="aurorae kf6-kirigami" short_desc="KDE X11 window manager" maintainer="John " From 86a0b621950ee491f058424d42f12920c0b45d41 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:08 +0100 Subject: [PATCH 135/295] layer-shell-qt: rebuild against Qt 6.10.2 --- srcpkgs/layer-shell-qt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/layer-shell-qt/template b/srcpkgs/layer-shell-qt/template index e86a5fb570e514..5486bc72f8f957 100644 --- a/srcpkgs/layer-shell-qt/template +++ b/srcpkgs/layer-shell-qt/template @@ -1,7 +1,7 @@ # Template file for 'layer-shell-qt' pkgname=layer-shell-qt version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 0ed6b5a57f7f91effe86e096528f8841dd3b9766 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:09 +0100 Subject: [PATCH 136/295] libfm-qt: rebuild against Qt 6.10.2 --- srcpkgs/libfm-qt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libfm-qt/template b/srcpkgs/libfm-qt/template index 5b66ef55aeb2d6..4c5513d70fdf2a 100644 --- a/srcpkgs/libfm-qt/template +++ b/srcpkgs/libfm-qt/template @@ -1,7 +1,7 @@ # Template file for 'libfm-qt' pkgname=libfm-qt version=2.3.1 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config lxqt-build-tools qt6-base qt6-tools perl" makedepends="libexif-devel qt6-base-private-devel From e7b9fcf3be192aa72bca558366d991e8bdd765a0 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:09 +0100 Subject: [PATCH 137/295] libkdegames: rebuild against Qt 6.10.2 --- srcpkgs/libkdegames/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libkdegames/template b/srcpkgs/libkdegames/template index fc13d22312acad..3e6aa22aee807a 100644 --- a/srcpkgs/libkdegames/template +++ b/srcpkgs/libkdegames/template @@ -1,7 +1,7 @@ # Template file for 'libkdegames' pkgname=libkdegames version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 77923085e5d493572a7ec650f079e63d05ad0e40 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:09 +0100 Subject: [PATCH 138/295] libkf6screen: rebuild against Qt 6.10.2 --- srcpkgs/libkf6screen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libkf6screen/template b/srcpkgs/libkf6screen/template index 25059820b245ad..0d903bc4fa6370 100644 --- a/srcpkgs/libkf6screen/template +++ b/srcpkgs/libkf6screen/template @@ -1,7 +1,7 @@ # Template file for 'libkf6screen' pkgname=libkf6screen version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 12775e51c8051e2439e5fe52f702177da55266f5 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:10 +0100 Subject: [PATCH 139/295] libksysguard: rebuild against Qt 6.10.2 --- srcpkgs/libksysguard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libksysguard/template b/srcpkgs/libksysguard/template index f26ecdc27aafad..5b7f465b7d2c1a 100644 --- a/srcpkgs/libksysguard/template +++ b/srcpkgs/libksysguard/template @@ -1,7 +1,7 @@ # Template file for 'libksysguard' pkgname=libksysguard version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml From c93fa53d72049df4f4d4210086875b38e0bd45f9 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:10 +0100 Subject: [PATCH 140/295] libplasma: rebuild against Qt 6.10.2 --- srcpkgs/libplasma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libplasma/template b/srcpkgs/libplasma/template index 0c6ffc7fef4986..42b1ecbb4d406b 100644 --- a/srcpkgs/libplasma/template +++ b/srcpkgs/libplasma/template @@ -1,7 +1,7 @@ # Template file for 'libplasma' pkgname=libplasma version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml From 662bf4c6c6bfb0a72b33a32845f841da1d8ba469 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:11 +0100 Subject: [PATCH 141/295] libportal: rebuild against Qt 6.10.2 --- srcpkgs/libportal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libportal/template b/srcpkgs/libportal/template index 0c3b154d520fc7..ec1b12199c82f8 100644 --- a/srcpkgs/libportal/template +++ b/srcpkgs/libportal/template @@ -1,7 +1,7 @@ # Template file for 'libportal' pkgname=libportal version=0.9.1 -revision=3 +revision=4 build_style=meson build_helper="gir" configure_args="$(vopt_bool gtk_doc docs) $(vopt_bool gir vapi) From 24cd9b491db4bb6d819b70f30c8ca62a0ccccb4a Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:11 +0100 Subject: [PATCH 142/295] libqtxdg: rebuild against Qt 6.10.2 --- srcpkgs/libqtxdg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libqtxdg/template b/srcpkgs/libqtxdg/template index 4e7319855c2e90..c24ae42d568f81 100644 --- a/srcpkgs/libqtxdg/template +++ b/srcpkgs/libqtxdg/template @@ -1,7 +1,7 @@ # Template file for 'libqtxdg' pkgname=libqtxdg version=4.3.0 -revision=1 +revision=2 build_style=cmake configure_args=" -DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=/usr/lib/qt6/plugins" hostmakedepends="pkg-config lxqt-build-tools qt6-base" From 943c901f11bebfa57e9d46950d64fa48f9f75ce8 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:11 +0100 Subject: [PATCH 143/295] lxqt-panel: rebuild against Qt 6.10.2 --- srcpkgs/lxqt-panel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lxqt-panel/template b/srcpkgs/lxqt-panel/template index 8f02122cffb2b9..c0f8297ddf3501 100644 --- a/srcpkgs/lxqt-panel/template +++ b/srcpkgs/lxqt-panel/template @@ -1,7 +1,7 @@ # Template file for 'lxqt-panel' pkgname=lxqt-panel version=2.3.2 -revision=1 +revision=2 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" hostmakedepends="pkg-config lxqt-build-tools qt6-base qt6-tools perl wayland-devel" From 19f165980e416881a22e11914e885eb4b938623c Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:12 +0100 Subject: [PATCH 144/295] lxqt-qtplugin: rebuild against Qt 6.10.2 --- srcpkgs/lxqt-qtplugin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lxqt-qtplugin/template b/srcpkgs/lxqt-qtplugin/template index 09d38351303deb..ee560aedfba1e8 100644 --- a/srcpkgs/lxqt-qtplugin/template +++ b/srcpkgs/lxqt-qtplugin/template @@ -1,7 +1,7 @@ # Template file for 'lxqt-qtplugin' pkgname=lxqt-qtplugin version=2.3.0 -revision=1 +revision=2 build_style=cmake configure_args=" -D_QT_PLUGINS_DIR=/usr/lib/qt6/plugins" hostmakedepends="lxqt-build-tools qt6-base qt6-tools libfm-devel" From 0e7da5e074eb5dffebe3ac0d9ae32e1cf0f11f3a Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:12 +0100 Subject: [PATCH 145/295] marble: rebuild against Qt 6.10.2 --- srcpkgs/marble/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/marble/template b/srcpkgs/marble/template index 17287417cbbacb..9852addb3b50e8 100644 --- a/srcpkgs/marble/template +++ b/srcpkgs/marble/template @@ -1,7 +1,7 @@ # Template file for 'marble' pkgname=marble version=25.08.3 -revision=2 +revision=3 build_style=cmake configure_args="-DMARBLE_PRI_INSTALL_DIR=/usr/lib/qt6/mkspecs/modules -DKDE_INSTALL_QMLDIR=lib/qt6/qml From 8ffa135f66e4591ddf575255ccee436b5b925bfc Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:13 +0100 Subject: [PATCH 146/295] merkuro: rebuild against Qt 6.10.2 --- srcpkgs/merkuro/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/merkuro/template b/srcpkgs/merkuro/template index 61062efdafa5f0..48191cb552aba5 100644 --- a/srcpkgs/merkuro/template +++ b/srcpkgs/merkuro/template @@ -1,7 +1,7 @@ # Template file for 'merkuro' pkgname=merkuro version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 36948db025935e521e190b513a8cc92396b5379e Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:13 +0100 Subject: [PATCH 147/295] milou: rebuild against Qt 6.10.2 --- srcpkgs/milou/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/milou/template b/srcpkgs/milou/template index 3898a48b68dab4..04486639e35c00 100644 --- a/srcpkgs/milou/template +++ b/srcpkgs/milou/template @@ -1,7 +1,7 @@ # Template file for 'milou' pkgname=milou version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKDE_INSTALL_QMLDIR=lib/qt6/qml" hostmakedepends="extra-cmake-modules qt6-base qt6-tools gettext From 82173d25afa58f0f61cf55c564bcacb030342b94 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:13 +0100 Subject: [PATCH 148/295] mimetreeparser: rebuild against Qt 6.10.2 --- srcpkgs/mimetreeparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mimetreeparser/template b/srcpkgs/mimetreeparser/template index c08dfd83b1dcce..0c89279837cb69 100644 --- a/srcpkgs/mimetreeparser/template +++ b/srcpkgs/mimetreeparser/template @@ -1,7 +1,7 @@ # Template file for 'mimetreeparser' pkgname=mimetreeparser version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From d931dd08090c072eda3771e1381545c7ccfb08f0 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:14 +0100 Subject: [PATCH 149/295] mixxx: rebuild against Qt 6.10.2 --- srcpkgs/mixxx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mixxx/template b/srcpkgs/mixxx/template index d845c03c0cf437..63fdcd8ebd3c61 100644 --- a/srcpkgs/mixxx/template +++ b/srcpkgs/mixxx/template @@ -1,7 +1,7 @@ # Template file for 'mixxx' pkgname=mixxx version=2.5.1 -revision=5 +revision=6 build_style=cmake configure_args="-DCMAKE_BUILD_TYPE=Release -DENGINEPRIME=OFF" hostmakedepends="extra-cmake-modules pkg-config protobuf qt6-tools qt6-base From 659180878c003b8d0b229f9201e52498cc372b63 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:15 +0100 Subject: [PATCH 150/295] neochat: rebuild against Qt 6.10.2 --- srcpkgs/neochat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/neochat/template b/srcpkgs/neochat/template index b36a11024590cb..484749541f2a00 100644 --- a/srcpkgs/neochat/template +++ b/srcpkgs/neochat/template @@ -1,7 +1,7 @@ # Template file for 'neochat' pkgname=neochat version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 9291b6470797b6db390eeb32b55d72392da6c6d9 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:15 +0100 Subject: [PATCH 151/295] nheko: rebuild against Qt 6.10.2 --- srcpkgs/nheko/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nheko/template b/srcpkgs/nheko/template index a1fcbcf0700fe7..3b4f636acaff76 100644 --- a/srcpkgs/nheko/template +++ b/srcpkgs/nheko/template @@ -1,7 +1,7 @@ # Template file for 'nheko' pkgname=nheko version=0.12.1 -revision=2 +revision=3 build_style=cmake hostmakedepends="qt6-base qt6-tools qt6-declarative-host-tools pkg-config asciidoc" makedepends="qt6-multimedia-devel qt6-svg-devel qt6-declarative-private-devel fmt-devel From e4ff2671689bbb99e0fdd16c990b0abf564402df Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:16 +0100 Subject: [PATCH 152/295] okular: rebuild against Qt 6.10.2 --- srcpkgs/okular/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/okular/template b/srcpkgs/okular/template index f0e1e6322fbec0..c456da71039cc7 100644 --- a/srcpkgs/okular/template +++ b/srcpkgs/okular/template @@ -1,7 +1,7 @@ # Template file for 'okular' pkgname=okular version=25.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From b83f17c843daacf1ceef99dd2753e02048990ee3 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:17 +0100 Subject: [PATCH 153/295] owncloudclient: rebuild against Qt 6.10.2 --- srcpkgs/owncloudclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/owncloudclient/template b/srcpkgs/owncloudclient/template index 3c4c66bfa87023..997431ac7fc952 100644 --- a/srcpkgs/owncloudclient/template +++ b/srcpkgs/owncloudclient/template @@ -1,7 +1,7 @@ # Template file for 'owncloudclient' pkgname=owncloudclient version=6.0.3 -revision=1 +revision=2 build_style=cmake configure_args="-Wno-dev -DWITH_AUTO_UPDATER=OFF -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From b53613f6b2eddf326ccbef03d22783b2b793dfde Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:17 +0100 Subject: [PATCH 154/295] oxygen-qt6: rebuild against Qt 6.10.2 --- srcpkgs/oxygen-qt6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/oxygen-qt6/template b/srcpkgs/oxygen-qt6/template index ff0d2a225cb490..4c2ee409f1dcb6 100644 --- a/srcpkgs/oxygen-qt6/template +++ b/srcpkgs/oxygen-qt6/template @@ -1,7 +1,7 @@ # Template file for 'oxygen-qt6' pkgname=oxygen-qt6 version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DBUILD_QT5=OFF -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From a3e6855d1307083dcd583df867823a0645f7f997 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:17 +0100 Subject: [PATCH 155/295] plasma-desktop: rebuild against Qt 6.10.2 --- srcpkgs/plasma-desktop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-desktop/template b/srcpkgs/plasma-desktop/template index d27b9ecd95a6ea..71e2326d866444 100644 --- a/srcpkgs/plasma-desktop/template +++ b/srcpkgs/plasma-desktop/template @@ -1,7 +1,7 @@ # Template file for 'plasma-desktop' pkgname=plasma-desktop version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake From b7b98b49d273fcca78c3cecf0a9fe1ca87cc0e97 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:18 +0100 Subject: [PATCH 156/295] plasma-integration: rebuild against Qt 6.10.2 --- srcpkgs/plasma-integration/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-integration/template b/srcpkgs/plasma-integration/template index 55fff706c88ca8..f5a85e8ec2697d 100644 --- a/srcpkgs/plasma-integration/template +++ b/srcpkgs/plasma-integration/template @@ -1,7 +1,7 @@ # Template file for 'plasma-integration' pkgname=plasma-integration version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DBUILD_QT5=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From e62d0a88f96aec5deeb0c63212666a326cfb16b3 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:18 +0100 Subject: [PATCH 157/295] plasma-keyboard: rebuild against Qt 6.10.2 --- srcpkgs/plasma-keyboard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-keyboard/template b/srcpkgs/plasma-keyboard/template index a77d53b6e33991..4a361a71e21225 100644 --- a/srcpkgs/plasma-keyboard/template +++ b/srcpkgs/plasma-keyboard/template @@ -1,7 +1,7 @@ # Template file for 'plasma-keyboard' pkgname=plasma-keyboard version=0.1.0 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 6a6f9e3d5b595ba60ca319cf446e7b7cd49f6f1c Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:19 +0100 Subject: [PATCH 158/295] plasma-nm: rebuild against Qt 6.10.2 --- srcpkgs/plasma-nm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-nm/template b/srcpkgs/plasma-nm/template index 96eed0c1c2af3b..816b2275df0e2c 100644 --- a/srcpkgs/plasma-nm/template +++ b/srcpkgs/plasma-nm/template @@ -1,7 +1,7 @@ # Template file for 'plasma-nm' pkgname=plasma-nm version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 7fe0595833021c57790df71fabab1187f73e99af Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:19 +0100 Subject: [PATCH 159/295] plasma-pa: rebuild against Qt 6.10.2 --- srcpkgs/plasma-pa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-pa/template b/srcpkgs/plasma-pa/template index 5cddc951a97894..09837a4af13018 100644 --- a/srcpkgs/plasma-pa/template +++ b/srcpkgs/plasma-pa/template @@ -1,7 +1,7 @@ # Template file for 'plasma-pa' pkgname=plasma-pa version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -Wno-dev -DKDE_INSTALL_QMLDIR=lib/qt6/qml From b63dac711a90c017d58945e45392f87763758f0d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:19 +0100 Subject: [PATCH 160/295] plasma-sdk: rebuild against Qt 6.10.2 --- srcpkgs/plasma-sdk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-sdk/template b/srcpkgs/plasma-sdk/template index 504cd218848eae..59a8e184be1574 100644 --- a/srcpkgs/plasma-sdk/template +++ b/srcpkgs/plasma-sdk/template @@ -1,7 +1,7 @@ # Template file for 'plasma-sdk' pkgname=plasma-sdk version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 7cf0613ee590bd673b98ef659a9c81987e9507cc Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:19 +0100 Subject: [PATCH 161/295] plasma-systemmonitor: rebuild against Qt 6.10.2 --- srcpkgs/plasma-systemmonitor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-systemmonitor/template b/srcpkgs/plasma-systemmonitor/template index e2d1e9dc54c950..ef7412470903c0 100644 --- a/srcpkgs/plasma-systemmonitor/template +++ b/srcpkgs/plasma-systemmonitor/template @@ -1,7 +1,7 @@ # Template file for 'plasma-systemmonitor' pkgname=plasma-systemmonitor version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml" From ebcd9b7ef480a12373c7190d382fec590f7a1fab Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:20 +0100 Subject: [PATCH 162/295] plasma-workspace: rebuild against Qt 6.10.2 --- srcpkgs/plasma-workspace/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma-workspace/template b/srcpkgs/plasma-workspace/template index a16dfb646b5a34..36d336854fc53c 100644 --- a/srcpkgs/plasma-workspace/template +++ b/srcpkgs/plasma-workspace/template @@ -1,7 +1,7 @@ # Template file for 'plasma-workspace' pkgname=plasma-workspace version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner From c7eacfd133622f465b3f366a0f0444426ebc4774 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:20 +0100 Subject: [PATCH 163/295] plasma5support: rebuild against Qt 6.10.2 --- srcpkgs/plasma5support/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plasma5support/template b/srcpkgs/plasma5support/template index 1ca96f974d53ef..e197d6afacaa64 100644 --- a/srcpkgs/plasma5support/template +++ b/srcpkgs/plasma5support/template @@ -1,7 +1,7 @@ # Template file for 'plasma5support' pkgname=plasma5support version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From 0fb8e22d17f180319a7afa7bb6ca0562aa8e4ebd Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:20 +0100 Subject: [PATCH 164/295] powerdevil: rebuild against Qt 6.10.2 --- srcpkgs/powerdevil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/powerdevil/template b/srcpkgs/powerdevil/template index e67d29181ee411..f091e404c1842b 100644 --- a/srcpkgs/powerdevil/template +++ b/srcpkgs/powerdevil/template @@ -1,7 +1,7 @@ # Template file for 'powerdevil' pkgname=powerdevil version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DKDE_INSTALL_QMLDIR=lib/qt6/qml" From f543084e36da3f048282bd3685d786d0f6a181aa Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:20 +0100 Subject: [PATCH 165/295] print-manager: rebuild against Qt 6.10.2 --- srcpkgs/print-manager/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/print-manager/template b/srcpkgs/print-manager/template index 32a62bfa04c9ad..6d1d8d2edfa69f 100644 --- a/srcpkgs/print-manager/template +++ b/srcpkgs/print-manager/template @@ -2,7 +2,7 @@ pkgname=print-manager reverts="23.08.5_1 22.12.1_1 22.04.1_1 21.12.3_1 21.12.2_1 21.08.0_1 20.12.2_1" version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml From f6761fb646787cf325d8004f239854a31471933d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:21 +0100 Subject: [PATCH 166/295] python3-pyqt6: rebuild against Qt 6.10.2 --- srcpkgs/python3-pyqt6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6/template b/srcpkgs/python3-pyqt6/template index 05ceca94e3a134..bb3e26afc01b8f 100644 --- a/srcpkgs/python3-pyqt6/template +++ b/srcpkgs/python3-pyqt6/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6' pkgname=python3-pyqt6 version=6.10.0 -revision=2 +revision=3 build_style=sip-build build_helper=qemu configure_args="--confirm-license --dbus $XBPS_CROSS_BASE/usr/include/dbus-1.0 From cbc24519eec99749de4baaec390503aff81af2f4 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:21 +0100 Subject: [PATCH 167/295] python3-pyqt6-3d: rebuild against Qt 6.10.2 --- srcpkgs/python3-pyqt6-3d/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-3d/template b/srcpkgs/python3-pyqt6-3d/template index cd9c294a595de7..bb8350913d88ae 100644 --- a/srcpkgs/python3-pyqt6-3d/template +++ b/srcpkgs/python3-pyqt6-3d/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-3d' pkgname=python3-pyqt6-3d version=6.10.0 -revision=2 +revision=3 build_style=sip-build build_helper="python3" hostmakedepends="qt6-base python3-PyQt-builder pkg-config sip" From 914b8fd2a30dec73c3f729e91484aca7b1aaf0d5 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:21 +0100 Subject: [PATCH 168/295] python3-pyqt6-charts: rebuild against Qt 6.10.2 --- srcpkgs/python3-pyqt6-charts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-charts/template b/srcpkgs/python3-pyqt6-charts/template index 37cff8b7da5783..840f6a6c7d9ff7 100644 --- a/srcpkgs/python3-pyqt6-charts/template +++ b/srcpkgs/python3-pyqt6-charts/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-charts' pkgname=python3-pyqt6-charts version=6.10.0 -revision=2 +revision=3 build_style=sip-build build_helper="python3" hostmakedepends="qt6-base sip python3-PyQt-builder pkg-config" From 82dd9f3e13b7fbd0e49c26f4ffb37c76c886595a Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:22 +0100 Subject: [PATCH 169/295] python3-pyside6: rebuild against Qt 6.10.2 --- srcpkgs/python3-pyside6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyside6/template b/srcpkgs/python3-pyside6/template index 1f50a5c17f6b8b..65aac048d7be34 100644 --- a/srcpkgs/python3-pyside6/template +++ b/srcpkgs/python3-pyside6/template @@ -2,7 +2,7 @@ # NOTE: keep in sync with Qt6 pkgname=python3-pyside6 version=6.10.0 -revision=4 +revision=5 build_style=cmake _llvmver=21 configure_args="-DBUILD_TESTS=OFF -DFORCE_LIMITED_API=no -DNO_QT_TOOLS=yes From 8588aad5ec2b26760b33e87c821302aaaf1f3447 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:22 +0100 Subject: [PATCH 170/295] qcoro-qt6: rebuild against Qt 6.10.2 --- srcpkgs/qcoro-qt6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qcoro-qt6/template b/srcpkgs/qcoro-qt6/template index 739df06344ed7d..61204f1eb331c3 100644 --- a/srcpkgs/qcoro-qt6/template +++ b/srcpkgs/qcoro-qt6/template @@ -1,7 +1,7 @@ # Template file for 'qcoro-qt6' pkgname=qcoro-qt6 version=0.12.0 -revision=1 +revision=2 build_style=cmake configure_args="-DUSE_QT_VERSION=6 -DBUILD_SHARED_LIBS=ON -DECM_MKSPECS_INSTALL_DIR=/usr/lib${XBPS_TARGET_WORDSIZE}/qt6/mkspecs/modules" From cc2c77fc69cfb5597376bf4d6467c7397612eb76 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:22 +0100 Subject: [PATCH 171/295] qprompt: rebuild against Qt 6.10.2 --- srcpkgs/qprompt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qprompt/template b/srcpkgs/qprompt/template index b68c02bba1b62b..2093fc9f943a05 100644 --- a/srcpkgs/qprompt/template +++ b/srcpkgs/qprompt/template @@ -1,7 +1,7 @@ # Template file for 'qprompt' pkgname=qprompt version=2.0.0 -revision=1 +revision=2 build_style=cmake configure_args="-DSOURCE_DEPENDENCIES_EXCLUSIVELY_FROM_SYSTEM=ON" hostmakedepends="pkg-config qt6-base qt6-tools extra-cmake-modules gettext From d651ae4f4f8372c8d3c7835370a0741f21ada890 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:22 +0100 Subject: [PATCH 172/295] qt6ct: rebuild against Qt 6.10.2 --- srcpkgs/qt6ct/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt6ct/template b/srcpkgs/qt6ct/template index 668cc4e67a9785..b69a695e137936 100644 --- a/srcpkgs/qt6ct/template +++ b/srcpkgs/qt6ct/template @@ -1,7 +1,7 @@ # Template file for 'qt6ct' pkgname=qt6ct version=0.11 -revision=1 +revision=2 build_style=cmake configure_args="-DPLUGINDIR=/usr/lib/qt6/plugins" hostmakedepends="qt6-tools qt6-base" From a571ab1fad1a7dbe588ef657a6d37b91e54ac74b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:23 +0100 Subject: [PATCH 173/295] qtcreator: rebuild against Qt 6.10.2 --- srcpkgs/qtcreator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template index 0b78e4a72111ae..f1ea562bf9d854 100644 --- a/srcpkgs/qtcreator/template +++ b/srcpkgs/qtcreator/template @@ -1,7 +1,7 @@ # Template file for 'qtcreator' pkgname=qtcreator version=18.0.0 -revision=2 +revision=3 build_style=cmake _llvmver=19 configure_args="$(vopt_bool qbs BUILD_QBS) -DWITH_DOCS=ON -DBUILD_WITH_PCH=OFF" From 961557dceaa02ba14e8f837c8e668f568b817f0b Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:23 +0100 Subject: [PATCH 174/295] qtcurve: rebuild against Qt 6.10.2 --- srcpkgs/qtcurve/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qtcurve/template b/srcpkgs/qtcurve/template index ce11475ad4cdec..804af16d761c18 100644 --- a/srcpkgs/qtcurve/template +++ b/srcpkgs/qtcurve/template @@ -1,7 +1,7 @@ # Template file for 'qtcurve' pkgname=qtcurve version=1.9.1+202511 -revision=1 +revision=2 _rev=5a5566ffdb7c672f73788426aab8a8604ff7dc87 build_style=cmake build_helper=qemu From 02a55efd15c0ddefe3ffd2f928a643648cda6af9 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:23 +0100 Subject: [PATCH 175/295] quickshell: rebuild against Qt 6.10.2 --- srcpkgs/quickshell/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/quickshell/template b/srcpkgs/quickshell/template index 78067dedba2696..0e684399eacf49 100644 --- a/srcpkgs/quickshell/template +++ b/srcpkgs/quickshell/template @@ -1,7 +1,7 @@ # Template file for 'quickshell' pkgname=quickshell version=0.2.1 -revision=2 +revision=3 build_style=cmake configure_args="-DDISTRIBUTOR=Void -DDISTRIBUTOR_DEBUGINFO_AVAILABLE=YES -DINSTALL_QML_PREFIX=lib/qt6/qml -DCRASH_REPORTER=OFF -DHYPRLAND=OFF" From ca4e0dd9fc23d81eef7a9b9d06b5b992e4831abe Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:23 +0100 Subject: [PATCH 176/295] shotcut: rebuild against Qt 6.10.2 --- srcpkgs/shotcut/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/shotcut/template b/srcpkgs/shotcut/template index 6882ad33d2285c..35040b183da363 100644 --- a/srcpkgs/shotcut/template +++ b/srcpkgs/shotcut/template @@ -1,7 +1,7 @@ # Template file for 'shotcut' pkgname=shotcut version=25.10.31 -revision=1 +revision=2 build_style=cmake configure_args="-DSHOTCUT_VERSION=${version}" hostmakedepends="pkg-config qt6-base qt6-tools" From 2b597f6dbc66fbcb874ab47f57fb0e463775ab70 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:24 +0100 Subject: [PATCH 177/295] spectacle: rebuild against Qt 6.10.2 --- srcpkgs/spectacle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/spectacle/template b/srcpkgs/spectacle/template index 0719843ae87c22..a95730b28f9096 100644 --- a/srcpkgs/spectacle/template +++ b/srcpkgs/spectacle/template @@ -2,7 +2,7 @@ pkgname=spectacle reverts="24.12.1_1 24.12.0_1 24.08.1_2 24.08.1_1 24.08.0_1 24.05.0_4 24.05.0_3 24.05.0_2 24.05.0_2 24.05.0_2 24.05.0_1 24.02.2_1 23.08.5_1 23.08.4_1 23.08.3_1 23.08.2_1 23.08.0_1 23.04.2_1 23.04.0_1 22.12.1_1 22.08.2_1 22.08.1_1 22.04.3_1 22.04.1_1 21.12.3_1 21.12.2_1 21.12.1_1 21.12.0_1 21.08.3_1 21.08.2_1 21.08.1_1 21.08.0_1 21.04.3_1 21.04.2_1 21.04.1_1 21.04.0_1 20.12.3_1 20.12.2_1 20.12.1_1 20.12.0_1 20.08.3_1 20.08.2_1 20.08.1_1 20.08.0_1 20.04.3_1 20.04.2_1 20.04.2_1 20.04.1_1 20.04.0_1" version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules qt6-tools qt6-base From 51faa4d2314499dca257c1f60f1da528fb49a468 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:24 +0100 Subject: [PATCH 178/295] systemsettings: rebuild against Qt 6.10.2 --- srcpkgs/systemsettings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/systemsettings/template b/srcpkgs/systemsettings/template index 8775bd3207419b..f69087902ed4dd 100644 --- a/srcpkgs/systemsettings/template +++ b/srcpkgs/systemsettings/template @@ -1,7 +1,7 @@ # Template file for 'systemsettings' pkgname=systemsettings version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" From fa4f4e3cbb5bd2207d73c42bac337e3919344aca Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:24 +0100 Subject: [PATCH 179/295] telegram-desktop: rebuild against Qt 6.10.2 --- srcpkgs/telegram-desktop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/telegram-desktop/template b/srcpkgs/telegram-desktop/template index 100043f9c8d639..ce0bb87cae1b98 100644 --- a/srcpkgs/telegram-desktop/template +++ b/srcpkgs/telegram-desktop/template @@ -1,7 +1,7 @@ # Template file for 'telegram-desktop' pkgname=telegram-desktop version=6.4.0 -revision=2 +revision=3 build_style=cmake build_helper="qemu gir" configure_args="-DTDESKTOP_API_ID=209235 From 9344cda747115592286791fc0b3623251eb54598 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:24 +0100 Subject: [PATCH 180/295] texmaker: rebuild against Qt 6.10.2 --- srcpkgs/texmaker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/texmaker/template b/srcpkgs/texmaker/template index a6f7ff6cce9973..0c9d54f019a601 100644 --- a/srcpkgs/texmaker/template +++ b/srcpkgs/texmaker/template @@ -1,7 +1,7 @@ # Template file for 'texmaker' pkgname=texmaker version=6.0.1 -revision=2 +revision=3 build_style=cmake hostmakedepends="qt6-base qt6-tools" makedepends="qt6-base-devel qt6-qt5compat-devel qt6-declarative-devel From 4b1d53fef501515bafff9f935e3830e5ab81900a Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:25 +0100 Subject: [PATCH 181/295] uim: rebuild against Qt 6.10.2 --- srcpkgs/uim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/uim/template b/srcpkgs/uim/template index 6397b386a878a4..6fa5e6256678b4 100644 --- a/srcpkgs/uim/template +++ b/srcpkgs/uim/template @@ -1,7 +1,7 @@ # Template file for 'uim' pkgname=uim version=1.9.6 -revision=3 +revision=4 build_style=gnu-configure build_helper=qmake configure_args="--enable-pref --enable-fep --with-gtk2 --with-gtk3 From 55a4fb34f8ec5086a427f1ba24d42ad89e05df67 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:25 +0100 Subject: [PATCH 182/295] xdg-desktop-portal-kde: rebuild against Qt 6.10.2 --- srcpkgs/xdg-desktop-portal-kde/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xdg-desktop-portal-kde/template b/srcpkgs/xdg-desktop-portal-kde/template index b113b5eda98d0f..8923ae0d6b4244 100644 --- a/srcpkgs/xdg-desktop-portal-kde/template +++ b/srcpkgs/xdg-desktop-portal-kde/template @@ -1,7 +1,7 @@ # Template file for 'xdg-desktop-portal-kde' pkgname=xdg-desktop-portal-kde version=6.5.5 -revision=1 +revision=2 build_style=cmake configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner" hostmakedepends="extra-cmake-modules qt6-base qt6-tools gettext From d5c62b20887f5f65ce64bdbf27cabbb3e2297908 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:25 +0100 Subject: [PATCH 183/295] xdg-desktop-portal-lxqt: rebuild against Qt 6.10.2 --- srcpkgs/xdg-desktop-portal-lxqt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xdg-desktop-portal-lxqt/template b/srcpkgs/xdg-desktop-portal-lxqt/template index 2f63a2f3678cb9..1bd9ead470c74d 100644 --- a/srcpkgs/xdg-desktop-portal-lxqt/template +++ b/srcpkgs/xdg-desktop-portal-lxqt/template @@ -1,7 +1,7 @@ # Template file for 'xdg-desktop-portal-lxqt' pkgname=xdg-desktop-portal-lxqt version=1.3.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="qt6-base qt6-tools" makedepends="kf6-kwindowsystem-devel libfm-qt-devel qt6-base-private-devel From 0f512206611eb157be564ad4587249bb46ec1f6f Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:26 +0100 Subject: [PATCH 184/295] yakuake: rebuild against Qt 6.10.2 --- srcpkgs/yakuake/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yakuake/template b/srcpkgs/yakuake/template index a79001d3583384..e328801a320de0 100644 --- a/srcpkgs/yakuake/template +++ b/srcpkgs/yakuake/template @@ -1,7 +1,7 @@ # Template file for 'yakuake' pkgname=yakuake version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 31ea83851b28e6759d7b8bc257589088d0f83c70 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Jan 2026 22:48:26 +0100 Subject: [PATCH 185/295] zeal: rebuild against Qt 6.10.2 --- srcpkgs/zeal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zeal/template b/srcpkgs/zeal/template index d67af44f517254..68c57794ec4fd0 100644 --- a/srcpkgs/zeal/template +++ b/srcpkgs/zeal/template @@ -2,7 +2,7 @@ pkgname=zeal reverts="20141123_1 20141123_2" version=0.7.2 -revision=2 +revision=3 build_style=cmake build_helper=qmake6 configure_args="-DZEAL_RELEASE_BUILD=ON" From 63f54986ab14849a4b18ce0a1686da82d158866c Mon Sep 17 00:00:00 2001 From: Helmut Pozimski Date: Sun, 1 Feb 2026 19:12:56 +0100 Subject: [PATCH 186/295] warzone2100: rebuild to fix linking against protobuf --- srcpkgs/warzone2100/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template index 71b83a20bfc266..499aade1d969b5 100644 --- a/srcpkgs/warzone2100/template +++ b/srcpkgs/warzone2100/template @@ -1,7 +1,7 @@ # Template file for 'warzone2100' pkgname=warzone2100 version=4.6.2 -revision=1 +revision=2 build_style=cmake configure_args="-DWZ_ENABLE_WARNINGS_AS_ERRORS=OFF -DWZ_DISTRIBUTOR=void" hostmakedepends="zip unzip asciidoc gettext pkg-config shaderc protobuf" From 65fdd734896f793f38d162c6ea37bc2d4408de18 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Mon, 2 Feb 2026 10:36:27 +0100 Subject: [PATCH 187/295] mangowc: update to 0.12.0 --- srcpkgs/mangowc/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mangowc/template b/srcpkgs/mangowc/template index cf0c827c1630d7..e8ad49714cc496 100644 --- a/srcpkgs/mangowc/template +++ b/srcpkgs/mangowc/template @@ -1,6 +1,6 @@ # Template file for 'mangowc' pkgname=mangowc -version=0.11.0 +version=0.12.0 revision=1 conf_files="/etc/mango/config.conf" build_style=meson @@ -13,7 +13,7 @@ license="GPL-3.0-or-later" homepage="https://github.com/DreamMaoMao/mangowc" changelog="https://github.com/DreamMaoMao/mangowc/releases" distfiles="https://github.com/DreamMaoMao/mangowc/archive/refs/tags/${version}.tar.gz" -checksum=1b1422dd73564302800720cc49aeb854e0a849696b822ba54b8f49dd63d32949 +checksum=5757a888603a55fb4a154878e69b4091d38db5e2e60450a3048409716cae6c28 build_options="xwayland" desc_option_xwayland="Enable Xwayland support" From d32a9421d8ef93dab955c2cda3fb430def2feb97 Mon Sep 17 00:00:00 2001 From: Mintsuki Date: Mon, 2 Feb 2026 03:56:45 +0100 Subject: [PATCH 188/295] limine: update to 10.6.4. --- srcpkgs/limine/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/limine/template b/srcpkgs/limine/template index 2d14c58656065d..0f7c8dc126cc75 100644 --- a/srcpkgs/limine/template +++ b/srcpkgs/limine/template @@ -1,6 +1,6 @@ # Template file for 'limine' pkgname=limine -version=10.6.3 +version=10.6.4 revision=1 build_style=gnu-configure configure_args="--enable-all" @@ -12,7 +12,7 @@ license="BSD-2-Clause" homepage="https://limine-bootloader.org/" changelog="https://codeberg.org/Limine/Limine/raw/branch/trunk/ChangeLog" distfiles="https://codeberg.org/Limine/Limine/releases/download/v${version}/limine-${version}.tar.gz" -checksum=e23a71489f991d8b1a5fb79884ea278758ff61ef5017b5adf24493ec26c1b4a9 +checksum=9b120f37e6af0d4eaf01def6997e0814e2a3ed0905710fcbe2371e46444f22fc post_install() { vlicense COPYING From 0998081abdbe6ccadde4cd8fb71f099ae9ce63c4 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 2 Feb 2026 19:23:43 +0100 Subject: [PATCH 189/295] hwids: update to 0.403. --- srcpkgs/hwids/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template index 234a6b4db15f71..2ac67c273c6482 100644 --- a/srcpkgs/hwids/template +++ b/srcpkgs/hwids/template @@ -1,14 +1,14 @@ # Template file for 'hwids' pkgname=hwids reverts="20201207_1 20210613_1 20200813.1_1 20200813.1_2 20200306_1 20200204_1 20191025_1 20190818_1 20190316_1 20180917_1 20180518_1 20180315_1 20171003_1 20170715_1 20170328_1 20161103_1 20160801_1 20160421_1 20160306_1 20150717_1 20150421_1 20150129_1 20150118_1" -version=0.399 +version=0.403 revision=1 short_desc="Hardware Identification Databases" maintainer="John " license="GPL-2.0-or-later" homepage="https://github.com/vcrhonek/hwdata" distfiles="https://github.com/vcrhonek/hwdata/archive/refs/tags/v${version}.tar.gz" -checksum=74872355e14d5ddc48a0f63036227ffb5f7796a3012c6377ac1fc7432ffe2b41 +checksum=77d0a69e5558d16d33bbb510a09093deaf11c882baf9ef6ec5f18a8ef96e2c13 do_install() { vmkdir usr/share/hwdata From 9d3b234c220e8929ae9532a4eba77e58c43643d4 Mon Sep 17 00:00:00 2001 From: Gavin Felix Date: Mon, 2 Feb 2026 09:41:19 -0700 Subject: [PATCH 190/295] expat: update to 2.7.4. --- srcpkgs/expat/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/expat/template b/srcpkgs/expat/template index 4c6da924d7b032..b4a64b15702b0a 100644 --- a/srcpkgs/expat/template +++ b/srcpkgs/expat/template @@ -1,6 +1,6 @@ # Template file for 'expat' pkgname=expat -version=2.7.3 +version=2.7.4 revision=1 build_style=gnu-configure short_desc="XML parser library written in C" @@ -9,7 +9,7 @@ license="MIT" homepage="https://libexpat.github.io/" changelog="https://raw.githubusercontent.com/libexpat/libexpat/master/expat/Changes" distfiles="https://github.com/libexpat/libexpat/releases/download/R_${version//./_}/expat-${version}.tar.xz" -checksum=71df8f40706a7bb0a80a5367079ea75d91da4f8c65c58ec59bcdfbf7decdab9f +checksum=9e9cabb457c1e09de91db2706d8365645792638eb3be1f94dbb2149301086ac0 post_install() { vlicense COPYING From 57b52d434f15d429699df893e8194de9a4cd3021 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Mon, 2 Feb 2026 19:10:04 +0100 Subject: [PATCH 191/295] halloy: update to 2026.2 --- srcpkgs/halloy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/halloy/template b/srcpkgs/halloy/template index 2d8f585ff9f789..a52f7ec4099fed 100644 --- a/srcpkgs/halloy/template +++ b/srcpkgs/halloy/template @@ -1,6 +1,6 @@ # Template file for 'halloy' pkgname=halloy -version=2026.1.1 +version=2026.2 revision=1 build_style=cargo hostmakedepends="pkg-config" @@ -11,7 +11,7 @@ license="GPL-3.0-or-later" homepage="https://github.com/squidowl/halloy" changelog="https://raw.githubusercontent.com/squidowl/halloy/main/CHANGELOG.md" distfiles="https://github.com/squidowl/halloy/archive/refs/tags/${version}.tar.gz" -checksum=a4b3421feb8f5cf1f609bcccab4252b48518664209a5719863c42fcaea3b71be +checksum=3c2b99f8fa20ad30187aa901ae562ece2db3fb088a0a16eaf86b7222cb816219 post_install() { vinstall assets/linux/org.squidowl.halloy.appdata.xml 644 usr/share/metainfo From cfca31497e030b4ad88b8a6ba7697f4d55445206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 07:08:10 +0700 Subject: [PATCH 192/295] libplasma: hostmakedepends transitive depends on kwindowssystem --- srcpkgs/libplasma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libplasma/template b/srcpkgs/libplasma/template index 42b1ecbb4d406b..dbb7b184fb160d 100644 --- a/srcpkgs/libplasma/template +++ b/srcpkgs/libplasma/template @@ -8,7 +8,7 @@ configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules qt6-base qt6-tools qt6-declarative-host-tools wayland-devel gettext pkg-config - kf6-kconfig kf6-kirigami-devel kf6-kcmutils + kf6-kconfig kf6-kirigami-devel kf6-kcmutils kf6-kwindowsystem kf6-kpackage" makedepends="qt6-base-private-devel qt6-declarative-devel qt6-svg-devel kf6-kcmutils-devel kf6-ksvg-devel kf6-ki18n-devel kf6-kwindowsystem-devel From cc3efe864aae238319225b378dc363c3e1255a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 07:19:02 +0700 Subject: [PATCH 193/295] kf6-purpose + kwin: fix build --- srcpkgs/kf6-purpose/template | 2 +- srcpkgs/kwin/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kf6-purpose/template b/srcpkgs/kf6-purpose/template index c779df6226ff58..a69b354c7b245f 100644 --- a/srcpkgs/kf6-purpose/template +++ b/srcpkgs/kf6-purpose/template @@ -5,7 +5,7 @@ revision=2 build_style=cmake configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" -hostmakedepends="extra-cmake-modules qt6-tools qt6-base +hostmakedepends="extra-cmake-modules qt6-tools qt6-base qt6-wayland-client qt6-declarative-host-tools gettext kf6-kconfig kf6-kitemmodels accounts-qml-module kf6-prison kf6-kdeclarative" makedepends="qt6-declarative-devel kf6-kcoreaddons-devel kf6-ki18n-devel diff --git a/srcpkgs/kwin/template b/srcpkgs/kwin/template index 125712e964b56c..f7eacf1201e9cd 100644 --- a/srcpkgs/kwin/template +++ b/srcpkgs/kwin/template @@ -9,7 +9,7 @@ configure_args="-DBUILD_TESTING=OFF -DFORCE_CROSSCOMPILED_TOOLS=ON -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules gettext pkg-config kf6-kauth-tools qt6-base qt6-tools qt6-declarative-host-tools libcap-progs - kf6-kconfig kf6-kpackage kf6-kcmutils + kf6-kconfig kf6-kpackage kf6-kcmutils kf6-kwindowsystem kf6-kirigami libcap-devel wayland-devel" makedepends="libplasma-devel kf6-kcmutils-devel kf6-knewstuff-devel kscreenlocker-devel kglobalacceld-devel xcb-util-cursor-devel qt6-base-devel From 563463ccbb5ef5cb9ea8518746edab272f5f6c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 07:19:02 +0700 Subject: [PATCH 194/295] kwin-x11: fix build --- srcpkgs/kwin-x11/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/kwin-x11/template b/srcpkgs/kwin-x11/template index 68dcd91cceb832..e884d41f20cf07 100644 --- a/srcpkgs/kwin-x11/template +++ b/srcpkgs/kwin-x11/template @@ -9,6 +9,7 @@ configure_args="-DBUILD_TESTING=OFF -DFORCE_CROSSCOMPILED_TOOLS=ON -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules gettext pkg-config libcap-progs qt6-base qt6-tools qt6-declarative-host-tools wayland-devel hwids + kf6-kwindowsystem python3 kf6-kpackage kf6-kconfig kf6-kauth-tools kf6-kcmutils kf6-kdoctools" makedepends="qt6-tools-devel qt6-base-private-devel qt6-sensors-devel kf6-kglobalaccel-devel qt6-svg-devel kf6-kcolorscheme-devel kf6-kconfig-devel From 1cb8b5e6f570e13099de851f40b05e3f30c9f29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 08:41:48 +0700 Subject: [PATCH 195/295] plasma-workspace+libkdegames: fix build --- srcpkgs/libkdegames/template | 1 + srcpkgs/plasma-workspace/template | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/libkdegames/template b/srcpkgs/libkdegames/template index 3e6aa22aee807a..c1aec203672c81 100644 --- a/srcpkgs/libkdegames/template +++ b/srcpkgs/libkdegames/template @@ -8,6 +8,7 @@ configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt6/mkspecs/modules" hostmakedepends="extra-cmake-modules pkg-config qt6-base qt6-declarative-host-tools + qt6-xml kf6-kconfig kf6-kcoreaddons kf6-kdoctools kf6-kpackage gettext" makedepends="qt6-svg-devel qt6-declarative-devel qt6-base-devel kf6-karchive-devel diff --git a/srcpkgs/plasma-workspace/template b/srcpkgs/plasma-workspace/template index 36d336854fc53c..21a4cd3b410155 100644 --- a/srcpkgs/plasma-workspace/template +++ b/srcpkgs/plasma-workspace/template @@ -8,7 +8,7 @@ configure_args="-DBUILD_TESTING=OFF -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DKF6_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules iso-codes pkg-config gettext qt6-base qt6-tools SPIRV-Tools qt6-shadertools kf6-kcmutils kf6-kconfig - qt6-declarative-host-tools kf6-kdoctools + qt6-declarative-host-tools kf6-kdoctools kf6-kwindowsystem kf6-kpackage kf6-kauth-tools wayland-devel" makedepends="qt6-declarative-devel libplasma-devel qt6-base-private-devel kf6-krunner-devel kf6-knotifyconfig-devel kf6-kdesu-devel kf6-knewstuff-devel From 442aa917e3577f745c52b0d8f1007da7a0072ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 196/295] kde: add more kf6-kwindowsystem --- srcpkgs/kde-cli-tools/template | 2 +- srcpkgs/kdeconnect/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/kde-cli-tools/template b/srcpkgs/kde-cli-tools/template index 201a4e54ab3017..80533183f627a3 100644 --- a/srcpkgs/kde-cli-tools/template +++ b/srcpkgs/kde-cli-tools/template @@ -6,7 +6,7 @@ build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules qt6-base qt6-tools gettext - kf6-kconfig kf6-kcmutils kf6-kdoctools" + kf6-kwindowsystem kf6-kconfig kf6-kcmutils kf6-kdoctools" makedepends="plasma-activities-devel kf6-kcmutils-devel kf6-kdesu-devel qt6-svg-devel kf6-kconfig-devel kf6-kiconthemes-devel kf6-kio-devel kf6-kservice-devel kf6-kwindowsystem-devel kf6-kparts-devel diff --git a/srcpkgs/kdeconnect/template b/srcpkgs/kdeconnect/template index ee2454049080ed..98c48e0108082d 100644 --- a/srcpkgs/kdeconnect/template +++ b/srcpkgs/kdeconnect/template @@ -9,7 +9,7 @@ configure_args="-DWaylandScanner_EXECUTABLE=/usr/bin/wayland-scanner hostmakedepends="extra-cmake-modules qt6-tools pkg-config wayland-devel qt6-base python3 kf6-kdoctools kf6-kpackage kf6-kconfig kf6-kpackage kf6-kcoreaddons gettext qt6-declarative-host-tools - kf6-kcmutils" + kf6-kwindowsystem kf6-kcmutils" makedepends="kf6-kcmutils-devel kf6-kconfigwidgets-devel kf6-kdbusaddons-devel kf6-kdoctools-devel kf6-ki18n-devel kf6-kiconthemes-devel kf6-kio-devel kf6-kirigami-devel kf6-knotifications-devel kf6-kstatusnotifieritem-devel From 07b4ca70c904cac1d2ea5419c4cddaf6c9dc0471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 12:51:36 +0700 Subject: [PATCH 197/295] fooyin: fix build --- srcpkgs/fooyin/patches/qt6.10.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/srcpkgs/fooyin/patches/qt6.10.patch b/srcpkgs/fooyin/patches/qt6.10.patch index c2ae9c82059c00..5b4906be91967e 100644 --- a/srcpkgs/fooyin/patches/qt6.10.patch +++ b/srcpkgs/fooyin/patches/qt6.10.patch @@ -8,3 +8,14 @@ #include #include #include +--- a/src/utils/starrating.cpp ++++ b/src/utils/starrating.cpp +@@ -104,7 +104,7 @@ void StarRating::paint(QPainter* painter + .arg(m_maxCount) + .arg(mode == EditMode::Editable ? 1 : 0) + .arg(rect.width()) +- .arg(alignment); ++ .arg(static_cast(alignment)); + + QPixmap pixmap; + if(!QPixmapCache::find(cacheKey, &pixmap)) { From 24f3e930b68e7a03ca1e66c78fcadbf1b9bf6abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 12:53:15 +0700 Subject: [PATCH 198/295] kcm-wacomtablet: fix build --- srcpkgs/dooble/template | 3 ++- srcpkgs/kcm-wacomtablet/template | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/dooble/template b/srcpkgs/dooble/template index 7b83615dfd2f55..2d3939ee79cc49 100644 --- a/srcpkgs/dooble/template +++ b/srcpkgs/dooble/template @@ -5,7 +5,8 @@ revision=4 archs="x86_64* aarch64*" build_style=qmake configure_args="dooble.pro" -hostmakedepends="qt6-base qt6-webengine" +hostmakedepends="qt6-base qt6-webengine + qt6-plugin-tls-qcertonly qt6-plugin-tls-openssl" makedepends="qt6-charts-private-devel qt6-webengine-devel qt6-webchannel-devel qt6-location-devel" depends="qt6-plugin-sqlite" diff --git a/srcpkgs/kcm-wacomtablet/template b/srcpkgs/kcm-wacomtablet/template index 7cacb5d0bd63c0..3f2cb3d3f742d1 100644 --- a/srcpkgs/kcm-wacomtablet/template +++ b/srcpkgs/kcm-wacomtablet/template @@ -6,7 +6,7 @@ build_style=cmake configure_args="-DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="pkg-config gettext extra-cmake-modules qt6-base qt6-tools - kf6-kcmutils kf6-kpackage kf6-kconfig kf6-kdoctools" + kf6-kwindowsystem kf6-kcmutils kf6-kpackage kf6-kconfig kf6-kdoctools" makedepends="qt6-declarative-devel plasma-workspace-devel libwacom-devel xf86-input-wacom-devel libinput-devel qt6-base-private-devel libplasma-devel libxkbcommon-devel kf6-kcoreaddons-devel kf6-ki18n-devel kf6-kglobalaccel-devel From 207a88a4a8f66849cd85a475e96c16f65ed8e661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 12:54:24 +0700 Subject: [PATCH 199/295] qt6-webengine: depends on same version of plugins --- srcpkgs/qt6-pdf/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/qt6-pdf/template b/srcpkgs/qt6-pdf/template index 9e32ca5f03ca28..d5568bd2eb04e4 100644 --- a/srcpkgs/qt6-pdf/template +++ b/srcpkgs/qt6-pdf/template @@ -210,7 +210,8 @@ qt6-pdf-examples_package() { qt6-webengine_package() { # Historically, qt6-webengine includes pdf supports depends="qt6-pdf>=${version}_${revision} - qt6-plugin-tls-openssl qt6-plugin-tls-qcertonly" + qt6-plugin-tls-openssl>=${version}_1 + qt6-plugin-tls-qcertonly>=${version}_1" short_desc="${short_desc/Pdf/WebEngine}" pkg_install() { vmove "usr/lib/libQt6WebEngine*.so.*" From 18fc8a3712a81eb1c459eebdf81fb162ade790d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 200/295] kde: add more kf6-kwindowsystem --- srcpkgs/kinfocenter/template | 2 ++ srcpkgs/plasma-pa/template | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/kinfocenter/template b/srcpkgs/kinfocenter/template index e4c44284fd073d..3bd7855dd73933 100644 --- a/srcpkgs/kinfocenter/template +++ b/srcpkgs/kinfocenter/template @@ -6,6 +6,8 @@ build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules gettext pkg-config qt6-tools qt6-base + qt6-concurrent qt6-plugin-odbc qt6-plugin-pgsql qt6-plugin-mysql qt6-plugin-sqlite + qt6-plugin-tls-openssl qt6-plugin-tls-qcertonly qt6-plugin-networkinformation kf6-kdoctools kf6-kpackage kf6-kcmutils kf6-kconfig kf6-kauth-tools kf6-kauth-devel qt6-declarative-host-tools" makedepends="libplasma-devel kf6-kcmutils-devel kf6-kauth-devel diff --git a/srcpkgs/plasma-pa/template b/srcpkgs/plasma-pa/template index 09837a4af13018..a3491e3632dfb3 100644 --- a/srcpkgs/plasma-pa/template +++ b/srcpkgs/plasma-pa/template @@ -8,7 +8,7 @@ configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -Wno-dev -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules pkg-config qt6-base gettext qt6-tools qt6-declarative-host-tools kf6-kconfig kf6-kcoreaddons kf6-kcmutils kf6-kpackage - kf6-kdoctools" + kf6-kwindowsystem kf6-kdoctools" makedepends="libplasma-devel kf6-kdeclarative-devel kf6-kstatusnotifieritem-devel kf6-kdoctools-devel kf6-kcmutils-devel kf6-ksvg-devel kf6-kdbusaddons-devel kf6-kconfig-devel kf6-kcoreaddons-devel kf6-kglobalaccel-devel kf6-ki18n-devel From 40fceda471c949d364d889b5896cac24d619e1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 201/295] kde: add more kf6-kwindowsystem --- srcpkgs/ktouch/template | 1 + srcpkgs/okular/template | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/ktouch/template b/srcpkgs/ktouch/template index 79d301b4093bc9..300a95d1e7a4bd 100644 --- a/srcpkgs/ktouch/template +++ b/srcpkgs/ktouch/template @@ -5,6 +5,7 @@ revision=2 build_style=cmake configure_args="-DWITHOUT_X11=OFF" hostmakedepends="extra-cmake-modules kf6-kconfig kf6-kcoreaddons kf6-kdoctools + kf6-kwindowsystem pkg-config qt6-base qt6-declarative-host-tools qt6-tools gettext kf6-kcmutils" makedepends="qt6-base-private-devel qt6-declarative-devel kf6-kcompletion-devel diff --git a/srcpkgs/okular/template b/srcpkgs/okular/template index c456da71039cc7..1f941cf7eefa4d 100644 --- a/srcpkgs/okular/template +++ b/srcpkgs/okular/template @@ -6,7 +6,7 @@ build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins" hostmakedepends="extra-cmake-modules pkg-config qt6-base gettext - kf6-kcoreaddons kf6-kdoctools kf6-kconfig python3" + qt6-xml kf6-kcoreaddons kf6-kdoctools kf6-kconfig python3" makedepends="discount-devel djvulibre-devel ebook-tools-devel phonon-devel libchmlib-devel libkexiv2-devel poppler-qt6-devel libspectre-devel libqmobipocket6-devel libzip-devel libkexiv2-devel qca-qt6-devel From 183f4542957e956aaee06bbafe87bb8eb493c335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 202/295] kde: add more kf6-kwindowsystem --- srcpkgs/powerdevil/template | 2 +- srcpkgs/qtcurve/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/powerdevil/template b/srcpkgs/powerdevil/template index f091e404c1842b..73ceca56e61c3c 100644 --- a/srcpkgs/powerdevil/template +++ b/srcpkgs/powerdevil/template @@ -7,7 +7,7 @@ configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DKDE_INSTALL_QMLDIR=lib/qt6/qml" hostmakedepends="extra-cmake-modules pkg-config gettext qt6-base qt6-tools qt6-declarative-host-tools kf6-kdoctools kf6-kcmutils kf6-kconfig - kf6-kauth-tools kf6-kpackage wayland-devel" + kf6-kwindowsystem kf6-kauth-tools kf6-kpackage wayland-devel" makedepends="kf6-bluez-qt-devel libkf6screen-devel kf6-networkmanager-qt-devel kf6-solid-devel kf6-kcmutils-devel kf6-kauth-devel kf6-kdoctools-devel kf6-kidletime-devel kf6-kxmlgui-devel kf6-knotifications-devel kf6-kio-devel diff --git a/srcpkgs/qtcurve/template b/srcpkgs/qtcurve/template index 804af16d761c18..86597e808f8301 100644 --- a/srcpkgs/qtcurve/template +++ b/srcpkgs/qtcurve/template @@ -10,7 +10,7 @@ configure_args="-DENABLE_QT4=OFF -DENABLE_QT6=ON -DQTC_QT6_ENABLE_KDE=ON -DQTC_QT6_ENABLE_QTQUICK2=ON " hostmakedepends="gettext pkg-config extra-cmake-modules perl - gdk-pixbuf-devel + gdk-pixbuf-devel qt6-xml qt5-qmake qt5-host-tools qt6-base kf6-kconfig" makedepends="libxcb-devel libX11-devel libxkbcommon-devel gtk+-devel cairo-devel pango-devel From 6dd2775fe7fed7618b74e4196f88febb447ab09b Mon Sep 17 00:00:00 2001 From: newbluemoon Date: Tue, 3 Feb 2026 10:06:38 +0100 Subject: [PATCH 203/295] subtitleeditor: update to 0.56.1 --- srcpkgs/subtitleeditor/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/subtitleeditor/template b/srcpkgs/subtitleeditor/template index 3b635246d7b0f5..a585f17e2c2a25 100644 --- a/srcpkgs/subtitleeditor/template +++ b/srcpkgs/subtitleeditor/template @@ -1,6 +1,6 @@ # Template file for 'subtitleeditor' pkgname=subtitleeditor -version=0.55.0 +version=0.56.1 revision=1 build_style=gnu-configure hostmakedepends="autogen automake intltool libtool pkg-config gettext-devel" @@ -12,7 +12,7 @@ maintainer="newbluemoon " license="GPL-3.0-or-later" homepage="https://subtitleeditor.github.io/subtitleeditor/" distfiles="https://github.com/subtitleeditor/subtitleeditor/archive/${version}.tar.gz" -checksum=1bfcd00efb1d0aeae55ac32129d5007a29697cd32351a52306675eabfda7dbb1 +checksum=180eb66f184b01b0df2b5631d816c331dcd3c329a68835dae02d81d7b544fbf5 pre_configure() { NOCONFIGURE=1 ./autogen.sh From e49c481ca35d2cc187fa8676a0b193fe5daed02f Mon Sep 17 00:00:00 2001 From: Yushi Date: Mon, 2 Feb 2026 00:36:41 +0800 Subject: [PATCH 204/295] networkmanager-dmenu: update to 2.6.3. --- srcpkgs/networkmanager-dmenu/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/networkmanager-dmenu/template b/srcpkgs/networkmanager-dmenu/template index 43f04cd396780a..0aa8bab649d9f3 100644 --- a/srcpkgs/networkmanager-dmenu/template +++ b/srcpkgs/networkmanager-dmenu/template @@ -1,6 +1,6 @@ # Template file for 'networkmanager-dmenu' pkgname=networkmanager-dmenu -version=2.6.2 +version=2.6.3 revision=1 depends="python3 NetworkManager python3-gobject" short_desc="Control NetworkManager via dmenu" @@ -8,7 +8,7 @@ maintainer="Yushi " license="MIT" homepage="https://github.com/firecat53/networkmanager-dmenu" distfiles="https://github.com/firecat53/networkmanager-dmenu/archive/refs/tags/v${version}.tar.gz" -checksum=7a29d9d341bd093d61dc73c5a820c1788c652bcbf6481d6773188cc8ec04c9f4 +checksum=e4bc5e01551052792d5fa20f8f75dc650e475cd51160f2843c8f021aae9ee23c do_install() { vbin networkmanager_dmenu From d95f289abefa15d55d2f2326f30a1a41322832db Mon Sep 17 00:00:00 2001 From: Mateusz Sylwestrzak Date: Sat, 31 Jan 2026 15:13:47 +0100 Subject: [PATCH 205/295] nfs-utils: remove automatic statd check and defer control to user --- srcpkgs/nfs-utils/files/nfs-server/run | 5 ----- srcpkgs/nfs-utils/template | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/srcpkgs/nfs-utils/files/nfs-server/run b/srcpkgs/nfs-utils/files/nfs-server/run index 4c485106bd05d5..202f862c19bc04 100644 --- a/srcpkgs/nfs-utils/files/nfs-server/run +++ b/srcpkgs/nfs-utils/files/nfs-server/run @@ -7,11 +7,6 @@ exec 2>&1 # Settings in ./conf should be preferred over /etc/conf.d/nfs-server.conf [ -r ./conf ] && . ./conf -# If this var is set, there's no need to enable statd and rpcbind services as they pertain to NFSv3 -if [ -z "$NFSV4_ONLY" ]; then - sv check statd >/dev/null || exit 1 -fi - # Check/mount rpc_pipefs (loads sunrpc kernel module) if ! mountpoint -q /var/lib/nfs/rpc_pipefs; then mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs -o defaults || exit 1 diff --git a/srcpkgs/nfs-utils/template b/srcpkgs/nfs-utils/template index aa96efe9adaa6c..0df32e4b3602f4 100644 --- a/srcpkgs/nfs-utils/template +++ b/srcpkgs/nfs-utils/template @@ -1,7 +1,7 @@ # Template file for 'nfs-utils' pkgname=nfs-utils version=2.8.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-statduser=nobody --enable-gss --enable-nfsv4 --with-statedir=/var/lib/nfs --enable-libmount-mount --enable-svcgss From 72915d6a5639005219a5d42e61f6f2d06a4e61f0 Mon Sep 17 00:00:00 2001 From: Folling Date: Sat, 31 Jan 2026 14:33:36 +0100 Subject: [PATCH 206/295] choose: update to 1.3.7. --- srcpkgs/choose/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/choose/template b/srcpkgs/choose/template index 6917bad2fa1acd..5ca6637ce4a2b8 100644 --- a/srcpkgs/choose/template +++ b/srcpkgs/choose/template @@ -1,6 +1,6 @@ # Template file for 'choose' pkgname=choose -version=1.3.6 +version=1.3.7 revision=1 build_style=cargo short_desc="Human-friendly and fast alternative to cut (and sometimes awk)" @@ -9,4 +9,4 @@ license="GPL-3.0-or-later" homepage="https://github.com/theryangeary/choose" changelog="https://github.com/theryangeary/choose/releases" distfiles="https://github.com/theryangeary/choose/archive/refs/tags/v${version}.tar.gz" -checksum=3d28dc39339dbf5c6197eb803b199661d6d261bc827c194b31b19d1afad01487 +checksum=8f51a315fbbe0688c4a2078ba8bc8446d36943b6cce6ed9bbd6a11f33bd1a134 From b3ef55ef0005cfc3cf75f5b9459310e7b4976c2a Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Mon, 5 Jan 2026 09:21:23 -0500 Subject: [PATCH 207/295] python3-cli_helpers: update to 2.7.0, adopt. --- srcpkgs/python3-cli_helpers/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template index 259ba72e7b66af..396b21993131e9 100644 --- a/srcpkgs/python3-cli_helpers/template +++ b/srcpkgs/python3-cli_helpers/template @@ -1,18 +1,18 @@ # Template file for 'python3-cli_helpers' pkgname=python3-cli_helpers -version=2.4.0 -revision=2 +version=2.7.0 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-configobj python3-tabulate python3-Pygments" checkdepends="python3-pytest ${depends}" short_desc="Python helpers for building command-line apps" -maintainer="Orphaned " +maintainer="Joel Beckmeyer " license="BSD-3-Clause" homepage="https://cli-helpers.rtfd.io/" changelog="https://raw.githubusercontent.com/dbcli/cli_helpers/main/CHANGELOG" distfiles="${PYPI_SITE}/c/cli_helpers/cli_helpers-${version}.tar.gz" -checksum=55903b705a212a473731db20fa26f58655e354078b99cb13c99ec06940287a4d +checksum=62d11710dbebc2fc460003de1215688325d8636859056d688b38419bd4048bc0 post_install() { vlicense LICENSE From bd61745a3b19eb0e2302cc64bc76670588c86cc4 Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Mon, 5 Jan 2026 09:21:22 -0500 Subject: [PATCH 208/295] pgcli: update to 4.4.0. --- srcpkgs/pgcli/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template index 82fddde94cda03..d2c792f40ee11b 100644 --- a/srcpkgs/pgcli/template +++ b/srcpkgs/pgcli/template @@ -1,9 +1,9 @@ # Template file for 'pgcli' pkgname=pgcli -version=4.3.0 -revision=2 +version=4.4.0 +revision=1 build_style=python3-pep517 -hostmakedepends="python3-setuptools" +hostmakedepends="python3-setuptools_scm" depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit python3-psycopg python3-sqlparse python3-configobj python3-cli_helpers python3-setproctitle python3-tzlocal" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://www.pgcli.com" changelog="https://raw.githubusercontent.com/dbcli/pgcli/main/changelog.rst" distfiles="${PYPI_SITE}/p/pgcli/pgcli-${version}.tar.gz" -checksum=765ae1550c5508a481f19f16a99716c253fe91afb255797add2d635da20b6aef +checksum=bd5f8d68af28fd69551a3cb48a2849cad5f6854aa48022e9d98c6236d109eeae make_check=no # pgcli tests require a PostgreSQL server; skip them. post_install() { From 84b26edef5a5aa4f60d1c51804613ef11c5a90dc Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Mon, 5 Jan 2026 09:21:21 -0500 Subject: [PATCH 209/295] litecli: update to 1.17.1. --- srcpkgs/litecli/template | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/srcpkgs/litecli/template b/srcpkgs/litecli/template index 36625a0516a6fa..85923dab3a4d95 100644 --- a/srcpkgs/litecli/template +++ b/srcpkgs/litecli/template @@ -1,13 +1,11 @@ # Template file for 'litecli' pkgname=litecli -version=1.15.0 -revision=2 +version=1.17.1 +revision=1 build_style=python3-pep517 -# skip half-baked tests, should be fixed in next release -make_check_args="--ignore=tests/test_llm_special.py" hostmakedepends="python3-setuptools_scm" depends="python3-click python3-Pygments python3-prompt_toolkit python3-sqlparse - python3-configobj python3-cli_helpers python3-pip python3-setuptools" + python3-configobj python3-cli_helpers" checkdepends="${depends} python3-pytest python3-mock" short_desc="CLI for SQLite Databases with auto-completion and syntax highlighting" maintainer="Joel Beckmeyer " @@ -15,7 +13,7 @@ license="BSD-3-Clause" homepage="https://litecli.com" changelog="https://raw.githubusercontent.com/dbcli/litecli/main/CHANGELOG.md" distfiles="${PYPI_SITE}/l/litecli/litecli-${version}.tar.gz" -checksum=3285997f57b2d72dc70e9856cb302cddd8de07b0cebf5c90a60ecd20a053cd79 +checksum=e2f7191eaba830b24dbbfc9171a495c62562df923ba1cc3b2db2652547c1bac8 post_install() { vlicense LICENSE From 3255aad66da22aa2183978e1e28a68345e9a5665 Mon Sep 17 00:00:00 2001 From: dogknowsnx Date: Fri, 30 Jan 2026 09:06:57 +0100 Subject: [PATCH 210/295] hosts-update: remove package Deprecated and obsolete: https://github.com/graysky2/hosts-update --- .../hosts-update/patches/disable-systemd.patch | 12 ------------ srcpkgs/hosts-update/template | 16 ---------------- 2 files changed, 28 deletions(-) delete mode 100644 srcpkgs/hosts-update/patches/disable-systemd.patch delete mode 100644 srcpkgs/hosts-update/template diff --git a/srcpkgs/hosts-update/patches/disable-systemd.patch b/srcpkgs/hosts-update/patches/disable-systemd.patch deleted file mode 100644 index 29ade7b2549a41..00000000000000 --- a/srcpkgs/hosts-update/patches/disable-systemd.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru a/Makefile b/Makefile ---- a/Makefile 2015-09-09 07:54:02.000000000 -0700 -+++ b/Makefile 2015-11-23 02:32:22.886247897 -0800 -@@ -26,7 +26,7 @@ - install -Dm644 doc/$(PN).1 "$(DESTDIR)$(MANDIR)/$(PN).1" - gzip -9 "$(DESTDIR)$(MANDIR)/$(PN).1" - --install: install-bin install-man install-systemd -+install: install-bin install-man - - install-systemd: - $(Q)echo -e '\033[1;32mInstalling systemd files...\033[0m' diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template deleted file mode 100644 index 5d872b4f4e8986..00000000000000 --- a/srcpkgs/hosts-update/template +++ /dev/null @@ -1,16 +0,0 @@ -# Template file for 'hosts-update' -pkgname=hosts-update -version=1.38 -revision=1 -build_style=gnu-makefile -depends="bash curl" -short_desc="Updates /etc/hosts with the mvps blocklist" -maintainer="Orphaned " -license="MIT" -homepage="https://github.com/graysky2/hosts-update" -distfiles="${homepage}/archive/v${version}.tar.gz" -checksum="9a0fdb028beaf9fa4c2ec5f1a0030fcfe1a996ea42b874b944ec07885ca0f2ba" - -post_install() { - vlicense MIT -} From 36bf2426860aa4e2ed62b8cc415dd998d71bd715 Mon Sep 17 00:00:00 2001 From: dogknowsnx Date: Sat, 31 Jan 2026 16:34:16 +0100 Subject: [PATCH 211/295] removed-packages: bump to 20260131 --- srcpkgs/removed-packages/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 4ff41a39c18780..2abb6f0a1b1d75 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -1,7 +1,7 @@ # Template file for 'removed-packages' pkgname=removed-packages -version=0.1.20260130 -revision=2 +version=0.1.20260131 +revision=1 metapackage=yes short_desc="Uninstalls packages removed from repository" maintainer="Piotr Wójcik " @@ -242,6 +242,7 @@ replaces=" hangups<=0.4.18_2 hardinfo<=0.5.1_14 hikari<=2.3.3_3 + hosts-update<=1.38_1 httperf<=0.9.0_9 icecat-i18n-ach<=78.6.1_1 icecat-i18n-af<=78.6.1_1 From 15f519de4fba3ee29d92f36457f662554607ee79 Mon Sep 17 00:00:00 2001 From: biopsin Date: Tue, 27 Jan 2026 20:24:44 +0100 Subject: [PATCH 212/295] dunst: update to 1.31.1 --- srcpkgs/dunst/template | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/srcpkgs/dunst/template b/srcpkgs/dunst/template index 72db7c4ba7a130..371f23b80210a1 100644 --- a/srcpkgs/dunst/template +++ b/srcpkgs/dunst/template @@ -1,6 +1,6 @@ # Template file for 'dunst' pkgname=dunst -version=1.13.0 +version=1.13.1 revision=1 build_style=gnu-makefile make_check_target=test @@ -18,7 +18,7 @@ license="BSD-3-Clause" homepage="https://dunst-project.org" changelog="https://raw.githubusercontent.com/dunst-project/dunst/master/CHANGELOG.md" distfiles="https://github.com/dunst-project/dunst/archive/v${version}.tar.gz" -checksum=7a8a1813977ad5941488c66b914501703fc0f6e12e631dc18506ad617242e7a0 +checksum=a578e5c2cdb546187355c710f1aa84c472e6e23828e692fe1cb0ebb9635b11a6 build_options="wayland" build_options_default="wayland" @@ -26,10 +26,12 @@ build_options_default="wayland" post_install() { vlicense LICENSE vcompletion completions/dunst.bashcomp bash + vcompletion completions/dunstify.bashcomp fish vcompletion completions/dunstctl.bashcomp bash vcompletion completions/dunst.fishcomp fish - vcompletion completions/dunstctl.fishcomp fish vcompletion completions/dunstify.fishcomp fish + vcompletion completions/dunstctl.fishcomp fish vcompletion completions/_dunst.zshcomp zsh + vcompletion completions/_dunstify.zshcomp fish vcompletion completions/_dunstctl.zshcomp zsh } From f582d9f82badcd86d43e365010a7ac112722df0b Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Tue, 27 Jan 2026 16:25:22 -0500 Subject: [PATCH 213/295] synapse: update to 1.146.0. --- srcpkgs/synapse/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template index e39c616455634a..f8f05499402dca 100644 --- a/srcpkgs/synapse/template +++ b/srcpkgs/synapse/template @@ -1,6 +1,6 @@ # Template file for 'synapse' pkgname=synapse -version=1.145.0 +version=1.146.0 revision=1 build_style=python3-pep517 build_helper=rust @@ -26,7 +26,7 @@ license="AGPL-3.0-or-later" homepage="https://element-hq.github.io/synapse" changelog="https://raw.githubusercontent.com/element-hq/synapse/develop/CHANGES.md" distfiles="https://github.com/element-hq/synapse/archive/refs/tags/v${version}.tar.gz" -checksum=edc743fbb0e0cbae1efedc90d0edc31533469ef638342dd588dc30b957c9fbd9 +checksum=7791f0ee45659eea19c057cb9a00a9bc1f51d71bb8cc3b4cfa180b8cdb4e0438 system_accounts="synapse" synapse_homedir="/var/lib/synapse" From d53da609ceba61298a2aa2589b7d41090dcfd6dc Mon Sep 17 00:00:00 2001 From: biopsin Date: Wed, 28 Jan 2026 00:18:30 +0100 Subject: [PATCH 214/295] badwolf: update to 1.4.0 --- srcpkgs/badwolf/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/badwolf/template b/srcpkgs/badwolf/template index 6cbc9b31248ab4..d1f8c56efa7721 100644 --- a/srcpkgs/badwolf/template +++ b/srcpkgs/badwolf/template @@ -1,6 +1,6 @@ # Template file for 'badwolf' pkgname=badwolf -version=1.3.0 +version=1.4.0 revision=1 build_style=configure configure_args="PREFIX=/usr WITH_WEBKITGTK=4.1 WITH_URI_PARSER=guri" @@ -13,8 +13,8 @@ maintainer="yosh " license="BSD-3-Clause" homepage="https://hacktivis.me/projects/badwolf" changelog="https://hacktivis.me/releases/badwolf-${version}.txt" -distfiles="https://hacktivis.me/releases/badwolf-${version}.tar.gz" -checksum=276dfccba8addfc205ceb10477668e4b2b6a4853f344c86d5c1e35b1c703459f +distfiles="https://distfiles.hacktivis.me/releases/badwolf/badwolf-${version}.tar.gz" +checksum=9542978a77fef179e386d803cc3dad340202c354c09201d4200c93b0c95b59d3 do_install() { DESTDIR=${DESTDIR} ninja install From 70eb4c2018645cb9dc1ded731e39123f6978affe Mon Sep 17 00:00:00 2001 From: lilirin Date: Mon, 26 Jan 2026 09:48:21 +0100 Subject: [PATCH 215/295] crispy-doom: update to 7.1. --- srcpkgs/crispy-doom/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/crispy-doom/template b/srcpkgs/crispy-doom/template index 41cb02cc8db3a3..5f695475e2f91c 100644 --- a/srcpkgs/crispy-doom/template +++ b/srcpkgs/crispy-doom/template @@ -1,6 +1,6 @@ # Template file for 'crispy-doom' pkgname=crispy-doom -version=7.0 +version=7.1 revision=1 build_style=gnu-configure hostmakedepends="autoconf automake pkg-config python3" @@ -10,7 +10,7 @@ maintainer="Orphaned " license="GPL-2.0-or-later" homepage="https://github.com/fabiangreffrath/crispy-doom" distfiles="https://github.com/fabiangreffrath/crispy-doom/archive/crispy-doom-${version}.tar.gz" -checksum=25eea88fdbe1320ad0d1a3e0ed66ae8d985c39b79e442beab5fc36d9d5ddfc42 +checksum=f0eb02afb81780165ddc81583ed5648cbee8b3205bcc27e181b3f61eb26f8416 pre_configure() { autoreconf -fi From 460fa993285d54d3f780107dc849b2be7ae34d59 Mon Sep 17 00:00:00 2001 From: ErenHDE Date: Sun, 25 Jan 2026 23:09:37 +0300 Subject: [PATCH 216/295] safeeyes: update to 3.3.1. --- .../patches/fix-python3.12-importlib.patch | 28 ------------------- srcpkgs/safeeyes/template | 12 ++++---- 2 files changed, 6 insertions(+), 34 deletions(-) delete mode 100644 srcpkgs/safeeyes/patches/fix-python3.12-importlib.patch diff --git a/srcpkgs/safeeyes/patches/fix-python3.12-importlib.patch b/srcpkgs/safeeyes/patches/fix-python3.12-importlib.patch deleted file mode 100644 index f633b7513bb12a..00000000000000 --- a/srcpkgs/safeeyes/patches/fix-python3.12-importlib.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/safeeyes/utility.py b/safeeyes/utility.py -index 76803e5..ad35134 100644 ---- a/safeeyes/utility.py -+++ b/safeeyes/utility.py -@@ -21,9 +21,9 @@ This module contains utility functions for Safe Eyes and its plugins. - """ - - import errno --import imp - import inspect - import importlib -+import importlib.util - import json - import locale - import logging -@@ -354,11 +354,7 @@ def module_exist(module): - """ - Check wther the given Python module exists or not. - """ -- try: -- imp.find_module(module) -- return True -- except ImportError: -- return False -+ return importlib.util.find_spec(module) is not None - - - def merge_configs(new_config, old_config): diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template index fc72e5e34c4dc6..465e3746f91bba 100644 --- a/srcpkgs/safeeyes/template +++ b/srcpkgs/safeeyes/template @@ -1,16 +1,16 @@ # Template file for 'safeeyes' pkgname=safeeyes -version=2.1.6 -revision=3 +version=3.3.1 +revision=1 build_style=python3-module -hostmakedepends="python3-setuptools python3-devel pkg-config" +hostmakedepends="python3-setuptools python3-devel pkg-config gettext" makedepends="python3-devel cairo-devel libgirepository-devel" depends="python3-psutil libayatana-appindicator python3-gobject python3-Babel - python3-dbus xprop alsa-utils python3-xlib" + python3-dbus xprop alsa-utils python3-xlib python3-packaging" checkdepends="$depends python3-pip" short_desc="Tool to reduce and prevent repetitive strain injury" maintainer="Orphaned " license="GPL-3.0-or-later" -homepage="https://slgobinath.github.io/SafeEyes/" +homepage="https://slgobinath.github.io/safeeyes/" distfiles="${PYPI_SITE}/s/safeeyes/safeeyes-${version}.tar.gz" -checksum=b6fb014dfebecca07307968bf8b51c12f1388e65479e7a18d0be31a0a309d2f3 +checksum=14a41722be0775d3111c47d240a509809c7d3a4f21caa5e1810d17b71d5a668b From 39efb5bb5004fdb0db527bdf9a32e098bee1f837 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Tue, 3 Feb 2026 12:15:08 +0100 Subject: [PATCH 217/295] topgrade: update to 16.9.0 --- srcpkgs/topgrade/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/topgrade/template b/srcpkgs/topgrade/template index 60b39b1094a160..9621fec400dc5a 100644 --- a/srcpkgs/topgrade/template +++ b/srcpkgs/topgrade/template @@ -1,6 +1,6 @@ # Template file for 'topgrade' pkgname=topgrade -version=16.8.0 +version=16.9.0 revision=1 build_style=cargo build_helper=qemu @@ -9,7 +9,7 @@ maintainer="tranzystorekk " license="GPL-3.0-or-later" homepage="https://github.com/topgrade-rs/topgrade" distfiles="https://github.com/topgrade-rs/topgrade/archive/refs/tags/v${version}.tar.gz" -checksum=d3cb27fa946440eb2ff6253a1a15ac16d6d02f6594bf98ada8e015f3b623a874 +checksum=d6e8376c6363545ce8994703c33f18d50fb4f8c689a2bc196bed159010c9cf03 post_install() { local _topgrade="${DESTDIR}/usr/bin/topgrade" From 81be0c97429a7d11c71cb5ef0f6c625ca325942a Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Tue, 3 Feb 2026 08:35:00 +0100 Subject: [PATCH 218/295] fish-shell: update to 4.4.0 --- srcpkgs/fish-shell/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fish-shell/template b/srcpkgs/fish-shell/template index 3aa8aa0abfbfd6..74a1ce06952e21 100644 --- a/srcpkgs/fish-shell/template +++ b/srcpkgs/fish-shell/template @@ -1,6 +1,6 @@ # Template file for 'fish-shell' pkgname=fish-shell -version=4.3.3 +version=4.4.0 revision=1 build_style=cmake build_helper="rust" @@ -15,7 +15,7 @@ license="GPL-2.0-only" homepage="https://fishshell.com/" changelog="https://raw.githubusercontent.com/fish-shell/fish-shell/refs/heads/master/CHANGELOG.rst" distfiles="https://github.com/fish-shell/fish-shell/releases/download/${version}/fish-${version}.tar.xz" -checksum=eba0e7d325c1d46046bb9d29434e7e0dabf7f584eb156845005d688e10b86e57 +checksum=529e1072c034f6c9d21a922c359886df75129c3d81a15bd8656a3c4860993ad5 register_shell="/bin/fish /usr/bin/fish" # some tests fail in ci, cba to hardcode skipping make_check=ci-skip From ffd27d3d6bd2194948baac38e72a669a53c4fda0 Mon Sep 17 00:00:00 2001 From: Gerardo Di iorio Date: Sat, 24 Jan 2026 17:24:17 +0100 Subject: [PATCH 219/295] pgmetrics: update to 1.19.0. --- srcpkgs/pgmetrics/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/pgmetrics/template b/srcpkgs/pgmetrics/template index 90e26eebe42c41..f6f4efff2a1020 100644 --- a/srcpkgs/pgmetrics/template +++ b/srcpkgs/pgmetrics/template @@ -1,6 +1,6 @@ # Template file for 'pgmetrics' pkgname=pgmetrics -version=1.18.0 +version=1.19.0 revision=1 build_style=go go_import_path="github.com/rapidloop/pgmetrics" @@ -10,7 +10,7 @@ maintainer="Gerardo Di iorio " license="Apache-2.0" homepage="https://pgmetrics.io" distfiles="https://github.com/rapidloop/pgmetrics/archive/refs/tags/v${version}.tar.gz" -checksum=aa47fe07ad4e032d9f4c09d2727c866f1594df2ad191528fd8893c43f01a108c +checksum=5e8e2918700b0d0dba43fe14651ce27e39717094b5cb26691432db7a5919255d post_install() { vdoc README.md From 9b348b79497124c3bd1a33f7fd5b2b7cbc3cba4f Mon Sep 17 00:00:00 2001 From: Gerardo Di iorio Date: Sat, 24 Jan 2026 16:35:31 +0100 Subject: [PATCH 220/295] hcloud: update to 1.61.0. --- srcpkgs/hcloud/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/hcloud/template b/srcpkgs/hcloud/template index d780332f8d8319..a776e859181ac9 100644 --- a/srcpkgs/hcloud/template +++ b/srcpkgs/hcloud/template @@ -1,6 +1,6 @@ # Template file for 'hcloud' pkgname=hcloud -version=1.59.0 +version=1.61.0 revision=1 build_style=go build_helper=qemu @@ -13,7 +13,7 @@ license="MIT" homepage="https://github.com/hetznercloud/cli" changelog="https://raw.githubusercontent.com/hetznercloud/cli/main/CHANGELOG.md" distfiles="https://github.com/hetznercloud/cli/archive/v${version}.tar.gz" -checksum=3b4b1d872c72a3da31204f743cf442cc4c5c84993f651d178d5bce0f0a7d0293 +checksum=e99b116586d8040f33994bb1ef232b7def058fcd43f24abd3db22e822da11419 post_install() { vlicense LICENSE From 98357069499a9d4a045bf235314491a31451504a Mon Sep 17 00:00:00 2001 From: Hendrik Boll Date: Sun, 25 Jan 2026 15:47:32 +0100 Subject: [PATCH 221/295] gonic: update to 0.20.1. --- srcpkgs/gonic/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gonic/template b/srcpkgs/gonic/template index 08fa84adbcdab2..d55c50068fdff5 100644 --- a/srcpkgs/gonic/template +++ b/srcpkgs/gonic/template @@ -1,6 +1,6 @@ # Template file for 'gonic' pkgname=gonic -version=0.19.0 +version=0.20.1 revision=1 build_style=go go_import_path="go.senan.xyz/gonic" @@ -12,7 +12,7 @@ maintainer="Hendrik Boll " license="GPL-3.0-or-later" homepage="https://github.com/sentriz/gonic" distfiles="https://github.com/sentriz/gonic/archive/v${version}.tar.gz" -checksum=929169a79ff498e08f80e4ed9d0949e87cbbf75769a7d1c6bd4cedf322bbad71 +checksum=1db74fc3d9c563d24acbc7c9ddf8674376cbf823fe486b2f90216f32bbc2b2b5 system_accounts="_gonic" _gonic_homedir="/var/lib/gonic" From 178d10049fdbe4c08ca1322f6722cb06f21ad20d Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Wed, 21 Jan 2026 08:18:12 -0500 Subject: [PATCH 222/295] borgmatic: update to 2.1.0. --- srcpkgs/borgmatic/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template index a2c6def1c4d070..56754b4f0b27e9 100644 --- a/srcpkgs/borgmatic/template +++ b/srcpkgs/borgmatic/template @@ -1,6 +1,6 @@ # Template file for 'borgmatic' pkgname=borgmatic -version=2.0.13 +version=2.1.0 revision=1 build_style=python3-pep517 make_check_args="--deselect=tests/integration/commands/test_borgmatic.py::test_borgmatic_version_matches_news_version" @@ -14,7 +14,7 @@ license="GPL-3.0-or-later" homepage="https://torsion.org/borgmatic/" changelog="https://projects.torsion.org/borgmatic-collective/borgmatic/raw/branch/master/NEWS" distfiles="${PYPI_SITE}/b/borgmatic/borgmatic-${version}.tar.gz" -checksum=d0fae3821fcbe670a8dc235765c70d5bd0f3dddea321fad70d99b2e5f2faceb5 +checksum=495f21fbfa34130706862d44710921cfff6e0a07844464012995548046865e64 post_patch() { vsed -i pyproject.toml -e 's/--cov-report.*--cov-fail-under=100//' From 1e855217c1deb2be0e958f6cbb94fa455df6ebe2 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 21 Jan 2026 10:37:38 +0100 Subject: [PATCH 223/295] urh: update to 2.10.0 --- srcpkgs/urh/patches/cython-3.1.patch | 20 -------------------- srcpkgs/urh/patches/numpy.patch | 22 ---------------------- srcpkgs/urh/template | 13 +++++++------ 3 files changed, 7 insertions(+), 48 deletions(-) delete mode 100644 srcpkgs/urh/patches/cython-3.1.patch delete mode 100644 srcpkgs/urh/patches/numpy.patch diff --git a/srcpkgs/urh/patches/cython-3.1.patch b/srcpkgs/urh/patches/cython-3.1.patch deleted file mode 100644 index c8ecb5b6018c9a..00000000000000 --- a/srcpkgs/urh/patches/cython-3.1.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/src/urh/dev/native/lib/chackrf.pxd -+++ b/src/urh/dev/native/lib/chackrf.pxd -@@ -54,7 +54,7 @@ - uint32_t part_id[2] - uint32_t serial_no[4] - -- ctypedef struct hackrf_device_list: -+ ctypedef struct c_hackrf_device_list "hackrf_device_list": - char ** serial_numbers - hackrf_usb_board_id * usb_board_ids - int *usb_device_index -@@ -63,7 +63,7 @@ - void ** usb_devices - int usb_devicecount - -- ctypedef hackrf_device_list hackrf_device_list_t; -+ ctypedef c_hackrf_device_list hackrf_device_list_t; - - ctypedef int (*hackrf_sample_block_cb_fn)(hackrf_transfer* transfer) - diff --git a/srcpkgs/urh/patches/numpy.patch b/srcpkgs/urh/patches/numpy.patch deleted file mode 100644 index 76dd552a9d0dd6..00000000000000 --- a/srcpkgs/urh/patches/numpy.patch +++ /dev/null @@ -1,22 +0,0 @@ -Either urh works with numpy >= 2.0, or it has been long broken anyway. - ---- a/setup.py -+++ b/setup.py -@@ -142,7 +142,7 @@ - return "" - - --install_requires = ["numpy<2.0.0", "psutil", "cython", "setuptools"] -+install_requires = ["numpy", "psutil", "cython", "setuptools"] - if IS_RELEASE: - install_requires.append("pyqt5") - else: -@@ -168,7 +168,7 @@ - license="GNU General Public License (GPL)", - download_url="https://github.com/jopohl/urh/tarball/v" + str(version.VERSION), - install_requires=install_requires, -- setup_requires=["numpy<2.0.0"], -+ setup_requires=["numpy"], - packages=get_packages(), - ext_modules=get_extensions(), - cmdclass={"build_ext": build_ext}, diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template index 2948f4b1c1417b..fa7e43cd56f374 100644 --- a/srcpkgs/urh/template +++ b/srcpkgs/urh/template @@ -1,13 +1,14 @@ # Template file for 'urh' pkgname=urh -version=2.9.8 -revision=4 +version=2.10.0 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" -makedepends="python3-devel python3-PyQt5 libairspy-devel librtlsdr-devel +makedepends="python3-devel python3-pyqt6 libairspy-devel librtlsdr-devel libhackrf-devel uhd-devel libgomp-devel" -depends="python3-numpy python3-PyQt5 python3-Cython python3-psutil - python3-setuptools" +depends="python3-numpy python3-pyqt6 python3-pyqt6-gui python3-pyqt6-widgets + python3-pyqt6-devel-tools python3-pyqt6-test python3-Cython + python3-psutil python3-setuptools" checkdepends="$depends" short_desc="Universal Radio Hacker: investigate unknown wireless protocols" maintainer="Emil Miler " @@ -15,7 +16,7 @@ license="GPL-3.0-or-later" homepage="https://github.com/jopohl/urh" changelog="https://github.com/jopohl/urh/releases" distfiles="https://github.com/jopohl/urh/archive/refs/tags/v${version}.tar.gz" -checksum=6d564cbcf1dd5fd0bd86a349826b4ae4a6bc95ff0ec77b0e1027f2f2260fb9fd +checksum=95bf54f9234dd2570ec9706bb632c3df4f24517f52b5ae6ccacd7194f960ff21 post_install() { vinstall data/urh.desktop 644 usr/share/applications From 17660235391d86bbcfbb968eb0ed756f6cc34654 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 21 Jan 2026 09:26:53 +0100 Subject: [PATCH 224/295] datovka: update to 4.28.0 --- srcpkgs/datovka/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/datovka/template b/srcpkgs/datovka/template index ad60929d279394..cbb1713fefb08c 100644 --- a/srcpkgs/datovka/template +++ b/srcpkgs/datovka/template @@ -1,6 +1,6 @@ # Template file for 'datovka' pkgname=datovka -version=4.27.0 +version=4.28.0 revision=1 build_style=qmake hostmakedepends="pkg-config qt5-qmake qt5-host-tools" @@ -12,7 +12,7 @@ maintainer="Emil Miler " license="GPL-3.0-or-later" homepage="https://www.datovka.cz/" distfiles="https://datovka.nic.cz/${version}/${pkgname}-${version}.tar.xz" -checksum=9e353316cd266fba50de1c7cd6c43b9f7b65667160d3e6e4f8a661389de08bf3 +checksum=05dc0c541fc4d67da4bf41cda16d7b8307f25a15ed003c1a09b7d467283f6300 post_extract() { # XXX: from https://gitlab.alpinelinux.org/alpine/aports/-/blob/master/community/datovka/APKBUILD From d4ef849c6b24627354dda4bf1223b04006f8d218 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 21 Jan 2026 09:14:51 +0100 Subject: [PATCH 225/295] nasa-wallpaper: update to 2.1.2 --- srcpkgs/nasa-wallpaper/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nasa-wallpaper/template b/srcpkgs/nasa-wallpaper/template index 7b0ef34cfb75a3..4e40241ae61fc6 100644 --- a/srcpkgs/nasa-wallpaper/template +++ b/srcpkgs/nasa-wallpaper/template @@ -1,6 +1,6 @@ # Template file for 'nasa-wallpaper' pkgname=nasa-wallpaper -version=2.1.1 +version=2.1.2 revision=1 build_style="cargo" hostmakedepends="pkg-config" @@ -10,4 +10,4 @@ maintainer="Emil Miler " license="Apache-2.0" homepage="https://github.com/davidpob99/nasa-wallpaper/" distfiles="https://github.com/davidpob99/nasa-wallpaper/archive/refs/tags/v${version}.tar.gz" -checksum=0d104c25b94abe4707c7fcf0745a11692ade8b61946943abd5c6d0572ee44fbf +checksum=ab263f5017d55f4cd7a1d353b411c18cc70ac06c27f48b500e8c877cba6a91ec From 4beba707ddeb6e8731fa1ef11238efe0994ea4b6 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 21 Jan 2026 09:10:46 +0100 Subject: [PATCH 226/295] python3-starlette: update to 0.52.1 --- srcpkgs/python3-starlette/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-starlette/template b/srcpkgs/python3-starlette/template index 5b2b1010ff1724..d5b5b7b20316e9 100644 --- a/srcpkgs/python3-starlette/template +++ b/srcpkgs/python3-starlette/template @@ -1,6 +1,6 @@ # Template file for 'python3-starlette' pkgname=python3-starlette -version=0.50.0 +version=0.52.1 revision=1 build_style=python3-pep517 hostmakedepends="hatchling python3-pluggy" @@ -10,7 +10,7 @@ maintainer="Emil Miler " license="BSD-3-Clause" homepage="https://github.com/encode/starlette" distfiles="${PYPI_SITE}/s/starlette/starlette-${version}.tar.gz" -checksum=a2a17b22203254bcbc2e1f926d2d55f3f9497f769416b3190768befe598fa3ca +checksum=834edd1b0a23167694292e94f597773bc3f89f362be6effee198165a35d62933 # Many modules needed for testing are not available make_check=no From 173fe5497aa13c4231e05c6c4ad9be737071cca6 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 21 Jan 2026 09:01:37 +0100 Subject: [PATCH 227/295] acme.sh: update to 3.1.2 --- srcpkgs/acme.sh/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/acme.sh/template b/srcpkgs/acme.sh/template index 4e517013c4a258..7fc821c6d581b1 100644 --- a/srcpkgs/acme.sh/template +++ b/srcpkgs/acme.sh/template @@ -1,13 +1,13 @@ # Template file for 'acme.sh' pkgname=acme.sh -version=3.1.1 +version=3.1.2 revision=1 short_desc="Pure Unix shell script implementing ACME client protocol" maintainer="Emil Miler " license="GPL-3.0-or-later" homepage="https://github.com/acmesh-official/acme.sh" distfiles="https://github.com/acmesh-official/acme.sh/archive/refs/tags/${version}.tar.gz" -checksum=c5d623ac0af400e83cd676aefaf045228f60e9fc597fea5db4c3a5bd7f6bfcf4 +checksum=a51511ad0e2912be45125cf189401e4ae776ca1a29d5768f020a1e35a9560186 do_install() { vmkdir usr/share/acme.sh/deploy From 73c1736f5503e015573d9c1c6e37af37e09907d8 Mon Sep 17 00:00:00 2001 From: Roger Freitas Pereira Date: Tue, 20 Jan 2026 20:33:32 -0300 Subject: [PATCH 228/295] lazydocker: update to 0.24.4. --- srcpkgs/lazydocker/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/lazydocker/template b/srcpkgs/lazydocker/template index f62755af4bb75d..2d8f0e9bc86edc 100644 --- a/srcpkgs/lazydocker/template +++ b/srcpkgs/lazydocker/template @@ -1,6 +1,6 @@ # Template file for 'lazydocker' pkgname=lazydocker -version=0.24.3 +version=0.24.4 revision=1 build_style=go go_import_path=github.com/jesseduffield/lazydocker @@ -11,7 +11,7 @@ maintainer="Orphaned " license="MIT" homepage="https://github.com/jesseduffield/lazydocker" distfiles="https://github.com/jesseduffield/lazydocker/archive/v${version}.tar.gz" -checksum=d6676b678105517a183d878180b041f186cd45a5591a2a7f25f30d5c0ee17670 +checksum=f8299de3c1a86b81ff70e2ae46859fc83f2b69e324ec5a16dd599e8c49fb4451 post_install() { vlicense LICENSE From 47de5a67784c0ede1a0b8ac3d1dd92d31178aba8 Mon Sep 17 00:00:00 2001 From: elbachir-one Date: Tue, 20 Jan 2026 16:22:04 +0100 Subject: [PATCH 229/295] xcaddy: update to 0.4.5 --- srcpkgs/xcaddy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xcaddy/template b/srcpkgs/xcaddy/template index b67373047f3132..4841d567ed7244 100644 --- a/srcpkgs/xcaddy/template +++ b/srcpkgs/xcaddy/template @@ -1,6 +1,6 @@ # Template file for 'xcaddy' pkgname=xcaddy -version=0.4.4 +version=0.4.5 revision=1 build_style=go go_import_path="github.com/caddyserver/xcaddy" @@ -10,4 +10,4 @@ maintainer="elbachir-one " license="Apache-2.0" homepage="https://github.com/caddyserver/xcaddy" distfiles="https://github.com/caddyserver/xcaddy/archive/refs/tags/v${version}.tar.gz" -checksum=5ba32eec2388638cebbe1df861ea223c35074528af6a0424f07e436f07adce72 +checksum=53c6a9e29965aaf19210ac6470935537040e782101057a199098feb33c2674f8 From 33510402e743b85a76fde85c38ed3f7a6219d7d9 Mon Sep 17 00:00:00 2001 From: lilirin Date: Mon, 19 Jan 2026 22:37:52 +0100 Subject: [PATCH 230/295] schismtracker: update to 20251014. --- srcpkgs/schismtracker/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/schismtracker/template b/srcpkgs/schismtracker/template index 49113460e93032..cba27411b31bcb 100644 --- a/srcpkgs/schismtracker/template +++ b/srcpkgs/schismtracker/template @@ -1,6 +1,6 @@ # Template file for 'schismtracker' pkgname=schismtracker -version=20250825 +version=20251014 revision=1 build_style=gnu-configure hostmakedepends="pkg-config autoconf-archive automake SDL2-devel python3 git" @@ -10,7 +10,7 @@ maintainer="Orphaned " license="GPL-2.0-or-later" homepage="https://schismtracker.org" distfiles="https://github.com/schismtracker/schismtracker/archive/${version}.tar.gz" -checksum=67d1217ca00081bd28da2c130ccfd383310226c2864b94ccd3c4ffaf5ea83978 +checksum=84e9977770a131f3bbc699c2d6cae8b3471e44a4ae1e62024f697caa6bf19d96 pre_configure() { autoreconf -fi From a17f7dfa6fbc66e1efe203181b6b806201e4f62a Mon Sep 17 00:00:00 2001 From: Filip Rojek Date: Sun, 18 Jan 2026 14:46:27 +0100 Subject: [PATCH 231/295] nvtop: update to 3.3.1 --- srcpkgs/nvtop/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/nvtop/template b/srcpkgs/nvtop/template index 85ec9302282718..911311c34a5590 100644 --- a/srcpkgs/nvtop/template +++ b/srcpkgs/nvtop/template @@ -1,6 +1,6 @@ # Template file for 'nvtop' pkgname=nvtop -version=3.3.0 +version=3.3.1 revision=1 build_style=cmake hostmakedepends="pkg-config" @@ -11,4 +11,4 @@ license="GPL-3.0-or-later" homepage="https://github.com/Syllo/nvtop" changelog="https://github.com/Syllo/nvtop/releases" distfiles="https://github.com/Syllo/nvtop/archive/refs/tags/${version}.tar.gz" -checksum=bc133b3baeb620d3b859aab6238c45de64b8269579b62e544f2ff747d129337e +checksum=8318aff973e0850bea4b9d7d313c513206cdc9b8387e8441681e84ac2bc0e980 From 4168847106e0591d53d388f888f56d9f653881a6 Mon Sep 17 00:00:00 2001 From: dogknowsnx Date: Sat, 17 Jan 2026 09:53:00 +0100 Subject: [PATCH 232/295] dnsmasq: update to 2.92 --- srcpkgs/dnsmasq/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/dnsmasq/template b/srcpkgs/dnsmasq/template index 0fe4977224d971..157897d462ab88 100644 --- a/srcpkgs/dnsmasq/template +++ b/srcpkgs/dnsmasq/template @@ -1,6 +1,6 @@ # Template file for 'dnsmasq' pkgname=dnsmasq -version=2.91 +version=2.92 revision=1 conf_files="/etc/dnsmasq.conf" hostmakedepends="pkg-config" @@ -11,7 +11,7 @@ license="GPL-2.0-or-later" homepage="https://www.thekelleys.org.uk/dnsmasq/doc.html" changelog="https://www.thekelleys.org.uk/dnsmasq/CHANGELOG" distfiles="https://www.thekelleys.org.uk/dnsmasq/dnsmasq-${version}.tar.gz" -checksum=2d26a048df452b3cfa7ba05efbbcdb19b12fe7a0388761eb5d00938624bd76c8 +checksum=fd908e79ff37f73234afcb6d3363f78353e768703d92abd8e3220ade6819b1e1 system_accounts="dnsmasq" dnsmasq_homedir="/var/chroot" From 96fb56a1e2690addb24f340ef222f32b52215efb Mon Sep 17 00:00:00 2001 From: Roger Freitas Pereira Date: Thu, 15 Jan 2026 17:53:58 -0300 Subject: [PATCH 233/295] opus: update to 1.6.1. --- srcpkgs/opus/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/opus/template b/srcpkgs/opus/template index f0a815fe15eb57..a69d17c8b60a8b 100644 --- a/srcpkgs/opus/template +++ b/srcpkgs/opus/template @@ -1,6 +1,6 @@ # Template file for 'opus' pkgname=opus -version=1.6 +version=1.6.1 revision=1 build_style=gnu-configure configure_args="--enable-dred --enable-osce --enable-custom-modes @@ -10,7 +10,7 @@ maintainer="Rutpiv " license="BSD-3-Clause" homepage="https://www.opus-codec.org/" distfiles="https://downloads.xiph.org/releases/opus/opus-${version}.tar.gz" -checksum=b7637334527201fdfd6dd6a02e67aceffb0e5e60155bbd89175647a80301c92c +checksum=6ffcb593207be92584df15b32466ed64bbec99109f007c82205f0194572411a1 build_options="qext" desc_option_qext="Enable scalable quality extension (Opus HD)" From e258439f1b1f513dc3ce369fca9f246904a41e40 Mon Sep 17 00:00:00 2001 From: biopsin Date: Thu, 15 Jan 2026 20:59:06 +0100 Subject: [PATCH 234/295] pekwm: update to 0.4.2. --- srcpkgs/pekwm/template | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/srcpkgs/pekwm/template b/srcpkgs/pekwm/template index 3ff9d728ace176..9a1713d79532b2 100644 --- a/srcpkgs/pekwm/template +++ b/srcpkgs/pekwm/template @@ -1,16 +1,16 @@ # Template file for 'pekwm' pkgname=pekwm -version=0.3.2 +version=0.4.2 revision=1 build_style=cmake hostmakedepends="pkg-config" -makedepends="libjpeg-turbo-devel libpng-devel libXpm-devel - libXft-devel fontconfig-devel libXinerama-devel libXrandr-devel - pango-devel" +makedepends="libjpeg-turbo-devel libpng-devel libXpm-devel libXft-devel + fontconfig-devel libXinerama-devel libXrandr-devel pango-devel" short_desc="Window manager based on aewm++" -maintainer="biopsin " +maintainer="biopsin " license="GPL-2.0-or-later" homepage="https://www.pekwm.se/" -distfiles="https://github.com/pekdon/pekwm/archive/release-${version}.tar.gz" -checksum=cf5e61a753f1a125877c65477ffd9b76b1aa6cec0f241f1fd6af9159dd23bfdf +distfiles="https://www.pekwm.se/pekwm/uv/pekwm-${version}.tar.gz" +checksum=6ac635af9b1e18981e6e26f7a8984b30b475622be8983515ae8d89f78632e138 conf_files="/etc/pekwm/*" +ignore_elf_dirs="/usr/share/pekwm/scripts" From 5d0b7fad8a1710545825e6ccd7a8816e27f4a06d Mon Sep 17 00:00:00 2001 From: Piotr Danecki Date: Mon, 19 Jan 2026 00:47:03 +0100 Subject: [PATCH 235/295] SDL3: update to 3.4.0 --- srcpkgs/SDL3/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/SDL3/template b/srcpkgs/SDL3/template index f4cfb673eb82d1..3ebcf86b387693 100644 --- a/srcpkgs/SDL3/template +++ b/srcpkgs/SDL3/template @@ -1,6 +1,6 @@ # Template file for 'SDL3' pkgname=SDL3 -version=3.2.28 +version=3.4.0 revision=1 build_style=cmake configure_args="-DSDL_ALSA=ON -DSDL_RPATH=OFF @@ -15,7 +15,7 @@ license="Zlib" homepage="https://www.libsdl.org/" changelog="https://raw.githubusercontent.com/libsdl-org/SDL/refs/heads/main/WhatsNew.txt" distfiles="https://www.libsdl.org/release/SDL3-${version}.tar.gz" -checksum=1330671214d146f8aeb1ed399fc3e081873cdb38b5189d1f8bb6ab15bbc04211 +checksum=082cbf5f429e0d80820f68dc2b507a94d4cc1b4e70817b119bbb8ec6a69584b8 # Package build options build_options="gles opengl pulseaudio pipewire sndio vulkan wayland x11" From fddf2732208d025a374cb1a2063e2701479b51cb Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 31 Jan 2026 09:51:26 -0500 Subject: [PATCH 236/295] common/scripts/lint-commits: fail on merge and fixup commits --- common/scripts/lint-commits | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/scripts/lint-commits b/common/scripts/lint-commits index 56f16ff194b346..1e5f8e55e4c7a5 100755 --- a/common/scripts/lint-commits +++ b/common/scripts/lint-commits @@ -49,6 +49,8 @@ do !subject { if (length > 50) { print "::warning title=Commit Lint::" C ": subject is a bit long" } if (!($0 ~ ":" || $0 ~ "^Take over maintainership " || $0 ~ "^Orphan ")) { print "::error title=Commit Lint::" C ": subject does not follow CONTRIBUTING.md guildelines"; exit 1 } + if ($0 ~ "^fixup! ") { print "::error title=Commit Lint::" C ": fixup commit included, please squash commits"; exit 1 } + if ($0 ~ "^Merge ") { print "::error title=Commit Lint::" C ": merge commit included, please rebase and remove merge commits"; exit 1 } # Below check is too noisy? # if (!($0 ~ "^New package:" || $0 ~ ".*: update to")) { # print "::warning title=Commit Lint::" C ": not new package/update/removal?" From b454799dff1405ddf5b82fcf083e1ef644063026 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:34:06 -0500 Subject: [PATCH 237/295] Gokapi: update to 2.2.2. --- srcpkgs/Gokapi/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/Gokapi/template b/srcpkgs/Gokapi/template index 7fef6d312f3aae..fda2e346335029 100644 --- a/srcpkgs/Gokapi/template +++ b/srcpkgs/Gokapi/template @@ -1,6 +1,6 @@ # Template file for 'Gokapi' pkgname=Gokapi -version=2.2.1 +version=2.2.2 revision=1 build_style=go make_check_args="--tags=test,noaws" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="AGPL-3.0-only" homepage="https://github.com/Forceu/Gokapi" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=99db481d37a3b80f5beb11a46599221de23778985b9151f4e6bbd74787eb885e +checksum=6d2d606b9fe075ed5b4682296304c56044f6b40bf3f015b90a78a021b3429774 system_accounts="_gokapi" _gokapi_homedir="/var/lib/gokapi" make_dirs="/var/lib/gokapi 700 _gokapi _gokapi" From 3c857b8c3cd34b2c4dde6bc120b686709808fdbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:34:21 -0500 Subject: [PATCH 238/295] python3-pip: update to 26.0. --- srcpkgs/python3-pip/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pip/template b/srcpkgs/python3-pip/template index cd90954a472f3b..5f9b6d960c5370 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pip' pkgname=python3-pip -version=25.3 -revision=2 +version=26.0 +revision=1 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" @@ -11,7 +11,7 @@ license="MIT" homepage="https://pip.pypa.io/" changelog="https://raw.githubusercontent.com/pypa/pip/master/NEWS.rst" distfiles="${PYPI_SITE}/p/pip/pip-${version}.tar.gz" -checksum=8d0538dbbd7babbd207f261ed969c65de439f6bc9e5dbd3b3b9a77f25d95f343 +checksum=3ce220a0a17915972fbf1ab451baae1521c4539e778b28127efa79b974aff0fa # Tests have unpackaged dependencies make_check=no From b0477c28dee38517a42bba7a43d25d1aa1a6e56b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:37:14 -0500 Subject: [PATCH 239/295] python3-numpy: update to 2.4.2. --- srcpkgs/python3-numpy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template index 071dad8864e587..d5d537f5b78e5c 100644 --- a/srcpkgs/python3-numpy/template +++ b/srcpkgs/python3-numpy/template @@ -1,6 +1,6 @@ # Template file for 'python3-numpy' pkgname=python3-numpy -version=2.4.1 +version=2.4.2 revision=1 build_style=python3-pep517 build_helper="meson qemu" @@ -19,7 +19,7 @@ license="BSD-3-Clause" homepage="https://www.numpy.org/" changelog="https://github.com/numpy/numpy/releases" distfiles="${PYPI_SITE}/n/numpy/numpy-${version}.tar.gz" -checksum=a1ceafc5042451a858231588a104093474c6a5c57dcc724841f5c888d237d690 +checksum=659a6107e31a83c4e33f763942275fd278b21d095094044eb35569e86a21ddae alternatives="numpy:f2py:/usr/bin/f2py3" build_options="openblas" From 8d801929fb62a231c21665aa828e379124ea5692 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:37:49 -0500 Subject: [PATCH 240/295] python3-pooch: update to 1.9.0. --- srcpkgs/python3-pooch/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pooch/template b/srcpkgs/python3-pooch/template index 7d60797f7c467f..a2522520dd759e 100644 --- a/srcpkgs/python3-pooch/template +++ b/srcpkgs/python3-pooch/template @@ -1,7 +1,7 @@ # Template file for 'python3-pooch' pkgname=python3-pooch -version=1.8.2 -revision=3 +version=1.9.0 +revision=1 build_style=python3-pep517 # Fixture not available make_check_args="-k not((test_ftp_downloader)or(test_check_availability_on_ftp))" @@ -13,7 +13,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://www.fatiando.org/pooch/latest/" distfiles="${PYPI_SITE}/p/pooch/pooch-${version}.tar.gz" -checksum=76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10 +checksum=de46729579b9857ffd3e741987a2f6d5e0e03219892c167c6578c0091fb511ed post_install() { vlicense LICENSE.txt From 6f5814241846988fa38d4574036f26b85ffa1b90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:38:02 -0500 Subject: [PATCH 241/295] python3-narwhals: update to 2.16.0. --- srcpkgs/python3-narwhals/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-narwhals/template b/srcpkgs/python3-narwhals/template index 5afdd14e1125bc..09964e9c3bcc42 100644 --- a/srcpkgs/python3-narwhals/template +++ b/srcpkgs/python3-narwhals/template @@ -1,6 +1,6 @@ # Template file for 'python3-narwhals' pkgname=python3-narwhals -version=2.15.0 +version=2.16.0 revision=1 build_style=python3-pep517 hostmakedepends="hatchling" @@ -10,7 +10,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://narwhals-dev.github.io/narwhals/" distfiles="${PYPI_SITE}/n/narwhals/narwhals-${version}.tar.gz" -checksum=a9585975b99d95084268445a1fdd881311fa26ef1caa18020d959d5b2ff9a965 +checksum=155bb45132b370941ba0396d123cf9ed192bf25f39c4cea726f2da422ca4e145 make_check=no # archive includes no tests post_install() { From 0ccf63597d4108244eb03fe581c79416a9ab56ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:41:32 -0500 Subject: [PATCH 242/295] python3-ipython: update to 9.10.0. --- srcpkgs/python3-ipython/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template index 0eeafc6f880983..233607e5f47633 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,6 +1,6 @@ # Template file for 'python3-ipython' pkgname=python3-ipython -version=9.9.0 +version=9.10.0 revision=1 build_style=python3-pep517 # pexpect module does not find IPython when launching new interpreter @@ -22,7 +22,7 @@ license="BSD-3-Clause" homepage="https://ipython.org/" changelog="https://github.com/ipython/ipython/raw/main/docs/source/whatsnew/version9.rst" distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" -checksum=48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220 +checksum=cd9e656be97618a0676d058134cd44e6dc7012c0e5cb36a9ce96a8c904adaf77 conflicts="python-ipython<=5.8.0_2" make_check_pre="env PYTHONPATH=." From 15595111fc0af459411fc9475568111c07dbb87c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 3 Feb 2026 08:43:02 -0500 Subject: [PATCH 243/295] xpra: update to 6.4.3. --- srcpkgs/xpra/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xpra/template b/srcpkgs/xpra/template index b7755829a48471..f08718489334b5 100644 --- a/srcpkgs/xpra/template +++ b/srcpkgs/xpra/template @@ -1,6 +1,6 @@ # Template file for 'xpra' pkgname=xpra -version=6.4.1 +version=6.4.3 revision=1 build_style=python3-module make_build_args="--without-cuda_kernels --without-cuda_rebuild @@ -20,7 +20,7 @@ license="GPL-2.0-or-later" homepage="https://xpra.org/" changelog="https://raw.githubusercontent.com/Xpra-org/xpra/master/docs/CHANGELOG.md" distfiles="https://github.com/Xpra-org/xpra/archive/v${version}.tar.gz" -checksum=c2f00bffb5ddf603794e1b9efa4676d438cbd4794c6bad2bfdf936c7334250fc +checksum=41fbef72b03662ad24b0f127ed112ffdbf56f076742f3149be506bad841e1a2c conf_files="/etc/xpra/xpra.conf /etc/xpra/xorg.conf /etc/xpra/conf.d/*" # Tests don't run properly without package installed make_check=no From a5524c779a2c3351845f0033b5bea1199e53e170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 244/295] kde: add more kf6-kwindowsystem --- srcpkgs/oxygen-qt6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/oxygen-qt6/template b/srcpkgs/oxygen-qt6/template index 4c2ee409f1dcb6..bb026569c88f2e 100644 --- a/srcpkgs/oxygen-qt6/template +++ b/srcpkgs/oxygen-qt6/template @@ -7,7 +7,7 @@ configure_args="-DBUILD_TESTING=OFF -DBUILD_QT5=OFF -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DKF6_HOST_TOOLING=/usr/lib/cmake" hostmakedepends="extra-cmake-modules pkg-config qt6-base qt6-tools gettext - kf6-kcmutils kf6-kpackage" + kf6-kwindowsystem kf6-kcmutils kf6-kpackage" makedepends="qt6-base-private-devel qt6-declarative-devel kf6-ki18n-devel kf6-kconfig-devel From 136264c55881e0ce023d71bce3449ad0a6d93a03 Mon Sep 17 00:00:00 2001 From: Zach Dykstra Date: Mon, 2 Feb 2026 22:46:13 -0600 Subject: [PATCH 245/295] quickshell: enable an additional feature --- srcpkgs/quickshell/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/quickshell/template b/srcpkgs/quickshell/template index 0e684399eacf49..5dc6dd5e7ac5cb 100644 --- a/srcpkgs/quickshell/template +++ b/srcpkgs/quickshell/template @@ -1,10 +1,10 @@ # Template file for 'quickshell' pkgname=quickshell version=0.2.1 -revision=3 +revision=4 build_style=cmake configure_args="-DDISTRIBUTOR=Void -DDISTRIBUTOR_DEBUGINFO_AVAILABLE=YES - -DINSTALL_QML_PREFIX=lib/qt6/qml -DCRASH_REPORTER=OFF -DHYPRLAND=OFF" + -DINSTALL_QML_PREFIX=lib/qt6/qml -DCRASH_REPORTER=OFF" hostmakedepends="pkg-config wayland-devel qt6-base qt6-declarative-devel qt6-shadertools" makedepends="cli11 qt6-base-private-devel qt6-declarative-private-devel @@ -17,4 +17,4 @@ license="LGPL-3.0-only" homepage="https://quickshell.org" changelog="https://quickshell.org/changelog/" distfiles="https://git.outfoxxed.me/quickshell/quickshell/archive/v${version}.tar.gz" -checksum=a7e0a1029ff69d0f3b5788e042463735bacafd5fc369b1382143ffbd9d497964 +checksum=d815c5f99f4a0a28545ffaa90464420c773b7c0ab62f713d9d8735a8e7282ca7 From d2099754c4af6e9bc9aa9ef52b59ff059b659bfb Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 11:03:47 -0500 Subject: [PATCH 246/295] inetutils: update to 2.7. closes: #58783 --- srcpkgs/inetutils/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/inetutils/template b/srcpkgs/inetutils/template index e39e40e209bbe9..c8c2684b363cee 100644 --- a/srcpkgs/inetutils/template +++ b/srcpkgs/inetutils/template @@ -1,6 +1,6 @@ # Template file for 'inetutils' pkgname=inetutils -version=2.6 +version=2.7 revision=1 build_style=gnu-configure configure_args="--without-wrap --with-pam" @@ -10,8 +10,8 @@ short_desc="GNU network utilities" maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://www.gnu.org/software/inetutils/" -distfiles="${GNU_SITE}/inetutils/inetutils-${version}.tar.xz" -checksum=68bedbfeaf73f7d86be2a7d99bcfbd4093d829f52770893919ae174c0b2357ca +distfiles="${GNU_SITE}/inetutils/inetutils-${version}.tar.gz" +checksum=a156be1cde3c5c0ffefc262180d9369a60484087907aa554c62787d2f40ec086 subpackages="inetutils-dnsdomainname inetutils-ftp inetutils-hostname inetutils-ifconfig inetutils-inetd inetutils-ping inetutils-rexec From 8b72b33a4a17a1e031f8582267d25c70f770a9f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 09:46:22 +0700 Subject: [PATCH 247/295] konqueror: add more kf6-kwindowsystem --- srcpkgs/konqueror/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/konqueror/template b/srcpkgs/konqueror/template index 0100a0c428e4e5..fd31be39fe5264 100644 --- a/srcpkgs/konqueror/template +++ b/srcpkgs/konqueror/template @@ -9,7 +9,7 @@ configure_args="-DBUILD_WITH_QT6=ON -DBUILD_TESTING=OFF -DKDE_INSTALL_QMLDIR=lib/qt6/qml -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt6/mkspecs/modules" hostmakedepends="extra-cmake-modules python3 qt6-base qt6-tools kf6-kdoctools - kf6-kcoreaddons kf6-kconfig gettext kf6-kcmutils hunspell" + kf6-kwindowsystem kf6-kcoreaddons kf6-kconfig gettext kf6-kcmutils hunspell" makedepends="qt6-base-private-devel qt6-webengine-devel qt6-webchannel-devel kf6-kwindowsystem-devel kf6-kguiaddons-devel kf6-ki18n-devel kf6-sonnet-devel kf6-kcodecs-devel kf6-kdoctools-devel kf6-kxmlgui-devel From 2772bd6437b8f84bad180bafd4635f8789147025 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Feb 2026 17:52:10 +0100 Subject: [PATCH 248/295] syncthing: update to 2.0.14. --- srcpkgs/syncthing/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/syncthing/template b/srcpkgs/syncthing/template index 4947bba8da3b7e..3a0a5cfab92c27 100644 --- a/srcpkgs/syncthing/template +++ b/srcpkgs/syncthing/template @@ -1,6 +1,6 @@ # Template file for 'syncthing' pkgname=syncthing -version=2.0.13 +version=2.0.14 revision=1 build_style=go go_import_path="github.com/syncthing/syncthing" @@ -20,7 +20,7 @@ license="MPL-2.0" homepage="https://syncthing.net/" changelog="https://github.com/syncthing/syncthing/releases" distfiles="https://github.com/syncthing/syncthing/archive/v${version}.tar.gz" -checksum=cdd9235b418f16c69dae3a21b6c43c7ee8e549e116b649f2bd4611796e101c28 +checksum=ebcac29df68eec7cfdba1934f7a5efd7bf1f980d4f5652e332cea4250c3c1d5c pre_build() { GOARCH= go generate github.com/syncthing/syncthing/lib/api/auto From 43f315b4e962543453ecd8df4224210b66a8b57a Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Feb 2026 17:52:22 +0100 Subject: [PATCH 249/295] electron-tasje: update to 0.7.5. --- srcpkgs/electron-tasje/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/electron-tasje/template b/srcpkgs/electron-tasje/template index 64c54d27d5ea49..4850a0954c58e3 100644 --- a/srcpkgs/electron-tasje/template +++ b/srcpkgs/electron-tasje/template @@ -1,6 +1,6 @@ # Template file for 'electron-tasje' pkgname=electron-tasje -version=0.7.4 +version=0.7.5 revision=1 build_style=cargo short_desc="Tiny replacement for electron-builder" @@ -8,7 +8,7 @@ maintainer="Duncaen " license="Apache-2.0 OR MIT" homepage="https://codeberg.org/selfisekai/electron_tasje/" distfiles="https://codeberg.org/selfisekai/electron_tasje/archive/v${version}.tar.gz" -checksum=94a98e7470de7d116cb14d769c6cb8467c09412e4af0109cbf1a90587e5baf81 +checksum=caaf4ffb3e9cbc148c68824afa765391f742c267387a38ee8a3c730b6e0a24dd post_install() { vlicense LICENSE-MIT From 2ac05429507ab6a26227b6cba3dd8b3ea91a1193 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Feb 2026 18:47:50 +0100 Subject: [PATCH 250/295] cppcheck: update to 2.19.1. --- .../cppcheck/patches/musl-no-feenableexcept.patch | 14 +++++++------- srcpkgs/cppcheck/template | 9 +++++++-- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/srcpkgs/cppcheck/patches/musl-no-feenableexcept.patch b/srcpkgs/cppcheck/patches/musl-no-feenableexcept.patch index 09fe21e481dfb5..37b97d7a91d2aa 100644 --- a/srcpkgs/cppcheck/patches/musl-no-feenableexcept.patch +++ b/srcpkgs/cppcheck/patches/musl-no-feenableexcept.patch @@ -1,20 +1,20 @@ --- a/test/signal/test-signalhandler.cpp +++ b/test/signal/test-signalhandler.cpp -@@ -52,7 +52,7 @@ - ++*(int*)nullptr; +@@ -54,7 +54,7 @@ + ++*static_cast(nullptr); // NOLINT(clang-analyzer-core.NullDereference) } --#if !defined(__APPLE__) -+#if !defined(__APPLE__) && defined(__GLIBC__) +-#if !defined(__APPLE__) && !defined(_AIX) ++#if !defined(__APPLE__) && !defined(_AIX) && defined(__GLIBC__) /*static*/ int my_fpe() // NOLINT(misc-use-internal-linkage) { if (feenableexcept(FE_ALL_EXCEPT) == -1) -@@ -78,7 +78,7 @@ +@@ -80,7 +80,7 @@ my_abort(); else if (strcmp(argv[1], "segv") == 0) my_segv(); --#if !defined(__APPLE__) -+#if !defined(__APPLE__) && defined(__GLIBC__) +-#if !defined(__APPLE__) && !defined(_AIX) ++#if !defined(__APPLE__) && !defined(_AIX) && defined(__GLIBC__) else if (strcmp(argv[1], "fpe") == 0) return my_fpe(); #endif diff --git a/srcpkgs/cppcheck/template b/srcpkgs/cppcheck/template index 5a424d3e5d5f63..e12b1d0f7f31cc 100644 --- a/srcpkgs/cppcheck/template +++ b/srcpkgs/cppcheck/template @@ -1,6 +1,6 @@ # Template file for 'cppcheck' pkgname=cppcheck -version=2.18.3 +version=2.19.1 revision=1 build_style=cmake configure_args=" @@ -21,7 +21,7 @@ license="GPL-3.0-or-later" homepage="http://cppcheck.sourceforge.net" changelog="https://sourceforge.net/p/cppcheck/news/" distfiles="https://github.com/danmar/cppcheck/archive/refs/tags/${version}.tar.gz" -checksum=e37c94e190cdddc65682649b02b72939761585bddd8ada595f922e190a26a2be +checksum=49bdf1d7826d60053575b78d3192d81d54970dbfb356590f7476de250b1a4234 export CXXFLAGS="-DNDEBUG" @@ -29,6 +29,11 @@ if [ -n "$XBPS_CHECK_PKGS" ]; then configure_args+=" -DBUILD_TESTS=ON" fi +if [ "$XBPS_TARGET_LIBC" = "musl" ]; then + makedepends+=" libexecinfo-devel" + configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-lexecinfo" +fi + post_install() { make DB2MAN=/usr/share/xsl/docbook/manpages/docbook.xsl man vman cppcheck.1 From e40bbd2890f93f0234c00db7ba9a354abe3bf293 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 3 Feb 2026 18:51:55 +0100 Subject: [PATCH 251/295] rust-bindgen: update to 0.72.1. --- srcpkgs/rust-bindgen/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/rust-bindgen/template b/srcpkgs/rust-bindgen/template index 9698500359b5b8..9aa8242ce82bbf 100644 --- a/srcpkgs/rust-bindgen/template +++ b/srcpkgs/rust-bindgen/template @@ -1,7 +1,7 @@ # Template file for 'rust-bindgen' pkgname=rust-bindgen -version=0.71.1 -revision=3 +version=0.72.1 +revision=1 _llvmver=21 build_style="cargo" configure_args="--bins" @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="https://rust-lang.github.io/rust-bindgen/" changelog="https://raw.githubusercontent.com/rust-lang/rust-bindgen/master/CHANGELOG.md" distfiles="https://github.com/rust-lang/rust-bindgen/archive/refs/tags/v${version}.tar.gz" -checksum=620d80c32b6aaf42d12d85de86fc56950c86b2a13a5b943c10c29d30c4f3efb0 +checksum=4ffb17061b2d71f19c5062d2e17e64107248f484f9775c0b7d30a16a8238dfd1 post_install() { vlicense LICENSE From e4f5c9438305bb3deb838e209bd407e11c8d8924 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:04 -0500 Subject: [PATCH 252/295] babl: update to 0.1.122. --- srcpkgs/babl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/babl/template b/srcpkgs/babl/template index f3229a13b64827..2264ac7a0b8ad5 100644 --- a/srcpkgs/babl/template +++ b/srcpkgs/babl/template @@ -1,6 +1,6 @@ # Template file for 'babl' pkgname=babl -version=0.1.118 +version=0.1.122 revision=1 build_style=meson build_helper=gir @@ -13,7 +13,7 @@ license="LGPL-3.0-only" homepage="https://gegl.org/babl/" changelog="https://gitlab.gnome.org/GNOME/babl/-/raw/master/NEWS" distfiles="https://download.gimp.org/pub/babl/${version%.*}/babl-${version}.tar.xz" -checksum=c3febe923e225c2a58f952689a89bb1db956788bfecb18a7eff6fc94da9e2469 +checksum=6851f705cda38f2df08a4ba8618279ce30d0a46f957fe6aa325b7b7de297bed2 export PATH="$PATH:/usr/libexec/chroot-git" From 5e7b577e6ac7598b237b2b8e467b159968bf11f8 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:09 -0500 Subject: [PATCH 253/295] libvirt: update to 12.0.0. --- srcpkgs/libvirt/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libvirt/template b/srcpkgs/libvirt/template index 88fb7c83ed4ae0..38bc1ddba29333 100644 --- a/srcpkgs/libvirt/template +++ b/srcpkgs/libvirt/template @@ -1,6 +1,6 @@ # Template file for 'libvirt' pkgname=libvirt -version=11.10.0 +version=12.0.0 revision=1 build_style=meson configure_args="-Dqemu_user=libvirt -Dqemu_group=libvirt -Drunstatedir=/run @@ -20,7 +20,7 @@ license="LGPL-2.1-or-later" homepage="https://libvirt.org" changelog="https://raw.githubusercontent.com/libvirt/libvirt/master/NEWS.rst" distfiles="https://libvirt.org/sources/libvirt-${version}.tar.xz" -checksum=66154fee836235678b712676b2589c45f66e3d6a8721ee0697c9f20a66cad0d8 +checksum=bf4e680019c04c45b557dd4a7ef59e952887f74e3c47044fe035a961fb624726 # At least one test times out on CI but works locally make_check=ci-skip From 0934dfe4275e6c2fef37dc42f147b01818dc201d Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:10 -0500 Subject: [PATCH 254/295] mergiraf: update to 0.16.3. --- srcpkgs/mergiraf/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/mergiraf/template b/srcpkgs/mergiraf/template index e17fea2af7167c..669bbd5d1de31f 100644 --- a/srcpkgs/mergiraf/template +++ b/srcpkgs/mergiraf/template @@ -1,6 +1,6 @@ # Template file for 'mergiraf' pkgname=mergiraf -version=0.16.1 +version=0.16.3 revision=1 build_style=cargo configure_args="--bin mergiraf" @@ -10,5 +10,5 @@ license="GPL-3.0-only" homepage="https://mergiraf.org" changelog="https://codeberg.org/mergiraf/mergiraf/releases" distfiles="https://codeberg.org/mergiraf/mergiraf/archive/v${version}.tar.gz" -checksum=168711e3f7bc7fd1df0e5d7154004060c9aa682ffae9092725c09e119a6da7b2 +checksum=c2f3f6b50496cbadb7d9caeb6cfc4e0dab8f99aaed5d9a560b30208cb68108f0 make_check_pre="env PATH=/usr/libexec/chroot-git:$PATH" From 0d99a8deaf22cf4d0d6d08775a8b8f6a90cdf746 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:11 -0500 Subject: [PATCH 255/295] noto-fonts-ttf: update to 2026.02.01. --- srcpkgs/noto-fonts-ttf/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template index 12a2f05f92ed15..c10eea03a3215e 100644 --- a/srcpkgs/noto-fonts-ttf/template +++ b/srcpkgs/noto-fonts-ttf/template @@ -1,15 +1,15 @@ # Template file for 'noto-fonts-ttf' pkgname=noto-fonts-ttf reverts="20220810_1 20190926_2 20190926_1 20181202_1 20181106_1" -version=2026.01.01 -revision=2 +version=2026.02.01 +revision=1 depends="font-util" short_desc="Google Noto TTF Fonts" maintainer="classabbyamp " license="OFL-1.1" homepage="https://notofonts.github.io/" distfiles="https://github.com/notofonts/notofonts.github.io/archive/refs/tags/noto-monthly-release-${version}.tar.gz" -checksum=f1bec0dd722fcfcb0aa75c803530e3a8ae4e0dd59e5b93a52dd8f57d5494ef44 +checksum=d531eacd8ffc4c842474220b025ef7953c4bae329ecc8792a697d55a9f6a5204 font_dirs="/usr/share/fonts/noto" nostrip=yes # just font files provides="font:sans-serif-0_1 font:serif-0_1" From f7671f521c70d23e88b8fbd395dd36cddf1bd8b2 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:13 -0500 Subject: [PATCH 256/295] python3-orjson: update to 3.11.6. --- srcpkgs/python3-orjson/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-orjson/template b/srcpkgs/python3-orjson/template index 98eeba1ed8521b..533a781cbae7d2 100644 --- a/srcpkgs/python3-orjson/template +++ b/srcpkgs/python3-orjson/template @@ -1,6 +1,6 @@ # Template file for 'python3-orjson' pkgname=python3-orjson -version=3.11.5 +version=3.11.6 revision=1 build_style=python3-pep517 build_helper="rust" @@ -13,7 +13,7 @@ license="Apache-2.0 OR MIT" homepage="https://github.com/ijl/orjson" changelog="https://raw.githubusercontent.com/ijl/orjson/master/CHANGELOG.md" distfiles="https://github.com/ijl/orjson/archive/refs/tags/${version}.tar.gz" -checksum=6fec426689f1590f8298465124e9063be8a583698d41ef319cf4a680f7482707 +checksum=97c8ba9faed50e000881ac514d0d120c452375ba2e85132af70f07586622814d post_install() { vlicense LICENSE-MIT From 1a162d95f0d9daad60a858ddb8b761697290d50a Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:14 -0500 Subject: [PATCH 257/295] rofi-rbw: update to 1.6.0. --- srcpkgs/rofi-rbw/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template index 37aefef1b224c4..0c8f1db83ffc5a 100644 --- a/srcpkgs/rofi-rbw/template +++ b/srcpkgs/rofi-rbw/template @@ -1,7 +1,7 @@ # Template file for 'rofi-rbw' pkgname=rofi-rbw -version=1.5.1 -revision=2 +version=1.6.0 +revision=1 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3 python3-ConfigArgParse rbw" @@ -11,7 +11,7 @@ license="MIT" homepage="https://github.com/fdw/rofi-rbw" changelog="https://raw.githubusercontent.com/fdw/rofi-rbw/HEAD/CHANGELOG.md" distfiles="https://github.com/fdw/rofi-rbw/archive/${version}.tar.gz" -checksum=3f050b6d631b3efa23f324487b0d676281ebaf14dcda87dbad1b11e462011ab1 +checksum=4b74b4cca59cdd84efcc6c21cb340e4d80748d96433458ebd979966f40ea7dd3 post_install() { vman docs/rofi-rbw.1 From 83a678c44e79cbe758f478abfc241e316a5403d3 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:16 -0500 Subject: [PATCH 258/295] tailscale: update to 1.94.1. --- srcpkgs/tailscale/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tailscale/template b/srcpkgs/tailscale/template index 766eae56a22a4f..f1507724955792 100644 --- a/srcpkgs/tailscale/template +++ b/srcpkgs/tailscale/template @@ -1,6 +1,6 @@ # Template file for 'tailscale' pkgname=tailscale -version=1.92.5 +version=1.94.1 revision=1 build_style=go build_helper="qemu" @@ -17,7 +17,7 @@ license="BSD-3-Clause" homepage="https://tailscale.com" changelog="https://tailscale.com/changelog" distfiles="https://github.com/tailscale/tailscale/archive/v${version}.tar.gz" -checksum=1e34d636521ebdb4c77fc80b8b5baa33dd414f727fd11b3f98068f560dae3151 +checksum=80eec367cabd6012a668233b11ca5c6df29b0dd24c7cfd74b71958c93ec9b644 post_install() { for sh in bash fish zsh; do From e4f7a41a5fc731f49f07e177431967c2456b916d Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:17 -0500 Subject: [PATCH 259/295] tinymist: update to 0.14.10. --- srcpkgs/tinymist/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tinymist/template b/srcpkgs/tinymist/template index eefd606c479e5b..b8f2814db881b5 100644 --- a/srcpkgs/tinymist/template +++ b/srcpkgs/tinymist/template @@ -1,6 +1,6 @@ # Template file for 'tinymist' pkgname=tinymist -version=0.14.8 +version=0.14.10 revision=1 build_style=cargo build_helper="qemu" @@ -12,7 +12,7 @@ license="Apache-2.0" homepage="https://myriad-dreamin.github.io/tinymist/" changelog="https://github.com/Myriad-Dreamin/tinymist/releases" distfiles="https://github.com/Myriad-Dreamin/tinymist/archive/refs/tags/v${version}.tar.gz" -checksum=22d4d682df5ad56496da6965e74f0a89f00133c22a30c1c07f1bb45acd841aa7 +checksum=215c08d8a10ff51e15711f0684eafc85d119dc98db57f4f47ec7bf5987ea681e # takes forever make_check=no From 36f1fb2d1ea07e6f6c340caa7b059124a15dfd56 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:18 -0500 Subject: [PATCH 260/295] tqsl: update to 2.8.4. --- srcpkgs/tqsl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tqsl/template b/srcpkgs/tqsl/template index f8929f1eda41d1..2b6484f11ed642 100644 --- a/srcpkgs/tqsl/template +++ b/srcpkgs/tqsl/template @@ -1,6 +1,6 @@ # Template file for 'tqsl' pkgname=tqsl -version=2.8.2 +version=2.8.4 revision=1 build_style=cmake build_helper=cmake-wxWidgets-gtk3 @@ -12,7 +12,7 @@ maintainer="classabbyamp " license="custom:ARRL" homepage="https://www.arrl.org/tqsl-download" distfiles="https://www.arrl.org/tqsl/tqsl-${version}.tar.gz" -checksum=1c7efca53793ff05bd759820c5ca91899dcea92854ec1dae3d66b8c9ae7d2df0 +checksum=6e71972ab1f6734360ff9d116f3838cf733a0ff12e2749a46084e1a14f7840fc CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" From 15115e31979806a164b685bca817b5c79e64c5c4 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:20 -0500 Subject: [PATCH 261/295] uv: update to 0.9.28. --- srcpkgs/uv/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/uv/template b/srcpkgs/uv/template index e706eb3b7b7d7c..69c9ab799a250e 100644 --- a/srcpkgs/uv/template +++ b/srcpkgs/uv/template @@ -1,6 +1,6 @@ # Template file for 'uv' pkgname=uv -version=0.9.24 +version=0.9.28 revision=1 build_style=python3-pep517 build_helper="rust qemu" @@ -13,7 +13,7 @@ license="Apache-2.0 OR MIT" homepage="https://github.com/astral-sh/uv" changelog="https://github.com/astral-sh/uv/raw/main/CHANGELOG.md" distfiles="https://github.com/astral-sh/uv/releases/download/${version}/source.tar.gz>uv-${version}.tar.gz" -checksum=ae2922081fae0744c09f972543a83443620430a59102910ff80bd15bc9442ed1 +checksum=0972bffe0d408c596bc35c70b7202b726d636d2cdcd7fb0bef72364514f01745 case "$XBPS_TARGET_MACHINE" in i686*) From e81fbad7358e669f85dee72fdb4bf3637cc9ef21 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:21 -0500 Subject: [PATCH 262/295] vivaldi: update to 7.8.3925.56+1. --- srcpkgs/vivaldi/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/vivaldi/template b/srcpkgs/vivaldi/template index 28864cbe77cef1..9a743df4575768 100644 --- a/srcpkgs/vivaldi/template +++ b/srcpkgs/vivaldi/template @@ -2,7 +2,7 @@ # Permission to redistribute is granted. # see: srcpkgs/vivaldi/files/redistribution-permission.eml pkgname=vivaldi -version=7.7.3851.67+1 +version=7.8.3925.56+1 revision=1 archs="x86_64 aarch64" depends="desktop-file-utils hicolor-icon-theme xz libnotify xdg-utils" @@ -16,11 +16,11 @@ skiprdeps="/opt/vivaldi/libqt5_shim.so /opt/vivaldi/libqt6_shim.so" case "$XBPS_TARGET_MACHINE" in x86_64) distfiles="https://downloads.vivaldi.com/stable/vivaldi-stable_${version//+/-}_amd64.deb" - checksum=6ef739415b7e41c6b0f596b7e92e93ba07d72c08fbe5bbbc17bda74ba174a6f1 + checksum=8f5bb45a53aa44f87efcd8e8c290172913c00b199d2268bd99ad882c50e05a94 ;; aarch64) distfiles="https://downloads.vivaldi.com/stable/vivaldi-stable_${version//+/-}_arm64.deb" - checksum=a0d1252d6f49d35d09221bdba1c55dfa66caf30da86559db7e6ca2e438e3a2e4 + checksum=65fc5e06d02b3c6c6f33aa1c0846dc33c69f4dc2d39744ccdb10882cd0c1d41a ;; *) broken="No distfiles available for this target" From 9f467fb530826895ed8816fa08e280a6885b6050 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Tue, 3 Feb 2026 14:06:23 -0500 Subject: [PATCH 263/295] yt-dlp: update to 2026.01.31. --- srcpkgs/yt-dlp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/yt-dlp/template b/srcpkgs/yt-dlp/template index 9d01cb7eabb4b0..e75890eaa4c939 100644 --- a/srcpkgs/yt-dlp/template +++ b/srcpkgs/yt-dlp/template @@ -1,6 +1,6 @@ # Template file for 'yt-dlp' pkgname=yt-dlp -version=2026.01.29 +version=2026.01.31 revision=1 # XXX: keep python3-yt-dlp-ejs in sync with pyproject.toml _ejs_ver=0.4.0 @@ -17,7 +17,7 @@ license="Unlicense" homepage="https://github.com/yt-dlp/yt-dlp" changelog="https://raw.githubusercontent.com/yt-dlp/yt-dlp/master/Changelog.md" distfiles="https://github.com/yt-dlp/yt-dlp/releases/download/${version}/yt-dlp.tar.gz>yt-dlp-$version.tar.gz" -checksum=e4edd01abd229f646b8280209d462785c2d0929f7612fb24740fa528e5eff433 +checksum=928639b0355c2ee40af7b574e47a3c00048756e405f7964a7b39d70fe0cda4ba if [ "$XBPS_WORDSIZE" -eq "$XBPS_TARGET_WORDSIZE" ]; then # nodejs can only be built for this platform combination From 85e2409c463307dbc5371e7ce6cbc4190754b82b Mon Sep 17 00:00:00 2001 From: oreo639 Date: Thu, 29 Jan 2026 00:58:30 -0800 Subject: [PATCH 264/295] gdm: backport dropping 61-gdm.rules This file implements checks for disabling Wayland with certain setups, such as the proprietary NVIDIA driver. While most of the NVIDIA checks were removed in gdm 48, a check still remains testing the presence of systemd user services, which always fails since it is handled by an elogind system-sleep script. This file was removed entirely with gdm 49+. --- .../gdm/patches/drop-wayland-udev-rules.patch | 41 +++++++++++++++++++ srcpkgs/gdm/template | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/gdm/patches/drop-wayland-udev-rules.patch diff --git a/srcpkgs/gdm/patches/drop-wayland-udev-rules.patch b/srcpkgs/gdm/patches/drop-wayland-udev-rules.patch new file mode 100644 index 00000000000000..bf89aeb6f71bb3 --- /dev/null +++ b/srcpkgs/gdm/patches/drop-wayland-udev-rules.patch @@ -0,0 +1,41 @@ +From 56bf0d707ad8d920798532f507766908d504df8f Mon Sep 17 00:00:00 2001 +From: Alessandro Astone +Date: Wed, 18 Jun 2025 12:04:10 +0200 +Subject: [PATCH] Drop udev rules + +The sole purpose of this set of udev rules was to conditionally disable +Wayland. With commit 38fa8b947f8e8a34a295d581ffa975239be5d1ef dropping the +`gdm-runtime-config` call, there is no logic left here. + +Part-of: +--- + data/61-gdm.rules.in | 56 -------------------------------------------- + data/meson.build | 11 --------- + 2 files changed, 67 deletions(-) + delete mode 100644 data/61-gdm.rules.in + +diff --git a/data/meson.build b/data/meson.build +index 6f0ff7861..5d0703ef7 100644 +--- a/data/meson.build ++++ b/data/meson.build +@@ -140,17 +140,6 @@ foreach _pam_filename : pam_data_files + ) + endforeach + +-if have_x11_support +- configure_file( +- input: '61-gdm.rules.in', +- output: '@BASENAME@', +- configuration: { +- 'libexecdir': gdm_prefix / get_option('libexecdir'), +- }, +- install_dir: udev_dir, +- ) +-endif +- + # DBus service files + service_config = configuration_data() + service_config.set('sbindir', gdm_prefix / get_option('sbindir')) +-- +GitLab + diff --git a/srcpkgs/gdm/template b/srcpkgs/gdm/template index 626f0dc0b4c5d1..10bf88db687668 100644 --- a/srcpkgs/gdm/template +++ b/srcpkgs/gdm/template @@ -1,7 +1,7 @@ # Template file for 'gdm' pkgname=gdm version=48.0 -revision=1 +revision=2 build_helper="gir" build_style=meson configure_args=" From cd33ae28c6362252eca180682866b606b6df741b Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 07:21:44 -0600 Subject: [PATCH 265/295] gef: update to 2026.01. --- srcpkgs/gef/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template index 0be9769931340f..55c7cabd43c5b0 100644 --- a/srcpkgs/gef/template +++ b/srcpkgs/gef/template @@ -1,6 +1,6 @@ # Template file for 'gef' pkgname=gef -version=2025.01 +version=2026.01 revision=2 pycompile_dirs="usr/lib/gef" depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper @@ -10,7 +10,7 @@ maintainer="Andrew Benson " license="MIT" homepage="https://hugsy.github.io/gef/" distfiles="https://github.com/hugsy/gef/archive/${version}.tar.gz" -checksum=113a07c43c55d26005d78e0e1f988c16405aa27c388fe82a2ad727b7699d7e87 +checksum=6e58afbda13ef976aa46a2f138b5422829a0d3c4b71246f4546cbd7383ce2e76 python_version="3" do_install() { From 0d3eaccdf2ea36a131e0669e823045958f0a4cd0 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 07:23:52 -0600 Subject: [PATCH 266/295] python3-blessed: update to 1.28. --- srcpkgs/python3-blessed/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template index 9b412d106cc953..7cdc3424edb2eb 100644 --- a/srcpkgs/python3-blessed/template +++ b/srcpkgs/python3-blessed/template @@ -1,6 +1,6 @@ # Template file for 'python3-blessed' pkgname=python3-blessed -version=1.27 +version=1.28 revision=1 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" @@ -11,7 +11,7 @@ maintainer="Andrew Benson " license="MIT" homepage="https://github.com/jquast/blessed" distfiles="${homepage}/archive/${version}.tar.gz" -checksum=60b7917e48b8c3701b7389d48751ebbc210c710e112c7bcf8a5cc3b087448264 +checksum=c6751af55edc53a4ff9266ec7ca33d58832b775e4fdd3751858ce3215175aa3c post_install() { vlicense LICENSE From e2ce513683e7bff20b55a0eb9f552bfcebbbb40a Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 07:23:56 -0600 Subject: [PATCH 267/295] python3-rich: update to 14.3.2. --- srcpkgs/python3-rich/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-rich/template b/srcpkgs/python3-rich/template index f413dda12e667f..a039ff0b813933 100644 --- a/srcpkgs/python3-rich/template +++ b/srcpkgs/python3-rich/template @@ -1,7 +1,7 @@ # Template file for 'python3-rich' pkgname=python3-rich -version=14.2.0 -revision=2 +version=14.3.2 +revision=1 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-Pygments python3-markdown-it" @@ -11,7 +11,7 @@ maintainer="Andrew Benson " license="MIT" homepage="https://github.com/willmcgugan/rich" distfiles="${PYPI_SITE}/r/rich/rich-${version}.tar.gz" -checksum=73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4 +checksum=e712f11c1a562a11843306f5ed999475f09ac31ffb64281f73ab29ffdda8b3b8 make_check=extended # some checks only work on windows post_install() { From 302761830529f905e21d716e87d8223c944f2475 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 07:50:49 -0600 Subject: [PATCH 268/295] python3-ytmusicapi: update to 1.11.5. --- srcpkgs/python3-ytmusicapi/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ytmusicapi/template b/srcpkgs/python3-ytmusicapi/template index d6a14f9effe47e..23c98ca7911e9e 100644 --- a/srcpkgs/python3-ytmusicapi/template +++ b/srcpkgs/python3-ytmusicapi/template @@ -1,6 +1,6 @@ # Template file for 'python3-ytmusicapi' pkgname=python3-ytmusicapi -version=1.11.4 +version=1.11.5 revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" @@ -11,7 +11,7 @@ maintainer="Andrew Benson " license="MIT" homepage="https://github.com/sigma67/ytmusicapi" distfiles="${PYPI_SITE}/y/ytmusicapi/ytmusicapi-${version}.tar.gz" -checksum=ea0972d4dcaf8225ab95b6665b7c2a63d6a48d8828cf7d0ad6c76d12207ae86e +checksum=48f35901291c8af9934ec0aa9cd6b9fd1a19c543f843c39c9e8b396356b47801 post_install() { vlicense LICENSE From fe802b47b610b84aa6220557f941daade6d226b3 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 13:48:38 -0600 Subject: [PATCH 269/295] wimlib: update to 1.14.5. --- srcpkgs/wimlib/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/wimlib/template b/srcpkgs/wimlib/template index ea5f99fc742faa..f9297a35691f82 100644 --- a/srcpkgs/wimlib/template +++ b/srcpkgs/wimlib/template @@ -1,6 +1,6 @@ # Template file for 'wimlib' pkgname=wimlib -version=1.14.4 +version=1.14.5 revision=1 build_style=gnu-configure hostmakedepends="pkg-config" @@ -10,7 +10,7 @@ maintainer="Andrew Benson " license="GPL-3.0-or-later" homepage="https://wimlib.net/" distfiles="${homepage}/downloads/wimlib-${version}.tar.gz" -checksum=3633db2b6c8b255eb86d3bf3df3059796bd1f08e50b8c9728c7eb66662e51300 +checksum=84221a3abd5b91228f15f8e6065c335a336237b5738197b75bf419eea561a194 make_check=extended wimlib-devel_package() { From 00c1385a5f8a2f80fc35fa5c6ba49ad00031c148 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 13:49:34 -0600 Subject: [PATCH 270/295] sqlmap: update to 1.10.2. --- srcpkgs/sqlmap/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template index d57d3e4ca3a262..10e314ec3bbe0a 100644 --- a/srcpkgs/sqlmap/template +++ b/srcpkgs/sqlmap/template @@ -1,6 +1,6 @@ # Template file for 'sqlmap' pkgname=sqlmap -version=1.10 +version=1.10.2 revision=1 pycompile_dirs="usr/libexec/sqlmap" depends="python3" @@ -9,7 +9,7 @@ maintainer="Andrew Benson " license="GPL-2.0-or-later" homepage="http://sqlmap.org" distfiles="https://github.com/sqlmapproject/sqlmap/archive/${version}.tar.gz" -checksum=aea3bf921d9a2466bc0e33cf43bc941f527eabf7981ec1de104220def3a1cba4 +checksum=092aab5def8149657899ee37266ef9b6dc93d2de6983fbd97726546ba8fe3dbd python_version=3 do_install() { From b9fe88f871a688d84c7692dfe2839b67ba3a9de8 Mon Sep 17 00:00:00 2001 From: Andrew Benson Date: Tue, 3 Feb 2026 14:37:25 -0600 Subject: [PATCH 271/295] aide: update to 0.19.3. --- srcpkgs/aide/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/aide/template b/srcpkgs/aide/template index 508fe5894aedf4..1148bdedc0c40a 100644 --- a/srcpkgs/aide/template +++ b/srcpkgs/aide/template @@ -1,6 +1,6 @@ # Template file for 'aide' pkgname=aide -version=0.19.2 +version=0.19.3 revision=1 build_style=gnu-configure configure_args="--with-mhash --with-posix-acl --with-prelink --with-xattr @@ -16,7 +16,7 @@ maintainer="Andrew Benson " license="GPL-2.0-or-later" homepage="https://aide.github.io/" distfiles="https://github.com/aide/aide/releases/download/v${version}/aide-${version}.tar.gz" -checksum=23762b05f46111edeb3c8a05016c8731c01bdb8c1f91be48c156c31ab85e74c4 +checksum=6513170bb5b8c22802dd1b72f02d8aa9f432aef2b4470522db03e755212a3f47 export MHASH_CFLAGS="-I${XBPS_CROSS_BASE}/usr/include" export MHASH_LIBS="-L${XBPS_CROSS_BASE}/usr/lib -lmhash" From 36d00013bb3893e60106691ac269d4ccac6d799f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 15:33:44 +0700 Subject: [PATCH 272/295] python3-pyside6: update to 6.10.2. --- srcpkgs/python3-pyside6/patches/config.patch | 24 +++++++++---------- .../patches/no-python-suffix.patch | 2 +- srcpkgs/python3-pyside6/template | 6 ++--- srcpkgs/python3-pyside6/update | 5 ++-- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/srcpkgs/python3-pyside6/patches/config.patch b/srcpkgs/python3-pyside6/patches/config.patch index a98ba074fc64fe..e532ab583b7d6d 100644 --- a/srcpkgs/python3-pyside6/patches/config.patch +++ b/srcpkgs/python3-pyside6/patches/config.patch @@ -28,19 +28,19 @@ # build-time installation install(TARGETS pyside6 EXPORT PySide6Targets -@@ -190,9 +187,9 @@ set_target_properties(pyside6 PROPERTIES - VERSION ${PYSIDE_SOVERSION}) - - install(TARGETS pyside6 EXPORT PySide6WheelTargets -- LIBRARY DESTINATION "PySide6" -- ARCHIVE DESTINATION "PySide6" -- RUNTIME DESTINATION "PySide6") -+ LIBRARY DESTINATION "${LIB_INSTALL_DIR}" -+ ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" -+ RUNTIME DESTINATION "${LIB_INSTALL_DIR}") +@@ -191,9 +188,9 @@ set_target_properties(pyside6 PROPERTIES + + if(NOT is_pyside6_superproject_build) + install(TARGETS pyside6 EXPORT PySide6WheelTargets +- LIBRARY DESTINATION "PySide6" +- ARCHIVE DESTINATION "PySide6" +- RUNTIME DESTINATION "PySide6") ++ LIBRARY DESTINATION "${LIB_INSTALL_DIR}" ++ ARCHIVE DESTINATION "${LIB_INSTALL_DIR}" ++ RUNTIME DESTINATION "${LIB_INSTALL_DIR}") + endif() install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pyside6${pyside6_SUFFIX}.pc" - DESTINATION "${LIB_INSTALL_DIR}/pkgconfig") --- a/sources/pyside6/PySide6/CMakeLists.txt +++ b/sources/pyside6/PySide6/CMakeLists.txt @@ -119,7 +119,7 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR @@ -144,7 +144,7 @@ ) if (NOT "${NUMPY_INCLUDE_DIR}" STREQUAL "") -@@ -196,7 +196,7 @@ install(FILES +@@ -197,7 +197,7 @@ install(FILES signature.h signature_p.h diff --git a/srcpkgs/python3-pyside6/patches/no-python-suffix.patch b/srcpkgs/python3-pyside6/patches/no-python-suffix.patch index cbccd20d01e530..9e9b5341e48a13 100644 --- a/srcpkgs/python3-pyside6/patches/no-python-suffix.patch +++ b/srcpkgs/python3-pyside6/patches/no-python-suffix.patch @@ -48,7 +48,7 @@ have the same name if no python suffix. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/PySide6ConfigVersion.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/PySide6ConfigVersion.cmake" @ONLY) -@@ -194,9 +192,6 @@ install(TARGETS pyside6 EXPORT PySide6Wh +@@ -196,9 +194,6 @@ endif() install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pyside6${pyside6_SUFFIX}.pc" DESTINATION "${LIB_INSTALL_DIR}/pkgconfig") diff --git a/srcpkgs/python3-pyside6/template b/srcpkgs/python3-pyside6/template index 65aac048d7be34..4b24876089bd9d 100644 --- a/srcpkgs/python3-pyside6/template +++ b/srcpkgs/python3-pyside6/template @@ -1,8 +1,8 @@ # Template file for 'python3-pyside6' # NOTE: keep in sync with Qt6 pkgname=python3-pyside6 -version=6.10.0 -revision=5 +version=6.10.2 +revision=1 build_style=cmake _llvmver=21 configure_args="-DBUILD_TESTS=OFF -DFORCE_LIMITED_API=no -DNO_QT_TOOLS=yes @@ -26,7 +26,7 @@ maintainer="chrysos349 " license="LGPL-3.0-only, GPL-2.0-only" homepage="https://doc.qt.io/qtforpython-6" distfiles="https://download.qt.io/official_releases/QtForPython/pyside6/PySide6-${version}-src/pyside-setup-everywhere-src-${version}.tar.xz" -checksum=f6e18dc880f59fb6c5c37f9f408971d65642dfc7510a15d794b4a3a8e15fcecc +checksum=05eec38bb71bffff8860786e3c0766cc4b86affc72439bd246c54889bdcb7400 provides="py3:pyside6-${version}_1" build_options="pdf webengine" diff --git a/srcpkgs/python3-pyside6/update b/srcpkgs/python3-pyside6/update index 38f0b57b82d932..a958724dc21d0e 100644 --- a/srcpkgs/python3-pyside6/update +++ b/srcpkgs/python3-pyside6/update @@ -1,3 +1,2 @@ -pkgname=pyside-setup-everywhere -vdprefix=PySide6- -vdsuffix=-src +site="https://download.qt.io/official_releases/QtForPython/pyside6/" +pattern="(?<=PySide6-)6[.][0-9.]*(?=-src)" From 2eb56c9d922f73ff444a5ac0095d502db778502d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 15:33:49 +0700 Subject: [PATCH 273/295] python3-pyqt6: update to 6.10.2. --- srcpkgs/python3-pyqt6/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pyqt6/template b/srcpkgs/python3-pyqt6/template index bb3e26afc01b8f..869ad19dc3174a 100644 --- a/srcpkgs/python3-pyqt6/template +++ b/srcpkgs/python3-pyqt6/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6' pkgname=python3-pyqt6 -version=6.10.0 -revision=3 +version=6.10.2 +revision=1 build_style=sip-build build_helper=qemu configure_args="--confirm-license --dbus $XBPS_CROSS_BASE/usr/include/dbus-1.0 @@ -19,7 +19,7 @@ maintainer="Đoàn Trần Công Danh " license="GPL-3.0-only" homepage="https://www.riverbankcomputing.com/software/pyqt/" distfiles="$PYPI_SITE/p/pyqt6/pyqt6-$version.tar.gz" -checksum=710ecfd720d9a03b2c684881ae37f528e11d17e8f1bf96431d00a6a73f308e36 +checksum=6c0db5d8cbb9a3e7e2b5b51d0ff3f283121fa27b864db6d2f35b663c9be5cc83 lib32disabled=yes subpackages="python3-pyqt6-bindings From 336e2e57b565e1e70ab64cee6e6668584508c199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 3 Feb 2026 15:33:53 +0700 Subject: [PATCH 274/295] python3-pyqt6-sip: update to 13.11.0. --- srcpkgs/python3-pyqt6-sip/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pyqt6-sip/template b/srcpkgs/python3-pyqt6-sip/template index bafeb47929d53b..ec93b1f579c682 100644 --- a/srcpkgs/python3-pyqt6-sip/template +++ b/srcpkgs/python3-pyqt6-sip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-sip' pkgname=python3-pyqt6-sip -version=13.10.2 -revision=2 +version=13.11.0 +revision=1 build_style=python3-module hostmakedepends="python3-devel python3-setuptools sip" makedepends="python3-devel" @@ -11,7 +11,7 @@ maintainer="Đoàn Trần Công Danh " license="BSD-2-Clause" homepage="https://www.riverbankcomputing.com/software/sip/" distfiles="${PYPI_SITE}/p/pyqt6_sip/pyqt6_sip-${version}.tar.gz" -checksum=464ad156bf526500ce6bd05cac7a82280af6309974d816739b4a9a627156fafe +checksum=d463af37738bda1856c9ef513e5620a37b7a005e9d589c986c3304db4a8a14d3 lib32disabled=yes post_extract() { From 8ba6040e10faea326044f7e76f63b469b4eea7fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sun, 1 Feb 2026 07:10:19 +0700 Subject: [PATCH 275/295] anthy-unicode: update to 1.0.0.20260127. --- common/shlibs | 1 + srcpkgs/anthy-unicode/template | 16 ++++++---------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/common/shlibs b/common/shlibs index ef93e614c251e4..e6fbb6af7b225e 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2152,6 +2152,7 @@ libmd4c.so.0 libmd4c-0.4.8_1 libmd4c-html.so.0 libmd4c-html-0.4.8_1 libQt6Core.so.6 qt6-core-6.10.2_1 libQt_6_PRIVATE_API.6.10.2 qt6-core-6.10.2_1 +libQt_6_PRIVATE_API.6.10 qt6-core-6.10.2_1 libQt6OpenGL.so.6 qt6-gui-6.10.2_1 libQt6DBus.so.6 qt6-dbus-6.10.2_1 libQt6PrintSupport.so.6 qt6-printsupport-6.10.2_1 diff --git a/srcpkgs/anthy-unicode/template b/srcpkgs/anthy-unicode/template index aabb8827b182ed..218d89a21730b9 100644 --- a/srcpkgs/anthy-unicode/template +++ b/srcpkgs/anthy-unicode/template @@ -1,20 +1,16 @@ # Template file for 'anthy-unicode' pkgname=anthy-unicode -version=1.0.0.20240502 +version=1.0.0.20260127 revision=1 -build_style=gnu-configure -configure_args="--disable-static" +build_style=meson +build_helper=qemu +hostmakedepends="emacs" short_desc="Japanese character set input library for Unicode" maintainer="Đoàn Trần Công Danh " license="LGPL-2.0-or-later, GPL-2.0-only, Public Domain" homepage="https://github.com/fujiwarat/anthy-unicode/wiki" -distfiles="https://github.com/fujiwarat/anthy-unicode/releases/download/${version}/${pkgname}-${version}.tar.gz" -checksum=43a13f24cc4749a1248bc6d0ce7796743b176ae68ee524cb4331bef64ac133b0 -nocross='execute lt-mkdepgraph' - -post_install() { - rm ${DESTDIR}/usr/lib/*.la -} +distfiles="https://github.com/fujiwarat/anthy-unicode/releases/download/${version}/${pkgname}-${version}.tar.xz" +checksum=3b92fdd124ebe00c64099088a78c0fbcbe7457e145def00c11f726f2c3c3a34a libanthy-unicode_package() { short_desc+=" - libraries" From eefba7f79c23078d42d6f6c418bac80f9a8c07cf Mon Sep 17 00:00:00 2001 From: oreo639 Date: Tue, 3 Feb 2026 17:12:34 -0800 Subject: [PATCH 276/295] anthy-unicode: fix depgraph generation and fix version --- .../anthy-unicode/patches/fix-depgraph.patch | 53 +++++++++++++++++++ srcpkgs/anthy-unicode/template | 7 ++- 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/anthy-unicode/patches/fix-depgraph.patch diff --git a/srcpkgs/anthy-unicode/patches/fix-depgraph.patch b/srcpkgs/anthy-unicode/patches/fix-depgraph.patch new file mode 100644 index 00000000000000..eae340244f564a --- /dev/null +++ b/srcpkgs/anthy-unicode/patches/fix-depgraph.patch @@ -0,0 +1,53 @@ +From 5d69fdf22aa0d4360048e2e933e845215e8ba82b Mon Sep 17 00:00:00 2001 +From: oreo639 +Date: Tue, 3 Feb 2026 02:51:03 -0800 +Subject: [PATCH] meson: Fix anthy-unicode.conf search path in mkdepgraph + +Resolves issue where a blank anthy.dep is generated when using +the meson build system. This is due to the anthy-unicode.conf +path not being adjusted between meson and autotools. + +BUG=#14 +--- + depgraph/meson.build | 3 ++- + depgraph/mkdepgraph.c | 6 +++++- + 2 files changed, 7 insertions(+), 2 deletions(-) + +diff --git a/depgraph/meson.build b/depgraph/meson.build +index 386480b..070e3ea 100644 +--- a/depgraph/meson.build ++++ b/depgraph/meson.build +@@ -2,7 +2,8 @@ mkdepgraph = executable('mkdepgraph', + sources: ['mkdepgraph.c'], + include_directories: [top_srcdir], + dependencies: [anthy_dep, anthydic_dep], +- c_args: '-DSRCDIR="'+meson.current_source_dir()+'"', ++ c_args: [ '-DSRCDIR="@0@"'.format(meson.current_source_dir()), ++ '-DCONFDIR="@0@"'.format((meson.project_build_root())) ], + ) + + anthy_dep_graph = custom_target('anthy.dep', +diff --git a/depgraph/mkdepgraph.c b/depgraph/mkdepgraph.c +index 972a6b8..03980f0 100644 +--- a/depgraph/mkdepgraph.c ++++ b/depgraph/mkdepgraph.c +@@ -43,6 +43,10 @@ + #define SRCDIR "." + #endif + ++#ifndef CONFDIR ++#define CONFDIR ".." ++#endif ++ + static int verbose; + + static struct dep_node* gNodes; +@@ -482,7 +486,7 @@ main(int argc, char **argv) + int i; + const char *out_fn = "anthy.dep"; + /* 付属語辞書を読み込んでファイルに書き出す */ +- anthy_conf_override("CONFFILE", "../anthy-unicode.conf"); ++ anthy_conf_override("CONFFILE", CONFDIR "/anthy-unicode.conf"); + anthy_conf_override("ANTHYDIR", SRCDIR "/../depgraph/"); + + anthy_init_wtypes(); diff --git a/srcpkgs/anthy-unicode/template b/srcpkgs/anthy-unicode/template index 218d89a21730b9..febe4c8b85e7d2 100644 --- a/srcpkgs/anthy-unicode/template +++ b/srcpkgs/anthy-unicode/template @@ -1,7 +1,7 @@ # Template file for 'anthy-unicode' pkgname=anthy-unicode version=1.0.0.20260127 -revision=1 +revision=2 build_style=meson build_helper=qemu hostmakedepends="emacs" @@ -12,6 +12,11 @@ homepage="https://github.com/fujiwarat/anthy-unicode/wiki" distfiles="https://github.com/fujiwarat/anthy-unicode/releases/download/${version}/${pkgname}-${version}.tar.xz" checksum=3b92fdd124ebe00c64099088a78c0fbcbe7457e145def00c11f726f2c3c3a34a +post_patch() { + # Don't call date to ensure reproducibility + vsed -e "s/'date', '+%Y%m%d'/'echo', '${version##*.}'/" -i meson.build +} + libanthy-unicode_package() { short_desc+=" - libraries" conf_files="/etc/anthy-unicode.conf" From 9c4f07f1401d257a3c6a77bd148bca8a68d615ad Mon Sep 17 00:00:00 2001 From: oreo639 Date: Thu, 29 Jan 2026 19:59:18 -0800 Subject: [PATCH 277/295] ibus-anthy: fix cross compile --- srcpkgs/ibus-anthy/template | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/srcpkgs/ibus-anthy/template b/srcpkgs/ibus-anthy/template index e4f94fcd7f2172..2d1b713848a005 100644 --- a/srcpkgs/ibus-anthy/template +++ b/srcpkgs/ibus-anthy/template @@ -5,7 +5,7 @@ revision=1 build_style=gnu-configure build_helper=gir configure_args="--with-python=python3 --with-layout=default" -hostmakedepends="automake libtool pkg-config gettext" +hostmakedepends="automake libtool pkg-config gettext ibus" makedepends="anthy-unicode-devel ibus-devel python3-gobject-devel" depends="ibus" checkdepends="procps-ng python3-pycotap" @@ -15,3 +15,9 @@ license="LGPL-2.1-or-later" homepage="https://github.com/fujiwarat/ibus-anthy/wiki" distfiles="https://github.com/ibus/ibus-anthy/releases/download/${version}/ibus-anthy-${version}.tar.gz" checksum=15522214b58ad884acc9d9b1da13f15db7dcd76c3b18a88509046e5ec613d1ae + +post_patch() { + if [ "$CROSS_BUILD" ]; then + vsed -e 's/$(ANTHY_INCLUDEDIR)/${XBPS_CROSS_BASE}$(ANTHY_INCLUDEDIR)/' -i gir/Makefile.in + fi +} From 42b75cb70c812cf2a3cef52369bae820c210f9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:01:08 +0700 Subject: [PATCH 278/295] maliit-keyboard: always build with anthy --- srcpkgs/maliit-keyboard/template | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/srcpkgs/maliit-keyboard/template b/srcpkgs/maliit-keyboard/template index d61ffc76e6e8d2..de0d5172502160 100644 --- a/srcpkgs/maliit-keyboard/template +++ b/srcpkgs/maliit-keyboard/template @@ -1,7 +1,7 @@ # Template file for 'maliit-keyboard' pkgname=maliit-keyboard version=2.3.1 -revision=1 +revision=2 build_style=cmake configure_args="-Denable-presage=OFF -Denable-tests=OFF @@ -21,11 +21,7 @@ distfiles="https://github.com/maliit/keyboard/archive/refs/tags/${version}.tar.g checksum=c3e1eb985b8ae7ce4e3e28412b7e797ff5db437ccd327e0d852a3c37f17fe456 build_options="anthy libpinyin" -build_options_default="" - -if [ -z "$CROSS_BUILD" ]; then - build_options_default+=" anthy libpinyin" -fi +build_options_default="anthy libpinyin" maliit-keyboard-doc_package() { short_desc+=" - documentation" From fd8acdc830b1ead12fe70fe5ed6c979db3ced51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:02:24 +0700 Subject: [PATCH 279/295] m17n-lib: always build with anthy --- srcpkgs/m17n-lib/template | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/srcpkgs/m17n-lib/template b/srcpkgs/m17n-lib/template index 4996e51ccd2d4b..f5aeb7bb370e67 100644 --- a/srcpkgs/m17n-lib/template +++ b/srcpkgs/m17n-lib/template @@ -1,7 +1,7 @@ # Template file for 'm17n-lib' pkgname=m17n-lib version=1.8.6 -revision=2 +revision=3 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="pkg-config" @@ -19,10 +19,7 @@ disable_parallel_build=yes build_options="anthy" desc_option_anthy="Enable anthy Japanese input system" - -if [ -z "$CROSS_BUILD" ]; then - build_options_default="anthy" -fi +build_options_default="anthy" m17n-lib-devel_package() { short_desc+=" - development files" From 1c579d22d0e7185e811694a806d9ab19a330a980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:14:42 +0700 Subject: [PATCH 280/295] libpinyin: update to 2.10.3. --- srcpkgs/libpinyin/patches/cross-qemu.patch | 30 ++++++++++++++++++++++ srcpkgs/libpinyin/template | 16 +++++++----- 2 files changed, 40 insertions(+), 6 deletions(-) create mode 100644 srcpkgs/libpinyin/patches/cross-qemu.patch diff --git a/srcpkgs/libpinyin/patches/cross-qemu.patch b/srcpkgs/libpinyin/patches/cross-qemu.patch new file mode 100644 index 00000000000000..991036dac60878 --- /dev/null +++ b/srcpkgs/libpinyin/patches/cross-qemu.patch @@ -0,0 +1,30 @@ +--- a/data/Makefile.in ++++ b/data/Makefile.in +@@ -550,9 +550,9 @@ $(tablefiles) table.conf: interpolation2 + + bigram.db: $(textual_model_data) + $(RM) $(binary_model_data) +- ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data +- ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text +- ../utils/training/gen_unigram --table-dir $(top_srcdir)/data ++ $(RUN_TARGET) ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data ++ $(RUN_TARGET) ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text ++ $(RUN_TARGET) ../utils/training/gen_unigram --table-dir $(top_srcdir)/data + + addon_phrase_index.bin phrase_index.bin addon_pinyin_index.bin pinyin_index.bin $(binfiles): bigram.db + +--- a/data/Makefile.am ++++ b/data/Makefile.am +@@ -57,9 +57,9 @@ $(tablefiles) table.conf: interpolation2 + + bigram.db: $(textual_model_data) + $(RM) $(binary_model_data) +- ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data +- ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text +- ../utils/training/gen_unigram --table-dir $(top_srcdir)/data ++ $(RUN_TARGET) ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data ++ $(RUN_TARGET) ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text ++ $(RUN_TARGET) ../utils/training/gen_unigram --table-dir $(top_srcdir)/data + + addon_phrase_index.bin phrase_index.bin addon_pinyin_index.bin pinyin_index.bin $(binfiles): bigram.db + diff --git a/srcpkgs/libpinyin/template b/srcpkgs/libpinyin/template index 8a2805c1a28d11..47cf381f7cbbf8 100644 --- a/srcpkgs/libpinyin/template +++ b/srcpkgs/libpinyin/template @@ -1,8 +1,9 @@ # Template file for 'libpinyin' pkgname=libpinyin -version=2.10.2 +version=2.10.3 revision=1 build_style=gnu-configure +build_helper=qemu configure_args="--enable-libzhuyin" hostmakedepends="gettext libtool pkg-config autoconf-archive autoconf automake" makedepends="db-devel libglib-devel" @@ -12,19 +13,22 @@ maintainer="Ben Sung Hsu " license="GPL-3.0-or-later" homepage="https://github.com/libpinyin/libpinyin" changelog="https://raw.githubusercontent.com/libpinyin/libpinyin/${version}/ChangeLog" -distfiles="https://github.com/libpinyin/libpinyin/archive/${version}.tar.gz +distfiles=" + https://github.com/libpinyin/libpinyin/releases/download/${version}/libpinyin-${version}.tar.gz http://downloads.sourceforge.net/libpinyin/models/model20.text.tar.gz" -checksum="8409bc81c8fce83f31649f7287e94cc71813947b1e767c544a782023ac2b5a22 +checksum="3fe786ff2c2059bdbdf9d8d752db691a516a941a977521955fe0af3f0b4db299 59c68e89d43ff85f5a309489499cbcde282d2b04bd91888734884b7defcb1155" -nocross="Requires data generators compiled against target system" +# nocross="Requires data generators compiled against target system" skip_extraction="model20.text.tar.gz" post_extract() { vsrcextract --no-strip-components -C data model20.text.tar.gz } -pre_configure() { - NOCONFIGURE=1 ./autogen.sh +pre_build() { + if [ "$CROSS_BUILD" ]; then + export RUN_TARGET="/usr/bin/qemu-${XBPS_TARGET_QEMU_MACHINE}" + fi } libpinyin-common_package() { From a1d3d098146404991e75bd709893a2a3c007d905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:21:08 +0700 Subject: [PATCH 281/295] uim: requires qmake6 helper, too --- srcpkgs/uim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/uim/template b/srcpkgs/uim/template index 6fa5e6256678b4..886a7c38f6d7ce 100644 --- a/srcpkgs/uim/template +++ b/srcpkgs/uim/template @@ -3,7 +3,7 @@ pkgname=uim version=1.9.6 revision=4 build_style=gnu-configure -build_helper=qmake +build_helper="qmake qmake6" configure_args="--enable-pref --enable-fep --with-gtk2 --with-gtk3 --with-libgcroots=installed --with-qt5 --with-qt5-immodule --with-x --with-anthy-utf8 --with-skk From 2a3f176324d23b64552d2e2f1022d09ce580c998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:27:18 +0700 Subject: [PATCH 282/295] ibus-libpinyin: update to 1.16.5. --- srcpkgs/ibus-libpinyin/template | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/srcpkgs/ibus-libpinyin/template b/srcpkgs/ibus-libpinyin/template index 47b640c38bd993..d4d72942d9b85f 100644 --- a/srcpkgs/ibus-libpinyin/template +++ b/srcpkgs/ibus-libpinyin/template @@ -1,20 +1,15 @@ # Template file for 'ibus-libpinyin' pkgname=ibus-libpinyin -version=1.16.4 +version=1.16.5 revision=1 build_style=gnu-configure -hostmakedepends="gettext intltool libtool pkg-config autoconf-archive - automake" -makedepends="gettext-devel glib-devel ibus-devel sqlite-devel libpinyin-devel +hostmakedepends="gettext pkg-config glib-devel" +makedepends="libglib-devel ibus-devel sqlite-devel libpinyin-devel libnotify-devel" short_desc="Intelligent Pinyin engine using libpinyin for IBus" maintainer="Ben Sung Hsu " license="GPL-2.0-or-later" homepage="https://github.com/libpinyin/ibus-libpinyin" distfiles="https://github.com/libpinyin/ibus-libpinyin/archive/refs/tags/${version}.tar.gz" -checksum=01370def25a4cb4aa62e06af00a0d3adaa3bfffa14df56b07a033ebc2fe4e06a - -pre_configure() { - autoupdate - autoreconf -fi -} +distfiles="https://github.com/libpinyin/ibus-libpinyin/releases/download/${version}/ibus-libpinyin-${version}.tar.gz" +checksum=cc652d48e68b8b03afc5e9e08509676aee89f9d492b9a3897cd028bcc800ce31 From 0a45cd909bdac86771320bab529e17443f5b749b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:29:05 +0700 Subject: [PATCH 283/295] fcitx5-anthy: rebuild for new anthy --- srcpkgs/fcitx5-anthy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fcitx5-anthy/template b/srcpkgs/fcitx5-anthy/template index 87a29dda2ca670..9e697f8ed0d6b4 100644 --- a/srcpkgs/fcitx5-anthy/template +++ b/srcpkgs/fcitx5-anthy/template @@ -1,7 +1,7 @@ # Template file for 'fcitx5-anthy' pkgname=fcitx5-anthy version=5.1.9 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config gettext extra-cmake-modules" makedepends="anthy-unicode-devel libfcitx5-devel" From 38a5924a929dba8267d4ebbcf17e129aa16d098c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:29:05 +0700 Subject: [PATCH 284/295] fcitx5-zhuyin: rebuild for new anthy --- srcpkgs/fcitx5-zhuyin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fcitx5-zhuyin/template b/srcpkgs/fcitx5-zhuyin/template index fdf7c3c4236e44..2f1d47e0cfb669 100644 --- a/srcpkgs/fcitx5-zhuyin/template +++ b/srcpkgs/fcitx5-zhuyin/template @@ -1,7 +1,7 @@ # Template file for 'fcitx5-zhuyin' pkgname=fcitx5-zhuyin version=5.1.6 -revision=1 +revision=2 build_style=cmake hostmakedepends="pkg-config gettext doxygen extra-cmake-modules libzhuyin" makedepends="libfcitx5-devel fmt-devel opencc-devel fcitx5-lua-devel From 1ceb1ebd5eccbda4e8f9a6867b73cf7d27c339cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 08:29:05 +0700 Subject: [PATCH 285/295] ibus-libpinyin: rebuild for new anthy --- srcpkgs/ibus-libpinyin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ibus-libpinyin/template b/srcpkgs/ibus-libpinyin/template index d4d72942d9b85f..3a5d6188805f22 100644 --- a/srcpkgs/ibus-libpinyin/template +++ b/srcpkgs/ibus-libpinyin/template @@ -1,7 +1,7 @@ # Template file for 'ibus-libpinyin' pkgname=ibus-libpinyin version=1.16.5 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="gettext pkg-config glib-devel" makedepends="libglib-devel ibus-devel sqlite-devel libpinyin-devel From a31144fc4179f9741d906c9396ae08c0524705e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 11:08:11 +0700 Subject: [PATCH 286/295] anthy-unicode: break cycles --- srcpkgs/anthy-unicode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/anthy-unicode/template b/srcpkgs/anthy-unicode/template index febe4c8b85e7d2..3b5269f654431f 100644 --- a/srcpkgs/anthy-unicode/template +++ b/srcpkgs/anthy-unicode/template @@ -4,7 +4,7 @@ version=1.0.0.20260127 revision=2 build_style=meson build_helper=qemu -hostmakedepends="emacs" +configure_args="-Dlisp_dir=/usr/share/emacs/site-lisp" short_desc="Japanese character set input library for Unicode" maintainer="Đoàn Trần Công Danh " license="LGPL-2.0-or-later, GPL-2.0-only, Public Domain" From c6bcf65407c4287cb9fe6f3c78bb129c9562c0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 11:01:09 +0700 Subject: [PATCH 287/295] texlive-most: update to 2025.0. --- srcpkgs/texlive-most/template | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template index 73eb18b7c9382e..55aae1d99c76f7 100644 --- a/srcpkgs/texlive-most/template +++ b/srcpkgs/texlive-most/template @@ -1,28 +1,17 @@ # Template file for 'texlive-most' pkgname=texlive-most -version=2023.0 +version=2025.0 revision=1 metapackage=yes _year=${version%.*} -depends="texlive>=20230313 - texlive-BibTeX>=20230313 - texlive-LuaTeX>=20230313 - texlive-PythonTeX>=20230313 - texlive-Xdvi>=20230313 - texlive-XeTeX>=20230313 - texlive-dvi>=20230313 - texlive-core>=${_year} - texlive-bibtexextra>=${_year} - texlive-fontsextra>=${_year} - texlive-formatsextra>=${_year} - texlive-games>=${_year} - texlive-humanities>=${_year} - texlive-latexextra>=${_year} - texlive-music>=${_year} - texlive-pictures>=${_year} - texlive-pstricks>=${_year} - texlive-publishers>=${_year} - texlive-science>=${_year}" +depends="texlive>=${_year}0000 + texlive-BibTeX>=${_year}0000 + texlive-LuaTeX>=${_year}0000 + texlive-PythonTeX>=${_year}0000 + texlive-Xdvi>=${_year}0000 + texlive-XeTeX>=${_year}0000 + texlive-dvi>=${_year}0000 + texlive-core>=${_year}" short_desc="TeX Live - Metapackage including most packages" maintainer="fosslinux " license="GPL-2.0-or-later" From d400bf0deabf6554585505b179c20039df1d016e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 11:01:16 +0700 Subject: [PATCH 288/295] texlive-lang: update to 2025.0. --- srcpkgs/texlive-lang/template | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template index e29aa14fad4bed..2c54925061e8ef 100644 --- a/srcpkgs/texlive-lang/template +++ b/srcpkgs/texlive-lang/template @@ -1,16 +1,9 @@ # Template file for 'texlive-lang' pkgname=texlive-lang -version=2023.0 +version=2025.0 revision=1 metapackage=yes -_year=${version%.*} -depends="texlive-core>=${_year} - texlive-langchinese>=${_year} - texlive-langcyrillic>=${_year} - texlive-langextra>=${_year} - texlive-langgreek>=${_year} - texlive-langjapanese>=${_year} - texlive-langkorean>=${_year}" +depends="texlive-core>=${version%%.*}" short_desc="TeX Live - Metapackage including all languages" maintainer="fosslinux " license="GPL-2.0-or-later" From 73e1d7016cc9cb0f9f7105894987b683acded90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 11:53:44 +0700 Subject: [PATCH 289/295] libpinyin: not regenerate autotools --- srcpkgs/libpinyin/patches/cross-qemu.patch | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/srcpkgs/libpinyin/patches/cross-qemu.patch b/srcpkgs/libpinyin/patches/cross-qemu.patch index 991036dac60878..7e3e4873d447bf 100644 --- a/srcpkgs/libpinyin/patches/cross-qemu.patch +++ b/srcpkgs/libpinyin/patches/cross-qemu.patch @@ -13,18 +13,3 @@ addon_phrase_index.bin phrase_index.bin addon_pinyin_index.bin pinyin_index.bin $(binfiles): bigram.db ---- a/data/Makefile.am -+++ b/data/Makefile.am -@@ -57,9 +57,9 @@ $(tablefiles) table.conf: interpolation2 - - bigram.db: $(textual_model_data) - $(RM) $(binary_model_data) -- ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data -- ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text -- ../utils/training/gen_unigram --table-dir $(top_srcdir)/data -+ $(RUN_TARGET) ../utils/storage/gen_binary_files --gen-punct-table --table-dir $(top_srcdir)/data -+ $(RUN_TARGET) ../utils/storage/import_interpolation --table-dir $(top_srcdir)/data < $(top_srcdir)/data/interpolation2.text -+ $(RUN_TARGET) ../utils/training/gen_unigram --table-dir $(top_srcdir)/data - - addon_phrase_index.bin phrase_index.bin addon_pinyin_index.bin pinyin_index.bin $(binfiles): bigram.db - From 49fc3c1f490e0dbbced879d56923882b31897030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 4 Feb 2026 14:12:53 +0700 Subject: [PATCH 290/295] fcitx5-zhuyin: nocross --- srcpkgs/fcitx5-zhuyin/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/fcitx5-zhuyin/template b/srcpkgs/fcitx5-zhuyin/template index 2f1d47e0cfb669..9adeac6021b475 100644 --- a/srcpkgs/fcitx5-zhuyin/template +++ b/srcpkgs/fcitx5-zhuyin/template @@ -3,7 +3,8 @@ pkgname=fcitx5-zhuyin version=5.1.6 revision=2 build_style=cmake -hostmakedepends="pkg-config gettext doxygen extra-cmake-modules libzhuyin" +build_helper=qemu +hostmakedepends="pkg-config gettext doxygen extra-cmake-modules" makedepends="libfcitx5-devel fmt-devel opencc-devel fcitx5-lua-devel libzhuyin-devel libpinyin-utils" short_desc="Fcitx5 - zhuyin IME" @@ -17,6 +18,7 @@ checksum="0d13e85526b17f9724cdb0c707d3d9ee1e9e8794b1865b39d9e157c8d8127367 bb4a9789b6e0fde1c6547f659ce591de5e691ee3a8345d3c1c74eaf92b31ea48" skip_extraction="model.text.${_model_version}.tar.zst" lib32disabled=yes +nocross=yes post_extract() { vsrccopy $skip_extraction data From fe22d4a81ac9acde061cdeb5883033e3cd9318d9 Mon Sep 17 00:00:00 2001 From: Mintsuki Date: Wed, 4 Feb 2026 11:43:33 +0100 Subject: [PATCH 291/295] limine: update to 10.6.5. --- srcpkgs/limine/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/limine/template b/srcpkgs/limine/template index 0f7c8dc126cc75..405f6ba0a838da 100644 --- a/srcpkgs/limine/template +++ b/srcpkgs/limine/template @@ -1,6 +1,6 @@ # Template file for 'limine' pkgname=limine -version=10.6.4 +version=10.6.5 revision=1 build_style=gnu-configure configure_args="--enable-all" @@ -12,7 +12,7 @@ license="BSD-2-Clause" homepage="https://limine-bootloader.org/" changelog="https://codeberg.org/Limine/Limine/raw/branch/trunk/ChangeLog" distfiles="https://codeberg.org/Limine/Limine/releases/download/v${version}/limine-${version}.tar.gz" -checksum=9b120f37e6af0d4eaf01def6997e0814e2a3ed0905710fcbe2371e46444f22fc +checksum=9334afa638a3caa8ae61be783fd9dd2fb8ea26c8c52ae12fa874fe3f5859fdcf post_install() { vlicense COPYING From d3251fa0b7ef73aa24e91d0ebc1aa87291cd4251 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Wed, 4 Feb 2026 08:22:40 -0500 Subject: [PATCH 292/295] asahi-firmware: rebuild for python 3.14 --- srcpkgs/asahi-firmware/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/asahi-firmware/template b/srcpkgs/asahi-firmware/template index 6774413c398253..55c59fb88af41b 100644 --- a/srcpkgs/asahi-firmware/template +++ b/srcpkgs/asahi-firmware/template @@ -1,7 +1,7 @@ # Template file for 'asahi-firmware' pkgname=asahi-firmware version=0.7.9 -revision=2 +revision=3 archs="aarch64*" build_style=python3-module hostmakedepends="python3-setuptools" From 1d060bafbb067a947c7d5cb569405dea3340b85d Mon Sep 17 00:00:00 2001 From: Dustin Pilgrim Date: Fri, 6 Feb 2026 00:39:29 -0400 Subject: [PATCH 293/295] cleanup master --- srcpkgs/stasis-git/template | 53 ------------------------------------- srcpkgs/stasis/template | 32 ---------------------- 2 files changed, 85 deletions(-) delete mode 100644 srcpkgs/stasis-git/template delete mode 100644 srcpkgs/stasis/template diff --git a/srcpkgs/stasis-git/template b/srcpkgs/stasis-git/template deleted file mode 100644 index 2f682b7ceb3050..00000000000000 --- a/srcpkgs/stasis-git/template +++ /dev/null @@ -1,53 +0,0 @@ -# Template file for 'stasis-git' -pkgname=stasis-git -version=0.9.0 -revision=1 -build_style=cargo -hostmakedepends="pkg-config git" -makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" -short_desc="Modern Wayland idle manager (development snapshot)" -maintainer="Dustin Pilgrim " -license="MIT" -homepage="https://github.com/saltnpepper97/stasis" -conflicts="stasis" -distfiles="" -checksum="" - -do_fetch() { - git clone https://github.com/saltnpepper97/stasis.git "$wrksrc" - cd "$wrksrc" - - # Version string like: 0.9.0.r23.gabcdef0 (similar to your PKGBUILD) - # If no tags exist, fall back to commit hash only. - _desc=$(git describe --long --tags --always 2>/dev/null || git rev-parse --short HEAD) - _desc=${_desc#v} - _desc=$(printf %s "$_desc" | sed 's/-/.r/; s/-/./') - version="${version}.${_desc}" -} - -do_extract() { - : -} - -do_install() { - # Binary (handle target/*/release just in case) - local bin - for p in target/*/release/stasis target/release/stasis; do - [ -x "$p" ] && bin="$p" && break - done - [ -n "$bin" ] || verror "built binary not found" - - vbin "$bin" - vlicense LICENSE - - # Example configuration (doc location) - vmkdir usr/share/doc/${pkgname}/examples - vinstall examples/stasis.rune 644 usr/share/doc/${pkgname}/examples stasis.rune - - # systemd user unit (ship as documentation only; Void doesn't use systemd) - if [ -f packaging/systemd/user/stasis.service ]; then - vmkdir usr/share/doc/${pkgname}/systemd/user - vinstall packaging/systemd/user/stasis.service 644 usr/share/doc/${pkgname}/systemd/user stasis.service - fi -} - diff --git a/srcpkgs/stasis/template b/srcpkgs/stasis/template deleted file mode 100644 index 3441a3f0f67aa8..00000000000000 --- a/srcpkgs/stasis/template +++ /dev/null @@ -1,32 +0,0 @@ -# Template file for 'stasis' -pkgname=stasis -version=0.9.0 -revision=1 -build_style=cargo -hostmakedepends="pkg-config" -makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" -depends="dbus eudev-libudev wayland libinput" -short_desc="Modern Wayland idle manager designed for simplicity and effectiveness" -maintainer="Dustin Pilgrim " -license="MIT" -homepage="https://github.com/saltnpepper97/stasis" -distfiles="https://github.com/saltnpepper97/stasis/archive/refs/tags/v${version}.tar.gz" -checksum="7e69a46e3db4145f85a34d822a6f8d4ec67195cc70ad270585119ed9c1d5bd90" - -do_install() { - # Find the built binary (cargo builds into target/*/release or target/release) - local bin - for p in target/*/release/stasis target/release/stasis; do - [ -x "$p" ] && bin="$p" && break - done - [ -n "$bin" ] || verror "built binary not found (expected stasis in target/*/release/ or target/release/)" - - vbin "$bin" - - vlicense LICENSE - - vmkdir usr/share/stasis/examples - vinstall examples/stasis.rune 644 usr/share/stasis/examples stasis.rune - - vbin scripts/media_bridge_host.py -} From dbcde92213299f5f90f5445273ea72c5facb0cae Mon Sep 17 00:00:00 2001 From: Dustin Pilgrim Date: Tue, 10 Feb 2026 03:12:43 -0400 Subject: [PATCH 294/295] New package: gesso-0.1.0 --- srcpkgs/gesso/template | 34 ++++++++++++++++++++++++ srcpkgs/stasis-git/template | 52 +++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 srcpkgs/gesso/template create mode 100644 srcpkgs/stasis-git/template diff --git a/srcpkgs/gesso/template b/srcpkgs/gesso/template new file mode 100644 index 00000000000000..496095b2b6bfe8 --- /dev/null +++ b/srcpkgs/gesso/template @@ -0,0 +1,34 @@ +# Template file for 'gesso' +pkgname=gesso +version=0.1.0 +revision=1 +build_style=cargo +hostmakedepends="pkg-config" +makedepends="wayland-devel wayland-protocols" +short_desc="Deterministic Wayland wallpaper daemon and CLI" +maintainer="Dustin Pilgrim " +license="MIT" +homepage="https://github.com/saltnpepper97/gesso" +distfiles="https://github.com/saltnpepper97/gesso/archive/refs/tags/v${version}.tar.gz" +checksum=9eb20009dc24cfeac2b608bacca880f46a6a0804ce1e7e765266960b188abfbe + +# Upstream has no test suite yet, and running `cargo test` in the Void build sandbox +# is not useful for this package: the project is a Wayland wallpaper daemon/CLI and +# any future integration tests would require a live Wayland compositor/session which +# is not available during package builds. +make_check=no + +do_install() { + vlicense LICENSE + + local tdir="${CARGO_TARGET_DIR:-$wrksrc/target}" + local bindir="$tdir/${XBPS_CROSS_TRIPLET:+${XBPS_CROSS_TRIPLET}/}release" + if [ ! -d "$bindir" ]; then + bindir="$tdir/release" + fi + + vbin "$bindir/gesso" + vbin "$bindir/gessod" + + vman gesso.1 +} diff --git a/srcpkgs/stasis-git/template b/srcpkgs/stasis-git/template new file mode 100644 index 00000000000000..cce1c20acb881a --- /dev/null +++ b/srcpkgs/stasis-git/template @@ -0,0 +1,52 @@ +# Template file for 'stasis-git' +pkgname=stasis-git +version=0.9.0 +revision=1 +build_style=cargo +hostmakedepends="pkg-config git" +makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" +short_desc="Modern Wayland idle manager (development snapshot)" +maintainer="Dustin Pilgrim " +license="MIT" +homepage="https://github.com/saltnpepper97/stasis" +conflicts="stasis" +distfiles="" +checksum="" + +do_fetch() { + git clone https://github.com/saltnpepper97/stasis.git "$wrksrc" + cd "$wrksrc" + + # Version string like: 0.9.0.r23.gabcdef0 (similar to your PKGBUILD) + # If no tags exist, fall back to commit hash only. + _desc=$(git describe --long --tags --always 2>/dev/null || git rev-parse --short HEAD) + _desc=${_desc#v} + _desc=$(printf %s "$_desc" | sed 's/-/.r/; s/-/./') + version="${version}.${_desc}" +} + +do_extract() { + : +} + +do_install() { + # Binary (handle target/*/release just in case) + local bin + for p in target/*/release/stasis target/release/stasis; do + [ -x "$p" ] && bin="$p" && break + done + [ -n "$bin" ] || verror "built binary not found" + + vbin "$bin" + vlicense LICENSE + + # Example configuration (doc location) + vmkdir usr/share/doc/${pkgname}/examples + vinstall examples/stasis.rune 644 usr/share/doc/${pkgname}/examples stasis.rune + + # systemd user unit (ship as documentation only; Void doesn't use systemd) + if [ -f packaging/systemd/user/stasis.service ]; then + vmkdir usr/share/doc/${pkgname}/systemd/user + vinstall packaging/systemd/user/stasis.service 644 usr/share/doc/${pkgname}/systemd/user stasis.service + fi +} From bdefb9926b109a246f36eca9dd3e641e9fb9ff30 Mon Sep 17 00:00:00 2001 From: saltnpepper97 <114543040+saltnpepper97@users.noreply.github.com> Date: Tue, 10 Feb 2026 03:24:22 -0400 Subject: [PATCH 295/295] Delete srcpkgs/stasis-git/template --- srcpkgs/stasis-git/template | 52 ------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 srcpkgs/stasis-git/template diff --git a/srcpkgs/stasis-git/template b/srcpkgs/stasis-git/template deleted file mode 100644 index cce1c20acb881a..00000000000000 --- a/srcpkgs/stasis-git/template +++ /dev/null @@ -1,52 +0,0 @@ -# Template file for 'stasis-git' -pkgname=stasis-git -version=0.9.0 -revision=1 -build_style=cargo -hostmakedepends="pkg-config git" -makedepends="dbus-devel eudev-libudev-devel wayland-devel libinput-devel" -short_desc="Modern Wayland idle manager (development snapshot)" -maintainer="Dustin Pilgrim " -license="MIT" -homepage="https://github.com/saltnpepper97/stasis" -conflicts="stasis" -distfiles="" -checksum="" - -do_fetch() { - git clone https://github.com/saltnpepper97/stasis.git "$wrksrc" - cd "$wrksrc" - - # Version string like: 0.9.0.r23.gabcdef0 (similar to your PKGBUILD) - # If no tags exist, fall back to commit hash only. - _desc=$(git describe --long --tags --always 2>/dev/null || git rev-parse --short HEAD) - _desc=${_desc#v} - _desc=$(printf %s "$_desc" | sed 's/-/.r/; s/-/./') - version="${version}.${_desc}" -} - -do_extract() { - : -} - -do_install() { - # Binary (handle target/*/release just in case) - local bin - for p in target/*/release/stasis target/release/stasis; do - [ -x "$p" ] && bin="$p" && break - done - [ -n "$bin" ] || verror "built binary not found" - - vbin "$bin" - vlicense LICENSE - - # Example configuration (doc location) - vmkdir usr/share/doc/${pkgname}/examples - vinstall examples/stasis.rune 644 usr/share/doc/${pkgname}/examples stasis.rune - - # systemd user unit (ship as documentation only; Void doesn't use systemd) - if [ -f packaging/systemd/user/stasis.service ]; then - vmkdir usr/share/doc/${pkgname}/systemd/user - vinstall packaging/systemd/user/stasis.service 644 usr/share/doc/${pkgname}/systemd/user stasis.service - fi -}