Received: by mail.netbsd.org (Postfix, from userid 605) id 561D484EA5; Sat, 29 Apr 2023 14:23:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 84DED84E6E for ; Sat, 29 Apr 2023 14:23:36 +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 4Djw50l81eIt for ; Sat, 29 Apr 2023 14:23:36 +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 107FB84CD9 for ; Sat, 29 Apr 2023 14:23:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F39BFFA87; Sat, 29 Apr 2023 14:23:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682778215189470" MIME-Version: 1.0 Date: Sat, 29 Apr 2023 14:23:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/rspamd To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230429142335.F39BFFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682778215189470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Apr 29 14:23:35 UTC 2023 Modified Files: pkgsrc/mail/rspamd: Makefile Log Message: rspamd: require GCC 9 for std::string's ends_with() To generate a diff of this commit: cvs rdiff -u -r1.88 -r1.89 pkgsrc/mail/rspamd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682778215189470 Content-Disposition: inline Content-Length: 675 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/rspamd/Makefile diff -u pkgsrc/mail/rspamd/Makefile:1.88 pkgsrc/mail/rspamd/Makefile:1.89 --- pkgsrc/mail/rspamd/Makefile:1.88 Wed Apr 26 19:54:42 2023 +++ pkgsrc/mail/rspamd/Makefile Sat Apr 29 14:23:35 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.88 2023/04/26 19:54:42 wiz Exp $ +# $NetBSD: Makefile,v 1.89 2023/04/29 14:23:35 wiz Exp $ DISTNAME= rspamd-3.5 CATEGORIES= mail @@ -12,7 +12,8 @@ LICENSE= 2-clause-bsd DEPENDS+= ${LUA_PKGPREFIX}-lpeg-[0-9]*:../../devel/lua-lpeg DEPENDS+= ragel-[0-9]*:../../devel/ragel -GCC_REQD+= 8 +# std::string ends_with() +GCC_REQD+= 9 USE_TOOLS+= perl pkg-config USE_LANGUAGES= c99 c++ --_----------=_1682778215189470--