summaryrefslogtreecommitdiffstats
path: root/Utilities/Release
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-03-31 16:24:35 (GMT)
committerBrad King <brad.king@kitware.com>2021-04-05 17:45:00 (GMT)
commit30959aec8f1347ac2098f85824fe6777dae627b5 (patch)
tree4da4dafcb152d3f63aa92bb0a804440d332e5be8 /Utilities/Release
parentd206c8f1ec265d04321e463f919e35c5f9c2cfb8 (diff)
downloadCMake-30959aec8f1347ac2098f85824fe6777dae627b5.zip
CMake-30959aec8f1347ac2098f85824fe6777dae627b5.tar.gz
CMake-30959aec8f1347ac2098f85824fe6777dae627b5.tar.bz2
Utilities/Release: Update file table for 3.19.3
Diffstat (limited to 'Utilities/Release')
-rw-r--r--Utilities/Release/files-v1.json.in28
-rw-r--r--Utilities/Release/files-v1.rst13
2 files changed, 37 insertions, 4 deletions
diff --git a/Utilities/Release/files-v1.json.in b/Utilities/Release/files-v1.json.in
index 4d6b875..6bafa69 100644
--- a/Utilities/Release/files-v1.json.in
+++ b/Utilities/Release/files-v1.json.in
@@ -9,6 +9,18 @@
"files": [
{
"os": ["linux", "Linux"],
+ "architecture": ["aarch64"],
+ "class": "installer",
+ "name": "cmake-@version@-Linux-aarch64.sh"
+ },
+ {
+ "os": ["linux", "Linux"],
+ "architecture": ["aarch64"],
+ "class": "archive",
+ "name": "cmake-@version@-Linux-aarch64.tar.gz"
+ },
+ {
+ "os": ["linux", "Linux"],
"architecture": ["x86_64"],
"class": "installer",
"name": "cmake-@version@-Linux-x86_64.sh"
@@ -24,13 +36,27 @@
"architecture": ["arm64", "x86_64"],
"class": "volume",
"name": "cmake-@version@-macos-universal.dmg",
- "macOSmin": "10.10"
+ "macOSmin": "10.13"
},
{
"os": ["macos", "macOS"],
"architecture": ["arm64", "x86_64"],
"class": "archive",
"name": "cmake-@version@-macos-universal.tar.gz",
+ "macOSmin": "10.13"
+ },
+ {
+ "os": ["macos10.10", "macOS10.10"],
+ "architecture": ["arm64", "x86_64"],
+ "class": "volume",
+ "name": "cmake-@version@-macos10.10-universal.dmg",
+ "macOSmin": "10.10"
+ },
+ {
+ "os": ["macos10.10", "macOS10.10"],
+ "architecture": ["arm64", "x86_64"],
+ "class": "archive",
+ "name": "cmake-@version@-macos10.10-universal.tar.gz",
"macOSmin": "10.10"
},
{
diff --git a/Utilities/Release/files-v1.rst b/Utilities/Release/files-v1.rst
index b7ca2fd..3b916d4 100644
--- a/Utilities/Release/files-v1.rst
+++ b/Utilities/Release/files-v1.rst
@@ -100,7 +100,7 @@ The members are:
``macOSmin``
Optional member that is present on package files for macOS.
The value is a JSON string specifying the minimum version of macOS
- required to run the binary, e.g. ``"10.10"``.
+ required to run the binary, e.g. ``"10.13"``.
``hashFiles``
A JSON array of entries corresponding to files containing cryptographic
@@ -142,10 +142,10 @@ For example, one may use ``jq`` queries:
(.architecture[] | . == "x86_64") and
(.class == "archive")) | .name
-* To select a Linux binary archive supporting ``x86_64`` hosts::
+* To select a Linux binary archive supporting ``aarch64`` hosts::
.files[] | select((.os[] | . == "linux") and
- (.architecture[] | . == "x86_64") and
+ (.architecture[] | . == "aarch64") and
(.class == "archive")) | .name
* To select a macOS binary archive supporting ``arm64`` hosts::
@@ -154,6 +154,13 @@ For example, one may use ``jq`` queries:
(.architecture[] | . == "arm64") and
(.class == "archive")) | .name
+* To select a macOS binary archive supporting macOS 10.12 on ``x86_64`` hosts::
+
+ .files[] | select((.os[] | contains("macOS")) and
+ (.architecture[] | . == "x86_64") and
+ ([.macOSmin] | inside(["10.10", "10.11", "10.12"]))
+ ) | .name
+
* To select a SHA-256 hash file::
.hashFiles[] | select(.algorithm[] | . == "SHA-256") | .name