svn commit: r409052 - in head/devel: . py-sure

Kubilay Kocak koobs at FreeBSD.org
Wed Feb 17 15:56:44 UTC 2016


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 <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	sure
+PORTVERSION=	1.2.24
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list