[arch-commits] Commit in php-redis/repos/community-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Thu Mar 19 22:30:37 UTC 2020


    Date: Thursday, March 19, 2020 @ 22:30:37
  Author: dvzrv
Revision: 601267

archrelease: copy trunk to community-x86_64

Added:
  php-redis/repos/community-x86_64/PKGBUILD
    (from rev 601266, php-redis/trunk/PKGBUILD)
Deleted:
  php-redis/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  120 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-03-19 22:30:28 UTC (rev 601266)
+++ PKGBUILD	2020-03-19 22:30:37 UTC (rev 601267)
@@ -1,60 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-
-pkgname=php-redis
-_name=redis
-_upstream=phpredis
-pkgver=5.2.0
-pkgrel=1
-pkgdesc="An API for communicating with the Redis key-value store"
-arch=('x86_64')
-url="https://github.com/phpredis/phpredis/"
-license=('PHP')
-depends=('glibc' 'php-igbinary')
-makedepends=('liblzf')
-checkdepends=('lsof' 'redis')
-optdepends=('redis: use a local redis instance')
-backup=("etc/php/conf.d/${_name}.ini")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${_upstream}/${_upstream}/archive/${pkgver}.tar.gz")
-sha512sums=('ccf641838102312a721f6bd424c56e8ceef9444c52d80a172a16c06443845b647309bdd8ab559c0a721b521ed9cee5bbe7f5f5f3ffb3cef56cbcb8c0483f730a')
-
-prepare() {
-  mv -v "${_upstream}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  # tempfile is non-standard, Debian only
-  sed -e 's/tempfile/mktemp/g' -i tests/mkring.sh
-  # the kill after shutdown of redis makes it exit with status code 1
-  sed -e '/kill -9/d' -i tests/mkring.sh
-  # disable the extension by default
-  echo -e "; this extension requires igbinary to be activated as well\n;extension=${_name}" > "${_name}.ini"
-  phpize
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr \
-              --enable-redis-igbinary \
-              --enable-redis-lzf \
-              --with-liblzf=/usr/lib/
-  make
-}
-
-check() {
-  # tests are partly broken:
-  # https://github.com/phpredis/phpredis/issues/1593
-  export TEST_PHP_EXECUTABLE=/usr/bin/php
-  export TEST_PHP_ARGS="-d extension=igbinary -d extension=${srcdir}/${pkgname}-${pkgver}/modules/redis.so"
-  cd "$pkgname-$pkgver"
-  tests/mkring.sh start
-  $TEST_PHP_EXECUTABLE $TEST_PHP_ARGS tests/TestRedis.php --class Redis
-  $TEST_PHP_EXECUTABLE $TEST_PHP_ARGS tests/TestRedis.php --class RedisArray
-  tests/mkring.sh stop
-}
-
-package() {
-  depends+=('liblzf.so')
-  cd "$pkgname-$pkgver"
-  make INSTALL_ROOT="$pkgdir/" install
-  install -vDm 644 "${_name}.ini" -t "${pkgdir}/etc/php/conf.d/"
-  install -vDm 644 {{README,arrays,cluster}.markdown,CREDITS} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: php-redis/repos/community-x86_64/PKGBUILD (from rev 601266, php-redis/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-03-19 22:30:37 UTC (rev 601267)
@@ -0,0 +1,60 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+
+pkgname=php-redis
+_name=redis
+_upstream=phpredis
+pkgver=5.2.1
+pkgrel=1
+pkgdesc="An API for communicating with the Redis key-value store"
+arch=('x86_64')
+url="https://github.com/phpredis/phpredis/"
+license=('PHP')
+depends=('glibc' 'php-igbinary')
+makedepends=('liblzf')
+checkdepends=('lsof' 'redis')
+optdepends=('redis: use a local redis instance')
+backup=("etc/php/conf.d/${_name}.ini")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${_upstream}/${_upstream}/archive/${pkgver}.tar.gz")
+sha512sums=('40d8b16a491f44c62b56f6b0e7a9a028893af64fc86531e61b0e85d2fa09a517f77e132374526ef6a774a9275921ee3fd56effa709b1e704649858fbdee628d3')
+
+prepare() {
+  mv -v "${_upstream}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # tempfile is non-standard, Debian only
+  sed -e 's/tempfile/mktemp/g' -i tests/mkring.sh
+  # the kill after shutdown of redis makes it exit with status code 1
+  sed -e '/kill -9/d' -i tests/mkring.sh
+  # disable the extension by default
+  echo -e "; this extension requires igbinary to be activated as well\n;extension=${_name}" > "${_name}.ini"
+  phpize
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+              --enable-redis-igbinary \
+              --enable-redis-lzf \
+              --with-liblzf=/usr/lib/
+  make
+}
+
+check() {
+  # tests are partly broken:
+  # https://github.com/phpredis/phpredis/issues/1593
+  export TEST_PHP_EXECUTABLE=/usr/bin/php
+  export TEST_PHP_ARGS="-d extension=igbinary -d extension=${srcdir}/${pkgname}-${pkgver}/modules/redis.so"
+  cd "$pkgname-$pkgver"
+  tests/mkring.sh start
+  $TEST_PHP_EXECUTABLE $TEST_PHP_ARGS tests/TestRedis.php --class Redis
+  $TEST_PHP_EXECUTABLE $TEST_PHP_ARGS tests/TestRedis.php --class RedisArray
+  tests/mkring.sh stop
+}
+
+package() {
+  depends+=('liblzf.so')
+  cd "$pkgname-$pkgver"
+  make INSTALL_ROOT="$pkgdir/" install
+  install -vDm 644 "${_name}.ini" -t "${pkgdir}/etc/php/conf.d/"
+  install -vDm 644 {{README,arrays,cluster}.markdown,CREDITS} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}/"
+}



More information about the arch-commits mailing list