From owner-svn-ports-head@freebsd.org Sun Feb 25 05:31:35 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 7F73FF074E8; Sun, 25 Feb 2018 05:31:35 +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 33FBB6AD2B; Sun, 25 Feb 2018 05:31:35 +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 2EF8572D; Sun, 25 Feb 2018 05:31:35 +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 w1P5VZfC060617; Sun, 25 Feb 2018 05:31:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5VYpA060613; Sun, 25 Feb 2018 05:31:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250531.w1P5VYpA060613@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, 25 Feb 2018 05:31:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462900 - in head/devel: . py-fixtures X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-fixtures X-SVN-Commit-Revision: 462900 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, 25 Feb 2018 05:31:35 -0000 Author: sunpoet Date: Sun Feb 25 05:31:34 2018 New Revision: 462900 URL: https://svnweb.freebsd.org/changeset/ports/462900 Log: Add py-fixtures 3.0.0 Fixtures defines a Python contract for reusable state / support logic, primarily for unit testing. Helper and adaption logic is included to make it easy to write your own fixtures using the fixtures contract. Glue code is provided that makes using fixtures that meet the Fixtures contract in unittest compatible test cases easy and straight forward. WWW: https://pypi.python.org/pypi/fixtures WWW: https://github.com/testing-cabal/fixtures Added: head/devel/py-fixtures/ head/devel/py-fixtures/Makefile (contents, props changed) head/devel/py-fixtures/distinfo (contents, props changed) head/devel/py-fixtures/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 25 05:19:55 2018 (r462899) +++ head/devel/Makefile Sun Feb 25 05:31:34 2018 (r462900) @@ -4437,6 +4437,7 @@ SUBDIR += py-five.formlib SUBDIR += py-five.globalrequest SUBDIR += py-five.localsitemanager + SUBDIR += py-fixtures SUBDIR += py-flake8 SUBDIR += py-flake8-builtins SUBDIR += py-flake8-docstrings Added: head/devel/py-fixtures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fixtures/Makefile Sun Feb 25 05:31:34 2018 (r462900) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= fixtures +PORTVERSION= 3.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fixtures, reusable state for writing clean tests and more + +LICENSE= APACHE20 BSD3CLAUSE +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0 +LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/BSD + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0.11:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testtools>=0.9.22:devel/py-testtools@${FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/devel/py-fixtures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fixtures/distinfo Sun Feb 25 05:31:34 2018 (r462900) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519516720 +SHA256 (fixtures-3.0.0.tar.gz) = fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef +SIZE (fixtures-3.0.0.tar.gz) = 56629 Added: head/devel/py-fixtures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fixtures/pkg-descr Sun Feb 25 05:31:34 2018 (r462900) @@ -0,0 +1,8 @@ +Fixtures defines a Python contract for reusable state / support logic, primarily +for unit testing. Helper and adaption logic is included to make it easy to write +your own fixtures using the fixtures contract. Glue code is provided that makes +using fixtures that meet the Fixtures contract in unittest compatible test cases +easy and straight forward. + +WWW: https://pypi.python.org/pypi/fixtures +WWW: https://github.com/testing-cabal/fixtures