From owner-svn-ports-all@freebsd.org Fri Jan 8 04:46:39 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 57A48A662EC; Fri, 8 Jan 2016 04:46:39 +0000 (UTC) (envelope-from koobs@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 18A8A1650; Fri, 8 Jan 2016 04:46:39 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u084kc0C089816; Fri, 8 Jan 2016 04:46:38 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u084kbO4089812; Fri, 8 Jan 2016 04:46:37 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201601080446.u084kbO4089812@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 8 Jan 2016 04:46:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405520 - in head/devel: . py-hypothesis 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.20 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, 08 Jan 2016 04:46:39 -0000 Author: koobs Date: Fri Jan 8 04:46:37 2016 New Revision: 405520 URL: https://svnweb.freebsd.org/changeset/ports/405520 Log: [NEW] devel/py-hypothesis: Library for property based testing Hypothesis is a library for testing your Python code against a much larger range of examples than you would ever want to write by hand. It's based on the Haskell library, Quickcheck, and is designed to integrate seamlessly into your existing Python unit testing work flow. WWW: https://github.com/DRMacIver/hypothesis PR: 205914 Submitted by: Brendan Molloy Added: head/devel/py-hypothesis/ head/devel/py-hypothesis/Makefile (contents, props changed) head/devel/py-hypothesis/distinfo (contents, props changed) head/devel/py-hypothesis/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jan 8 04:44:16 2016 (r405519) +++ head/devel/Makefile Fri Jan 8 04:46:37 2016 (r405520) @@ -4077,6 +4077,7 @@ SUBDIR += py-hgsubversion SUBDIR += py-hgtools SUBDIR += py-humanize + SUBIDR += py-hypothesis SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-icu Added: head/devel/py-hypothesis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hypothesis/Makefile Fri Jan 8 04:46:37 2016 (r405520) @@ -0,0 +1,25 @@ +# Created by: Brendan Molloy +# $FreeBSD$ + +PORTNAME= hypothesis +PORTVERSION= 1.18.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= brendan+freebsd@bbqsrc.net +COMMENT= Library for property based testing + +LICENSE= MPL + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) + +.include Added: head/devel/py-hypothesis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hypothesis/distinfo Fri Jan 8 04:46:37 2016 (r405520) @@ -0,0 +1,2 @@ +SHA256 (hypothesis-1.18.1.tar.gz) = 839d382393684e9544cfc855b6a19e1121391bd720a7ace5a6865408c0db0768 +SIZE (hypothesis-1.18.1.tar.gz) = 84868 Added: head/devel/py-hypothesis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hypothesis/pkg-descr Fri Jan 8 04:46:37 2016 (r405520) @@ -0,0 +1,6 @@ +Hypothesis is a library for testing your Python code against a much larger +range of examples than you would ever want to write by hand. It's based on the +Haskell library, Quickcheck, and is designed to integrate seamlessly into your +existing Python unit testing work flow. + +WWW: https://github.com/DRMacIver/hypothesis