-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
[vcpkg-tools] update cmake and git (windows only) #22985
Conversation
…eady for final release
and git for windows to 2.35.1.2
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.
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:
scripts/test_ports/cmake/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:
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 20297a59505785fd947bdab9aba6f68cb58a1cc4
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 0449fca8..30c684e5 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
Related: #21456. |
hmm linux qtbase fails with:
the search call is:
|
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 84c41eb5cdc6cd22e24156bfb20dd53c8d358b98
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 942eb08c..8c7c835b 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 84c41eb5cdc6cd22e24156bfb20dd53c8d358b98
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 942eb08c..8c7c835b 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 98a04ddada263f37b0d54b2b7a91e89a31d9e123
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index def47df0..c9aaafb6 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for pkgconf but no changes to version or port version.
-- Version: 1.8.0#1
-- Old SHA: cbcb5f984f7713a636caa075f06b755d37493dbd
-- New SHA: 6067a1f60a364d3971a37c6fc3adf77e6818228b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 98a04ddada263f37b0d54b2b7a91e89a31d9e123
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 71226c41..8bf4056c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
So the problem boils down that qt and hidapi uses pkgconf build by vcpkg which is not setup to find system dependencies which is why the pkg_search_module call is failing for bot of them. |
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for pkgconf but no changes to version or port version.
-- Version: 1.8.0#1
-- Old SHA: cbcb5f984f7713a636caa075f06b755d37493dbd
-- New SHA: 92a54fb2b308f84196af58b43eaf109fcd5fa855
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 98a04ddada263f37b0d54b2b7a91e89a31d9e123
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 71226c41..8bf4056c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for pkgconf but no changes to version or port version.
-- Version: 1.8.0#1
-- Old SHA: cbcb5f984f7713a636caa075f06b755d37493dbd
-- New SHA: d3adbc2ecc4f326fae57c3b7272d3bf6c85e2c0e
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#2
-- Old SHA: 0829d67a63010fca7f587ca7370db716570aa969
-- New SHA: 83c47d2565b9eac8d50eead18de69a9ede56dac8
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for qtbase but no changes to version or port version.
-- Version: 6.2.2#4
-- Old SHA: 2362188815f81dd666df3eaee1d96a208c1a0838
-- New SHA: 98a04ddada263f37b0d54b2b7a91e89a31d9e123
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout d2b22891a13123accac084b5feabfd0914f4e243 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 71226c41..8bf4056c 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -2830,7 +2830,7 @@
},
"ignition-transport4": {
"baseline": "4.0.0",
- "port-version": 4
+ "port-version": 5
},
"ignition-transport8": {
"baseline": "8.1.0",
diff --git a/versions/i-/ignition-transport4.json b/versions/i-/ignition-transport4.json
index cc2527f2..76da1d7a 100644
--- a/versions/i-/ignition-transport4.json
+++ b/versions/i-/ignition-transport4.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a8833e4c80a8470845c939e35c9f21229eec9d73",
+ "version-string": "4.0.0",
+ "port-version": 5
+ },
{
"git-tree": "24af2dccedbb77ff7f1d514871f291776fd7a86f",
"version-string": "4.0.0",
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/qtbase/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/ignition-transport4/vcpkg.json
ports/ignition-transport9/vcpkg.json
ports/qtbase/vcpkg.json
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field are listed at https://spdx.org/licenses/
# Conflicts: # ports/ignition-transport4/vcpkg.json # ports/pkgconf/portfile.cmake # ports/qtbase/portfile.cmake
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!
PRs must add only one version and must not modify any published versions
When making any changes to a library, the version or port-version in vcpkg.json
or CONTROL
must be modified.
Error: Local changes detected for hidapi but no changes to version or port version.
-- Version: 0.11.2#1
-- Old SHA: 145fcc6e2c3aa564666793d494a6b90c1323e0ac
-- New SHA: d0b42fe75288041cc8640eed3ea7fd445554688b
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
Error: Local changes detected for ignition-transport9 but no changes to version or port version.
-- Version: 9.0.0#3
-- Old SHA: abbc50866e79bb1566460eb88135358ed740268d
-- New SHA: 14c635dff6e19c0a5762ed26a3c8891b08998daf
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout a34997af6c00d3e5711a4a75428c34a99a5f1c8b -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 1286dcf5..cf5dd201 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -5778,7 +5778,7 @@
},
"qtbase": {
"baseline": "6.2.3",
- "port-version": 0
+ "port-version": 1
},
"qtcharts": {
"baseline": "6.2.3",
diff --git a/versions/q-/qtbase.json b/versions/q-/qtbase.json
index 0549e7a1..84f631a6 100644
--- a/versions/q-/qtbase.json
+++ b/versions/q-/qtbase.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "7542b217aab48590dd848aa279ada20eb14bb9aa",
+ "version": "6.2.3",
+ "port-version": 1
+ },
{
"git-tree": "bfac5075bd2dcb338153b016e27ff8789b05688b",
"version": "6.2.3",
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/ignition-transport9/vcpkg.json
scripts/test_ports/cmake/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.
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:
scripts/test_ports/cmake/vcpkg.json
Valid values for the license field can be found in the documentation
failing:
|
Thank youuuuuuu! |
[vcpkg-tools] update cmake and git (windows only) (microsoft#22985)
* master: (57 commits) [vcpkg-tools] update cmake and git (windows only) (microsoft#22985) Update vcpkg tool to 2022-02-24. (microsoft#23162) [vcpkg baseline] Move cspice headers (microsoft#23272) Fixed inaccurate Chinese words (microsoft#23179) [vcpkg] Add fixed changelog generator. (microsoft#23255) [authentication.md] Add Jenkins section (microsoft#23226) [vcpkg] Meson osx sysroot (microsoft#21772) [pkgconf] enable search for system libs on linux (microsoft#23010) [yasm/yasm-tool] Incorporate yasm-tool into yasm (microsoft#23218) [lapack-reference] Update to 3.10 (microsoft#23228) [skia] Arm64 for skia on osx (microsoft#23222) [libfido2] Update to 1.10.0 (microsoft#23241) [Tracy] Fixing issue where version 0.7.8 was pulling the wrong version (microsoft#23061) [libgpiod] Add new port. (microsoft#23221) [drogon] Update to 1.7.5 (microsoft#23227) [tinyexif] Remove from fail list. (microsoft#23163) [vcpkg docs][ES] Sync with English readme (microsoft#19834) (microsoft#22618) [vcpkg baseline][libao] Disable dlfcn check under windows (microsoft#23235) [OpenCV] upgrade to v4.5.5 (microsoft#22801) [libcurl-simple-https] New port (microsoft#22917) ...
Wow, thanks! |
Why continue |
Just update cmake to 3.22.2 and git on windows
supersedes #21456
depends #22998depends #22846depends #23010I'll cleanup this PR when the dependent PRs have been merged.