summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-09-27 23:09:33 +0200
committerKhem Raj <raj.khem@gmail.com>2025-09-27 16:18:15 -0700
commit45172be94e1bfb8fed902f3b268228435a334397 (patch)
tree3854086c14e195774f1fa253bc6ed3a0c42610e0
parent3505e951b9a7ac613216498b4864002376c10d20 (diff)
downloadmeta-openembedded-45172be94e1bfb8fed902f3b268228435a334397.tar.gz
redis-plus-plus: upgrade 1.3.14 -> 1.3.15
Drop 0001-update-cmake_minimum_required-to-3.5.patch, because it is included in this release. Add back 0001-CMakeLists.txt-fix-substitution-for-static-libs.patch to SRC_URI, because it was removed accidentally during a previous update. Changelog: - Support cmake FetchContent feature - Support more hash commands - Make variant parser more efficient - Fix event loop crash: avoid closing handle opened by hiredis Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/redis-plus-plus/files/0001-update-cmake_minimum_required-to-3.5.patch34
-rw-r--r--meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.15.bb (renamed from meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.14.bb)4
2 files changed, 2 insertions, 36 deletions
diff --git a/meta-oe/recipes-extended/redis-plus-plus/files/0001-update-cmake_minimum_required-to-3.5.patch b/meta-oe/recipes-extended/redis-plus-plus/files/0001-update-cmake_minimum_required-to-3.5.patch
deleted file mode 100644
index 02093573ce..0000000000
--- a/meta-oe/recipes-extended/redis-plus-plus/files/0001-update-cmake_minimum_required-to-3.5.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1From e30d4c4c557568b01d5adce9df2714de8d3921c2 Mon Sep 17 00:00:00 2001
2From: sewenew <sewe.code@gmail.com>
3Date: Tue, 15 Apr 2025 22:57:08 +0800
4Subject: [PATCH] update cmake_minimum_required to 3.5
5
6Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de>
7Upstream-Status: Backport [e30d4c4c557568b01d5adce9df2714de8d3921c2]
8---
9 CMakeLists.txt | 2 +-
10 test/CMakeLists.txt | 2 +-
11 2 files changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/CMakeLists.txt b/CMakeLists.txt
14index e0a8cf4..9c742f9 100644
15--- a/CMakeLists.txt
16+++ b/CMakeLists.txt
17@@ -1,4 +1,4 @@
18-cmake_minimum_required(VERSION 3.1)
19+cmake_minimum_required(VERSION 3.5)
20
21 function(GET_VERSION VERSION_PART VERSION_NUM)
22 set(VERSION_REGEX "^const int VERSION_${VERSION_PART} = (.+);$")
23diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
24index 3423956..88aa079 100644
25--- a/test/CMakeLists.txt
26+++ b/test/CMakeLists.txt
27@@ -1,6 +1,6 @@
28 project(test_redis++)
29
30-cmake_minimum_required(VERSION 3.1)
31+cmake_minimum_required(VERSION 3.5)
32
33 set(REDIS_PLUS_PLUS_TEST_SOURCES src/sw/redis++/test_main.cpp)
34
diff --git a/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.14.bb b/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.15.bb
index 19e68edea8..1f4b05cbac 100644
--- a/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.14.bb
+++ b/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.15.bb
@@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
7DEPENDS += "hiredis" 7DEPENDS += "hiredis"
8 8
9SRC_URI = "git://github.com/sewenew/redis-plus-plus;branch=master;protocol=https;tag=${PV} \ 9SRC_URI = "git://github.com/sewenew/redis-plus-plus;branch=master;protocol=https;tag=${PV} \
10 file://0001-update-cmake_minimum_required-to-3.5.patch" 10 file://0001-CMakeLists.txt-fix-substitution-for-static-libs.patch"
11SRCREV = "b13fcead60bdc03f9771da25715bb134be89aa2f" 11SRCREV = "a63ac43bf192772910b52e27cd2b42a6098a0071"
12 12
13 13
14inherit cmake 14inherit cmake