Received: by mail.netbsd.org (Postfix, from userid 605) id 5A1D084DB0; Mon, 16 Oct 2017 17:20:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D70EE84D46 for ; Mon, 16 Oct 2017 17:20:38 +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 i-agJtx9SOz1 for ; Mon, 16 Oct 2017 17:20: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 4C50B84CDC for ; Mon, 16 Oct 2017 17:20:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A71EFBC7; Mon, 16 Oct 2017 17:20:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150817443823120" MIME-Version: 1.0 Date: Mon, 16 Oct 2017 17:20:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-setuptools To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20171016172038.4A71EFBC7@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. --_----------=_150817443823120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 16 17:20:38 UTC 2017 Modified Files: pkgsrc/devel/py-setuptools: Makefile PLIST distinfo Log Message: py-setuptools: update to 36.6.0 v36.6.0: * Added setuptools.build_meta module, an implementation of PEP-517 for Setuptools-defined packages. * Added dist_info command for producing dist_info metadata. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.140 pkgsrc/devel/py-setuptools/Makefile cvs rdiff -u -r1.40 -r1.41 pkgsrc/devel/py-setuptools/PLIST cvs rdiff -u -r1.117 -r1.118 pkgsrc/devel/py-setuptools/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150817443823120 Content-Disposition: inline Content-Length: 3592 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-setuptools/Makefile diff -u pkgsrc/devel/py-setuptools/Makefile:1.139 pkgsrc/devel/py-setuptools/Makefile:1.140 --- pkgsrc/devel/py-setuptools/Makefile:1.139 Sun Sep 17 09:55:59 2017 +++ pkgsrc/devel/py-setuptools/Makefile Mon Oct 16 17:20:38 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.139 2017/09/17 09:55:59 adam Exp $ +# $NetBSD: Makefile,v 1.140 2017/10/16 17:20:38 adam Exp $ -DISTNAME= setuptools-36.5.0 +DISTNAME= setuptools-36.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=s/setuptools/} @@ -23,11 +23,6 @@ REPLACE_PYTHON+= setuptools/command/easy PYSETUPTESTTARGET= pytest -# upstream often forgets deleting files, and packages on Windows, -# so permissions are usually wrong -post-install: - ${RM} -f ${DESTDIR}${PREFIX}/${PYSITELIB}/${EGG_NAME}-py${PYVERSSUFFIX}.egg-info/*.orig - .include "../../lang/python/application.mk" .include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-setuptools/PLIST diff -u pkgsrc/devel/py-setuptools/PLIST:1.40 pkgsrc/devel/py-setuptools/PLIST:1.41 --- pkgsrc/devel/py-setuptools/PLIST:1.40 Tue Jul 18 13:44:36 2017 +++ pkgsrc/devel/py-setuptools/PLIST Mon Oct 16 17:20:38 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.40 2017/07/18 13:44:36 adam Exp $ +@comment $NetBSD: PLIST,v 1.41 2017/10/16 17:20:38 adam Exp $ bin/easy_install-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_FILE}/PKG-INFO ${PYSITELIB}/${EGG_FILE}/SOURCES.txt @@ -64,6 +64,9 @@ ${PYSITELIB}/setuptools/__init__.pyo ${PYSITELIB}/setuptools/archive_util.py ${PYSITELIB}/setuptools/archive_util.pyc ${PYSITELIB}/setuptools/archive_util.pyo +${PYSITELIB}/setuptools/build_meta.py +${PYSITELIB}/setuptools/build_meta.pyc +${PYSITELIB}/setuptools/build_meta.pyo ${PYSITELIB}/setuptools/cli-32.exe ${PYSITELIB}/setuptools/cli-64.exe ${PYSITELIB}/setuptools/cli.exe @@ -94,6 +97,9 @@ ${PYSITELIB}/setuptools/command/build_py ${PYSITELIB}/setuptools/command/develop.py ${PYSITELIB}/setuptools/command/develop.pyc ${PYSITELIB}/setuptools/command/develop.pyo +${PYSITELIB}/setuptools/command/dist_info.py +${PYSITELIB}/setuptools/command/dist_info.pyc +${PYSITELIB}/setuptools/command/dist_info.pyo ${PYSITELIB}/setuptools/command/easy_install.py ${PYSITELIB}/setuptools/command/easy_install.pyc ${PYSITELIB}/setuptools/command/easy_install.pyo Index: pkgsrc/devel/py-setuptools/distinfo diff -u pkgsrc/devel/py-setuptools/distinfo:1.117 pkgsrc/devel/py-setuptools/distinfo:1.118 --- pkgsrc/devel/py-setuptools/distinfo:1.117 Sun Sep 17 09:55:59 2017 +++ pkgsrc/devel/py-setuptools/distinfo Mon Oct 16 17:20:38 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.117 2017/09/17 09:55:59 adam Exp $ +$NetBSD: distinfo,v 1.118 2017/10/16 17:20:38 adam Exp $ -SHA1 (setuptools-36.5.0.zip) = 4edca327d0666d6956d05cef8fd6dfcce6e701db -RMD160 (setuptools-36.5.0.zip) = 3fec867df437f758b622c4197abdb29fb8609226 -SHA512 (setuptools-36.5.0.zip) = e61c2f9ee640bf5dd8ab7c7a7c29667d91aa2498a7b027e387493ad7bcc9b56927e6fa63cdb4e083333c57eb355a670ba3df861ed5f8447b216fef0bc77c8b43 -Size (setuptools-36.5.0.zip) = 721505 bytes +SHA1 (setuptools-36.6.0.zip) = c1be97719395ae61f9faa0734b62b3326ebad0fd +RMD160 (setuptools-36.6.0.zip) = 1e013168d8049f0ab0ddb6dde87bfddb9ca82bc2 +SHA512 (setuptools-36.6.0.zip) = b1b7fbff45db72e24ffb0aef41509a8f49c3911f20e6dfa7335aace22d0b2c533615edd1626c6b58602960644d1a3ad7b2e6899efeec4138aa58a187d063c319 +Size (setuptools-36.6.0.zip) = 725173 bytes SHA1 (patch-setup.py) = dd94c9a4e15b8b0dc428515f73369ed168b8c7b2 --_----------=_150817443823120--