Compare commits

..

1 Commits

Author SHA1 Message Date
gitea-actions d0215bef75 dev-util/gitea-runner: bump to 2.2.0
CI / lint (push) Successful in 1m18s
CI / build (push) Successful in 6m15s
2026-09-20 15:13:48 -05:00
3 changed files with 39 additions and 2 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
DIST gitea-runner-3.1.0-vendor.tar.xz 3214304 BLAKE2B d60382f0675bc1d234fc5e880a717d12d0be73abf0012e6a08b301afc8f3333e6ef04d04d60aebbb8ea3280e81c9c5edbde8453fd83299ee57ae86ad587f3a28 SHA512 8327c5befc2dc8681cf9bc6d50ed3395e5c08de7a3d19e284a55667e92e2acd4c802fe4c028f14528f00ed1704321f224370e6cdbc04a4252dccfada9b66ec40
DIST gitea-runner-3.1.0.tar.gz 497766 BLAKE2B ae8096a843f140d2689011715dbf23bb7cbcec3b59decc633ea3cd3b23461fe16aca55ede5413572b298a65b64170e19bc4fc14ce7f56a4927e82058b0cc7624 SHA512 b5b3c9adb4d9dca843af3ef6b2359817b73be09df75cb1d092b3387356fa00f9f2bd0f465bfd58e0bb0d9909ea0867d8a5bbe84651077073aead5ff5b932d7eb
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
}