Update spdlog to 1.8.5

This commit is contained in:
Sebastian Messmer 2021-04-02 14:38:08 -07:00
parent 148c6d298b
commit 7cab57996d
3 changed files with 5 additions and 5 deletions

View File

@ -130,8 +130,8 @@ references:
echo Download spdlog
cd ~
wget https://github.com/gabime/spdlog/archive/v1.8.2.tar.gz -O spdlog.tar.gz
if [ $(sha512sum spdlog.tar.gz | awk '{print $1;}') == "7a0a2353a10187cc314253b366fc46be8f9fe2480d2cbac3a96a8e6825ee4b62b0a5ebb3add2b22b5d7ca8fe6dddd963926603e5296e3431c0a4f7ac42beda7f" ]; then
wget https://github.com/gabime/spdlog/archive/v1.8.5.tar.gz -O spdlog.tar.gz
if [ $(sha512sum spdlog.tar.gz | awk '{print $1;}') == "77cc9df0c40bbdbfe1f3e5818dccf121918bfceac28f2608f39e5bf944968b7e8e24a6fc29f01bc58a9bae41b8892d49cfb59c196935ec9868884320b50f130c" ]; then
echo Correct sha512sum
else
echo Wrong sha512sum
@ -140,7 +140,7 @@ references:
fi
tar -xvf spdlog.tar.gz
rm spdlog.tar.gz
cd spdlog-1.8.2
cd spdlog-1.8.5
echo Install spdlog
mkdir build

View File

@ -28,7 +28,7 @@ New features:
* Add a --create-missing-basedir and --create-missing-mountpoint flag to create the base directory and mount directory respectively, if they don't exist, skipping the confirmation prompt.
Other:
* Updated to spdlog 1.8.2
* Updated to spdlog 1.8.5
* Updated to ranges-v3 0.11.0
Version 0.10.3

View File

@ -4,7 +4,7 @@ class CryFSConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = [
"range-v3/0.11.0@ericniebler/stable",
"spdlog/1.8.2",
"spdlog/1.8.5",
]
generators = "cmake"
default_options = {