Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Sep 2020 19:59:05 +0000 (UTC)
From:      =?UTF-8?Q?Vin=c3=adcius_Zavam?= <egypcio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548679 - in head/devel: . py-nosexcover
Message-ID:  <202009141959.08EJx5x5091666@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: egypcio
Date: Mon Sep 14 19:59:04 2020
New Revision: 548679
URL: https://svnweb.freebsd.org/changeset/ports/548679

Log:
  [NEW] devel/py-nosexcover: Extends nose cover to add Cobertura-style XML
  
    * https://pypi.org/project/nosexcover
  
    A companion to the built-in nose.plugins.cover, this plugin will write out
    an XML coverage report to a file named coverage.xml. It will honor all the
    options you pass to the Nose coverage plugin, especially --cover-package
  
    WWW: https://github.com/cmheisel/nose-xcover

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Sep 14 19:49:12 2020	(r548678)
+++ head/devel/Makefile	Mon Sep 14 19:59:04 2020	(r548679)
@@ -4665,6 +4665,7 @@
     SUBDIR += py-nose-timer
     SUBDIR += py-nose2
     SUBDIR += py-noseofyeti
+    SUBDIR += py-nosexcover
     SUBDIR += py-notify
     SUBDIR += py-notify2
     SUBDIR += py-num2words

Added: head/devel/py-nosexcover/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nosexcover/Makefile	Mon Sep 14 19:59:04 2020	(r548679)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	nosexcover
+PORTVERSION=	1.0.11
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	egypcio@FreeBSD.org
+COMMENT=	Extends nose cover to add Cobertura-style XML reports
+
+LICENSE=	MIT
+
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}coverage>=3.4:devel/py-coverage@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-nosexcover/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nosexcover/distinfo	Mon Sep 14 19:59:04 2020	(r548679)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1600066927
+SHA256 (nosexcover-1.0.11.tar.gz) = 298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883
+SIZE (nosexcover-1.0.11.tar.gz) = 2903

Added: head/devel/py-nosexcover/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-nosexcover/pkg-descr	Mon Sep 14 19:59:04 2020	(r548679)
@@ -0,0 +1,5 @@
+A companion to the built-in nose.plugins.cover, this plugin will write
+out an XML coverage report to a file named coverage.xml. It will honor all
+the options you pass to the Nose coverage plugin, especially --cover-package
+
+WWW: https://github.com/cmheisel/nose-xcover



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