aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorMatthieu Penant <matthieu.penant@seika.ca>2021-09-13 17:39:54 -0400
committerGitHub <noreply@github.com>2021-09-13 14:39:54 -0700
commit92f6e66a61830220fa9503f20550976c2cb674a0 (patch)
treeb24ea3ed96e74ee0ca4583db637bf30e98842e5e /ports
parent86db69b3418494223d28f64a7a460af10a89b8dd (diff)
downloadvcpkg-92f6e66a61830220fa9503f20550976c2cb674a0.tar.gz
vcpkg-92f6e66a61830220fa9503f20550976c2cb674a0.zip
[libarchive] update to 3.5.2 (#16845)
* libarchive 3.5.1 attempt to create package - error on libiconv. * update sha based on build error * Turn off the CMAKE_USE_SYSTEM_LIBARCHIVE option * remove unused patches * remove empty patches * Update scripts/test_ports/cmake/portfile.cmake Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> * revisit control file -> vcpkg.json * recover patch files * remove port version per auto-review * restore INCLUDE(CreatePkgConfigFile) * update git-tree after merge * patches not referenced #facepalm * Update libarchive.json * added missing FEATURES keyword * update git-tree + merge fix * Update libarchive.json * Update libarchive.json * Update libarchive.json * libarchive 3.5.2 * formatting + git-tree * Update libarchive.json * should not remove wrapper ? * Update libarchive.json * revert patch original EOF * update version Co-authored-by: Jonliu1993 <13720414433@163.com> Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> Co-authored-by: Seika <seika@machinex.ca>
Diffstat (limited to 'ports')
-rw-r--r--ports/libarchive/portfile.cmake14
-rw-r--r--ports/libarchive/vcpkg.json3
2 files changed, 10 insertions, 7 deletions
diff --git a/ports/libarchive/portfile.cmake b/ports/libarchive/portfile.cmake
index 02c44a603..11d5e9842 100644
--- a/ports/libarchive/portfile.cmake
+++ b/ports/libarchive/portfile.cmake
@@ -3,14 +3,14 @@ vcpkg_fail_port_install(ON_TARGET "UWP")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libarchive/libarchive
- REF fc6563f5130d8a7ee1fc27c0e55baef35119f26c #v3.4.3
- SHA512 54ca4f3cc3b38dcf6588b2369ce43109c4a57a04061348ab8bf046c5c13ace0c4f42c9f3961288542cb5fe12c05359d572b39fe7cec32a10151dbac78e8a3707
+ REF 1b2c437b99b361c7692538fa373e99955e9b93ae #v3.5.2
+ SHA512 df527dd333b01ed85f07831ba0bd4b1d0b5384fe12cfa53474ad39c04509105a3c8574a2d21a430e3584a931c8f6ae923bca95df83945f0c593c1ffaed3f62da
HEAD_REF master
- PATCHES
+ PATCHES
+ disable-warnings.patch
fix-buildsystem.patch
- fix-dependencies.patch
fix-cpu-set.patch
- disable-warnings.patch
+ fix-dependencies.patch
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
@@ -77,6 +77,10 @@ configure_file("${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake.in" "${CURRE
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
+ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
+endif()
+
foreach(HEADER ${CURRENT_PACKAGES_DIR}/include/archive.h ${CURRENT_PACKAGES_DIR}/include/archive_entry.h)
file(READ ${HEADER} CONTENTS)
string(REPLACE "(!defined LIBARCHIVE_STATIC)" "0" CONTENTS "${CONTENTS}")
diff --git a/ports/libarchive/vcpkg.json b/ports/libarchive/vcpkg.json
index 53650dc2d..2f36a1385 100644
--- a/ports/libarchive/vcpkg.json
+++ b/ports/libarchive/vcpkg.json
@@ -1,7 +1,6 @@
{
"name": "libarchive",
- "version-semver": "3.4.3",
- "port-version": 8,
+ "version-semver": "3.5.2",
"description": "Library for reading and writing streaming archives",
"homepage": "https://github.com/libarchive/libarchive",
"supports": "!uwp",