aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Tassoux <contact@rt2.fr>2020-07-06 22:24:19 +0200
committerGitHub <noreply@github.com>2020-07-06 13:24:19 -0700
commita54c55d39ae268b64981efed09a28597dabd0db1 (patch)
tree0a6753a2fe54a6bb21a34ce00949241d3a735f2f
parentf12d986e6a06e0d761089d672df42511fa2dfe0d (diff)
downloadvcpkg-a54c55d39ae268b64981efed09a28597dabd0db1.tar.gz
vcpkg-a54c55d39ae268b64981efed09a28597dabd0db1.zip
[robin-hood-hashing] Update to 3.7.0 (#12147)
https://github.com/martinus/robin-hood-hashing/releases/tag/3.7.0
-rw-r--r--ports/robin-hood-hashing/CONTROL5
-rw-r--r--ports/robin-hood-hashing/portfile.cmake12
2 files changed, 7 insertions, 10 deletions
diff --git a/ports/robin-hood-hashing/CONTROL b/ports/robin-hood-hashing/CONTROL
index 785b6f791..8d7eda755 100644
--- a/ports/robin-hood-hashing/CONTROL
+++ b/ports/robin-hood-hashing/CONTROL
@@ -1,3 +1,4 @@
Source: robin-hood-hashing
-Version: 3.4.0
-Description: Fast & memory efficient hashtable based on robin hood hashing for C++14
+Version: 3.7.0
+Homepage: https://github.com/martinus/robin-hood-hashing
+Description: Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20
diff --git a/ports/robin-hood-hashing/portfile.cmake b/ports/robin-hood-hashing/portfile.cmake
index d3386f01f..209fb611e 100644
--- a/ports/robin-hood-hashing/portfile.cmake
+++ b/ports/robin-hood-hashing/portfile.cmake
@@ -1,16 +1,12 @@
# header-only library
-include(vcpkg_common_functions)
-
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO martinus/robin-hood-hashing
- REF 3.4.0
- SHA512 7985d64063af7d28b9404639df48645d2d72b0bc752fde23c7e3bf431adbd8eb4ffbc439e5a8513a39eb54481ce875fb044fafc86c36046995e3193284a594dd
+ REF 3.7.0
+ SHA512 3dd7c7ace50bd16579ef9db8f9a89e1b2fd8406d7f3af6a4cedb674ea14303bd70332da403b87b2f0fb3c7f415dd93e9a7b330cb86ca2f58d5916ca42666a8e5
HEAD_REF master
)
-file(COPY ${SOURCE_PATH}/src/include/robin_hood.h DESTINATION ${CURRENT_PACKAGES_DIR}/include)
-
-# Handle copyright
-configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
+file(INSTALL ${SOURCE_PATH}/src/include/robin_hood.h DESTINATION ${CURRENT_PACKAGES_DIR}/include)
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) \ No newline at end of file