pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/cmake
Module Name: pkgsrc
Committed By: adam
Date: Sun Aug 20 12:59:26 UTC 2023
Modified Files:
pkgsrc/devel/cmake: distinfo version.mk
pkgsrc/devel/cmake/patches: patch-Modules_FindPython_Support.cmake
Log Message:
cmake cmake-gui: updated to 3.27.3
CMake 3.27.3
* FindJNI: Restore support for macOS without Xcode
* Utilities/Release: Remove unused documentation build settings
* Apple Text Stubs (.tbd): various fixes
* Clang: use -std=c23 for Clang 18+
* Unity: use C-style comments to work both with C and C++
* FindPython: add support for Python 3.13
* GHS: Escape custom command comments
* testDebuggerNamedPipe: fix for cppdap with nlohmann_json
To generate a diff of this commit:
cvs rdiff -u -r1.216 -r1.217 pkgsrc/devel/cmake/distinfo
cvs rdiff -u -r1.42 -r1.43 pkgsrc/devel/cmake/version.mk
cvs rdiff -u -r1.4 -r1.5 \
pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/cmake/distinfo
diff -u pkgsrc/devel/cmake/distinfo:1.216 pkgsrc/devel/cmake/distinfo:1.217
--- pkgsrc/devel/cmake/distinfo:1.216 Tue Aug 15 20:40:44 2023
+++ pkgsrc/devel/cmake/distinfo Sun Aug 20 12:59:26 2023
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.216 2023/08/15 20:40:44 tnn Exp $
+$NetBSD: distinfo,v 1.217 2023/08/20 12:59:26 adam Exp $
-BLAKE2s (cmake-3.27.2.tar.gz) = 46e8c5be3b5070fcceb4b77fa22c4256067c105665785136b59c19e9a72efaa1
-SHA512 (cmake-3.27.2.tar.gz) = a5fee6e97c69c525a5679c77f1615dbfde982fdbebb68b137a3fd2adf94a0a09773cc21fdc55936f039c13ebfc20ef852814158685e821a8545fcb314a6115f9
-Size (cmake-3.27.2.tar.gz) = 10978264 bytes
+BLAKE2s (cmake-3.27.3.tar.gz) = d69eb40103bbab7af7c884e1d8744827857b64db9fd1984b8722640fdbbd5592
+SHA512 (cmake-3.27.3.tar.gz) = cbb845d2a8724faf5c9b57c6350a130c981ef5d209eb34fd52a5940ff7e176b0ae6512f766ee9ee6f03063269179ba15e123690a0d62ac65e32ffe8027806d9f
+Size (cmake-3.27.3.tar.gz) = 10978618 bytes
SHA1 (patch-Auxiliary_CMakeLists.txt) = 7a26ef79be53b9d0370029e83f203440aa0be2a4
SHA1 (patch-CMakeLists.txt) = 0fb79458828a021a96e350bc4cf12875914f868b
SHA1 (patch-Modules_Compiler_GNU.cmake) = e091c53ac3f3a6cd811119d3231563df32e76bf9
@@ -10,7 +10,7 @@ SHA1 (patch-Modules_FindCurses.cmake) =
SHA1 (patch-Modules_FindGTK2.cmake) = 51b7520d35fdec2a7bfcf494fe35ce0e3863e4ee
SHA1 (patch-Modules_FindPythonInterp.cmake) = d1b39bdcd654f2a4fc63463cd20de656cce3cf8f
SHA1 (patch-Modules_FindPythonLibs.cmake) = b5cedc6a2354beaf08e06d416c150154a7dc1f05
-SHA1 (patch-Modules_FindPython_Support.cmake) = aaec7767cad795dd269c851bd110ccefbfc87eb3
+SHA1 (patch-Modules_FindPython_Support.cmake) = 1890687ce921e80bafcd9de970183029e6451d02
SHA1 (patch-Modules_FindX11.cmake) = 124a2d51155cb4455e8b829dc74598cbd50a4e1c
SHA1 (patch-Modules_FortranCInterface_CMakeLists.txt) = 9782cba399e47770efc51a254267d6013fce9b50
SHA1 (patch-Modules_Platform_Darwin.cmake) = 7629f034111ff64b144ff41316299d5edcfe081a
Index: pkgsrc/devel/cmake/version.mk
diff -u pkgsrc/devel/cmake/version.mk:1.42 pkgsrc/devel/cmake/version.mk:1.43
--- pkgsrc/devel/cmake/version.mk:1.42 Sat Aug 12 12:50:12 2023
+++ pkgsrc/devel/cmake/version.mk Sun Aug 20 12:59:26 2023
@@ -1,6 +1,6 @@
-# $NetBSD: version.mk,v 1.42 2023/08/12 12:50:12 adam Exp $
+# $NetBSD: version.mk,v 1.43 2023/08/20 12:59:26 adam Exp $
# used by devel/cmake/Makefile.common
# used by devel/cmake-fedora/Makefile
-CMAKE_VERSION= 3.27.2
+CMAKE_VERSION= 3.27.3
CMAKE_API= ${CMAKE_VERSION:R}
Index: pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake
diff -u pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake:1.4 pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake:1.5
--- pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake:1.4 Thu May 26 08:53:59 2022
+++ pkgsrc/devel/cmake/patches/patch-Modules_FindPython_Support.cmake Sun Aug 20 12:59:26 2023
@@ -1,10 +1,10 @@
-$NetBSD: patch-Modules_FindPython_Support.cmake,v 1.4 2022/05/26 08:53:59 adam Exp $
+$NetBSD: patch-Modules_FindPython_Support.cmake,v 1.5 2023/08/20 12:59:26 adam Exp $
Insist on select Python version for pkgsrc.
---- Modules/FindPython/Support.cmake.orig 2022-05-25 13:42:51.000000000 +0000
+--- Modules/FindPython/Support.cmake.orig 2023-08-16 17:46:35.000000000 +0000
+++ Modules/FindPython/Support.cmake
-@@ -21,7 +21,9 @@ endif()
+@@ -27,7 +27,9 @@ endif()
if (NOT DEFINED _${_PYTHON_PREFIX}_REQUIRED_VERSION_MAJOR)
message (FATAL_ERROR "FindPython: INTERNAL ERROR")
endif()
@@ -12,6 +12,6 @@ Insist on select Python version for pkgs
+if (DEFINED PYVERSSUFFIX)
+ set(_${_PYTHON_PREFIX}_VERSIONS ${PYVERSSUFFIX})
+elseif (_${_PYTHON_PREFIX}_REQUIRED_VERSION_MAJOR EQUAL "3")
- set(_${_PYTHON_PREFIX}_VERSIONS 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
+ set(_${_PYTHON_PREFIX}_VERSIONS 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
elseif (_${_PYTHON_PREFIX}_REQUIRED_VERSION_MAJOR EQUAL "2")
set(_${_PYTHON_PREFIX}_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0)
Home |
Main Index |
Thread Index |
Old Index