aboutsummaryrefslogtreecommitdiff
path: root/ports/uvatlas
diff options
context:
space:
mode:
authorChuck Walbourn <walbourn@users.noreply.github.com>2021-01-15 15:24:06 -0800
committerGitHub <noreply@github.com>2021-01-15 15:24:06 -0800
commita2cc2b1735dc260f455ef7ce6ef935646dc69329 (patch)
tree118b55beb7805c0bb2df0185407da0b9c4af1f67 /ports/uvatlas
parent21b569f3e6773554b9e8284318c118bce0426f7b (diff)
downloadvcpkg-a2cc2b1735dc260f455ef7ce6ef935646dc69329.tar.gz
vcpkg-a2cc2b1735dc260f455ef7ce6ef935646dc69329.zip
directxtex, directxmesh, directxtk, uvatlas ports updated to fix cach… (#15639)
* directxtex, directxmesh, directxtk, uvatlas ports updated to fix cache-collision issues * Updated ports to jan2021b * update baseline Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Diffstat (limited to 'ports/uvatlas')
-rw-r--r--ports/uvatlas/CONTROL2
-rw-r--r--ports/uvatlas/portfile.cmake13
2 files changed, 9 insertions, 6 deletions
diff --git a/ports/uvatlas/CONTROL b/ports/uvatlas/CONTROL
index a65d710e2..938b93f7c 100644
--- a/ports/uvatlas/CONTROL
+++ b/ports/uvatlas/CONTROL
@@ -1,5 +1,5 @@
Source: uvatlas
-Version: jan2021
+Version: jan2021b
Homepage: https://github.com/Microsoft/UVAtlas
Description: UVAtlas isochart texture atlas
Build-Depends: directxmesh(!(uwp|linux)), directxtex(!(uwp|linux)), directxmath(linux), directx-headers(linux)
diff --git a/ports/uvatlas/portfile.cmake b/ports/uvatlas/portfile.cmake
index 14f7a5eed..42f5043ab 100644
--- a/ports/uvatlas/portfile.cmake
+++ b/ports/uvatlas/portfile.cmake
@@ -5,8 +5,8 @@ vcpkg_fail_port_install(ON_TARGET "OSX")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Microsoft/UVAtlas
- REF jan2021
- SHA512 a0248f31626a0835c9aaf7ed9cabfc5771e34257b8e8e4a3139dca69d7242d79fbb7883071379cd9202edecef3a518d6cf9e7ef9b0338afd384bf2c9830878d3
+ REF jan2021b
+ SHA512 6ed43dbe4ea33857ed96a2c05a4618ae935eb9bc0778118af6c791f794c2ad843fe1b52a2aa484914f8aaf3534a282ab80af95350eab2c340bb6b401dc9743b0
HEAD_REF master
)
@@ -36,17 +36,20 @@ if((VCPKG_TARGET_IS_WINDOWS) AND (NOT VCPKG_TARGET_IS_UWP))
)
elseif((VCPKG_HOST_IS_WINDOWS) AND (VCPKG_TARGET_ARCHITECTURE MATCHES x64))
- vcpkg_download_distfile(uvatlastool
+ vcpkg_download_distfile(
+ UVATLASTOOL_EXE
URLS "https://github.com/Microsoft/UVAtlas/releases/download/jan2021/uvatlastool.exe"
- FILENAME "uvatlastool.exe"
+ FILENAME "uvatlastool-jan2021.exe"
SHA512 8727510f3ec41c2fa7ed75100b8c0f4daa41e93a1b812e5ec3c265dc87c3f48651da37a18af5d8b57a0aa096c42232b58a50a00c036ec7c04dcae4767a2691f9
)
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/uvatlas/")
file(INSTALL
- ${DOWNLOADS}/uvatlastool.exe
+ ${UVATLASTOOL_EXE}
DESTINATION ${CURRENT_PACKAGES_DIR}/tools/uvatlas/)
+
+ file(RENAME ${CURRENT_PACKAGES_DIR}/tools/uvatlas/uvatlastool-jan2021.exe ${CURRENT_PACKAGES_DIR}/tools/uvatlas/uvatlastool.exe)
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")