-
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
[toolchain windows] set CMAKE_SYSTEM_PROCESSOR #24100
[toolchain windows] set CMAKE_SYSTEM_PROCESSOR #24100
Conversation
This won't set CMAKE_CROSSCOMPILING correctly so configure checks are still probably wrong |
Yeah and CI agrees to not set |
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/corrade/vcpkg.json b/ports/corrade/vcpkg.json
index 750e9be..17c71da 100644
--- a/ports/corrade/vcpkg.json
+++ b/ports/corrade/vcpkg.json
@@ -9,7 +9,9 @@
"name": "corrade",
"host": true,
"default-features": false,
- "features": [ "utility" ]
+ "features": [
+ "utility"
+ ]
}
],
"default-features": [
Use the version scheme "version-date" instead of "version-string" in port "ampl-mp".
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout e3d79356af3e224222af88558b3201a46c4e5598 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/a-/ampl-mp.json b/versions/a-/ampl-mp.json
index f10ce12..f0f0a41 100644
--- a/versions/a-/ampl-mp.json
+++ b/versions/a-/ampl-mp.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "1d951708b2e6ee8011c08b0a133b28a9d460ef26",
+ "version-string": "2020-11-11",
+ "port-version": 3
+ },
{
"git-tree": "d52dd1ac4a69a74bb658b52be36c7457ca6049ef",
"version-string": "2020-11-11",
diff --git a/versions/baseline.json b/versions/baseline.json
index dc7d7dd..cf78a60 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -70,7 +70,7 @@
},
"ampl-mp": {
"baseline": "2020-11-11",
- "port-version": 2
+ "port-version": 3
},
"amqpcpp": {
"baseline": "4.3.15",
@@ -1218,7 +1218,7 @@
},
"caf": {
"baseline": "0.18.5",
- "port-version": 0
+ "port-version": 1
},
"caffe2": {
"baseline": "0.8.1",
@@ -1546,7 +1546,7 @@
},
"corrade": {
"baseline": "2020.06",
- "port-version": 3
+ "port-version": 4
},
"cpp-base64": {
"baseline": "V2.rc.08",
@@ -2246,7 +2246,7 @@
},
"fltk": {
"baseline": "1.3.8",
- "port-version": 1
+ "port-version": 2
},
"fluidlite": {
"baseline": "2020-08-27",
diff --git a/versions/c-/caf.json b/versions/c-/caf.json
index 7e81e9e..a3f9dc4 100644
--- a/versions/c-/caf.json
+++ b/versions/c-/caf.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "6a7204110249a48fad125404b795f01c3734470b",
+ "version": "0.18.5",
+ "port-version": 1
+ },
{
"git-tree": "6f4b297fc5ad4bd021fa9d72787b27e69a558237",
"version": "0.18.5",
diff --git a/versions/c-/corrade.json b/versions/c-/corrade.json
index 6a1a88a..9b14d21 100644
--- a/versions/c-/corrade.json
+++ b/versions/c-/corrade.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a9dd31a865e16cef7d05c7f610cfefe9e9cc683c",
+ "version-string": "2020.06",
+ "port-version": 4
+ },
{
"git-tree": "087770e2a196c44cb1b56473bd57797ed9b9bc87",
"version-string": "2020.06",
diff --git a/versions/f-/fltk.json b/versions/f-/fltk.json
index 07d0695..96d9824 100644
--- a/versions/f-/fltk.json
+++ b/versions/f-/fltk.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "67f9090df208862fcd949bfae2214dd5fb0a3157",
+ "version": "1.3.8",
+ "port-version": 2
+ },
{
"git-tree": "86da5d186aa27c3a6a9a9903eaa2806edde44bd8",
"version": "1.3.8",
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/corrade/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/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/corrade/vcpkg.json b/ports/corrade/vcpkg.json
index 750e9be..17c71da 100644
--- a/ports/corrade/vcpkg.json
+++ b/ports/corrade/vcpkg.json
@@ -9,7 +9,9 @@
"name": "corrade",
"host": true,
"default-features": false,
- "features": [ "utility" ]
+ "features": [
+ "utility"
+ ]
}
],
"default-features": [
Use the version scheme "version-date" instead of "version-string" in port "ampl-mp".
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout e3d79356af3e224222af88558b3201a46c4e5598 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/a-/ampl-mp.json b/versions/a-/ampl-mp.json
index f10ce12..f0f0a41 100644
--- a/versions/a-/ampl-mp.json
+++ b/versions/a-/ampl-mp.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "1d951708b2e6ee8011c08b0a133b28a9d460ef26",
+ "version-string": "2020-11-11",
+ "port-version": 3
+ },
{
"git-tree": "d52dd1ac4a69a74bb658b52be36c7457ca6049ef",
"version-string": "2020-11-11",
diff --git a/versions/baseline.json b/versions/baseline.json
index dc7d7dd..9ed9906 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -70,7 +70,7 @@
},
"ampl-mp": {
"baseline": "2020-11-11",
- "port-version": 2
+ "port-version": 3
},
"amqpcpp": {
"baseline": "4.3.15",
@@ -1218,7 +1218,7 @@
},
"caf": {
"baseline": "0.18.5",
- "port-version": 0
+ "port-version": 1
},
"caffe2": {
"baseline": "0.8.1",
@@ -1546,7 +1546,7 @@
},
"corrade": {
"baseline": "2020.06",
- "port-version": 3
+ "port-version": 4
},
"cpp-base64": {
"baseline": "V2.rc.08",
@@ -2246,7 +2246,7 @@
},
"fltk": {
"baseline": "1.3.8",
- "port-version": 1
+ "port-version": 2
},
"fluidlite": {
"baseline": "2020-08-27",
@@ -2394,7 +2394,7 @@
},
"gainput": {
"baseline": "1.0.0",
- "port-version": 5
+ "port-version": 6
},
"gamedev-framework": {
"baseline": "0.20.0",
@@ -2550,7 +2550,7 @@
},
"glog": {
"baseline": "0.5.0",
- "port-version": 0
+ "port-version": 1
},
"gloo": {
"baseline": "20201203",
@@ -4390,7 +4390,7 @@
},
"mapnik": {
"baseline": "2022-01-28",
- "port-version": 1
+ "port-version": 2
},
"marble": {
"baseline": "19.08.2",
@@ -5222,7 +5222,7 @@
},
"orc": {
"baseline": "1.6.4",
- "port-version": 2
+ "port-version": 3
},
"orocos-kdl": {
"baseline": "1.4",
@@ -6398,7 +6398,7 @@
},
"seal": {
"baseline": "3.7.2",
- "port-version": 2
+ "port-version": 3
},
"secp256k1": {
"baseline": "2017-19-10",
@@ -7510,7 +7510,7 @@
},
"wxwidgets": {
"baseline": "3.1.5",
- "port-version": 8
+ "port-version": 9
},
"x-plane": {
"baseline": "3.0.3",
diff --git a/versions/c-/caf.json b/versions/c-/caf.json
index 7e81e9e..a3f9dc4 100644
--- a/versions/c-/caf.json
+++ b/versions/c-/caf.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "6a7204110249a48fad125404b795f01c3734470b",
+ "version": "0.18.5",
+ "port-version": 1
+ },
{
"git-tree": "6f4b297fc5ad4bd021fa9d72787b27e69a558237",
"version": "0.18.5",
diff --git a/versions/c-/corrade.json b/versions/c-/corrade.json
index 6a1a88a..9b14d21 100644
--- a/versions/c-/corrade.json
+++ b/versions/c-/corrade.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "a9dd31a865e16cef7d05c7f610cfefe9e9cc683c",
+ "version-string": "2020.06",
+ "port-version": 4
+ },
{
"git-tree": "087770e2a196c44cb1b56473bd57797ed9b9bc87",
"version-string": "2020.06",
diff --git a/versions/f-/fltk.json b/versions/f-/fltk.json
index 07d0695..96d9824 100644
--- a/versions/f-/fltk.json
+++ b/versions/f-/fltk.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "67f9090df208862fcd949bfae2214dd5fb0a3157",
+ "version": "1.3.8",
+ "port-version": 2
+ },
{
"git-tree": "86da5d186aa27c3a6a9a9903eaa2806edde44bd8",
"version": "1.3.8",
diff --git a/versions/g-/gainput.json b/versions/g-/gainput.json
index 9ce5b1b..d23cb9d 100644
--- a/versions/g-/gainput.json
+++ b/versions/g-/gainput.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "d7d03d82f8c42466bcd155b94e0dcefa79763931",
+ "version": "1.0.0",
+ "port-version": 6
+ },
{
"git-tree": "6edb146db254b1cec192c12f335bef0e54455770",
"version": "1.0.0",
diff --git a/versions/g-/glog.json b/versions/g-/glog.json
index b34d373..3013a90 100644
--- a/versions/g-/glog.json
+++ b/versions/g-/glog.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "ce445bc76dba490e663352328addd51963c78bcb",
+ "version": "0.5.0",
+ "port-version": 1
+ },
{
"git-tree": "55b03c1cae45ba6b081c9072e6431d720467c82b",
"version": "0.5.0",
diff --git a/versions/m-/mapnik.json b/versions/m-/mapnik.json
index 19ea139..7f11caf 100644
--- a/versions/m-/mapnik.json
+++ b/versions/m-/mapnik.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "dd7ab22238efd828be89e8e17677aa5b395ac07b",
+ "version-date": "2022-01-28",
+ "port-version": 2
+ },
{
"git-tree": "ab089220fb5ecc215804a68c2122d3e0d3ed58bc",
"version-date": "2022-01-28",
diff --git a/versions/o-/orc.json b/versions/o-/orc.json
index 23e58df..d7f414b 100644
--- a/versions/o-/orc.json
+++ b/versions/o-/orc.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "fd719ab20f150796b63d3984636e89b6301d4a58",
+ "version-string": "1.6.4",
+ "port-version": 3
+ },
{
"git-tree": "8cd78baa4d8b7df9077f76b8f5d600aac6e09716",
"version-string": "1.6.4",
diff --git a/versions/s-/seal.json b/versions/s-/seal.json
index 5fd1786..c7ea117 100644
--- a/versions/s-/seal.json
+++ b/versions/s-/seal.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "323502a09f055a964f6b501aed82701570b96cba",
+ "version-semver": "3.7.2",
+ "port-version": 3
+ },
{
"git-tree": "c3499eaa1c19049bc521c3d2799d8d7d6d032a8a",
"version-semver": "3.7.2",
diff --git a/versions/w-/wxwidgets.json b/versions/w-/wxwidgets.json
index ec84429..b1e3aff 100644
--- a/versions/w-/wxwidgets.json
+++ b/versions/w-/wxwidgets.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "c84960c796cf15517384bff719305417fc15bf69",
+ "version-semver": "3.1.5",
+ "port-version": 9
+ },
{
"git-tree": "dba058c37782edf771e7a62ae1bef98274c86b9f",
"version-semver": "3.1.5",
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/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/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!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout e3d79356af3e224222af88558b3201a46c4e5598 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index e077bc1..9ed9906 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -6398,7 +6398,7 @@
},
"seal": {
"baseline": "3.7.2",
- "port-version": 2
+ "port-version": 3
},
"secp256k1": {
"baseline": "2017-19-10",
@@ -7510,7 +7510,7 @@
},
"wxwidgets": {
"baseline": "3.1.5",
- "port-version": 8
+ "port-version": 9
},
"x-plane": {
"baseline": "3.0.3",
diff --git a/versions/s-/seal.json b/versions/s-/seal.json
index 5fd1786..c7ea117 100644
--- a/versions/s-/seal.json
+++ b/versions/s-/seal.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "323502a09f055a964f6b501aed82701570b96cba",
+ "version-semver": "3.7.2",
+ "port-version": 3
+ },
{
"git-tree": "c3499eaa1c19049bc521c3d2799d8d7d6d032a8a",
"version-semver": "3.7.2",
diff --git a/versions/w-/wxwidgets.json b/versions/w-/wxwidgets.json
index ec84429..b1e3aff 100644
--- a/versions/w-/wxwidgets.json
+++ b/versions/w-/wxwidgets.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "c84960c796cf15517384bff719305417fc15bf69",
+ "version-semver": "3.1.5",
+ "port-version": 9
+ },
{
"git-tree": "dba058c37782edf771e7a62ae1bef98274c86b9f",
"version-semver": "3.1.5",
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/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/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!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout aebb363eaa0b658beb19cbefdd5aa2f9cbc14f1e -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 5488380..8f2ad9d 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -6398,7 +6398,7 @@
},
"seal": {
"baseline": "3.7.2",
- "port-version": 2
+ "port-version": 3
},
"secp256k1": {
"baseline": "2017-19-10",
@@ -7510,7 +7510,7 @@
},
"wxwidgets": {
"baseline": "3.1.5",
- "port-version": 8
+ "port-version": 9
},
"x-plane": {
"baseline": "3.0.3",
diff --git a/versions/s-/seal.json b/versions/s-/seal.json
index 5fd1786..c7ea117 100644
--- a/versions/s-/seal.json
+++ b/versions/s-/seal.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "323502a09f055a964f6b501aed82701570b96cba",
+ "version-semver": "3.7.2",
+ "port-version": 3
+ },
{
"git-tree": "c3499eaa1c19049bc521c3d2799d8d7d6d032a8a",
"version-semver": "3.7.2",
diff --git a/versions/w-/wxwidgets.json b/versions/w-/wxwidgets.json
index ec84429..b1e3aff 100644
--- a/versions/w-/wxwidgets.json
+++ b/versions/w-/wxwidgets.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "c84960c796cf15517384bff719305417fc15bf69",
+ "version-semver": "3.1.5",
+ "port-version": 9
+ },
{
"git-tree": "dba058c37782edf771e7a62ae1bef98274c86b9f",
"version-semver": "3.1.5",
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/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
|
||
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") | ||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL CMAKE_HOST_SYSTEM_PROCESSOR) | ||
set(CMAKE_CROSSCOMPILING OFF CACHE STRING "") |
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.
In general, CMAKE_CROSSCOMPILING
is a normal variable, not a cache variable.
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.
It's a cache variable in other toolchains so I kept it the same
848f3dd
to
b5aaa2f
Compare
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 48d15f4db6593ec677a9e0625537d227b308b4d5 -- versions
./vcpkg x-add-version --all
Diff
diff --git a/versions/baseline.json b/versions/baseline.json
index 8a5d09e..d766308 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -6398,7 +6398,7 @@
},
"seal": {
"baseline": "3.7.2",
- "port-version": 2
+ "port-version": 3
},
"secp256k1": {
"baseline": "2017-19-10",
diff --git a/versions/s-/seal.json b/versions/s-/seal.json
index 5fd1786..c7ea117 100644
--- a/versions/s-/seal.json
+++ b/versions/s-/seal.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "323502a09f055a964f6b501aed82701570b96cba",
+ "version-semver": "3.7.2",
+ "port-version": 3
+ },
{
"git-tree": "c3499eaa1c19049bc521c3d2799d8d7d6d032a8a",
"version-semver": "3.7.2",
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/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
b5aaa2f
to
5b2b9d5
Compare
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:
ports/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
5b2b9d5
to
77e1877
Compare
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:
ports/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
77e1877
to
f9e88f3
Compare
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:
ports/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
f9e88f3
to
0dc0a70
Compare
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:
ports/corrade/portfile.cmake
ports/orc/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/ampl-mp/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/orc/vcpkg.json
ports/seal/vcpkg.json
Valid values for the license field can be found in the documentation
versions/g-/glog.json
Outdated
{ | ||
"git-tree": "c0809e03781b0f3f322236ad964b6caa464dfe21", | ||
"git-tree": "2421be92340a15b2257f177235e77137ed52117f", | ||
"version": "0.5.0", | ||
"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 seems wrong
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.
@vicroms seems like we should catch this...
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 probably passed --overwrite-version
so it needs to be catched by the github bot.
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.
yeah, I mean the gh bot should catch this
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.
we should probably start running x-ci-verify-versions --verify-git-trees
276cec6
to
25da982
Compare
29ac446
to
ec1a1bc
Compare
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:
ports/corrade/portfile.cmake
ports/orc/portfile.cmake
ports/vc/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/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/caf/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/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 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/corrade/portfile.cmake
ports/orc/portfile.cmake
ports/vc/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/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/vcpkg.json
Valid values for the license field can be found in the documentation
# Conflicts: # versions/o-/orc.json
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:
ports/corrade/portfile.cmake
ports/vc/portfile.cmake
You have modified or added at least one vcpkg.json where you should check the license
field.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/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 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/corrade/portfile.cmake
ports/vc/portfile.cmake
You have modified or added at least one vcpkg.json where you should check the license
field.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/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 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/corrade/portfile.cmake
ports/vc/portfile.cmake
You have modified or added at least one vcpkg.json where you should check the license
field.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/vcpkg.json
Valid values for the license field can be found in the documentation
Co-authored-by: Jack·Boos·Yu <[email protected]>
|
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 corrade but no changes to version or port version.
-- Version: 2020.06#4
-- Old SHA: c84d0ad4a87f4845d8e769416676d1ab85cfe464
-- New SHA: 91ad9b127c41c0538051a0c81e2cb9206a2587dd
-- Did you remember to update the version or port version?
-- Pass `--overwrite-version` to bypass this check.
***No files were updated.***
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/corrade/portfile.cmake
ports/vc/portfile.cmake
You have modified or added at least one vcpkg.json where you should check the license
field.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/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 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/corrade/portfile.cmake
ports/vc/portfile.cmake
You have modified or added at least one vcpkg.json where you should check the license
field.
If you feel able to do so, please consider adding a "license" field to the following files:
ports/ampl-mp/vcpkg.json
ports/aom/vcpkg.json
ports/corrade/vcpkg.json
ports/fltk/vcpkg.json
ports/libhydrogen/vcpkg.json
ports/openblas/vcpkg.json
ports/orc/vcpkg.json
ports/pthreadpool/vcpkg.json
ports/seal/vcpkg.json
ports/vc/vcpkg.json
Valid values for the license field can be found in the documentation
In specific, I did this for the cpuinfo PR (#23944) - I realized the reason
that cpuinfo doesn't support arm64 windows cross compilation is because
we don't set CMAKE_SYSTEM_PROCESSOR.
This is based on @Neumann-A's #16111, but is updated and simplified.