GNU bug report logs - #31422
[PATCH 5/6] gnu: Add ghc-semigroupoids-5.2.2

Previous Next

Package: guix-patches;

Reported by: Tonton <tonton <at> riseup.net>

Date: Fri, 11 May 2018 20:35:04 UTC

Severity: normal

Tags: patch

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

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 31422 in the body.
You can then email your comments to 31422 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#31422; Package guix-patches. (Fri, 11 May 2018 20:35:04 GMT) Full text and rfc822 format available.

Acknowledgement sent to Tonton <tonton <at> riseup.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 11 May 2018 20:35:04 GMT) Full text and rfc822 format available.

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

From: Tonton <tonton <at> riseup.net>
To: 31418 <at> debbugs.gnu.org,
	guix-patches <at> gnu.org
Cc: Tonton <tonton <at> riseup.net>
Subject: [PATCH 5/6] gnu: Add ghc-semigroupoids-5.2.2
Date: Fri, 11 May 2018 22:34:07 +0200
* gnu/packages/haskell.scm (ghc-semigroupoids-5.2.2): New variable.
---
 gnu/packages/haskell.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index d8128422e..2429fdbe5 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9555,4 +9555,19 @@ scenarios.")
    (home-page "https://hackage.haskell.org/package/binary")
    (license license:bsd-3)))
 
+(define-public ghc-semigroupoids-5.2.2
+  (package
+    (inherit ghc-semigroupoids)
+    (name "ghc-semigroupoids")
+    (version "5.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://hackage.haskell.org/package/semigroupoids-5.2.2/semigroupoids-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "17i96y4iqj8clcs090lf6k0ij3j16nj14vsfwz0mm9nd6i4gbpp4"))))
+    (inputs `(("ghc-unordered-containers" ,ghc-unordered-containers)
+              ,@(package-inputs ghc-semigroupoids)))))
+
 ;;; haskell.scm ends here
-- 
2.17.0





Information forwarded to guix-patches <at> gnu.org:
bug#31422; Package guix-patches. (Thu, 17 May 2018 19:39:02 GMT) Full text and rfc822 format available.

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

From: Tonton <tonton <at> riseup.net>
To: 31422 <at> debbugs.gnu.org
Cc: Tonton <tonton <at> riseup.net>
Subject: [PATCH 1/2] gnu: Add ghc-semigroupoids-5.2.2.
Date: Thu, 17 May 2018 21:37:55 +0200
* gnu/packages/haskell.scm (ghc-semigroupoids-5.2.2): New variable.
---
 gnu/packages/haskell.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 9b26ff56f..874a9202a 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2017, 2018 Alex Vong <alexvong1995 <at> gmail.com>
 ;;; Copyright © 2017 rsiddharth <s <at> ricketyspace.net>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me <at> tobias.gr>
+;;; Copyright © 2018 Tonton <tonton <at> riseup.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -9466,4 +9467,20 @@ system dependencies.")
 address string against RFC 5322.")
     (license license:bsd-3)))
 
+(define-public ghc-semigroupoids-5.2.2
+  (package
+    (inherit ghc-semigroupoids)
+    (name "ghc-semigroupoids")
+    (version "5.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://hackage.haskell.org/package/"
+                                  "semigroupoids-" version "/semigroupoids-"
+                                   version ".tar.gz"))
+              (sha256
+               (base32
+                "17i96y4iqj8clcs090lf6k0ij3j16nj14vsfwz0mm9nd6i4gbpp4"))))
+    (inputs `(("ghc-unordered-containers" ,ghc-unordered-containers)
+              ,@(package-inputs ghc-semigroupoids)))))
+
 ;;; haskell.scm ends here
-- 
2.17.0





Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Sun, 20 May 2018 20:45:02 GMT) Full text and rfc822 format available.

Notification sent to Tonton <tonton <at> riseup.net>:
bug acknowledged by developer. (Sun, 20 May 2018 20:45:02 GMT) Full text and rfc822 format available.

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

From: ludo <at> gnu.org (Ludovic Courtès)
To: Tonton <tonton <at> riseup.net>
Cc: 31422-done <at> debbugs.gnu.org
Subject: Re: [bug#31422] [PATCH 1/2] gnu: Add ghc-semigroupoids-5.2.2.
Date: Sun, 20 May 2018 22:44:42 +0200
Tonton <tonton <at> riseup.net> skribis:

> * gnu/packages/haskell.scm (ghc-semigroupoids-5.2.2): New variable.

Applied, thanks!

Ludo'.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 18 Jun 2018 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 313 days ago.

Previous Next


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