From owner-svn-ports-head@freebsd.org Sat Sep 30 15:37:12 2017 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 C46C1E29720; Sat, 30 Sep 2017 15:37:12 +0000 (UTC) (envelope-from sbz@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 A000D72DFC; Sat, 30 Sep 2017 15:37:12 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8UFbB7i013472; Sat, 30 Sep 2017 15:37:11 GMT (envelope-from sbz@FreeBSD.org) Received: (from sbz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8UFbBJH013468; Sat, 30 Sep 2017 15:37:11 GMT (envelope-from sbz@FreeBSD.org) Message-Id: <201709301537.v8UFbBJH013468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbz set sender to sbz@FreeBSD.org using -f From: Sofian Brabez Date: Sat, 30 Sep 2017 15:37:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450998 - in head/devel: . py-testinfra X-SVN-Group: ports-head X-SVN-Commit-Author: sbz X-SVN-Commit-Paths: in head/devel: . py-testinfra X-SVN-Commit-Revision: 450998 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.23 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: Sat, 30 Sep 2017 15:37:12 -0000 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 +# $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 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