GNU bug report logs - #57312
[PATCH] gnu: Add elm-community-random-extra.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Sat, 20 Aug 2022 23:07:02 UTC

Severity: normal

Tags: patch

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

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 57312 in the body.
You can then email your comments to 57312 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#57312; Package guix-patches. (Sat, 20 Aug 2022 23:07:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 20 Aug 2022 23:07:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add elm-community-random-extra.
Date: Sat, 20 Aug 2022 18:05:57 -0500
* gnu/packages/elm.scm (elm-community-random-extra): New variable.
---
 gnu/packages/elm.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm
index 74a43a4ff2..a85c8c5f42 100644
--- a/gnu/packages/elm.scm
+++ b/gnu/packages/elm.scm
@@ -487,6 +487,26 @@ (define-public elm-explorations-markdown
 on the @code{marked} project, which focuses on speed.")
     (license license:bsd-3)))
 
+(define-public elm-community-random-extra
+  (package
+    (name "elm-community-random-extra")
+    (version "3.2.0")
+    (source
+      (elm-package-origin 
+        "elm-community/random-extra"
+        version
+        (base32 "13l48mx4wj7qdxl1shn9ij34izap256vv3k49ncnxpkjb7m1m3xk")))
+    (build-system elm-build-system)
+    (propagated-inputs (list elm-time elm-random elm-core))
+    (inputs (list elm-explorations-test))
+    (home-page
+"https://package.elm-lang.org/packages/elm-community/random-extra/3.2.0")
+    (synopsis "Extra functions for the Elm core random library")
+    (description
+"@code{emacs-community-random-extra} includes lots of extra helper
+functions for the Random module.")
+    (license license:bsd-3)))
+
 (define-public elm-todomvc
   (let ((commit "f236e7e56941c7705aba6e42cb020ff515fe3290")
         (revision "1"))
-- 
2.37.2





Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Wed, 28 Sep 2022 18:32:02 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Wed, 28 Sep 2022 18:32:02 GMT) Full text and rfc822 format available.

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

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: jgart <jgart <at> dismail.de>
Cc: 57312-done <at> debbugs.gnu.org
Subject: Re: bug#57312: [PATCH] gnu: Add elm-community-random-extra.
Date: Wed, 28 Sep 2022 14:31:03 -0400
Hi!

jgart <jgart <at> dismail.de> writes:

> * gnu/packages/elm.scm (elm-community-random-extra): New variable.

I did the following changes:

--8<---------------cut here---------------start------------->8---
modified   gnu/packages/elm.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2019 Robert Vollmert <rob <at> vllmrt.net>
 ;;; Copyright © 2022 Philip McGrath <philip <at> philipmcgrath.com>
+;;; Copyright © 2022 jgart <jgart <at> dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -491,20 +492,17 @@ (define-public elm-community-random-extra
   (package
     (name "elm-community-random-extra")
     (version "3.2.0")
-    (source
-      (elm-package-origin 
-        "elm-community/random-extra"
-        version
-        (base32 "13l48mx4wj7qdxl1shn9ij34izap256vv3k49ncnxpkjb7m1m3xk")))
+    (source (elm-package-origin
+             "elm-community/random-extra" version
+             (base32 "13l48mx4wj7qdxl1shn9ij34izap256vv3k49ncnxpkjb7m1m3xk")))
     (build-system elm-build-system)
     (propagated-inputs (list elm-time elm-random elm-core))
     (inputs (list elm-explorations-test))
     (home-page
-"https://package.elm-lang.org/packages/elm-community/random-extra/3.2.0")
+     "https://package.elm-lang.org/packages/elm-community/random-extra/")
     (synopsis "Extra functions for the Elm core random library")
-    (description
-"@code{emacs-community-random-extra} includes lots of extra helper
-functions for the Random module.")
+    (description "@code{emacs-community-random-extra} includes lots of extra
+helper functions for the Random module.")
     (license license:bsd-3)))
--8<---------------cut here---------------end--------------->8---
 
And pushed!

Thank you,

Maxim




Information forwarded to guix-patches <at> gnu.org:
bug#57312; Package guix-patches. (Wed, 28 Sep 2022 20:38:02 GMT) Full text and rfc822 format available.

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

From: jgart <jgart <at> dismail.de>
To: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Cc: 57312-done <at> debbugs.gnu.org
Subject: Re: bug#57312: [PATCH] gnu: Add elm-community-random-extra.
Date: Wed, 28 Sep 2022 15:37:20 -0500
On Wed, 28 Sep 2022 14:31:03 -0400 Maxim Cournoyer <maxim.cournoyer <at> gmail.com> wrote:

hi!

THNX!!!




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

This bug report was last modified 1 year and 153 days ago.

Previous Next


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