aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>2021-09-08 22:45:37 +0800
committerGitHub <noreply@github.com>2021-09-08 07:45:37 -0700
commit5b2ac1fed8943460726163946ed13154ab81c9ea (patch)
tree74f1d106b76b152ac6dd7bc9f4b29b198e4f93e1
parent615547c1d5b363d3586d2012c4cd7d075a0516b8 (diff)
downloadvcpkg-5b2ac1fed8943460726163946ed13154ab81c9ea.tar.gz
vcpkg-5b2ac1fed8943460726163946ed13154ab81c9ea.zip
[libhsplasma/libpcap/lv2/libcrafter] Update to the latest version (#19965)
* [libhsplasma/libpcap/lv2] Update to the latest version * [libpcap] Remove unused comments * Update version files * [lv2] Fix usage [libpcap] Update ci.baseline.txt * [libhsplasma] Remove x64-windows-static=fail from ci.baseline.txt * [libcrafter] Update to 1.0 * [libcrafter] Add vcpkg.json * Update version files * Add CRT check for libpcap and update version as versin-semver for libpcap * Update version files Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
-rw-r--r--ports/libcrafter/CONTROL6
-rw-r--r--ports/libcrafter/portfile.cmake12
-rw-r--r--ports/libcrafter/vcpkg.json10
-rw-r--r--ports/libhsplasma/CONTROL10
-rw-r--r--ports/libhsplasma/portfile.cmake23
-rw-r--r--ports/libhsplasma/vcpkg.json29
-rw-r--r--ports/libpcap/0001-fix-package-name.patch12
-rw-r--r--ports/libpcap/CONTROL5
-rw-r--r--ports/libpcap/add-disable-packet-option.patch48
-rw-r--r--ports/libpcap/install-pc-on-msvc.patch104
-rw-r--r--ports/libpcap/portfile.cmake77
-rw-r--r--ports/libpcap/vcpkg.json13
-rw-r--r--ports/lv2/CMakeLists.txt2
-rw-r--r--ports/lv2/portfile.cmake14
-rw-r--r--ports/lv2/vcpkg.json14
-rw-r--r--scripts/ci.baseline.txt9
-rw-r--r--versions/baseline.json10
-rw-r--r--versions/l-/libcrafter.json5
-rw-r--r--versions/l-/libhsplasma.json5
-rw-r--r--versions/l-/libpcap.json5
-rw-r--r--versions/l-/lv2.json5
21 files changed, 184 insertions, 234 deletions
diff --git a/ports/libcrafter/CONTROL b/ports/libcrafter/CONTROL
deleted file mode 100644
index 47538dae9..000000000
--- a/ports/libcrafter/CONTROL
+++ /dev/null
@@ -1,6 +0,0 @@
-Source: libcrafter
-Version: 0.3
-Port-Version: 2
-Homepage: https://github.com/pellegre/libcrafter
-Description: Libcrafter is a high level library for C++ designed to create and decode network packets.
-Build-Depends: libpcap
diff --git a/ports/libcrafter/portfile.cmake b/ports/libcrafter/portfile.cmake
index 565a0c346..3b78eadf9 100644
--- a/ports/libcrafter/portfile.cmake
+++ b/ports/libcrafter/portfile.cmake
@@ -1,15 +1,17 @@
+vcpkg_fail_port_install(ON_TARGET "windows")
+
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO pellegre/libcrafter
- REF version-0.3
- SHA512 7c396ba942b304dddfaa569adb44697f75568d3ef2ed48dda758e281f3b7c172439309033bbf5498069a4a61a952f93e41af99b129ce874ce76b5ec08da58116
+ REF 86f81f101b5e3051ed04563b3ad3dd7a823afb21 #version-1.0
+ SHA512 bd0eac06896df63f0fff0ed3cf7ca5176e56615476c8134bd26f035692ab9e583f58f1f57daa7673771a710d6921c0c6a6473ab181982ad57727584f2cde56d0
HEAD_REF master
PATCHES fix-build-error.patch
)
vcpkg_configure_make(
AUTOCONFIG
- SOURCE_PATH ${SOURCE_PATH}
+ SOURCE_PATH "${SOURCE_PATH}"
PROJECT_SUBPATH libcrafter
OPTIONS
"--with-libpcap=${CURRENT_INSTALLED_DIR}"
@@ -17,9 +19,9 @@ vcpkg_configure_make(
vcpkg_install_make()
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
vcpkg_copy_pdbs()
# Handle copyright
-file(INSTALL ${SOURCE_PATH}/libcrafter/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright) \ No newline at end of file
+file(INSTALL "${SOURCE_PATH}/libcrafter/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file
diff --git a/ports/libcrafter/vcpkg.json b/ports/libcrafter/vcpkg.json
new file mode 100644
index 000000000..0f774a171
--- /dev/null
+++ b/ports/libcrafter/vcpkg.json
@@ -0,0 +1,10 @@
+{
+ "name": "libcrafter",
+ "version": "1.0",
+ "description": "Libcrafter is a high level library for C++ designed to create and decode network packets.",
+ "homepage": "https://github.com/pellegre/libcrafter",
+ "supports": "!windows",
+ "dependencies": [
+ "libpcap"
+ ]
+}
diff --git a/ports/libhsplasma/CONTROL b/ports/libhsplasma/CONTROL
deleted file mode 100644
index eb5c047ed..000000000
--- a/ports/libhsplasma/CONTROL
+++ /dev/null
@@ -1,10 +0,0 @@
-Source: libhsplasma
-Version: 2020.08.30
-Homepage: https://github.com/H-uru/libhsplasma
-Description: Cross-platform Plasma data and network library
-Build-Depends: libjpeg-turbo, libpng, string-theory, zlib
-Supports: !(arm|uwp)
-
-Feature: net
-Description: Network functionality
-Build-Depends: openssl
diff --git a/ports/libhsplasma/portfile.cmake b/ports/libhsplasma/portfile.cmake
index 506f09d20..b37dfa7ae 100644
--- a/ports/libhsplasma/portfile.cmake
+++ b/ports/libhsplasma/portfile.cmake
@@ -1,20 +1,20 @@
-vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
+vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO H-uru/libhsplasma
- REF afd9c46fa72afbbaf5260800ecfde0704ba2a475
- SHA512 21774b465ede7fe5e44df4470ed6867977ac9249400ba6d0bed33fd0e856d467de1afe79afb8a4dc6145eef21c5a3f79590b5cfa3ea1337cc355ca8f3bf1a11c
+ REF e435db76f86a0258ccd6f62a8bcd1f8b42d4f22d #2021.06.08
+ SHA512 ebd53633f22662793613c689b5a07f6149ed2b437c42a024e7c14a18d4411356edb11c95c08e1215dde443988fd1e4bcdd8d35fc30ca2545f507d6a61565cc69
HEAD_REF master
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
- net ENABLE_NET
+ FEATURES
+ net ENABLE_NET
)
-vcpkg_configure_cmake(
+vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
OPTIONS
${FEATURE_OPTIONS}
-DENABLE_PHYSX=OFF
@@ -22,14 +22,11 @@ vcpkg_configure_cmake(
-DENABLE_TOOLS=OFF
)
-vcpkg_install_cmake()
-vcpkg_fixup_cmake_targets(
- CONFIG_PATH share/cmake/HSPlasma
- TARGET_PATH share/HSPlasma
-)
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME HSPlasma CONFIG_PATH share/cmake/HSPlasma)
vcpkg_fixup_pkgconfig()
vcpkg_copy_pdbs()
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
-file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) \ No newline at end of file
diff --git a/ports/libhsplasma/vcpkg.json b/ports/libhsplasma/vcpkg.json
new file mode 100644
index 000000000..3c6ea3930
--- /dev/null
+++ b/ports/libhsplasma/vcpkg.json
@@ -0,0 +1,29 @@
+{
+ "name": "libhsplasma",
+ "version-string": "2021.06.08",
+ "description": "Cross-platform Plasma data and network library",
+ "homepage": "https://github.com/H-uru/libhsplasma",
+ "supports": "!(arm | uwp)",
+ "dependencies": [
+ "libjpeg-turbo",
+ "libpng",
+ "string-theory",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ },
+ "zlib"
+ ],
+ "features": {
+ "net": {
+ "description": "Network functionality",
+ "dependencies": [
+ "openssl"
+ ]
+ }
+ }
+}
diff --git a/ports/libpcap/0001-fix-package-name.patch b/ports/libpcap/0001-fix-package-name.patch
deleted file mode 100644
index cd1deeed2..000000000
--- a/ports/libpcap/0001-fix-package-name.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 55b93f1..f4f9d51 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -2358,7 +2358,6 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pcap-namedb.h DESTINATION include)
- # On UN*X, and on Windows when not using MSVC, generate libpcap.pc and
- # pcap-config and process man pages and arrange that they be installed.
- if(NOT MSVC)
-- set(PACKAGE_NAME ${LIBRARY_NAME})
- set(prefix ${CMAKE_INSTALL_PREFIX})
- set(exec_prefix "\${prefix}")
- set(includedir "\${prefix}/include")
diff --git a/ports/libpcap/CONTROL b/ports/libpcap/CONTROL
deleted file mode 100644
index d96e55895..000000000
--- a/ports/libpcap/CONTROL
+++ /dev/null
@@ -1,5 +0,0 @@
-Source: libpcap
-Version: 1.9.1-2
-Description: A portable C/C++ library for network traffic capture
-Homepage: https://www.tcpdump.org/
-Supports: !(arm64|uwp|osx)
diff --git a/ports/libpcap/add-disable-packet-option.patch b/ports/libpcap/add-disable-packet-option.patch
index 842176a55..9d89a5505 100644
--- a/ports/libpcap/add-disable-packet-option.patch
+++ b/ports/libpcap/add-disable-packet-option.patch
@@ -1,8 +1,8 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 3fe9979..23783d3 100644
+index 2f675d1..e9d6d96 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
-@@ -161,6 +161,7 @@ set(SEPTEL_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/../septel" CACHE PATH "Path to dire
+@@ -244,6 +244,7 @@ set(SEPTEL_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/../septel" CACHE PATH "Path to dire
option(DISABLE_SNF "Disable Myricom SNF support" OFF)
option(DISABLE_TC "Disable Riverbed TurboCap support" OFF)
@@ -10,38 +10,22 @@ index 3fe9979..23783d3 100644
#
# Debugging options.
-@@ -220,19 +221,21 @@ if(WIN32)
+@@ -302,7 +303,7 @@ if(WIN32)
+ if(IS_DIRECTORY ${CMAKE_HOME_DIRECTORY}/../../Common)
include_directories(${CMAKE_HOME_DIRECTORY}/../../Common)
endif(IS_DIRECTORY ${CMAKE_HOME_DIRECTORY}/../../Common)
-
-- find_package(Packet)
-- if(PACKET_FOUND)
-- set(HAVE_PACKET32 TRUE)
-- include_directories(${PACKET_INCLUDE_DIRS})
-- #
-- # Check whether we have the NPcap PacketIsLoopbackAdapter()
-- # function.
-- #
-- cmake_push_check_state()
-- set(CMAKE_REQUIRED_LIBRARIES ${PACKET_LIBRARIES})
-- check_function_exists(PacketIsLoopbackAdapter HAVE_PACKET_IS_LOOPBACK_ADAPTER)
-- cmake_pop_check_state()
-- endif(PACKET_FOUND)
+-
+ if(NOT DISABLE_PACKET)
-+ find_package(Packet)
-+ if(PACKET_FOUND)
-+ set(HAVE_PACKET32 TRUE)
-+ include_directories(${PACKET_INCLUDE_DIRS})
-+ #
-+ # Check whether we have the NPcap PacketIsLoopbackAdapter()
-+ # function.
-+ #
-+ cmake_push_check_state()
-+ set(CMAKE_REQUIRED_LIBRARIES ${PACKET_LIBRARIES})
-+ check_function_exists(PacketIsLoopbackAdapter HAVE_PACKET_IS_LOOPBACK_ADAPTER)
-+ cmake_pop_check_state()
-+ endif(PACKET_FOUND)
+ find_package(Packet)
+ if(PACKET_FOUND)
+ set(HAVE_PACKET32 TRUE)
+@@ -317,7 +318,8 @@ if(WIN32)
+ check_function_exists(PacketGetTimestampModes HAVE_PACKET_GET_TIMESTAMP_MODES)
+ cmake_pop_check_state()
+ endif(PACKET_FOUND)
+-
+ endif()
-
++
message(STATUS "checking for Npcap's version.h")
- check_symbol_exists(WINPCAP_PRODUCT_NAME "../../version.h" HAVE_VERSION_H)
+ check_symbol_exists(WINPCAP_PRODUCT_NAME "${CMAKE_SOURCE_DIR}/../../version.h" HAVE_VERSION_H)
+ if(HAVE_VERSION_H)
diff --git a/ports/libpcap/install-pc-on-msvc.patch b/ports/libpcap/install-pc-on-msvc.patch
index f2cd64b44..6dd18f202 100644
--- a/ports/libpcap/install-pc-on-msvc.patch
+++ b/ports/libpcap/install-pc-on-msvc.patch
@@ -1,97 +1,37 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 55b93f1..3fe9979 100644
+index b83fbbd..2f675d1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
-@@ -2355,48 +2355,54 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pcap.h DESTINATION include)
+@@ -2678,9 +2678,12 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pcap.h DESTINATION include)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pcap-bpf.h DESTINATION include)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pcap-namedb.h DESTINATION include)
-# On UN*X, and on Windows when not using MSVC, generate libpcap.pc and
+-# pcap-config and process man pages and arrange that they be installed.
+-if(NOT MSVC)
+# Generate libpcap.pc
+if(BUILD_SHARED_LIBS)
+ set(PACKAGE_NAME ${LIBRARY_NAME})
+else()
+ set(PACKAGE_NAME pcap)
+endif()
-+set(prefix ${CMAKE_INSTALL_PREFIX})
-+set(exec_prefix "\${prefix}")
-+set(includedir "\${prefix}/include")
-+set(libdir "\${exec_prefix}/lib")
-+if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
-+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
-+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD" OR
-+ CMAKE_SYSTEM_NAME STREQUAL "DragonFly BSD" OR
-+ CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
-+ CMAKE_SYSTEM_NAME STREQUAL "OSF1")
-+ #
-+ # Platforms where the linker is the GNU linker
-+ # or accepts command-line arguments like
-+ # those the GNU linker accepts.
-+ #
-+ set(V_RPATH_OPT "-Wl,-rpath,")
-+elseif(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_VERSION MATCHES "5[.][0-9.]*")
-+ #
-+ # SunOS 5.x.
-+ #
-+ # XXX - this assumes GCC is using the Sun linker,
-+ # rather than the GNU linker.
-+ #
-+ set(V_RPATH_OPT "-Wl,-R,")
-+else()
-+ #
-+ # No option needed to set the RPATH.
-+ #
-+ set(V_RPATH_OPT "")
-+endif()
-+set(LIBS "")
-+foreach(LIB ${PCAP_LINK_LIBRARIES})
-+ set(LIBS "${LIBS} -l${LIB}")
-+endforeach(LIB)
-+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpcap.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc @ONLY)
-+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc DESTINATION lib/pkgconfig)
-+
-+# On UN*X, and on Windows when not using MSVC, generate
- # pcap-config and process man pages and arrange that they be installed.
- if(NOT MSVC)
-- set(prefix ${CMAKE_INSTALL_PREFIX})
-- set(exec_prefix "\${prefix}")
-- set(includedir "\${prefix}/include")
-- set(libdir "\${exec_prefix}/lib")
-- if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
-- CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
-- CMAKE_SYSTEM_NAME STREQUAL "OpenBSD" OR
-- CMAKE_SYSTEM_NAME STREQUAL "DragonFly BSD" OR
-- CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
-- CMAKE_SYSTEM_NAME STREQUAL "OSF1")
-- #
-- # Platforms where the linker is the GNU linker
-- # or accepts command-line arguments like
-- # those the GNU linker accepts.
-- #
-- set(V_RPATH_OPT "-Wl,-rpath,")
-- elseif(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_VERSION MATCHES "5[.][0-9.]*")
-- #
-- # SunOS 5.x.
-- #
-- # XXX - this assumes GCC is using the Sun linker,
-- # rather than the GNU linker.
-- #
-- set(V_RPATH_OPT "-Wl,-R,")
-- else()
-- #
-- # No option needed to set the RPATH.
-- #
-- set(V_RPATH_OPT "")
-- endif()
-- set(LIBS "")
-- foreach(LIB ${PCAP_LINK_LIBRARIES})
-- set(LIBS "${LIBS} -l${LIB}")
-- endforeach(LIB)
- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pcap-config.in ${CMAKE_CURRENT_BINARY_DIR}/pcap-config @ONLY)
-- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpcap.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc @ONLY)
- install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/pcap-config DESTINATION bin)
-- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc DESTINATION lib/pkgconfig)
--
+ set(prefix ${CMAKE_INSTALL_PREFIX})
+ set(exec_prefix "\${prefix}")
+ set(includedir "\${prefix}/include")
+@@ -2715,10 +2718,14 @@ if(NOT MSVC)
+ foreach(LIB ${PCAP_LINK_LIBRARIES})
+ set(LIBS "${LIBS} -l${LIB}")
+ endforeach(LIB)
+- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pcap-config.in ${CMAKE_CURRENT_BINARY_DIR}/pcap-config @ONLY)
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpcap.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc @ONLY)
+- install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/pcap-config DESTINATION bin)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpcap.pc DESTINATION lib/pkgconfig)
++
++# On UN*X, and on Windows when not using MSVC, generate libpcap.pc and
++# pcap-config and process man pages and arrange that they be installed.
++if(NOT MSVC)
++ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pcap-config.in ${CMAKE_CURRENT_BINARY_DIR}/pcap-config @ONLY)
++ install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/pcap-config DESTINATION bin)
+
#
# Man pages.
- #
diff --git a/ports/libpcap/portfile.cmake b/ports/libpcap/portfile.cmake
index ab2540482..9fef5379d 100644
--- a/ports/libpcap/portfile.cmake
+++ b/ports/libpcap/portfile.cmake
@@ -1,10 +1,10 @@
-vcpkg_fail_port_install(MESSAGE "${PORT} currently only supports x64-windows, x86-windows and Linux" ON_TARGET "UWP" "OSX" ON_ARCH "arm64")
+vcpkg_fail_port_install(ON_TARGET "UWP" "OSX")
if(EXISTS "${CURRENT_INSTALLED_DIR}/share/winpcap")
message(FATAL_ERROR "FATAL ERROR: winpcap and libpcap are incompatible.")
endif()
-if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux")
+if(VCPKG_TARGET_IS_LINUX)
message(
"libpcap currently requires the following libraries from the system package manager:
flex
@@ -13,30 +13,19 @@ These can be installed on Ubuntu systems via sudo apt install flex libbison-dev"
)
endif()
-list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR})
+list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
-vcpkg_download_distfile(
- SOURCE_ARCHIVE_PATH
- URLS http://www.tcpdump.org/release/libpcap-1.9.1.tar.gz
- FILENAME libpcap-1.9.1.tar.gz
- SHA512 ae0d6b0ad8253e7e059336c0f4ed3850d20d7d2f4dc1d942c2951f99a5443a690f0cc42c6f8fdc4a0ccb19e9e985192ba6f399c4bde2c7076e420f547fddfb08
-)
-
-vcpkg_extract_source_archive_ex(
+vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
- ARCHIVE ${SOURCE_ARCHIVE_PATH}
- REF 1.9.1
+ REPO the-tcpdump-group/libpcap
+ REF c7642e2cc0c5bd65754685b160d25dc23c76c6bd #1.10.1
+ SHA512 ed46095863aaee79ca2833d26438f6c837cc3e64acb73efd5a388a11ff7d0d1245d23e5404070a9f2c2c77840c93c09328746761e4481e9a530593a5cbf2ad6f
+ HEAD_REF master
PATCHES
- 0001-fix-package-name.patch
install-pc-on-msvc.patch
add-disable-packet-option.patch
)
-# Only dynamic builds are currently supported on Windows
-if(VCPKG_TARGET_IS_WINDOWS)
- vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
-endif()
-
vcpkg_find_acquire_program(BISON)
get_filename_component(BISON_PATH ${BISON} DIRECTORY)
vcpkg_add_to_path(${BISON_PATH})
@@ -44,11 +33,11 @@ vcpkg_find_acquire_program(FLEX)
get_filename_component(FLEX_PATH ${FLEX} DIRECTORY)
vcpkg_add_to_path(${FLEX_PATH})
-vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
+string(COMPARE EQUAL "${VCPKG_CRT_LINKAGE}" "static" USE_STATIC_RT)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
- -DDISABLE_USB=ON
-DDISABLE_NETMAP=ON
-DDISABLE_BLUETOOTH=ON
-DDISABLE_DBUS=ON
@@ -59,37 +48,37 @@ vcpkg_configure_cmake(
-DDISABLE_TC=ON
-DDISABLE_PACKET=ON
-DENABLE_REMOTE=OFF
+ -DUSE_STATIC_RT=${USE_STATIC_RT}
)
-vcpkg_install_cmake()
-file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+vcpkg_cmake_install()
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
-# On Windows 64-bit, libpcap 1.9.1 installs the libraries in a amd64 subdirectory of the usual directories
+# On Windows 64-bit, libpcap 1.10.1 installs the libraries in a x64 subdirectory of the usual directories
if(VCPKG_TARGET_IS_WINDOWS AND VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
- set(libsubdir "amd64")
- file(GLOB_RECURSE FILES_TO_MOVE ${CURRENT_PACKAGES_DIR}/lib/${libsubdir}/*)
- file(COPY ${FILES_TO_MOVE} DESTINATION ${CURRENT_PACKAGES_DIR}/lib)
- file(GLOB_RECURSE FILES_TO_MOVE ${CURRENT_PACKAGES_DIR}/debug/lib/${libsubdir}/*)
- file(COPY ${FILES_TO_MOVE} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/lib)
- file(GLOB_RECURSE FILES_TO_MOVE ${CURRENT_PACKAGES_DIR}/bin/${libsubdir}/*)
- file(COPY ${FILES_TO_MOVE} DESTINATION ${CURRENT_PACKAGES_DIR}/bin)
- file(GLOB_RECURSE FILES_TO_MOVE ${CURRENT_PACKAGES_DIR}/debug/bin/${libsubdir}/*)
- file(COPY ${FILES_TO_MOVE} DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin)
- file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/${libsubdir}
- ${CURRENT_PACKAGES_DIR}/debug/lib/${libsubdir}
- ${CURRENT_PACKAGES_DIR}/bin/${libsubdir}
- ${CURRENT_PACKAGES_DIR}/debug/bin/${libsubdir})
+ set(libsubdir "x64")
+ file(GLOB_RECURSE FILES_TO_MOVE "${CURRENT_PACKAGES_DIR}/lib/${libsubdir}/*")
+ file(COPY ${FILES_TO_MOVE} DESTINATION "${CURRENT_PACKAGES_DIR}/lib")
+ file(GLOB_RECURSE FILES_TO_MOVE "${CURRENT_PACKAGES_DIR}/debug/lib/${libsubdir}/*")
+ file(COPY ${FILES_TO_MOVE} DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib")
+ file(GLOB_RECURSE FILES_TO_MOVE "${CURRENT_PACKAGES_DIR}/bin/${libsubdir}/*")
+ file(COPY ${FILES_TO_MOVE} DESTINATION "${CURRENT_PACKAGES_DIR}/bin")
+ file(GLOB_RECURSE FILES_TO_MOVE "${CURRENT_PACKAGES_DIR}/debug/bin/${libsubdir}/*")
+ file(COPY ${FILES_TO_MOVE} DESTINATION "${CURRENT_PACKAGES_DIR}/debug/bin")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/${libsubdir}"
+ "${CURRENT_PACKAGES_DIR}/debug/lib/${libsubdir}"
+ "${CURRENT_PACKAGES_DIR}/bin/${libsubdir}"
+ "${CURRENT_PACKAGES_DIR}/debug/bin/${libsubdir}")
endif()
# Even if compiled with BUILD_SHARED_LIBS=ON, pcap also install a pcap_static library
if(VCPKG_TARGET_IS_WINDOWS AND VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
- file(REMOVE ${CURRENT_PACKAGES_DIR}/lib/pcap_static.lib ${CURRENT_PACKAGES_DIR}/debug/lib/pcap_static.lib)
+ file(REMOVE "${CURRENT_PACKAGES_DIR}/lib/pcap_static.lib" "${CURRENT_PACKAGES_DIR}/debug/lib/pcap_static.lib")
endif()
-vcpkg_fixup_pkgconfig(SYSTEM_LIBRARIES ws2_32)
+vcpkg_fixup_pkgconfig()
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
- file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share ${CURRENT_PACKAGES_DIR}/share/man)
-
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share" "${CURRENT_PACKAGES_DIR}/share/man") \ No newline at end of file
diff --git a/ports/libpcap/vcpkg.json b/ports/libpcap/vcpkg.json
new file mode 100644
index 000000000..56e2a86ae
--- /dev/null
+++ b/ports/libpcap/vcpkg.json
@@ -0,0 +1,13 @@
+{
+ "name": "libpcap",
+ "version-semver": "1.10.1",
+ "description": "A portable C/C++ library for network traffic capture",
+ "homepage": "https://www.tcpdump.org/",
+ "supports": "!(uwp | osx)",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ }
+ ]
+}
diff --git a/ports/lv2/CMakeLists.txt b/ports/lv2/CMakeLists.txt
index fb51906cd..6e17095e9 100644
--- a/ports/lv2/CMakeLists.txt
+++ b/ports/lv2/CMakeLists.txt
@@ -31,5 +31,5 @@ endforeach()
install(
EXPORT lv2-config
NAMESPACE lv2::
- DESTINATION "${CMAKE_INSTALL_PREFIX}/share/lv2"
+ DESTINATION share/lv2
)
diff --git a/ports/lv2/portfile.cmake b/ports/lv2/portfile.cmake
index 393bd5dc9..1c4e8640d 100644
--- a/ports/lv2/portfile.cmake
+++ b/ports/lv2/portfile.cmake
@@ -1,22 +1,20 @@
-vcpkg_from_gitlab(
- GITLAB_URL https://gitlab.com
+vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO lv2/lv2
- REF v1.18.0
- SHA512 f84c5f2b31f42ed5cab10976d1975743c62f06025a5b67bc99778ba5d0f354c06cb9fad8f5899a52b8c1131f4c9085f5867c83da4d8269c234fd2a22a2c6a689
+ REF cd152104c84bcee9fec22ef780cec2af7ba85d0c #v1.18.2
+ SHA512 77220524481e97222b12782a89efdcfcb73ee6ac9b9aac88741475c60a2c21049153297860a24b77c0ebd4de32d38a38232ba4fc64d12b8558a56ef50b316801
HEAD_REF master
)
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
-vcpkg_configure_cmake(
+vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
- PREFER_NINJA
)
-vcpkg_install_cmake()
+vcpkg_cmake_install()
-vcpkg_fixup_cmake_targets()
+vcpkg_cmake_config_fixup()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
file(
INSTALL "${SOURCE_PATH}/COPYING"
diff --git a/ports/lv2/vcpkg.json b/ports/lv2/vcpkg.json
index 8192f734a..14ff65d9a 100644
--- a/ports/lv2/vcpkg.json
+++ b/ports/lv2/vcpkg.json
@@ -1,7 +1,17 @@
{
"name": "lv2",
- "version-string": "1.18.0",
+ "version-semver": "1.18.2",
"description": "LV2 is a plugin standard for audio systems. It defines a minimal yet extensible C API for plugin code and a format for plugin \"bundles\".",
"homepage": "https://lv2plug.in",
- "license": "ISC"
+ "license": "ISC",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
}
diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt
index eb7e7226d..ff30d695b 100644
--- a/scripts/ci.baseline.txt
+++ b/scripts/ci.baseline.txt
@@ -438,7 +438,6 @@ hiredis:x64-uwp=fail
hpx:x64-windows-static=fail
hpx:x64-linux=fail
hunspell:x64-windows-static-md=fail
-libhsplasma:x64-windows-static=fail
ideviceinstaller:x64-windows-static-md=fail
idevicerestore:x64-linux=fail
idevicerestore:x64-osx=fail
@@ -544,14 +543,11 @@ libcds:arm-uwp=fail
libcds:x64-uwp=fail
libcopp:arm64-windows=fail
libcopp:arm-uwp=fail
-libcrafter:x86-windows=fail
-libcrafter:x64-windows=fail
libgeotiff:arm-uwp=fail
libgeotiff:x64-uwp=fail
# Missing system libraries on linux to run/prepare autoconf
libgpod:x64-linux=fail
libgpod:x64-osx=fail
-libcrafter:x64-windows-static-md=fail
cpuid:arm-uwp=fail
cpuid:x64-uwp=fail
cpuid:arm64-windows=fail
@@ -673,11 +669,6 @@ libopusenc:arm-uwp=fail
libopusenc:x64-osx=fail
libopusenc:x64-uwp=fail
libosip2:x64-windows-static-md=fail
-libpcap:arm64-windows=fail
-libpcap:arm-uwp=fail
-libpcap:x64-osx=fail
-libpcap:x64-uwp=fail
-libpcap:x64-windows-static=fail
libpff:arm-uwp=fail
libpff:x64-linux=fail
libpff:x64-osx=fail
diff --git a/versions/baseline.json b/versions/baseline.json
index 38bc48495..4b61fbfe5 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -3165,8 +3165,8 @@
"port-version": 0
},
"libcrafter": {
- "baseline": "0.3",
- "port-version": 2
+ "baseline": "1.0",
+ "port-version": 0
},
"libcroco": {
"baseline": "0.6.13",
@@ -3317,7 +3317,7 @@
"port-version": 3
},
"libhsplasma": {
- "baseline": "2020.08.30",
+ "baseline": "2021.06.08",
"port-version": 0
},
"libhv": {
@@ -3537,7 +3537,7 @@
"port-version": 0
},
"libpcap": {
- "baseline": "1.9.1-2",
+ "baseline": "1.10.1",
"port-version": 0
},
"libpff": {
@@ -3961,7 +3961,7 @@
"port-version": 0
},
"lv2": {
- "baseline": "1.18.0",
+ "baseline": "1.18.2",
"port-version": 0
},
"lz4": {
diff --git a/versions/l-/libcrafter.json b/versions/l-/libcrafter.json
index 17626b388..54a6f19a8 100644
--- a/versions/l-/libcrafter.json
+++ b/versions/l-/libcrafter.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "2d64cfcfa4f2d76c110499477112db136cca34ca",
+ "version": "1.0",
+ "port-version": 0
+ },
+ {
"git-tree": "ab60b081bd44f7a40a649a66c793373931815487",
"version-string": "0.3",
"port-version": 2
diff --git a/versions/l-/libhsplasma.json b/versions/l-/libhsplasma.json
index 4655181e6..43e6b79a5 100644
--- a/versions/l-/libhsplasma.json
+++ b/versions/l-/libhsplasma.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "9ffbd25ec776fbae40999d98a50d927180b560b5",
+ "version-string": "2021.06.08",
+ "port-version": 0
+ },
+ {
"git-tree": "3cc323670945b88a5da121aa2823e4ac154d964e",
"version-string": "2020.08.30",
"port-version": 0
diff --git a/versions/l-/libpcap.json b/versions/l-/libpcap.json
index 772b0beff..4d97a3741 100644
--- a/versions/l-/libpcap.json
+++ b/versions/l-/libpcap.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "5fb18d1935c9d7db3a7ff158e2aba95d5a9c6cd2",
+ "version-semver": "1.10.1",
+ "port-version": 0
+ },
+ {
"git-tree": "7dbf78276e1e48505930da6993e36bf381a51b3e",
"version-string": "1.9.1-2",
"port-version": 0
diff --git a/versions/l-/lv2.json b/versions/l-/lv2.json
index 0f803067d..039be1d3c 100644
--- a/versions/l-/lv2.json
+++ b/versions/l-/lv2.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "3a811ec51d55cce1d5eaf4a430a8e274f1916bb9",
+ "version-semver": "1.18.2",
+ "port-version": 0
+ },
+ {
"git-tree": "4fcc1df0a11567c74dccb3fafe922a1f2686eff3",
"version-string": "1.18.0",
"port-version": 0