Received: by mail.netbsd.org (Postfix, from userid 605) id EB35484D16; Thu, 8 Apr 2021 21:16:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3195B84D11 for ; Thu, 8 Apr 2021 21:16:43 +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 7ipx7pHpMoPM for ; Thu, 8 Apr 2021 21:16:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8957384CE0 for ; Thu, 8 Apr 2021 21:16:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 86EC4FA95; Thu, 8 Apr 2021 21:16:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1617916602282970" MIME-Version: 1.0 Date: Thu, 8 Apr 2021 21:16:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/pangomm/patches To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210408211642.86EC4FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1617916602282970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Apr 8 21:16:42 UTC 2021 Added Files: pkgsrc/devel/pangomm/patches: patch-meson.build Log Message: pangomm: import patches To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/pangomm/patches/patch-meson.build Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1617916602282970 Content-Disposition: inline Content-Length: 773 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/pangomm/patches/patch-meson.build diff -u /dev/null pkgsrc/devel/pangomm/patches/patch-meson.build:1.1 --- /dev/null Thu Apr 8 21:16:42 2021 +++ pkgsrc/devel/pangomm/patches/patch-meson.build Thu Apr 8 21:16:42 2021 @@ -0,0 +1,15 @@ +$NetBSD: patch-meson.build,v 1.1 2021/04/08 21:16:42 adam Exp $ + +Fix finding Python. + +--- meson.build.orig 2021-04-08 16:35:21.531396769 +0000 ++++ meson.build +@@ -43,7 +43,7 @@ project_build_root = meson.current_build + + cpp_compiler = meson.get_compiler('cpp') + is_msvc = cpp_compiler.get_id() == 'msvc' +-python3 = import('python').find_installation('python3') ++python3 = import('python').find_installation() + + python_version = python3.language_version() + python_version_req = '>= 3.5' --_----------=_1617916602282970--