[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-12-19 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 19, 2020 @ 10:49:14
  Author: foutrelis
Revision: 779941

upgpkg: tarantool 2.7.0-2: icu 68.2 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 10:46:14 UTC (rev 779940)
+++ PKGBUILD2020-12-19 10:49:14 UTC (rev 779941)
@@ -2,7 +2,7 @@
 
 pkgname=tarantool
 pkgver=2.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-11-03 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 3, 2020 @ 18:41:15
  Author: anatolik
Revision: 741220

upgpkg: tarantool 2.7.0-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-03 18:41:10 UTC (rev 741219)
+++ PKGBUILD2020-11-03 18:41:15 UTC (rev 741220)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-08-28 Thread Frederik Schwan via arch-commits
Date: Friday, August 28, 2020 @ 13:08:22
  Author: freswa
Revision: 690840

fix unquoted variables

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-28 13:07:44 UTC (rev 690839)
+++ PKGBUILD2020-08-28 13:08:22 UTC (rev 690840)
@@ -89,6 +89,6 @@
 
   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 "$srcdir"/tarantool.sysusers 
"$pkgdir/usr/lib/sysusers.d/tarantool.conf"
   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-08-18 Thread Anatol Pomozov via arch-commits
Date: Tuesday, August 18, 2020 @ 17:01:50
  Author: anatolik
Revision: 684816

Fix systemd warning at install time

  /usr/lib/tmpfiles.d/tarantool.conf:1: Line references path below legacy 
directory /var/run/, updating /var/run/tarantool {U+2192} /run/tarantool; 
please update the tmpfiles.d/ drop-in file accordingly.

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 ++
 1 file changed, 2 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-18 16:48:48 UTC (rev 684815)
+++ PKGBUILD2020-08-18 17:01:50 UTC (rev 684816)
@@ -87,6 +87,8 @@
   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"
 }


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-08-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 6, 2020 @ 23:00:39
  Author: anatolik
Revision: 671264

Cmake build type is RelWithDebInfo

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-06 22:41:11 UTC (rev 671263)
+++ PKGBUILD2020-08-06 23:00:39 UTC (rev 671264)
@@ -69,7 +69,7 @@
 -DCMAKE_INSTALL_BINDIR=/usr/bin \
 -DCMAKE_INSTALL_SYSCONFDIR=/etc \
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=ReleaseWithDebInfo \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
 -DCMAKE_SKIP_RPATH=ON \
 -DENABLE_BACKTRACE:BOOL=ON \
 -DWITH_SYSTEMD:BOOL=ON \


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-08-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 6, 2020 @ 22:41:11
  Author: anatolik
Revision: 671263

Apply upstream suggestions

>From https://github.com/tarantool/tarantool/issues/5221
  - use bundled curl
  - use ReleaseWithDebInfo compile configuration

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-06 21:22:57 UTC (rev 671262)
+++ PKGBUILD2020-08-06 22:41:11 UTC (rev 671263)
@@ -7,7 +7,7 @@
 arch=(x86_64)
 url='https://www.tarantool.org'
 license=(BSD)
-depends=(readline ncurses zlib libyaml openssl libunwind curl icu)
+depends=(readline ncurses zlib libyaml openssl libunwind icu)
 makedepends=(git cmake systemd)
 checkdepends=(python2-gevent python2-tarantool)
 source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
@@ -69,7 +69,7 @@
 -DCMAKE_INSTALL_BINDIR=/usr/bin \
 -DCMAKE_INSTALL_SYSCONFDIR=/etc \
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_BUILD_TYPE=ReleaseWithDebInfo \
 -DCMAKE_SKIP_RPATH=ON \
 -DENABLE_BACKTRACE:BOOL=ON \
 -DWITH_SYSTEMD:BOOL=ON \


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-08-06 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 6, 2020 @ 21:13:08
  Author: anatolik
Revision: 671259

upgpkg: tarantool 2.6.0-1

Use bundled yaml https://github.com/tarantool/tarantool/issues/5221

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-06 20:47:04 UTC (rev 671258)
+++ PKGBUILD2020-08-06 21:13:08 UTC (rev 671259)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.5.0
+pkgver=2.6.0
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -58,7 +58,6 @@
 
   git submodule sync
   git submodule update
