Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c5598efe8 | |||
| 8fa2f6e626 | |||
| 3a3173ee12 |
@@ -9,3 +9,14 @@
|
||||
#endif
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
--- ceph-20.2.0/src/boost/boost/redis/adapter/detail/adapters.hpp.orig 2026-02-06 09:54:39.748078321 -0500
|
||||
+++ ceph-20.2.0/src/boost/boost/redis/adapter/detail/adapters.hpp 2026-02-06 09:55:02.427664048 -0500
|
||||
@@ -29,7 +29,7 @@
|
||||
#include <charconv>
|
||||
|
||||
// See https://stackoverflow.com/a/31658120/1077832
|
||||
-#include<ciso646>
|
||||
+#include<iso646.h>
|
||||
#ifdef _LIBCPP_VERSION
|
||||
#else
|
||||
#include <cstdlib>
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
--- ceph-20.2.0/src/rgw/rgw_lua_utils.cc.orig 2026-02-17 11:46:05.677894827 -0500
|
||||
+++ ceph-20.2.0/src/rgw/rgw_lua_utils.cc 2026-02-17 11:50:06.106569226 -0500
|
||||
@@ -115,7 +115,11 @@
|
||||
|
||||
// create new lua state together with reference to the guard
|
||||
lua_State* newstate(lua_state_guard* guard) {
|
||||
+#if (LUA_VERSION_NUM < 505)
|
||||
lua_State* L = lua_newstate(allocator, guard);
|
||||
+#else
|
||||
+ lua_State* L = lua_newstate(allocator, guard, 314159);
|
||||
+#endif
|
||||
if (L) {
|
||||
lua_atpanic(L, [](lua_State* L) -> int {
|
||||
const char* msg = lua_tostring(L, -1);
|
||||
@@ -222,6 +222,7 @@ Patch: 0059-iso646.patch
|
||||
Patch: 0061-gcc-16.patch
|
||||
Patch: 0062-src-rgw-driver-dbstore-CMakeLists.txt.patch
|
||||
Patch: 0063-src-jaegertracing-opentelemetry-cpp-CMakeLists.txt.patch
|
||||
Patch: 0064-src-rgw-rgw_lua_utils.cc.patch
|
||||
|
||||
# ceph 14.0.1 does not support 32-bit architectures, bugs #1727788, #1727787
|
||||
ExcludeArch: i686 armv7hl
|
||||
@@ -2743,8 +2744,8 @@ exit 0
|
||||
%{python3_sitelib}/ceph_node_proxy-*
|
||||
|
||||
%changelog
|
||||
* Wed Feb 18 2026 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 2:20.2.0-9
|
||||
- ceph-20.2.0, rebuild with libarrow-23.0.1, cmake-4, system zstd
|
||||
* Tue Feb 17 2026 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 2:20.2.0-9
|
||||
- ceph-20.2.0, rebuild with libarrow-23.0.1, cmake-4-isms, lua-5.5
|
||||
|
||||
* Wed Jan 28 2026 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 2:20.2.0-8
|
||||
- ceph-20.2.0, rebuild with libarrow-23.0.0, side tag f44-build-side-127546
|
||||
|
||||
Reference in New Issue
Block a user