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

Sven-Hendrik Haase svenstaro at archlinux.org
Tue Sep 25 17:38:54 UTC 2018


    Date: Tuesday, September 25, 2018 @ 17:38:53
  Author: svenstaro
Revision: 384964

archrelease: copy trunk to community-x86_64

Added:
  gitlab-runner/repos/community-x86_64/PKGBUILD
    (from rev 384963, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
    (from rev 384963, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
    (from rev 384963, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
    (from rev 384963, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
    (from rev 384963, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
    (from rev 384963, 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               |  138 +++++++++++++++++++++++------------------------
 config.toml            |    2 
 gitlab-runner.install  |   12 ++--
 gitlab-runner.service  |   34 +++++------
 gitlab-runner.sysusers |    2 
 gitlab-runner.tmpfiles |    2 
 6 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-09-25 17:38:42 UTC (rev 384963)
+++ PKGBUILD	2018-09-25 17:38:53 UTC (rev 384964)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
-
-pkgname=gitlab-runner
-pkgver=11.2.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')
-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")
-
-# Note: This should be built using git because the runner gets its version information from there and I
-# haven't found the place to patch that yet.
-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=('9d235f2d9bfacdc993bf107c8fb7c251b8a9dfac5ffcdc92af8c077388f4502557c6da4f2d35207d3d08800a7ce0eb10f39be6045b29d1758dcec75b953686e3'
-            'd234eaf6689e0d41ae2aa28fa2ee4b29ed81f07b3d7dc61f4f0fb3097ee5736c8e384acf65bf057e880d5b600ba5dbe07c96bbd604da5c630d04d0b17b2bba36'
-            '40bc3a45a6918efa26d433f05f0e0dce1ba23652fde4b070fcfd606da21ac93e705bb6965e7b8fa8c9d7d23487709b41022e28327c4c3cae53211088f8a885ee'
-            '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 384963, gitlab-runner/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-09-25 17:38:53 UTC (rev 384964)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
+
+pkgname=gitlab-runner
+pkgver=11.3.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')
+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")
+
+# Note: This should be built using git because the runner gets its version information from there and I
+# haven't found the place to patch that yet.
+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=('a946467f8904e65c9f0450953eababfee6f436abc60899344db97ffd339e04a4466e4c8ffe22b7af9b79bdf0707b5c9e50fefb76e3e15a2b4eed0319d3a4d692'
+            'c2485fea489f21408a3dbb41d152536a5fa8a8fc2d30f27c3c555978df853fc51356e184f57d2d5d30ff5ee6583fd3e0fd029b22f77071f364f5b6244eb28057'
+            'fc3274d43c57ac7ae196f8a18dfe14c467863f862b59d039da4b56776cd09dd63ff88361cec7eed772c492b43c004da790b6fadf557c6453bd804b3c49c1f2e6'
+            '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	2018-09-25 17:38:42 UTC (rev 384963)
+++ config.toml	2018-09-25 17:38:53 UTC (rev 384964)
@@ -1 +0,0 @@
-concurrent = 4

Copied: gitlab-runner/repos/community-x86_64/config.toml (from rev 384963, gitlab-runner/trunk/config.toml)
===================================================================
--- config.toml	                        (rev 0)
+++ config.toml	2018-09-25 17:38:53 UTC (rev 384964)
@@ -0,0 +1 @@
+concurrent = 4

Deleted: gitlab-runner.install
===================================================================
--- gitlab-runner.install	2018-09-25 17:38:42 UTC (rev 384963)
+++ gitlab-runner.install	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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 384963, gitlab-runner/trunk/gitlab-runner.install)
===================================================================
--- gitlab-runner.install	                        (rev 0)
+++ gitlab-runner.install	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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	2018-09-25 17:38:42 UTC (rev 384963)
+++ gitlab-runner.service	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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 384963, gitlab-runner/trunk/gitlab-runner.service)
===================================================================
--- gitlab-runner.service	                        (rev 0)
+++ gitlab-runner.service	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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	2018-09-25 17:38:42 UTC (rev 384963)
+++ gitlab-runner.sysusers	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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 384963, gitlab-runner/trunk/gitlab-runner.sysusers)
===================================================================
--- gitlab-runner.sysusers	                        (rev 0)
+++ gitlab-runner.sysusers	2018-09-25 17:38:53 UTC (rev 384964)
@@ -0,0 +1 @@
+u gitlab-runner   107      "GitLab Runner" /var/lib/gitlab-runner

Deleted: gitlab-runner.tmpfiles
===================================================================
--- gitlab-runner.tmpfiles	2018-09-25 17:38:42 UTC (rev 384963)
+++ gitlab-runner.tmpfiles	2018-09-25 17:38:53 UTC (rev 384964)
@@ -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 384963, gitlab-runner/trunk/gitlab-runner.tmpfiles)
===================================================================
--- gitlab-runner.tmpfiles	                        (rev 0)
+++ gitlab-runner.tmpfiles	2018-09-25 17:38:53 UTC (rev 384964)
@@ -0,0 +1 @@
+d /var/lib/gitlab-runner 0700 gitlab-runner gitlab-runner -



More information about the arch-commits mailing list