Received: by mail.netbsd.org (Postfix, from userid 605) id 3953B84DC7; Wed, 29 Jan 2020 22:42:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B3C1784DC4 for ; Wed, 29 Jan 2020 22:42:38 +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 yP3gBteRePD6 for ; Wed, 29 Jan 2020 22:42:38 +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 186B884CF7 for ; Wed, 29 Jan 2020 22:42:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 077D5FBF4; Wed, 29 Jan 2020 22:42:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1580337758196950" MIME-Version: 1.0 Date: Wed, 29 Jan 2020 22:42:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-wheel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200129224238.077D5FBF4@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. --_----------=_1580337758196950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jan 29 22:42:37 UTC 2020 Modified Files: pkgsrc/devel/py-wheel: Makefile PLIST distinfo Log Message: py-wheel: updated to 0.34.1 0.34.1: - Fixed installation of ``wheel`` from sdist which was broken due to a chicken and egg problem with PEP 517 and setuptools_scm 0.34.0: - Dropped Python 3.4 support - Added automatic platform tag detection for macOS binary wheels - Added the ``--compression=`` option to the ``bdist_wheel`` command - Fixed PyPy tag generation to work with the updated semantics - Updated project packaging and testing configuration for :pep:`517` - Moved the contents of setup.py to setup.cfg - Fixed duplicate RECORD file when using ``wheel pack`` on Windows - Fixed bdist_wheel failing at cleanup on Windows with a read-only source tree - Fixed ``wheel pack`` not respecting the existing build tag in ``WHEEL`` - Switched the project to use the "src" layout - Switched to setuptools_scm_ for versioning To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/py-wheel/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-wheel/PLIST cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-wheel/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1580337758196950 Content-Disposition: inline Content-Length: 2866 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-wheel/Makefile diff -u pkgsrc/devel/py-wheel/Makefile:1.16 pkgsrc/devel/py-wheel/Makefile:1.17 --- pkgsrc/devel/py-wheel/Makefile:1.16 Wed Aug 21 12:46:05 2019 +++ pkgsrc/devel/py-wheel/Makefile Wed Jan 29 22:42:37 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2019/08/21 12:46:05 adam Exp $ +# $NetBSD: Makefile,v 1.17 2020/01/29 22:42:37 adam Exp $ -DISTNAME= wheel-0.33.6 +DISTNAME= wheel-0.34.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=w/wheel/} @@ -10,8 +10,13 @@ HOMEPAGE= https://github.com/pypa/wheel COMMENT= Built-package format for Python LICENSE= mit +TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.0.0:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov + USE_LANGUAGES= # none +PYSETUPTESTTARGET= pytest + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} wheel wheel-${PYVERSSUFFIX} || ${TRUE} Index: pkgsrc/devel/py-wheel/PLIST diff -u pkgsrc/devel/py-wheel/PLIST:1.5 pkgsrc/devel/py-wheel/PLIST:1.6 --- pkgsrc/devel/py-wheel/PLIST:1.5 Fri Feb 15 12:55:38 2019 +++ pkgsrc/devel/py-wheel/PLIST Wed Jan 29 22:42:37 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2019/02/15 12:55:38 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2020/01/29 22:42:37 adam Exp $ bin/wheel-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -28,6 +28,9 @@ ${PYSITELIB}/wheel/cli/pack.pyo ${PYSITELIB}/wheel/cli/unpack.py ${PYSITELIB}/wheel/cli/unpack.pyc ${PYSITELIB}/wheel/cli/unpack.pyo +${PYSITELIB}/wheel/macosx_libfile.py +${PYSITELIB}/wheel/macosx_libfile.pyc +${PYSITELIB}/wheel/macosx_libfile.pyo ${PYSITELIB}/wheel/metadata.py ${PYSITELIB}/wheel/metadata.pyc ${PYSITELIB}/wheel/metadata.pyo Index: pkgsrc/devel/py-wheel/distinfo diff -u pkgsrc/devel/py-wheel/distinfo:1.13 pkgsrc/devel/py-wheel/distinfo:1.14 --- pkgsrc/devel/py-wheel/distinfo:1.13 Wed Aug 21 12:46:05 2019 +++ pkgsrc/devel/py-wheel/distinfo Wed Jan 29 22:42:37 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2019/08/21 12:46:05 adam Exp $ +$NetBSD: distinfo,v 1.14 2020/01/29 22:42:37 adam Exp $ -SHA1 (wheel-0.33.6.tar.gz) = 0fe3d28322a7a2bf81cb42876ea96f0026a9e018 -RMD160 (wheel-0.33.6.tar.gz) = 9c84bfce4d05e61aed7898a212f37eb9d7351543 -SHA512 (wheel-0.33.6.tar.gz) = 887020c543ce7720c37f4d52f3f482365203ccb232d29c780d5593758c60997ac5383ea4724d4dc0b7237e2366f3d98a28773c18d15d6f7e898721cd6ac94cc6 -Size (wheel-0.33.6.tar.gz) = 48130 bytes +SHA1 (wheel-0.34.1.tar.gz) = 8a43c587601ac3d8d778145a52b30568cccb6f5a +RMD160 (wheel-0.34.1.tar.gz) = 12bd7947e61b502755395026d8fe0ec2ad3cf3f7 +SHA512 (wheel-0.34.1.tar.gz) = 99f4859bd2959239a1ec188922f13df8c8d8f5cf9d8d4efe3e241216808e704ec2b99c971963e74624bc44b97dbd4ce010a2778f35a49960b6c31b516ba0423f +Size (wheel-0.34.1.tar.gz) = 55747 bytes --_----------=_1580337758196950--