aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/structopt
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/structopt
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/structopt')
-rw-r--r--vcpkg/ports/structopt/0000-vendored-dependencies.patch79
-rw-r--r--vcpkg/ports/structopt/portfile.cmake42
-rw-r--r--vcpkg/ports/structopt/usage4
-rw-r--r--vcpkg/ports/structopt/vcpkg.json20
4 files changed, 145 insertions, 0 deletions
diff --git a/vcpkg/ports/structopt/0000-vendored-dependencies.patch b/vcpkg/ports/structopt/0000-vendored-dependencies.patch
new file mode 100644
index 0000000..03f0bea
--- /dev/null
+++ b/vcpkg/ports/structopt/0000-vendored-dependencies.patch
@@ -0,0 +1,79 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8c6f3dd..a85803b 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -36,6 +36,9 @@ option(STRUCTOPT_SAMPLES "Build structopt samples")
+ include(CMakePackageConfigHelpers)
+ include(GNUInstallDirs)
+
++find_package(magic_enum REQUIRED)
++find_package(unofficial-visit_struct REQUIRED)
++
+ add_library(structopt INTERFACE)
+ add_library(structopt::structopt ALIAS structopt)
+
+@@ -43,6 +46,9 @@ target_compile_features(structopt INTERFACE cxx_std_17)
+ target_include_directories(structopt INTERFACE
+ $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
+ $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>)
++target_link_libraries(structopt INTERFACE
++ magic_enum::magic_enum
++ unofficial::visit_struct::visit_struct)
+
+ if(STRUCTOPT_SAMPLES)
+ add_subdirectory(samples)
+diff --git a/include/structopt/app.hpp b/include/structopt/app.hpp
+index b60cc29..c89aa5d 100644
+--- a/include/structopt/app.hpp
++++ b/include/structopt/app.hpp
+@@ -6,7 +6,7 @@
+ #include <string>
+ #include <structopt/is_stl_container.hpp>
+ #include <structopt/parser.hpp>
+-#include <structopt/third_party/visit_struct/visit_struct.hpp>
++#include <visit_struct/visit_struct.hpp>
+ #include <type_traits>
+ #include <vector>
+
+diff --git a/include/structopt/parser.hpp b/include/structopt/parser.hpp
+index 5ef391c..1cbfc71 100644
+--- a/include/structopt/parser.hpp
++++ b/include/structopt/parser.hpp
+@@ -13,8 +13,8 @@
+ #include <structopt/is_number.hpp>
+ #include <structopt/is_specialization.hpp>
+ #include <structopt/sub_command.hpp>
+-#include <structopt/third_party/magic_enum/magic_enum.hpp>
+-#include <structopt/third_party/visit_struct/visit_struct.hpp>
++#include <magic_enum/magic_enum.hpp>
++#include <visit_struct/visit_struct.hpp>
+ #include <tuple>
+ #include <type_traits>
+ #include <utility>
+diff --git a/include/structopt/visitor.hpp b/include/structopt/visitor.hpp
+index f36c155..dbaa619 100644
+--- a/include/structopt/visitor.hpp
++++ b/include/structopt/visitor.hpp
+@@ -7,7 +7,7 @@
+ #include <string>
+ #include <structopt/is_specialization.hpp>
+ #include <structopt/string.hpp>
+-#include <structopt/third_party/visit_struct/visit_struct.hpp>
++#include <visit_struct/visit_struct.hpp>
+ #include <type_traits>
+ #include <vector>
+
+diff --git a/structoptConfig.cmake.in b/structoptConfig.cmake.in
+index 8f4580f..c272fe6 100644
+--- a/structoptConfig.cmake.in
++++ b/structoptConfig.cmake.in
+@@ -2,6 +2,9 @@
+
+ include(CMakeFindDependencyMacro)
+
++find_dependency(magic_enum)
++find_dependency(unofficial-visit_struct)
++
+ if (NOT TARGET structopt::structopt)
+ include(${CMAKE_CURRENT_LIST_DIR}/structoptTargets.cmake)
+ endif ()
diff --git a/vcpkg/ports/structopt/portfile.cmake b/vcpkg/ports/structopt/portfile.cmake
new file mode 100644
index 0000000..2647238
--- /dev/null
+++ b/vcpkg/ports/structopt/portfile.cmake
@@ -0,0 +1,42 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO p-ranav/structopt
+ REF "v${VERSION}"
+ SHA512 f284ec20379a1bfecfe1622e45d0570128455ecf0c24f2a1d26420c13a277112ca7ba350e2d40c0b0b37b38eba4ffa6ff164590b32262a5ba23186f7cd904511
+ HEAD_REF master
+ PATCHES
+ 0000-vendored-dependencies.patch
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DSTRUCTOPT_TESTS=OFF
+ -DSTRUCTOPT_SAMPLES=OFF
+)
+
+vcpkg_cmake_install()
+
+# Header-only library.
+vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/structopt")
+vcpkg_fixup_pkgconfig()
+
+# Delete all third-party header files vendored by the structopt library. The library has been patched to instead use
+# the external versions of these libraries.
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/structopt/third_party")
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
+
+vcpkg_install_copyright(
+ FILE_LIST
+ "${SOURCE_PATH}/LICENSE"
+)
+
+# Remove redundant license files that are installed by the library.
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/licenses)
+
+configure_file(
+ "${CMAKE_CURRENT_LIST_DIR}/usage"
+ "${CURRENT_PACKAGES_DIR}/share/${PORT}/usage"
+ COPYONLY
+)
diff --git a/vcpkg/ports/structopt/usage b/vcpkg/ports/structopt/usage
new file mode 100644
index 0000000..c643e25
--- /dev/null
+++ b/vcpkg/ports/structopt/usage
@@ -0,0 +1,4 @@
+structopt provides CMake targets:
+
+ find_package(structopt CONFIG REQUIRED)
+ target_link_libraries(main PRIVATE structopt::structopt)
diff --git a/vcpkg/ports/structopt/vcpkg.json b/vcpkg/ports/structopt/vcpkg.json
new file mode 100644
index 0000000..980418c
--- /dev/null
+++ b/vcpkg/ports/structopt/vcpkg.json
@@ -0,0 +1,20 @@
+{
+ "name": "structopt",
+ "version": "0.1.3",
+ "description": "Parse command line arguments by defining a struct.",
+ "homepage": "https://github.com/p-ranav/structopt",
+ "documentation": "https://github.com/p-ranav/structopt",
+ "license": "MIT",
+ "dependencies": [
+ "magic-enum",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ },
+ "visit-struct"
+ ]
+}