-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libyaml/sqlpp11/xeus/uvatlas/xxhash] Update to the latest version (#…
…13657) * [many ports] Update to the latest version * [xeus] Fix static build * [usd] Revert change * [xeus] Fix build error * [sqlpp11] Update latest version * [libyaml] Fix build error on Linux * [sqlpp11] Fix build error
- Loading branch information
Showing
15 changed files
with
92 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Source: libyaml | ||
Version: 0.2.2-3 | ||
Version: 0.2.5 | ||
Homepage: https://github.com/yaml/libyaml | ||
Description: A C library for parsing and emitting YAML. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: sqlpp11 | ||
Version: 0.59 | ||
Version: 0.60 | ||
Homepage: https://github.com/rbock/sqlpp11 | ||
Description: A type safe embedded domain specific language for SQL queries and results in C++. | ||
Build-Depends: date |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index b8de9fa..82dd632 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -32,14 +32,11 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/") | ||
|
||
include(CTest) | ||
|
||
- | ||
-### Dependencies | ||
-add_subdirectory(dependencies) | ||
- | ||
### Main targets | ||
add_library(sqlpp11 INTERFACE) | ||
add_library(sqlpp11::sqlpp11 ALIAS sqlpp11) | ||
|
||
+find_package(date CONFIG REQUIRED) | ||
target_link_libraries(sqlpp11 INTERFACE date::date) | ||
|
||
target_include_directories(sqlpp11 INTERFACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: uvatlas | ||
Version: dec2019 | ||
Version: aug2020 | ||
Homepage: https://github.com/Microsoft/UVAtlas | ||
Description: UVAtlas isochart texture atlas | ||
Supports: windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Source: xeus | ||
Version: 0.20.0-1 | ||
Version: 0.24.1 | ||
Homepage: https://github.com/jupyter-xeus/xeus | ||
Description: C++ implementation of the Jupyter kernel protocol | ||
Build-Depends: cppzmq, libuuid (linux), nlohmann-json, openssl, xtl, zeromq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
diff --git a/src/xmessage.cpp b/src/xmessage.cpp | ||
index 0d6ad99..621d838 100644 | ||
index 1ab9544..5a14ba0 100644 | ||
--- a/src/xmessage.cpp | ||
+++ b/src/xmessage.cpp | ||
@@ -12,6 +12,7 @@ | ||
@@ -13,6 +13,7 @@ | ||
#include <sstream> | ||
#include <string> | ||
#include <utility> | ||
+#include <ciso646> | ||
|
||
#include "xeus/xguid.hpp" | ||
#include "xeus/xmessage.hpp" | ||
#include "nlohmann/json.hpp" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index d02b5d6..6484131 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -244,7 +244,10 @@ macro(xeus_create_target target_name linkage output_name) | ||
PUBLIC xtl | ||
) | ||
|
||
- target_link_libraries(${target_name} PUBLIC OpenSSL::Crypto) | ||
+ if (MSVC) | ||
+ target_link_libraries(OpenSSL::Crypto INTERFACE crypt32) | ||
+ endif () | ||
+ target_link_libraries(${target_name} PUBLIC OpenSSL::Crypto) | ||
|
||
if (NOT MSVC) | ||
if (APPLE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: xxhash | ||
Version: 0.7.0 | ||
Version: 0.8.0 | ||
Homepage: https://github.com/Cyan4973/xxHash | ||
Description: Extremely fast hash algorithm |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters