Received: by mail.netbsd.org (Postfix, from userid 605) id 0769A84EAC; Mon, 13 Jun 2022 18:25:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3F42684EAB for ; Mon, 13 Jun 2022 18:25:29 +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 uAHxkR4uvLiP for ; Mon, 13 Jun 2022 18:25:28 +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 AFC8284D26 for ; Mon, 13 Jun 2022 18:25:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A1863FB1A; Mon, 13 Jun 2022 18:27:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16551448269140" MIME-Version: 1.0 Date: Mon, 13 Jun 2022 18:27:06 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-build To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220613182706.A1863FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16551448269140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jun 13 18:27:06 UTC 2022 Modified Files: pkgsrc/devel/py-build: Makefile distinfo Log Message: py-build: updated to 0.8.0 0.8.0 Accept os.PathLike[str] in addition to str for paths in public API Add schema validation for build-system table to check conformity with PEP 517 and PEP 518 Better support for Python 3.11 Improved error printouts Avoid importing packaging unless needed Breaking Changes Failure to create a virtual environment in the build.env module now raises build.FailedProcessError To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-build/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-build/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16551448269140 Content-Disposition: inline Content-Length: 1530 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-build/Makefile diff -u pkgsrc/devel/py-build/Makefile:1.5 pkgsrc/devel/py-build/Makefile:1.6 --- pkgsrc/devel/py-build/Makefile:1.5 Mon Apr 18 11:28:54 2022 +++ pkgsrc/devel/py-build/Makefile Mon Jun 13 18:27:06 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2022/04/18 11:28:54 adam Exp $ +# $NetBSD: Makefile,v 1.6 2022/06/13 18:27:06 adam Exp $ -DISTNAME= build-0.7.0 +DISTNAME= build-0.8.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 3 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=b/build/} Index: pkgsrc/devel/py-build/distinfo diff -u pkgsrc/devel/py-build/distinfo:1.1 pkgsrc/devel/py-build/distinfo:1.2 --- pkgsrc/devel/py-build/distinfo:1.1 Thu Nov 25 21:18:28 2021 +++ pkgsrc/devel/py-build/distinfo Mon Jun 13 18:27:06 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1 2021/11/25 21:18:28 wiz Exp $ +$NetBSD: distinfo,v 1.2 2022/06/13 18:27:06 adam Exp $ -BLAKE2s (build-0.7.0.tar.gz) = 52520e95bb4137c755e745c6c8e268254e0aea75fd52598bc4e3de0be3a54c4d -SHA512 (build-0.7.0.tar.gz) = feab38fac8f8a6edacbab1b472bd0363bb18fe211120165a675ef7c720abe62465b9b9d610167bdaff37daeae20512d8a3fb9ea1c23add6666f0f2db9cea4120 -Size (build-0.7.0.tar.gz) = 15854 bytes +BLAKE2s (build-0.8.0.tar.gz) = 14329e81567e79e110b9be8190afa6ee789212d35703b0852cf41af15e7b2837 +SHA512 (build-0.8.0.tar.gz) = 758b633141b5a7cd8eeaa1a5215ea659935b74197aaa6ce1ec0a4fd12d7dda41e0a5d1470811ae5a1507fed0b59aed649e5f2ac940ae76133217acb9313517a6 +Size (build-0.8.0.tar.gz) = 17067 bytes --_----------=_16551448269140--