Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D67F884E9B for ; Thu, 8 Jun 2023 15:19:02 +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 ox2O9qL9Pzn3 for ; Thu, 8 Jun 2023 15:19:02 +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 3397B84CD8 for ; Thu, 8 Jun 2023 15:19:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2DDC7FA89; Thu, 8 Jun 2023 15:19:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686237542219400" MIME-Version: 1.0 Date: Thu, 8 Jun 2023 15:19:02 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/textproc/py-rapidfuzz To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230608151902.2DDC7FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686237542219400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Thu Jun 8 15:19:02 UTC 2023 Modified Files: pkgsrc/textproc/py-rapidfuzz: Makefile Log Message: textproc/py-rapidfuzz: Actually change to gcc10 (The previous commit explained why I chose 10 for GCC_REQD, but accidentally contained 8 because I was testing that. While 8 seems to work, various code is increasingly troubled by non-recent compilers, and it doesn't seem useful to try to live on the edge.) To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/py-rapidfuzz/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686237542219400 Content-Disposition: inline Content-Length: 677 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-rapidfuzz/Makefile diff -u pkgsrc/textproc/py-rapidfuzz/Makefile:1.4 pkgsrc/textproc/py-rapidfuzz/Makefile:1.5 --- pkgsrc/textproc/py-rapidfuzz/Makefile:1.4 Thu Jun 8 14:08:19 2023 +++ pkgsrc/textproc/py-rapidfuzz/Makefile Thu Jun 8 15:19:02 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2023/06/08 14:08:19 gdt Exp $ +# $NetBSD: Makefile,v 1.5 2023/06/08 15:19:02 gdt Exp $ DISTNAME= rapidfuzz-3.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -22,7 +22,7 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 PLIST_SUBST+= PYTHON_VERSION=${PYTHON_VERSION} USE_LANGUAGES= c c++17 -GCC_REQD= 8 +GCC_REQD= 10 # needs 'make install' do-test: --_----------=_1686237542219400--