Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Jul 2014 20:36:57 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
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
Message-ID:  <201407212036.s6LKavIl028484@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



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