diff mbox series

[meta-oe] redis-plus-plus: upgrade 1.3.14 -> 1.3.15

Message ID 20250927210933.3868073-1-skandigraun@gmail.com
State Accepted
Headers show
Series [meta-oe] redis-plus-plus: upgrade 1.3.14 -> 1.3.15 | expand

Commit Message

Gyorgy Sarvari Sept. 27, 2025, 9:09 p.m. UTC
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>
---
 ...update-cmake_minimum_required-to-3.5.patch | 34 -------------------
 ...us_1.3.14.bb => redis-plus-plus_1.3.15.bb} |  4 +--
 2 files changed, 2 insertions(+), 36 deletions(-)
 delete mode 100644 meta-oe/recipes-extended/redis-plus-plus/files/0001-update-cmake_minimum_required-to-3.5.patch
 rename meta-oe/recipes-extended/redis-plus-plus/{redis-plus-plus_1.3.14.bb => redis-plus-plus_1.3.15.bb} (87%)
diff mbox series

Patch

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 @@ 
-From e30d4c4c557568b01d5adce9df2714de8d3921c2 Mon Sep 17 00:00:00 2001
-From: sewenew <sewe.code@gmail.com>
-Date: Tue, 15 Apr 2025 22:57:08 +0800
-Subject: [PATCH] update cmake_minimum_required to 3.5
-
-Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de>
-Upstream-Status: Backport [e30d4c4c557568b01d5adce9df2714de8d3921c2]
----
- CMakeLists.txt      | 2 +-
- test/CMakeLists.txt | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e0a8cf4..9c742f9 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.1)
-+cmake_minimum_required(VERSION 3.5)
- 
- function(GET_VERSION VERSION_PART VERSION_NUM)
-     set(VERSION_REGEX "^const int VERSION_${VERSION_PART} = (.+);$")
-diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
-index 3423956..88aa079 100644
---- a/test/CMakeLists.txt
-+++ b/test/CMakeLists.txt
-@@ -1,6 +1,6 @@
- project(test_redis++)
- 
--cmake_minimum_required(VERSION 3.1)
-+cmake_minimum_required(VERSION 3.5)
- 
- set(REDIS_PLUS_PLUS_TEST_SOURCES src/sw/redis++/test_main.cpp)
- 
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
similarity index 87%
rename from meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.14.bb
rename to 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"
 DEPENDS += "hiredis"
 
 SRC_URI = "git://github.com/sewenew/redis-plus-plus;branch=master;protocol=https;tag=${PV} \
-           file://0001-update-cmake_minimum_required-to-3.5.patch"
-SRCREV = "b13fcead60bdc03f9771da25715bb134be89aa2f"
+           file://0001-CMakeLists.txt-fix-substitution-for-static-libs.patch"
+SRCREV = "a63ac43bf192772910b52e27cd2b42a6098a0071"
 
 
 inherit cmake