diff options
author | Brad King <brad.king@kitware.com> | 2021-03-31 16:10:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-04-05 17:44:42 (GMT) |
commit | 004dbbaddd1a040b44cb637e298997e332f40f11 (patch) | |
tree | 36c628a914e798f32ea721261cbd62e89eaeb124 /Utilities/Release/files-v1.rst | |
parent | 1e3301a28ce3ffde4a591e69d7f1dd7c85e0888b (diff) | |
download | CMake-004dbbaddd1a040b44cb637e298997e332f40f11.zip CMake-004dbbaddd1a040b44cb637e298997e332f40f11.tar.gz CMake-004dbbaddd1a040b44cb637e298997e332f40f11.tar.bz2 |
Utilities/Release: Update file table for 3.19.2
Diffstat (limited to 'Utilities/Release/files-v1.rst')
-rw-r--r-- | Utilities/Release/files-v1.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Utilities/Release/files-v1.rst b/Utilities/Release/files-v1.rst index 4ee50df..b7ca2fd 100644 --- a/Utilities/Release/files-v1.rst +++ b/Utilities/Release/files-v1.rst @@ -77,6 +77,8 @@ The members are: Binary packages have a non-empty list of architectures, with at least one name matching the output of ``uname -m`` on corresponding hosts. On Windows, architecture names include ``x86_64`` and ``i386``. + On macOS, universal binary packages list all architectures, + e.g. ``["arm64","x86_64"]``. ``class`` A JSON string naming the class of package. The value is one of: @@ -98,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.7"``. + required to run the binary, e.g. ``"10.10"``. ``hashFiles`` A JSON array of entries corresponding to files containing cryptographic @@ -146,10 +148,10 @@ For example, one may use ``jq`` queries: (.architecture[] | . == "x86_64") and (.class == "archive")) | .name -* To select a macOS binary archive supporting ``x86_64`` hosts:: +* To select a macOS binary archive supporting ``arm64`` hosts:: .files[] | select((.os[] | . == "macos") and - (.architecture[] | . == "x86_64") and + (.architecture[] | . == "arm64") and (.class == "archive")) | .name * To select a SHA-256 hash file:: |