Received: by mail.netbsd.org (Postfix, from userid 605) id 81D1D84CF1; Thu, 24 Jun 2021 09:30:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B8D0084CDF for ; Thu, 24 Jun 2021 09:30:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pPaDzCqr7JvR for ; Thu, 24 Jun 2021 09:30:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 343DE84CDA for ; Thu, 24 Jun 2021 09:30:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3182EFA95; Thu, 24 Jun 2021 09:30:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162452705545850" MIME-Version: 1.0 Date: Thu, 24 Jun 2021 09:30:55 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/cmake To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210624093055.3182EFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162452705545850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jun 24 09:30:55 UTC 2021 Modified Files: pkgsrc/devel/cmake: distinfo version.mk Log Message: cmake: updated to 3.20.5 CMake 3.20.5 * gitlab-ci: update macOS jobs to use Xcode 12.5 * cmGlobalVisualStudio10Generator: Move static functions to anonymous namespace * cmGlobalVisualStudio10Generator: Adopt GetVSInstanceVersion method * VS: Do not apply '/external:W*' flag table mapping on VS < 16.10 * Tests: Fix xcode version detection for Xcode 13 on ARM * Help: Add 3.20 release note section for 3.20.{3,4,5} * ExternalProject: Use ${ref}^0 to avoid MSYS/Cygwin shell substitutions * CMake: Allow override of unexpected non-flow-control commands To generate a diff of this commit: cvs rdiff -u -r1.179 -r1.180 pkgsrc/devel/cmake/distinfo cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/cmake/version.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162452705545850 Content-Disposition: inline Content-Length: 1853 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/cmake/distinfo diff -u pkgsrc/devel/cmake/distinfo:1.179 pkgsrc/devel/cmake/distinfo:1.180 --- pkgsrc/devel/cmake/distinfo:1.179 Tue Jun 15 10:27:33 2021 +++ pkgsrc/devel/cmake/distinfo Thu Jun 24 09:30:55 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.179 2021/06/15 10:27:33 adam Exp $ +$NetBSD: distinfo,v 1.180 2021/06/24 09:30:55 adam Exp $ -SHA1 (cmake-3.20.4.tar.gz) = c6ebb973e788e60c9747279875979e88b63418b0 -RMD160 (cmake-3.20.4.tar.gz) = 9216d7bd16fc95b1894d8c4864c2b4904b5d1c2e -SHA512 (cmake-3.20.4.tar.gz) = f53902a917b8d7b949af305afed3b32fcf981c5c647a77ee7a3bcae1bb5620381a1eacdac4b86bd7e5ea0a7806ec5fbd9a4f4853553f78db4d41d7dd2867c99f -Size (cmake-3.20.4.tar.gz) = 9440363 bytes +SHA1 (cmake-3.20.5.tar.gz) = 42b43d0a5d82285384db8d17b5bd5dd9cc3fc6a2 +RMD160 (cmake-3.20.5.tar.gz) = 8737df0ceeb6d3d8ec94a907d7fcf475a69feffc +SHA512 (cmake-3.20.5.tar.gz) = 4ad7f194353be291e76d86d95928633daea653a0bd8d35369ac6ee2bb3f811c3a1aabe6a2bd51c6d5b07af2c6edc7e38d8b347ded32ab1ddcf331dbfce40c008 +Size (cmake-3.20.5.tar.gz) = 9441947 bytes SHA1 (patch-CMakeLists.txt) = fabdb0590f4b97c34c2242749ae3b6af18aefc0a SHA1 (patch-Modules_Compiler_GNU.cmake) = e091c53ac3f3a6cd811119d3231563df32e76bf9 SHA1 (patch-Modules_FindCurses.cmake) = 98cac805a6abafcfb8b61e441b50a1d6aec27ad0 Index: pkgsrc/devel/cmake/version.mk diff -u pkgsrc/devel/cmake/version.mk:1.16 pkgsrc/devel/cmake/version.mk:1.17 --- pkgsrc/devel/cmake/version.mk:1.16 Tue Jun 15 10:27:33 2021 +++ pkgsrc/devel/cmake/version.mk Thu Jun 24 09:30:55 2021 @@ -1,6 +1,6 @@ -# $NetBSD: version.mk,v 1.16 2021/06/15 10:27:33 adam Exp $ +# $NetBSD: version.mk,v 1.17 2021/06/24 09:30:55 adam Exp $ # used by devel/cmake/Makefile.common # used by devel/cmake-fedora/Makefile -CMAKE_VERSION= 3.20.4 +CMAKE_VERSION= 3.20.5 CMAKE_API= ${CMAKE_VERSION:R} --_----------=_162452705545850--