fix(gitea-runner): fetch source via /api/v1 archive endpoint
CI / build (push) Successful in 6m15s

gitea.com now redirects unauthenticated /gitea/runner/archive/v*.tar.gz to /user/login. The /api/v1/repos/gitea/runner/archive/v*.tar.gz endpoint still serves anonymously and returns byte-identical contents, so the Manifest is unchanged.
This commit is contained in:
Ali
2026-06-14 00:01:58 -05:00
parent 5176b1164b
commit 471b282e64
@@ -8,7 +8,7 @@ inherit go-module
DESCRIPTION="Gitea Actions runner (formerly act_runner)" DESCRIPTION="Gitea Actions runner (formerly act_runner)"
HOMEPAGE="https://gitea.com/gitea/runner" HOMEPAGE="https://gitea.com/gitea/runner"
SRC_URI=" SRC_URI="
https://gitea.com/gitea/runner/archive/v${PV}.tar.gz -> ${P}.tar.gz https://gitea.com/api/v1/repos/gitea/runner/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://git.azy.dev/azy5030/azy5030-overlay/releases/download/${PN}-${PV}-vendor/${P}-vendor.tar.xz https://git.azy.dev/azy5030/azy5030-overlay/releases/download/${PN}-${PV}-vendor/${P}-vendor.tar.xz
" "
S="${WORKDIR}/runner" S="${WORKDIR}/runner"