Received: by mail.netbsd.org (Postfix, from userid 605) id BC1F984E59; Fri, 29 Jul 2022 20:37:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 00E3A84D84 for ; Fri, 29 Jul 2022 20:37:49 +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 RGlkGUt51Plp for ; Fri, 29 Jul 2022 20:37:48 +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 5118984C71 for ; Fri, 29 Jul 2022 20:37:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A62EFB1A; Fri, 29 Jul 2022 20:37:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1659127068157630" MIME-Version: 1.0 Date: Fri, 29 Jul 2022 20:37:48 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/python37 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220729203748.4A62EFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1659127068157630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Jul 29 20:37:48 UTC 2022 Modified Files: pkgsrc/lang/python37: Makefile Log Message: python37: Skip __pycache__ files seen in macOS build too. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/lang/python37/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1659127068157630 Content-Disposition: inline Content-Length: 791 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python37/Makefile diff -u pkgsrc/lang/python37/Makefile:1.35 pkgsrc/lang/python37/Makefile:1.36 --- pkgsrc/lang/python37/Makefile:1.35 Mon Jul 25 10:04:35 2022 +++ pkgsrc/lang/python37/Makefile Fri Jul 29 20:37:48 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2022/07/25 10:04:35 jperkin Exp $ +# $NetBSD: Makefile,v 1.36 2022/07/29 20:37:48 jperkin Exp $ .include "dist.mk" @@ -193,6 +193,7 @@ INSTALLATION_DIRS+= lib/python${PY_VER_S # PKG_CONFIG_LIBDIR references to BUILDLINK_DIR CHECK_WRKREF_SKIP+= lib/python${PY_VER_SUFFIX}/_sysconfigdata* +CHECK_WRKREF_SKIP+= lib/python${PY_VER_SUFFIX}/__pycache__/_sysconfigdata* CHECK_WRKREF_SKIP+= lib/python${PY_VER_SUFFIX}/config-${PY_VER_SUFFIX}/Makefile pre-install: setuptools-preinstall --_----------=_1659127068157630--