-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Conversation
@greg7mdp Please run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 75ae1ef84437bc457fb4db54360f88af57bb158a -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/p-/parallel-hashmap.json b/versions/p-/parallel-hashmap.json
index 39c50ca..713cd3e 100644
--- a/versions/p-/parallel-hashmap.json
+++ b/versions/p-/parallel-hashmap.json
@@ -1,7 +1,7 @@
{
"versions": [
{
- "git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
+ "git-tree": "f384f6f43edaa445026d51cb134100900c9dfd1f",
"version": "1.34",
"port-version": 1
},
You have modified or added at least one portfile where deprecated functions are used.
If you feel able to do so, please consider migrating them to the new functions:
vcpkg_install_cmake
-> vcpkg_cmake_install
(from port vcpkg-cmake
)
vcpkg_build_cmake
-> vcpkg_cmake_build
(from port vcpkg-cmake
)
vcpkg_configure_cmake
-> vcpkg_cmake_configure
(Please remove the option PREFER_NINJA
) (from port vcpkg-cmake
)
vcpkg_fixup_cmake_targets
-> vcpkg_cmake_config_fixup
(from port vcpkg-cmake-config
)
In the ports that use the new function, you have to add the corresponding dependencies:
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
The following files are affected:
ports/parallel-hashmap/portfile.cmake
You have modified or added at least one vcpkg.json where a "license" field is missing.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/parallel-hashmap/vcpkg.json
Valid values for the license field can be found in the documentation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
All manifest files must be formatted
./vcpkg format-manifest ports/*/vcpkg.json
Diff
diff --git a/ports/parallel-hashmap/vcpkg.json b/ports/parallel-hashmap/vcpkg.json
index 0c01194..56b6c3c 100644
--- a/ports/parallel-hashmap/vcpkg.json
+++ b/ports/parallel-hashmap/vcpkg.json
@@ -2,6 +2,6 @@
"name": "parallel-hashmap",
"version": "1.34",
"port-version": 1,
- "license": "Apache-2.0",
- "description": "A header-only, very fast and memory-friendly family of C++ hash map & btree containers."
+ "description": "A header-only, very fast and memory-friendly family of C++ hash map & btree containers.",
+ "license": "Apache-2.0"
}
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 75ae1ef84437bc457fb4db54360f88af57bb158a -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/p-/parallel-hashmap.json b/versions/p-/parallel-hashmap.json
index 39c50ca..51af374 100644
--- a/versions/p-/parallel-hashmap.json
+++ b/versions/p-/parallel-hashmap.json
@@ -1,7 +1,7 @@
{
"versions": [
{
- "git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
+ "git-tree": "3918f5a4b4980425c5e472d846d280ab82078f48",
"version": "1.34",
"port-version": 1
},
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
All manifest files must be formatted
./vcpkg format-manifest ports/*/vcpkg.json
Diff
diff --git a/ports/parallel-hashmap/vcpkg.json b/ports/parallel-hashmap/vcpkg.json
index b0a8ce9..8393345 100644
--- a/ports/parallel-hashmap/vcpkg.json
+++ b/ports/parallel-hashmap/vcpkg.json
@@ -1,12 +1,12 @@
{
"name": "parallel-hashmap",
"version": "1.34",
- "license": "Apache-2.0",
"description": "A header-only, very fast and memory-friendly family of C++ hash map & btree containers.",
- "dependencies":[
- {
- "name": "vcpkg-cmake",
- "host": true
- }
+ "license": "Apache-2.0",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ }
]
}
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 75ae1ef84437bc457fb4db54360f88af57bb158a -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 055571f..c00be48 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -5222,7 +5222,7 @@
},
"parallel-hashmap": {
"baseline": "1.34",
- "port-version": 1
+ "port-version": 0
},
"parallelstl": {
"baseline": "20200330",
diff --git a/versions/p-/parallel-hashmap.json b/versions/p-/parallel-hashmap.json
index 39c50ca..eadbb28 100644
--- a/versions/p-/parallel-hashmap.json
+++ b/versions/p-/parallel-hashmap.json
@@ -1,9 +1,9 @@
{
"versions": [
{
- "git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
+ "git-tree": "f72efb2dae42b2f746be8e239b00b707b3a61449",
"version": "1.34",
- "port-version": 1
+ "port-version": 0
},
{
"git-tree": "4c8c5305bf3135855a29acfde1effc1f9897ea4d",
@greg7mdp, Please run vcpkg x-add-version --all and commit the result. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 75ae1ef84437bc457fb4db54360f88af57bb158a -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/p-/parallel-hashmap.json b/versions/p-/parallel-hashmap.json
index dc96979..eadbb28 100644
--- a/versions/p-/parallel-hashmap.json
+++ b/versions/p-/parallel-hashmap.json
@@ -1,15 +1,10 @@
{
"versions": [
{
- "git-tree": "289d9abe2103175720e5b75c1b5ac510312a2baa",
+ "git-tree": "f72efb2dae42b2f746be8e239b00b707b3a61449",
"version": "1.34",
"port-version": 0
},
- {
- "git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
- "version": "1.34",
- "port-version": 1
- },
{
"git-tree": "4c8c5305bf3135855a29acfde1effc1f9897ea4d",
"version-string": "1.33",
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 75ae1ef84437bc457fb4db54360f88af57bb158a -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/p-/parallel-hashmap.json b/versions/p-/parallel-hashmap.json
index 3ca691d..eadbb28 100644
--- a/versions/p-/parallel-hashmap.json
+++ b/versions/p-/parallel-hashmap.json
@@ -5,11 +5,6 @@
"version": "1.34",
"port-version": 0
},
- {
- "git-tree": "91ec64439617b40db9462e9f27e35f2592b24ff1",
- "version": "1.34",
- "port-version": 1
- },
{
"git-tree": "4c8c5305bf3135855a29acfde1effc1f9897ea4d",
"version-string": "1.33",
Update package to reference newest version of parallel-hashmap
Library name: parallel-hashmap
New version number: 1.34
release info here: https://github.com/greg7mdp/parallel-hashmap/releases/tag/1.34