Received: by mail.netbsd.org (Postfix, from userid 605) id 2D8AD84D91; Mon, 16 Oct 2017 00:40:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AD74284D59 for ; Mon, 16 Oct 2017 00:40:09 +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 iqRPSRCfho6W for ; Mon, 16 Oct 2017 00:40:09 +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 185DF84D56 for ; Mon, 16 Oct 2017 00:40:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F324FBC7; Mon, 16 Oct 2017 00:40:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1508114409244950" MIME-Version: 1.0 Date: Mon, 16 Oct 2017 00:40:09 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/devel/glib2 To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20171016004009.0F324FBC7@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. --_----------=_1508114409244950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Mon Oct 16 00:40:08 UTC 2017 Modified Files: pkgsrc/devel/glib2: Makefile Log Message: glib2: needs python to generate gdbus-daemon-generated.{h,c} All efforts to avoid python dependency have failed. To generate a diff of this commit: cvs rdiff -u -r1.236 -r1.237 pkgsrc/devel/glib2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1508114409244950 Content-Disposition: inline Content-Length: 848 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/glib2/Makefile diff -u pkgsrc/devel/glib2/Makefile:1.236 pkgsrc/devel/glib2/Makefile:1.237 --- pkgsrc/devel/glib2/Makefile:1.236 Fri Oct 13 15:35:10 2017 +++ pkgsrc/devel/glib2/Makefile Mon Oct 16 00:40:08 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.236 2017/10/13 15:35:10 prlw1 Exp $ +# $NetBSD: Makefile,v 1.237 2017/10/16 00:40:08 prlw1 Exp $ .include "Makefile.common" @@ -54,6 +54,11 @@ CONFIGURE_ENV+= LIBELF_LIBS='-lelf' . endif .endif +# to run gdbus-codegen to generate gdbus-daemon-generated.{h,c} +TOOL_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat +PYTHON_FOR_BUILD_ONLY?= yes +.include "../../lang/python/pyversion.mk" + .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/pcre/buildlink3.mk" --_----------=_1508114409244950--