From a21eae5570ee23ff259ccee6adc402fa27578a83 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 30 Dec 2022 08:16:57 +0000 Subject: gentoo auto-resync : 30:12:2022 - 08:16:57 --- .../ceph/files/ceph-17.2.5-boost-1.81.patch | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 sys-cluster/ceph/files/ceph-17.2.5-boost-1.81.patch (limited to 'sys-cluster/ceph/files') diff --git a/sys-cluster/ceph/files/ceph-17.2.5-boost-1.81.patch b/sys-cluster/ceph/files/ceph-17.2.5-boost-1.81.patch new file mode 100644 index 000000000000..2dd06edb312f --- /dev/null +++ b/sys-cluster/ceph/files/ceph-17.2.5-boost-1.81.patch @@ -0,0 +1,49 @@ +https://bugs.gentoo.org/887481 +--- a/src/rgw/rgw_asio_client.cc ++++ b/src/rgw/rgw_asio_client.cc +@@ -39,11 +39,11 @@ + const auto& value = header->value(); + + if (field == beast::http::field::content_length) { +- env.set("CONTENT_LENGTH", value.to_string()); ++ env.set("CONTENT_LENGTH", value); + continue; + } + if (field == beast::http::field::content_type) { +- env.set("CONTENT_TYPE", value.to_string()); ++ env.set("CONTENT_TYPE", value); + continue; + } + +@@ -62,26 +62,26 @@ + } + *dest = '\0'; + +- env.set(buf, value.to_string()); ++ env.set(buf, value); + } + + int major = request.version() / 10; + int minor = request.version() % 10; + env.set("HTTP_VERSION", std::to_string(major) + '.' + std::to_string(minor)); + +- env.set("REQUEST_METHOD", request.method_string().to_string()); ++ env.set("REQUEST_METHOD", request.method_string()); + + // split uri from query + auto uri = request.target(); + auto pos = uri.find('?'); + if (pos != uri.npos) { + auto query = uri.substr(pos + 1); +- env.set("QUERY_STRING", query.to_string()); ++ env.set("QUERY_STRING", query); + uri = uri.substr(0, pos); + } +- env.set("SCRIPT_URI", uri.to_string()); ++ env.set("SCRIPT_URI", uri); + +- env.set("REQUEST_URI", request.target().to_string()); ++ env.set("REQUEST_URI", request.target()); + + char port_buf[16]; + snprintf(port_buf, sizeof(port_buf), "%d", local_endpoint.port()); -- cgit v1.2.3