diff options
| author | wangqr <wangqr@users.noreply.github.com> | 2021-04-30 18:13:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 11:13:16 -0700 |
| commit | dfb69e54d834d61fea317fadae400d96ff67b977 (patch) | |
| tree | 051ee79a41af34277340e26d09d639c163adcae5 | |
| parent | cc726b6a6d0e8cb6da0a5af16fb62ea67706b49b (diff) | |
| download | vcpkg-dfb69e54d834d61fea317fadae400d96ff67b977.tar.gz vcpkg-dfb69e54d834d61fea317fadae400d96ff67b977.zip | |
[avisynthplus] Update to 3.7.0 (#17221)
* [avisynthplus] Update to 3.7.0
* Update to 3.7.0
* Allows static build as this is supported since 3.7.0
* [avisynthplus] add filesystem submodule to support older compiler
* [avisynthplus] change version-string to version-semver
| -rw-r--r-- | ports/avisynthplus/portfile.cmake | 20 | ||||
| -rw-r--r-- | ports/avisynthplus/vcpkg.json | 4 | ||||
| -rw-r--r-- | versions/a-/avisynthplus.json | 5 | ||||
| -rw-r--r-- | versions/baseline.json | 2 |
4 files changed, 23 insertions, 8 deletions
diff --git a/ports/avisynthplus/portfile.cmake b/ports/avisynthplus/portfile.cmake index e60a12149..8bbc5eace 100644 --- a/ports/avisynthplus/portfile.cmake +++ b/ports/avisynthplus/portfile.cmake @@ -1,15 +1,23 @@ -vcpkg_fail_port_install(ON_ARCH "arm" "arm64" ON_LIBRARY_LINKAGE "static" ON_TARGET "UWP") - -vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY) +vcpkg_fail_port_install(ON_ARCH "arm" "arm64" ON_TARGET "UWP") vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO AviSynth/AviSynthPlus - REF v3.6.1 - SHA512 7104c334769aacf3b1c14491c2e0cdd6586d6ea68dae7d10e7955ac56c6277fe4ae189d30ebd161baeda80e65e80fc49d4b2aed476272dd1aa235e7c8f0209d9 + REF v3.7.0 + SHA512 0f2d5344c4472b810667b99d9e99a2ec8135923f4185dbd7e29ca65e696ce13500ea20ef09c995486573314149a671e1256a4dd0696c4ace8d3ec3716ffdcfc7 HEAD_REF master ) +vcpkg_download_distfile(GHC_ARCHIVE + URLS "https://github.com/gulrak/filesystem/archive/3f1c185ab414e764c694b8171d1c4d8c5c437517.zip" + FILENAME filesystem-3f1c185ab414e764c694b8171d1c4d8c5c437517.zip + SHA512 e3fe1e41b31f840ebc219fcd795e7be2973b80bb3843d6bb080786ad9e3e7f846a118673cb9e17d76bae66954e64e024a82622fb8cea7818d5d9357de661d3d1 +) + +file(REMOVE_RECURSE ${SOURCE_PATH}/filesystem) +vcpkg_extract_source_archive(${GHC_ARCHIVE} ${SOURCE_PATH}) +file(RENAME ${SOURCE_PATH}/filesystem-3f1c185ab414e764c694b8171d1c4d8c5c437517 ${SOURCE_PATH}/filesystem) + vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA @@ -18,6 +26,8 @@ vcpkg_configure_cmake( ) vcpkg_install_cmake() +vcpkg_copy_pdbs() +vcpkg_fixup_pkgconfig() file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") file(INSTALL ${SOURCE_PATH}/distrib/gpl.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) diff --git a/ports/avisynthplus/vcpkg.json b/ports/avisynthplus/vcpkg.json index d55ecf20c..58d064b2d 100644 --- a/ports/avisynthplus/vcpkg.json +++ b/ports/avisynthplus/vcpkg.json @@ -1,7 +1,7 @@ { "name": "avisynthplus", - "version-string": "3.6.1", + "version-semver": "3.7.0", "description": "An improved version of the AviSynth frameserver, with improved features and developer friendliness", "homepage": "http://avs-plus.net/", - "supports": "!arm & !uwp & !static" + "supports": "!arm & !uwp" } diff --git a/versions/a-/avisynthplus.json b/versions/a-/avisynthplus.json index 9dcdf7313..73c484393 100644 --- a/versions/a-/avisynthplus.json +++ b/versions/a-/avisynthplus.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "3d573152a7d82faefcb525b1d6cf688a1465a71b", + "version-semver": "3.7.0", + "port-version": 0 + }, + { "git-tree": "de073b58132bfad56e8b89ece1e9e4c995df607b", "version-string": "3.6.1", "port-version": 0 diff --git a/versions/baseline.json b/versions/baseline.json index 16f73bc3d..e6ccdc8de 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -205,7 +205,7 @@ "port-version": 0 }, "avisynthplus": { - "baseline": "3.6.1", + "baseline": "3.7.0", "port-version": 0 }, "avro-c": { |
