Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 6081C1A9239 for ; Sun, 25 Oct 2020 12:56:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CD8C584D67; Sun, 25 Oct 2020 12:56:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 55AEC84D66 for ; Sun, 25 Oct 2020 12:56:56 +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 muCer3QGU7lc for ; Sun, 25 Oct 2020 12:56:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D539984D21 for ; Sun, 25 Oct 2020 12:56:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CEE04FB28; Sun, 25 Oct 2020 12:56:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1603630615245350" MIME-Version: 1.0 Date: Sun, 25 Oct 2020 12:56:55 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/cppunit To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201025125655.CEE04FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1603630615245350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Oct 25 12:56:55 UTC 2020 Modified Files: pkgsrc/devel/cppunit: Makefile buildlink3.mk Log Message: cppunit: Require a version of GCC with c++11 support To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/devel/cppunit/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/cppunit/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1603630615245350 Content-Disposition: inline Content-Length: 1592 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/cppunit/Makefile diff -u pkgsrc/devel/cppunit/Makefile:1.29 pkgsrc/devel/cppunit/Makefile:1.30 --- pkgsrc/devel/cppunit/Makefile:1.29 Sat Jan 18 23:30:25 2020 +++ pkgsrc/devel/cppunit/Makefile Sun Oct 25 12:56:55 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2020/01/18 23:30:25 rillig Exp $ +# $NetBSD: Makefile,v 1.30 2020/10/25 12:56:55 nia Exp $ DISTNAME= cppunit-1.15.1 CATEGORIES= devel @@ -9,11 +9,14 @@ HOMEPAGE= https://www.freedesktop.org/wi COMMENT= C++ unit testing framework LICENSE= gnu-lgpl-v2.1 -USE_LANGUAGES= c c++11 +USE_LANGUAGES= c c++ USE_LIBTOOL= yes USE_TOOLS+= gmake GNU_CONFIGURE= yes +# configure: error: *** A compiler with support for C++11 language features is required. +GCC_REQD+= 4.8 + PKGCONFIG_OVERRIDE= cppunit.pc.in .include "options.mk" Index: pkgsrc/devel/cppunit/buildlink3.mk diff -u pkgsrc/devel/cppunit/buildlink3.mk:1.11 pkgsrc/devel/cppunit/buildlink3.mk:1.12 --- pkgsrc/devel/cppunit/buildlink3.mk:1.11 Mon May 1 04:16:12 2017 +++ pkgsrc/devel/cppunit/buildlink3.mk Sun Oct 25 12:56:55 2020 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.11 2017/05/01 04:16:12 ryoon Exp $ +# $NetBSD: buildlink3.mk,v 1.12 2020/10/25 12:56:55 nia Exp $ BUILDLINK_TREE+= cppunit @@ -9,6 +9,8 @@ BUILDLINK_API_DEPENDS.cppunit+= cppunit> BUILDLINK_ABI_DEPENDS.cppunit+= cppunit>=1.10.2nb5 BUILDLINK_PKGSRCDIR.cppunit?= ../../devel/cppunit BUILDLINK_CPPFLAGS.cppunit+= -I${BUILDLINK_PREFIX.cppunit}/include/cppunit + +GCC_REQD+= 4.8 .endif # CPPUNIT_BUILDLINK3_MK BUILDLINK_TREE+= -cppunit --_----------=_1603630615245350--