aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/boost-process
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/boost-process
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/boost-process')
-rw-r--r--vcpkg/ports/boost-process/fix-filesystem.patch16
-rw-r--r--vcpkg/ports/boost-process/portfile.cmake17
-rw-r--r--vcpkg/ports/boost-process/vcpkg.json91
3 files changed, 124 insertions, 0 deletions
diff --git a/vcpkg/ports/boost-process/fix-filesystem.patch b/vcpkg/ports/boost-process/fix-filesystem.patch
new file mode 100644
index 0000000..4e95c14
--- /dev/null
+++ b/vcpkg/ports/boost-process/fix-filesystem.patch
@@ -0,0 +1,16 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b3ff9e7..a2b51c8 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -55,7 +55,10 @@ if(BOOST_PROCESS_USE_STD_FS)
+ target_compile_definitions(boost_process PUBLIC BOOST_PROCESS_USE_STD_FS)
+ target_compile_features(boost_process PUBLIC cxx_std_17)
+ else()
+- target_link_libraries(boost_process PUBLIC Boost::filesystem)
++ target_link_libraries(boost_process
++ PUBLIC
++ Boost::filesystem
++ )
+ endif()
+
+ if(WIN32)
diff --git a/vcpkg/ports/boost-process/portfile.cmake b/vcpkg/ports/boost-process/portfile.cmake
new file mode 100644
index 0000000..ee01ff4
--- /dev/null
+++ b/vcpkg/ports/boost-process/portfile.cmake
@@ -0,0 +1,17 @@
+# Automatically generated by scripts/boost/generate-ports.ps1
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO boostorg/process
+ REF boost-${VERSION}
+ SHA512 e1489f46669718308f09f5732ac66b56d89f647a2fa20c824e9e7008b5934217c201845c97de96d4f7837b854c3100ceb5d53fb0811e73f9ebb8b7da87c0f14f
+ HEAD_REF master
+ PATCHES
+ fix-filesystem.patch
+)
+
+set(FEATURE_OPTIONS "")
+boost_configure_and_install(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS ${FEATURE_OPTIONS}
+)
diff --git a/vcpkg/ports/boost-process/vcpkg.json b/vcpkg/ports/boost-process/vcpkg.json
new file mode 100644
index 0000000..3c7b14f
--- /dev/null
+++ b/vcpkg/ports/boost-process/vcpkg.json
@@ -0,0 +1,91 @@
+{
+ "$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
+ "name": "boost-process",
+ "version": "1.89.0",
+ "description": "Boost process module",
+ "homepage": "https://www.boost.org/libs/process",
+ "license": "BSL-1.0",
+ "supports": "!uwp & !emscripten & !android",
+ "dependencies": [
+ {
+ "name": "boost-algorithm",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-asio",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-assert",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-cmake",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-config",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-core",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-filesystem",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-fusion",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-headers",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-io",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-iterator",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-move",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-optional",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-system",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-throw-exception",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-tokenizer",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-type-index",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-type-traits",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-utility",
+ "version>=": "1.89.0"
+ },
+ {
+ "name": "boost-winapi",
+ "version>=": "1.89.0"
+ }
+ ]
+}