From owner-svn-ports-head@freebsd.org Sat Dec 10 03:22:42 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 06C98C6FFDA; Sat, 10 Dec 2016 03:22:42 +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 BBD6A16DB; Sat, 10 Dec 2016 03:22:41 +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 uBA3MeZk021501; Sat, 10 Dec 2016 03:22:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBA3Meo4021496; Sat, 10 Dec 2016 03:22:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612100322.uBA3Meo4021496@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:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428268 - in head/devel: . py-pytest-asyncio 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:42 -0000 Author: jbeich Date: Sat Dec 10 03:22:40 2016 New Revision: 428268 URL: https://svnweb.freebsd.org/changeset/ports/428268 Log: devel/py-pytest-asyncio: add new port asyncio code is usually written in the form of coroutines, which makes it slightly more difficult to test using normal testing tools. pytest-asyncio provides useful fixtures and markers to make testing easier. https://pypi.python.org/pypi/pytest-asyncio Added: head/devel/py-pytest-asyncio/ head/devel/py-pytest-asyncio/Makefile (contents, props changed) head/devel/py-pytest-asyncio/distinfo (contents, props changed) head/devel/py-pytest-asyncio/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 10 03:22:27 2016 (r428267) +++ head/devel/Makefile Sat Dec 10 03:22:40 2016 (r428268) @@ -4475,6 +4475,7 @@ SUBDIR += py-pyte SUBDIR += py-pytemplate SUBDIR += py-pytest + SUBDIR += py-pytest-asyncio SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-django Added: head/devel/py-pytest-asyncio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-asyncio/Makefile Sat Dec 10 03:22:40 2016 (r428268) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= pytest-asyncio +PORTVERSION= 0.5.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Py.test plugin providing fixtures and markers for asyncio + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.0.2:devel/py-pytest + +USES= python:3.3+ +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}asyncio>0:devel/py-asyncio +.endif + +.include Added: head/devel/py-pytest-asyncio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-asyncio/distinfo Sat Dec 10 03:22:40 2016 (r428268) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473200514 +SHA256 (pytest-asyncio-0.5.0.tar.gz) = ce457148d9a8337679b19742d37f77c5e4eb53a48b626e3ce19464fa1cc25d0f +SIZE (pytest-asyncio-0.5.0.tar.gz) = 5781 Added: head/devel/py-pytest-asyncio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-asyncio/pkg-descr Sat Dec 10 03:22:40 2016 (r428268) @@ -0,0 +1,5 @@ +asyncio code is usually written in the form of coroutines, which makes it +slightly more difficult to test using normal testing tools. pytest-asyncio +provides useful fixtures and markers to make testing easier. + +WWW: https://pypi.python.org/pypi/pytest-asyncio