[arch-commits] Commit in gitlab-gitaly/repos (3 files)
Anatol Pomozov
anatolik at archlinux.org
Fri Dec 27 20:21:10 UTC 2019
Date: Friday, December 27, 2019 @ 20:21:08
Author: anatolik
Revision: 543286
archrelease: copy trunk to community-testing-x86_64
Added:
gitlab-gitaly/repos/community-testing-x86_64/
gitlab-gitaly/repos/community-testing-x86_64/PKGBUILD
(from rev 543285, gitlab-gitaly/trunk/PKGBUILD)
gitlab-gitaly/repos/community-testing-x86_64/gitlab-gitaly.service
(from rev 543285, gitlab-gitaly/trunk/gitlab-gitaly.service)
-----------------------+
PKGBUILD | 60 ++++++++++++++++++++++++++++++++++++++++++++++++
gitlab-gitaly.service | 25 ++++++++++++++++++++
2 files changed, 85 insertions(+)
Copied: gitlab-gitaly/repos/community-testing-x86_64/PKGBUILD (from rev 543285, gitlab-gitaly/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2019-12-27 20:21:08 UTC (rev 543286)
@@ -0,0 +1,60 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=1.78.0
+pkgrel=1
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly"
+license=('MIT')
+depends=(glibc ruby libxml2 libxslt libssh2)
+options=(!buildflags)
+makedepends=(go ruby-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver}"
+ "gitlab-gitaly.service")
+sha512sums=('2b984a43f10f7189c5188b58a686bf3b60f7001582efaba69f4e9153cbf5562eb282f242b0dbd6e395bbf0e528d08786b308147e1c67b10616fdbbbc3ebd0df3'
+ 'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
+
+_homedir="/var/lib/gitlab"
+
+prepare() {
+ cd "gitaly-"*
+
+ sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = \"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
+ sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = \"/usr/share/webapps/gitlab-shell\"|" config.toml.example
+ sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" config.toml.example
+
+ # https://github.com/bundler/bundler/issues/6882
+ sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
+}
+
+build() {
+ cd "gitaly-"*
+
+ bundle config force_ruby_platform true # build from sources as some prebuilt gems are not available for newer ruby
+ make BUILD_TAGS="tracer_static tracer_static_jaeger"
+}
+
+package() {
+ cd "gitaly-"*
+
+ make PREFIX=/usr DESTDIR=${pkgdir} install
+ mkdir -p "${pkgdir}/etc/${pkgname}"
+ sed \
+ -e "s|^socket_path =.*|socket_path = \"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
+ -e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
+ config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
+
+ mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
+ cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
+
+ install -Dm644 config.toml.example "${pkgdir}/usr/share/${pkgname}/config.toml.example"
+ install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ install -Dm0644 "${srcdir}/gitlab-gitaly.service" "${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
+}
+
+# vim:set ts=2 sw=2 et:
Copied: gitlab-gitaly/repos/community-testing-x86_64/gitlab-gitaly.service (from rev 543285, gitlab-gitaly/trunk/gitlab-gitaly.service)
===================================================================
--- community-testing-x86_64/gitlab-gitaly.service (rev 0)
+++ community-testing-x86_64/gitlab-gitaly.service 2019-12-27 20:21:08 UTC (rev 543286)
@@ -0,0 +1,25 @@
+#####################################################
+#
+# GitLab version : 9.x
+# Contributors : axil
+# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
+#
+####################################################
+
+[Unit]
+Description=Gitaly is a Git RPC service for handling all the git calls made by GitLab.
+Requires=gitlab-unicorn.service
+Wants=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+Type=simple
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-gitaly
+PIDFile=/run/gitlab/gitaly.pid
+ExecStart=/usr/bin/gitaly /etc/gitlab-gitaly/config.toml
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list