GNU bug report logs - #36081
[PATCH] gnu: ghc-streaming-commons: Skip tests.

Previous Next

Package: guix-patches;

Reported by: Robert Vollmert <rob <at> vllmrt.net>

Date: Mon, 3 Jun 2019 22:04:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 36081 in the body.
You can then email your comments to 36081 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#36081; Package guix-patches. (Mon, 03 Jun 2019 22:04:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Robert Vollmert <rob <at> vllmrt.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 03 Jun 2019 22:04:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Robert Vollmert <rob <at> vllmrt.net>
To: guix-patches <at> gnu.org
Cc: Robert Vollmert <rob <at> vllmrt.net>
Subject: [PATCH] gnu: ghc-streaming-commons: Skip tests.
Date: Tue,  4 Jun 2019 00:02:54 +0200
There's a sporadic test failure, showing up particularly in Nix/Guix
builds: https://github.com/fpco/streaming-commons/issues/49.

* gnu/packages/haskell.scm (ghc-streaming-commons): Skip tests.
---
 gnu/packages/haskell.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 822b0499b6..a6eb7c3701 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2018, 2019 Timothy Sample <samplet <at> ngyro.com>
 ;;; Copyright © 2018 Arun Isaac <arunisaac <at> systemreboot.net>
 ;;; Copyright © 2018, 2019 Gabriel Hondet <gabrielhondet <at> gmail.com>
+;;; Copyright © 2019 Robert Vollmert <rob <at> vllmrt.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1815,6 +1816,8 @@ version 1.3).")
         (base32
          "13fn6qmpiggwpn8lczyydgp77cyzfypwds7wxskrwir4i5cgxlfq"))))
     (build-system haskell-build-system)
+    (arguments
+     `(#:tests? #f))  ; sporadic failure: https://github.com/fpco/streaming-commons/issues/49
     (inputs
      `(("ghc-async" ,ghc-async)
        ("ghc-blaze-builder" ,ghc-blaze-builder)
-- 
2.20.1 (Apple Git-117)





Information forwarded to guix-patches <at> gnu.org:
bug#36081; Package guix-patches. (Wed, 05 Jun 2019 18:32:02 GMT) Full text and rfc822 format available.

Message #8 received at 36081 <at> debbugs.gnu.org (full text, mbox):

From: Robert Vollmert <rob <at> vllmrt.net>
To: 36081 <at> debbugs.gnu.org
Cc: Robert Vollmert <rob <at> vllmrt.net>
Subject: [PATCH] gnu: ghc-streaming-commons: Update to 0.2.1.1.
Date: Wed,  5 Jun 2019 20:30:19 +0200
This fixes a sporadic test failure, showing up particularly in Nix/Guix
builds: https://github.com/fpco/streaming-commons/issues/49.

* gnu/packages/haskell.scm (ghc-streaming-commons): Update to 0.2.1.1.
---

(I learnt that this is a place I might be able to put comments -- let's see.)

This replaces the previous version of the patch, after the issue has been
fixed in a new upstream release.

 gnu/packages/haskell.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 877b89f21f..00e21be296 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1797,7 +1797,7 @@ version 1.3).")
 (define-public ghc-streaming-commons
   (package
     (name "ghc-streaming-commons")
-    (version "0.2.1.0")
+    (version "0.2.1.1")
     (source
      (origin
        (method url-fetch)
@@ -1806,7 +1806,7 @@ version 1.3).")
                            version ".tar.gz"))
        (sha256
         (base32
-         "13fn6qmpiggwpn8lczyydgp77cyzfypwds7wxskrwir4i5cgxlfq"))))
+         "1lmyx3wkjsayhy5yilzvy0kf8qwmycwlk26r1d8f3cxbfhkr7s52"))))
     (build-system haskell-build-system)
     (arguments
      `(#:tests? #f))  ; sporadic failure: https://github.com/fpco/streaming-commons/issues/49
-- 
2.20.1 (Apple Git-117)





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Thu, 06 Jun 2019 21:39:02 GMT) Full text and rfc822 format available.

Notification sent to Robert Vollmert <rob <at> vllmrt.net>:
bug acknowledged by developer. (Thu, 06 Jun 2019 21:39:02 GMT) Full text and rfc822 format available.

Message #13 received at 36081-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Robert Vollmert <rob <at> vllmrt.net>
Cc: 36081-done <at> debbugs.gnu.org
Subject: Re: [bug#36081] [PATCH] gnu: ghc-streaming-commons: Update to 0.2.1.1.
Date: Thu, 06 Jun 2019 23:38:18 +0200
Robert Vollmert <rob <at> vllmrt.net> skribis:

> This fixes a sporadic test failure, showing up particularly in Nix/Guix
> builds: https://github.com/fpco/streaming-commons/issues/49.
>
> * gnu/packages/haskell.scm (ghc-streaming-commons): Update to 0.2.1.1.

Pushed, thanks!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 05 Jul 2019 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 289 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.