New comment by hk0O7 on void-packages repository https://github.com/void-linux/void-packages/pull/46429#issuecomment-1767313356 Comment: As suspected, check build jobs keep [failing](https://github.com/void-linux/void-packages/actions/runs/6484183866/job/17767201133#step:7:14) due to the first [tags](https://github.com/xbmc/inputstream.adaptive/tags) page `$url` (in [update_check.sh](https://github.com/void-linux/void-packages/blob/master/common/xbps-src/shutils/update_check.sh)) not returning any `href`s matching the default pattern (`$rx`). This is both because it doesn't match version numbers followed by Kodi release names and because the latest version for Matrix is too old to show up there (only from the second page onwards as of now). As per the [manual](https://github.com/void-linux/void-packages/blob/master/common/xbps-src/shutils/update_check.sh) I've tried using `$vdsuffix` but `update_check.sh` will only use it for the _common_ `$distfiles` URLs (like `*github.com*` in this case), so I've also tried a whole `$pattern` based on the default one: ``` pattern='/archive/refs/tags/(v?|\Q'"${pkgname}"'\E[-_])?\K[\d.]+\Q'"-${_kodi_release}"'\E(?=\.tar\.gz")' ``` which does match when I try switching the `$_kodi_release` to `Nexus` or `Omega` (with the current `Matrix` one still yielding `NO VERSION found for kodi-addon-inputstream-adaptive`). So it looks like we have no choice other than to disable the update check until we finally update [kodi](https://github.com/void-linux/void-packages/tree/master/srcpkgs/kodi) to the current stable release.