diff --git a/ports/c-dbg-macro/portfile.cmake b/ports/c-dbg-macro/portfile.cmake deleted file mode 100644 index 95dd96ceb679d7..00000000000000 --- a/ports/c-dbg-macro/portfile.cmake +++ /dev/null @@ -1,14 +0,0 @@ -# single header file library - -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO eerimoq/dbg-macro - REF 78b7655bd0cfc2389fe96a3b6584d2930eb7ebd7 - SHA512 f755c8cf17b422f43f09dcd4f8232b6130a5933d0ce537ce4874ecb886ad2fd5dee26fe12c10cb1554a3720a1263d0ce07252c0893de395b8c9042c9330e60be - HEAD_REF master -) - -file(COPY ${SOURCE_PATH}/include/dbg.h DESTINATION ${CURRENT_PACKAGES_DIR}/include) - -# Handle copyright -configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) diff --git a/ports/c-dbg-macro/vcpkg.json b/ports/c-dbg-macro/vcpkg.json deleted file mode 100644 index 0891d40d9e2f7c..00000000000000 --- a/ports/c-dbg-macro/vcpkg.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "c-dbg-macro", - "version-date": "2020-02-29", - "description": "A dbg(...) macro for C", - "homepage": "https://github.com/eerimoq/dbg-macro" -} diff --git a/ports/catch-classic/portfile.cmake b/ports/catch-classic/portfile.cmake deleted file mode 100644 index 097ba07daee0c0..00000000000000 --- a/ports/catch-classic/portfile.cmake +++ /dev/null @@ -1,16 +0,0 @@ -set(CATCH_VERSION v1.12.2) - -vcpkg_download_distfile(HEADER - URLS "https://github.com/catchorg/Catch2/releases/download/${CATCH_VERSION}/catch.hpp" - FILENAME "catch-classic-${CATCH_VERSION}.hpp" - SHA512 d2cf8b2fe95aae061a7771a0e1b7135583595d1f36dfc8d5e4d10e101ab58f6fac9d260f77c5760906c24aa402d7433aa82b5d6a0ca6b3ad91092dc5cc2d9c22 -) - -vcpkg_download_distfile(LICENSE - URLS "https://raw.githubusercontent.com/catchorg/Catch2/${CATCH_VERSION}/LICENSE.txt" - FILENAME "catch-classic-LICENSE-${CATCH_VERSION}.txt" - SHA512 d6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8 -) - -file(INSTALL ${HEADER} DESTINATION ${CURRENT_PACKAGES_DIR}/include RENAME catch.hpp) -file(INSTALL ${LICENSE} DESTINATION ${CURRENT_PACKAGES_DIR}/share/catch-classic RENAME copyright) diff --git a/ports/catch-classic/vcpkg.json b/ports/catch-classic/vcpkg.json deleted file mode 100644 index 75d76b103e1c4c..00000000000000 --- a/ports/catch-classic/vcpkg.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "catch-classic", - "version": "1.12.2", - "port-version": 2, - "description": [ - "A modern, header-only test framework for unit tests", - "This is specifically the legacy 1.x branch provided for compatibility", - "with older compilers." - ], - "homepage": "https://github.com/catchorg/Catch2" -} diff --git a/ports/chromium-base/chromium-baseConfig.cmake.in b/ports/chromium-base/chromium-baseConfig.cmake.in deleted file mode 100644 index 95ce316c655f04..00000000000000 --- a/ports/chromium-base/chromium-baseConfig.cmake.in +++ /dev/null @@ -1,81 +0,0 @@ -if(TARGET chromium-base) - return() -endif() - -set(DEFINITIONS_DBG @DEFINITIONS_DBG@) -set(DEFINITIONS_REL @DEFINITIONS_DBG@) - -# Compute the installation prefix relative to this file. -get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) -if(_IMPORT_PREFIX STREQUAL "/") - set(_IMPORT_PREFIX "") -endif() - -add_library(chromium-base INTERFACE IMPORTED GLOBAL) -add_library(chromium-base::chromium-base ALIAS chromium-base) - -set(LIBRARIES_ chromium_base chromium_base_static dynamic_annotations double_conversion) - -if(WIN32) - list(APPEND LIBRARIES_ - cfgmgr32 - powrprof - propsys - setupapi - userenv - wbemuuid - winmm - advapi32 - comdlg32 - dbghelp - dnsapi - gdi32 - msimg32 - odbc32 - odbccp32 - oleaut32 - shell32 - shlwapi - user32 - usp10 - uuid - version - wininet - winspool - ws2_32 - delayimp - kernel32 - ole32) -elseif(APPLE) - list(APPEND LIBRARIES_ - ApplicationServices - AppKit - CoreFoundation - IOKit - OpenDirectory - Security - bsm - pmenergy - pmsample) -endif() - -foreach(LIB_NAME ${LIBRARIES_}) - find_library(_LIB NAMES ${LIB_NAME} ${LIB_NAME}.dll) - target_link_libraries(chromium-base INTERFACE ${_LIB}) - unset(_LIB CACHE) -endforeach() - -if(UNIX AND NOT APPLE) - target_link_libraries(chromium-base INTERFACE -ldl -latomic -lpthread) -endif() - -target_include_directories(chromium-base - INTERFACE ${_IMPORT_PREFIX}/include/chromium-base) - -target_compile_definitions(chromium-base INTERFACE - $<$:${DEFINITIONS_DBG}> - $<$:${DEFINITIONS_REL}>) - -target_compile_features(chromium-base INTERFACE cxx_std_14) diff --git a/ports/chromium-base/portfile.cmake b/ports/chromium-base/portfile.cmake deleted file mode 100644 index d9e6e8e6a4f531..00000000000000 --- a/ports/chromium-base/portfile.cmake +++ /dev/null @@ -1,152 +0,0 @@ -# Patches may be provided at the end -function(checkout_in_path PATH URL REF) - if(EXISTS "${PATH}") - file(GLOB FILES "${PATH}") - list(LENGTH FILES COUNT) - if(COUNT GREATER 0) - return() - endif() - file(REMOVE_RECURSE "${PATH}") - endif() - - vcpkg_from_git( - OUT_SOURCE_PATH DEP_SOURCE_PATH - URL "${URL}" - REF "${REF}" - PATCHES "${ARGN}" - ) - file(RENAME "${DEP_SOURCE_PATH}" "${PATH}") - file(REMOVE_RECURSE "${DEP_SOURCE_PATH}") -endfunction() - -# Commits are based on https://chromium.googlesource.com/chromium/src/+/refs/tags/86.0.4199.1 -set(SOURCE_PATH "${CURRENT_BUILDTREES_DIR}/src/25ce732") -file(MAKE_DIRECTORY "${SOURCE_PATH}/third_party") - -set(CHROMIUM_GIT "https://chromium.googlesource.com/chromium/src") -checkout_in_path( - "${SOURCE_PATH}/base" - "${CHROMIUM_GIT}/base" - "25ce73258703a5ac018da0e203fb3d4a98c2136e" - res/0001-base.patch) -checkout_in_path( - "${SOURCE_PATH}/build" - "${CHROMIUM_GIT}/build" - "312532ee66abdacbe58afb5df7ddf05e3a6399f9" - res/0002-build.patch) -checkout_in_path( - "${SOURCE_PATH}/third_party/apple_apsl" - "${CHROMIUM_GIT}/third_party/apple_apsl" - "4cc25bbf65194f6726f7f10da0a885818e35d53e") -checkout_in_path( - "${SOURCE_PATH}/third_party/ced" - "${CHROMIUM_GIT}/third_party/ced" - "4cd87a44674edd9fe1f01c4cb5f1b73907ce4236") -checkout_in_path( - "${SOURCE_PATH}/third_party/modp_b64" - "${CHROMIUM_GIT}/third_party/modp_b64" - "509f005fa65e652dc4a6f636da6fa1002b6dce16") - -set(RES "${CMAKE_CURRENT_LIST_DIR}/res") -file(COPY "${RES}/.gn" DESTINATION "${SOURCE_PATH}") -file(COPY "${RES}/BUILD.gn" DESTINATION "${SOURCE_PATH}") -file(COPY "${RES}/build_overrides" DESTINATION "${SOURCE_PATH}") -file(COPY "${RES}/testing" DESTINATION "${SOURCE_PATH}") -file(COPY "${RES}/tools" DESTINATION "${SOURCE_PATH}") -file(COPY "${RES}/gclient_args.gni" DESTINATION "${SOURCE_PATH}/build/config") -file(COPY "${RES}/LASTCHANGE.committime" DESTINATION "${SOURCE_PATH}/build/util") -file(COPY "${RES}/icu" DESTINATION "${SOURCE_PATH}/third_party") -file(COPY "${RES}/libxml" DESTINATION "${SOURCE_PATH}/third_party") -file(COPY "${RES}/protobuf" DESTINATION "${SOURCE_PATH}/third_party") -file(COPY "${RES}/fontconfig" DESTINATION "${SOURCE_PATH}/third_party") -file(COPY "${RES}/test_fonts" DESTINATION "${SOURCE_PATH}/third_party") - -set(OPTIONS "\ - use_custom_libcxx=false \ - clang_use_chrome_plugins=false \ - forbid_non_component_debug_builds=false \ - treat_warnings_as_errors=false") -set(DEFINITIONS "") - -if(VCPKG_TARGET_IS_WINDOWS) - # Windows 10 SDK >= (10.0.19041.0) is required - # https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk - SET(VCPKG_POLICY_SKIP_ARCHITECTURE_CHECK enabled) - set(ENV{DEPOT_TOOLS_WIN_TOOLCHAIN} 0) - set(OPTIONS "${OPTIONS} use_lld=false") -endif() - -if(VCPKG_TARGET_IS_LINUX) - set(OPTIONS "${OPTIONS} use_allocator=\"none\" use_sysroot=false use_glib=false") -endif() - -# Find the directory that contains "bin/clang" -# Note: Only clang-cl is supported on Windows, see https://crbug.com/988071 -vcpkg_find_acquire_program(CLANG) -if(CLANG MATCHES "-NOTFOUND") - message(FATAL_ERROR "Clang is required.") -endif() -get_filename_component(CLANG "${CLANG}" DIRECTORY) -get_filename_component(CLANG "${CLANG}" DIRECTORY) -if((VCPKG_TARGET_IS_WINDOWS AND NOT EXISTS "${CLANG}/bin/clang-cl.exe") OR - (VCPKG_TARGET_IS_OSX AND NOT EXISTS "${CLANG}/bin/clang")) - message(FATAL_ERROR "Clang needs to be inside a bin directory.") -endif() -set(OPTIONS "${OPTIONS} clang_base_path=\"${CLANG}\"") - -if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic) - set(OPTIONS "${OPTIONS} is_component_build=true") - list(APPEND DEFINITIONS COMPONENT_BUILD) -else() - set(OPTIONS "${OPTIONS} is_component_build=false") -endif() - -if(VCPKG_TARGET_IS_OSX) - set(OPTIONS "${OPTIONS} enable_dsyms=true") -endif() - -set(OPTIONS_DBG "${OPTIONS} is_debug=true symbol_level=2") -set(OPTIONS_REL "${OPTIONS} is_debug=false symbol_level=0") -set(DEFINITIONS_DBG ${DEFINITIONS}) -set(DEFINITIONS_REL ${DEFINITIONS}) - -vcpkg_gn_configure( - SOURCE_PATH "${SOURCE_PATH}" - OPTIONS_DEBUG "${OPTIONS_DBG}" - OPTIONS_RELEASE "${OPTIONS_REL}" -) - -# Prevent a ninja re-config loop -set(NINJA_REBUILD "build build.ninja: gn\n generator = 1\n depfile = build.ninja.d") -vcpkg_replace_string("${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/build.ninja" "${NINJA_REBUILD}" "") -vcpkg_replace_string("${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/build.ninja" "${NINJA_REBUILD}" "") - -set(TARGETS - base base:base_static - base/third_party/dynamic_annotations - base/third_party/double_conversion) - -if(VCPKG_TARGET_IS_WINDOWS) - list(APPEND TARGETS base/win:pe_image) -endif() - -vcpkg_gn_install( - SOURCE_PATH "${SOURCE_PATH}" - TARGETS ${TARGETS} -) - -# Install includes -set(PACKAGES_INCLUDE_DIR "${CURRENT_PACKAGES_DIR}/include/${PORT}") -file(GLOB_RECURSE INCLUDE_FILES LIST_DIRECTORIES false RELATIVE "${SOURCE_PATH}" "${SOURCE_PATH}/*.h") -foreach(file_ ${INCLUDE_FILES}) - configure_file("${SOURCE_PATH}/${file_}" "${PACKAGES_INCLUDE_DIR}/${file_}" COPYONLY) -endforeach() - -configure_file("${CMAKE_CURRENT_LIST_DIR}/chromium-baseConfig.cmake.in" - "${CURRENT_PACKAGES_DIR}/share/${PORT}/chromium-baseConfig.cmake" @ONLY) - -vcpkg_copy_pdbs() - -file(INSTALL "${SOURCE_PATH}/third_party/ced/LICENSE" - DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" - RENAME copyright) diff --git a/ports/chromium-base/res/.gn b/ports/chromium-base/res/.gn deleted file mode 100644 index 4fcb7c405ff334..00000000000000 --- a/ports/chromium-base/res/.gn +++ /dev/null @@ -1 +0,0 @@ -buildconfig = "//build/config/BUILDCONFIG.gn" \ No newline at end of file diff --git a/ports/chromium-base/res/0001-base.patch b/ports/chromium-base/res/0001-base.patch deleted file mode 100644 index ca8c059756d80f..00000000000000 --- a/ports/chromium-base/res/0001-base.patch +++ /dev/null @@ -1,101 +0,0 @@ -diff --git a/BUILD.gn b/BUILD.gn -index 7b7cd51..2961688 100644 ---- a/BUILD.gn -+++ b/BUILD.gn -@@ -155,6 +155,7 @@ if (is_android) { - # test code (test support and anything in the test directory) which should use - # source_set as is recommended for GN targets). - jumbo_component("base") { -+ output_name = "chromium_base" - if (is_nacl || is_ios) { - # Link errors related to malloc functions if libbase for nacl is - # compiled with jumbo: https://crbug.com/775959. -@@ -162,6 +163,11 @@ jumbo_component("base") { - never_build_jumbo = true - } - -+ if (!is_component_build) { -+ complete_static_lib = true -+ configs -= [ "//build/config/compiler:thin_archive" ] -+ } -+ - sources = [ - "allocator/allocator_check.cc", - "allocator/allocator_check.h", -@@ -1638,7 +1644,7 @@ jumbo_component("base") { - "hash/md5_constexpr_internal.h", - "hash/sha1.h", - ] -- if (is_nacl) { -+ if (true) { - sources += [ - "hash/md5_nacl.cc", - "hash/md5_nacl.h", -@@ -2298,6 +2304,7 @@ buildflag_header("tracing_buildflags") { - # library. Note that this library cannot depend on base because base depends on - # base_static. - static_library("base_static") { -+ output_name = "chromium_base_static" - sources = [ - "base_switches.cc", - "base_switches.h", -@@ -2325,7 +2332,7 @@ static_library("base_static") { - } - - component("i18n") { -- output_name = "base_i18n" -+ output_name = "chromium_base_i18n" - sources = [ - "i18n/base_i18n_export.h", - "i18n/base_i18n_switches.cc", -diff --git a/gtest_prod_util.h b/gtest_prod_util.h -index 2ca267e..0a0b6df 100644 ---- a/gtest_prod_util.h -+++ b/gtest_prod_util.h -@@ -5,7 +5,8 @@ - #ifndef BASE_GTEST_PROD_UTIL_H_ - #define BASE_GTEST_PROD_UTIL_H_ - --#include "testing/gtest/include/gtest/gtest_prod.h" // nogncheck -+#define FRIEND_TEST(test_case_name, test_name)\ -+friend class test_case_name##_##test_name##_Test - - // This is a wrapper for gtest's FRIEND_TEST macro that friends - // test with all possible prefixes. This is very helpful when changing the test -diff --git a/hash/md5.h b/hash/md5.h -index 8a49f08..24acdab 100644 ---- a/hash/md5.h -+++ b/hash/md5.h -@@ -11,7 +11,7 @@ - #include "base/strings/string_piece.h" - #include "build/build_config.h" - --#if defined(OS_NACL) -+#if true - #include "base/hash/md5_nacl.h" - #else - #include "base/hash/md5_boringssl.h" -diff --git a/hash/md5_nacl.cc b/hash/md5_nacl.cc -index 827bbbd..4b22c59 100644 ---- a/hash/md5_nacl.cc -+++ b/hash/md5_nacl.cc -@@ -22,6 +22,7 @@ - */ - - #include -+#include - - #include "base/hash/md5.h" - -diff --git a/profiler/stack_copier_signal.cc b/profiler/stack_copier_signal.cc -index 5a7d8b9..f959f2f 100644 ---- a/profiler/stack_copier_signal.cc -+++ b/profiler/stack_copier_signal.cc -@@ -6,6 +6,7 @@ - - #include - #include -+#include - #include - #include - diff --git a/ports/chromium-base/res/0002-build.patch b/ports/chromium-base/res/0002-build.patch deleted file mode 100644 index 94568d1690e317..00000000000000 --- a/ports/chromium-base/res/0002-build.patch +++ /dev/null @@ -1,144 +0,0 @@ -diff --git a/config/BUILDCONFIG.gn b/config/BUILDCONFIG.gn -index 4cc6bfc..9ea83a9 100644 ---- a/config/BUILDCONFIG.gn -+++ b/config/BUILDCONFIG.gn -@@ -657,6 +657,7 @@ template("component") { - # See http://crbug.com/594610 - forward_variables_from(invoker, [ "visibility" ]) - forward_variables_from(invoker, "*", [ "visibility" ]) -+ not_needed("*") - } - } - -diff --git a/config/clang/BUILD.gn b/config/clang/BUILD.gn -index 960726e..87886dc 100644 ---- a/config/clang/BUILD.gn -+++ b/config/clang/BUILD.gn -@@ -38,5 +38,7 @@ config("extra_warnings") { - "-Wstring-conversion", - - "-Wtautological-overlap-compare", -+ "-Wno-unknown-warning-option", -+ "-Wno-unknown-pragmas" - ] - } -diff --git a/config/mac/sdk_info.py b/config/mac/sdk_info.py -index 1ad11d3..99b21f9 100644 ---- a/config/mac/sdk_info.py -+++ b/config/mac/sdk_info.py -@@ -61,10 +61,15 @@ def FillXcodeVersion(settings, developer_dir): - settings['xcode_build'] = version_plist['ProductBuildVersion'] - return - -- lines = subprocess.check_output(['xcodebuild', '-version']).splitlines() -- settings['xcode_version'] = FormatVersion(lines[0].split()[-1]) -- settings['xcode_version_int'] = int(settings['xcode_version'], 10) -- settings['xcode_build'] = lines[-1].split()[-1] -+ try: -+ lines = subprocess.check_output(['xcodebuild', '-version']).splitlines() -+ settings['xcode_version'] = FormatVersion(lines[0].split()[-1]) -+ settings['xcode_version_int'] = int(settings['xcode_version'], 10) -+ settings['xcode_build'] = lines[-1].split()[-1] -+ except: -+ settings['xcode_version'] = "" -+ settings['xcode_version_int'] = 0 -+ settings['xcode_build'] = "" - - - def FillMachineOSBuild(settings): -diff --git a/mac/find_sdk.py b/mac/find_sdk.py -index 58362bf..a6069b6 100755 ---- a/mac/find_sdk.py -+++ b/mac/find_sdk.py -@@ -68,6 +68,8 @@ def main(): - dev_dir = out.rstrip() - sdk_dir = os.path.join( - dev_dir, 'Platforms/MacOSX.platform/Developer/SDKs') -+ if not os.path.isdir(sdk_dir): -+ sdk_dir = os.path.join(dev_dir, 'SDKs') - - if not os.path.isdir(sdk_dir): - raise SdkError('Install Xcode, launch it, accept the license ' + -@@ -87,7 +89,10 @@ def main(): - - if options.print_bin_path: - bin_path = 'Toolchains/XcodeDefault.xctoolchain/usr/bin/' -- print(os.path.join(dev_dir, bin_path)) -+ if os.path.isdir(os.path.join(dev_dir, bin_path)): -+ print(os.path.join(dev_dir, bin_path)) -+ else: -+ print(os.path.join(dev_dir, 'usr/bin/')) - - return best_sdk - -diff --git a/toolchain/mac/BUILD.gn b/toolchain/mac/BUILD.gn -index 8fdada0..8d5e6b7 100644 ---- a/toolchain/mac/BUILD.gn -+++ b/toolchain/mac/BUILD.gn -@@ -184,9 +184,9 @@ template("mac_toolchain") { - # If dSYMs are enabled, this flag will be added to the link tools. - if (_enable_dsyms) { - dsym_switch = " -Wcrl,dsym,{{root_out_dir}} " -- dsym_switch += "-Wcrl,dsymutilpath," + -- rebase_path("//tools/clang/dsymutil/bin/dsymutil", -- root_build_dir) + " " -+ # dsym_switch += "-Wcrl,dsymutilpath," + -+ # rebase_path("//tools/clang/dsymutil/bin/dsymutil", -+ # root_build_dir) + " " - - dsym_output_dir = - "{{root_out_dir}}/{{target_output_name}}{{output_extension}}.dSYM" -diff --git a/toolchain/win/BUILD.gn b/toolchain/win/BUILD.gn -index be08930..04fb374 100644 ---- a/toolchain/win/BUILD.gn -+++ b/toolchain/win/BUILD.gn -@@ -98,7 +98,7 @@ template("msvc_toolchain") { - } else { - lld_link = "lld-link" - } -- prefix = rebase_path("$clang_base_path/bin", root_build_dir) -+ prefix = "$clang_base_path/bin" - - # lld-link includes a replacement for lib.exe that can produce thin - # archives and understands bitcode (for lto builds). -@@ -190,7 +190,7 @@ template("msvc_toolchain") { - # amount of data to parse and store in .ninja_deps. We do this on non-Windows too, - # and already make sure rebuilds after win sdk / libc++ / clang header updates happen via - # changing commandline flags. -- show_includes = "/showIncludes:user" -+ show_includes = "" - } else { - show_includes = "/showIncludes" - } -@@ -235,7 +235,7 @@ template("msvc_toolchain") { - - if (toolchain_args.current_cpu == "arm64") { - if (is_clang) { -- prefix = rebase_path("$clang_base_path/bin", root_build_dir) -+ prefix = "$clang_base_path/bin" - ml = "${clang_prefix}${prefix}/${clang_cl} --target=arm64-windows" - if (host_os == "win") { - # Flip the slashes so that copy/paste of the command works. -@@ -444,11 +444,9 @@ template("win_toolchains") { - - msvc_toolchain("win_clang_" + target_name) { - environment = "environment." + toolchain_arch -- prefix = rebase_path("$clang_base_path/bin", root_build_dir) -+ prefix = "$clang_base_path/bin" - cl = "${clang_prefix}$prefix/${clang_cl}" -- _clang_lib_dir = -- rebase_path("$clang_base_path/lib/clang/$clang_version/lib/windows", -- root_build_dir) -+ _clang_lib_dir = "$clang_base_path/lib/clang/$clang_version/lib/windows" - if (host_os == "win") { - # Flip the slashes so that copy/paste of the command works. - cl = string_replace(cl, "/", "\\") -@@ -459,7 +457,7 @@ template("win_toolchains") { - - sys_include_flags = "${win_toolchain_data.include_flags_imsvc}" - sys_lib_flags = -- "-libpath:$_clang_lib_dir ${win_toolchain_data.libpath_flags}" -+ "-libpath:\"$_clang_lib_dir\" ${win_toolchain_data.libpath_flags}" - - toolchain_args = { - if (defined(invoker.toolchain_args)) { diff --git a/ports/chromium-base/res/BUILD.gn b/ports/chromium-base/res/BUILD.gn deleted file mode 100644 index 01d935ba02527f..00000000000000 --- a/ports/chromium-base/res/BUILD.gn +++ /dev/null @@ -1,5 +0,0 @@ -static_library("chromium-base") { - deps = [ - "//base", - ] -} diff --git a/ports/chromium-base/res/LASTCHANGE.committime b/ports/chromium-base/res/LASTCHANGE.committime deleted file mode 100644 index 6acbbf6910963e..00000000000000 --- a/ports/chromium-base/res/LASTCHANGE.committime +++ /dev/null @@ -1 +0,0 @@ -1594430814 \ No newline at end of file diff --git a/ports/chromium-base/res/build_overrides/build.gni b/ports/chromium-base/res/build_overrides/build.gni deleted file mode 100644 index 47ac036443fb64..00000000000000 --- a/ports/chromium-base/res/build_overrides/build.gni +++ /dev/null @@ -1,16 +0,0 @@ -import("//build/config/gclient_args.gni") - -# Some non-Chromium builds don't support building java targets. -enable_java_templates = true - -# Don't use Chromium's third_party/binutils. -linux_use_bundled_binutils_override = false - -# Tracing requires //third_party/perfetto. -enable_base_tracing = false - -# Skip assertions about 4GiB file size limit. See https://crbug.com/648948. -ignore_elf32_limitations = false - -# Use the system install of Xcode for tools like ibtool, libtool, etc. -use_system_xcode = true diff --git a/ports/chromium-base/res/fontconfig/BUILD.gn b/ports/chromium-base/res/fontconfig/BUILD.gn deleted file mode 100644 index 5c26eaf19c3ed9..00000000000000 --- a/ports/chromium-base/res/fontconfig/BUILD.gn +++ /dev/null @@ -1 +0,0 @@ -component("fontconfig") {} \ No newline at end of file diff --git a/ports/chromium-base/res/gclient_args.gni b/ports/chromium-base/res/gclient_args.gni deleted file mode 100644 index bd1145a79d5413..00000000000000 --- a/ports/chromium-base/res/gclient_args.gni +++ /dev/null @@ -1,7 +0,0 @@ -build_with_chromium = true -checkout_android = false -checkout_android_native_support = false -checkout_ios_webkit = false -checkout_nacl = false -checkout_oculus_sdk = false -checkout_openxr = false \ No newline at end of file diff --git a/ports/chromium-base/res/icu/BUILD.gn b/ports/chromium-base/res/icu/BUILD.gn deleted file mode 100644 index 22356981f3b55b..00000000000000 --- a/ports/chromium-base/res/icu/BUILD.gn +++ /dev/null @@ -1,2 +0,0 @@ -component("icuuc") {} -component("icu") {} \ No newline at end of file diff --git a/ports/chromium-base/res/icu/config.gni b/ports/chromium-base/res/icu/config.gni deleted file mode 100644 index 4e9ad6a5ee9f93..00000000000000 --- a/ports/chromium-base/res/icu/config.gni +++ /dev/null @@ -1,3 +0,0 @@ -declare_args() { - icu_use_data_file = false -} \ No newline at end of file diff --git a/ports/chromium-base/res/libxml/BUILD.gn b/ports/chromium-base/res/libxml/BUILD.gn deleted file mode 100644 index b48056ab882c4f..00000000000000 --- a/ports/chromium-base/res/libxml/BUILD.gn +++ /dev/null @@ -1,2 +0,0 @@ -component("libxml_utils") {} -component("xml_reader") {} \ No newline at end of file diff --git a/ports/chromium-base/res/protobuf/proto_library.gni b/ports/chromium-base/res/protobuf/proto_library.gni deleted file mode 100644 index e69de29bb2d1d6..00000000000000 diff --git a/ports/chromium-base/res/test_fonts/BUILD.gn b/ports/chromium-base/res/test_fonts/BUILD.gn deleted file mode 100644 index b95c104e1f372a..00000000000000 --- a/ports/chromium-base/res/test_fonts/BUILD.gn +++ /dev/null @@ -1 +0,0 @@ -component("test_fonts") {} \ No newline at end of file diff --git a/ports/chromium-base/res/testing/gmock/BUILD.gn b/ports/chromium-base/res/testing/gmock/BUILD.gn deleted file mode 100644 index acd0ec30c0963d..00000000000000 --- a/ports/chromium-base/res/testing/gmock/BUILD.gn +++ /dev/null @@ -1 +0,0 @@ -component("gmock") {} \ No newline at end of file diff --git a/ports/chromium-base/res/testing/gtest/BUILD.gn b/ports/chromium-base/res/testing/gtest/BUILD.gn deleted file mode 100644 index 2463cc7c0d82d3..00000000000000 --- a/ports/chromium-base/res/testing/gtest/BUILD.gn +++ /dev/null @@ -1 +0,0 @@ -component("gtest") {} \ No newline at end of file diff --git a/ports/chromium-base/res/testing/libfuzzer/fuzzer_test.gni b/ports/chromium-base/res/testing/libfuzzer/fuzzer_test.gni deleted file mode 100644 index 6e2a4c20fea4e1..00000000000000 --- a/ports/chromium-base/res/testing/libfuzzer/fuzzer_test.gni +++ /dev/null @@ -1 +0,0 @@ -import("//testing/test.gni") \ No newline at end of file diff --git a/ports/chromium-base/res/testing/test.gni b/ports/chromium-base/res/testing/test.gni deleted file mode 100644 index 2d6f8c10352558..00000000000000 --- a/ports/chromium-base/res/testing/test.gni +++ /dev/null @@ -1,20 +0,0 @@ -template("test") { - not_needed(invoker, "*") - not_needed("*") -} - -set_defaults("test") { - configs = [ - "//build/config/compiler:chromium_code" - ] -} - -template("fuzzer_test") { - not_needed(invoker, "*") - not_needed("*") -} - -template("protoc_convert") { - not_needed(invoker, "*") - not_needed("*") -} \ No newline at end of file diff --git a/ports/chromium-base/res/tools/win/DebugVisualizers/BUILD.gn b/ports/chromium-base/res/tools/win/DebugVisualizers/BUILD.gn deleted file mode 100644 index 5c2c1f68e14e66..00000000000000 --- a/ports/chromium-base/res/tools/win/DebugVisualizers/BUILD.gn +++ /dev/null @@ -1 +0,0 @@ -config("chrome") {} \ No newline at end of file diff --git a/ports/chromium-base/res/tools/win/DebugVisualizers/chrome.natvis b/ports/chromium-base/res/tools/win/DebugVisualizers/chrome.natvis deleted file mode 100644 index e69de29bb2d1d6..00000000000000 diff --git a/ports/chromium-base/vcpkg.json b/ports/chromium-base/vcpkg.json deleted file mode 100644 index 5fa9c7d57a4c29..00000000000000 --- a/ports/chromium-base/vcpkg.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "chromium-base", - "version": "86.0.4199.1", - "port-version": 6, - "description": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.", - "homepage": "https://chromium.googlesource.com/chromium/src", - "license": "BSD-3-Clause", - "supports": "x64 & (osx | windows | linux) & !uwp", - "dependencies": [ - { - "name": "vcpkg-gn", - "host": true - }, - { - "name": "vcpkg-tool-gn", - "host": true - } - ] -} diff --git a/ports/ijg-libjpeg/CMakeLists.txt b/ports/ijg-libjpeg/CMakeLists.txt deleted file mode 100644 index 8148210f4ca7ea..00000000000000 --- a/ports/ijg-libjpeg/CMakeLists.txt +++ /dev/null @@ -1,65 +0,0 @@ -cmake_minimum_required(VERSION 3.16) -project(libjpeg LANGUAGES C) - -option(BUILD_EXECUTABLES OFF) - -# -# jconfig.h is a public header, so it must be genrated. Please reference the install.txt in jpegsr9d.zip -# -# jconfig.txt should contain #cmakedefine which is modified by porfile.cmake of ijg-libjpeg port in VcPkg -# By doing this we can skip 'configure' step. Visit https://github.com/LuaDist/libjpeg -# -include(CheckIncludeFile) -check_include_file(stddef.h HAVE_STDDEF_H) -check_include_file(stdlib.h HAVE_STDLIB_H) -configure_file(jconfig.txt ${CMAKE_CURRENT_BINARY_DIR}/jconfig.h) - -list(APPEND PUBLIC_HEADERS jpeglib.h jerror.h jmorecfg.h ${CMAKE_CURRENT_BINARY_DIR}/jconfig.h) - -add_library(jpeg - ${PUBLIC_HEADERS} jinclude.h jpegint.h jversion.h - transupp.h jidctflt.c jidctfst.c jidctint.c jquant1.c jquant2.c jutils.c jmemnobs.c jaricom.c jerror.c jdatadst.c jdatasrc.c - jmemsys.h - jmemmgr.c - cdjpeg.h cderror.h - jcmaster.c jcmarker.c jcmainct.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c jcsample.c jctrans.c jcinit.c jcomapi.c jcparam.c jcprepct.c - jdmaster.c jdmarker.c jdmainct.c jdapimin.c jdapistd.c jdarith.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c jdsample.c jdtrans.c jdinput.c jdmerge.c jdpostct.c - jdct.h - jfdctflt.c jfdctfst.c jfdctint.c -) - -if(WIN32) - target_compile_definitions(jpeg - PRIVATE - _CRT_SECURE_NO_WARNINGS - ) -endif() - -target_include_directories(jpeg PRIVATE include ${CMAKE_CURRENT_BINARY_DIR}) - -install(FILES ${PUBLIC_HEADERS} - DESTINATION ${CMAKE_INSTALL_PREFIX}/include -) -install(TARGETS jpeg - RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin - LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib - ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib -) - -if(BUILD_EXECUTABLES) - add_executable(cjpeg cdjpeg.c cjpeg.c rdbmp.c rdgif.c rdppm.c rdrle.c rdtarga.c rdswitch.c) - target_link_libraries(cjpeg PRIVATE jpeg) - - add_executable(djpeg cdjpeg.c djpeg.c wrbmp.c wrgif.c wrppm.c wrrle.c wrtarga.c rdcolmap.c) - target_link_libraries(djpeg PRIVATE jpeg) - - add_executable(jpegtran jpegtran.c cdjpeg.c rdswitch.c transupp.c) - target_link_libraries(jpegtran PRIVATE jpeg) - - add_executable(rdjpgcom rdjpgcom.c) - add_executable(wrjpgcom wrjpgcom.c) - - install(TARGETS cjpeg djpeg jpegtran rdjpgcom wrjpgcom - DESTINATION ${CMAKE_INSTALL_PREFIX}/tools - ) -endif() diff --git a/ports/ijg-libjpeg/portfile.cmake b/ports/ijg-libjpeg/portfile.cmake deleted file mode 100644 index 0e88be59d00d33..00000000000000 --- a/ports/ijg-libjpeg/portfile.cmake +++ /dev/null @@ -1,50 +0,0 @@ -if(EXISTS ${CURRENT_INSTALLED_DIR}/share/libjpeg-turbo/copyright) - message(FATAL_ERROR "'${PORT}' conflicts with 'libturbo-jpeg'. Please remove libturbo-jpeg:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() -if(EXISTS ${CURRENT_INSTALLED_DIR}/share/mozjpeg/copyright) - message(FATAL_ERROR "'${PORT}' conflicts with 'mozjpeg'. Please remove mozjpeg:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() - -if(VCPKG_TARGET_IS_WINDOWS) - vcpkg_check_linkage(ONLY_STATIC_LIBRARY) -endif() - -vcpkg_download_distfile(ARCHIVE - URLS "http://www.ijg.org/files/jpegsr${VERSION}.zip" - FILENAME "jpegsr${VERSION}.zip" - SHA512 f43e7cab21fb60d41c7a6842f5859ebeac34267f985870d999cc2e7e9e90ee552d667f054c0f162ef5e5ebaab87e285631432a7ca8441ba9837c4caa4fdf51ac -) -vcpkg_extract_source_archive( - SOURCE_PATH - ARCHIVE ${ARCHIVE} -) - -# Replace some #define in jconfig.txt to #cmakedefine so the CMakeLists.txt can run `configure_file` command. -# See https://github.com/LuaDist/libjpeg -vcpkg_replace_string("${SOURCE_PATH}/jconfig.txt" - "#define HAVE_STDDEF_H" - "#cmakedefine HAVE_STDDEF_H" -) -vcpkg_replace_string("${SOURCE_PATH}/jconfig.txt" - "#define HAVE_STDLIB_H" - "#cmakedefine HAVE_STDLIB_H" -) - -file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") - -vcpkg_cmake_configure( - SOURCE_PATH "${SOURCE_PATH}" - OPTIONS - -DBUILD_EXECUTABLES=OFF # supports [tools] feature to enable this option? -) -vcpkg_cmake_install() -vcpkg_copy_pdbs() - -# There is no LICENSE file, but README containes some legal text. -vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/README") - -if(VCPKG_LIBRARY_LINKAGE STREQUAL static) - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") diff --git a/ports/ijg-libjpeg/vcpkg.json b/ports/ijg-libjpeg/vcpkg.json deleted file mode 100644 index 34fd9605c36d5b..00000000000000 --- a/ports/ijg-libjpeg/vcpkg.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "ijg-libjpeg", - "version-string": "9f", - "description": "Independent JPEG Group's JPEG software", - "homepage": "http://www.ijg.org/", - "license": null, - "supports": "!emscripten & !wasm32", - "dependencies": [ - { - "name": "vcpkg-cmake", - "host": true - }, - { - "name": "vcpkg-cmake-config", - "host": true - } - ] -} diff --git a/ports/libmesh/copyright b/ports/libmesh/copyright deleted file mode 100644 index a9121567759efa..00000000000000 --- a/ports/libmesh/copyright +++ /dev/null @@ -1,169 +0,0 @@ -GNU LESSER GENERAL PUBLIC LICENSE -Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] -Preamble -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. - -This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. - -When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. - -To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. - -For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. - -We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. - -To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. - -Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. - -Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. - -When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. - -We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. - -For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. - -In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. - -Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. - -The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION -0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". - -A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. - -The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) - -"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. - -1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - -a) The modified work must itself be a software library. -b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. -c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. -d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. -(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. - -Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. - -This option is useful when you wish to copy part of the code of the Library into a program that is not a library. - -4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. - -If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. - -5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. - -However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. - -When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. - -If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) - -Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. - -6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. - -You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: - -a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) -b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. -c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. -d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. -e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. -For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. - -7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: - -a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. -b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. -8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. - -10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. - -11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. - -14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS -How to Apply These Terms to Your New Libraries -If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). - -To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - -one line to give the library's name and an idea of what it does. -Copyright (C) year name of author - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: - -Yoyodyne, Inc., hereby disclaims all copyright interest in -the library `Frob' (a library for tweaking knobs) written -by James Random Hacker. - -signature of Ty Coon, 1 April 1990 -Ty Coon, President of Vice -That's all there is to it! \ No newline at end of file diff --git a/ports/libmesh/portfile.cmake b/ports/libmesh/portfile.cmake deleted file mode 100644 index b0cf639b42e598..00000000000000 --- a/ports/libmesh/portfile.cmake +++ /dev/null @@ -1,47 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO libMesh/libmesh - REF 21f623c837b3865ed65ec9608b357bdb1935d428 #1.5.0 - SHA512 53ad41ed0cd99cb5096ff338a3ff5d8a8ecbfb17dc1d7ee0d2b0cbffecbede7f7c11b7c3c2233cec9dde0988c8828ba0199247effd3442befc72230e641a185e - HEAD_REF master -) - -if(VCPKG_TARGET_IS_WINDOWS) - set(OPTIONS --disable-qhull ) -endif() -# There a lot of configure options in this port which are not yet correctly handled by VCPKG -# To only mention two: -# --enable-vtk-required Error if VTK is not detected by configure -# --enable-capnp-required Error if Cap'n Proto support is not detected by -# but there are a lot more which need to be checked/fixed -# So this port can only be considered a Work In Progress -vcpkg_configure_make( - SOURCE_PATH "${SOURCE_PATH}" - OPTIONS ${OPTIONS} - OPTIONS_DEBUG --with-methods=dbg - OPTIONS_RELEASE --with-methods=opt -) - -vcpkg_install_make() - -file(RENAME "${CURRENT_PACKAGES_DIR}/examples" "${CURRENT_PACKAGES_DIR}/share/${PORT}/examples") - -if (VCPKG_LIBRARY_LINKAGE STREQUAL static) - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -# Remove tools and debug include directories -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/contrib" "${CURRENT_PACKAGES_DIR}/debug/contrib" - "${CURRENT_PACKAGES_DIR}/etc" "${CURRENT_PACKAGES_DIR}/debug/etc" - "${CURRENT_PACKAGES_DIR}/debug/examples" "${CURRENT_PACKAGES_DIR}/debug/include" - "${CURRENT_PACKAGES_DIR}/debug/share" "${CURRENT_PACKAGES_DIR}/tools/libmesh/debug" - "${CURRENT_PACKAGES_DIR}/Make.common" "${CURRENT_PACKAGES_DIR}/debug/Make.common") - -file(GLOB config_files "${CURRENT_PACKAGES_DIR}/bin/*-config" "${CURRENT_PACKAGES_DIR}/debug/bin/*-config" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin/*-config") -file(REMOVE_RECURSE ${config_files}) - -vcpkg_copy_pdbs() -vcpkg_fixup_pkgconfig() -vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/libmesh/libmesh_config.h" "${CURRENT_INSTALLED_DIR}" "") - -vcpkg_install_copyright(FILE_LIST "${CURRENT_PORT_DIR}/copyright") diff --git a/ports/libmesh/vcpkg.json b/ports/libmesh/vcpkg.json deleted file mode 100644 index 3127369e02d6eb..00000000000000 --- a/ports/libmesh/vcpkg.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "libmesh", - "version": "1.5.0", - "port-version": 6, - "description": "The libMesh library provides a framework for the numerical simulation of partial differential equations using arbitrary unstructured discretizations on serial and parallel platforms. A major goal of the library is to provide support for adaptive mesh refinement (AMR) computations in parallel while allowing a research scientist to focus on the physics they are modeling.", - "homepage": "https://github.com/libMesh/libmesh", - "license": "LGPL-2.1-only", - "supports": "linux" -} diff --git a/ports/libvmdk/CMakeLists.txt b/ports/libvmdk/CMakeLists.txt deleted file mode 100644 index d04b627bbe3c06..00000000000000 --- a/ports/libvmdk/CMakeLists.txt +++ /dev/null @@ -1,83 +0,0 @@ -cmake_minimum_required(VERSION 3.12) - -project(libvmdk C) - -find_package(ZLIB REQUIRED) - -if(MSVC) - add_compile_definitions(_CRT_SECURE_NO_DEPRECATE) - add_compile_definitions(_CRT_NONSTDC_NO_DEPRECATE) -endif() - -add_compile_definitions(HAVE_LOCAL_LIBCERROR) -add_compile_definitions(HAVE_LOCAL_LIBCTHREADS) -add_compile_definitions(HAVE_LOCAL_LIBCDATA) -add_compile_definitions(HAVE_LOCAL_LIBCLOCALE) -add_compile_definitions(HAVE_LOCAL_LIBCNOTIFY) -add_compile_definitions(HAVE_LOCAL_LIBCSPLIT) -add_compile_definitions(HAVE_LOCAL_LIBCFILE) -add_compile_definitions(HAVE_LOCAL_LIBCPATH) -add_compile_definitions(HAVE_LOCAL_LIBUNA) -add_compile_definitions(HAVE_LOCAL_LIBBFIO) -add_compile_definitions(HAVE_LOCAL_LIBFCACHE) -add_compile_definitions(HAVE_LOCAL_LIBFDATA) -add_compile_definitions(HAVE_LOCAL_LIBFVALUE) -add_compile_definitions(ZLIB_DLL) - -if(UNIX) - configure_file(common/config.h.in common/config.h) - add_compile_definitions(HAVE_CONFIG_H) - add_compile_definitions(LOCALEDIR="/usr/share/locale") -endif() - -if(MSVC) - add_compile_definitions(LIBVMDK_DLL_EXPORT) - set(LIB_RC libvmdk/libvmdk.rc) -endif() - - -include(GNUInstallDirs) -include(CMakePackageConfigHelpers) - -# Add CMake find_package() integration -set(PROJECT_TARGET_NAME "${PROJECT_NAME}") -set(CONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}") -set(PROJECT_CONFIG "${CMAKE_CURRENT_BINARY_DIR}/generated/${PROJECT_TARGET_NAME}Config.cmake") -set(TARGETS_EXPORT_NAME "${PROJECT_TARGET_NAME}Targets") -set(NAMESPACE "libvmdk::") - -# Source files -file(GLOB LIB_SRC lib*/*.c) - -# Headers -file(GLOB LIB_INST_HEADERS include/libvmdk/*.h) - -add_library(${PROJECT_NAME} ${LIB_SRC} ${LIB_RC}) - -target_include_directories(${PROJECT_NAME} PRIVATE ./include ./common) -target_include_directories(${PROJECT_NAME} PRIVATE ./libbfio ./libcdata ./libcerror ./libcfile ./libclocale) -target_include_directories(${PROJECT_NAME} PRIVATE ./libcnotify ./libcpath ./libcsplit ./libcthreads) -target_include_directories(${PROJECT_NAME} PRIVATE ./libfcache ./libfdata ./libfvalue ./libuna) - -target_link_libraries(${PROJECT_NAME} PRIVATE ZLIB::ZLIB) - -install(TARGETS ${PROJECT_NAME} - EXPORT ${TARGETS_EXPORT_NAME} - RUNTIME DESTINATION bin - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - INCLUDES DESTINATION include) - -install(FILES ${LIB_INST_HEADERS} DESTINATION include/libvmdk) -install(FILES include/libvmdk.h DESTINATION include) - - -# Generate and install libvmdkConfig.cmake -configure_package_config_file("Config.cmake.in" "${PROJECT_CONFIG}" INSTALL_DESTINATION "${CONFIG_INSTALL_DIR}") -install(FILES "${PROJECT_CONFIG}" DESTINATION "${CONFIG_INSTALL_DIR}") - -# Generate and install libvmdkTargets*.cmake -install(EXPORT ${TARGETS_EXPORT_NAME} - NAMESPACE ${NAMESPACE} - DESTINATION "${CONFIG_INSTALL_DIR}") - diff --git a/ports/libvmdk/Config.cmake.in b/ports/libvmdk/Config.cmake.in deleted file mode 100644 index bd6bd4532b6282..00000000000000 --- a/ports/libvmdk/Config.cmake.in +++ /dev/null @@ -1,4 +0,0 @@ -@PACKAGE_INIT@ - -include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake") -check_required_components("@PROJECT_NAME@") diff --git a/ports/libvmdk/android.patch b/ports/libvmdk/android.patch deleted file mode 100644 index fed62c3aba9f09..00000000000000 --- a/ports/libvmdk/android.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/common/config.h b/common/config.h -index 04eda99..3565329 100644 ---- a/common/config.h -+++ b/common/config.h -@@ -128,7 +128,9 @@ - #define HAVE_IOCTL 1 - - /* Define if nl_langinfo has CODESET support. */ -+#if !(defined(__ANDROID__) && __ANDROID_API__ < 28) - #define HAVE_LANGINFO_CODESET 1 -+#endif - - /* Define to 1 if you have the header file. */ - #define HAVE_LANGINFO_H 1 diff --git a/ports/libvmdk/portfile.cmake b/ports/libvmdk/portfile.cmake deleted file mode 100644 index 715d8b2071740e..00000000000000 --- a/ports/libvmdk/portfile.cmake +++ /dev/null @@ -1,32 +0,0 @@ -set(LIB_FILENAME libvmdk-alpha-${VERSION}.tar.gz) - -vcpkg_download_distfile(ARCHIVE - URLS "https://github.com/libyal/libvmdk/releases/download/${VERSION}/${LIB_FILENAME}" - FILENAME "${LIB_FILENAME}" - SHA512 7d7ea415d7c2cb1077d591d53ab3c37a7ab6e01dc9525159a70588e6f55e56bbef4d3f49f6e1c01ff0b1ddcede5ec2beb05aca7f12e5212843761e14f6459bcb -) - -vcpkg_extract_source_archive( - SOURCE_PATH - ARCHIVE "${ARCHIVE}" - SOURCE_BASE "${VERSION}" - PATCHES - android.patch -) - -file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}") -file(COPY "${CMAKE_CURRENT_LIST_DIR}/Config.cmake.in" DESTINATION "${SOURCE_PATH}") - -vcpkg_cmake_configure( - SOURCE_PATH "${SOURCE_PATH}" -) - -vcpkg_cmake_install() - -vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/libvmdk) - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) - -vcpkg_copy_pdbs() diff --git a/ports/libvmdk/vcpkg.json b/ports/libvmdk/vcpkg.json deleted file mode 100644 index eb0029f99b9685..00000000000000 --- a/ports/libvmdk/vcpkg.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "libvmdk", - "version": "20221124", - "port-version": 1, - "description": "Library and tools to access the VMware Virtual Disk (VMDK) format", - "homepage": "https://github.com/libyal/libvmdk", - "supports": "!uwp", - "dependencies": [ - "gettext", - { - "name": "vcpkg-cmake", - "host": true - }, - { - "name": "vcpkg-cmake-config", - "host": true - }, - "zlib" - ] -} diff --git a/ports/libxaw/vcpkg.json b/ports/libxaw/vcpkg.json index e70f375621a552..2d52f48c9032a5 100644 --- a/ports/libxaw/vcpkg.json +++ b/ports/libxaw/vcpkg.json @@ -1,9 +1,11 @@ { "name": "libxaw", "version": "1.0.13", + "port-version": 1, "description": "X Athena Widget Set, based on the X Toolkit Intrinsics (Xt) Library", "homepage": "https://gitlab.freedesktop.org/xorg/lib/libxaw", "license": null, + "supports": "!windows | !staticcrt", "dependencies": [ "bzip2", "libx11", diff --git a/ports/mozjpeg/fix-install-error.patch b/ports/mozjpeg/fix-install-error.patch deleted file mode 100644 index da8ecce9fcecf4..00000000000000 --- a/ports/mozjpeg/fix-install-error.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index ae07280..54dc4f3 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1487,7 +1487,7 @@ if(ENABLE_STATIC) - endif() - endif() - --install(TARGETS rdjpgcom wrjpgcom RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) -+#install(TARGETS rdjpgcom wrjpgcom RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) - - install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/README.ijg - ${CMAKE_CURRENT_SOURCE_DIR}/README.md ${CMAKE_CURRENT_SOURCE_DIR}/example.txt diff --git a/ports/mozjpeg/portfile.cmake b/ports/mozjpeg/portfile.cmake deleted file mode 100644 index 308a41acd6f2e9..00000000000000 --- a/ports/mozjpeg/portfile.cmake +++ /dev/null @@ -1,63 +0,0 @@ -if(EXISTS "${CURRENT_INSTALLED_DIR}/share/libjpeg-turbo/copyright") - message(FATAL_ERROR "Can't build ${PORT} if libjpeg-turbo is installed. Please remove libjpeg-turbo:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() -if(EXISTS "${CURRENT_INSTALLED_DIR}/share/ijg-libjpeg/copyright") - message(FATAL_ERROR "Can't build ${PORT} if ijg-libjpeg is installed. Please remove ijg-libjpeg:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() - -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO mozilla/mozjpeg - REF "v${VERSION}" - SHA512 90e1b0067740b161398d908e90b976eccc2ee7174496ce9693ba3cdf4727559ecff39744611657d847dd83164b80993152739692a5233aca577ebd052efaf501 - HEAD_REF master - PATCHES - fix-install-error.patch -) - -vcpkg_find_acquire_program(NASM) -get_filename_component(NASM_EXE_PATH ${NASM} DIRECTORY) -vcpkg_add_to_path(${NASM_EXE_PATH}) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" ENABLE_SHARED) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" ENABLE_STATIC) -string(COMPARE EQUAL "${VCPKG_CRT_LINKAGE}" "dynamic" WITH_CRT_DLL) - -vcpkg_cmake_configure( - SOURCE_PATH "${SOURCE_PATH}" - OPTIONS - -DENABLE_SHARED=${ENABLE_SHARED} - -DENABLE_STATIC=${ENABLE_STATIC} - -DWITH_CRT_DLL=${WITH_CRT_DLL} -) - -vcpkg_cmake_install() - -# Rename libraries for static builds -if(VCPKG_LIBRARY_LINKAGE STREQUAL static) - if(EXISTS "${CURRENT_PACKAGES_DIR}/lib/jpeg-static.lib") - file(RENAME "${CURRENT_PACKAGES_DIR}/lib/jpeg-static.lib" "${CURRENT_PACKAGES_DIR}/lib/jpeg.lib") - file(RENAME "${CURRENT_PACKAGES_DIR}/lib/turbojpeg-static.lib" "${CURRENT_PACKAGES_DIR}/lib/turbojpeg.lib") - endif() - if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/lib/jpeg-static.lib") - file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/jpeg-static.lib" "${CURRENT_PACKAGES_DIR}/debug/lib/jpeg.lib") - file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/turbojpeg-static.lib" "${CURRENT_PACKAGES_DIR}/debug/lib/turbojpeg.lib") - endif() -endif() -vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/mozjpeg) -# Remove extra debug files -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") - -vcpkg_copy_tools(TOOL_NAMES cjpeg djpeg jpegtran tjbench AUTO_CLEAN) -vcpkg_fixup_pkgconfig() -vcpkg_copy_pdbs() - -# Remove empty folders after static build -if (VCPKG_LIBRARY_LINKAGE STREQUAL static) - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -# Handle copyright -vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.md") diff --git a/ports/mozjpeg/vcpkg.json b/ports/mozjpeg/vcpkg.json deleted file mode 100644 index 7723afa5ed8f84..00000000000000 --- a/ports/mozjpeg/vcpkg.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "mozjpeg", - "version": "4.1.5", - "port-version": 1, - "description": "MozJPEG reduces file sizes of JPEG images while retaining quality and compatibility with the vast majority of the world's deployed decoders. It's compatible with libjpeg API and ABI, and can be used as a drop-in replacement for libjpeg.", - "homepage": "https://github.com/mozilla/mozjpeg", - "license": "IJG AND BSD-3-Clause AND Zlib", - "dependencies": [ - "libpng", - { - "name": "vcpkg-cmake", - "host": true - }, - { - "name": "vcpkg-cmake-config", - "host": true - } - ] -} diff --git a/ports/optional-bare/portfile.cmake b/ports/optional-bare/portfile.cmake deleted file mode 100644 index f0f05668b3afce..00000000000000 --- a/ports/optional-bare/portfile.cmake +++ /dev/null @@ -1,28 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO martinmoene/optional-bare - REF v1.1.0 - SHA512 0eed103c4e909991b596c0cd23d6206662e3ca71cd8148e27c19d8e071c2a16e18cc940a6cd4f8571510f5e64577157f94c561fb889330bb7a868af64c2f3aa0 -) - -vcpkg_cmake_configure( - SOURCE_PATH "${SOURCE_PATH}" - OPTIONS - -DOPTIONAL_BARE_OPT_BUILD_TESTS=OFF - -DOPTIONAL_BARE_OPT_BUILD_EXAMPLES=OFF -) - -vcpkg_cmake_install() - -vcpkg_cmake_config_fixup( - CONFIG_PATH lib/cmake/${PORT} -) - -file(REMOVE_RECURSE - "${CURRENT_PACKAGES_DIR}/debug" - "${CURRENT_PACKAGES_DIR}/lib" -) - -file(INSTALL - "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright -) diff --git a/ports/optional-bare/vcpkg.json b/ports/optional-bare/vcpkg.json deleted file mode 100644 index a358a79d846161..00000000000000 --- a/ports/optional-bare/vcpkg.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "optional-bare", - "version": "1.1.0", - "port-version": 3, - "description": "A simple version of a C++17-like optional for default-constructible, copyable types, for C++98 and later in a single-file header-only library", - "dependencies": [ - { - "name": "vcpkg-cmake", - "host": true - }, - { - "name": "vcpkg-cmake-config", - "host": true - } - ] -} diff --git a/ports/qt5-canvas3d/portfile.cmake b/ports/qt5-canvas3d/portfile.cmake deleted file mode 100644 index 14a8cbdb2192d0..00000000000000 --- a/ports/qt5-canvas3d/portfile.cmake +++ /dev/null @@ -1,4 +0,0 @@ -message(FATAL_ERROR "${PORT} has been deprecated and will be removed in the future from VCPKG") -#set(VCPKG_POLICY_EMPTY_INCLUDE_FOLDER enabled) -#include(${CURRENT_INSTALLED_DIR}/share/qt5/qt_port_functions.cmake) -#qt_submodule_installation() \ No newline at end of file diff --git a/ports/qt5-canvas3d/vcpkg.json b/ports/qt5-canvas3d/vcpkg.json deleted file mode 100644 index 3a01931f25358c..00000000000000 --- a/ports/qt5-canvas3d/vcpkg.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "qt5-canvas3d", - "version": "0", - "port-version": 3, - "description": "Qt Canvas3D offers a low level OpenGL-like API that enables you to execute 3D drawing commands from JavaScript.", - "dependencies": [ - { - "name": "qt5-base", - "default-features": false - } - ] -} diff --git a/ports/range-v3-vs2015/portfile.cmake b/ports/range-v3-vs2015/portfile.cmake deleted file mode 100644 index d0a807db2738aa..00000000000000 --- a/ports/range-v3-vs2015/portfile.cmake +++ /dev/null @@ -1,14 +0,0 @@ -if(EXISTS ${CURRENT_INSTALLED_DIR}/share/range-v3/copyright) - message(FATAL_ERROR "'${PORT}' conflicts with 'range-v3'. Please remove range-v3:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO Microsoft/Range-V3-VS2015 - REF 423bcae5cf18948591361329784d3b12ef41711b - SHA512 c6756bc6b5131c4c0ffb96550fb40decf734fc8c30e3d51c5c2bf03aae4d7426de36e896a1abf0a200a49a3906d4b60c1cf52f43504554b64d89c91de3e92746 - HEAD_REF master -) - -vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt") -file(INSTALL ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR} FILES_MATCHING PATTERN "*.hpp") -vcpkg_copy_pdbs() diff --git a/ports/range-v3-vs2015/vcpkg.json b/ports/range-v3-vs2015/vcpkg.json deleted file mode 100644 index 7dca2d69defb54..00000000000000 --- a/ports/range-v3-vs2015/vcpkg.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "range-v3-vs2015", - "version": "20151130-vcpkg5", - "port-version": 4, - "description": "Range library for C++11/14/17.", - "homepage": "https://github.com/Microsoft/Range-V3-VS2015" -} diff --git a/ports/rbdl-orb/portfile.cmake b/ports/rbdl-orb/portfile.cmake deleted file mode 100644 index 9aefc82414d125..00000000000000 --- a/ports/rbdl-orb/portfile.cmake +++ /dev/null @@ -1 +0,0 @@ -set(VCPKG_POLICY_EMPTY_PACKAGE enabled) diff --git a/ports/rbdl-orb/vcpkg.json b/ports/rbdl-orb/vcpkg.json deleted file mode 100644 index acbe19c1df15ba..00000000000000 --- a/ports/rbdl-orb/vcpkg.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "rbdl-orb", - "version": "3.2.0", - "port-version": 2, - "description": "Rigid Body Dynamics Library - ORB", - "homepage": "https://github.com/orb-hd/rbdl-orb", - "dependencies": [ - "rbdl" - ] -} diff --git a/ports/sciter/portfile.cmake b/ports/sciter/portfile.cmake deleted file mode 100644 index 781259cb643138..00000000000000 --- a/ports/sciter/portfile.cmake +++ /dev/null @@ -1,12 +0,0 @@ -set(VCPKG_POLICY_EMPTY_PACKAGE enabled) - -message(FATAL_ERROR "The sciter port is deprecated by upstream and conflicts with upstream's replacement. - -Upstream has stopped active development of sciter and instead encourage users to move to a new library Sciter.JS that uses javascript as the internal scripting language (sciter-js in vcpkg). - -Options for existing users are: -1. Depend upon `sciter-js` and change your code to work with the new library -2. Use `\"overrides\"` in manifest mode to pin to `\"version-string\": \"4.4.8.3#1\"` -3. Copy the last available `sciter` version into an overlay port (commit 756f1845537a916ba706f6af544b2f490c30fbb1 at subpath `ports/sciter`) -4. Use the community registry `https://github.com/VuYeK/vcpkg-registry` which may have newer versions of `sciter` available (not affiliated with Microsoft) -") diff --git a/ports/sciter/vcpkg.json b/ports/sciter/vcpkg.json deleted file mode 100644 index fb5784988b9998..00000000000000 --- a/ports/sciter/vcpkg.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "sciter", - "version": "0", - "port-version": 1, - "description": "Sciter is an embeddable HTML/CSS/scripting engine.", - "homepage": "https://github.com/c-smile/sciter-sdk" -} diff --git a/ports/spdk-dpdk/CMakeLists.txt b/ports/spdk-dpdk/CMakeLists.txt deleted file mode 100644 index 1952227ae0d65e..00000000000000 --- a/ports/spdk-dpdk/CMakeLists.txt +++ /dev/null @@ -1,63 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.9) -PROJECT(dpdk C) - -LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") -LIST(APPEND CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}") - -INCLUDE(ProcessorCount) -PROCESSORCOUNT(PROCS) - -#ARCH can be: i686, x86_64, ppc_64, arm64 -#MACHINE can be: native, power8, armv8a -#EXECENV can be: linuxapp, bsdapp -#TOOLCHAIN can be: gcc, icc - -SET(ARCH x86_64) -SET(MACHINE native) -SET(EXECENV linuxapp) -SET(TOOLCHAIN gcc) - -IF (CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$") - SET(ARCH "i686") -ELSEIF (CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") - SET(MACHINE arm8a) -ELSEIF (CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64") - SET(MACHINE power8) - SET(ARCH ppc_64) -ENDIF () - -IF (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") - SET(EXECENV bsdapp) -ENDIF () - -FIND_PACKAGE(Numa REQUIRED) -FIND_PROGRAM(MAKE make) - -SET(DPDK_CFLAGS "-fPIC") -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - STRING(APPEND ${DPDK_CFLAGS} "-O0 -g") -ENDIF () - -SET(DPDK_TARGET ${ARCH}-${MACHINE}-${EXECENV}-${TOOLCHAIN}) -#SET(DPDK_CONFIG O=${CMAKE_BUILD_TYPE}/build T=${DPDK_TARGET}) -SET(DPDK_CONFIG "T=${DPDK_TARGET}") - -IF (SOURCE_PATH) - SET(CMAKE_SOURCE_DIR ${SOURCE_PATH}) -ENDIF () - -ADD_CUSTOM_TARGET(dpdk-configure - COMMAND ${MAKE} config ${DPDK_CONFIG} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/ - VERBATIM - ) - -ADD_CUSTOM_TARGET(dpdk ALL - COMMAND ${MAKE} EXTRA_CFLAGS=\"${DPDK_CFLAGS}\" MAKEFLAGS=\"${DPDK_CONFIG} -j ${PROCS}\" - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/ - ) - -ADD_DEPENDENCIES(dpdk dpdk-configure) - -INSTALL(DIRECTORY ${CMAKE_SOURCE_DIR}/build/lib - DESTINATION ${CMAKE_SOURCE_DIR}/${CMAKE_BUILD_TYPE}/) diff --git a/ports/spdk-dpdk/FindNuma.cmake b/ports/spdk-dpdk/FindNuma.cmake deleted file mode 100644 index d5bb6143559541..00000000000000 --- a/ports/spdk-dpdk/FindNuma.cmake +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE(FindPackageHandleStandardArgs) - -FIND_PATH(NUMA_ROOT_DIR - NAMES include/numa.h - PATHS ENV NUMA_ROOT - DOC "NUMA library root directory") - -FIND_PATH(NUMA_INCLUDE_DIR - NAMES numa.h - HINTS ${NUMA_ROOT_DIR} - PATH_SUFFIXES include - DOC "NUMA include directory") - -FIND_LIBRARY(NUMA_LIBRARY - NAMES numa - HINTS ${NUMA_ROOT_DIR} - DOC "NUMA library file") - -IF (NUMA_LIBRARY) - GET_FILENAME_COMPONENT(NUMA_LIBRARY_DIR ${NUMA_LIBRARY} PATH) - MARK_AS_ADVANCED(NUMA_INCLUDE_DIR NUMA_LIBRARY_DIR NUMA_LIBRARY) - FIND_PACKAGE_HANDLE_STANDARD_ARGS(NUMA REQUIRED_VARS NUMA_ROOT_DIR NUMA_INCLUDE_DIR NUMA_LIBRARY) -ELSE () - SET(NUMA_FOUND FALSE) - MESSAGE(FATAL_ERROR "Numa library not found.\nTry: 'sudo yum install numactl numactl-devel' (or sudo apt-get install libnuma1 libnuma-dev)") -ENDIF () diff --git a/ports/spdk-dpdk/portfile.cmake b/ports/spdk-dpdk/portfile.cmake deleted file mode 100644 index 45ce0626d6d2d4..00000000000000 --- a/ports/spdk-dpdk/portfile.cmake +++ /dev/null @@ -1,44 +0,0 @@ -IF (NOT VCPKG_CMAKE_SYSTEM_NAME OR NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Linux") - MESSAGE(FATAL_ERROR "Intel dpdk currently only supports Linux/BSD platforms") -ENDIF () - -VCPKG_FROM_GITHUB( - OUT_SOURCE_PATH SOURCE_PATH - REPO spdk/dpdk - REF spdk-18.11 - SHA512 9c069bb0e445f8287ee056452fa32263746f78e27377e8fd75809b9ebf7f25c2395ee13ae4804d8c464e5bc7db7335692759ab3202748dd0c82243aad35e5e7c - HEAD_REF master -) - -FIND_PATH(NUMA_INCLUDE_DIR NAME numa.h - PATHS ENV NUMA_ROOT - HINTS "$ENV{HOME}/local/include" /opt/local/include /usr/local/include /usr/include -) -IF (NOT NUMA_INCLUDE_DIR) - MESSAGE(FATAL_ERROR "Numa library not found.\nTry: 'sudo yum install numactl numactl-devel' (or sudo apt-get install libnuma1 libnuma-dev)") -ENDIF () - -vcpkg_cmake_configure( - SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}" - OPTIONS - "-DSOURCE_PATH=${SOURCE_PATH}" -) - -vcpkg_cmake_install() - -# Headers are symbolic links here, gather all, resolve and copy real files -FILE(GLOB_RECURSE HEADERS FOLLOW_SYMLINKS "${SOURCE_PATH}/build/include/*") -SET(REAL_FILES "") -FOREACH (HEADER ${HEADERS}) - GET_FILENAME_COMPONENT(REAL_FILE "${HEADER}" REALPATH) - LIST(APPEND REAL_FILES "${REAL_FILE}") -ENDFOREACH () - -FILE(INSTALL "${SOURCE_PATH}/Release/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/lib/spdk") -if(NOT VCPKG_BUILD_TYPE) - FILE(INSTALL "${SOURCE_PATH}/Debug/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib/spdk") -endif() -FILE(INSTALL ${REAL_FILES} DESTINATION "${CURRENT_PACKAGES_DIR}/include/${PORT}") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/spdk-dpdkConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${SOURCE_PATH}/license/README" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/spdk-dpdk/spdk-dpdkConfig.cmake b/ports/spdk-dpdk/spdk-dpdkConfig.cmake deleted file mode 100644 index 85b850812fd200..00000000000000 --- a/ports/spdk-dpdk/spdk-dpdkConfig.cmake +++ /dev/null @@ -1,31 +0,0 @@ - -FUNCTION(SET_LIBRARY_TARGET NAMESPACE LIB_NAME DEBUG_LIB_FILE_NAME RELEASE_LIB_FILE_NAME INCLUDE_DIR) - ADD_LIBRARY(${NAMESPACE}::${LIB_NAME} STATIC IMPORTED) - SET_TARGET_PROPERTIES(${NAMESPACE}::${LIB_NAME} PROPERTIES - IMPORTED_CONFIGURATIONS "RELEASE;DEBUG" - IMPORTED_LOCATION_RELEASE "${RELEASE_LIB_FILE_NAME}" - IMPORTED_LOCATION_DEBUG "${DEBUG_LIB_FILE_NAME}" - INTERFACE_INCLUDE_DIRECTORIES "${INCLUDE_DIR}" - ) - SET(${NAMESPACE}_${LIB_NAME}_FOUND 1) -ENDFUNCTION() - -GET_FILENAME_COMPONENT(DPDK_ROOT "${CMAKE_CURRENT_LIST_FILE}" PATH) -GET_FILENAME_COMPONENT(DPDK_ROOT "${DPDK_ROOT}" PATH) -GET_FILENAME_COMPONENT(DPDK_ROOT "${DPDK_ROOT}" PATH) - -SET_LIBRARY_TARGET("SPDK" "dpdk" "${DPDK_ROOT}/debug/lib/spdk/libdpdk.a" "${DPDK_ROOT}/lib/spdk/libdpdk.a" "${DPDK_ROOT}/include/spdk-dpdk") - -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - LINK_DIRECTORIES(${DPDK_ROOT}/debug/lib/spdk) -ELSE () - LINK_DIRECTORIES(${DPDK_ROOT}/lib/spdk) -ENDIF () - -FILE(GLOB DPDK_LIBS ${DPDK_ROOT}/lib/spdk/librte*.*) -FOREACH (LIB_FILE_NAME ${DPDK_LIBS}) - GET_FILENAME_COMPONENT(LIB_NAME ${LIB_FILE_NAME} NAME_WE) - GET_FILENAME_COMPONENT(FULL_LIB_NAME ${LIB_FILE_NAME} NAME) - STRING(REPLACE "lib" "" LIB_NAME "${LIB_NAME}") - SET_LIBRARY_TARGET("SPDK" "${LIB_NAME}" "${DPDK_ROOT}/debug/lib/spdk/${FULL_LIB_NAME}" "${DPDK_ROOT}/lib/spdk/${FULL_LIB_NAME}" "${DPDK_ROOT}/include/spdk-dpdk") -ENDFOREACH () diff --git a/ports/spdk-dpdk/usage b/ports/spdk-dpdk/usage deleted file mode 100644 index 4fc9ddf257d02f..00000000000000 --- a/ports/spdk-dpdk/usage +++ /dev/null @@ -1 +0,0 @@ -This package is a dependency of SPDK port. It is not intended for direct consumption by end-user. \ No newline at end of file diff --git a/ports/spdk-dpdk/vcpkg.json b/ports/spdk-dpdk/vcpkg.json deleted file mode 100644 index 7727ec2ef15708..00000000000000 --- a/ports/spdk-dpdk/vcpkg.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "spdk-dpdk", - "version-date": "2018-11-24", - "port-version": 3, - "description": "SPDK mirror of DPDK. A set of libraries and drivers for fast packet processing", - "supports": "linux", - "dependencies": [ - { - "name": "vcpkg-cmake", - "host": true - } - ] -} diff --git a/ports/spdk-ipsec/CMakeLists.txt b/ports/spdk-ipsec/CMakeLists.txt deleted file mode 100644 index fb02b164b91d4f..00000000000000 --- a/ports/spdk-ipsec/CMakeLists.txt +++ /dev/null @@ -1,57 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.9) -PROJECT(ipsec C) - -IF (SOURCE_PATH) - SET(CMAKE_SOURCE_DIR ${SOURCE_PATH}) -ENDIF () - -INCLUDE(ProcessorCount) -PROCESSORCOUNT(PROCS) - -FIND_PROGRAM(NASM nasm) -IF (NOT NASM) - MESSAGE(FATAL_ERROR "NASM not found") -ENDIF () - -FIND_PROGRAM(MAKE make) -IF (NOT MAKE) - MESSAGE(FATAL_ERROR "MAKE not found") -ENDIF () - -IF (EXEC_ENV STREQUAL "Windows") - FIND_PROGRAM(MAKE nmake) - IF (NOT MAKE) - MESSAGE(FATAL_ERROR "nmake not found") - ENDIF () -ENDIF () - -SET(MAKE_FLAGS) - -IF (EXEC_ENV STREQUAL "Windows") - LIST(APPEND MAKE_FLAGS /f win_x64.mak) -ENDIF () - -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - LIST(APPEND MAKE_FLAGS DEBUG=y) -ENDIF () - -IF (NOT BUILD_SHARED_LIBS) - LIST(APPEND MAKE_FLAGS SHARED=n) -ENDIF () - -MESSAGE(STATUS "${MAKE_FLAGS}") -ADD_CUSTOM_TARGET(ipsec-mb ALL - COMMAND ${MAKE} -j ${MAKE_FLAGS} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/ -# VERBATIM - ) - -SET(LIB_PATH ${CMAKE_SOURCE_DIR}/) -IF(BUILD_SHARED_LIBS) - STRING(APPEND LIB_PATH libIPSec_MB.so) -ELSE () - STRING(APPEND LIB_PATH libIPSec_MB.a) -ENDIF () -INSTALL(FILES ${LIB_PATH} - DESTINATION ${CMAKE_SOURCE_DIR}/${CMAKE_BUILD_TYPE}/lib/) -INSTALL(DIRECTORY ${CMAKE_SOURCE_DIR}/include DESTINATION ${CMAKE_SOURCE_DIR}/${CMAKE_BUILD_TYPE}/) diff --git a/ports/spdk-ipsec/portfile.cmake b/ports/spdk-ipsec/portfile.cmake deleted file mode 100644 index f82f2621d3708b..00000000000000 --- a/ports/spdk-ipsec/portfile.cmake +++ /dev/null @@ -1,57 +0,0 @@ -IF (NOT VCPKG_CMAKE_SYSTEM_NAME) - SET(EXEC_ENV "Windows") -ELSE () - SET(EXEC_ENV "${VCPKG_CMAKE_SYSTEM_NAME}") -ENDIF () - -IF (NOT VCPKG_TARGET_IS_LINUX) - MESSAGE(FATAL_ERROR "Intel(R) Multi-Buffer Crypto for IPsec Library currently only supports Linux/Windows platforms") - MESSAGE(STATUS "Well, it is not true, but I didnt manage to get it working on Windows") -ENDIF () - -IF (VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm") - MESSAGE(FATAL_ERROR "Intel(R) Multi-Buffer Crypto for IPsec Library currently only supports x64 architecture") -ELSEIF (NOT VCPKG_TARGET_ARCHITECTURE STREQUAL "x64") - MESSAGE(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}") -ENDIF () - -VCPKG_FROM_GITHUB( - OUT_SOURCE_PATH SOURCE_PATH - REPO spdk/intel-ipsec-mb - REF spdk - SHA512 037fc382d9aa87b6645309f29cb761a584ed855c583638c9e27b5b7200ceb2ae21ad5adcc7c92b2b1d1387186a7fd2b5ae22f337a8f52dea3f6c35d8f90b42bd - HEAD_REF master -) - -VCPKG_FIND_ACQUIRE_PROGRAM(NASM) - -execute_process( - COMMAND "${NASM}" -v - OUTPUT_VARIABLE NASM_OUTPUT - ERROR_VARIABLE NASM_OUTPUT -) -STRING(REGEX REPLACE "NASM version ([0-9]+\\.[0-9]+\\.[0-9]+).*" "\\1" NASM_VERSION "${NASM_OUTPUT}") -IF (NASM_VERSION VERSION_LESS 2.13.03) - MESSAGE(FATAL_ERROR "NASM version 2.13.03 (or newer) is required to build this package") -ENDIF () - -GET_FILENAME_COMPONENT(NASM_PATH "${NASM}" DIRECTORY) -vcpkg_add_to_path("${NASM_PATH}") - -vcpkg_cmake_configure( - SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}" - OPTIONS - "-DSOURCE_PATH=${SOURCE_PATH}" - -DEXEC_ENV=${VCPKG_CMAKE_SYSTEM_NAME} -) - -vcpkg_cmake_install() - -FILE(INSTALL "${SOURCE_PATH}/Release/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/lib/spdk") -if(NOT VCPKG_BUILD_TYPE) - FILE(INSTALL "${SOURCE_PATH}/Debug/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib/spdk") -endif() -FILE(INSTALL "${SOURCE_PATH}/Release/include/" DESTINATION "${CURRENT_PACKAGES_DIR}/include/${PORT}") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/spdk-ipsecConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/spdk-ipsec/spdk-ipsecConfig.cmake b/ports/spdk-ipsec/spdk-ipsecConfig.cmake deleted file mode 100644 index 60777b95904b5c..00000000000000 --- a/ports/spdk-ipsec/spdk-ipsecConfig.cmake +++ /dev/null @@ -1,17 +0,0 @@ - -FUNCTION(SET_LIBRARY_TARGET NAMESPACE LIB_NAME DEBUG_LIB_FILE_NAME RELEASE_LIB_FILE_NAME INCLUDE_DIR) - ADD_LIBRARY(${NAMESPACE}::${LIB_NAME} STATIC IMPORTED) - SET_TARGET_PROPERTIES(${NAMESPACE}::${LIB_NAME} PROPERTIES - IMPORTED_CONFIGURATIONS "RELEASE;DEBUG" - IMPORTED_LOCATION_RELEASE "${RELEASE_LIB_FILE_NAME}" - IMPORTED_LOCATION_DEBUG "${DEBUG_LIB_FILE_NAME}" - INTERFACE_INCLUDE_DIRECTORIES "${INCLUDE_DIR}" - ) - SET(${NAMESPACE}_${LIB_NAME}_FOUND 1) -ENDFUNCTION() - -GET_FILENAME_COMPONENT(ROOT "${CMAKE_CURRENT_LIST_FILE}" PATH) -GET_FILENAME_COMPONENT(ROOT "${ROOT}" PATH) -GET_FILENAME_COMPONENT(ROOT "${ROOT}" PATH) - -SET_LIBRARY_TARGET("SPDK" "ipsec" "${ROOT}/debug/lib/spdk/libIPSec_MB.a" "${ROOT}/lib/spdk/libIPSec_MB.a" "${ROOT}/include/spdk-ipsec") diff --git a/ports/spdk-ipsec/usage b/ports/spdk-ipsec/usage deleted file mode 100644 index 4fc9ddf257d02f..00000000000000 --- a/ports/spdk-ipsec/usage +++ /dev/null @@ -1 +0,0 @@ -This package is a dependency of SPDK port. It is not intended for direct consumption by end-user. \ No newline at end of file diff --git a/ports/spdk-ipsec/vcpkg.json b/ports/spdk-ipsec/vcpkg.json deleted file mode 100644 index 5981ad1ad720d4..00000000000000 --- a/ports/spdk-ipsec/vcpkg.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "spdk-ipsec", - "version-date": "2018-07-11", - "port-version": 3, - "description": "SPDK mirror of ipsec. Intel(R) Multi-Buffer Crypto for IPsec Library", - "supports": "x64 & linux", - "dependencies": [ - { - "name": "vcpkg-cmake", - "host": true - } - ] -} diff --git a/ports/spdk-isal/portfile.cmake b/ports/spdk-isal/portfile.cmake deleted file mode 100644 index 1fae5d89832074..00000000000000 --- a/ports/spdk-isal/portfile.cmake +++ /dev/null @@ -1,29 +0,0 @@ -if(EXISTS "${CURRENT_INSTALLED_DIR}/share/isal/copyright") - message(FATAL_ERROR "'${PORT}' conflicts with 'isal'. Please remove isal:${TARGET_TRIPLET}, and try to install ${PORT}:${TARGET_TRIPLET} again.") -endif() - -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO spdk/isa-l - REF spdk - SHA512 1d170ed050fb612816c77b3586f1cdce9129eedc559e3fcefc983ede05b6c8e13a52e400ee6935f5da6ab045a899c97f6ed6be3a79691284e211ea8a6d697f7c - HEAD_REF master -) - -vcpkg_find_acquire_program(NASM) -get_filename_component(NASM_PATH ${NASM} DIRECTORY) -vcpkg_add_to_path("${NASM_PATH}") - -vcpkg_find_acquire_program(YASM) - -vcpkg_configure_make( - SOURCE_PATH "${SOURCE_PATH}" -) - -vcpkg_install_make() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") - -file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/spdk-isalConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/spdk-isal/spdk-isalConfig.cmake b/ports/spdk-isal/spdk-isalConfig.cmake deleted file mode 100644 index f14282ff1216b6..00000000000000 --- a/ports/spdk-isal/spdk-isalConfig.cmake +++ /dev/null @@ -1,17 +0,0 @@ - -FUNCTION(SET_LIBRARY_TARGET NAMESPACE LIB_NAME DEBUG_LIB_FILE_NAME RELEASE_LIB_FILE_NAME INCLUDE_DIR) - ADD_LIBRARY(${NAMESPACE}::${LIB_NAME} STATIC IMPORTED) - SET_TARGET_PROPERTIES(${NAMESPACE}::${LIB_NAME} PROPERTIES - IMPORTED_CONFIGURATIONS "RELEASE;DEBUG" - IMPORTED_LOCATION_RELEASE "${RELEASE_LIB_FILE_NAME}" - IMPORTED_LOCATION_DEBUG "${DEBUG_LIB_FILE_NAME}" - INTERFACE_INCLUDE_DIRECTORIES "${INCLUDE_DIR}" - ) - SET(${NAMESPACE}_${LIB_NAME}_FOUND 1) -ENDFUNCTION() - -GET_FILENAME_COMPONENT(ROOT "${CMAKE_CURRENT_LIST_FILE}" PATH) -GET_FILENAME_COMPONENT(ROOT "${ROOT}" PATH) -GET_FILENAME_COMPONENT(ROOT "${ROOT}" PATH) - -SET_LIBRARY_TARGET("SPDK" "isal" "${ROOT}/debug/lib/spdk/isa-l.a" "${ROOT}/lib/spdk/isa-l.a" "${ROOT}/include/spdk-isal") diff --git a/ports/spdk-isal/usage b/ports/spdk-isal/usage deleted file mode 100644 index 4fc9ddf257d02f..00000000000000 --- a/ports/spdk-isal/usage +++ /dev/null @@ -1 +0,0 @@ -This package is a dependency of SPDK port. It is not intended for direct consumption by end-user. \ No newline at end of file diff --git a/ports/spdk-isal/vcpkg.json b/ports/spdk-isal/vcpkg.json deleted file mode 100644 index b1e6045d4191af..00000000000000 --- a/ports/spdk-isal/vcpkg.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "spdk-isal", - "version-date": "2018-10-06", - "port-version": 3, - "description": "SPDK mirror of isa-l. Intel(R) Intelligent Storage Acceleration Library", - "homepage": "https://github.com/spdk/isa-l", - "license": "BSD-3-Clause", - "supports": "!windows & !(osx & x64)" -} diff --git a/ports/spdk/CMakeLists.txt b/ports/spdk/CMakeLists.txt deleted file mode 100644 index 88b41b8220f39a..00000000000000 --- a/ports/spdk/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.9) -PROJECT(spdk C) - -LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") -LIST(APPEND CMAKE_PREFIX_PATH "${CMAKE_SOURCE_DIR}") - -FIND_PACKAGE(Numa REQUIRED) -FIND_PACKAGE(uuid REQUIRED) -FIND_PACKAGE(ibverbs REQUIRED) -FIND_PACKAGE(RDMA REQUIRED) -FIND_PACKAGE(OpenSSL REQUIRED) -FIND_PACKAGE(Python COMPONENTS Interpreter REQUIRED) - -FIND_PROGRAM(MAKE make) - -IF (SOURCE_PATH) - SET(CMAKE_SOURCE_DIR ${SOURCE_PATH}) -ENDIF () - -SET(SPDK_CONFIG --disable-tests --with-rdma --with-dpdk=${CMAKE_SOURCE_DIR}/../../../spdk-dpdk/src/spdk-18.11-411c51fb97/build) -# No option to define path for isa-l (--with-isal=${CMAKE_SOURCE_DIR}/../../../spdk-isal/src/spdk-d34ebb51cd) -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - LIST(APPEND ${SPDK_CONFIG} --enable-debug) -ENDIF () - -SET(DPDK_CONFIG "-fPIC") -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - STRING(APPEND ${DPDK_CONFIG} "-O0 -g") -ENDIF () - -ADD_CUSTOM_TARGET(spdk-configure - COMMAND ./configure ${SPDK_CONFIG} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/ - VERBATIM - ) - -ADD_CUSTOM_TARGET(spdk ALL - COMMAND ${MAKE} -j DPDK_CFLAGS=${DPDK_CONFIG} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/ - ) - -ADD_DEPENDENCIES(spdk spdk-configure) - -INSTALL(DIRECTORY ${CMAKE_SOURCE_DIR}/build/lib - DESTINATION ${CMAKE_SOURCE_DIR}/${CMAKE_BUILD_TYPE}/) diff --git a/ports/spdk/FindNuma.cmake b/ports/spdk/FindNuma.cmake deleted file mode 100644 index d5bb6143559541..00000000000000 --- a/ports/spdk/FindNuma.cmake +++ /dev/null @@ -1,26 +0,0 @@ -INCLUDE(FindPackageHandleStandardArgs) - -FIND_PATH(NUMA_ROOT_DIR - NAMES include/numa.h - PATHS ENV NUMA_ROOT - DOC "NUMA library root directory") - -FIND_PATH(NUMA_INCLUDE_DIR - NAMES numa.h - HINTS ${NUMA_ROOT_DIR} - PATH_SUFFIXES include - DOC "NUMA include directory") - -FIND_LIBRARY(NUMA_LIBRARY - NAMES numa - HINTS ${NUMA_ROOT_DIR} - DOC "NUMA library file") - -IF (NUMA_LIBRARY) - GET_FILENAME_COMPONENT(NUMA_LIBRARY_DIR ${NUMA_LIBRARY} PATH) - MARK_AS_ADVANCED(NUMA_INCLUDE_DIR NUMA_LIBRARY_DIR NUMA_LIBRARY) - FIND_PACKAGE_HANDLE_STANDARD_ARGS(NUMA REQUIRED_VARS NUMA_ROOT_DIR NUMA_INCLUDE_DIR NUMA_LIBRARY) -ELSE () - SET(NUMA_FOUND FALSE) - MESSAGE(FATAL_ERROR "Numa library not found.\nTry: 'sudo yum install numactl numactl-devel' (or sudo apt-get install libnuma1 libnuma-dev)") -ENDIF () diff --git a/ports/spdk/FindRDMA.cmake b/ports/spdk/FindRDMA.cmake deleted file mode 100644 index b84ec123ed1357..00000000000000 --- a/ports/spdk/FindRDMA.cmake +++ /dev/null @@ -1,32 +0,0 @@ -FIND_PATH(RDMA_INCLUDE_DIR rdma/rdma_cma.h - /usr/include - /usr/include/linux - /usr/local/include - ) - -FIND_LIBRARY(RDMA_LIBRARY NAMES rdmacm - PATHS - /usr/lib - /usr/local/lib - /usr/lib64 - /usr/local/lib64 - /lib/i386-linux-gnu - /lib/x86_64-linux-gnu - /usr/lib/x86_64-linux-gnu - ) - -INCLUDE(FindPackageHandleStandardArgs) -IF (APPLE) - FIND_PACKAGE_HANDLE_STANDARD_ARGS(RDMA DEFAULT_MSG - RDMA_INCLUDE_DIR) -ELSE () - FIND_PACKAGE_HANDLE_STANDARD_ARGS(RDMA DEFAULT_MSG - RDMA_LIBRARY RDMA_INCLUDE_DIR) -ENDIF () - -MARK_AS_ADVANCED(RDMA_INCLUDE_DIR RDMA_LIBRARY) - -IF (NOT RDMA_LIBRARY) - SET(RDMA_FOUND FALSE) - MESSAGE(FATAL_ERROR "RDMA library not found.\nTry: 'sudo yum install librdmacm-devel librdmacm' (or sudo apt-get install librdmacm-dev librdmacm1)") -ENDIF () diff --git a/ports/spdk/Findibverbs.cmake b/ports/spdk/Findibverbs.cmake deleted file mode 100644 index c018df19dec466..00000000000000 --- a/ports/spdk/Findibverbs.cmake +++ /dev/null @@ -1,34 +0,0 @@ -# Find the ibverbs libraries -# -# The following variables are optionally searched for defaults -# IBVERBS_ROOT_DIR: Base directory where all ibverbs components are found -# IBVERBS_INCLUDE_DIR: Directory where ibverbs headers are found -# IBVERBS_LIB_DIR: Directory where ibverbs libraries are found - -# The following are set after configuration is done: -# IBVERBS_FOUND -# IBVERBS_INCLUDE_DIRS -# IBVERBS_LIBRARIES - -FIND_PATH(IBVERBS_INCLUDE_DIRS - NAMES infiniband/verbs.h - HINTS - ${IBVERBS_INCLUDE_DIR} - ${IBVERBS_ROOT_DIR} - ${IBVERBS_ROOT_DIR}/include) - -FIND_LIBRARY(IBVERBS_LIBRARIES - NAMES ibverbs - HINTS - ${IBVERBS_LIB_DIR} - ${IBVERBS_ROOT_DIR} - ${IBVERBS_ROOT_DIR}/lib) - -INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS(ibverbs DEFAULT_MSG IBVERBS_INCLUDE_DIRS IBVERBS_LIBRARIES) -MARK_AS_ADVANCED(IBVERBS_INCLUDE_DIR IBVERBS_LIBRARIES) - -IF (NOT IBVERBS_LIBRARIES) - SET(IBVERBS_FOUND FALSE) - MESSAGE(FATAL_ERROR "ibverbs library not found.\nTry: 'sudo yum install libibverbs-devel libibverbs' (or sudo apt-get install libibverbs-dev libibverbs1)") -ENDIF () diff --git a/ports/spdk/Finduuid.cmake b/ports/spdk/Finduuid.cmake deleted file mode 100644 index 2bd54af7831efb..00000000000000 --- a/ports/spdk/Finduuid.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -FIND_PATH(UUID_INCLUDE_DIR uuid/uuid.h - /usr/include - /usr/include/linux - /usr/local/include - ) - -FIND_LIBRARY(UUID_LIBRARY NAMES uuid - PATHS - /usr/lib - /usr/local/lib - /usr/lib64 - /usr/local/lib64 - /lib/i386-linux-gnu - /lib/x86_64-linux-gnu - /usr/lib/x86_64-linux-gnu - ) - -INCLUDE(FindPackageHandleStandardArgs) -IF (APPLE) - FIND_PACKAGE_HANDLE_STANDARD_ARGS(UUID DEFAULT_MSG - UUID_INCLUDE_DIR) -ELSE () - FIND_PACKAGE_HANDLE_STANDARD_ARGS(UUID DEFAULT_MSG - UUID_LIBRARY UUID_INCLUDE_DIR) -ENDIF () - -MARK_AS_ADVANCED(UUID_INCLUDE_DIR UUID_LIBRARY) - -IF (NOT UUID_LIBRARY) - SET(UUID_FOUND FALSE) - MESSAGE(FATAL_ERROR "UUID library not found.\nTry: 'sudo yum install libuuid uuid-devel' (or sudo apt-get install libuuid1 uuid-dev)") -ENDIF () diff --git a/ports/spdk/portfile.cmake b/ports/spdk/portfile.cmake deleted file mode 100644 index 1a3150b09c43ba..00000000000000 --- a/ports/spdk/portfile.cmake +++ /dev/null @@ -1,37 +0,0 @@ -IF (NOT VCPKG_CMAKE_SYSTEM_NAME OR NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "Linux") - MESSAGE(FATAL_ERROR "Intel spdk currently only supports Linux/BSD platforms") -ENDIF () - -VCPKG_FROM_GITHUB( - OUT_SOURCE_PATH SOURCE_PATH - REPO spdk/spdk - REF "v${VERSION}" - SHA512 c683136593661fddae6e849a1496e6664ad74e89661f6ec6ad82e653d8fc5bb64496d5d9fb263c1a05c868c1ecd1cc869d48c52895423aebab5df7a161197199 - HEAD_REF master -) - -FIND_PATH(NUMA_INCLUDE_DIR NAME numa.h - PATHS ENV NUMA_ROOT - HINTS "$ENV{HOME}/local/include" /opt/local/include /usr/local/include /usr/include -) -IF (NOT NUMA_INCLUDE_DIR) - MESSAGE(FATAL_ERROR "Numa library not found.\nTry: 'sudo yum install numactl numactl-devel' (or sudo apt-get install libnuma1 libnuma-dev)") -ENDIF () - -vcpkg_cmake_configure( - SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}" - OPTIONS - "-DSOURCE_PATH=${SOURCE_PATH}" -) - -vcpkg_cmake_install() - -FILE(INSTALL "${SOURCE_PATH}/Release/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/lib") -FILE(INSTALL "${SOURCE_PATH}/Debug/lib/" DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib") -FILE(INSTALL "${SOURCE_PATH}/include/spdk" DESTINATION "${CURRENT_PACKAGES_DIR}/include/${PORT}") -FILE(INSTALL "${SOURCE_PATH}/scripts/setup.sh" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/scripts") -FILE(INSTALL "${SOURCE_PATH}/scripts/common.sh" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/scripts") -FILE(INSTALL "${SOURCE_PATH}/include/spdk/pci_ids.h" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/include/spdk") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/spdkConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") -FILE(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/spdk/spdkConfig.cmake b/ports/spdk/spdkConfig.cmake deleted file mode 100644 index 7db413800e919b..00000000000000 --- a/ports/spdk/spdkConfig.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -FUNCTION(SET_LIBRARY_TARGET NAMESPACE LIB_NAME DEBUG_LIB_FILE_NAME RELEASE_LIB_FILE_NAME INCLUDE_DIR) - ADD_LIBRARY(${NAMESPACE}::${LIB_NAME} STATIC IMPORTED) - SET_TARGET_PROPERTIES(${NAMESPACE}::${LIB_NAME} PROPERTIES - IMPORTED_CONFIGURATIONS "RELEASE;DEBUG" - IMPORTED_LOCATION_RELEASE "${RELEASE_LIB_FILE_NAME}" - IMPORTED_LOCATION_DEBUG "${DEBUG_LIB_FILE_NAME}" - INTERFACE_INCLUDE_DIRECTORIES "${INCLUDE_DIR}" - ) - SET(${NAMESPACE}_${LIB_NAME}_FOUND 1) -ENDFUNCTION() - -GET_FILENAME_COMPONENT(SPDK_ROOT "${CMAKE_CURRENT_LIST_FILE}" PATH) -GET_FILENAME_COMPONENT(SPDK_ROOT "${SPDK_ROOT}" PATH) -GET_FILENAME_COMPONENT(SPDK_ROOT "${SPDK_ROOT}" PATH) - -IF (CMAKE_BUILD_TYPE STREQUAL Debug) - LINK_DIRECTORIES(${SPDK_ROOT}/debug/lib/) -ELSE () - LINK_DIRECTORIES(${SPDK_ROOT}/lib/) -ENDIF () - -FILE(GLOB SPDK_LIBS ${SPDK_ROOT}/lib/libspdk*.*) -FOREACH (LIB_FILE_NAME ${SPDK_LIBS}) - GET_FILENAME_COMPONENT(LIB_NAME ${LIB_FILE_NAME} NAME_WE) - GET_FILENAME_COMPONENT(FULL_LIB_NAME ${LIB_FILE_NAME} NAME) - STRING(REPLACE "lib" "" LIB_NAME "${LIB_NAME}") - SET_LIBRARY_TARGET("SPDK" "${LIB_NAME}" "${SPDK_ROOT}/debug/lib/${FULL_LIB_NAME}" "${SPDK_ROOT}/lib/${FULL_LIB_NAME}" "${SPDK_ROOT}/include/spdk") -ENDFOREACH () diff --git a/ports/spdk/usage b/ports/spdk/usage deleted file mode 100644 index f26b41649c99f2..00000000000000 --- a/ports/spdk/usage +++ /dev/null @@ -1,44 +0,0 @@ -The package spdk is compatible with built-in CMake targets: - -Add following to build examples/nvme/perf/perf.c - - FIND_PACKAGE(spdk CONFIG REQUIRED) - FIND_PACKAGE(spdk-dpdk CONFIG REQUIRED) - - ADD_EXECUTABLE(SPDKTest perf.c) - - TARGET_LINK_DIRECTORIES(SPDKTest PRIVATE ${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib/spdk) - TARGET_LINK_LIBRARIES(SPDKTest PRIVATE - SPDK::spdk_app_rpc - SPDK::spdk_bdev - SPDK::spdk_bdev_null - SPDK::spdk_bdev_rpc - SPDK::spdk_conf - SPDK::spdk_copy - SPDK::spdk_thread - SPDK::spdk_event - SPDK::spdk_event_bdev - SPDK::spdk_event_copy - SPDK::spdk_event_net - SPDK::spdk_net - SPDK::spdk_nvmf - SPDK::spdk_nvme - SPDK::spdk_sock_posix - SPDK::spdk_sock - SPDK::spdk_rpc - SPDK::spdk_jsonrpc - SPDK::spdk_json - SPDK::spdk_trace - SPDK::spdk_util - SPDK::spdk_log - SPDK::spdk_env_dpdk - SPDK::dpdk - numa - rdmacm - uuid - ibverbs - pthread - dl - ) - -Configuration script can be found at: ${CURRENT_PACKAGES_DIR}/share/${PORT}/scripts diff --git a/ports/spdk/vcpkg.json b/ports/spdk/vcpkg.json deleted file mode 100644 index 6dc4c297af9711..00000000000000 --- a/ports/spdk/vcpkg.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "spdk", - "version-string": "24.01", - "port-version": 1, - "description": "Storage Performance Development Kit", - "supports": "linux", - "dependencies": [ - "spdk-dpdk", - "spdk-ipsec", - "spdk-isal", - { - "name": "vcpkg-cmake", - "host": true - } - ] -} diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt index 138d09a872903f..ef592c6b1178ad 100644 --- a/scripts/ci.baseline.txt +++ b/scripts/ci.baseline.txt @@ -157,51 +157,12 @@ caf:arm64-android=fail caf:arm64-uwp=fail caf:x64-android=fail caf:x64-uwp=fail -# file conflict with dbg-macro -c-dbg-macro:arm64-osx=skip -c-dbg-macro:arm64-uwp=skip -c-dbg-macro:arm64-windows-static-md=skip -c-dbg-macro:arm64-windows=skip -c-dbg-macro:x64-linux=skip -c-dbg-macro:x64-osx=skip -c-dbg-macro:x64-uwp=skip -c-dbg-macro:x64-windows-release=skip -c-dbg-macro:x64-windows-static-md=skip -c-dbg-macro:x64-windows-static=skip -c-dbg-macro:x64-windows=skip -c-dbg-macro:x86-windows=skip casclib:arm64-uwp=fail casclib:x64-uwp=fail -catch-classic:arm-neon-android=skip -catch-classic:arm64-android=skip -catch-classic:arm64-osx=skip -catch-classic:arm64-uwp=skip -catch-classic:arm64-windows-static-md=skip -catch-classic:arm64-windows=skip -catch-classic:x64-android=skip -catch-classic:x64-linux=skip -catch-classic:x64-osx=skip -catch-classic:x64-uwp=skip -catch-classic:x64-windows-release=skip -catch-classic:x64-windows-static-md=skip -catch-classic:x64-windows-static=skip -catch-classic:x64-windows=skip -catch-classic:x86-windows=skip cctag:x64-windows-static-md=fail cello:arm64-uwp=fail cello:x64-uwp=fail chakracore:x64-linux=skip -# chromium-base has several problems and is upgraded to "skip" because it hits a lot of servers that can slow CI -# broken on Windows because it does not yet support VS2022 -chromium-base:x64-windows-release=skip -chromium-base:x64-windows-static-md=skip -chromium-base:x64-windows-static=skip -chromium-base:x64-windows=skip -# broken on Linux because -chromium-base:x64-linux=skip -# broken on OSX for unknown reasons; it appears to be messing with some form of system-wide cache -# because the first attempt to build it fails, but subsequent attempts succeed -chromium-base:x64-osx=skip clamav:arm64-windows=fail clblas:arm-neon-android=fail clblas:arm64-android=fail @@ -245,9 +206,6 @@ czmq:x64-android=fail darknet:arm-neon-android=fail darknet:arm64-android=fail darknet:x64-android=fail -dbg-macro:arm-neon-android=skip -dbg-macro:arm64-android=skip -dbg-macro:x64-android=skip # Since pipeline cannot automatically install dbghelp dependency, skip this detection dbghelp:arm64-uwp=skip dbghelp:arm64-windows-static-md=skip @@ -411,21 +369,6 @@ hyperscan:x64-android=fail iceoryx:arm-neon-android=fail iceoryx:arm64-android=fail iceoryx:x64-android=fail -ijg-libjpeg:arm-neon-android=skip -ijg-libjpeg:arm64-android=skip -ijg-libjpeg:arm64-osx=skip -ijg-libjpeg:arm64-uwp=skip -ijg-libjpeg:arm64-windows-static-md=skip -ijg-libjpeg:arm64-windows=skip -ijg-libjpeg:x64-android=skip -ijg-libjpeg:x64-linux=skip -ijg-libjpeg:x64-osx=skip -ijg-libjpeg:x64-uwp=skip -ijg-libjpeg:x64-windows-release=skip -ijg-libjpeg:x64-windows-static-md=fail -ijg-libjpeg:x64-windows-static=skip -ijg-libjpeg:x64-windows=skip -ijg-libjpeg:x86-windows=skip imgui-sfml:arm-neon-android=fail imgui-sfml:arm64-android=fail imgui-sfml:x64-android=fail @@ -508,8 +451,6 @@ libmariadb:x64-windows=skip libmaxminddb:arm-neon-android=fail libmaxminddb:arm64-android=fail libmaxminddb:x64-android=fail -# libmesh installs tons of problematic files that conflict with other ports (boost, eigen, etc) -libmesh:x64-linux=skip libmikmod:arm-neon-android=fail libmikmod:arm64-android=fail libmikmod:x64-android=fail @@ -558,21 +499,6 @@ libtar:arm64-android=fail libtomcrypt:arm64-uwp=fail libtomcrypt:arm64-windows-static-md=fail libtomcrypt:arm64-windows=fail -# upstream issue https://github.com/microsoft/vcpkg/pull/13765#issuecomment-699710253 -libvmdk:arm-neon-android=skip -libvmdk:arm64-android=skip -libvmdk:arm64-osx=skip -libvmdk:arm64-windows-static-md=skip -libvmdk:arm64-windows=skip -libvmdk:x64-android=skip -libvmdk:x64-linux=skip -libvmdk:x64-osx=skip -libvmdk:x64-windows-release=skip -libvmdk:x64-windows-static-md=skip -libvmdk:x64-windows-static=skip -libvmdk:x64-windows=skip -libvmdk:x86-windows=skip -libxaw:x64-windows-static=skip libxt:arm64-windows-static-md=fail # Inline asm used doesn't appear to support arm64-windows libxt:arm64-windows=fail # Inline asm used doesn't appear to support arm64-windows libxt:x64-windows-release=fail # Appears to have broken races @@ -643,22 +569,6 @@ ms-gdkx:x64-windows-release=fail ms-gdkx:x64-windows-static-md=fail ms-gdkx:x64-windows-static=fail ms-gdkx:x64-windows=fail -# Conflicts with libjpeg-turbo -mozjpeg:arm-neon-android=fail -mozjpeg:arm64-android=fail -mozjpeg:arm64-osx=skip -mozjpeg:arm64-uwp=skip -mozjpeg:arm64-windows-static-md=skip -mozjpeg:arm64-windows=skip -mozjpeg:x64-android=fail -mozjpeg:x64-linux=skip -mozjpeg:x64-osx=skip -mozjpeg:x64-uwp=skip -mozjpeg:x64-windows-release=skip -mozjpeg:x64-windows-static-md=skip -mozjpeg:x64-windows-static=skip -mozjpeg:x64-windows=skip -mozjpeg:x86-windows=skip # mpir conflicts with gmp # see https://github.com/microsoft/vcpkg/issues/11756 mpir:arm64-windows-static-md=skip @@ -728,22 +638,6 @@ openvino:arm64-windows-static-md=fail openvino:arm64-windows=fail openvino:x64-osx=fail # OpenVINO_VERSION_MAJOR parsed from CI_BUILD_NUMBER () and from openvino/core/version.hpp (2025) are different openvr:x64-windows-static=fail -# Conflicts with optional-lite, by the same author -optional-bare:arm-neon-android=skip -optional-bare:arm64-android=skip -optional-bare:arm64-osx=skip -optional-bare:arm64-uwp=skip -optional-bare:arm64-windows-static-md=skip -optional-bare:arm64-windows=skip -optional-bare:x64-android=skip -optional-bare:x64-linux=skip -optional-bare:x64-osx=skip -optional-bare:x64-uwp=skip -optional-bare:x64-windows-release=skip -optional-bare:x64-windows-static-md=skip -optional-bare:x64-windows-static=skip -optional-bare:x64-windows=skip -optional-bare:x86-windows=skip orc:arm-neon-android=fail orc:arm64-android=fail orc:x64-android=fail @@ -777,16 +671,6 @@ qt5-base:arm64-android=fail qt5-base:arm64-windows-static-md=fail qt5-base:arm64-windows=fail qt5-base:x64-android=fail -# Skip deprecated Qt module -# (remove after 1 year or longer due to vcpkg upgrade not handling removed ports correctly) -qt5-canvas3d:arm64-osx=skip -qt5-canvas3d:x64-linux=skip -qt5-canvas3d:x64-osx=skip -qt5-canvas3d:x64-windows-release=skip -qt5-canvas3d:x64-windows-static-md=skip -qt5-canvas3d:x64-windows-static=skip -qt5-canvas3d:x64-windows=skip -qt5-canvas3d:x86-windows=skip # Skipped to avoid exceeding the 48 hour time limit in CI # May also need an older ninja version qt5-webengine:x64-windows-release=skip @@ -809,21 +693,6 @@ qtwayland:x64-osx=skip quickfix:arm-neon-android=fail quickfix:arm64-android=fail qwt-qt6:x64-osx=fail -range-v3-vs2015:arm-neon-android=skip -range-v3-vs2015:arm64-android=skip -range-v3-vs2015:arm64-osx=skip -range-v3-vs2015:arm64-uwp=skip -range-v3-vs2015:arm64-windows-static-md=skip -range-v3-vs2015:arm64-windows=skip -range-v3-vs2015:x64-android=skip -range-v3-vs2015:x64-linux=skip -range-v3-vs2015:x64-osx=skip -range-v3-vs2015:x64-uwp=skip -range-v3-vs2015:x64-windows-release=skip -range-v3-vs2015:x64-windows-static-md=skip -range-v3-vs2015:x64-windows-static=skip -range-v3-vs2015:x64-windows=skip -range-v3-vs2015:x86-windows=skip rapidstring:arm64-uwp=fail rapidstring:arm64-windows-static-md=fail rapidstring:arm64-windows=fail @@ -838,17 +707,6 @@ rapidstring:x86-windows=fail rbdl:arm-neon-android=fail rbdl:arm64-android=fail rbdl:x64-android=fail -rbdl-orb:arm64-uwp=skip -rbdl-orb:arm64-windows-static-md=skip -rbdl-orb:arm64-windows=skip -rbdl-orb:x64-linux=skip -rbdl-orb:x64-osx=skip -rbdl-orb:x64-uwp=skip -rbdl-orb:x64-windows-release=skip -rbdl-orb:x64-windows-static-md=skip -rbdl-orb:x64-windows-static=skip -rbdl-orb:x64-windows=skip -rbdl-orb:x86-windows=skip restbed:arm-neon-android=fail restbed:arm64-android=fail restbed:arm64-uwp=fail @@ -864,41 +722,10 @@ salome-medcoupling:x64-linux=fail saucer:arm64-osx=fail # std::move_only_function is not supported saucer:x64-linux=fail # requires gcc14 or later saucer:x64-osx=fail # std::move_only_function is not supported -sciter:arm-neon-android=fail -sciter:arm64-android=fail -sciter:arm64-osx=skip -sciter:arm64-uwp=skip -sciter:arm64-windows-static-md=skip -sciter:arm64-windows=skip -sciter:x64-android=fail -sciter:x64-linux=skip -sciter:x64-osx=skip -sciter:x64-uwp=skip -sciter:x64-windows-release=skip -sciter:x64-windows-static-md=skip -sciter:x64-windows-static=skip -sciter:x64-windows=skip -sciter:x86-windows=skip septag-sx:x64-android=fail sfgui:arm-neon-android=fail sfgui:arm64-android=fail sfgui:x64-android=fail -# "Obsolete" and conflicts with microsoft-signalr -signalrclient:arm-neon-android=skip -signalrclient:arm64-android=skip -signalrclient:arm64-osx=skip -signalrclient:arm64-uwp=skip -signalrclient:arm64-windows-static-md=skip -signalrclient:arm64-windows=skip -signalrclient:x64-android=skip -signalrclient:x64-linux=skip -signalrclient:x64-osx=skip -signalrclient:x64-uwp=skip -signalrclient:x64-windows-release=skip -signalrclient:x64-windows-static-md=skip -signalrclient:x64-windows-static=skip -signalrclient:x64-windows=skip -signalrclient:x86-windows=skip simbody:arm64-windows-static-md=fail simbody:arm64-windows=fail simd:arm-neon-android=fail @@ -927,12 +754,6 @@ spaceland:arm64-windows-static-md=fail spaceland:arm64-windows=fail spaceland:x64-android=fail spaceland:x64-uwp=fail -spdk:x64-linux=fail -spdk-isal:arm-neon-android=fail -spdk-isal:arm64-android=fail -spdk-isal:x64-android=fail -# Conflict with isal, and "internal" dep of spdk:x64-linux=fail -spdk-isal:x64-linux=skip spscqueue:arm-neon-android=fail spscqueue:arm64-android=fail spscqueue:x64-android=fail diff --git a/scripts/ci.feature.baseline.txt b/scripts/ci.feature.baseline.txt index 6f4b43942fcad0..3b88a7553919d2 100644 --- a/scripts/ci.feature.baseline.txt +++ b/scripts/ci.feature.baseline.txt @@ -73,9 +73,6 @@ cctag:x64-windows-static-md=fail cello:arm-uwp=fail cello:x64-uwp=fail chartdir=skip # chartdir does not offer stable download URLs -chromium-base:x64-linux=skip # broken on Linux because -chromium-base:x64-osx=skip # broken on OSX for unknown reasons; it appears to be messing with some form of system-wide cache because the first attempt to build it fails, but subsequent attempts succeed -chromium-base(windows) =skip # chromium-base has several problems and is upgraded to "skip" because it hits a lot of servers that can slow CI broken on Windows because it does not yet support VS2022 clamav:arm64-windows=fail clapack:arm64-osx=skip clapack:x64-linux=skip @@ -249,7 +246,6 @@ libusbmuxd:x64-osx=fail libusbmuxd:x64-uwp=fail libuv:arm-uwp=fail libuv:x64-uwp=fail -libvmdk=skip #Skip detection to avoid upstream remove older releases libwandio:arm-uwp=fail libwandio:arm64-windows=fail libwandio:x64-uwp=fail @@ -425,7 +421,6 @@ qbittorrent:x64-osx=fail # Not yet ready for these platforms. qt-advanced-docking-system(android)=fail # qt5-base: no cross builds qt5-base(arm & windows & !uwp)=fail -qt5-canvas3d=skip # Skip deprecated Qt module (remove after 1 year or longer due to vcpkg upgrade not handling removed ports correctly) qt5-wayland:x64-osx=fail # Missing system libraries qt5-webengine(!(arm & windows) & !uwp) = fail # Missing prerequisites for CI success qt5-x11extras(osx)=fail # Missing system libraries @@ -488,7 +483,6 @@ shiva-sfml:x64-linux=fail shiva-sfml:x64-osx=fail shiva-sfml:x64-windows=fail shiva-sfml:x86-windows=fail -signalrclient:arm-uwp=fail simbody:arm64-windows=fail simd(android)=fail sleef:x86-windows=fail @@ -510,23 +504,6 @@ spaceland:arm64-windows-static-md=fail spaceland:arm64-windows=fail spaceland:x64-android=fail spaceland:x64-uwp=fail -spdk:x64-linux=fail -spdk-dpdk:arm-uwp=fail -spdk-dpdk:arm64-windows=fail -spdk-dpdk:x64-osx=fail -spdk-dpdk:x64-uwp=fail -spdk-dpdk:x64-windows-static-md=fail -spdk-dpdk:x64-windows-static=fail -spdk-dpdk:x64-windows=fail -spdk-dpdk:x86-windows=fail -spdk-ipsec:arm-uwp=fail -spdk-ipsec:arm64-windows=fail -spdk-ipsec:x64-osx=fail -spdk-ipsec:x64-uwp=fail -spdk-ipsec:x64-windows-static-md=fail -spdk-ipsec:x64-windows-static=fail -spdk-ipsec:x64-windows=fail -spdk-ipsec:x86-windows=fail stormlib:arm-uwp=fail stormlib:x64-uwp=fail stxxl:arm-uwp=fail @@ -2272,7 +2249,6 @@ qtbase[xcb,xcb-xlib,xkb,xkbcommon-x11,xlib,xrender](osx) = skip # no x11 in CI, qtbase[xcb,xcb-xlib,xkb,xkbcommon-x11,xlib,xrender](windows) = skip # no x11 in CI qtwebengine = skip # Takes too long to feature test at ~3 hours per feature s2n = skip # builds too slow -sciter = skip # The sciter port is deprecated by upstream and conflicts with upstream's replacement. vtk[ioocct](!uwp) = skip vtk-m[cuda]:x64-linux = skip # CUDA clash with default gcc in Ubuntu 22.04, and not a quick failure. winpcap = skip # Broken and merked for removal. See https://github.com/microsoft/vcpkg/pull/33215 diff --git a/versions/baseline.json b/versions/baseline.json index a70b2e7f8365b3..646fe54b1f5ffd 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -1528,10 +1528,6 @@ "baseline": "1.34.5", "port-version": 1 }, - "c-dbg-macro": { - "baseline": "2020-02-29", - "port-version": 0 - }, "c4core": { "baseline": "0.2.7", "port-version": 0 @@ -1600,10 +1596,6 @@ "baseline": "alias", "port-version": 1 }, - "catch-classic": { - "baseline": "1.12.2", - "port-version": 2 - }, "catch2": { "baseline": "3.11.0", "port-version": 0 @@ -1716,10 +1708,6 @@ "baseline": "1.5.1", "port-version": 1 }, - "chromium-base": { - "baseline": "86.0.4199.1", - "port-version": 6 - }, "chronoengine": { "baseline": "8.0.0", "port-version": 1 @@ -3880,10 +3868,6 @@ "baseline": "1.10.0", "port-version": 0 }, - "ijg-libjpeg": { - "baseline": "9f", - "port-version": 0 - }, "im3d": { "baseline": "2022-10-11", "port-version": 0 @@ -5108,10 +5092,6 @@ "baseline": "5.1.0", "port-version": 0 }, - "libmesh": { - "baseline": "1.5.0", - "port-version": 6 - }, "libmicrodns": { "baseline": "0.2.0", "port-version": 2 @@ -5672,10 +5652,6 @@ "baseline": "3.0.0", "port-version": 0 }, - "libvmdk": { - "baseline": "20221124", - "port-version": 1 - }, "libvorbis": { "baseline": "1.3.7", "port-version": 4 @@ -5710,7 +5686,7 @@ }, "libxaw": { "baseline": "1.0.13", - "port-version": 0 + "port-version": 1 }, "libxcomposite": { "baseline": "0.4.5", @@ -6480,10 +6456,6 @@ "baseline": "2.0.22", "port-version": 1 }, - "mozjpeg": { - "baseline": "4.1.5", - "port-version": 1 - }, "mp-units": { "baseline": "2.4.0", "port-version": 1 @@ -7248,10 +7220,6 @@ "baseline": "0.3.0", "port-version": 0 }, - "optional-bare": { - "baseline": "1.1.0", - "port-version": 3 - }, "optional-lite": { "baseline": "3.6.0", "port-version": 0 @@ -7896,10 +7864,6 @@ "baseline": "5.15.17", "port-version": 2 }, - "qt5-canvas3d": { - "baseline": "0", - "port-version": 3 - }, "qt5-charts": { "baseline": "5.15.17", "port-version": 0 @@ -8316,10 +8280,6 @@ "baseline": "0.12.0", "port-version": 4 }, - "range-v3-vs2015": { - "baseline": "20151130-vcpkg5", - "port-version": 4 - }, "rapidcheck": { "baseline": "2023-12-14", "port-version": 0 @@ -8372,10 +8332,6 @@ "baseline": "3.3.0", "port-version": 7 }, - "rbdl-orb": { - "baseline": "3.2.0", - "port-version": 2 - }, "re2": { "baseline": "2025-08-12", "port-version": 0 @@ -8736,10 +8692,6 @@ "baseline": "0.3.1", "port-version": 1 }, - "sciter": { - "baseline": "0", - "port-version": 1 - }, "sciter-js": { "baseline": "6.0.1.3", "port-version": 0 @@ -8960,10 +8912,6 @@ "baseline": "0.2.0", "port-version": 0 }, - "signalrclient": { - "baseline": "1.0.0-beta1-9", - "port-version": 6 - }, "signalsmith-dsp": { "baseline": "1.6.2", "port-version": 0 @@ -9172,22 +9120,6 @@ "baseline": "5.1.0-a", "port-version": 1 }, - "spdk": { - "baseline": "24.01", - "port-version": 1 - }, - "spdk-dpdk": { - "baseline": "2018-11-24", - "port-version": 3 - }, - "spdk-ipsec": { - "baseline": "2018-07-11", - "port-version": 3 - }, - "spdk-isal": { - "baseline": "2018-10-06", - "port-version": 3 - }, "spdlog": { "baseline": "1.15.3", "port-version": 0 diff --git a/versions/l-/libxaw.json b/versions/l-/libxaw.json index 79816acce2bf98..72c7c87da38366 100644 --- a/versions/l-/libxaw.json +++ b/versions/l-/libxaw.json @@ -1,5 +1,10 @@ { "versions": [ + { + "git-tree": "9dfc51816d10bc07c30a8cb9f03834336037fb98", + "version": "1.0.13", + "port-version": 1 + }, { "git-tree": "71b085f0a3771532f541cab3ca0d8e4222526949", "version": "1.0.13",