From owner-svn-ports-head@freebsd.org Sat Dec 10 03:22:29 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 808B3C6FF99; Sat, 10 Dec 2016 03:22:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 375E01633; Sat, 10 Dec 2016 03:22:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBA3MSCB021334; Sat, 10 Dec 2016 03:22:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBA3MSTe021330; Sat, 10 Dec 2016 03:22:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612100322.uBA3MSTe021330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 10 Dec 2016 03:22:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428267 - in head/devel: . py-pytest-tornado 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.23 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: Sat, 10 Dec 2016 03:22:29 -0000 Author: jbeich Date: Sat Dec 10 03:22:27 2016 New Revision: 428267 URL: https://svnweb.freebsd.org/changeset/ports/428267 Log: devel/py-pytest-tornado: add new port A py.test plugin providing fixtures and markers to simplify testing of asynchronous tornado applications. https://pypi.python.org/pypi/pytest-tornado Added: head/devel/py-pytest-tornado/ head/devel/py-pytest-tornado/Makefile (contents, props changed) head/devel/py-pytest-tornado/distinfo (contents, props changed) head/devel/py-pytest-tornado/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 10 02:21:41 2016 (r428266) +++ head/devel/Makefile Sat Dec 10 03:22:27 2016 (r428267) @@ -4481,6 +4481,7 @@ SUBDIR += py-pytest-localserver SUBDIR += py-pytest-runner SUBDIR += py-pytest-timeout + SUBDIR += py-pytest-tornado SUBDIR += py-pytest-xdist SUBDIR += py-python-bugzilla SUBDIR += py-python-distutils-extra Added: head/devel/py-pytest-tornado/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-tornado/Makefile Sat Dec 10 03:22:27 2016 (r428267) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pytest-tornado +PORTVERSION= 0.4.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Py.test plugin providing fixtures and markers for tornado + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ + ${PYTHON_PKGNAMEPREFIX}tornado>0:www/py-tornado + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-pytest-tornado/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-tornado/distinfo Sat Dec 10 03:22:27 2016 (r428267) @@ -0,0 +1,3 @@ +TIMESTAMP = 1456171114 +SHA256 (pytest-tornado-0.4.5.tar.gz) = 28b772d8dbea3d98da94d6697f739652a373b35123e0ed60af77557c6a2c392c +SIZE (pytest-tornado-0.4.5.tar.gz) = 4685 Added: head/devel/py-pytest-tornado/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-tornado/pkg-descr Sat Dec 10 03:22:27 2016 (r428267) @@ -0,0 +1,4 @@ +A py.test plugin providing fixtures and markers to simplify testing of +asynchronous tornado applications. + +WWW: https://pypi.python.org/pypi/pytest-tornado