From 5e2c32ad58bd0a6f7e04ad3dc9a197970046d698 Mon Sep 17 00:00:00 2001 From: Daniel Evans Date: Tue, 4 Feb 2020 11:38:54 +0000 Subject: [PATCH 1/3] [cgltf] Update to 1.5 --- ports/cgltf/CONTROL | 2 +- ports/cgltf/portfile.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/cgltf/CONTROL b/ports/cgltf/CONTROL index 1de82b271e..4525d2e455 100644 --- a/ports/cgltf/CONTROL +++ b/ports/cgltf/CONTROL @@ -1,3 +1,3 @@ Source: cgltf -Version: 1.3 +Version: 1.5 Description: Single-file glTF 2.0 parser written in C99 diff --git a/ports/cgltf/portfile.cmake b/ports/cgltf/portfile.cmake index 6754e969ab..3c951e6ec5 100644 --- a/ports/cgltf/portfile.cmake +++ b/ports/cgltf/portfile.cmake @@ -5,8 +5,8 @@ include(vcpkg_common_functions) vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO jkuhlmann/cgltf - REF v1.3 - SHA512 4fc68654b7903a21156d900184626d1325421092f0dd060b9f20cff1dec29d0a057fc1f3b4e79e36a0cfc6bc7447f7c2ac8a0ecb78c85a337356908a9c69478e + REF v1.5 + SHA512 b27b4f221a09aba1b4fa316ae5c4117f28592c717d606668d9c7e5986f8a9787014467b7c8e545194c69a4df6c7be7a797a16b26081df202da9ffd3a7ccc202f HEAD_REF master ) From 45d2ecf5716264996f143074164dc0378a9b1a68 Mon Sep 17 00:00:00 2001 From: Daniel Evans Date: Tue, 4 Feb 2020 11:39:34 +0000 Subject: [PATCH 2/3] [cgltf] Add missing header file --- ports/cgltf/portfile.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/cgltf/portfile.cmake b/ports/cgltf/portfile.cmake index 3c951e6ec5..7c5a37f11d 100644 --- a/ports/cgltf/portfile.cmake +++ b/ports/cgltf/portfile.cmake @@ -11,6 +11,7 @@ vcpkg_from_github( ) file(COPY ${SOURCE_PATH}/cgltf.h DESTINATION ${CURRENT_PACKAGES_DIR}/include) +file(COPY ${SOURCE_PATH}/cgltf_write.h DESTINATION ${CURRENT_PACKAGES_DIR}/include) # Handle copyright configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY) From 5f15b1adb09ea2216de3913ba5cd3f591bbe09e7 Mon Sep 17 00:00:00 2001 From: Daniel Evans Date: Tue, 4 Feb 2020 11:55:29 +0000 Subject: [PATCH 3/3] [cgltf] Update homepage and description --- ports/cgltf/CONTROL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/cgltf/CONTROL b/ports/cgltf/CONTROL index 4525d2e455..83b1c42af4 100644 --- a/ports/cgltf/CONTROL +++ b/ports/cgltf/CONTROL @@ -1,3 +1,4 @@ Source: cgltf Version: 1.5 -Description: Single-file glTF 2.0 parser written in C99 +Homepage: https://github.com/jkuhlmann/cgltf +Description: Single-file glTF 2.0 loader and writer written in C99