wok diff redis/receipt @ rev 25817
Update kernel config for support mmc tablet
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Mon Mar 03 12:26:15 2025 +0100 (6 months ago) |
parents | 6acd28d149b8 |
children |
line diff
1.1 --- a/redis/receipt Mon Feb 26 14:07:44 2024 +0000 1.2 +++ b/redis/receipt Mon Mar 03 12:26:15 2025 +0100 1.3 @@ -1,24 +1,25 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="redis" 1.7 -VERSION="7.2.4" 1.8 +VERSION="7.2.5" 1.9 CATEGORY="database" 1.10 TAGS="database" 1.11 SHORT_DESC="An open source, BSD licensed, advanced key-value cache and store." 1.12 MAINTAINER="nneul@neulinger.org" 1.13 LICENSE="BSD" 1.14 -WEB_SITE="https://redis.io/" 1.15 +WEB_SITE="https://github.com/redis/redis" 1.16 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WGET_URL="https://download.redis.io/releases/$TARBALL" 1.19 +WGET_URL="https://github.com/redis/redis/archive/refs/tags/$VERSION.tar.gz" 1.20 1.21 DEPENDS="gcc83-lib-base libatomic libxslt" 1.22 BUILD_DEPENDS="gcc83 libatomic libxslt-dev" 1.23 1.24 +# What is the latest version available today? 1.25 current_version() 1.26 { 1.27 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 1.28 - sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*>$PACKAGE-||;s|.t.*||" | sort -Vr | sed q 1.29 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 1.30 + sed '/tag\//!d;s|.*tag/v*||;s|".*||;q' 1.31 } 1.32 1.33 # Rules to configure and make the package.