From 86328d23cc5fd6f930d6ca5d052002cbae3f2915 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sat, 9 Sep 2023 21:53:57 +0200 Subject: [PATCH] php-redis: -> 5.3.7 --- php-redis/.signature | 4 ++-- php-redis/Pkgfile | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/php-redis/.signature b/php-redis/.signature index 315397564..5af4566e7 100644 --- a/php-redis/.signature +++ b/php-redis/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3y0B86Uiw+lOq90fIvh4toEgtObEMlPVXbtULp3hTO+2e6tDutyxw+gD+1ib0rIXHsJe+mvigIkcVEOo/cEPhgA= -SHA256 (Pkgfile) = 410394cd8b2666213ecd95534e23ae6652ca629a28fff2d3693a80ecf999afdd +RWSagIOpLGJF35ToELwjCDdGhrVaRuugadCTP3S/+dkWpDLqfEC/EI9Yti3ZMzkAwW92Mnaqa4t0ZaibU0ZZ4NDowE0knXzj0gw= +SHA256 (Pkgfile) = 6a37573d111f1ef9133bfe8069c8d497e6bccfd44b17bfa033b22eeeaa76204a SHA256 (.footprint) = 659383f9555ba6ecce269cdc4cd7e25d7cee56f341f2d65b15ed9d94e86fc535 SHA256 (php-redis-5.3.7.tar.gz) = 6f5cda93aac8c1c4bafa45255460292571fb2f029b0ac4a5a4dc66987a9529e6 diff --git a/php-redis/Pkgfile b/php-redis/Pkgfile index 9f467be6a..16016f962 100644 --- a/php-redis/Pkgfile +++ b/php-redis/Pkgfile @@ -7,17 +7,21 @@ name=php-redis version=5.3.7 release=1 -source=(https://github.com/phpredis/phpredis/archive/$version/$name-$version.tar.gz) +source=(https://github.com/phpredis/phpredis/archive/refs/tags/$version.tar.gz) +renames=($name-$version.tar.gz) build() { cd phpredis-$version + echo -e "; this extension requires igbinary to be activated as well\n;extension=redis" > "redis.ini" phpize + ./configure --prefix=/usr \ --enable-redis-igbinary \ --enable-redis-lzf \ --with-liblzf=/usr/lib/ make make INSTALL_ROOT=$PKG/ install + install -vDm 644 redis.ini -t $PKG/etc/php/conf.d/ }