[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: Add lcov-cobertura.
From: |
guix-commits |
Subject: |
02/07: gnu: Add lcov-cobertura. |
Date: |
Thu, 22 Oct 2020 11:11:32 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 830ea72799f988b0fb334f9833f37ef147f7ca2c
Author: Ludovic Courtès <ludovic.courtes@inria.fr>
AuthorDate: Thu Oct 22 10:44:11 2020 +0200
gnu: Add lcov-cobertura.
* gnu/packages/code.scm (lcov-cobertura): New variable.
---
gnu/packages/code.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 6d34830..e3e4c67 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2015, 2018 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2013, 2015, 2018, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016, 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
@@ -39,6 +39,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
#:use-module (guix build-system cmake)
+ #:use-module (guix build-system python)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages autogen)
@@ -518,6 +519,28 @@ textual @command{gcov} output to implement the following
enhanced
functionality such as HTML output.")
(license license:gpl2+)))
+(define-public lcov-cobertura
+ (package
+ (name "python-lcov-cobertura")
+ (version "1.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "lcov_cobertura" version))
+ (sha256
+ (base32
+ "02ar6yjazlxq4p64cz9gag08bvakmzjrp147jara9wlnlbc96j8g"))))
+ (build-system python-build-system)
+ (home-page "https://eriwen.github.io/lcov-to-cobertura-xml/")
+ (synopsis "LCOV to Cobertura XML converter")
+ (description
+ "The lcov-to-cobertura Python module converts code coverage report files
+in the lcov format to the XML format of
+@uref{http://cobertura.github.io/cobertura/, Cobertura}, a Java code coverage
+tool. It allows continuous integration servers like Jenkins to aggregate
+results and determine build stability.")
+ (license license:asl2.0)))
+
(define-public kcov
(package
(name "kcov")
- branch master updated (2f107f2 -> cad55e9), guix-commits, 2020/10/22
- 02/07: gnu: Add lcov-cobertura.,
guix-commits <=
- 06/07: gnu: libjaylink: Update to 0.2.0, guix-commits, 2020/10/22
- 05/07: git: Support HTTP and HTTPS proxies., guix-commits, 2020/10/22
- 03/07: git: Require Guile-Git 0.3.0 or later., guix-commits, 2020/10/22
- 01/07: graph: Don't insist on "Helvetica" in the Graphviz backend., guix-commits, 2020/10/22
- 04/07: git: Display a progress bar while fetching a repo., guix-commits, 2020/10/22
- 07/07: gnu: openocd: Update to 9a877a83a1c8b1f105cdc0de46c5cbc4d9e8799e., guix-commits, 2020/10/22