Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id C8D5D1A9239 for ; Thu, 30 Dec 2021 15:16:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E993784E91; Thu, 30 Dec 2021 15:16:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C4A784E7A for ; Thu, 30 Dec 2021 15:16:15 +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 HVKZWdM8TSZ4 for ; Thu, 30 Dec 2021 15:16:14 +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 9CA5884D1C for ; Thu, 30 Dec 2021 15:16:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95122FAEC; Thu, 30 Dec 2021 15:16:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1640877374164610" MIME-Version: 1.0 Date: Thu, 30 Dec 2021 15:16:14 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/python37 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211230151614.95122FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1640877374164610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Dec 30 15:16:14 UTC 2021 Modified Files: pkgsrc/lang/python37: Makefile PLIST Log Message: python37: prepare for upcoming setuptools change Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/lang/python37/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/python37/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1640877374164610 Content-Disposition: inline Content-Length: 1989 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.27 pkgsrc/lang/python37/Makefile:1.28 --- pkgsrc/lang/python37/Makefile:1.27 Wed Dec 8 16:05:22 2021 +++ pkgsrc/lang/python37/Makefile Thu Dec 30 15:16:14 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2021/12/08 16:05:22 adam Exp $ +# $NetBSD: Makefile,v 1.28 2021/12/30 15:16:14 wiz Exp $ -PKGREVISION= 1 +PKGREVISION= 2 .include "dist.mk" PKGNAME= python37-${PY_DISTVERSION} @@ -172,11 +172,19 @@ post-configure: touch ${WRKSRC}/Include/opcode.h .if ${OPSYS} == "HPUX" -post-install: +post-install: hpux-postinstall +.PHONY: hpux-postinstall +hpux-postinstall: ${LN} -fs ${DESTDIR}${PREFIX}/lib/libpython3.7.sl \ ${DESTDIR}${PREFIX}/lib/libpython3.7.sl.1.0 .endif +post-install: setuptools-postinstall +.PHONY: setuptools-postinstall +setuptools-postinstall: + ${INSTALL_DATA} ${.CURDIR}/../../devel/py-setuptools/files/_distutils_system_mod \ + ${DESTDIR}${PREFIX}/lib/python${PY_VER_SUFFIX}/site-packages/_distutils_system_mod.py + # needed to make devel/py-readline pick up the correct readline implementation BUILDLINK_DEPMETHOD.readline= build Index: pkgsrc/lang/python37/PLIST diff -u pkgsrc/lang/python37/PLIST:1.12 pkgsrc/lang/python37/PLIST:1.13 --- pkgsrc/lang/python37/PLIST:1.12 Wed Aug 19 07:08:34 2020 +++ pkgsrc/lang/python37/PLIST Thu Dec 30 15:16:14 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2020/08/19 07:08:34 adam Exp $ +@comment $NetBSD: PLIST,v 1.13 2021/12/30 15:16:14 wiz Exp $ bin/2to3-${PY_VER_SUFFIX} bin/pydoc${PY_VER_SUFFIX} bin/python${PY_VER_SUFFIX} @@ -2465,6 +2465,7 @@ lib/python${PY_VER_SUFFIX}/signal.py lib/python${PY_VER_SUFFIX}/signal.pyc lib/python${PY_VER_SUFFIX}/signal.pyo lib/python${PY_VER_SUFFIX}/site-packages/README.txt +lib/python${PY_VER_SUFFIX}/site-packages/_distutils_system_mod.py lib/python${PY_VER_SUFFIX}/site.py lib/python${PY_VER_SUFFIX}/site.pyc lib/python${PY_VER_SUFFIX}/site.pyo --_----------=_1640877374164610--