Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5587F84E8E for ; Mon, 10 Jul 2023 07:51:28 +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 0qXGlDNS9zN2 for ; Mon, 10 Jul 2023 07:51:27 +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 9F0C884CCA for ; Mon, 10 Jul 2023 07:51:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 98AA3FBDB; Mon, 10 Jul 2023 07:51:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688975487112620" MIME-Version: 1.0 Date: Mon, 10 Jul 2023 07:51:27 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/zxing-cpp To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230710075127.98AA3FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688975487112620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jul 10 07:51:27 UTC 2023 Modified Files: pkgsrc/graphics/zxing-cpp: Makefile buildlink3.mk Log Message: zxing-cpp: Sync compiler requirements with reality. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/graphics/zxing-cpp/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/zxing-cpp/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688975487112620 Content-Disposition: inline Content-Length: 1367 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/zxing-cpp/Makefile diff -u pkgsrc/graphics/zxing-cpp/Makefile:1.9 pkgsrc/graphics/zxing-cpp/Makefile:1.10 --- pkgsrc/graphics/zxing-cpp/Makefile:1.9 Wed Apr 26 19:06:36 2023 +++ pkgsrc/graphics/zxing-cpp/Makefile Mon Jul 10 07:51:27 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2023/04/26 19:06:36 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2023/07/10 07:51:27 nia Exp $ DISTNAME= zxing-cpp-2.0.0 CATEGORIES= graphics @@ -10,7 +10,10 @@ HOMEPAGE= https://github.com/nu-book/zxi COMMENT= 1D/2D barcode reader/writer library in C++ LICENSE= apache-2.0 -USE_LANGUAGES= c c++11 +USE_LANGUAGES= c c++ + +# C++17 +GCC_REQD+= 7 CMAKE_ARGS+= -DBUILD_EXAMPLES=OFF # Blackbox tests target pulls fmtlib with git command. Index: pkgsrc/graphics/zxing-cpp/buildlink3.mk diff -u pkgsrc/graphics/zxing-cpp/buildlink3.mk:1.2 pkgsrc/graphics/zxing-cpp/buildlink3.mk:1.3 --- pkgsrc/graphics/zxing-cpp/buildlink3.mk:1.2 Wed Apr 26 19:07:23 2023 +++ pkgsrc/graphics/zxing-cpp/buildlink3.mk Mon Jul 10 07:51:27 2023 @@ -1,8 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.2 2023/04/26 19:07:23 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.3 2023/07/10 07:51:27 nia Exp $ BUILDLINK_TREE+= zxing-cpp .if !defined(ZXING_CPP_BUILDLINK3_MK) + +# C++17 +GCC_REQD+= 7 + ZXING_CPP_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.zxing-cpp+= zxing-cpp>=1.2.0 --_----------=_1688975487112620--