From owner-svn-ports-head@FreeBSD.ORG Mon Jul 21 20:36:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1C534BD; Mon, 21 Jul 2014 20:36:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 D2FA420DD; Mon, 21 Jul 2014 20:36:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6LKav3E028488; Mon, 21 Jul 2014 20:36:57 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6LKavIl028484; Mon, 21 Jul 2014 20:36:57 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201407212036.s6LKavIl028484@svn.freebsd.org> From: Steven Kreuzer Date: Mon, 21 Jul 2014 20:36:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362482 - in head/textproc: . py-junit-xml 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.18 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: Mon, 21 Jul 2014 20:36:58 -0000 Author: skreuzer Date: Mon Jul 21 20:36:56 2014 New Revision: 362482 URL: http://svnweb.freebsd.org/changeset/ports/362482 QAT: https://qat.redports.org/buildarchive/r362482/ Log: A Python module for creating JUnit XML test result documents that can be read by tools such as Jenkins. If you are ever working with test tool or test suite written in Python and want to take advantage of Jenkins' pretty graphs and test reporting capabilities, this module will let you generate the XML test reports. WWW: https://github.com/kyrus/python-junit-xml Added: head/textproc/py-junit-xml/ head/textproc/py-junit-xml/Makefile (contents, props changed) head/textproc/py-junit-xml/distinfo (contents, props changed) head/textproc/py-junit-xml/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 21 20:35:40 2014 (r362481) +++ head/textproc/Makefile Mon Jul 21 20:36:56 2014 (r362482) @@ -1159,6 +1159,7 @@ SUBDIR += py-html2text SUBDIR += py-hyperestraier-python SUBDIR += py-jaxml + SUBDIR += py-junit-xml SUBDIR += py-libtre SUBDIR += py-libxml2 SUBDIR += py-libxslt Added: head/textproc/py-junit-xml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-junit-xml/Makefile Mon Jul 21 20:36:56 2014 (r362482) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= junit-xml +PORTVERSION= 1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Creates JUnit XML documents used by tools such as Jenkins + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/textproc/py-junit-xml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-junit-xml/distinfo Mon Jul 21 20:36:56 2014 (r362482) @@ -0,0 +1,2 @@ +SHA256 (junit-xml-1.3.tar.gz) = 2f7110f3926744fe8e37d11dabe3fc47c0b0f92efec3f0a1a087e1be954bc164 +SIZE (junit-xml-1.3.tar.gz) = 7014 Added: head/textproc/py-junit-xml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-junit-xml/pkg-descr Mon Jul 21 20:36:56 2014 (r362482) @@ -0,0 +1,6 @@ +A Python module for creating JUnit XML test result documents that can be read +by tools such as Jenkins. If you are ever working with test tool or test suite +written in Python and want to take advantage of Jenkins' pretty graphs and test +reporting capabilities, this module will let you generate the XML test reports. + +WWW: https://github.com/kyrus/python-junit-xml