svn commit: r480917 - in head/devel: . py-btest
Mateusz Piotrowski
0mp at FreeBSD.org
Sat Sep 29 20:24:19 UTC 2018
Author: 0mp
Date: Sat Sep 29 20:24:18 2018
New Revision: 480917
URL: https://svnweb.freebsd.org/changeset/ports/480917
Log:
New port: devel/py-btest: Simple driver for basic unit tests
The btest is a simple framework for writing unit tests. Freely borrowing
some ideas from other packages, it's main objective is to provide an
easy-to-use, straightforward driver for a suite of shell-based tests. Each
test consists of a set of command lines that will be executed, and success
is determined based on their exit codes. btest comes with some additional
tools that can be used within such tests to compare output against a
previously established baseline.
PR: 231738
Submitted by: Shirkdog <mshirk at daemon-security.com>
Reviewed by: krion, Nathan <ndowens at yahoo.com>
Approved by: krion (mentor)
Differential Revision: https://reviews.freebsd.org/D17353
Added:
head/devel/py-btest/
head/devel/py-btest/Makefile (contents, props changed)
head/devel/py-btest/distinfo (contents, props changed)
head/devel/py-btest/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Sep 29 20:06:31 2018 (r480916)
+++ head/devel/Makefile Sat Sep 29 20:24:18 2018 (r480917)
@@ -4395,6 +4395,7 @@
SUBDIR += py-boto
SUBDIR += py-botocore
SUBDIR += py-bsd
+ SUBDIR += py-btest
SUBDIR += py-buildbot
SUBDIR += py-buildbot-console-view
SUBDIR += py-buildbot-grid-view
Added: head/devel/py-btest/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-btest/Makefile Sat Sep 29 20:24:18 2018 (r480917)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= btest
+DISTVERSION= 0.58
+CATEGORIES= devel
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= mshirk at daemon-security.com
+COMMENT= Simple driver for basic unit tests
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= python
+USE_PYTHON= distutils autoplist concurrent
+
+NO_ARCH= YES
+
+.include <bsd.port.mk>
Added: head/devel/py-btest/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-btest/distinfo Sat Sep 29 20:24:18 2018 (r480917)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1538170397
+SHA256 (btest-0.58.tar.gz) = 632f88977e1091cec2edf853826c8b0233f6839a6bf490217e3947d8ba342402
+SIZE (btest-0.58.tar.gz) = 68811
Added: head/devel/py-btest/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-btest/pkg-descr Sat Sep 29 20:24:18 2018 (r480917)
@@ -0,0 +1,10 @@
+The btest is a simple framework for writing unit tests. Freely
+borrowing some ideas from other packages, it's main objective is to
+provide an easy-to-use, straightforward driver for a suite of
+shell-based tests. Each test consists of a set of command lines that
+will be executed, and success is determined based on their exit
+codes. btest comes with some additional tools that can be used
+within such tests to compare output against a previously established
+baseline.
+
+WWW: https://github.com/bro/btest/
More information about the svn-ports-all
mailing list