-  #sed -i -e 's/coros/lock/g' test-run/lib/connpool.py
 }
 
 build() {
@@ -72,7 +71,6 @@
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=ON \
--DENABLE_BUNDLED_LIBYAML:BOOL=OFF \
 -DENABLE_BACKTRACE:BOOL=ON \
 -DWITH_SYSTEMD:BOOL=ON \
 -DENABLE_DIST:BOOL=ON \


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-05-19 Thread Anatol Pomozov via arch-commits
Date: Tuesday, May 19, 2020 @ 19:00:29
  Author: anatolik
Revision: 630061

upgpkg: tarantool 2.5.0-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 19:00:05 UTC (rev 630060)
+++ PKGBUILD2020-05-19 19:00:29 UTC (rev 630061)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.4.0
-pkgrel=2
+pkgver=2.5.0
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'
@@ -22,6 +22,7 @@
 git+https://github.com/tarantool/decNumber.git
 git+https://github.com/tarantool/serpent.git
 git+https://github.com/tarantool/curl.git
+git+https://github.com/tarantool/c-ares.git
 tarantool.sysusers)
 sha256sums=('SKIP'
 'SKIP'
@@ -35,6 +36,7 @@
 'SKIP'
 'SKIP'
 'SKIP'
+'SKIP'
 '2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
 
 prepare() {
@@ -52,6 +54,7 @@
   git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
   git config -f .gitmodules 'submodule.third_party/serpent.url' 
"$srcdir/serpent"
   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


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-04-27 Thread Evangelos Foutras via arch-commits
Date: Monday, April 27, 2020 @ 17:35:34
  Author: foutrelis
Revision: 621914

icu 67.1 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-27 17:32:24 UTC (rev 621913)
+++ PKGBUILD2020-04-27 17:35:34 UTC (rev 621914)
@@ -2,7 +2,7 @@
 
 pkgname=tarantool
 pkgver=2.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-02-23 Thread Anatol Pomozov via arch-commits
Date: Monday, February 24, 2020 @ 05:20:45
  Author: anatolik
Revision: 580152

FS#65592 remove unneeded check dependency

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-24 03:27:25 UTC (rev 580151)
+++ PKGBUILD2020-02-24 05:20:45 UTC (rev 580152)
@@ -9,7 +9,7 @@
 license=(BSD)
 depends=(readline ncurses zlib libyaml openssl libunwind curl icu)
 makedepends=(git cmake systemd)
-checkdepends=(python2-daemon python2-gevent python2-tarantool)
+checkdepends=(python2-gevent python2-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
@@ -79,7 +79,7 @@
 
 check() {
   cd tarantool/test
-  ./test-run.py --suite box || true
+  ./test-run.py --suite box
 }
 
 package() {


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2020-02-10 Thread Anatol Pomozov via arch-commits
Date: Monday, February 10, 2020 @ 18:21:22
  Author: anatolik
Revision: 566178

upgpkg: tarantool 2.4.0-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-10 18:11:06 UTC (rev 566177)
+++ PKGBUILD2020-02-10 18:21:22 UTC (rev 566178)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.3.0
+pkgver=2.4.0
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -21,21 +21,21 @@
 
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/serpent.git
-git+https://github.com/curl/curl.git
+git+https://github.com/tarantool/curl.git
 tarantool.sysusers)
-sha1sums=('SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  'SKIP'
-  '9021b3d50e45f719f0304ab529627cac69a7a149')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
 
 prepare() {
   cd tarantool


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-11-28 Thread Anatol Pomozov via arch-commits
Date: Friday, November 29, 2019 @ 06:14:14
  Author: anatolik
Revision: 534307

upgpkg: tarantool 2.3.0-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-29 06:03:32 UTC (rev 534306)
+++ PKGBUILD2019-11-29 06:14:14 UTC (rev 534307)
@@ -1,9 +1,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=5fcca9ddde2101ec521d0b892b65a83b0ef28952
-pkgver=2.2.1.r19
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'
@@ -11,7 +10,7 @@
 depends=(readline ncurses zlib libyaml openssl libunwind curl icu)
 makedepends=(git cmake systemd)
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
-source=(git+https://github.com/tarantool/tarantool.git#commit=$_commit
+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
@@ -38,11 +37,6 @@
   'SKIP'
   '9021b3d50e45f719f0304ab529627cac69a7a149')
 
-pkgver() {
-  cd tarantool
-  git describe | sed 's/^v//; s/-/.r/; s/-.*//'
-}
-
 prepare() {
   cd tarantool
 


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-11-11 Thread Felix Yan via arch-commits
Date: Tuesday, November 12, 2019 @ 02:18:08
  Author: felixonmars
Revision: 526919

icu 65.1 / poppler 0.82.0 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-12 02:13:31 UTC (rev 526918)
+++ PKGBUILD2019-11-12 02:18:08 UTC (rev 526919)
@@ -3,7 +3,7 @@
 pkgname=tarantool
 _commit=5fcca9ddde2101ec521d0b892b65a83b0ef28952
 pkgver=2.2.1.r19
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-08-22 Thread Anatol Pomozov via arch-commits
Date: Thursday, August 22, 2019 @ 06:01:45
  Author: anatolik
Revision: 500480

upgpkg: tarantool 2.2.1.r19-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-22 05:55:36 UTC (rev 500479)
+++ PKGBUILD2019-08-22 06:01:45 UTC (rev 500480)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=42f8a09fcdc3b6a2b36001b4434f576deec1
-pkgver=2.1.2.r6
+_commit=5fcca9ddde2101ec521d0b892b65a83b0ef28952
+pkgver=2.2.1.r19
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -19,7 +19,10 @@
 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=tarantool-1.7
+
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/serpent.git
+git+https://github.com/curl/curl.git
 tarantool.sysusers)
 sha1sums=('SKIP'
   'SKIP'
@@ -30,6 +33,9 @@
   'SKIP'
   'SKIP'
   'SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
   '9021b3d50e45f719f0304ab529627cac69a7a149')
 
 pkgver() {
@@ -49,6 +55,9 @@
   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/serpent.url' 
"$srcdir/serpent"
+  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
 
   git submodule sync
   git submodule update


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-04-07 Thread Anatol Pomozov via arch-commits
Date: Sunday, April 7, 2019 @ 16:29:31
  Author: anatolik
Revision: 450314

upgpkg: tarantool 2.1.2.r6-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-07 15:29:20 UTC (rev 450313)
+++ PKGBUILD2019-04-07 16:29:31 UTC (rev 450314)
@@ -1,9 +1,9 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=dbbd93171374323cef95e2bcde9767bca77143b2
-pkgver=2.1.1.r193
-pkgrel=2
+_commit=42f8a09fcdc3b6a2b36001b4434f576deec1
+pkgver=2.1.2.r6
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-04-05 Thread Evangelos Foutras via arch-commits
Date: Friday, April 5, 2019 @ 14:54:38
  Author: foutrelis
Revision: 449839

icu 64.1 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-05 14:53:00 UTC (rev 449838)
+++ PKGBUILD2019-04-05 14:54:38 UTC (rev 449839)
@@ -3,7 +3,7 @@
 pkgname=tarantool
 _commit=dbbd93171374323cef95e2bcde9767bca77143b2
 pkgver=2.1.1.r193
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD libcurl-7.62.patch)

2019-01-26 Thread Anatol Pomozov via arch-commits
Date: Saturday, January 26, 2019 @ 20:21:26
  Author: anatolik
Revision: 428189

upgpkg: tarantool 2.1.1.r193-1

Modified:
  tarantool/trunk/PKGBUILD
Deleted:
  tarantool/trunk/libcurl-7.62.patch

+
 PKGBUILD   |   14 +-
 libcurl-7.62.patch |   46 --
 2 files changed, 5 insertions(+), 55 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-26 20:19:45 UTC (rev 428188)
+++ PKGBUILD2019-01-26 20:21:26 UTC (rev 428189)
@@ -1,9 +1,9 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=9a543202c93ef903b07b293463650d78002ae866
-pkgver=2.0.4.r497
-pkgrel=4
+_commit=dbbd93171374323cef95e2bcde9767bca77143b2
+pkgver=2.1.1.r193
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'
@@ -20,7 +20,6 @@
 git+https://github.com/tarantool/small.git
 git+https://github.com/tarantool/zstd.git
 git+https://github.com/tarantool/luarocks.git#branch=tarantool-1.7
-libcurl-7.62.patch
 tarantool.sysusers)
 sha1sums=('SKIP'
   'SKIP'
@@ -31,7 +30,6 @@
   'SKIP'
   'SKIP'
   'SKIP'
-  '8308459e0d3832cbdf37b8aa678fde37ed627fce'
   '9021b3d50e45f719f0304ab529627cac69a7a149')
 
 pkgver() {
@@ -42,9 +40,6 @@
 prepare() {
   cd tarantool
 
-  # https://github.com/tarantool/tarantool/commit/02da15f710
-  patch -Np1 -i ../libcurl-7.62.patch
-
   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"
@@ -74,7 +69,8 @@
 -DENABLE_BUNDLED_LIBYAML:BOOL=OFF \
 -DENABLE_BACKTRACE:BOOL=ON \
 -DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON
+-DENABLE_DIST:BOOL=ON \
+.
   make
 }
 

Deleted: libcurl-7.62.patch
===
--- libcurl-7.62.patch  2019-01-26 20:19:45 UTC (rev 428188)
+++ libcurl-7.62.patch  2019-01-26 20:21:26 UTC (rev 428189)
@@ -1,46 +0,0 @@
-From 02da15f7109b8bb7921eb97a751607b9dd2885b2 Mon Sep 17 00:00:00 2001
-From: Vladimir Davydov 
-Date: Thu, 1 Nov 2018 13:35:24 +0300
-Subject: [PATCH] httpc: fix compilation with libcurl >= 7.62.0
-
-Starting from libcurl 7.62.0, CURL_SSL_CACERT is defined as a macro
-alias to CURLE_PEER_FAILED_VERIFICATION, see
-
-  https://github.com/curl/curl/commit/3f3b26d6feb0667714902e836af608094235fca2
-
-This breaks compilation:
-
-  httpc.c:337:7: error: duplicate case value 'CURLE_PEER_FAILED_VERIFICATION'
-  case CURLE_PEER_FAILED_VERIFICATION:
-   ^
-  httpc.c:336:7: note: previous case defined here
-  case CURLE_SSL_CACERT:
-   ^
-  curl.h:589:26: note: expanded from macro 'CURLE_SSL_CACERT'
-  #define CURLE_SSL_CACERT CURLE_PEER_FAILED_VERIFICATION
-   ^
-
-Fix this by using CURLE_SSL_CACERT only if libcurl version is less
-than 7.62.0.
-
-Note, we can't use CURL_AT_LEAST_VERSION to check libcurl version,
-because it isn't available in libcurl shipped with CentOS 6.

- src/httpc.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/httpc.c b/src/httpc.c
-index 4d48a313d8..950f8b32f6 100644
 a/src/httpc.c
-+++ b/src/httpc.c
-@@ -333,7 +333,9 @@ httpc_execute(struct httpc_request *req, double timeout)
-   ++env->stat.http_other_responses;
-   }
-   break;
--  case CURLE_SSL_CACERT:
-+#if LIBCURL_VERSION_NUM < 0x073e00
-+  case CURLE_SSL_CACERT: /* deprecated in libcurl 7.62.0 */
-+#endif
-   case CURLE_PEER_FAILED_VERIFICATION:
-   /* 495 SSL Certificate Error (nginx non-standard) */
-   req->status = 495;


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2019-01-11 Thread Felix Yan via arch-commits
Date: Friday, January 11, 2019 @ 09:48:53
  Author: felixonmars
Revision: 422380

Readline 8.0 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 09:47:22 UTC (rev 422379)
+++ PKGBUILD2019-01-11 09:48:53 UTC (rev 422380)
@@ -3,7 +3,7 @@
 pkgname=tarantool
 _commit=9a543202c93ef903b07b293463650d78002ae866
 pkgver=2.0.4.r497
-pkgrel=3
+pkgrel=4
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD libcurl-7.62.patch)

2019-01-11 Thread Evangelos Foutras via arch-commits
Date: Friday, January 11, 2019 @ 09:47:22
  Author: foutrelis
Revision: 422379

Fix build with curl >= 7.62

Added:
  tarantool/trunk/libcurl-7.62.patch
Modified:
  tarantool/trunk/PKGBUILD

+
 PKGBUILD   |6 ++
 libcurl-7.62.patch |   46 ++
 2 files changed, 52 insertions(+)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-11 09:41:32 UTC (rev 422378)
+++ PKGBUILD2019-01-11 09:47:22 UTC (rev 422379)
@@ -20,6 +20,7 @@
 git+https://github.com/tarantool/small.git
 git+https://github.com/tarantool/zstd.git
 git+https://github.com/tarantool/luarocks.git#branch=tarantool-1.7
+libcurl-7.62.patch
 tarantool.sysusers)
 sha1sums=('SKIP'
   'SKIP'
@@ -30,6 +31,7 @@
   'SKIP'
   'SKIP'
   'SKIP'
+  '8308459e0d3832cbdf37b8aa678fde37ed627fce'
   '9021b3d50e45f719f0304ab529627cac69a7a149')
 
 pkgver() {
@@ -39,6 +41,10 @@
 
 prepare() {
   cd tarantool
+
+  # https://github.com/tarantool/tarantool/commit/02da15f710
+  patch -Np1 -i ../libcurl-7.62.patch
+
   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"

Added: libcurl-7.62.patch
===
--- libcurl-7.62.patch  (rev 0)
+++ libcurl-7.62.patch  2019-01-11 09:47:22 UTC (rev 422379)
@@ -0,0 +1,46 @@
+From 02da15f7109b8bb7921eb97a751607b9dd2885b2 Mon Sep 17 00:00:00 2001
+From: Vladimir Davydov 
+Date: Thu, 1 Nov 2018 13:35:24 +0300
+Subject: [PATCH] httpc: fix compilation with libcurl >= 7.62.0
+
+Starting from libcurl 7.62.0, CURL_SSL_CACERT is defined as a macro
+alias to CURLE_PEER_FAILED_VERIFICATION, see
+
+  https://github.com/curl/curl/commit/3f3b26d6feb0667714902e836af608094235fca2
+
+This breaks compilation:
+
+  httpc.c:337:7: error: duplicate case value 'CURLE_PEER_FAILED_VERIFICATION'
+  case CURLE_PEER_FAILED_VERIFICATION:
+   ^
+  httpc.c:336:7: note: previous case defined here
+  case CURLE_SSL_CACERT:
+   ^
+  curl.h:589:26: note: expanded from macro 'CURLE_SSL_CACERT'
+  #define CURLE_SSL_CACERT CURLE_PEER_FAILED_VERIFICATION
+   ^
+
+Fix this by using CURLE_SSL_CACERT only if libcurl version is less
+than 7.62.0.
+
+Note, we can't use CURL_AT_LEAST_VERSION to check libcurl version,
+because it isn't available in libcurl shipped with CentOS 6.
+---
+ src/httpc.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/src/httpc.c b/src/httpc.c
+index 4d48a313d8..950f8b32f6 100644
+--- a/src/httpc.c
 b/src/httpc.c
+@@ -333,7 +333,9 @@ httpc_execute(struct httpc_request *req, double timeout)
+   ++env->stat.http_other_responses;
+   }
+   break;
+-  case CURLE_SSL_CACERT:
++#if LIBCURL_VERSION_NUM < 0x073e00
++  case CURLE_SSL_CACERT: /* deprecated in libcurl 7.62.0 */
++#endif
+   case CURLE_PEER_FAILED_VERIFICATION:
+   /* 495 SSL Certificate Error (nginx non-standard) */
+   req->status = 495;


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2018-10-22 Thread Felix Yan via arch-commits
Date: Monday, October 22, 2018 @ 23:16:04
  Author: felixonmars
Revision: 398588

icu 63.1 / poppler 0.70.0 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-22 23:16:02 UTC (rev 398587)
+++ PKGBUILD2018-10-22 23:16:04 UTC (rev 398588)
@@ -3,7 +3,7 @@
 pkgname=tarantool
 _commit=9a543202c93ef903b07b293463650d78002ae866
 pkgver=2.0.4.r497
-pkgrel=2
+pkgrel=3
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2018-08-06 Thread Evangelos Foutras via arch-commits
Date: Monday, August 6, 2018 @ 23:09:42
  Author: foutrelis
Revision: 369971

icu 62.1 / poppler 0.67.0 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-06 23:06:45 UTC (rev 369970)
+++ PKGBUILD2018-08-06 23:09:42 UTC (rev 369971)
@@ -4,7 +4,7 @@
 pkgname=tarantool
 _commit=9a543202c93ef903b07b293463650d78002ae866
 pkgver=2.0.4.r497
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2018-05-31 Thread Anatol Pomozov via arch-commits
Date: Thursday, May 31, 2018 @ 21:31:56
  Author: anatolik
Revision: 335316

upgpkg: tarantool 2.0.4.r497-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-31 21:30:30 UTC (rev 335315)
+++ PKGBUILD2018-05-31 21:31:56 UTC (rev 335316)
@@ -2,9 +2,9 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=330a607af2b2cfbbf4608ec15d46082177804f58
-pkgver=1.9.0.r16
-pkgrel=3
+_commit=9a543202c93ef903b07b293463650d78002ae866
+pkgver=2.0.4.r497
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'
@@ -14,14 +14,14 @@
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
 source=(git+https://github.com/tarantool/tarantool.git#commit=$_commit
 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/libyaml.git
-git+https://github.com/tarantool/zstd.git
 git+https://github.com/tarantool/test-run.git
 git+https://github.com/tarantool/small.git
-   git+https://github.com/tarantool/luarocks.git#branch=tarantool-1.7
-   tarantool.sysusers)
+git+https://github.com/tarantool/zstd.git
+git+https://github.com/tarantool/luarocks.git#branch=tarantool-1.7
+tarantool.sysusers)
 sha1sums=('SKIP'
   'SKIP'
   'SKIP'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2018-03-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, March 27, 2018 @ 21:33:16
  Author: foutrelis
Revision: 312944

icu 61.1 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-27 21:32:01 UTC (rev 312943)
+++ PKGBUILD2018-03-27 21:33:16 UTC (rev 312944)
@@ -4,7 +4,7 @@
 pkgname=tarantool
 _commit=330a607af2b2cfbbf4608ec15d46082177804f58
 pkgver=1.9.0.r16
-pkgrel=2
+pkgrel=3
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD tarantool.sysusers)

2018-03-01 Thread Anatol Pomozov via arch-commits
Date: Friday, March 2, 2018 @ 07:23:33
  Author: anatolik
Revision: 301211

upgpkg: tarantool 1.9.0.r16-2

FS#57696 use correct group/user creation format in *.sysusers file

Modified:
  tarantool/trunk/PKGBUILD
  tarantool/trunk/tarantool.sysusers

+
 PKGBUILD   |4 ++--
 tarantool.sysusers |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-02 07:19:53 UTC (rev 301210)
+++ PKGBUILD2018-03-02 07:23:33 UTC (rev 301211)
@@ -4,7 +4,7 @@
 pkgname=tarantool
 _commit=330a607af2b2cfbbf4608ec15d46082177804f58
 pkgver=1.9.0.r16
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'
@@ -31,7 +31,7 @@
   'SKIP'
   'SKIP'
   'SKIP'
-  '3849ddd5071a2dd8ff6f158d8e7e8578887ca691')
+  '9021b3d50e45f719f0304ab529627cac69a7a149')
 
 pkgver() {
   cd tarantool

Modified: tarantool.sysusers
===
--- tarantool.sysusers  2018-03-02 07:19:53 UTC (rev 301210)
+++ tarantool.sysusers  2018-03-02 07:23:33 UTC (rev 301211)
@@ -1,2 +1,2 @@
-u tarantool
-g tarantool - "Tarantool Server" /var/lib/tarantool
+g tarantool
+u tarantool - "Tarantool Server" /var/lib/tarantool


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2018-03-01 Thread Anatol Pomozov via arch-commits
Date: Friday, March 2, 2018 @ 03:29:08
  Author: anatolik
Revision: 301118

upgpkg: tarantool 1.9.0.r16-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-02 01:38:42 UTC (rev 301117)
+++ PKGBUILD2018-03-02 03:29:08 UTC (rev 301118)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=38418dbaf533ffbb374075a47dcd258ff457faa7
-pkgver=1.7.6.r13
+_commit=330a607af2b2cfbbf4608ec15d46082177804f58
+pkgver=1.9.0.r16
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(git cmake systemd)
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
 source=(git+https://github.com/tarantool/tarantool.git#commit=$_commit
-git+https://github.com/tarantool/luajit.git
+git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
 git+https://github.com/tarantool/msgpuck.git
 git+https://github.com/rtsisyk/luafun.git
 git+https://github.com/tarantool/libyaml.git
@@ -20,7 +20,7 @@
 git+https://github.com/tarantool/zstd.git
 git+https://github.com/tarantool/test-run.git
 git+https://github.com/tarantool/small.git
-   git+https://github.com/tarantool/luarocks.git
+   git+https://github.com/tarantool/luarocks.git#branch=tarantool-1.7
tarantool.sysusers)
 sha1sums=('SKIP'
   'SKIP'
@@ -48,6 +48,7 @@
   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 submodule sync
   git submodule update


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2017-03-22 Thread Anatol Pomozov
Date: Wednesday, March 22, 2017 @ 08:20:34
  Author: anatolik
Revision: 218341

upgpkg: tarantool 1.7.3.r413-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 4 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-22 07:39:44 UTC (rev 218340)
+++ PKGBUILD2017-03-22 08:20:34 UTC (rev 218341)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=f0c92aab5fc8382dbc902b82816e11ec4291c02f
-pkgver=1.7.3
+_commit=375344365883ef520a904cc181fb52c014931656
+pkgver=1.7.3.r413
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)
@@ -17,8 +17,6 @@
 git+https://github.com/tarantool/luajit.git
 git+https://github.com/tarantool/msgpuck.git
 git+https://github.com/rtsisyk/luafun.git
-#git+https://github.com/tarantool/sophia.git
-git+https://github.com/tarantool/lz4.git
 git+https://github.com/tarantool/libyaml.git
 git+https://github.com/tarantool/zstd.git
 git+https://github.com/tarantool/test-run.git
@@ -30,7 +28,6 @@
   'SKIP'
   'SKIP'
   'SKIP'
-  'SKIP'
   'SKIP')
 
 pkgver() {
@@ -44,16 +41,14 @@
   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.sophia.url' "$srcdir/sophia"
   git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
-  git config -f .gitmodules 'submodule.third_party/lz4.url' "$srcdir/lz4"
   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 submodule sync
   git submodule update
-
-  sed -i -e 's/coros/lock/g' test-run/lib/connpool.py
+  #sed -i -e 's/coros/lock/g' test-run/lib/connpool.py
 }
 
 build() {


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2017-03-21 Thread Jan de Groot
Date: Tuesday, March 21, 2017 @ 23:57:12
  Author: jgc
Revision: 218243

upgpkg: tarantool 1.7.3-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   44 +++-
 1 file changed, 23 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-21 23:24:11 UTC (rev 218242)
+++ PKGBUILD2017-03-21 23:57:12 UTC (rev 218243)
@@ -2,27 +2,27 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=1c01afde9477d82c315e5ad1f748e5308f5e8b59
-pkgver=1.7.1.r179
-pkgrel=2
+_commit=f0c92aab5fc8382dbc902b82816e11ec4291c02f
+pkgver=1.7.3
+pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)
-url='http://www.tarantool.org'
+url='https://www.tarantool.org'
 license=(BSD)
 depends=(readline ncurses zlib libyaml openssl)
 makedepends=(git cmake systemd)
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
 install=tarantool.install
