Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F417084EE4 for ; Fri, 6 Oct 2023 16:53:49 +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 NH4Pz3zf6V40 for ; Fri, 6 Oct 2023 16:53:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6AA2984D8B for ; Fri, 6 Oct 2023 16:53:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 65C1DFBDB; Fri, 6 Oct 2023 16:53:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1696611229135540" MIME-Version: 1.0 Date: Fri, 6 Oct 2023 16:53:49 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/gperftools To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231006165349.65C1DFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1696611229135540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Oct 6 16:53:49 UTC 2023 Modified Files: pkgsrc/devel/gperftools: Makefile distinfo Log Message: gperftools: updated to 2.13 gperftools 2.13 is out! This release includes a few minor fixes: * Ivan Dlugos has fixed some issues with cmake and config.h defines. * 32-bit builds no longer require 64-bit atomics (which we wrongly introduced in 2.11 and which broke builds on some 32-bit architectures). * generic_fp backtracing method now uses robust address probing method. The previous approach had occasional false positives, which caused occasional rare crashes. * In some cases, MSVC generated TrivialOnce machine code that deadlocked programs on startup. The issue is now fixed. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/devel/gperftools/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/gperftools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1696611229135540 Content-Disposition: inline Content-Length: 1792 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gperftools/Makefile diff -u pkgsrc/devel/gperftools/Makefile:1.24 pkgsrc/devel/gperftools/Makefile:1.25 --- pkgsrc/devel/gperftools/Makefile:1.24 Fri Aug 25 16:38:42 2023 +++ pkgsrc/devel/gperftools/Makefile Fri Oct 6 16:53:49 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.24 2023/08/25 16:38:42 adam Exp $ +# $NetBSD: Makefile,v 1.25 2023/10/06 16:53:49 adam Exp $ -DISTNAME= gperftools-2.12 +DISTNAME= gperftools-2.13 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=gperftools/} GITHUB_RELEASE= ${DISTNAME} Index: pkgsrc/devel/gperftools/distinfo diff -u pkgsrc/devel/gperftools/distinfo:1.19 pkgsrc/devel/gperftools/distinfo:1.20 --- pkgsrc/devel/gperftools/distinfo:1.19 Fri Aug 25 16:38:42 2023 +++ pkgsrc/devel/gperftools/distinfo Fri Oct 6 16:53:49 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.19 2023/08/25 16:38:42 adam Exp $ +$NetBSD: distinfo,v 1.20 2023/10/06 16:53:49 adam Exp $ -BLAKE2s (gperftools-2.12.tar.gz) = 5cace769a041823a97578363a2528269dd8ce13d28ff0b8c5210ad1c0331a8c5 -SHA512 (gperftools-2.12.tar.gz) = 36ba751d0a8162a6ec18580716112860960c79460191031952e64553ba7371df33038ba7a915f9fe94835fb3a9d973a43423d50ed52c9a86a88cfa240abc155f -Size (gperftools-2.12.tar.gz) = 1498786 bytes +BLAKE2s (gperftools-2.13.tar.gz) = 3cbc3cafd4f5ae712dc93a8149b33b2baddd3f442cbb34f70b534e5afea09b31 +SHA512 (gperftools-2.13.tar.gz) = 2a18ed4eb6cab84a33452cd3b1319840ca6e4c48ab90531758c2339bf4a71042cdc26ed16d5d46406e48d9ffe0e518e4779193d0cd729c246d71dbc8920d2bd9 +Size (gperftools-2.13.tar.gz) = 1503107 bytes SHA1 (patch-configure) = 1ff0ea42642f42d1ba6459c35c36f6db0e008007 SHA1 (patch-src_base_basictypes.h) = 259488af84dcd7bc2114acdb3943d193b743ddb2 SHA1 (patch-src_base_sysinfo.cc) = 8d3c4cbc930c8625e0aca9aba6bba3a35b80fbd5 --_----------=_1696611229135540--