From owner-svn-ports-head@freebsd.org Wed Jun 27 23:30:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E241101B720; Wed, 27 Jun 2018 23:30:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 028FD79000; Wed, 27 Jun 2018 23:30:26 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7B6C1B98; Wed, 27 Jun 2018 23:30:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5RNUPUk072475; Wed, 27 Jun 2018 23:30:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5RNUPgk072471; Wed, 27 Jun 2018 23:30:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806272330.w5RNUPgk072471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 27 Jun 2018 23:30:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473462 - in head/devel: . py-asynctest X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-asynctest X-SVN-Commit-Revision: 473462 X-SVN-Commit-Repository: ports 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.26 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, 27 Jun 2018 23:30:26 -0000 Author: sunpoet Date: Wed Jun 27 23:30:24 2018 New Revision: 473462 URL: https://svnweb.freebsd.org/changeset/ports/473462 Log: Add py-asynctest 0.12.2 synctest is built on top of the standard unittest module and cuts down boilerplate code when testing libraries for asyncio. WWW: https://github.com/Martiusweb/asynctest Added: head/devel/py-asynctest/ head/devel/py-asynctest/Makefile (contents, props changed) head/devel/py-asynctest/distinfo (contents, props changed) head/devel/py-asynctest/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 27 22:18:32 2018 (r473461) +++ head/devel/Makefile Wed Jun 27 23:30:24 2018 (r473462) @@ -4340,6 +4340,7 @@ SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asyncio + SUBDIR += py-asynctest SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-atpublic Added: head/devel/py-asynctest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-asynctest/Makefile Wed Jun 27 23:30:24 2018 (r473462) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= asynctest +PORTVERSION= 0.12.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Enhance unittest for testing asyncio libraries + +LICENSE= APACHE20 + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:3.4+ + +.include Added: head/devel/py-asynctest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-asynctest/distinfo Wed Jun 27 23:30:24 2018 (r473462) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530081096 +SHA256 (asynctest-0.12.2.tar.gz) = 77520850ae21620ec31738f4a7b467acaa44de6d3752d8ac7a9f4dcf55d77853 +SIZE (asynctest-0.12.2.tar.gz) = 42094 Added: head/devel/py-asynctest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-asynctest/pkg-descr Wed Jun 27 23:30:24 2018 (r473462) @@ -0,0 +1,4 @@ +synctest is built on top of the standard unittest module and cuts down +boilerplate code when testing libraries for asyncio. + +WWW: https://github.com/Martiusweb/asynctest