Skip to content

Commit

Permalink
package/redis: bump to v7.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: Titouan Christophe <[email protected]>
Signed-off-by: Peter Korsgaard <[email protected]>
  • Loading branch information
titouanc authored and jacmet committed Oct 15, 2023
1 parent 4919f7f commit d49f53f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions package/redis/0001-uclibc.patch
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ Signed-off-by: Martin Bark <[email protected]>
Signed-off-by: Titouan Christophe <[email protected]>
[Fabrice: update for 6.0.9]
Signed-off-by: Fabrice Fontaine <[email protected]>
[Titouan: adapt to 7.2.1]
Signed-off-by: Titouan Christophe <[email protected]>

=========================================================================
diff -ur old/src/config.h new/src/config.h
--- old/src/config.h 2012-10-26 07:20:24.000000000 -0700
+++ new/src/config.h 2012-10-31 13:41:51.206309564 -0700
@@ -62,7 +62,7 @@
@@ -71,7 +71,7 @@
#endif

/* Test for backtrace() */
-#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
+#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__) && !defined(__UCLIBC__)) || \
defined(__FreeBSD__) || ((defined(__OpenBSD__) || defined(__NetBSD__)) && defined(USE_BACKTRACE))\
|| defined(__DragonFly__)
defined(__FreeBSD__) || ((defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun)) && defined(USE_BACKTRACE))\
|| defined(__DragonFly__) || (defined(__UCLIBC__) && defined(__UCLIBC_HAS_BACKTRACE__))
#define HAVE_BACKTRACE 1
2 changes: 1 addition & 1 deletion package/redis/redis.hash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# From https://github.com/redis/redis-hashes/blob/master/README
sha256 ce250d1fba042c613de38a15d40889b78f7cb6d5461a27e35017ba39b07221e3 redis-7.0.11.tar.gz
sha256 5c76d990a1b1c5f949bcd1eed90d0c8a4f70369bdbdcb40288c561ddf88967a4 redis-7.2.1.tar.gz

# Locally calculated
sha256 97f0a15b7bbae580d2609dad2e11f1956ae167be296ab60f4691ab9c30ee9828 COPYING
2 changes: 1 addition & 1 deletion package/redis/redis.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
################################################################################

REDIS_VERSION = 7.0.11
REDIS_VERSION = 7.2.1
REDIS_SITE = http://download.redis.io/releases
REDIS_LICENSE = BSD-3-Clause (core); MIT and BSD family licenses (Bundled components)
REDIS_LICENSE_FILES = COPYING
Expand Down

0 comments on commit d49f53f

Please sign in to comment.