Received: by mail.netbsd.org (Postfix, from userid 605) id ED44884EA5; Sat, 29 Apr 2023 14:25:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2941084E6E for ; Sat, 29 Apr 2023 14:25:06 +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 cB-nyIl_s8-y for ; Sat, 29 Apr 2023 14:25:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7A37184CD9 for ; Sat, 29 Apr 2023 14:25:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 717DEFA87; Sat, 29 Apr 2023 14:25:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168277830545820" MIME-Version: 1.0 Date: Sat, 29 Apr 2023 14:25:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/print/cups-filters To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230429142505.717DEFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168277830545820 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:25:05 UTC 2023 Modified Files: pkgsrc/print/cups-filters: Makefile Log Message: cups-filters: bump required c++ version to 17 because of qpdf header To generate a diff of this commit: cvs rdiff -u -r1.172 -r1.173 pkgsrc/print/cups-filters/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168277830545820 Content-Disposition: inline Content-Length: 837 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/cups-filters/Makefile diff -u pkgsrc/print/cups-filters/Makefile:1.172 pkgsrc/print/cups-filters/Makefile:1.173 --- pkgsrc/print/cups-filters/Makefile:1.172 Wed Apr 19 08:08:39 2023 +++ pkgsrc/print/cups-filters/Makefile Sat Apr 29 14:25:05 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.172 2023/04/19 08:08:39 adam Exp $ +# $NetBSD: Makefile,v 1.173 2023/04/29 14:25:05 wiz Exp $ DISTNAME= cups-filters-1.28.16 PKGREVISION= 1 @@ -15,7 +15,8 @@ LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND g DEPENDS+= dejavu-ttf-[0-9]*:../../fonts/dejavu-ttf DEPENDS+= poppler-utils-[0-9]*:../../print/poppler-utils -USE_LANGUAGES= c c++11 +# qpdf's include/qpdf/QPDF.hh uses std::string_view +USE_LANGUAGES= c c++17 USE_LIBTOOL= yes USE_TOOLS+= bash:run pkg-config gmake gdbus-codegen GNU_CONFIGURE= yes --_----------=_168277830545820--