public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gitlab-runner/
Date: Tue, 21 Jun 2022 17:40:59 +0000 (UTC)	[thread overview]
Message-ID: <1655833252.1f90796daa7e56b712dcb795fc9bac8c0aaa8970.williamh@gentoo> (raw)

commit:     1f90796daa7e56b712dcb795fc9bac8c0aaa8970
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 17:39:35 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 17:40:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f90796d

dev-util/gitlab-runner: add 14.10.1-r1, 15.0.0-r1

This is to fix the commit hashes.
Closes: https://bugs.gentoo.org/852965
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 .../gitlab-runner/gitlab-runner-14.10.1-r1.ebuild  | 62 ++++++++++++++++++++++
 .../gitlab-runner/gitlab-runner-15.0.0-r1.ebuild   | 62 ++++++++++++++++++++++
 2 files changed, 124 insertions(+)

diff --git a/dev-util/gitlab-runner/gitlab-runner-14.10.1-r1.ebuild b/dev-util/gitlab-runner/gitlab-runner-14.10.1-r1.ebuild
new file mode 100644
index 000000000000..176609496e49
--- /dev/null
+++ b/dev-util/gitlab-runner/gitlab-runner-14.10.1-r1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module systemd tmpfiles
+
+# make sure this gets updated for every bump
+GIT_COMMIT=f761588f
+
+DESCRIPTION="The official GitLab Runner, written in Go"
+HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner"
+SRC_URI="https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+COMMON_DEPEND="acct-group/gitlab-runner
+	acct-user/gitlab-runner"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+BDEPEND="dev-go/gox"
+
+DOCS=( docs CHANGELOG.md README.md config.toml.example )
+
+S="${WORKDIR}/${PN}-v${PV}"
+
+src_compile() {
+	emake \
+		BUILT="$(date -u '+%Y-%m-%dT%H:%M:%S%:z')" \
+		GOX="${EPREFIX}/usr/bin/gox" \
+		REVISION=${GIT_COMMIT} \
+		VERSION=${PV} \
+		runner-bin-host
+}
+
+src_test() {
+	CI=0 ego test
+}
+
+src_install() {
+	dobin out/binaries/gitlab-runner
+	einstalldocs
+
+	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+	newtmpfiles "${FILESDIR}"/${PN}.tmpfile ${PN}.conf
+	keepdir /{etc,var/log}/${PN}
+	fowners gitlab-runner:gitlab-runner /{etc,var/log}/${PN}
+	fperms 0700 /{etc,var/log}/gitlab-runner
+}
+
+pkg_postinst() {
+	tmpfiles_process gitlab-runner.conf
+	[[ -f ${EROOT}/etc/gitlab-runner/config.toml ]] && return
+	elog
+	elog "To use the runner, you need to register it with this command:"
+	elog "# gitlab-runner register"
+	elog "This will also create the configuration file in /etc/gitlab-runner/config.toml"
+}

diff --git a/dev-util/gitlab-runner/gitlab-runner-15.0.0-r1.ebuild b/dev-util/gitlab-runner/gitlab-runner-15.0.0-r1.ebuild
new file mode 100644
index 000000000000..36a78be3b1cb
--- /dev/null
+++ b/dev-util/gitlab-runner/gitlab-runner-15.0.0-r1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit go-module systemd tmpfiles
+
+# make sure this gets updated for every bump
+GIT_COMMIT=febb2a09
+
+DESCRIPTION="The official GitLab Runner, written in Go"
+HOMEPAGE="https://gitlab.com/gitlab-org/gitlab-runner"
+SRC_URI="https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+COMMON_DEPEND="acct-group/gitlab-runner
+	acct-user/gitlab-runner"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+BDEPEND="dev-go/gox"
+
+DOCS=( docs CHANGELOG.md README.md config.toml.example )
+
+S="${WORKDIR}/${PN}-v${PV}"
+
+src_compile() {
+	emake \
+		BUILT="$(date -u '+%Y-%m-%dT%H:%M:%S%:z')" \
+		GOX="${EPREFIX}/usr/bin/gox" \
+		REVISION=${GIT_COMMIT} \
+		VERSION=${PV} \
+		runner-bin-host
+}
+
+src_test() {
+	CI=0 ego test
+}
+
+src_install() {
+	dobin out/binaries/gitlab-runner
+	einstalldocs
+
+	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+	newtmpfiles "${FILESDIR}"/${PN}.tmpfile ${PN}.conf
+	keepdir /{etc,var/log}/${PN}
+	fowners gitlab-runner:gitlab-runner /{etc,var/log}/${PN}
+	fperms 0700 /{etc,var/log}/gitlab-runner
+}
+
+pkg_postinst() {
+	tmpfiles_process gitlab-runner.conf
+	[[ -f ${EROOT}/etc/gitlab-runner/config.toml ]] && return
+	elog
+	elog "To use the runner, you need to register it with this command:"
+	elog "# gitlab-runner register"
+	elog "This will also create the configuration file in /etc/gitlab-runner/config.toml"
+}


             reply	other threads:[~2022-06-21 17:41 UTC|newest]

