Received: by mail.netbsd.org (Postfix, from userid 605) id 8C7CA84DEB; Tue, 9 Jul 2019 20:27:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4DF4E84E25 for ; Tue, 9 Jul 2019 20:23:08 +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 eEXpv3PwoL0V for ; Tue, 9 Jul 2019 20:23:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AB28D84DE7 for ; Tue, 9 Jul 2019 20:23:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A46E4FBF4; Tue, 9 Jul 2019 20:23:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1562703787259070" MIME-Version: 1.0 Date: Tue, 9 Jul 2019 20:23:07 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/textproc/uncrustify To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190709202307.A46E4FBF4@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. --_----------=_1562703787259070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jul 9 20:23:07 UTC 2019 Modified Files: pkgsrc/textproc/uncrustify: Makefile Log Message: uncrustify: Needs python to build, set PYTHON_FOR_BUILD_ONLY etc To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/uncrustify/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1562703787259070 Content-Disposition: inline Content-Length: 785 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/uncrustify/Makefile diff -u pkgsrc/textproc/uncrustify/Makefile:1.3 pkgsrc/textproc/uncrustify/Makefile:1.4 --- pkgsrc/textproc/uncrustify/Makefile:1.3 Tue May 14 12:54:17 2019 +++ pkgsrc/textproc/uncrustify/Makefile Tue Jul 9 20:23:07 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2019/05/14 12:54:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.4 2019/07/09 20:23:07 nia Exp $ DISTNAME= uncrustify-uncrustify-0.69.0 PKGNAME= ${DISTNAME:S/uncrustify-//} @@ -19,7 +19,11 @@ OBJDIR= ${WRKSRC}/build CONFIGURE_DIRS= ${OBJDIR} CMAKE_ARG_PATH= ${WRKSRC} +PYTHON_VERSIONS_INCOMPATIBLE= 36 37 +PYTHON_FOR_BUILD_ONLY= yes + pre-configure: ${MKDIR} ${WRKSRC}/build +.include "../../lang/python/pyversion.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1562703787259070--