From owner-svn-ports-head@freebsd.org Sun Apr 22 08:47:54 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 3E2CCFAB0F6; Sun, 22 Apr 2018 08:47:54 +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 401456A3B1; Sun, 22 Apr 2018 08:47:53 +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 1EFD7138C3; Sun, 22 Apr 2018 08:47:53 +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 w3M8lqo9022639; Sun, 22 Apr 2018 08:47:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3M8lq5S022636; Sun, 22 Apr 2018 08:47:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804220847.w3M8lq5S022636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 22 Apr 2018 08:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467933 - head/devel/py-hypothesis X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-hypothesis X-SVN-Commit-Revision: 467933 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.25 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: Sun, 22 Apr 2018 08:47:54 -0000 Author: sunpoet Date: Sun Apr 22 08:47:52 2018 New Revision: 467933 URL: https://svnweb.freebsd.org/changeset/ports/467933 Log: Update to 3.56.1 - Allow concurrent installation (USE_PYTHON=concurrent) - Update pkg-descr - Update WWW Changes: https://github.com/HypothesisWorks/hypothesis/blob/master/hypothesis-python/docs/changes.rst Modified: head/devel/py-hypothesis/Makefile head/devel/py-hypothesis/distinfo head/devel/py-hypothesis/pkg-descr Modified: head/devel/py-hypothesis/Makefile ============================================================================== --- head/devel/py-hypothesis/Makefile Sun Apr 22 08:47:47 2018 (r467932) +++ head/devel/py-hypothesis/Makefile Sun Apr 22 08:47:52 2018 (r467933) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hypothesis -PORTVERSION= 1.18.1 +PORTVERSION= 3.56.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,10 +12,13 @@ COMMENT= Library for property based testing LICENSE= MPL20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=16.0.0:devel/py-attrs@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${FLAVOR} \ + ${PY_ENUM34} \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/devel/py-hypothesis/distinfo ============================================================================== --- head/devel/py-hypothesis/distinfo Sun Apr 22 08:47:47 2018 (r467932) +++ head/devel/py-hypothesis/distinfo Sun Apr 22 08:47:52 2018 (r467933) @@ -1,2 +1,3 @@ -SHA256 (hypothesis-1.18.1.tar.gz) = 839d382393684e9544cfc855b6a19e1121391bd720a7ace5a6865408c0db0768 -SIZE (hypothesis-1.18.1.tar.gz) = 84868 +TIMESTAMP = 1524356529 +SHA256 (hypothesis-3.56.1.tar.gz) = e62fab2ebaa09d789cbad47f58016aa678854e4f51cc566d5f9229e71ee74e27 +SIZE (hypothesis-3.56.1.tar.gz) = 153545 Modified: head/devel/py-hypothesis/pkg-descr ============================================================================== --- head/devel/py-hypothesis/pkg-descr Sun Apr 22 08:47:47 2018 (r467932) +++ head/devel/py-hypothesis/pkg-descr Sun Apr 22 08:47:52 2018 (r467933) @@ -1,6 +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. +Hypothesis is an advanced testing library for Python. It lets you write tests +which are parametrized by a source of examples, and then generates simple and +comprehensible examples that make your tests fail. This lets you find more bugs +in your code with less work. -WWW: https://github.com/DRMacIver/hypothesis +WWW: https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python