[arch-commits] Commit in gitlab-runner/repos/community-x86_64 (12 files)

Sven-Hendrik Haase svenstaro at archlinux.org
Thu Jan 23 02:59:48 UTC 2020


    Date: Thursday, January 23, 2020 @ 02:59:48
  Author: svenstaro
Revision: 554676

archrelease: copy trunk to community-x86_64

Added:
  gitlab-runner/repos/community-x86_64/PKGBUILD
    (from rev 554675, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
    (from rev 554675, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
    (from rev 554675, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
    (from rev 554675, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
    (from rev 554675, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
    (from rev 554675, gitlab-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-runner/repos/community-x86_64/PKGBUILD
  gitlab-runner/repos/community-x86_64/config.toml
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles

------------------------+
 PKGBUILD               |  134 +++++++++++++++++++++++------------------------
 config.toml            |    2 
 gitlab-runner.install  |   12 ++--
 gitlab-runner.service  |   34 +++++------
 gitlab-runner.sysusers |    2 
 gitlab-runner.tmpfiles |    2 
 6 files changed, 93 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-01-23 02:59:39 UTC (rev 554675)
+++ PKGBUILD	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1,67 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
-# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
-
-pkgname=gitlab-runner
-pkgver=12.6.0
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go-pie' 'git' 'mercurial' 'gox')
-install='gitlab-runner.install'
-replaces=('gitlab-ci-multi-runner')
-backup=('etc/gitlab-runner/config.toml')
-noextract=("prebuilt-${pkgver}-x86_64.tar.xz"
-           "prebuilt-${pkgver}-arm.tar.xz")
-
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-runner/repository/archive?sha=v${pkgver}"
-        "prebuilt-${pkgver}-x86_64.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-x86_64.tar.xz"
-        "prebuilt-${pkgver}-arm.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-arm.tar.xz"
-        "gitlab-runner.service"
-        "gitlab-runner.sysusers"
-        "gitlab-runner.tmpfiles"
-        "config.toml")
-sha512sums=('815d3f377a1090477f9d7a617296ea98900a67da07f2fcfba3efeb9371ca88926a063b0a2a09e1152d7c6a61801d1fc59c7606d087cba894d51f13e3c5138fae'
-            '6e2253fbcabe8428e5823815284f273018518cb0ed1f4d0d787f592b2eddb02436d524ef04af3e579eceb1b5fa291ee0e6172d16f05ba54a4a0e448bd491a8f0'
-            '2cba141879f5d22189d54ee7033deaff8469267b8b978cf82c3230c26128c181ba9a7fc6b9563f29475e97eb6eaabb784b874577f13c86707c9ec6e155540c9a'
-            '8a5a8b7654d3864722e784b2814c6278c17876f1c0c4fc0676fbcf6817ad2ba4be55501e67ce88c62b5b63ca886b01afc6feac98ba49842acd244abdd1a8296f'
-            '8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
-            '6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
-            'f39c23fc06636f31c3fadb9a630c54527e8255098f18d275772cb30875d0a7463717101704070d432f2b69ab71f076a9538172a439bc307722dad2c7e260f752')
-
-_srcdir="gitlab-runner-v${pkgver}-"
-
-prepare() {
-    local revision=$(ls -d ${_srcdir}* | rev | cut -c 33-40 | rev)
-
-    mkdir -p "${srcdir}/src/gitlab.com/gitlab-org/"
-    ln -sf "${srcdir}/${_srcdir}"* "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
-    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
-
-    local version=$(cat VERSION)
-
-    sed -i "s/export VERSION.*/export VERSION = $version/" Makefile
-    sed -i "s/REVISION := .*/REVISION := $revision/" Makefile
-
-    make version
-
-    ln -sf "${srcdir}/prebuilt-${pkgver}-x86_64.tar.xz" prebuilt-x86_64.tar.xz
-    ln -sf "${srcdir}/prebuilt-${pkgver}-arm.tar.xz" prebuilt-arm.tar.xz
-}
-
-build() {
-    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
-    make BUILD_PLATFORMS='-osarch linux/amd64' build
-}
-
-package() {
-    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
-
-    install -Dm644 "${srcdir}/config.toml" "${pkgdir}/etc/gitlab-runner/config.toml"
-    install -Dm644 "${srcdir}/gitlab-runner.service" "${pkgdir}/usr/lib/systemd/system/gitlab-runner.service"
-    install -Dm644 "${srcdir}/gitlab-runner.sysusers" "${pkgdir}/usr/lib/sysusers.d/gitlab-runner.conf"
-    install -Dm644 "${srcdir}/gitlab-runner.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/gitlab-runner.conf"
-    install -Dm755 out/binaries/gitlab-runner-linux-amd64 "${pkgdir}/usr/bin/gitlab-runner"
-}

Copied: gitlab-runner/repos/community-x86_64/PKGBUILD (from rev 554675, gitlab-runner/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1,67 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
+
+pkgname=gitlab-runner
+pkgver=12.7.0
+pkgrel=1
+pkgdesc="The official GitLab CI runner written in Go"
+arch=('x86_64')
+url='https://gitlab.com/gitlab-org/gitlab-runner'
+license=('GPL3')
+depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
+makedepends=('git' 'go-pie' 'git' 'mercurial' 'gox')
+install='gitlab-runner.install'
+replaces=('gitlab-ci-multi-runner')
+backup=('etc/gitlab-runner/config.toml')
+noextract=("prebuilt-${pkgver}-x86_64.tar.xz"
+           "prebuilt-${pkgver}-arm.tar.xz")
+
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-runner/repository/archive?sha=v${pkgver}"
+        "prebuilt-${pkgver}-x86_64.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-x86_64.tar.xz"
+        "prebuilt-${pkgver}-arm.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-arm.tar.xz"
+        "gitlab-runner.service"
+        "gitlab-runner.sysusers"
+        "gitlab-runner.tmpfiles"
+        "config.toml")
+sha512sums=('b0a090cedd4698333dc630bda8f3d5b522480e259af7c74f43a20ba04e115f233f9d7c52494f5991f0cc09d1b5f22d88a49a28b581a2da97daf6225e89d0d26d'
+            'a16997c58fa1923136fd53f8fc8b66f000a6f8412b06352a6947124b4924937503243451ea5623b50c1e40609f5394693040ea7fb351dee752e98b3bef7d7789'
+            '33edcb8d5454c19621927bce0569cf892d3ba4123d059372850c07a7cfcb723f36eebdf22b28b9bf8cd66a67e35c3fb3d10a1b8a33e691adb0f211ef0a8ad208'
+            '8a5a8b7654d3864722e784b2814c6278c17876f1c0c4fc0676fbcf6817ad2ba4be55501e67ce88c62b5b63ca886b01afc6feac98ba49842acd244abdd1a8296f'
+            '8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
+            '6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
+            'f39c23fc06636f31c3fadb9a630c54527e8255098f18d275772cb30875d0a7463717101704070d432f2b69ab71f076a9538172a439bc307722dad2c7e260f752')
+
+_srcdir="gitlab-runner-v${pkgver}-"
+
+prepare() {
+    local revision=$(ls -d ${_srcdir}* | rev | cut -c 33-40 | rev)
+
+    mkdir -p "${srcdir}/src/gitlab.com/gitlab-org/"
+    ln -sf "${srcdir}/${_srcdir}"* "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
+    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
+
+    local version=$(cat VERSION)
+
+    sed -i "s/export VERSION.*/export VERSION = $version/" Makefile
+    sed -i "s/REVISION := .*/REVISION := $revision/" Makefile
+
+    make version
+
+    ln -sf "${srcdir}/prebuilt-${pkgver}-x86_64.tar.xz" prebuilt-x86_64.tar.xz
+    ln -sf "${srcdir}/prebuilt-${pkgver}-arm.tar.xz" prebuilt-arm.tar.xz
+}
+
+build() {
+    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
+    make BUILD_PLATFORMS='-osarch linux/amd64' build
+}
+
+package() {
+    cd "${srcdir}/src/gitlab.com/gitlab-org/gitlab-runner"
+
+    install -Dm644 "${srcdir}/config.toml" "${pkgdir}/etc/gitlab-runner/config.toml"
+    install -Dm644 "${srcdir}/gitlab-runner.service" "${pkgdir}/usr/lib/systemd/system/gitlab-runner.service"
+    install -Dm644 "${srcdir}/gitlab-runner.sysusers" "${pkgdir}/usr/lib/sysusers.d/gitlab-runner.conf"
+    install -Dm644 "${srcdir}/gitlab-runner.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/gitlab-runner.conf"
+    install -Dm755 out/binaries/gitlab-runner-linux-amd64 "${pkgdir}/usr/bin/gitlab-runner"
+}

Deleted: config.toml
===================================================================
--- config.toml	2020-01-23 02:59:39 UTC (rev 554675)
+++ config.toml	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1 +0,0 @@
-concurrent = 4

Copied: gitlab-runner/repos/community-x86_64/config.toml (from rev 554675, gitlab-runner/trunk/config.toml)
===================================================================
--- config.toml	                        (rev 0)
+++ config.toml	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1 @@
+concurrent = 4

Deleted: gitlab-runner.install
===================================================================
--- gitlab-runner.install	2020-01-23 02:59:39 UTC (rev 554675)
+++ gitlab-runner.install	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1,6 +0,0 @@
-post_install() {
-  echo "Register the runner as root using"
-  echo "# gitlab-ci-multi-runner register"
-  echo "Configure the runner in /etc/gitlab-runner/config.toml"
-  echo "Use gitlab-runner.service to control the runner"
-}

Copied: gitlab-runner/repos/community-x86_64/gitlab-runner.install (from rev 554675, gitlab-runner/trunk/gitlab-runner.install)
===================================================================
--- gitlab-runner.install	                        (rev 0)
+++ gitlab-runner.install	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1,6 @@
+post_install() {
+  echo "Register the runner as root using"
+  echo "# gitlab-ci-multi-runner register"
+  echo "Configure the runner in /etc/gitlab-runner/config.toml"
+  echo "Use gitlab-runner.service to control the runner"
+}

Deleted: gitlab-runner.service
===================================================================
--- gitlab-runner.service	2020-01-23 02:59:39 UTC (rev 554675)
+++ gitlab-runner.service	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1,17 +0,0 @@
-[Unit]
-Description=GitLab Runner
-After=syslog.target network.target
-ConditionFileIsExecutable=/usr/bin/gitlab-runner
-
-[Service]
-StartLimitInterval=5
-StartLimitBurst=10
-ExecStart=/usr/bin/gitlab-runner "run" "--working-directory" "/var/lib/gitlab-runner" "--config" "/etc/gitlab-runner/config.toml" "--service" "gitlab-runner" "--user" "gitlab-runner"
-Restart=always
-RestartSec=120
-StandardOutput=syslog
-StandardError=syslog
-SyslogIdentifier=gitlab-runner
-
-[Install]
-WantedBy=multi-user.target

Copied: gitlab-runner/repos/community-x86_64/gitlab-runner.service (from rev 554675, gitlab-runner/trunk/gitlab-runner.service)
===================================================================
--- gitlab-runner.service	                        (rev 0)
+++ gitlab-runner.service	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1,17 @@
+[Unit]
+Description=GitLab Runner
+After=syslog.target network.target
+ConditionFileIsExecutable=/usr/bin/gitlab-runner
+
+[Service]
+StartLimitInterval=5
+StartLimitBurst=10
+ExecStart=/usr/bin/gitlab-runner "run" "--working-directory" "/var/lib/gitlab-runner" "--config" "/etc/gitlab-runner/config.toml" "--service" "gitlab-runner" "--user" "gitlab-runner"
+Restart=always
+RestartSec=120
+StandardOutput=syslog
+StandardError=syslog
+SyslogIdentifier=gitlab-runner
+
+[Install]
+WantedBy=multi-user.target

Deleted: gitlab-runner.sysusers
===================================================================
--- gitlab-runner.sysusers	2020-01-23 02:59:39 UTC (rev 554675)
+++ gitlab-runner.sysusers	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1 +0,0 @@
-u gitlab-runner   107      "GitLab Runner" /var/lib/gitlab-runner

Copied: gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers (from rev 554675, gitlab-runner/trunk/gitlab-runner.sysusers)
===================================================================
--- gitlab-runner.sysusers	                        (rev 0)
+++ gitlab-runner.sysusers	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1 @@
+u gitlab-runner   107      "GitLab Runner" /var/lib/gitlab-runner

Deleted: gitlab-runner.tmpfiles
===================================================================
--- gitlab-runner.tmpfiles	2020-01-23 02:59:39 UTC (rev 554675)
+++ gitlab-runner.tmpfiles	2020-01-23 02:59:48 UTC (rev 554676)
@@ -1 +0,0 @@
-d /var/lib/gitlab-runner 0700 gitlab-runner gitlab-runner -

Copied: gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles (from rev 554675, gitlab-runner/trunk/gitlab-runner.tmpfiles)
===================================================================
--- gitlab-runner.tmpfiles	                        (rev 0)
+++ gitlab-runner.tmpfiles	2020-01-23 02:59:48 UTC (rev 554676)
@@ -0,0 +1 @@
+d /var/lib/gitlab-runner 0700 gitlab-runner gitlab-runner -



More information about the arch-commits mailing list