-source=(git://github.com/tarantool/tarantool.git#commit=$_commit
-git://github.com/tarantool/luajit.git
-git://github.com/tarantool/msgpuck.git
-git://github.com/rtsisyk/luafun.git
-#git://github.com/tarantool/sophia.git
-git://github.com/tarantool/lz4.git
-git://github.com/tarantool/libyaml.git
-git://github.com/tarantool/zstd.git
-git://github.com/tarantool/test-run.git
-git://github.com/tarantool/small.git)
+source=(git+https://github.com/tarantool/tarantool.git#commit=$_commit
+git+https://github.com/tarantool/luajit.git
+git+https://github.com/tarantool/msgpuck.git
+git+https://github.com/rtsisyk/luafun.git
+#git+https://github.com/tarantool/sophia.git
+git+https://github.com/tarantool/lz4.git
+git+https://github.com/tarantool/libyaml.git
+git+https://github.com/tarantool/zstd.git
+git+https://github.com/tarantool/test-run.git
+git+https://github.com/tarantool/small.git)
 sha1sums=('SKIP'
   'SKIP'
   'SKIP'
@@ -38,10 +38,8 @@
   git describe | sed 's/^v//; s/-/.r/; s/-.*//'
 }
 
-build() {
+prepare() {
   cd tarantool
-
-  # tarantool uses git submodule, handle this
   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"
@@ -55,6 +53,13 @@
   git submodule sync
   git submodule update
 
+  sed -i -e 's/coros/lock/g' test-run/lib/connpool.py
+}
+
+build() {
+  cd tarantool
+
+  # tarantool uses git submodule, handle this
   cmake \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_BINDIR=/usr/bin \
@@ -65,9 +70,7 @@
 -DENABLE_BUNDLED_LIBYAML:BOOL=OFF \
 -DENABLE_BACKTRACE:BOOL=ON \
 -DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
-.
-
+-DENABLE_DIST:BOOL=ON
   make
 }
 
@@ -81,5 +84,4 @@
   make install DESTDIR="$pkgdir"
 
   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  rm -r "$pkgdir/var/run"
 }


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2016-11-07 Thread Bartłomiej Piotrowski
Date: Monday, November 7, 2016 @ 18:05:37
  Author: bpiotrowski
Revision: 194956

readline 7.0 rebuild

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-07 17:58:21 UTC (rev 194955)
+++ PKGBUILD2016-11-07 18:05:37 UTC (rev 194956)
@@ -4,7 +4,7 @@
 pkgname=tarantool
 _commit=1c01afde9477d82c315e5ad1f748e5308f5e8b59
 pkgver=1.7.1.r179
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)
 url='http://www.tarantool.org'


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2016-08-11 Thread Anatol Pomozov
Date: Thursday, August 11, 2016 @ 20:51:36
  Author: anatolik
Revision: 186446

upgpkg: tarantool 1.7.1.r179-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 13 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-11 19:33:33 UTC (rev 186445)
+++ PKGBUILD2016-08-11 20:51:36 UTC (rev 186446)
@@ -2,14 +2,14 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=d52bda2ca5ca18a351d74a09bc51877a03cf8f65
-pkgver=1.6.8.r583
+_commit=1c01afde9477d82c315e5ad1f748e5308f5e8b59
+pkgver=1.7.1.r179
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)
 url='http://www.tarantool.org'
 license=(BSD)
