Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[parallel-hashmap] update version to 1.34 #23365

Merged
merged 7 commits into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions ports/parallel-hashmap/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO greg7mdp/parallel-hashmap
REF 1.33
SHA512 287f098229153d925632e68e3cdbabfae0ea0ab8864089e4c0553a166c6079ca82ed5246ba53afd2a2917abcf06f37bc18f098e721f5f3b8def4d2d8c1c8c745
REF 1.34
SHA512 3747422e80406aa77b009adee3c16325640dd1044560882fb881dac5ef4109f7d165d26ed7e64002c9285275f95962725ce20c918da12c0c113999c8ca3c7429
HEAD_REF master
)

# Use greg7mdp/parallel-hashmap's own build process, skipping examples and tests
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
)
vcpkg_install_cmake()
vcpkg_cmake_install()

# Delete redundant directories
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/share/doc)
Expand Down
12 changes: 9 additions & 3 deletions ports/parallel-hashmap/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "parallel-hashmap",
"version-string": "1.33",
"port-version": 1,
"description": "A header-only, very fast and memory-friendly family of C++ hash maps."
"version": "1.34",
"description": "A header-only, very fast and memory-friendly family of C++ hash map & btree containers.",
"license": "Apache-2.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}
4 changes: 2 additions & 2 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5221,8 +5221,8 @@
"port-version": 1
},
"parallel-hashmap": {
"baseline": "1.33",
"port-version": 1
"baseline": "1.34",
"port-version": 0
},
"parallelstl": {
"baseline": "20200330",
Expand Down
10 changes: 10 additions & 0 deletions versions/p-/parallel-hashmap.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"versions": [
{
"git-tree": "289d9abe2103175720e5b75c1b5ac510312a2baa",
"version": "1.34",
"port-version": 0
},
{
"git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
"version": "1.34",
"port-version": 1
},
{
"git-tree": "4c8c5305bf3135855a29acfde1effc1f9897ea4d",
"version-string": "1.33",
Expand Down