Received: by mail.netbsd.org (Postfix, from userid 605) id 7063284D5E; Wed, 14 Feb 2024 07:32:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707895928; bh=PNvxXNcmCOfZTUZkg4KrLw4JzbmqkZs+dGpopqHGywY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=aihldLRti9L0Pbogvay3yJSDGwxcCmcYYlvwoU+Zky2A7y/i+MfR/m7pQ0iG90zdU dXPnpcBkk5I3goZ5tLRTfmb0Sv67SZRnJxT3yO3LCnW9jW1ZywSGpwtFU8D+8bZTr6 n0uMbO8C7NK4fgMLsx8eUAzNtTepgJPBYHfUN+JU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5FA3B84D3D for ; Wed, 14 Feb 2024 07:32:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id VQYyGrn2hYP9 for ; Wed, 14 Feb 2024 07:32:07 +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 B75EE84D25 for ; Wed, 14 Feb 2024 07:32:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707895927; bh=PNvxXNcmCOfZTUZkg4KrLw4JzbmqkZs+dGpopqHGywY=; h=Date:From:Subject:To:Reply-To; b=GKM4QjxcVTjfZmwql3He6jbGiMQZW9iPugwbSINtYKAxd+J9xDhn5fnNyOzqS/VsD oH9QBbpbq2OUqHByOlMpUurn3bou6+qUoYZAQCYOCLqz2AWtmpISFETIAGpvbyaOVK 6sGnE4Mn9DK8uPOABjDQgfrCnCd2gYs8j0fFoxwA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id AF451F9EC; Wed, 14 Feb 2024 07:32:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707895926118980" MIME-Version: 1.0 Date: Wed, 14 Feb 2024 07:32:06 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/sysutils/filelight To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20240214073206.AF451F9EC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707895926118980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Wed Feb 14 07:32:06 UTC 2024 Modified Files: pkgsrc/sysutils/filelight: Makefile Log Message: filelight: note needs c++20 To generate a diff of this commit: cvs rdiff -u -r1.105 -r1.106 pkgsrc/sysutils/filelight/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707895926118980 Content-Disposition: inline Content-Length: 692 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/filelight/Makefile diff -u pkgsrc/sysutils/filelight/Makefile:1.105 pkgsrc/sysutils/filelight/Makefile:1.106 --- pkgsrc/sysutils/filelight/Makefile:1.105 Tue Feb 6 11:17:42 2024 +++ pkgsrc/sysutils/filelight/Makefile Wed Feb 14 07:32:06 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.105 2024/02/06 11:17:42 markd Exp $ +# $NetBSD: Makefile,v 1.106 2024/02/14 07:32:06 markd Exp $ DISTNAME= filelight-${KAPPSVER} CATEGORIES= sysutils @@ -13,6 +13,8 @@ TOOL_DEPENDS+= kdoctools>=5.19.0:../../d USE_TOOLS+= msgmerge +USE_CXX_FEATURES+= c++20 + SUBST_CLASSES+= xdg SUBST_STAGE.xdg= pre-configure SUBST_MESSAGE.xdg= Install via examples dir. --_----------=_1707895926118980--