-depends=(readline ncurses zlib libyaml)
+depends=(readline ncurses zlib libyaml openssl)
 makedepends=(git cmake systemd)
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
 install=tarantool.install
@@ -17,7 +17,10 @@
 git://github.com/tarantool/luajit.git
 git://github.com/tarantool/msgpuck.git
 git://github.com/rtsisyk/luafun.git
-git://github.com/tarantool/sophia.git
+#git://github.com/tarantool/sophia.git
+git://github.com/tarantool/lz4.git
+git://github.com/tarantool/libyaml.git
+git://github.com/tarantool/zstd.git
 git://github.com/tarantool/test-run.git
 git://github.com/tarantool/small.git)
 sha1sums=('SKIP'
@@ -26,6 +29,8 @@
   'SKIP'
   'SKIP'
   'SKIP'
+  'SKIP'
+  'SKIP'
   'SKIP')
 
 pkgver() {
@@ -41,7 +46,10 @@
   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.sophia.url' "$srcdir/sophia"
+  #git config -f .gitmodules 'submodule.sophia.url' "$srcdir/sophia"
+  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
+  git config -f .gitmodules 'submodule.third_party/lz4.url' "$srcdir/lz4"
+  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 submodule sync


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2016-03-02 Thread Anatol Pomozov
Date: Wednesday, March 2, 2016 @ 21:05:27
  Author: anatolik
Revision: 164244

upgpkg: tarantool 1.6.8.r537-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-02 20:03:58 UTC (rev 164243)
+++ PKGBUILD2016-03-02 20:05:27 UTC (rev 164244)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=fe2ee489795470e92d9dafbb96186c7d0c54690c
-pkgver=1.6.8.r453
+_commit=7051de689bb397afd72f313b011ba7287d9c86b0
+pkgver=1.6.8.r537
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2016-02-07 Thread Anatol Pomozov
Date: Sunday, February 7, 2016 @ 19:26:19
  Author: anatolik
Revision: 160534

upgpkg: tarantool 1.6.8.r453-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-07 16:30:54 UTC (rev 160533)
+++ PKGBUILD2016-02-07 18:26:19 UTC (rev 160534)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=cb15dda8469cad3cdba6d656504fb629fa5e6d80
-pkgver=1.6.8.r420
+_commit=fe2ee489795470e92d9dafbb96186c7d0c54690c
+pkgver=1.6.8.r453
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)


