From owner-svn-ports-head@freebsd.org Wed Feb 17 15:56:44 2016 Return-Path: Delivered-To: svn-ports-head@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 C0D5CAAAB11; Wed, 17 Feb 2016 15:56:44 +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 790A31E85; Wed, 17 Feb 2016 15:56:44 +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 u1HFuhGC075452; Wed, 17 Feb 2016 15:56:43 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1HFuhAL075447; Wed, 17 Feb 2016 15:56:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602171556.u1HFuhAL075447@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 17 Feb 2016 15:56:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409052 - in head/devel: . py-sure X-SVN-Group: ports-head 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.20 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: Wed, 17 Feb 2016 15:56:44 -0000 Author: koobs Date: Wed Feb 17 15:56:42 2016 New Revision: 409052 URL: https://svnweb.freebsd.org/changeset/ports/409052 Log: [NEW] devel/py-sure: Utility belt for automated testing in Python for Python A testing library for python with powerful and flexible assertions. Sure is heavily inspired by should.js WWW: https://github.com/gabrielfalcao/sure Added: head/devel/py-sure/ head/devel/py-sure/Makefile (contents, props changed) head/devel/py-sure/distinfo (contents, props changed) head/devel/py-sure/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 17 15:29:31 2016 (r409051) +++ head/devel/Makefile Wed Feb 17 15:56:42 2016 (r409052) @@ -4372,6 +4372,7 @@ SUBDIR += py-stsci.distutils SUBDIR += py-subversion SUBDIR += py-subvertpy + SUBDIR += py-sure SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables Added: head/devel/py-sure/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sure/Makefile Wed Feb 17 15:56:42 2016 (r409052) @@ -0,0 +1,27 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= sure +PORTVERSION= 1.2.24 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Utility belt for automated testing in Python for Python + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose + +USES= python:2.7 +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/devel/py-sure/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sure/distinfo Wed Feb 17 15:56:42 2016 (r409052) @@ -0,0 +1,2 @@ +SHA256 (sure-1.2.24.tar.gz) = 5c0456a0bfec40ffe57bf9f1f1d4f6cfd4b92848b8c97b5b4165afb933c0d2d3 +SIZE (sure-1.2.24.tar.gz) = 28089 Added: head/devel/py-sure/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-sure/pkg-descr Wed Feb 17 15:56:42 2016 (r409052) @@ -0,0 +1,5 @@ +A testing library for python with powerful and flexible assertions. + +Sure is heavily inspired by should.js + +WWW: https://github.com/gabrielfalcao/sure