Received: by mail.netbsd.org (Postfix, from userid 605) id 3453484FFA; Sun, 3 Jul 2022 17:32:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6C97484FF9 for ; Sun, 3 Jul 2022 17:32:05 +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 3ZTt6z_4D9S3 for ; Sun, 3 Jul 2022 17:32:05 +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 F360084DB2 for ; Sun, 3 Jul 2022 17:32:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ED012FB1A; Sun, 3 Jul 2022 17:32:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656869524243740" MIME-Version: 1.0 Date: Sun, 3 Jul 2022 17:32:04 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/snapcast To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220703173204.ED012FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656869524243740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 3 17:32:04 UTC 2022 Modified Files: pkgsrc/audio/snapcast: Makefile Log Message: snapcast: Needs gcc8 for std::filesystem To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/snapcast/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656869524243740 Content-Disposition: inline Content-Length: 638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/snapcast/Makefile diff -u pkgsrc/audio/snapcast/Makefile:1.2 pkgsrc/audio/snapcast/Makefile:1.3 --- pkgsrc/audio/snapcast/Makefile:1.2 Sun Jul 3 16:23:35 2022 +++ pkgsrc/audio/snapcast/Makefile Sun Jul 3 17:32:04 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/07/03 16:23:35 nia Exp $ +# $NetBSD: Makefile,v 1.3 2022/07/03 17:32:04 nia Exp $ DISTNAME= snapcast-0.26.0 CATEGORIES= audio @@ -14,6 +14,9 @@ USE_CMAKE= yes USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ +# std::filesystem +GCC_REQD+= 8 + REPLACE_PYTHON+= server/etc/plug-ins/meta_mpd.py PYTHON_VERSIONS_INCOMPATIBLE= 27 --_----------=_1656869524243740--