Thread overview: 103+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-21 17:40 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-03 20:11 [gentoo-commits] repo/gentoo:master commit in: dev-util/gitlab-runner/ William Hubbs
2024-09-03 20:11 William Hubbs
2024-08-17  2:13 William Hubbs
2024-08-17  2:10 William Hubbs
2024-08-16 22:58 William Hubbs
2024-07-31  4:07 William Hubbs
2024-07-31  4:07 William Hubbs
2024-07-31  2:56 William Hubbs
2024-07-31  2:54 William Hubbs
2024-07-11 14:56 William Hubbs
2024-07-11 14:56 William Hubbs
2024-07-11 14:47 William Hubbs
2024-07-11 14:47 William Hubbs
2024-06-26 14:55 William Hubbs
2024-06-26 14:54 William Hubbs
2024-05-20 22:33 William Hubbs
2024-05-20 22:30 William Hubbs
2024-04-08 19:32 William Hubbs
2024-04-08 19:31 William Hubbs
2024-03-13 18:23 William Hubbs
2024-03-13 18:23 William Hubbs
2024-03-12 14:56 William Hubbs
2024-03-12 14:52 William Hubbs
2024-02-22 15:45 William Hubbs
2024-01-26 15:43 William Hubbs
2024-01-09 18:44 William Hubbs
2024-01-02 22:37 William Hubbs
2023-11-30  0:07 William Hubbs
2023-11-30  0:07 William Hubbs
2023-11-16 21:49 William Hubbs
2023-11-16 21:49 William Hubbs
2023-10-26 20:44 William Hubbs
2023-10-26 20:44 William Hubbs
2023-10-26 20:44 William Hubbs
2023-10-26 20:44 William Hubbs
2023-10-26 19:55 William Hubbs
2023-10-26 19:55 William Hubbs
2023-10-13 16:30 William Hubbs
2023-10-13 16:27 William Hubbs
2023-10-13 16:27 William Hubbs
2023-09-25 21:33 William Hubbs
2023-09-25 21:33 William Hubbs
2023-09-21 21:31 William Hubbs
2023-09-21 21:30 William Hubbs
2023-08-22 16:58 William Hubbs
2023-08-22 16:58 William Hubbs
2023-07-27 19:26 William Hubbs
2023-07-27 19:26 William Hubbs
2023-07-10 22:22 William Hubbs
2023-07-10 22:22 William Hubbs
2023-06-11  2:04 William Hubbs
2023-06-11  2:04 William Hubbs
2023-06-11  2:04 William Hubbs
2023-05-30 20:59 William Hubbs
2023-05-30 14:42 William Hubbs
2023-05-02 14:44 William Hubbs
2023-05-02 14:43 William Hubbs
2023-04-06 20:26 William Hubbs
2023-04-06 20:24 William Hubbs
2023-03-28  4:52 William Hubbs
2023-03-28  4:51 William Hubbs
2023-02-25 20:05 William Hubbs
2023-02-25 20:05 William Hubbs
2023-02-11 23:15 William Hubbs
2023-02-11 23:13 William Hubbs
2023-02-11 23:13 William Hubbs
2023-01-23 18:16 William Hubbs
2023-01-23 18:16 William Hubbs
2023-01-18  3:14 William Hubbs
2023-01-18  3:14 William Hubbs
2023-01-01  5:32 William Hubbs
2022-12-01  1:37 William Hubbs
2022-12-01  1:37 William Hubbs
2022-12-01  0:09 William Hubbs
2022-11-15 19:53 William Hubbs
2022-11-15 19:52 William Hubbs
2022-11-08 18:31 William Hubbs
2022-11-08 18:05 William Hubbs
2022-11-08 18:05 William Hubbs
2022-11-07 21:50 William Hubbs
2022-10-28  2:19 Yixun Lan
2022-10-28  2:19 Yixun Lan
2022-10-26 16:28 William Hubbs
2022-10-26 16:25 William Hubbs
2022-09-24 19:20 William Hubbs
2022-09-24 19:09 William Hubbs
2022-09-24 19:09 William Hubbs
2022-09-14 19:22 Arthur Zamarin
2022-08-21  1:24 William Hubbs
2022-08-04  2:33 William Hubbs
2022-07-25 22:52 William Hubbs
2022-07-25 22:52 William Hubbs
2022-06-22  7:05 Michał Górny
2022-06-21 17:40 William Hubbs
2022-06-21 17:24 William Hubbs
2022-05-24 20:11 William Hubbs
2022-05-17 20:59 William Hubbs
2022-05-11 16:45 William Hubbs
2022-05-11 16:45 William Hubbs
2022-04-21 18:52 William Hubbs
2022-03-31 16:58 William Hubbs
2022-03-28 13:43 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1655833252.1f90796daa7e56b712dcb795fc9bac8c0aaa8970.williamh@gentoo \
    --to=williamh@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox