From owner-svn-ports-all@freebsd.org Fri Apr 1 03:21:57 2016 Return-Path: Delivered-To: svn-ports-all@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 C999CAE4963; Fri, 1 Apr 2016 03:21:57 +0000 (UTC) (envelope-from tj@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 7E8AB1CF9; Fri, 1 Apr 2016 03:21:57 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u313Lupk061632; Fri, 1 Apr 2016 03:21:56 GMT (envelope-from tj@FreeBSD.org) Received: (from tj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u313Lu0m061628; Fri, 1 Apr 2016 03:21:56 GMT (envelope-from tj@FreeBSD.org) Message-Id: <201604010321.u313Lu0m061628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tj set sender to tj@FreeBSD.org using -f From: Tom Judge Date: Fri, 1 Apr 2016 03:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412311 - in head/devel: . py-exam X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Apr 2016 03:21:57 -0000 Author: tj Date: Fri Apr 1 03:21:56 2016 New Revision: 412311 URL: https://svnweb.freebsd.org/changeset/ports/412311 Log: New port devel/py-exam 0.10.5 Exam is a Python toolkit for writing better tests. It aims to remove a lot of the boiler plate testing code one often writes, while still following Python conventions and adhering to the unit testing interface. WWW: https://github.com/fluxx/exam Added: head/devel/py-exam/ head/devel/py-exam/Makefile (contents, props changed) head/devel/py-exam/distinfo (contents, props changed) head/devel/py-exam/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 1 03:15:27 2016 (r412310) +++ head/devel/Makefile Fri Apr 1 03:21:56 2016 (r412311) @@ -4056,6 +4056,7 @@ SUBDIR += py-epsilon SUBDIR += py-evdev SUBDIR += py-event + SUBDIR += py-exam SUBDIR += py-extras SUBDIR += py-extremes SUBDIR += py-ezpyinline Added: head/devel/py-exam/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-exam/Makefile Fri Apr 1 03:21:56 2016 (r412311) @@ -0,0 +1,16 @@ +# Created by: Tom Judge +# $FreeBSD$ + +PORTNAME= exam +PORTVERSION= 0.10.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tj@FreeBSD.org +COMMENT= Exam is a Python toolkit for writing better tests + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-exam/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-exam/distinfo Fri Apr 1 03:21:56 2016 (r412311) @@ -0,0 +1,2 @@ +SHA256 (exam-0.10.5.tar.gz) = 8cf1212884aef9d65bcb69875c755c9228cd033d7fda71c26636c7c9cded8b00 +SIZE (exam-0.10.5.tar.gz) = 10977 Added: head/devel/py-exam/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-exam/pkg-descr Fri Apr 1 03:21:56 2016 (r412311) @@ -0,0 +1,5 @@ +Exam is a Python toolkit for writing better tests. It aims to remove a lot of +the boiler plate testing code one often writes, while still following Python +conventions and adhering to the unit testing interface. + +WWW: https://github.com/fluxx/exam