[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#34831] [PATCH 05/25] gnu: Add perl6-tap-harness.
From: |
Efraim Flashner |
Subject: |
[bug#34831] [PATCH 05/25] gnu: Add perl6-tap-harness. |
Date: |
Tue, 12 Mar 2019 22:19:54 +0200 |
* gnu/packages/perl6.scm (perl6-tap-harness): New variable.
---
gnu/packages/perl6.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/perl6.scm b/gnu/packages/perl6.scm
index 9659361309..1bcd99faff 100644
--- a/gnu/packages/perl6.scm
+++ b/gnu/packages/perl6.scm
@@ -22,6 +22,7 @@
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (guix build-system perl)
+ #:use-module (guix build-system rakudo)
#:use-module (gnu packages bdw-gc)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libffi)
@@ -227,3 +228,33 @@ regular expression engine for the virtual machine.")
(description "Rakudo Perl is a compiler that implements the Perl 6
specification and runs on top of several virtual machines.")
(license license:artistic2.0)))
+
+(define-public perl6-tap-harness
+ (package
+ (name "perl6-tap-harness")
+ (version "0.0.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/perl6/tap-harness6.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1lig8i0my3fgqvlay9532xslbf3iis2d7wz89gniwvwqffi2kh6r"))))
+ (build-system rakudo-build-system)
+ (arguments
+ '(#:with-zef? #f
+ #:with-prove6? #f
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "perl6" "-Ilib" "bin/prove6" "-l" "t"))))))
+ (home-page "https://github.com/perl6/tap-harness6/")
+ (synopsis "TAP harness for perl6")
+ (description "This module provides the @command{prove6} command which runs
a
+TAP based test suite and prints a report. The @command{prove6} command is a
+minimal wrapper around an instance of this module.")
+ (license license:artistic2.0)))
--
2.21.0
- [bug#34831] [PATCH 00/25] Add perl6, Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 02/25] gnu: Add nqp., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 01/25] gnu: Add moarvm., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 05/25] gnu: Add perl6-tap-harness.,
Efraim Flashner <=
- [bug#34831] [PATCH 08/25] gnu: Add perl6-json-fast., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 12/25] gnu: Add perl6-json-class., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 03/25] gnu: Add rakudo., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 07/25] gnu: Add perl6-uri., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 06/25] gnu: Add perl6-zef., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 09/25] gnu: Add perl6-json-name., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 10/25] gnu: Add perl6-json-unmarshal., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 14/25] gnu: Add perl6-license-spdx., Efraim Flashner, 2019/03/12
- [bug#34831] [PATCH 13/25] gnu: Add perl6-meta6., Efraim Flashner, 2019/03/12