[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-12-03 Thread Anatol Pomozov via arch-commits
Date: Thursday, December 3, 2020 @ 16:53:35
  Author: anatolik
Revision: 769711

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 769710, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 769710, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
769710, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-12-03 16:53:35 UTC (rev 769711)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.57.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('2220e933543f1f5ce21276bc5729a6ec623d4218543029d9aafc169c59793b930efc24261e851240221e51c4767c4fdc2068efae2a585a79ded0fb6eda22edd2'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 769710, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-12-03 16:53:35 UTC 
(rev 769711)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-11-20 Thread Anatol Pomozov via arch-commits
Date: Friday, November 20, 2020 @ 19:01:49
  Author: anatolik
Revision: 758032

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 758031, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 758031, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
758031, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-20 19:01:49 UTC (rev 758032)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.55.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('3d8af1eaeaaafb431ce7ea0a8bc9feb99a79ddbb6b55b06356030debc157e72a3e7ea4289d0943edd1998e5dfd8a0120b5d5efd69b9279d27c4e41fadafa3581'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 758031, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-11-20 19:01:49 UTC 
(rev 758032)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-10-26 Thread Anatol Pomozov via arch-commits
Date: Monday, October 26, 2020 @ 18:54:45
  Author: anatolik
Revision: 734024

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 734023, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 734023, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
734023, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-26 18:54:45 UTC (rev 734024)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.52.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('763fa7578d08ccba31673f29489ac8e65c1b3e3c523d35561404cd9ede75714d91c17d14a4b17200acb8fd866421baf021616288da967b4be43572d12c8b77f4'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 734023, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-10-26 18:54:45 UTC 
(rev 734024)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-08-31 Thread Anatol Pomozov via arch-commits
Date: Monday, August 31, 2020 @ 16:37:43
  Author: anatolik
Revision: 694286

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 694285, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 694285, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
694285, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-31 16:37:43 UTC (rev 694286)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.43.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('b42f497d7f9c2ad27b179bb57a4d92f5332c592487cb50757db15e3076ca9dfd787f6601d28fb7619a07a1ad1408e8c01298f9c95148a9b048ac5e90ec93648e'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 694285, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-08-31 16:37:43 UTC 
(rev 694286)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-08-25 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 25, 2020 @ 16:49:34
  Author: anatolik
Revision: 688498

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 688496, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 688496, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
688496, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-25 16:49:34 UTC (rev 688498)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.42.1
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('15f962d368e32ce72478298563356887b274da3b309cc4b350b303bd9c9461c7d03daa648524749a2fbefffabe0c19a322be46eb81d1e2db0d239236fa01c6e6'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 688496, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-08-25 16:49:34 UTC 
(rev 688498)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-07-21 Thread Anatol Pomozov via arch-commits
Date: Tuesday, July 21, 2020 @ 18:08:46
  Author: anatolik
Revision: 664765

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 664764, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 664764, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
664764, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-07-21 18:08:46 UTC (rev 664765)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.37.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('789e4a573da41aa8b75233a9b389e8cef613a35751134906f94b906cdfd4249c086b983878edfb39d42e3c61653ce82107e17db89040fffc9b7072f08c9c8d59'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 664764, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-07-21 18:08:46 UTC 
(rev 664765)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-06-21 Thread Anatol Pomozov via arch-commits
Date: Sunday, June 21, 2020 @ 18:57:47
  Author: anatolik
Revision: 650256

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 650255, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 650255, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   38 ++
 gitlab-workhorse.service |   22 ++
 2 files changed, 60 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
650255, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-06-21 18:57:47 UTC (rev 650256)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.36.0
+pkgrel=1
+pkgdesc="A smart reverse proxy for GitLab that handles large HTTP requests 
such as file downloads, file uploads, git push/pull and git archive downloads"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('985d79d2a41c04d26388f7375bd9ab373b8dfd4945ef5d1d0acecf73ec8adf047c61aef71204fb81450028578d574f75deb1921c88e005f0ac9d475d78623b32'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 650255, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-06-21 18:57:47 UTC 
(rev 650256)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-05-30 Thread Anatol Pomozov via arch-commits
Date: Saturday, May 30, 2020 @ 19:35:43
  Author: anatolik
Revision: 637497

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 637496, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 637496, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   40 
 gitlab-workhorse.service |   22 ++
 2 files changed, 62 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
637496, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-30 19:35:43 UTC (rev 637497)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.33.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('089502662937d4fe10639abe802d97008691f4db07fa1987bb9acc225e470411e3426d7a5f59ecd57043d1d20085f3fbfc0128a44dee8c24953c6e7aaa33c0a6'
+
'893527f270179fc78ff60e33f0b44abd984d1e9859dd5bf59fea77245ddd4c1c252d2c7882719366944d0f9341a90b5e077470b15afcc3df419b0d0a9f2e6d56')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 637496, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-05-30 19:35:43 UTC 
(rev 637497)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix 
-listenAddr /run/gitlab/gitlab-workhorse.socket -authBackend 
http://localhost:8080 -authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-05-27 Thread Anatol Pomozov via arch-commits
Date: Wednesday, May 27, 2020 @ 19:27:07
  Author: anatolik
Revision: 636012

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 636009, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 636009, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   40 
 gitlab-workhorse.service |   22 ++
 2 files changed, 62 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
636009, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-27 19:27:07 UTC (rev 636012)
@@ -0,0 +1,40 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.32.1
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('894f704e0b5ea2cb2b896db3e79600b880e7029a473b8db580c6c2fa10b641561334d72a722ef260d783674c5a4445bd615542f4a4a08e8e72711d2b3419ce63'
+
'5cec3ac883759ebb0e0c1e6074610b9cdc0d79370b1228acb3a96081a6d843c5a8bfbeb912ce1599058ee3842577c09d147ebf04ce7a760032ef485c4ba8f87a')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 636009, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-05-27 19:27:07 UTC 
(rev 636012)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-puma.service
+After=gitlab-puma.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /run/gitlab/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-05-22 Thread Anatol Pomozov via arch-commits
Date: Saturday, May 23, 2020 @ 03:32:07
  Author: anatolik
Revision: 631827

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 631826, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 631826, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
631826, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-23 03:32:07 UTC (rev 631827)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.32.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('aa3e6a93beb1060dcabd6dd6b5fa7ad43446be5e1cf26fd281404a2d3a0bec5a63260ea01a97fead871d12a5d9e5ab99c43eed08df7230c7aa73efd800df7e96'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 631826, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-05-23 03:32:07 UTC 
(rev 631827)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-04-24 Thread Anatol Pomozov via arch-commits
Date: Friday, April 24, 2020 @ 18:23:39
  Author: anatolik
Revision: 619469

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 619468, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 619468, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
619468, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-24 18:23:39 UTC (rev 619469)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.30.1
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('3d75f6144f56584ce68dbe3fa602c4db1d42eabbc7608438ca5ea18679b8c4e7006fc8bc8a7336f3e9dd0ba915428ab18582ef6e542d697387a52a432810e2dd'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 619468, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-04-24 18:23:39 UTC 
(rev 619469)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-04-16 Thread Anatol Pomozov via arch-commits
Date: Friday, April 17, 2020 @ 01:50:16
  Author: anatolik
Revision: 615395

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 615394, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 615394, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
615394, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-04-17 01:50:16 UTC (rev 615395)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.30.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('b2e82b9622c5b5df023b03e8a80228eafc8daa1890f1b8119fc8b713a59f6983e6a0d26dea6689efb8f64a80f21bb54cf2c21e4be3db5a7ad4e1b3dfa37d9746'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 615394, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-04-17 01:50:16 UTC 
(rev 615395)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-03-26 Thread Anatol Pomozov via arch-commits
Date: Thursday, March 26, 2020 @ 21:18:01
  Author: anatolik
Revision: 604713

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 604712, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 604712, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
604712, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-26 21:18:01 UTC (rev 604713)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.28.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('7ef783e612226455d3b20b6c51f89ae502813e50c64de986ca15a82600bde940cc381d12ccdfe34cbc486a1d13bf9acf8812de0ef3dfc75ccd0054b429a7ed99'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 604712, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-03-26 21:18:01 UTC 
(rev 604713)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-03-21 Thread Anatol Pomozov via arch-commits
Date: Saturday, March 21, 2020 @ 16:19:46
  Author: anatolik
Revision: 602801

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 602800, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 602800, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
602800, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-21 16:19:46 UTC (rev 602801)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.27.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('dbc62b869e6d8ebce1dfa9a56887cbbb7b6c279e54e4832f94b0b35327e0ca87f60006c009054da43febb07787b52cb2ce62fef9ea3340c2dc6867d54bc9e40b'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 602800, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-03-21 16:19:46 UTC 
(rev 602801)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:32:00
  Author: anatolik
Revision: 591048

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 591047, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 591047, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
591047, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 19:32:00 UTC (rev 591048)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.24.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('3054c85fade0203ef39144b9123739228ade7bcc659808a33b7bc10a7a75afec8b4f7615244d5c9b829a80abe435b221b9624f5e9d32f57ec611696b44080f2c'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 591047, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-03-06 19:32:00 UTC 
(rev 591048)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-02-01 Thread Anatol Pomozov via arch-commits
Date: Saturday, February 1, 2020 @ 19:37:18
  Author: anatolik
Revision: 561137

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 561134, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 561134, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
561134, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-02-01 19:37:18 UTC (rev 561137)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.20.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('149bd7b3bc7086929bfdf845336b55e4484675b5badbea98e71309955d5baa10e333c813915c5386b4483c463f7a9d3fabd53ccfe52f4a0582e9f4e53da6a166'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 561134, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-02-01 19:37:18 UTC 
(rev 561137)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2020-01-10 Thread Anatol Pomozov via arch-commits
Date: Friday, January 10, 2020 @ 23:14:39
  Author: anatolik
Revision: 551826

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 551825, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 551825, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
551825, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-01-10 23:14:39 UTC (rev 551826)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.19.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('d306f451c999850aa8199869555d880f9f28aadd3569d83f72e10568d4788bd9688442834c1c2f093de8802f0edafa1c4a899214929d2b3bba53475ea194'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 551825, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-01-10 23:14:39 UTC 
(rev 551826)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in gitlab-workhorse/repos (3 files)

2019-12-27 Thread Anatol Pomozov via arch-commits
Date: Friday, December 27, 2019 @ 20:12:10
  Author: anatolik
Revision: 543282

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 543281, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 543281, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
543281, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-12-27 20:12:10 UTC (rev 543282)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.18.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse;
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver};
+"gitlab-workhorse.service")
+sha512sums=('2b70f5053711a279ef63c69e117d3038c553dc07aab0964c12e5bfd3a2e57de6e4ae18f00cbbd92899b3e45f53eeccc9c1c1ee7461da876e26d5b7b8a89da8ee'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 543281, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2019-12-27 20:12:10 UTC 
(rev 543282)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target