unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: divoplade <d@divoplade.fr>
To: Julien Lepiller <julien@lepiller.eu>, 45133@debbugs.gnu.org
Subject: [bug#45133] Add ocaml reactiveData
Date: Wed, 09 Dec 2020 18:03:51 +0100	[thread overview]
Message-ID: <ba12877b53f01573109079592ed837d54254f11c.camel@divoplade.fr> (raw)
In-Reply-To: <071FCE1F-5CBA-47E3-98B2-952FFFFAE217@lepiller.eu>

[-- Attachment #1: Type: text/plain, Size: 727 bytes --]

Hello,

Le mercredi 09 décembre 2020 à 10:40 -0500, Julien Lepiller a écrit :
> There's no reason not to use the latest release. Could you scnd an
> updated patch for the latest release, with a comment saying future
> versions will use dune?
> 
> There seem to be some whitespace issues with your patch. Tabs?

You should be more pleased by this version. There are a lot of build
files, and no install command. So, I provided mine, which seems to
work, but I don't know what files should be installed. I bet on:

- .a, for the native code;
- .cma, for the ocaml bytecode;
- .cmi, for the interface;
- .cmxa for the ocaml native code;
- .cmxs for the plugins;
- .cmx if the compiler wants to inline code.

What do you think?

[-- Attachment #2: 0001-gnu-add-ocaml-reactiveData.patch --]
[-- Type: text/x-patch, Size: 2294 bytes --]

From f0c1d3e95bb4d348fe863dfd1286e65dce7eb3a2 Mon Sep 17 00:00:00 2001
From: divoplade <d@divoplade.fr>
Date: Wed, 9 Dec 2020 15:45:04 +0100
Subject: [PATCH] gnu: add ocaml-reactiveData

	* ocaml.scm (ocaml-reactiveData): add ocaml-reactiveData
---
 gnu/packages/ocaml.scm | 45 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 2bfda7307e..e3fcbe236f 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -5859,3 +5859,48 @@ LablGL), gnomecanvas, gnomeui, gtksourceview, gtkspell, libglade (and it can
 generate OCaml code from .glade files), libpanel, librsvg and quartz.")
     ;; Version 2 only, with linking exception.
     (license license:lgpl2.0)))
+
+(define ocaml-reactiveData
+  ;; Future releases will use dune.
+  (package
+    (name "ocaml-reactiveData")
+    (version "0.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://github.com/ocsigen/reactiveData/archive/0.2.2.tar.gz")
+       (sha256
+        (base32
+         "0jzagyp4zla28wykvcgqwd8df71ir0vb4s8akp02cfacd5v86sng"))
+       (snippet
+        `(begin
+	   (let ((makefile (open-file "Makefile" "a")))
+	     (display "
+install:
+\tocamlfind install reactiveData pkg/META _build/src/reactiveData.{a,cma,cmi,cmx,cmxa,cmxs}
+" makefile)
+	     (close-port makefile))
+	   #t))))
+    (arguments
+     `(#:phases
+       (modify-phases
+           %standard-phases
+         (delete 'configure)
+         (add-before 'build 'fix-deprecated
+	   (lambda _
+	     (substitute*
+		 "src/reactiveData.ml"
+	       (("Pervasives.compare") "compare"))
+	     #t)))))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("ocamlbuild" ,ocamlbuild)))
+    (propagated-inputs
+     `(("ocaml-react" ,ocaml-react)))
+    (home-page
+     "https://github.com/ocsigen/reactiveData")
+    (synopsis
+     "Declarative events and signals for OCaml")
+    (description
+     "React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline.")
+    (license license:lgpl2.1+)))
-- 
2.29.2


  reply	other threads:[~2020-12-09 17:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-09 14:58 [bug#45133] Add ocaml reactiveData divoplade
2020-12-09 15:40 ` Julien Lepiller
2020-12-09 17:03   ` divoplade [this message]
2020-12-09 17:59     ` zimoun
2020-12-09 18:05       ` divoplade
2020-12-09 18:35         ` zimoun
2020-12-09 19:12           ` Julien Lepiller
2020-12-10 12:41             ` zimoun
2020-12-10 12:49               ` divoplade
2020-12-10 12:42             ` divoplade
2020-12-10 13:53               ` Julien Lepiller
2020-12-10 14:12                 ` divoplade
2020-12-10 14:43                   ` zimoun
2020-12-10 14:57                     ` divoplade
2020-12-15 14:49                       ` bug#45133: " Julien Lepiller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ba12877b53f01573109079592ed837d54254f11c.camel@divoplade.fr \
    --to=d@divoplade.fr \
    --cc=45133@debbugs.gnu.org \
    --cc=julien@lepiller.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).