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

Sven-Hendrik Haase svenstaro at archlinux.org
Fri Mar 26 23:10:46 UTC 2021


    Date: Friday, March 26, 2021 @ 23:10:45
  Author: svenstaro
Revision: 904881

archrelease: copy trunk to community-x86_64

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

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-03-26 23:10:37 UTC (rev 904880)
+++ PKGBUILD	2021-03-26 23:10:45 UTC (rev 904881)
@@ -1,68 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
-# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
-
-pkgname=gitlab-runner
-pkgver=13.9.0
-_commit=2ebc4dc4
-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' '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=("git+https://gitlab.com/gitlab-org/gitlab-runner.git#tag=${_commit}"
-        "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=('SKIP'
-            'a1970c22414794249bef451e3e7f739486938becd84b0b053e721a82bcf4fe22f2c923fd19169516b3eea7488ad8d4ebef8558a2e7e4ca0dbb2501c7235fe1c3'
-            '65f34c158757124a1075c5ccc15d3cc5e23be5fc42f5f1e2b900b3fe24cdf0a1674e37a004ff8931b04d9c5e690bd6d5c6e2145d87e0afa1252b04a40de37fbb'
-            'c0af374b9986895aedcfaee6c67cfad68f0f7289f87e4611358adaff59a2f349f55764fe28b2b1f61f8bfeb61126d4f90d433c626fdf9b826a2de6217f86574f'
-            '8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
-            '6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
-            '9718b94bd0ddb09095ffb8c1e60ca1e9649dabb1747e7fc95e58e404b2f9effdeb4cfd759f5b904443dc53a4e18c02003c38f85584713deb49f6a6d1007503de')
-
-prepare() {
-  cd gitlab-runner
-
-  local version=$(make version | grep "Current version:" | sed -n "s/.*: \(.*\)/\1/p")
-  local revision=$(make version | grep "Current revision:" | sed -n "s/.*: \(.*\)/\1/p")
-  local branch=$(make version | grep "Current branch:" | sed -n "s/.*: \(.*\)/\1/p")
-
-  sed -i "s/var VERSION.*/var VERSION = \"$version\"/" common/version.go
-  sed -i "s/var REVISION.*/var REVISION = \"$revision\"/" common/version.go
-  sed -i "s/var BRANCH.*/var BRANCH = \"$branch\"/" common/version.go
-
-  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() {
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
-
-  cd gitlab-runner
-  go build -o gitlab-runner .
-}
-
-package() {
-  cd 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 gitlab-runner "${pkgdir}/usr/bin/gitlab-runner"
-}

Copied: gitlab-runner/repos/community-x86_64/PKGBUILD (from rev 904880, gitlab-runner/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1,68 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+# Contributor: Lubomir 'Kuci' Kucera <kuci24-at-gmail-dot-com>
+
+pkgname=gitlab-runner
+pkgver=13.10.0
+_commit=54944146
+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' '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=("git+https://gitlab.com/gitlab-org/gitlab-runner.git#tag=${_commit}"
+        "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=('SKIP'
+            'd7d7ee35561234feebc93bf86f32051e570153a4cf3163a442f1feba1c9272f4c6db86c85e5278aad12937625638fbfd85403a483d6ae22699eb8549eedc881b'
+            'd3faf8a34c88fdea71c466faed80b61164b209de876490321999c0bef43156f0a75a5d99eda1fb266871e1eb5e8789440cfc4fc1c86e0bf9099b754e08817916'
+            'c0af374b9986895aedcfaee6c67cfad68f0f7289f87e4611358adaff59a2f349f55764fe28b2b1f61f8bfeb61126d4f90d433c626fdf9b826a2de6217f86574f'
+            '8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
+            '6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
+            '9718b94bd0ddb09095ffb8c1e60ca1e9649dabb1747e7fc95e58e404b2f9effdeb4cfd759f5b904443dc53a4e18c02003c38f85584713deb49f6a6d1007503de')
+
+prepare() {
+  cd gitlab-runner
+
+  local version=$(make version | grep "Current version:" | sed -n "s/.*: \(.*\)/\1/p")
+  local revision=$(make version | grep "Current revision:" | sed -n "s/.*: \(.*\)/\1/p")
+  local branch=$(make version | grep "Current branch:" | sed -n "s/.*: \(.*\)/\1/p")
+
+  sed -i "s/var VERSION.*/var VERSION = \"$version\"/" common/version.go
+  sed -i "s/var REVISION.*/var REVISION = \"$revision\"/" common/version.go
+  sed -i "s/var BRANCH.*/var BRANCH = \"$branch\"/" common/version.go
+
+  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() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
+
+  cd gitlab-runner
+  go build -o gitlab-runner .
+}
+
+package() {
+  cd 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 gitlab-runner "${pkgdir}/usr/bin/gitlab-runner"
+}

Deleted: config.toml
===================================================================
--- config.toml	2021-03-26 23:10:37 UTC (rev 904880)
+++ config.toml	2021-03-26 23:10:45 UTC (rev 904881)
@@ -1 +0,0 @@
-concurrent = 1

Copied: gitlab-runner/repos/community-x86_64/config.toml (from rev 904880, gitlab-runner/trunk/config.toml)
===================================================================
--- config.toml	                        (rev 0)
+++ config.toml	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1 @@
+concurrent = 1

Deleted: gitlab-runner.install
===================================================================
--- gitlab-runner.install	2021-03-26 23:10:37 UTC (rev 904880)
+++ gitlab-runner.install	2021-03-26 23:10:45 UTC (rev 904881)
@@ -1,6 +0,0 @@
-post_install() {
-  echo "Register the runner as root using"
-  echo "# gitlab-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 904880, gitlab-runner/trunk/gitlab-runner.install)
===================================================================
--- gitlab-runner.install	                        (rev 0)
+++ gitlab-runner.install	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1,6 @@
+post_install() {
+  echo "Register the runner as root using"
+  echo "# gitlab-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	2021-03-26 23:10:37 UTC (rev 904880)
+++ gitlab-runner.service	2021-03-26 23:10:45 UTC (rev 904881)
@@ -1,15 +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
-SyslogIdentifier=gitlab-runner
-
-[Install]
-WantedBy=multi-user.target

Copied: gitlab-runner/repos/community-x86_64/gitlab-runner.service (from rev 904880, gitlab-runner/trunk/gitlab-runner.service)
===================================================================
--- gitlab-runner.service	                        (rev 0)
+++ gitlab-runner.service	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1,15 @@
+[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
+SyslogIdentifier=gitlab-runner
+
+[Install]
+WantedBy=multi-user.target

Deleted: gitlab-runner.sysusers
===================================================================
--- gitlab-runner.sysusers	2021-03-26 23:10:37 UTC (rev 904880)
+++ gitlab-runner.sysusers	2021-03-26 23:10:45 UTC (rev 904881)
@@ -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 904880, gitlab-runner/trunk/gitlab-runner.sysusers)
===================================================================
--- gitlab-runner.sysusers	                        (rev 0)
+++ gitlab-runner.sysusers	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1 @@
+u gitlab-runner   107      "GitLab Runner" /var/lib/gitlab-runner

Deleted: gitlab-runner.tmpfiles
===================================================================
--- gitlab-runner.tmpfiles	2021-03-26 23:10:37 UTC (rev 904880)
+++ gitlab-runner.tmpfiles	2021-03-26 23:10:45 UTC (rev 904881)
@@ -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 904880, gitlab-runner/trunk/gitlab-runner.tmpfiles)
===================================================================
--- gitlab-runner.tmpfiles	                        (rev 0)
+++ gitlab-runner.tmpfiles	2021-03-26 23:10:45 UTC (rev 904881)
@@ -0,0 +1 @@
+d /var/lib/gitlab-runner 0700 gitlab-runner gitlab-runner -



More information about the arch-commits mailing list