Received: by mail.netbsd.org (Postfix, from userid 605) id 850E684D40; Fri, 17 Aug 2018 07:16:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7A95A84D3C for ; Fri, 17 Aug 2018 07:16:36 +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 SV2tJlw9QQGJ for ; Fri, 17 Aug 2018 07:16:35 +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 A44FB84CD0 for ; Fri, 17 Aug 2018 07:16:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 92AC6FBEC; Fri, 17 Aug 2018 07:16:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153449019549730" MIME-Version: 1.0 Date: Fri, 17 Aug 2018 07:16:35 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-tox To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180817071635.92AC6FBEC@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. --_----------=_153449019549730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Aug 17 07:16:35 UTC 2018 Modified Files: pkgsrc/devel/py-tox: Makefile PLIST distinfo Log Message: py-tox: updated to 3.2.1 3.2.1: Bugfixes - --parallel--safe-build no longer cleans up its folders (distdir, distshare, log). 3.2.0: Features - Switch pip invocations to use the module -m pip instead of direct invocation. This could help avoid some of the shebang limitations. - Ability to specify package requirements for the tox run via the tox.ini (tox section under key requires - PEP-508 style): can be used to specify both plugin requirements or build dependencies. - Allow to run multiple tox instances in parallel by providing the --parallel--safe-build flag. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-tox/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-tox/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-tox/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153449019549730 Content-Disposition: inline Content-Length: 2632 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-tox/Makefile diff -u pkgsrc/devel/py-tox/Makefile:1.8 pkgsrc/devel/py-tox/Makefile:1.9 --- pkgsrc/devel/py-tox/Makefile:1.8 Thu Jul 5 10:57:20 2018 +++ pkgsrc/devel/py-tox/Makefile Fri Aug 17 07:16:35 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2018/07/05 10:57:20 adam Exp $ +# $NetBSD: Makefile,v 1.9 2018/08/17 07:16:35 adam Exp $ -DISTNAME= tox-3.0.0 +DISTNAME= tox-3.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tox/} Index: pkgsrc/devel/py-tox/PLIST diff -u pkgsrc/devel/py-tox/PLIST:1.2 pkgsrc/devel/py-tox/PLIST:1.3 --- pkgsrc/devel/py-tox/PLIST:1.2 Wed Oct 4 12:43:55 2017 +++ pkgsrc/devel/py-tox/PLIST Fri Aug 17 07:16:35 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2017/10/04 12:43:55 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2018/08/17 07:16:35 adam Exp $ bin/tox${PYVERSSUFFIX} bin/tox-quickstart${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO @@ -19,12 +19,15 @@ ${PYSITELIB}/tox/_pytestplugin.pyo ${PYSITELIB}/tox/_quickstart.py ${PYSITELIB}/tox/_quickstart.pyc ${PYSITELIB}/tox/_quickstart.pyo -${PYSITELIB}/tox/_verlib.py -${PYSITELIB}/tox/_verlib.pyc -${PYSITELIB}/tox/_verlib.pyo ${PYSITELIB}/tox/config.py ${PYSITELIB}/tox/config.pyc ${PYSITELIB}/tox/config.pyo +${PYSITELIB}/tox/constants.py +${PYSITELIB}/tox/constants.pyc +${PYSITELIB}/tox/constants.pyo +${PYSITELIB}/tox/exception.py +${PYSITELIB}/tox/exception.pyc +${PYSITELIB}/tox/exception.pyo ${PYSITELIB}/tox/hookspecs.py ${PYSITELIB}/tox/hookspecs.pyc ${PYSITELIB}/tox/hookspecs.pyo Index: pkgsrc/devel/py-tox/distinfo diff -u pkgsrc/devel/py-tox/distinfo:1.6 pkgsrc/devel/py-tox/distinfo:1.7 --- pkgsrc/devel/py-tox/distinfo:1.6 Thu Jul 5 10:57:20 2018 +++ pkgsrc/devel/py-tox/distinfo Fri Aug 17 07:16:35 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2018/07/05 10:57:20 adam Exp $ +$NetBSD: distinfo,v 1.7 2018/08/17 07:16:35 adam Exp $ -SHA1 (tox-3.0.0.tar.gz) = bd467ceee87cc53d614b747ee6a11cb9fe08ee91 -RMD160 (tox-3.0.0.tar.gz) = b9eda9e6d0ba59b9b5f9ca83ee6e94c4e67bba0b -SHA512 (tox-3.0.0.tar.gz) = 3bce42561a032b9d1bcc6086093ab79e2ba84ca55b4a6b646485ed3ec4a5b7349d8fc4e47758d2dd7998fc943824a99a251447e13b9ccc396b9d2d87f367f6cd -Size (tox-3.0.0.tar.gz) = 226055 bytes +SHA1 (tox-3.2.1.tar.gz) = dae6c703fbd4860bc1906785d38096d55c219bd3 +RMD160 (tox-3.2.1.tar.gz) = e1f1b9ad6c8b39da6f45022a3e826f8689633314 +SHA512 (tox-3.2.1.tar.gz) = 79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f +Size (tox-3.2.1.tar.gz) = 268827 bytes --_----------=_153449019549730--