dev-util/gitea-runner: bump to 2.2.0 (#9)
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

Automated bump of `dev-util/gitea-runner` from 2.0.1 to 2.2.0.

- Upstream release: https://gitea.com/gitea/runner/releases/tag/v2.2.0
- Vendor tarball: https://git.azy.dev/azy5030/azy5030-overlay/releases/tag/gitea-runner-2.2.0-vendor

Review checklist:
- [ ] LICENSE still covers all vendored module licenses (`go-licenses report ./...`)
- [ ] BDEPEND Go version matches upstream go.mod (set to >=1.26.0)
- [ ] version ldflags path `internal/pkg/ver.version` unchanged upstream

CI build + `gitea-runner --version` passed in this workflow.

---------

Co-authored-by: gitea-actions <actions@azy.dev>
Reviewed-on: #9
This commit was merged in pull request #9.
This commit is contained in:
Ali
2026-09-20 15:22:11 -05:00
parent e37bcb66ab
commit dcf58084cd
2 changed files with 39 additions and 2 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
DIST gitea-runner-2.1.0-vendor.tar.xz 3050140 BLAKE2B cc88d676cd0e77337299cde99b9a52826c1384d18b735a7ca56add7ce9a6f088b0309daf0dc14bef883df68292ee81039998bf9be19aa742fd3f7c02519d473d SHA512 5e30c8f582eebdecfb9cd7dfc56044fe44e6e35203ecaeae546ed317b5447f9a1a29a170d0d856ee9339397a763a5f7c1596c07f3e0e74bb1987d135406896f6
DIST gitea-runner-2.1.0.tar.gz 402159 BLAKE2B 1f28a4d69b1991ba8b84c5c4f5e4c7e5beec01d480a5790f5379bef2d6552c108e3d866d775e3130377bd2ba2c8a143424d64b88e4b5a641720748f1470ab09c SHA512 507453a3c65c846e207185ae0f5d6e83fcf916a60c308e92b88c1474384228ae2c4f3a895bb1386ef9273e4fcfdbf649f6309408d6e87d19147a631c9d9c07f4
DIST gitea-runner-2.2.0-vendor.tar.xz 3049748 BLAKE2B 2d0b7ea0a42849001216a6a63b12ebd46f216a96f6f480231f04fd6589a271ee817faca368edd3a03980cd19ac31add639751dca56783aec8b30f08c9fed65f1 SHA512 f16741bdb29b6c790948f7f416171b0b943ae911a78e075e63d2cf291bd0289f7fe8a3f5bbc1a860be6f521b9b084c1dc1c3ef4be91cd0b13624053c528867a2
DIST gitea-runner-2.2.0.tar.gz 418145 BLAKE2B 04d164cb0a064e5b828ac7fbf0958dffcdb043e17de44425b5f384ac9929dc85940f96c3617e8c729f7869fe37a1ed49b4b01df4813a0f35756faca740aa6f80 SHA512 b13df4747a2c9c24647331cf54defe4e6790799415c98d3b5635fd10a974f613faf04eaab2edbc93c1aa6fb3e9468ea5164af8354adb87c8ac5099bd32a3d609
@@ -0,0 +1,37 @@
# Copyright 2026 Ali Zein Yousuf
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Gitea Actions runner (formerly act_runner)"
HOMEPAGE="https://gitea.com/gitea/runner"
SRC_URI="
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
"
S="${WORKDIR}/runner"
# Upstream is MIT; the remaining licenses cover the vendored Go modules that
# are statically linked into the binary.
LICENSE="MIT Apache-2.0 BSD BSD-2 ISC MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND=">=dev-lang/go-1.26.0"
# The runner shells out to the docker client for the Docker backend.
RDEPEND="app-containers/docker-cli"
src_compile() {
local ldflags=(
-s -w
-X "gitea.com/gitea/runner/internal/pkg/ver.version=v${PV}"
)
ego build -ldflags="${ldflags[*]}" -o gitea-runner .
}
src_install() {
dobin gitea-runner
einstalldocs
}