Received: by mail.netbsd.org (Postfix, from userid 605) id 99E17850D3; Tue, 15 May 2018 08:58:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 23F6884E53 for ; Tue, 15 May 2018 08:58:40 +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 SxyooRnXCgkP for ; Tue, 15 May 2018 08:58:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A813D84CE1 for ; Tue, 15 May 2018 08:58:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9D570FBEC; Tue, 15 May 2018 08:58:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1526374719150590" MIME-Version: 1.0 Date: Tue, 15 May 2018 08:58:39 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180515085839.9D570FBEC@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. --_----------=_1526374719150590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue May 15 08:58:39 UTC 2018 Modified Files: pkgsrc/devel/py-meson: build.mk pkgsrc/net/glib-networking: Makefile Log Message: py-meson: Centralise meson_post_install.py handling. This appears to be a common problem across packages that use meson, though it's unclear at this time why this doesn't seem to be a problem for anyone else. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-meson/build.mk cvs rdiff -u -r1.36 -r1.37 pkgsrc/net/glib-networking/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1526374719150590 Content-Disposition: inline Content-Length: 1545 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-meson/build.mk diff -u pkgsrc/devel/py-meson/build.mk:1.4 pkgsrc/devel/py-meson/build.mk:1.5 --- pkgsrc/devel/py-meson/build.mk:1.4 Sat Mar 17 11:39:01 2018 +++ pkgsrc/devel/py-meson/build.mk Tue May 15 08:58:39 2018 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.4 2018/03/17 11:39:01 tnn Exp $ +# $NetBSD: build.mk,v 1.5 2018/05/15 08:58:39 jperkin Exp $ BUILD_DEPENDS+= ${PYPKGPREFIX}-meson-[0-9]*:../../devel/py-meson @@ -14,6 +14,9 @@ meson-build: do-install: meson-install meson-install: + if [ -f ${WRKSRC}/meson_post_install.py ]; then \ + ${CHMOD} +x ${WRKSRC}/meson_post_install.py; \ + fi cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ninja -C output install PYTHON_VERSIONS_INCOMPATIBLE= 27 Index: pkgsrc/net/glib-networking/Makefile diff -u pkgsrc/net/glib-networking/Makefile:1.36 pkgsrc/net/glib-networking/Makefile:1.37 --- pkgsrc/net/glib-networking/Makefile:1.36 Mon May 14 09:44:01 2018 +++ pkgsrc/net/glib-networking/Makefile Tue May 15 08:58:39 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2018/05/14 09:44:01 jperkin Exp $ +# $NetBSD: Makefile,v 1.37 2018/05/15 08:58:39 jperkin Exp $ DISTNAME= glib-networking-2.56.0 PKGREVISION= 3 @@ -19,9 +19,6 @@ USE_TOOLS+= pkg-config gmake gettext REPLACE_PYTHON+= find-ca-certificates REPLACE_PYTHON+= meson_post_install.py -pre-install: - ${CHMOD} +x ${WRKSRC}/meson_post_install.py - BUILDLINK_API_DEPENDS.glib2+= glib2>=2.56.0 .include "../../devel/glib2/modules.mk" BUILDLINK_API_DEPENDS.libproxy+= libproxy>=0.3.1 --_----------=_1526374719150590--