blob: acc32be8af3cbe244e8ec9c3edc5fa655d88d690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 2020 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGO_PN="gitlab.com/gitlab-org/gitlab-runner"
BASE_URI="https://gitlab-runner-downloads.s3.amazonaws.com/v${PV}/helper-images/prebuilt-_arch_.tar.xz"
inherit golang-build golang-vcs-snapshot user readme.gentoo-r1 systemd tmpfiles user
DESCRIPTION="GitLab Runner"
HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner"
SRC_URI="https://${EGO_PN}/repository/v${PV}/archive.tar.bz2 -> ${P}.tar.bz2
docker? ( amd64? ( ${BASE_URI/_arch_/x86_64} -> prebuilt-x86_64-v${PV}.tar.xz ) )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="docker"
RDEPEND="docker? ( >=app-emulation/docker-1.13.0 )"
DEPEND="${RDEPEND}"
RESTRICT="mirror strip"
DOCS=( "${S}"/src/"${EGO_PN}"/{CHANGELOG,README}.md )
DOC_CONTENTS="Register the runner as root using\\n
\\t# gitlab-runner register\\n
Configure the runner in /etc/gitlab-runner/config.toml"
pkg_setup() {
enewgroup gitlab
enewuser runner -1 /bin/bash /var/lib/gitlab-runner gitlab
}
src_unpack() {
golang-vcs-snapshot_src_unpack
if use docker ; then
mkdir -p "${S}"/out/helper-images || die "mkdir failed"
if use amd64 ; then
ln -sf "${DISTDIR}"/prebuilt-x86_64-v${PV}.tar.xz \
"${S}"/out/helper-images/prebuilt-x86_64.tar.xz \
|| die "ln failed"
fi
fi
}
src_install() {
einstalldocs
exeinto /usr/libexec/gitlab-runner
doexe gitlab-runner
dosym ../libexec/gitlab-runner/gitlab-runner /usr/bin/gitlab-runner
if use docker ; then
insinto /usr/libexec/gitlab-runner/helper-images
doins -r out/helper-images/*.tar.xz
fi
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 -orunner -ggitlab -m0600
insinto /etc/gitlab-runner
doins "${S}"/src/"${EGO_PN}"/config.toml.example
diropts -orunner -ggitlab -m0700
keepdir /etc/gitlab-runner /var/lib/gitlab-runner
}
pkg_postinst() {
tmpfiles_process gitlab-runner.conf
readme.gentoo_print_elog
}
|