Received: by mail.netbsd.org (Postfix, from userid 605) id 4EDF284DA7; Tue, 29 Oct 2019 15:08:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CBC7B84D93 for ; Tue, 29 Oct 2019 15:08:32 +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 H5e9Lrw1IBKy for ; Tue, 29 Oct 2019 15:08:32 +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 0BE6284D7C for ; Tue, 29 Oct 2019 15:08:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 03948FA8E; Tue, 29 Oct 2019 15:08:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157236171170950" MIME-Version: 1.0 Date: Tue, 29 Oct 2019 15:08:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-virtualenv To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191029150832.03948FA8E@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. --_----------=_157236171170950 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Oct 29 15:08:31 UTC 2019 Modified Files: pkgsrc/devel/py-test-virtualenv: Makefile distinfo Removed Files: pkgsrc/devel/py-test-virtualenv/patches: patch-setup.py Log Message: py-test-virtualenv: updated to 1.7.0 1.7.0 * All: Support pytest >= 4.0.0 * All: Support Python 3.7 * pytest-server-fixtures: if host not defined on your machine, default to localhost * pytest-server-fixture: Pin to rethinkdb < 2.4.0 due to upstream API changes * pytest-verbose-parametrize: Add support for revamped marker infrastructure * pytest-verbose-parametrize: Fix integration tests to support pytest >= 4.1.0 * pytest-virtualenv: Add virtualenv as install requirement. * pytest-webdriver: Fix RemovedInPytest4Warning using getfixturevalue * circleci: Fix checks by skipping coverall submission for developer without push access * wheels: Generate universal wheels installable with both python 2.x and 3.x * dist: Remove support for building and distributing *.egg files * VagrantFile: Install python 3.7 and initialize python 3.7 by default * Fix DeprecationWarning warnings using "logger.warning()" function 1.6.2: * pytest-server-fixtures: suppress stacktrace if kill() is called * pytest-server-fixtures: fix random port logic in TestServerV2 1.6.1: * pytest-server-fixtures: fix exception when attempting to access hostname while server is not started 1.6.0: * pytest-server-fixtures: added previously removed TestServerV2.kill() function * pytest-profiling: pin more-itertools==5.0.0 in integration tests, as that's a PY3 only release 1.5.1: * pytest-verbose-parametrize: fixed unicode parameters when using `@pytest.mark.parametrize` 1.5.0: * pytest-server-fixtures: made postgres fixtures and its tests optional, like all other fixtures * pytest-server-fixtures: reverted a fix for pymongo deprecation warning, as this will break compatibility with pymongo 3.6.0 * pytest-server-fixtures: dropped RHEL5 support in httpd 1.4.1: * pytest-server-fixtures: server fixture binary path specified in ENV now only affect server class 'thread' To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-test-virtualenv/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-test-virtualenv/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/devel/py-test-virtualenv/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157236171170950 Content-Disposition: inline Content-Length: 2404 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-virtualenv/Makefile diff -u pkgsrc/devel/py-test-virtualenv/Makefile:1.3 pkgsrc/devel/py-test-virtualenv/Makefile:1.4 --- pkgsrc/devel/py-test-virtualenv/Makefile:1.3 Mon Jan 28 08:40:07 2019 +++ pkgsrc/devel/py-test-virtualenv/Makefile Tue Oct 29 15:08:31 2019 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2019/01/28 08:40:07 adam Exp $ +# $NetBSD: Makefile,v 1.4 2019/10/29 15:08:31 adam Exp $ -DISTNAME= pytest-virtualenv-1.4.0 -PKGREVISION= 1 +DISTNAME= pytest-virtualenv-1.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-virtualenv/} @@ -14,6 +13,7 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test DEPENDS+= ${PYPKGPREFIX}-test-fixture-config-[0-9]*:../../devel/py-test-fixture-config DEPENDS+= ${PYPKGPREFIX}-test-shutil-[0-9]*:../../devel/py-test-shutil +DEPENDS+= ${PYPKGPREFIX}-virtualenv-[0-9]*:../../devel/py-virtualenv TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock USE_LANGUAGES= # none Index: pkgsrc/devel/py-test-virtualenv/distinfo diff -u pkgsrc/devel/py-test-virtualenv/distinfo:1.4 pkgsrc/devel/py-test-virtualenv/distinfo:1.5 --- pkgsrc/devel/py-test-virtualenv/distinfo:1.4 Mon Jan 28 08:40:07 2019 +++ pkgsrc/devel/py-test-virtualenv/distinfo Tue Oct 29 15:08:31 2019 @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.4 2019/01/28 08:40:07 adam Exp $ +$NetBSD: distinfo,v 1.5 2019/10/29 15:08:31 adam Exp $ -SHA1 (pytest-virtualenv-1.4.0.tar.gz) = 612a9603c550f616821615f4631be50a16b83bac -RMD160 (pytest-virtualenv-1.4.0.tar.gz) = d0237ce89fde530460cacfb300e79b427d9855f6 -SHA512 (pytest-virtualenv-1.4.0.tar.gz) = 4320158608f51fb63b178acf6fccd5963dfb94a20cc5797c7dc90aad229c9ec5ac9d4c5f6331bbf5dbad208075c7a6806231542aed7efd7528e2009fd66ec70b -Size (pytest-virtualenv-1.4.0.tar.gz) = 13664 bytes +SHA1 (pytest-virtualenv-1.7.0.tar.gz) = d67d9dd7715bd0b6de64cc9f3a609658b2bfb126 +RMD160 (pytest-virtualenv-1.7.0.tar.gz) = cb64069d33b247d2a7c67abc5a14dc1f6e4f1b71 +SHA512 (pytest-virtualenv-1.7.0.tar.gz) = 0463ebf44ae18ee50a60e421a22aaaf0e34f827ec8f21c8f0dc79cbdc253748f9d1e5b33e4f418b52f0d8fd45990e162bb6410686ebe9fdc02650c286901d474 +Size (pytest-virtualenv-1.7.0.tar.gz) = 15767 bytes SHA1 (patch-common_setup.py) = 5cb1d52a64e86043fc26e7e898b6411b7ad69b41 -SHA1 (patch-setup.py) = 8d4c4a343a82d7a0ae8faa2a7eba74f0ba107bfe --_----------=_157236171170950--