Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EDB9D84CD0 for ; Thu, 6 Jul 2023 10:34:52 +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 SmUiJfWmvj6Q for ; Thu, 6 Jul 2023 10:34:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6AE1984D1D for ; Thu, 6 Jul 2023 10:34:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C03E5FBDB; Thu, 6 Jul 2023 10:34:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168863969051560" MIME-Version: 1.0 Date: Thu, 6 Jul 2023 10:34:50 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/exiv2 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230706103450.C03E5FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168863969051560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jul 6 10:34:50 UTC 2023 Modified Files: pkgsrc/graphics/exiv2: Makefile Log Message: exiv2: require GCC 8 for std::filesystem To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/graphics/exiv2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168863969051560 Content-Disposition: inline Content-Length: 650 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/exiv2/Makefile diff -u pkgsrc/graphics/exiv2/Makefile:1.55 pkgsrc/graphics/exiv2/Makefile:1.56 --- pkgsrc/graphics/exiv2/Makefile:1.55 Sat Jul 1 22:13:14 2023 +++ pkgsrc/graphics/exiv2/Makefile Thu Jul 6 10:34:50 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2023/07/01 22:13:14 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2023/07/06 10:34:50 wiz Exp $ DISTNAME= exiv2-0.28.0-Source PKGNAME= ${DISTNAME:S/-Source//} @@ -15,7 +15,8 @@ CHECK_PORTABILITY_SKIP+= contrib/coverit USE_TOOLS+= msgfmt USE_LANGUAGES= c c++ -GCC_REQD+= 3.3 +# std::filesystem +GCC_REQD+= 8 .include "../../mk/bsd.prefs.mk" --_----------=_168863969051560--