new ebuild dev-util/gitea-runner replaces dev-util/act_runner.

This commit is contained in:
2026-09-15 11:57:33 +02:00
parent 3d79a081cd
commit 869e661835
4 changed files with 35 additions and 31 deletions
-2
View File
@@ -1,2 +0,0 @@
DIST act_runner-0.2.13-vendor.tar.xz 3130264 BLAKE2B 65c9a47a77c417826b5008bba2a41bfeb8bfe5595dd8f8480a9d7348b084179ce5e1862a5abb700c30968a4d5470a9f2d89a29903b7f50d168a03ae9efeb839f SHA512 5c598e057e06ee661089e4ff9e1455df5e25f993d158e97b35e8bb1a682b7b570a37d1a43d9d890425385e651b1aa2297d2f5bef1d852b817049f1648b8039c0
DIST v0.2.13.tar.gz 57091 BLAKE2B 574152b48ccd19e30543eb85e18ba190a15a8c16ca7a4b2bf69fae40f9e09322dac8e2f865cac6565c414acb2f226711e14b3f54dae086652193b09b442447b0 SHA512 41c82466b6c11091de4a27f54003ca1df37503596803263c9d791d796bf80e34e2c25626fed8f8329953e8bdd062a86e25e78b973f2f5c46539c7f464ea51c27
@@ -1,29 +0,0 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A runner for Gitea based on act."
HOMEPAGE="https://gitea.com/gitea/act_runner"
SRC_URI="
https://gitea.com/gitea/act_runner/archive/v${PV}.tar.gz
https://gentoo.migmedia.net/alpha-quadrant/${P}-vendor.tar.xz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/${PN}"
src_compile() {
ego build
}
src_install() {
dobin act_runner
}
+2
View File
@@ -0,0 +1,2 @@
DIST gitea-runner-3.5.0-vendor.tar.xz 3362104 BLAKE2B dc6399e37e4ececfce8bea5b9a009ea042fd921d42295e74c342a681f9fd6c5b000b6470c36472517e78cfa353c28892dac22f41cc0295f42dda76fafad39ab2 SHA512 05e8e1a09cd123516d4e4ba7f6205567a4dffa53d1a9c835225cedf036d05e5028a7462bcfb85181f47e95b35e10444aa0ebf0462e1826b48d56924e51a51851
DIST gitea-runner-3.5.0.tar.gz 516558 BLAKE2B 262e7e6383f99c61f6e3bdf6b72e8916ae1ea916f789b2b8a3db36e332bc4a2ed3f3c662d052fe9eb9ab802ae634938c360c7d5d82afd63f38580d344c786ef7 SHA512 0b2697ad8b481125cce52fbdd2cb38c4cb6a13df016646d332a6676573e38bc2e4beee711ed629f392ce6d1b8a19e6006d1009024bfa2866aabfe8dc2258b5c2
@@ -0,0 +1,33 @@
# Copyright 2026 migmedia
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Official runner for Gitea"
HOMEPAGE="https://gitea.com/gitea/runner"
SRC_URI="
https://gitea.com/gitea/runner/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://gentoo.migmedia.net/alpha-quadrant/${P}-vendor.tar.xz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="
>=dev-lang/go-1.27.0
"
MY_PN="runner"
S="${WORKDIR}/runner"
src_compile() {
ego build
}
src_install() {
newbin runner gitea-runner
dosym -r /usr/bin/gitea-runner /usr/bin/runner
}