diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-09-27 23:09:33 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-09-27 16:18:15 -0700 |
commit | 45172be94e1bfb8fed902f3b268228435a334397 (patch) | |
tree | 3854086c14e195774f1fa253bc6ed3a0c42610e0 | |
parent | 3505e951b9a7ac613216498b4864002376c10d20 (diff) | |
download | meta-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.patch | 34 | ||||
-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 @@ | |||
1 | From e30d4c4c557568b01d5adce9df2714de8d3921c2 Mon Sep 17 00:00:00 2001 | ||
2 | From: sewenew <sewe.code@gmail.com> | ||
3 | Date: Tue, 15 Apr 2025 22:57:08 +0800 | ||
4 | Subject: [PATCH] update cmake_minimum_required to 3.5 | ||
5 | |||
6 | Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> | ||
7 | Upstream-Status: Backport [e30d4c4c557568b01d5adce9df2714de8d3921c2] | ||
8 | --- | ||
9 | CMakeLists.txt | 2 +- | ||
10 | test/CMakeLists.txt | 2 +- | ||
11 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
12 | |||
13 | diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
14 | index 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} = (.+);$") | ||
23 | diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt | ||
24 | index 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" | |||
7 | DEPENDS += "hiredis" | 7 | DEPENDS += "hiredis" |
8 | 8 | ||
9 | SRC_URI = "git://github.com/sewenew/redis-plus-plus;branch=master;protocol=https;tag=${PV} \ | 9 | SRC_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" |
11 | SRCREV = "b13fcead60bdc03f9771da25715bb134be89aa2f" | 11 | SRCREV = "a63ac43bf192772910b52e27cd2b42a6098a0071" |
12 | 12 | ||
13 | 13 | ||
14 | inherit cmake | 14 | inherit cmake |