Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jun 2018 23:30:25 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r473462 - in head/devel: . py-asynctest
Message-ID:  <201806272330.w5RNUPgk072471@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806272330.w5RNUPgk072471>