| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 18.8.0 | 7 | ~amd64 ~x86 ~arm ~arm64 | 0 |
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit readme.gentoo-r1 systemd tmpfiles
DESCRIPTION="GitLab Runner"
HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner"
# The following list of binaries is provided at the following URL
# https://gitlab-runner-downloads.s3.amazonaws.com/v13.6.0/index.html
SRC_HOST="s3.amazonaws.com"
SRC_BASE="https://${SRC_HOST}/gitlab-runner-downloads/v${PV}/binaries/gitlab-runner-linux"
SRC_URI="
amd64? (
${SRC_BASE}-amd64 -> gitlab-runner-amd64-${PV}
)
x86? (
${SRC_BASE}-386 -> gitlab-runner-x86-${PV}
)
arm? (
${SRC_BASE}-arm -> gitlab-runner-arm-${PV}
)
arm64? (
${SRC_BASE}-arm64 -> gitlab-runner-arm64-${PV}
)"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~arm ~arm64"
IUSE="systemd"
RDEPEND="
!dev-util/gitlab-runner
acct-user/gitlab-runner
"
DEPEND="
${RDEPEND}
systemd? ( sys-apps/systemd )
"
RESTRICT="mirror strip"
DOC_CONTENTS="Register the runner as root using\\n
\\t# gitlab-runner register\\n
This will save the config in /etc/gitlab-runner/config.toml"
src_unpack() {
mkdir ${S}
}
src_prepare() {
default
cp ${DISTDIR}/${A} ${S}/gitlab-runner || die
}
src_install() {
einstalldocs
exeinto /usr/libexec/gitlab-runner
doexe gitlab-runner
newconfd "${FILESDIR}"/gitlab-runner.confd gitlab-runner
newinitd "${FILESDIR}"/gitlab-runner.initd gitlab-runner
systemd_dounit "${FILESDIR}"/gitlab-runner.service
newtmpfiles "${FILESDIR}"/gitlab-runner.tmpfile gitlab-runner.conf
readme.gentoo_create_doc
insopts -o gitlab-runner -g gitlab -m0600
diropts -o gitlab-runner -g gitlab -m0750
insinto /etc/gitlab-runner
keepdir /etc/gitlab-runner /var/lib/gitlab-runner
}
pkg_postinst() {
tmpfiles_process gitlab-runner.conf
readme.gentoo_print_elog
}
!dev-util/gitlab-runner acct-user/gitlab-runner systemd? ( sys-apps/systemd )
!dev-util/gitlab-runner acct-user/gitlab-runner