[arch-commits] Commit in tarantool/trunk (PKGBUILD tarantool.install)

2016-02-01 Thread Anatol Pomozov
Date: Monday, February 1, 2016 @ 20:40:14
  Author: anatolik
Revision: 159816

Bump Tarantool to 1.6.8 release

Upstream provides systemd files now

Added:
  tarantool/trunk/tarantool.install
Modified:
  tarantool/trunk/PKGBUILD

---+
 PKGBUILD  |   18 --
 tarantool.install |   22 ++
 2 files changed, 34 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-01 19:19:42 UTC (rev 159815)
+++ PKGBUILD2016-02-01 19:40:14 UTC (rev 159816)
@@ -2,16 +2,17 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=3fb2936620674fe33b98cccb9c462068f4a587e0
-pkgver=1.6.7.r592
+_commit=cb15dda8469cad3cdba6d656504fb629fa5e6d80
+pkgver=1.6.8.r420
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)
 url='http://www.tarantool.org'
 license=(BSD)
-depends=(readline ncurses zlib)
-makedepends=(git cmake)
+depends=(readline ncurses zlib libyaml)
+makedepends=(git cmake systemd)
 checkdepends=(python2-daemon python2-gevent python2-tarantool)
+install=tarantool.install
 source=(git://github.com/tarantool/tarantool.git#commit=$_commit
 git://github.com/tarantool/luajit.git
 git://github.com/tarantool/msgpuck.git
@@ -48,10 +49,15 @@
 
   cmake \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc/tarantool \
+-DCMAKE_INSTALL_BINDIR=/usr/bin \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
 -DCMAKE_INSTALL_LIBDIR=/usr/lib \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=ON \
+-DENABLE_BUNDLED_LIBYAML:BOOL=OFF \
+-DENABLE_BACKTRACE:BOOL=ON \
+-DWITH_SYSTEMD:BOOL=ON \
+-DENABLE_DIST:BOOL=ON \
 .
 
   make
@@ -67,5 +73,5 @@
   make install DESTDIR="$pkgdir"
 
   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  rm "$pkgdir/usr/share/doc/tarantool/LICENSE"
+  rm -r "$pkgdir/var/run"
 }

