Skip to content

Commit e5b9b7c

Browse files
committed
Merge remote-tracking branch 'upstream/main' into remove-needs-flags
2 parents b2f917b + 7f6bb6d commit e5b9b7c

File tree

32 files changed

+294
-324
lines changed

32 files changed

+294
-324
lines changed

components/clp-package-utils/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.9"
33

44
[tool.poetry]
55
name = "clp-package-utils"
6-
version = "0.4.0-dev"
6+
version = "0.5.1-dev"
77
description = "Utilities for the CLP package."
88
authors = ["YScope Inc. <dev@yscope.com>"]
99
readme = "README.md"

components/clp-py-utils/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires-python = ">= 3.9"
33

44
[tool.poetry]
55
name = "clp-py-utils"
6-
version = "0.4.0-dev"
6+
version = "0.5.1-dev"
77
description = "Utilities for other Python packages in CLP."
88
authors = ["YScope Inc. <dev@yscope.com>"]
99
readme = "README.md"

components/core/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,11 @@ if(CLP_BUILD_TESTING)
566566
target_link_libraries(unitTest
567567
PRIVATE
568568
absl::flat_hash_map
569-
Boost::filesystem Boost::iostreams Boost::program_options Boost::regex Boost::url
569+
Boost::filesystem
570+
Boost::iostreams
571+
Boost::program_options
572+
Boost::regex
573+
Boost::url
570574
Catch2::Catch2WithMain
571575
${CURL_LIBRARIES}
572576
clp_s::search::ast
@@ -580,6 +584,7 @@ if(CLP_BUILD_TESTING)
580584
LibLZMA::LibLZMA
581585
MariaDBClient::MariaDBClient
582586
${MONGOCXX_TARGET}
587+
msgpack-cxx
583588
nlohmann_json::nlohmann_json
584589
simdjson::simdjson
585590
spdlog::spdlog

components/core/cmake/find_utils.cmake

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,17 @@ macro(clp_find_boost)
2323
if(CLP_USE_STATIC_LIBS)
2424
set(Boost_USE_STATIC_LIBS ON)
2525
endif()
26-
find_package(Boost 1.89 REQUIRED iostreams program_options filesystem regex url)
26+
find_package(
27+
Boost
28+
1.81...1.88
29+
REQUIRED
30+
filesystem
31+
iostreams
32+
program_options
33+
regex
34+
system
35+
url
36+
)
2737
endmacro()
2838

2939
# Find and setup Catch2.

components/core/src/clp/clg/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ if(CLP_BUILD_EXECUTABLES)
157157
fmt::fmt
158158
log_surgeon::log_surgeon
159159
MariaDBClient::MariaDBClient
160+
msgpack-cxx
160161
nlohmann_json::nlohmann_json
161162
spdlog::spdlog
162163
${sqlite_LIBRARY_DEPENDENCIES}

components/core/src/clp/clp/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ if(CLP_BUILD_EXECUTABLES)
199199
${sqlite_LIBRARY_DEPENDENCIES}
200200
LibArchive::LibArchive
201201
MariaDBClient::MariaDBClient
202+
msgpack-cxx
202203
nlohmann_json::nlohmann_json
203204
${STD_FS_LIBS}
204205
clp::string_utils

components/core/src/clp/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define CLP_VERSION_HPP
33

44
namespace clp {
5-
constexpr char cVersion[] = "0.4.0-dev";
5+
constexpr char cVersion[] = "0.5.1-dev";
66
} // namespace clp
77

88
#endif // CLP_VERSION_HPP

components/core/src/clp_s/CMakeLists.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set(
1818
../clp/cli_utils.hpp
1919
../clp/Defs.h
2020
../clp/EncodedVariableInterpreter.cpp
21-
../clp/EncodedVariableInterpreter.hpp
21+
../clp/EncodedVariableInterpreter.hpp
2222
../clp/ErrorCode.hpp
2323
../clp/ffi/encoding_methods.cpp
2424
../clp/ffi/encoding_methods.hpp
@@ -69,15 +69,15 @@ set(
6969
../clp/ir/parsing.inc
7070
../clp/ir/types.hpp
7171
../clp/LogSurgeonReader.cpp
72-
../clp/LogSurgeonReader.hpp
72+
../clp/LogSurgeonReader.hpp
7373
../clp/NetworkReader.cpp
7474
../clp/NetworkReader.hpp
7575
../clp/networking/socket_utils.cpp
7676
../clp/networking/socket_utils.hpp
7777
../clp/Query.cpp
7878
../clp/Query.hpp
7979
../clp/QueryToken.cpp
80-
../clp/QueryToken.hpp
80+
../clp/QueryToken.hpp
8181
../clp/ReaderInterface.cpp
8282
../clp/ReaderInterface.hpp
8383
../clp/ReadOnlyMemoryMappedFile.cpp
@@ -126,6 +126,7 @@ if(CLP_BUILD_CLP_S_CLP_DEPENDENCIES)
126126
clp::string_utils
127127
log_surgeon::log_surgeon
128128
ystdlib::containers
129+
${zstd_TARGET}
129130
PRIVATE
130131
Boost::regex
131132
${CURL_LIBRARIES}
@@ -135,7 +136,6 @@ if(CLP_BUILD_CLP_S_CLP_DEPENDENCIES)
135136
OpenSSL::Crypto
136137
spdlog::spdlog
137138
ystdlib::error_handling
138-
${zstd_TARGET}
139139
)
140140
endif()
141141

@@ -381,6 +381,7 @@ if(CLP_BUILD_CLP_S_JSONCONSTRUCTOR)
381381
find_package(fmt REQUIRED)
382382
clp_find_mongocxx()
383383
find_package(spdlog REQUIRED)
384+
clp_find_zstd()
384385

385386
add_library(
386387
clp_s_json_constructor
@@ -393,6 +394,7 @@ if(CLP_BUILD_CLP_S_JSONCONSTRUCTOR)
393394
clp_s_json_constructor
394395
PUBLIC
395396
clp_s::archive_reader
397+
${zstd_TARGET}
396398
PRIVATE
397399
fmt::fmt
398400
${MONGOCXX_TARGET}

components/core/src/clp_s/indexer/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set(
1515
../../clp/database_utils.hpp
1616
../../clp/Defs.h
1717
../../clp/EncodedVariableInterpreter.cpp
18-
../../clp/EncodedVariableInterpreter.hpp
18+
../../clp/EncodedVariableInterpreter.hpp
1919
../../clp/ErrorCode.hpp
2020
../../clp/ffi/encoding_methods.cpp
2121
../../clp/ffi/encoding_methods.hpp
@@ -131,6 +131,7 @@ if(CLP_BUILD_EXECUTABLES)
131131
clp::string_utils
132132
date::date
133133
MariaDBClient::MariaDBClient
134+
msgpack-cxx
134135
nlohmann_json::nlohmann_json
135136
OpenSSL::Crypto
136137
simdjson::simdjson

components/core/src/glt/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define GLT_VERSION_HPP
33

44
namespace glt {
5-
constexpr char cVersion[] = "0.4.0-dev";
5+
constexpr char cVersion[] = "0.5.1-dev";
66
} // namespace glt
77

88
#endif // GLT_VERSION_HPP

0 commit comments

Comments
 (0)