wok-current rev 24280
updated redis (5.0.8 -> 6.2.6)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jan 10 17:09:47 2022 +0100 (2022-01-10) |
parents | 2ac466d9d0a7 |
children | bde99f8d4916 |
files | redis/description.txt redis/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/redis/description.txt Mon Jan 10 17:09:47 2022 +0100 1.3 @@ -0,0 +1,8 @@ 1.4 +Redis is an open source (BSD licensed), in-memory data structure store, 1.5 +used as a database, cache, and message broker. 1.6 +Redis provides data structures such as strings, hashes, lists, sets, 1.7 +sorted sets with range queries, bitmaps, hyperloglogs, geospatial indexes, 1.8 +and streams. 1.9 +Redis has built-in replication, Lua scripting, LRU eviction, transactions, 1.10 +and different levels of on-disk persistence, and provides high availability 1.11 +via Redis Sentinel and automatic partitioning with Redis Cluster.
2.1 --- a/redis/receipt Mon Jan 10 14:18:26 2022 +0000 2.2 +++ b/redis/receipt Mon Jan 10 17:09:47 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="redis" 2.7 -VERSION="5.0.8" 2.8 +VERSION="6.2.6" 2.9 CATEGORY="database" 2.10 TAGS="database" 2.11 SHORT_DESC="An open source, BSD licensed, advanced key-value cache and store." 2.12 @@ -10,10 +10,10 @@ 2.13 WEB_SITE="https://redis.io/" 2.14 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="http://download.redis.io/releases/$TARBALL" 2.17 +WGET_URL="https://download.redis.io/releases/$TARBALL" 2.18 2.19 -DEPENDS="gcc83-lib-base" 2.20 -BUILD_DEPENDS="gcc83 libxslt" 2.21 +DEPENDS="gcc83-lib-base libxslt" 2.22 +BUILD_DEPENDS="gcc83 libxslt-dev" 2.23 2.24 current_version() 2.25 { 2.26 @@ -26,10 +26,9 @@ 2.27 { 2.28 export LDFLAGS="$LDFLAGS -latomic" 2.29 2.30 - make -j 4 \ 2.31 - CC=gcc-83 \ 2.32 - CXX=g++-83 \ 2.33 - PREFIX=/usr 2.34 + make MALLOC=libc \ 2.35 + CC=gcc-83 \ 2.36 + CXX=g++-83 2.37 } 2.38 2.39 # Rules to gen a SliTaz package suitable for Tazpkg. 2.40 @@ -38,10 +37,12 @@ 2.41 mkdir -p $fs/usr/bin 2.42 mkdir -p $fs/etc 2.43 2.44 + cp -a $src/redis.conf $fs/etc 2.45 + cp -a $src/src/redis-benchmark $fs/usr/bin 2.46 cp -a $src/src/redis-cli $fs/usr/bin 2.47 + cp -a $src/src/redis-check-aof $fs/usr/bin 2.48 + # 6.2.6 not created 2.49 +# cp -a $src/src/redis-check-dump $fs/usr/bin 2.50 + cp -a $src/src/redis-check-rdb $fs/usr/bin 2.51 cp -a $src/src/redis-server $fs/usr/bin 2.52 - cp -a $src/src/redis-benchmark $fs/usr/bin 2.53 - cp -a $src/src/redis-check-rdb $fs/usr/bin 2.54 - cp -a $src/src/redis-check-aof $fs/usr/bin 2.55 - cp -a $src/redis.conf $fs/etc 2.56 }