Added: tarantool.install
===
--- tarantool.install   (rev 0)
+++ tarantool.install   2016-02-01 19:40:14 UTC (rev 159816)
@@ -0,0 +1,22 @@
+post_upgrade() {
+  getent group tarantool >/dev/null || groupadd --system tarantool &>/dev/null
+  getent passwd tarantool >/dev/null || useradd --system -g tarantool -d 
/var/lib/tarantool -s /bin/false -c "Tarantool Server" tarantool &>/dev/null
+
+  if type -P systemd-tmpfiles &> /dev/null; then
+systemd-tmpfiles --create tarantool.conf
+  fi
+
+  mkdir -p /var/run/tarantool
+
+  chown -R tarantool:tarantool /var/run/tarantool/
+  chown -R tarantool:tarantool /var/lib/tarantool/
+  chown -R tarantool:tarantool /var/log/tarantool/
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  echo "Tarantool data directory '/var/lib/tarantool' is left untouched. 
Remove it if you really sure you won't need your data in the future."
+}


[arch-commits] Commit in tarantool/trunk (PKGBUILD)

2016-01-19 Thread Anatol Pomozov
Date: Wednesday, January 20, 2016 @ 02:35:15
  Author: anatolik
Revision: 157729

upgpkg: tarantool 1.6.7.r592-1

Modified:
  tarantool/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-19 23:29:54 UTC (rev 157728)
+++ PKGBUILD2016-01-20 01:35:15 UTC (rev 157729)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-_commit=3dbc9ffe87307cd8f2ae84ce67824695c7eaf369
-pkgver=1.6.7.r562
+_commit=3fb2936620674fe33b98cccb9c462068f4a587e0
+pkgver=1.6.7.r592
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(i686 x86_64)