From owner-svn-ports-head@FreeBSD.ORG Wed Feb 25 03:47:57 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 427EA99D; Wed, 25 Feb 2015 03:47:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E032B69; Wed, 25 Feb 2015 03:47:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1P3lusl028089; Wed, 25 Feb 2015 03:47:56 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1P3luft028086; Wed, 25 Feb 2015 03:47:56 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502250347.t1P3luft028086@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 25 Feb 2015 03:47:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379871 - head/devel/py-pytest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Feb 2015 03:47:57 -0000 Author: koobs Date: Wed Feb 25 03:47:55 2015 New Revision: 379871 URL: https://svnweb.freebsd.org/changeset/ports/379871 QAT: https://qat.redports.org/buildarchive/r379871/ Log: devel/py-pytest: Update to 2.6.4 - Update to 2.6.4 - Update COMMENT to reflect upstream description (setup.py) - Update RUN_DEPENDS and TEST_DEPENDS - Add TESTS option - Update pkg-descr for more detail on features Approved by: python (with hat) Modified: head/devel/py-pytest/Makefile head/devel/py-pytest/distinfo head/devel/py-pytest/pkg-descr Modified: head/devel/py-pytest/Makefile ============================================================================== --- head/devel/py-pytest/Makefile Wed Feb 25 01:53:35 2015 (r379870) +++ head/devel/py-pytest/Makefile Wed Feb 25 03:47:55 2015 (r379871) @@ -1,24 +1,30 @@ # $FreeBSD$ PORTNAME= pytest -PORTVERSION= 2.6.1 -PORTREVISION= 1 +PORTVERSION= 2.6.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= python@FreeBSD.org -COMMENT= Mature full-featured Python testing tool +COMMENT= Simple powerful testing with Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.4.22:${PORTSDIR}/devel/py-py -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py>=1.4.25:${PORTSDIR}/devel/py-py +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ + ${PYTHON_PKGNAMEPREFIX}pexpect>0:${PORTSDIR}/misc/py-pexpect USES= python USE_PYTHON= autoplist distutils +OPTIONS_DEFINE= TESTS + +TESTS_DESC= Install test suite requirements +TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} + regression-test: build @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/devel/py-pytest/distinfo ============================================================================== --- head/devel/py-pytest/distinfo Wed Feb 25 01:53:35 2015 (r379870) +++ head/devel/py-pytest/distinfo Wed Feb 25 03:47:55 2015 (r379871) @@ -1,2 +1,2 @@ -SHA256 (pytest-2.6.1.tar.gz) = 994dabcb3149659d259add2aa7d11bff4d35efb7cf4c8233fa9b0b62c1255c3c -SIZE (pytest-2.6.1.tar.gz) = 627761 +SHA256 (pytest-2.6.4.tar.gz) = 550883b98184cef6cbb980d4d90051330aeae41075092f98ef0215719af8ef33 +SIZE (pytest-2.6.4.tar.gz) = 512090 Modified: head/devel/py-pytest/pkg-descr ============================================================================== --- head/devel/py-pytest/pkg-descr Wed Feb 25 01:53:35 2015 (r379870) +++ head/devel/py-pytest/pkg-descr Wed Feb 25 03:47:55 2015 (r379871) @@ -1,3 +1,16 @@ -py.test is a simple and popular testing tool for Python. +The pytest testing tool makes it easy to write small tests, yet scales to +support complex functional testing. + +Features: + + * Auto-discovery of test modules and functions + * Detailed info on failing assert statements + * Modular fixtures for managing small or parametrized long-lived test + resources + * Multi-paradigm support: you can use pytest to run test suites based on + unittest (or trial), nose + * Single-source compatibility from Python2.6 all the way up to Python3.4, + PyPy-2.3, (jython-2.5 untested) + * Many external plugins WWW: http://pytest.org