Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ports/cadons-ctus/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Cadons/ctus
REF ${VERSION}
SHA512 79ad70b945d0cb9ac64838dd4e76fa2ed18aa58e63d6b2ecfa20d313f6cfe4b50e42294ebef71e25b7d87d24b5b511decdc4f695987500f8726906925dcc4a97
SHA512 077c9070db249a2211bf725b81fb4d53f41bb25b4d4935167020313289993c3b981df3de30bcbc9bd4c811bd6af11f947adb0bbfb6507c99e86c65c9a7dbe17d
HEAD_REF main
)

Expand Down
2 changes: 1 addition & 1 deletion ports/cadons-ctus/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cadons-ctus",
"version": "1.0.0",
"version": "1.0.1",
"description": "Library implementing the tus protocol for resumable uploads",
"homepage": "https://github.com/Cadons/ctus",
"license": "MIT",
Expand Down
104 changes: 104 additions & 0 deletions ports/ctbench/fix-fmt-header.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
diff --git a/compiler-launcher/compiler-launcher.cpp b/compiler-launcher/compiler-launcher.cpp
index f106ff5..faa88ff 100644
--- a/compiler-launcher/compiler-launcher.cpp
+++ b/compiler-launcher/compiler-launcher.cpp
@@ -25,7 +25,7 @@

#include <nlohmann/json.hpp>

-#include <fmt/core.h>
+#include <fmt/format.h>

/// Concatenates an argument list into a command string
/// in which the arguments are separated by whitespaces.
diff --git a/grapher/include/grapher/utils/error.hpp b/grapher/include/grapher/utils/error.hpp
index 2ba3be0..085d8e2 100644
--- a/grapher/include/grapher/utils/error.hpp
+++ b/grapher/include/grapher/utils/error.hpp
@@ -7,7 +7,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

namespace grapher {

diff --git a/grapher/include/grapher/utils/json.hpp b/grapher/include/grapher/utils/json.hpp
index 9a1993f..076c8da 100644
--- a/grapher/include/grapher/utils/json.hpp
+++ b/grapher/include/grapher/utils/json.hpp
@@ -7,7 +7,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <sciplot/sciplot.hpp>

diff --git a/grapher/lib/grapher/plotters/compare.cpp b/grapher/lib/grapher/plotters/compare.cpp
index 0de0bd4..eee5626 100644
--- a/grapher/lib/grapher/plotters/compare.cpp
+++ b/grapher/lib/grapher/plotters/compare.cpp
@@ -5,7 +5,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <nlohmann/json.hpp>

diff --git a/grapher/lib/grapher/plotters/compare_by.cpp b/grapher/lib/grapher/plotters/compare_by.cpp
index ea3cd89..6899095 100644
--- a/grapher/lib/grapher/plotters/compare_by.cpp
+++ b/grapher/lib/grapher/plotters/compare_by.cpp
@@ -5,7 +5,7 @@
#include <string>
#include <vector>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <boost/container/small_vector.hpp>

diff --git a/grapher/lib/grapher/plotters/stack.cpp b/grapher/lib/grapher/plotters/stack.cpp
index 7bf5a9c..f4597e9 100644
--- a/grapher/lib/grapher/plotters/stack.cpp
+++ b/grapher/lib/grapher/plotters/stack.cpp
@@ -4,7 +4,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <sciplot/Plot2D.hpp>
#include <sciplot/sciplot.hpp>
diff --git a/grapher/lib/grapher/predicates.cpp b/grapher/lib/grapher/predicates.cpp
index a10e32c..069fe8f 100644
--- a/grapher/lib/grapher/predicates.cpp
+++ b/grapher/lib/grapher/predicates.cpp
@@ -5,7 +5,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <grapher/core.hpp>
#include <grapher/predicates.hpp>
diff --git a/grapher/lib/grapher/utils/cli.cpp b/grapher/lib/grapher/utils/cli.cpp
index a9b1711..c28e5a0 100644
--- a/grapher/lib/grapher/utils/cli.cpp
+++ b/grapher/lib/grapher/utils/cli.cpp
@@ -5,7 +5,7 @@

#include <llvm/Support/raw_ostream.h>

-#include <fmt/core.h>
+#include <fmt/format.h>

#include <grapher/utils/cli.hpp>
#include <grapher/utils/error.hpp>
1 change: 1 addition & 0 deletions ports/ctbench/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ vcpkg_from_github(
HEAD_REF main
PATCHES
fix_build_with_boost_1_88_0.diff
fix-fmt-header.patch
)

vcpkg_cmake_configure(
Expand Down
2 changes: 1 addition & 1 deletion ports/ctbench/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ctbench",
"version": "1.3.4",
"port-version": 2,
"port-version": 3,
"description": "Compiler-assisted variable size benchmarking for the study of C++ metaprogram compile times.",
"homepage": "https://github.com/JPenuchot/ctbench",
"documentation": "https://jpenuchot.github.io/ctbench-docs/",
Expand Down
Loading
Loading