cmake 4.3.2__tar.gz → 4.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cmake-4.3.2 → cmake-4.3.4}/.github/workflows/build.yml +9 -9
- {cmake-4.3.2 → cmake-4.3.4}/.github/workflows/update-dependencies.yml +1 -1
- {cmake-4.3.2 → cmake-4.3.4}/.pre-commit-config.yaml +2 -2
- cmake-4.3.4/CMakeUrls.cmake +29 -0
- {cmake-4.3.2 → cmake-4.3.4}/PKG-INFO +2 -2
- {cmake-4.3.2 → cmake-4.3.4}/README.rst +1 -1
- {cmake-4.3.2 → cmake-4.3.4}/docs/index.rst +1 -1
- {cmake-4.3.2 → cmake-4.3.4}/docs/make_a_release.rst +2 -2
- {cmake-4.3.2 → cmake-4.3.4}/docs/update_cmake_version.rst +6 -6
- {cmake-4.3.2 → cmake-4.3.4}/pyproject.toml +1 -1
- {cmake-4.3.2 → cmake-4.3.4}/scripts/manylinux-build-and-install-openssl.sh +2 -2
- {cmake-4.3.2 → cmake-4.3.4}/tests/test_cmake.py +2 -2
- cmake-4.3.2/CMakeUrls.cmake +0 -29
- {cmake-4.3.2 → cmake-4.3.4}/.coveragerc +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.git_archival.txt +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.gitattributes +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.github/dependabot.yml +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.github/release.yml +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.gitignore +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/.readthedocs.yaml +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/AUTHORS.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/CMakeLists.txt +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/CONTRIBUTING.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/HISTORY.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/LICENSE_Apache_20 +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/LICENSE_BSD_3 +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/_build_backend/backend.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/authors.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/build_system.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/building.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/conf.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/contributing.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/history.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/installation.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/docs/usage.rst +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/noxfile.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/scripts/install-static-clang.sh +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/scripts/update_cmake_version.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/scripts/update_openssl_version.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/scripts/utils.sh +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/src/cmake/__init__.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/src/cmake/__main__.py +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/src/cmake/_version.pyi +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/src/cmake/py.typed +0 -0
- {cmake-4.3.2 → cmake-4.3.4}/tests/__init__.py +0 -0
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
name: Lint
|
|
23
23
|
runs-on: ubuntu-latest
|
|
24
24
|
steps:
|
|
25
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@v7
|
|
26
26
|
- uses: actions/setup-python@v6
|
|
27
27
|
with:
|
|
28
28
|
python-version: "3.x"
|
|
@@ -93,20 +93,20 @@ jobs:
|
|
|
93
93
|
build: ""
|
|
94
94
|
|
|
95
95
|
steps:
|
|
96
|
-
- uses: actions/checkout@
|
|
96
|
+
- uses: actions/checkout@v7
|
|
97
97
|
with:
|
|
98
98
|
fetch-depth: 0 # required for versioneer to find tags
|
|
99
99
|
|
|
100
|
-
- uses: astral-sh/setup-uv@v8.
|
|
100
|
+
- uses: astral-sh/setup-uv@v8.2.0
|
|
101
101
|
with:
|
|
102
102
|
enable-cache: false
|
|
103
103
|
|
|
104
104
|
- name: Set up QEMU
|
|
105
|
-
uses: docker/setup-qemu-action@v4.
|
|
105
|
+
uses: docker/setup-qemu-action@v4.1.0
|
|
106
106
|
if: matrix.arch == 'ppc64le' || matrix.arch == 'riscv64' || matrix.arch == 's390x'
|
|
107
107
|
|
|
108
108
|
- name: Build wheels
|
|
109
|
-
uses: pypa/cibuildwheel@
|
|
109
|
+
uses: pypa/cibuildwheel@v4.1
|
|
110
110
|
env:
|
|
111
111
|
CIBW_ARCHS: "${{ matrix.arch }}"
|
|
112
112
|
CIBW_BUILD: "cp310-${{ matrix.build }}*"
|
|
@@ -121,7 +121,7 @@ jobs:
|
|
|
121
121
|
needs: [lint]
|
|
122
122
|
runs-on: ubuntu-latest
|
|
123
123
|
steps:
|
|
124
|
-
- uses: actions/checkout@
|
|
124
|
+
- uses: actions/checkout@v7
|
|
125
125
|
with:
|
|
126
126
|
fetch-depth: 0 # required for versioneer to find tags
|
|
127
127
|
|
|
@@ -143,8 +143,8 @@ jobs:
|
|
|
143
143
|
python: ["3.8", "3.13"]
|
|
144
144
|
|
|
145
145
|
steps:
|
|
146
|
-
- uses: actions/checkout@
|
|
147
|
-
- uses: astral-sh/setup-uv@v8.
|
|
146
|
+
- uses: actions/checkout@v7
|
|
147
|
+
- uses: astral-sh/setup-uv@v8.2.0
|
|
148
148
|
with:
|
|
149
149
|
enable-cache: false
|
|
150
150
|
|
|
@@ -183,7 +183,7 @@ jobs:
|
|
|
183
183
|
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
|
184
184
|
|
|
185
185
|
steps:
|
|
186
|
-
- uses: actions/checkout@
|
|
186
|
+
- uses: actions/checkout@v7
|
|
187
187
|
- uses: actions/setup-python@v6
|
|
188
188
|
id: python
|
|
189
189
|
with:
|
|
@@ -18,13 +18,13 @@ repos:
|
|
|
18
18
|
- id: trailing-whitespace
|
|
19
19
|
|
|
20
20
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
21
|
-
rev: "v0.15.
|
|
21
|
+
rev: "v0.15.15"
|
|
22
22
|
hooks:
|
|
23
23
|
- id: ruff-check
|
|
24
24
|
args: [--fix, --show-fixes]
|
|
25
25
|
|
|
26
26
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
27
|
-
rev: "
|
|
27
|
+
rev: "v2.1.0"
|
|
28
28
|
hooks:
|
|
29
29
|
- id: mypy
|
|
30
30
|
files: ^(src|scripts)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
#-----------------------------------------------------------------------------
|
|
3
|
+
# CMake sources
|
|
4
|
+
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4.tar.gz")
|
|
5
|
+
set(unix_source_sha256 "fdeff897b9eb49d764539f2b1edc6eb7e1440df325678a97c1978499e931adda")
|
|
6
|
+
|
|
7
|
+
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4.zip")
|
|
8
|
+
set(windows_source_sha256 "772aecd57adb96b480e50b3e1538ec35b0738845515b15b917bd8377f6b8199d")
|
|
9
|
+
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
# CMake binaries
|
|
12
|
+
|
|
13
|
+
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
|
|
14
|
+
set(linux32_binary_sha256 "NA")
|
|
15
|
+
|
|
16
|
+
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4-linux-x86_64.tar.gz")
|
|
17
|
+
set(linux64_binary_sha256 "ca6f08ccbd5e6b0a9068d33317d0d1aff7278d08cccaed4529b8fbead7942a68")
|
|
18
|
+
|
|
19
|
+
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4-macos10.10-universal.tar.gz")
|
|
20
|
+
set(macos10_10_binary_sha256 "fd891a2cd1c13a9678d5128523dad4c951f2e364c0e4b0e77f393c7ebb532dc0")
|
|
21
|
+
|
|
22
|
+
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4-windows-i386.zip")
|
|
23
|
+
set(win32_binary_sha256 "d41f361d4f06e4eac4ad6220109155b7af9ae114229a6102c58d96e1a9590e36")
|
|
24
|
+
|
|
25
|
+
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4-windows-x86_64.zip")
|
|
26
|
+
set(win64_binary_sha256 "86e5fcafb38bdf58346a78b187c7b6b4f252ae5242cffe24c463a92bbd2e77d1")
|
|
27
|
+
|
|
28
|
+
set(winarm64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.4/cmake-4.3.4-windows-arm64.zip")
|
|
29
|
+
set(winarm64_binary_sha256 "91a59ca6ffbcec18e1fb05431fa22f538ab615b6e525d1bfd0b8dd67a4d45685")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cmake
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.4
|
|
4
4
|
Summary: CMake is an open-source, cross-platform family of tools designed to build, test and package software
|
|
5
5
|
Keywords: CMake,build,c++,fortran,cross-platform,cross-compilation
|
|
6
6
|
Author-Email: Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>
|
|
@@ -37,7 +37,7 @@ The suite of CMake tools were created by Kitware in response to the need
|
|
|
37
37
|
for a powerful, cross-platform build environment for open-source projects
|
|
38
38
|
such as ITK and VTK.
|
|
39
39
|
|
|
40
|
-
The CMake python wheels provide `CMake 4.3.
|
|
40
|
+
The CMake python wheels provide `CMake 4.3.4 <https://cmake.org/cmake/help/v4.3/index.html>`_.
|
|
41
41
|
|
|
42
42
|
Latest Release
|
|
43
43
|
--------------
|
|
@@ -11,7 +11,7 @@ The suite of CMake tools were created by Kitware in response to the need
|
|
|
11
11
|
for a powerful, cross-platform build environment for open-source projects
|
|
12
12
|
such as ITK and VTK.
|
|
13
13
|
|
|
14
|
-
The CMake python wheels provide `CMake 4.3.
|
|
14
|
+
The CMake python wheels provide `CMake 4.3.4 <https://cmake.org/cmake/help/v4.3/index.html>`_.
|
|
15
15
|
|
|
16
16
|
Latest Release
|
|
17
17
|
--------------
|
|
@@ -15,7 +15,7 @@ The suite of CMake tools were created by Kitware in response to the need
|
|
|
15
15
|
for a powerful, cross-platform build environment for open-source projects
|
|
16
16
|
such as `ITK <https://itk.org>`_ and `VTK <https://vtk.org>`_.
|
|
17
17
|
|
|
18
|
-
The CMake python wheels provide `CMake 4.3.
|
|
18
|
+
The CMake python wheels provide `CMake 4.3.4 <https://cmake.org/cmake/help/v4.3/index.html>`_.
|
|
19
19
|
|
|
20
20
|
.. toctree::
|
|
21
21
|
:maxdepth: 2
|
|
@@ -29,13 +29,13 @@ Classic procedure:
|
|
|
29
29
|
2. Execute `scripts/update_cmake_version.py` command line tool with the desired
|
|
30
30
|
``X.Y.Z`` CMake version available for download. For example::
|
|
31
31
|
|
|
32
|
-
$ release=4.3.
|
|
32
|
+
$ release=4.3.4
|
|
33
33
|
$ ./scripts/update_cmake_version.py $release
|
|
34
|
-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.3.
|
|
34
|
+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.3.4'
|
|
35
35
|
[...]
|
|
36
|
-
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.3.
|
|
37
|
-
Updating 'CMakeUrls.cmake' with CMake version 4.3.
|
|
38
|
-
Updating 'CMakeUrls.cmake' with CMake version 4.3.
|
|
36
|
+
Collecting URLs and SHA256s from 'https://api.github.com/repos/Kitware/CMake/releases/tags/v4.3.4' - done
|
|
37
|
+
Updating 'CMakeUrls.cmake' with CMake version 4.3.4
|
|
38
|
+
Updating 'CMakeUrls.cmake' with CMake version 4.3.4 - done
|
|
39
39
|
Updating docs/index.rst
|
|
40
40
|
Updating docs/index.rst - done
|
|
41
41
|
Updating README.rst
|
|
@@ -46,7 +46,7 @@ Classic procedure:
|
|
|
46
46
|
3. Create a topic named `update-to-cmake-X.Y.Z` and commit the changes.
|
|
47
47
|
For example::
|
|
48
48
|
|
|
49
|
-
release=4.3.
|
|
49
|
+
release=4.3.4
|
|
50
50
|
git switch -c update-to-cmake-$release
|
|
51
51
|
git add -u CMakeUrls.cmake docs/index.rst README.rst tests/test_cmake.py docs/update_cmake_version.rst
|
|
52
52
|
git commit -m "Update to CMake $release"
|
|
@@ -5,7 +5,7 @@ backend-path = ["_build_backend"]
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "cmake"
|
|
8
|
-
version = "4.3.
|
|
8
|
+
version = "4.3.4"
|
|
9
9
|
description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software"
|
|
10
10
|
keywords = ["CMake", "build", "c++", "fortran", "cross-platform", "cross-compilation"]
|
|
11
11
|
readme = "README.rst"
|
|
@@ -10,8 +10,8 @@ set -o pipefail
|
|
|
10
10
|
MY_DIR=$(dirname "${BASH_SOURCE[0]}")
|
|
11
11
|
source $MY_DIR/utils.sh
|
|
12
12
|
|
|
13
|
-
OPENSSL_ROOT=openssl-3.5.
|
|
14
|
-
OPENSSL_HASH=
|
|
13
|
+
OPENSSL_ROOT=openssl-3.5.7
|
|
14
|
+
OPENSSL_HASH=a8c0d28a529ca480f9f36cf5792e2cd21984552a3c8e4aa11a24aa31aeac98e8
|
|
15
15
|
|
|
16
16
|
cd /tmp
|
|
17
17
|
|
|
@@ -64,7 +64,7 @@ def _get_scripts():
|
|
|
64
64
|
|
|
65
65
|
@all_tools
|
|
66
66
|
def test_cmake_script(tool):
|
|
67
|
-
expected_version = "4.3.
|
|
67
|
+
expected_version = "4.3.4"
|
|
68
68
|
scripts = [script for script in _get_scripts() if script.stem == tool]
|
|
69
69
|
assert len(scripts) == 1
|
|
70
70
|
output = subprocess.check_output([str(scripts[0]), "--version"]).decode("ascii")
|
|
@@ -72,6 +72,6 @@ def test_cmake_script(tool):
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
def test_cmake_main():
|
|
75
|
-
expected_version = "4.3.
|
|
75
|
+
expected_version = "4.3.4"
|
|
76
76
|
output = subprocess.run([sys.executable, "-m", "cmake", "--version"], text=True, capture_output=True, check=False).stdout
|
|
77
77
|
assert output.splitlines()[0] == f"cmake version {expected_version}"
|
cmake-4.3.2/CMakeUrls.cmake
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
#-----------------------------------------------------------------------------
|
|
3
|
-
# CMake sources
|
|
4
|
-
set(unix_source_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2.tar.gz")
|
|
5
|
-
set(unix_source_sha256 "b0231eb39b3c3cabdc568c619df78208a7bd95ea10c9b2236d61218bac1b367d")
|
|
6
|
-
|
|
7
|
-
set(windows_source_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2.zip")
|
|
8
|
-
set(windows_source_sha256 "6b3ce1cb623836f971dcc0e0f9077040eaf542149ff29199f74fafdf6e8f110f")
|
|
9
|
-
|
|
10
|
-
#-----------------------------------------------------------------------------
|
|
11
|
-
# CMake binaries
|
|
12
|
-
|
|
13
|
-
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
|
|
14
|
-
set(linux32_binary_sha256 "NA")
|
|
15
|
-
|
|
16
|
-
set(linux64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-linux-x86_64.tar.gz")
|
|
17
|
-
set(linux64_binary_sha256 "791ae3604841ca03cb3889a3ad89165346e4b180ae3448efd4b0caa9ef46d245")
|
|
18
|
-
|
|
19
|
-
set(macos10_10_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-macos10.10-universal.tar.gz")
|
|
20
|
-
set(macos10_10_binary_sha256 "16c228c48a3826fcf3aa149c81ecb384665b5e76e7c9378b3ff0a3accba830e8")
|
|
21
|
-
|
|
22
|
-
set(win32_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-windows-i386.zip")
|
|
23
|
-
set(win32_binary_sha256 "bcee59684ef5de2c08c391f4f3a8df49d4f1fdec20a009eda1c1db49cc2be1c4")
|
|
24
|
-
|
|
25
|
-
set(win64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-windows-x86_64.zip")
|
|
26
|
-
set(win64_binary_sha256 "83d20c23f5c5f64b3b328785e35b23c532e33057a97ed6294acaca3781b78a01")
|
|
27
|
-
|
|
28
|
-
set(winarm64_binary_url "https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-windows-arm64.zip")
|
|
29
|
-
set(winarm64_binary_sha256 "42a2a88fc57e70d04a92f6eaaac2094241995f53584bc2afdae7e6ef982b3781")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|