Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3C53484EDE for ; Fri, 6 Oct 2023 19:25:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id r4SdlPsmWU-Y for ; Fri, 6 Oct 2023 19:25:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8D89A84CEB for ; Fri, 6 Oct 2023 19:25:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8AD0FFBDB; Fri, 6 Oct 2023 19:25:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1696620348269900" MIME-Version: 1.0 Date: Fri, 6 Oct 2023 19:25:48 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/include-what-you-use To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231006192548.8AD0FFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1696620348269900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Oct 6 19:25:48 UTC 2023 Modified Files: pkgsrc/devel/include-what-you-use: Makefile distinfo Log Message: include-what-you-use: updated to 0.20 IWYU 0.20 [iwyu] Support IWYU pragma: export for forward-declarations [iwyu] Silently break cycles in mappings instead of crashing [iwyu] Require full type inside typeid() [iwyu] Improve template reporting and resugaring [iwyu] Improve reporting of explicit template instantiations [iwyu] Fix a few crashers [iwyu] Improve logging (many small fixes) Abandon python2 for scripts in favor of python3 To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/include-what-you-use/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/include-what-you-use/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1696620348269900 Content-Disposition: inline Content-Length: 2227 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/include-what-you-use/Makefile diff -u pkgsrc/devel/include-what-you-use/Makefile:1.36 pkgsrc/devel/include-what-you-use/Makefile:1.37 --- pkgsrc/devel/include-what-you-use/Makefile:1.36 Mon Aug 14 05:24:09 2023 +++ pkgsrc/devel/include-what-you-use/Makefile Fri Oct 6 19:25:48 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.36 2023/08/14 05:24:09 wiz Exp $ +# $NetBSD: Makefile,v 1.37 2023/10/06 19:25:48 adam Exp $ -DISTNAME= include-what-you-use-0.19 -PKGREVISION= 3 +DISTNAME= include-what-you-use-0.20 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=include-what-you-use/} @@ -10,15 +9,14 @@ HOMEPAGE= https://include-what-you-use.o COMMENT= Analyze \#includes in C and C++ source files LICENSE= modified-bsd -USE_CMAKE= yes -USE_LANGUAGES= c c++ - USE_CXX_FEATURES+= c++17 +USE_LANGUAGES= c c++ CMAKE_ARGS= -DIWYU_LLVM_ROOT_PATH:PATH=${BUILDLINK_PREFIX.clang} REPLACE_PYTHON= *.py +.include "../../devel/cmake/build.mk" .include "../../lang/clang/buildlink3.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/include-what-you-use/distinfo diff -u pkgsrc/devel/include-what-you-use/distinfo:1.19 pkgsrc/devel/include-what-you-use/distinfo:1.20 --- pkgsrc/devel/include-what-you-use/distinfo:1.19 Mon Nov 14 18:53:25 2022 +++ pkgsrc/devel/include-what-you-use/distinfo Fri Oct 6 19:25:48 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2022/11/14 18:53:25 adam Exp $ +$NetBSD: distinfo,v 1.20 2023/10/06 19:25:48 adam Exp $ -BLAKE2s (include-what-you-use-0.19.tar.gz) = 3bf3b2d77d827c1e11d4ee5ed5eed39e2014be24b30620b4c32bfda1b36113be -SHA512 (include-what-you-use-0.19.tar.gz) = 0847ae898696b51540ab9f5715e69bae67db42409d60205227d543ba6597b12cc2ea5bf68a3315c31f22e7186e05c06a86f5ae5b893c23bfe4cd9ef6f06ccddc -Size (include-what-you-use-0.19.tar.gz) = 757761 bytes +BLAKE2s (include-what-you-use-0.20.tar.gz) = e9b4ce706a4be37a2e78df9be04c2c94de1bedc622da27bcb7a4d93c82dcb46e +SHA512 (include-what-you-use-0.20.tar.gz) = 77195dc36338a37d3397c78701d81e52fc1c6a3441979fa016f154b0fc860598959e6430e78a51bbf9049f6b2bb62956e50f5531ac5c94c6554e2383ace540f5 +Size (include-what-you-use-0.20.tar.gz) = 766208 bytes --_----------=_1696620348269900--