Files
azy5030-overlay/dev-util/gitea-runner/gitea-runner-3.3.0.ebuild
T
gitea-actions 52cf302e60
CI / lint (push) Successful in 23s
CI / build (push) Successful in 9m20s
dev-util/gitea-runner: bump to 3.3.0
2026-08-22 05:12:39 +00:00

38 lines
990 B
Bash

# 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
}