Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Sep 2017 15:37:11 +0000 (UTC)
From:      Sofian Brabez <sbz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r450998 - in head/devel: . py-testinfra
Message-ID:  <201709301537.v8UFbBJH013468@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sbz
Date: Sat Sep 30 15:37:11 2017
New Revision: 450998
URL: https://svnweb.freebsd.org/changeset/ports/450998

Log:
  Testinfra test your infrastructures.
  
  With Testinfra you can write unit tests in Python to test *actual state* of
  your servers configured by management tools like Salt, Ansible, Puppet,
  Chef and so on.
  
  Testinfra aims to be a Serverspec equivalent in python and is written as
  a plugin to the powerful Pytest test engine.
  
  WWW: https://github.com/philpep/testinfra

Added:
  head/devel/py-testinfra/
  head/devel/py-testinfra/Makefile   (contents, props changed)
  head/devel/py-testinfra/distinfo   (contents, props changed)
  head/devel/py-testinfra/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Sep 30 15:13:32 2017	(r450997)
+++ head/devel/Makefile	Sat Sep 30 15:37:11 2017	(r450998)
@@ -4876,6 +4876,7 @@
     SUBDIR += py-terminable_thread
     SUBDIR += py-termstyle
     SUBDIR += py-testgears
+    SUBDIR += py-testinfra
     SUBDIR += py-testoob
     SUBDIR += py-testpath
     SUBDIR += py-testtools

Added: head/devel/py-testinfra/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testinfra/Makefile	Sat Sep 30 15:37:11 2017	(r450998)
@@ -0,0 +1,23 @@
+# Created by: Sofian Brabez <sbz@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	testinfra
+PORTVERSION=	1.8.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sbz@FreeBSD.org
+COMMENT=	Testinfra python module Serverspec-like for infrastructure testing
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \
+		${PYTHON_PKGNAMEPREFIX}six>1.4:devel/py-six
+
+USES=	python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-testinfra/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testinfra/distinfo	Sat Sep 30 15:37:11 2017	(r450998)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1506784710
+SHA256 (testinfra-1.8.0.tar.gz) = 2bc9b3951bab0ba8d9cfef2b3fcf4ba2cae66e5499779ae0e9c88193e57db70c
+SIZE (testinfra-1.8.0.tar.gz) = 58454

Added: head/devel/py-testinfra/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testinfra/pkg-descr	Sat Sep 30 15:37:11 2017	(r450998)
@@ -0,0 +1,10 @@
+Testinfra test your infrastructures.
+
+With Testinfra you can write unit tests in Python to test *actual state* of
+your servers configured by management tools like Salt, Ansible, Puppet,
+Chef and so on.
+
+Testinfra aims to be a Serverspec equivalent in python and is written as
+a plugin to the powerful Pytest test engine.
+
+WWW: https://github.com/philpep/testinfra



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709301537.v8UFbBJH013468>