Received: by mail.netbsd.org (Postfix, from userid 605) id D160484E3A; Thu, 12 Dec 2019 10:46:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 569A784D87 for ; Thu, 12 Dec 2019 10:46:16 +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 m3tGzhP0RYKR for ; Thu, 12 Dec 2019 10:46:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B4F5084D04 for ; Thu, 12 Dec 2019 10:46:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AEB4CFA97; Thu, 12 Dec 2019 10:46:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576147575115840" MIME-Version: 1.0 Date: Thu, 12 Dec 2019 10:46:15 +0000 From: "Mark Davies" Subject: CVS commit: pkgsrc/x11/py-Tk To: pkgsrc-changes@NetBSD.org Reply-To: markd@netbsd.org X-Mailer: log_accum Message-Id: <20191212104615.AEB4CFA97@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. --_----------=_1576147575115840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: markd Date: Thu Dec 12 10:46:15 UTC 2019 Modified Files: pkgsrc/x11/py-Tk: Makefile Log Message: py-Tk: python38 needs Modules/clinic available to build To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 pkgsrc/x11/py-Tk/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576147575115840 Content-Disposition: inline Content-Length: 729 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/py-Tk/Makefile diff -u pkgsrc/x11/py-Tk/Makefile:1.66 pkgsrc/x11/py-Tk/Makefile:1.67 --- pkgsrc/x11/py-Tk/Makefile:1.66 Tue Apr 3 18:22:47 2018 +++ pkgsrc/x11/py-Tk/Makefile Thu Dec 12 10:46:15 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2018/04/03 18:22:47 adam Exp $ +# $NetBSD: Makefile,v 1.67 2019/12/12 10:46:15 markd Exp $ PKGNAME= ${PYPKGPREFIX}-Tk-${PY_DISTVERSION} PKGREVISION= 5 @@ -35,6 +35,9 @@ PY_SETUP_SUBST+= X11LIB=\'X11\' .if ${_PYTHON_VERSION} >= 27 EXTRACT_ELEMENTS+= ${PYSUBDIR}/Modules/tkinter.h .endif +.if ${_PYTHON_VERSION} >= 38 +EXTRACT_ELEMENTS+= ${PYSUBDIR}/Modules/clinic +.endif # ignore errors due to missing files (EXTRACT_ELEMENTS!) do-patch: --_----------=_1576147575115840--