aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobk2824 <13680319+bobk2824@users.noreply.github.com>2020-03-10 20:23:25 -0400
committerGitHub <noreply@github.com>2020-03-10 17:23:25 -0700
commitffdfeef89ca9b84b91aa04db3a19aa8842643be3 (patch)
tree83fae1088ec7a131b341ec90ef2367e0c15ba978
parent33d8955807b63150babf4ab39dcf8553495aa172 (diff)
downloadvcpkg-ffdfeef89ca9b84b91aa04db3a19aa8842643be3.tar.gz
vcpkg-ffdfeef89ca9b84b91aa04db3a19aa8842643be3.zip
[ecsutil] Update ECSUtil v1.0.7.9 (#10258)
* Update ECSUtil v1.0.7.9 * Complete PR requested changes remove: include(vcpkg_common_functions) use: vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX") * added: Supports: windows&(x64|x86) Co-authored-by: Bob Kast <bob.kast@emc.com>
-rw-r--r--ports/ecsutil/CONTROL3
-rw-r--r--ports/ecsutil/portfile.cmake14
2 files changed, 5 insertions, 12 deletions
diff --git a/ports/ecsutil/CONTROL b/ports/ecsutil/CONTROL
index 9a45be797..29c087503 100644
--- a/ports/ecsutil/CONTROL
+++ b/ports/ecsutil/CONTROL
@@ -1,5 +1,6 @@
Source: ecsutil
-Version: 1.0.7.8
+Version: 1.0.7.9
Homepage: https://github.com/EMCECS/ecs-object-client-windows-cpp
Description: Native Windows SDK for accessing ECS via the S3 HTTP protocol.
Build-Depends: atlmfc (windows)
+Supports: windows&(x64|x86)
diff --git a/ports/ecsutil/portfile.cmake b/ports/ecsutil/portfile.cmake
index 366ebf027..2c2aea81f 100644
--- a/ports/ecsutil/portfile.cmake
+++ b/ports/ecsutil/portfile.cmake
@@ -1,15 +1,7 @@
-include(vcpkg_common_functions)
+vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "UWP" "Linux" "OSX")
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86")
set(PLATFORM x86)
-elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
- set(PLATFORM x64)
-else()
- message(FATAL_ERROR "Unsupported architecture")
-endif()
-
-if(VCPKG_CMAKE_SYSTEM_NAME)
- message(FATAL_ERROR "Unsupported platform. ECSUTIL currently only supports windows desktop.")
endif()
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
@@ -28,8 +20,8 @@ endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO EMCECS/ecs-object-client-windows-cpp
- REF v1.0.7.8
- SHA512 33b15e16e8568db57a670c91e77b7624e3b70e02e18a8b337f4967b3aca4a36d3f6d87ddab60720a93fb5a4798948ec264eb273d8f31fb7e4bf4a86c1e89579a
+ REF v1.0.7.9
+ SHA512 4e5b52911b5a4193afd74c2503980c44679fb7b77bb783f15f87551afc521b342fa6a9bd0ad8293bc1c99baf8cb68c884926fb7fe3c7a15c7aa7e9ad1139d16c
HEAD_REF master
)