Received: by mail.netbsd.org (Postfix, from userid 605) id B356E84E8E; Fri, 2 Aug 2019 09:47:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 394B784D91 for ; Fri, 2 Aug 2019 09:47:05 +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 Rpa2H3MZoTWS for ; Fri, 2 Aug 2019 09:47:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8A6E784D3F for ; Fri, 2 Aug 2019 09:47:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8231BFBF4; Fri, 2 Aug 2019 09:47:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564739224270310" MIME-Version: 1.0 Date: Fri, 2 Aug 2019 09:47:04 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/multimedia/mpv To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20190802094704.8231BFBF4@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. --_----------=_1564739224270310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Fri Aug 2 09:47:04 UTC 2019 Modified Files: pkgsrc/multimedia/mpv: Makefile Log Message: mpv: Disable Swift as a workaround for PR pkg/54426 According upstream pull request 6612 () and as noticed via PR pkg/54426 newer Xcode (10.2) dropped support for Swift 3 that is used in mpv-0.29.1. Workaround that by disabling swift support. This will probably not needed and should be removed in next stable mpv version. To generate a diff of this commit: cvs rdiff -u -r1.83 -r1.84 pkgsrc/multimedia/mpv/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564739224270310 Content-Disposition: inline Content-Length: 804 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/mpv/Makefile diff -u pkgsrc/multimedia/mpv/Makefile:1.83 pkgsrc/multimedia/mpv/Makefile:1.84 --- pkgsrc/multimedia/mpv/Makefile:1.83 Tue Jun 4 13:55:43 2019 +++ pkgsrc/multimedia/mpv/Makefile Fri Aug 2 09:47:04 2019 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.83 2019/06/04 13:55:43 nia Exp $ +# $NetBSD: Makefile,v 1.84 2019/08/02 09:47:04 leot Exp $ DISTNAME= mpv-0.29.1 -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_GITHUB:=mpv-player/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -24,6 +24,7 @@ WAF_CONFIGURE_ARGS+= --bindir=${PREFIX}/ WAF_CONFIGURE_ARGS+= --enable-dvdnav WAF_CONFIGURE_ARGS+= --enable-dvdread WAF_CONFIGURE_ARGS+= --disable-egl-x11 +WAF_CONFIGURE_ARGS+= --disable-swift PYTHON_FOR_BUILD_ONLY= yes --_----------=_1564739224270310--