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

Felix Yan felixonmars at gemini.archlinux.org
Thu Apr 14 22:16:03 UTC 2022


    Date: Thursday, April 14, 2022 @ 22:16:03
  Author: felixonmars
Revision: 1186331

archrelease: copy trunk to community-staging-x86_64

Added:
  tarantool/repos/community-staging-x86_64/
  tarantool/repos/community-staging-x86_64/PKGBUILD
    (from rev 1186330, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-staging-x86_64/tarantool.sysusers
    (from rev 1186330, tarantool/trunk/tarantool.sysusers)

--------------------+
 PKGBUILD           |   95 +++++++++++++++++++++++++++++++++++++++++++++++++++
 tarantool.sysusers |    2 +
 2 files changed, 97 insertions(+)

Copied: tarantool/repos/community-staging-x86_64/PKGBUILD (from rev 1186330, tarantool/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2022-04-14 22:16:03 UTC (rev 1186331)
@@ -0,0 +1,95 @@
+# Maintainer: Anatol Pomozov <anatol.pomozov at gmail.com>
+
+pkgname=tarantool
+pkgver=2.9.0
+pkgrel=4
+pkgdesc='Lua application server integrated with a database management system'
+arch=(x86_64)
+url='https://www.tarantool.org'
+license=(BSD)
+depends=(readline ncurses zlib libyaml openssl libunwind icu)
+makedepends=(git cmake systemd)
+checkdepends=(python-gevent python-tarantool)
+source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
+        git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
+        git+https://github.com/tarantool/libyaml.git
+        git+https://github.com/tarantool/msgpuck.git
+        git+https://github.com/rtsisyk/luafun.git
+        git+https://github.com/tarantool/test-run.git
+        git+https://github.com/tarantool/small.git
+        git+https://github.com/tarantool/zstd.git
+        git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
+        git+https://github.com/tarantool/decNumber.git
+        git+https://github.com/tarantool/curl.git
+        git+https://github.com/tarantool/c-ares.git
+        tarantool.sysusers)
+sha256sums=('SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            'SKIP'
+            '2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
+
+prepare() {
+  cd tarantool
+
+  git submodule init
+  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
+  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
+  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
+  git config -f .gitmodules 'submodule.third_party/libyaml.url' "$srcdir/libyaml"
+  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
+  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
+  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
+  git config -f .gitmodules 'submodule.third_party/luarocks.url' "$srcdir/luarocks"
+  git config -f .gitmodules 'submodule.third_party/decNumber.url' "$srcdir/decNumber"
+  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
+  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
+
+  git submodule sync
+  git submodule update
+  git cherry-pick -n badf030ecb4633647a423de73e26acffd8619c1e # core: add x* memory allocation functions
+  git cherry-pick -n 8662fb740d5d4b246d2dc178a285eea0abb804ef # Move xmalloc to trivia/util.h
+  git cherry-pick -n bba7a2fadd2203ef8c837331ae0bd1dc4040b8bc # build: fix build with glibc-2.34
+}
+
+build() {
+  cd tarantool
+
+  # tarantool uses git submodule, handle this
+  cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_BINDIR=/usr/bin \
+    -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+    -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+    -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DENABLE_BACKTRACE:BOOL=ON \
+    -DWITH_SYSTEMD:BOOL=ON \
+    -DENABLE_DIST:BOOL=ON \
+    -DENABLE_LTO:BOOL=ON \
+    .
+  make
+}
+
+check() {
+  cd "$srcdir/tarantool/test"
+  python test-run.py --suite box
+}
+
+package() {
+  cd tarantool
+  make install DESTDIR="$pkgdir"
+
+  sed 's|/var/run/|/run/|' -i "$pkgdir"/usr/lib/tmpfiles.d/tarantool.conf # https://github.com/tarantool/tarantool/issues/5227
+
+  install -D -m644 "$srcdir"/tarantool.sysusers "$pkgdir/usr/lib/sysusers.d/tarantool.conf"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: tarantool/repos/community-staging-x86_64/tarantool.sysusers (from rev 1186330, tarantool/trunk/tarantool.sysusers)
===================================================================
--- community-staging-x86_64/tarantool.sysusers	                        (rev 0)
+++ community-staging-x86_64/tarantool.sysusers	2022-04-14 22:16:03 UTC (rev 1186331)
@@ -0,0 +1,2 @@
+g tarantool
+u tarantool - "Tarantool Server" /var/lib/tarantool



More information about the arch-commits mailing list