unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 00/10] Next 10 ocaml packages
@ 2017-03-12 20:28 Julien Lepiller
  2017-03-12 20:28 ` [PATCH 01/10] gnu: Add ocaml-sexplib Julien Lepiller
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:28 UTC (permalink / raw)
  To: guix-devel

Hi,

here are my next ten ocaml packages I would like to push.  I hope there is
no style error anymore.

Julien Lepiller (10):
  gnu: Add ocaml-sexplib.
  gnu: Add ocaml-typerep.
  gnu: Add ocaml-variantslib.
  gnu: Add ocaml-ppx-sexp-conv.
  gnu: Add ocaml-ppx-variants-conv.
  gnu: Add ocaml-ppx-here.
  gnu: Add ocaml-ppx-assert.
  gnu: Add ocaml-ppx-enumerate.
  gnu: Add ocaml-ppx-let.
  gnu: Add ocaml-ppx-typerep-conv.

 gnu/packages/ocaml.scm | 202 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 202 insertions(+)

-- 
2.12.0

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH 01/10] gnu: Add ocaml-sexplib.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
@ 2017-03-12 20:28 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 02/10] gnu: Add ocaml-typerep Julien Lepiller
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:28 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-sexplib): New variable.
---
 gnu/packages/ocaml.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index e225aa6d6..dc2ce14d3 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2280,3 +2280,20 @@ than ocaml's Pervasives.compare.  Scaffolding functions also gives you more
 flexibility by allowing you to override them for a specific type and more safety
 by making sure that you only compare comparable values.")
     (license license:asl2.0)))
+
+(define-public ocaml-sexplib
+  (package
+    (name "ocaml-sexplib")
+    (version "113.33.03")
+    (source (janestreet-origin "sexplib" version
+              "1ffjmj8if9lyv965cgn2ld1xv7g52qsr8mqflbm515ck1i8l2ima"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/sexplib/")
+    (synopsis "Library for serializing OCaml values to and from S-expressions")
+    (description "Sexplib contains functionality for parsing and pretty-printing
+s-expressions.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 02/10] gnu: Add ocaml-typerep.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
  2017-03-12 20:28 ` [PATCH 01/10] gnu: Add ocaml-sexplib Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 03/10] gnu: Add ocaml-variantslib Julien Lepiller
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-typerep): New variable.
---
 gnu/packages/ocaml.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index dc2ce14d3..ce6c7fb8c 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2297,3 +2297,19 @@ by making sure that you only compare comparable values.")
     (description "Sexplib contains functionality for parsing and pretty-printing
 s-expressions.")
     (license license:asl2.0)))
+
+(define-public ocaml-typerep
+  (package
+    (name "ocaml-typerep")
+    (version "113.33.03")
+    (source (janestreet-origin "typerep" version
+              "1b9v5bmi824a9d4sx0f40ixq0yfcbiqxafg4a1jx95xg9199zafy"))
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (build-system ocaml-build-system)
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/typerep/")
+    (synopsis "Typerep is a library for runtime types")
+    (description "Typerep is a library for runtime types.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 03/10] gnu: Add ocaml-variantslib.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
  2017-03-12 20:28 ` [PATCH 01/10] gnu: Add ocaml-sexplib Julien Lepiller
  2017-03-12 20:29 ` [PATCH 02/10] gnu: Add ocaml-typerep Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 04/10] gnu: Add ocaml-ppx-sexp-conv Julien Lepiller
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-variantslib): New variable.
---
 gnu/packages/ocaml.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index ce6c7fb8c..ed77b468f 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2313,3 +2313,19 @@ s-expressions.")
     (synopsis "Typerep is a library for runtime types")
     (description "Typerep is a library for runtime types.")
     (license license:asl2.0)))
+
+(define-public ocaml-variantslib
+  (package
+    (name "ocaml-variantslib")
+    (version "113.33.03")
+    (source (janestreet-origin "variantslib" version
+              "05vp799vl38fvl98ga5miwbzh09cnnpapi6q6gdvwyqi6w7s919n"))
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (build-system ocaml-build-system)
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/variantslib")
+    (synopsis "OCaml variants as first class values")
+    (description "OCaml variants as first class values.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 04/10] gnu: Add ocaml-ppx-sexp-conv.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (2 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 03/10] gnu: Add ocaml-variantslib Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 05/10] gnu: Add ocaml-ppx-variants-conv Julien Lepiller
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-sexp-conv): New variable.
---
 gnu/packages/ocaml.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index ed77b468f..a46183ac0 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2329,3 +2329,26 @@ s-expressions.")
     (synopsis "OCaml variants as first class values")
     (description "OCaml variants as first class values.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-sexp-conv
+  (package
+    (name "ocaml-ppx-sexp-conv")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_sexp_conv" version
+              "1rbj6d5dl625gdxih34xcrdvikci6h8i2dl9x3wraa4qrgishiw7"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)
+       ("ppx-core" ,ocaml-ppx-core)))
+    (propagated-inputs
+     `(("sexplib" ,ocaml-sexplib)
+       ("ppx-core" ,ocaml-ppx-core)
+       ("ppx-type-conv" ,ocaml-ppx-type-conv)
+       ("ppx-tools" ,ocaml-ppx-tools)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_sexp_conv")
+    (synopsis "Generation of S-expression conversion functions from type definitions")
+    (description "Generation of S-expression conversion functions from type
+definitions.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 05/10] gnu: Add ocaml-ppx-variants-conv.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (3 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 04/10] gnu: Add ocaml-ppx-sexp-conv Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 06/10] gnu: Add ocaml-ppx-here Julien Lepiller
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-variants-conv): New variable.
---
 gnu/packages/ocaml.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index a46183ac0..63a7c082a 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2352,3 +2352,26 @@ s-expressions.")
     (description "Generation of S-expression conversion functions from type
 definitions.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-variants-conv
+  (package
+    (name "ocaml-ppx-variants-conv")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_variants_conv" version
+              "0vnn2l1118cj72413d3f7frlw6yc09l8f64jlzkzbgb9bxpalx34"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-core" ,ocaml-ppx-core)
+       ("variantslib" ,ocaml-variantslib)
+       ("ppx-tools" ,ocaml-ppx-tools)
+       ("ppx-type-conv" ,ocaml-ppx-type-conv)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_variants_conv")
+    (synopsis "Generation of accessor and iteration functions for ocaml variant
+types")
+    (description "Generation of accessor and iteration functions for ocaml
+variant types.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 06/10] gnu: Add ocaml-ppx-here.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (4 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 05/10] gnu: Add ocaml-ppx-variants-conv Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 07/10] gnu: Add ocaml-ppx-assert Julien Lepiller
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-here): New variable.
---
 gnu/packages/ocaml.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 63a7c082a..fa9fb5115 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2375,3 +2375,22 @@ types")
     (description "Generation of accessor and iteration functions for ocaml
 variant types.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-here
+  (package
+    (name "ocaml-ppx-here")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_here" version
+              "1ay8lfxi0qg3ib2zkwh4h0vqk3gjmxaz572gzab0bbxyqn3z86v7"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-driver" ,ocaml-ppx-driver)
+       ("ppx-core" ,ocaml-ppx-core)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_here")
+    (synopsis "Expands [%here] into its location")
+    (description "Expands [%here] into its location.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 07/10] gnu: Add ocaml-ppx-assert.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (5 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 06/10] gnu: Add ocaml-ppx-here Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 08/10] gnu: Add ocaml-ppx-enumerate Julien Lepiller
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-assert): New variable.
---
 gnu/packages/ocaml.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index fa9fb5115..c3ee88454 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2394,3 +2394,28 @@ variant types.")
     (synopsis "Expands [%here] into its location")
     (description "Expands [%here] into its location.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-assert
+  (package
+    (name "ocaml-ppx-assert")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_assert" version
+              "1k5kxmqkibp5fk25pgz81f3c1r4mgvb5byzf6bnmxd24y60wn46p"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-compare" ,ocaml-ppx-compare)
+       ("ppx-core" ,ocaml-ppx-core)
+       ("ppx-driver" ,ocaml-ppx-driver)
+       ("ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
+       ("ppx-tools" ,ocaml-ppx-tools)
+       ("ppx-type-conv" ,ocaml-ppx-type-conv)
+       ("ppx-sexplib" ,ocaml-sexplib)
+       ("ppx-here" ,ocaml-ppx-here)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_assert")
+    (synopsis "Assert-like extension nodes that raise useful errors on failure")
+    (description "Assert-like extension nodes that raise useful errors on failure.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 08/10] gnu: Add ocaml-ppx-enumerate.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (6 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 07/10] gnu: Add ocaml-ppx-assert Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 09/10] gnu: Add ocaml-ppx-let Julien Lepiller
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-enumerate): New variable.
---
 gnu/packages/ocaml.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index c3ee88454..23590054e 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2419,3 +2419,25 @@ variant types.")
     (synopsis "Assert-like extension nodes that raise useful errors on failure")
     (description "Assert-like extension nodes that raise useful errors on failure.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-enumerate
+  (package
+    (name "ocaml-ppx-enumerate")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_enumerate" version
+              "15g7yfv9wg2h9r6k6q1zrhygmsl4xrfn25mrb0i4czjjivzmxjh4"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-tools" ,ocaml-ppx-tools)
+       ("ppx-type-conv" ,ocaml-ppx-type-conv)
+       ("ppx-core" ,ocaml-ppx-core)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_enumerate")
+    (synopsis "Generate a list containing all values of a finite type")
+    (description "Ppx_enumerate is a ppx rewriter which generates a definition
+for the list of all values of a type (for a type which only has finitely
+many values).")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 09/10] gnu: Add ocaml-ppx-let.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (7 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 08/10] gnu: Add ocaml-ppx-enumerate Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-12 20:29 ` [PATCH 10/10] gnu: Add ocaml-ppx-typerep-conv Julien Lepiller
  2017-03-13  4:02 ` [PATCH 00/10] Next 10 ocaml packages Leo Famulari
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-let): New variable.
---
 gnu/packages/ocaml.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 23590054e..a12d19808 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2441,3 +2441,23 @@ variant types.")
 for the list of all values of a type (for a type which only has finitely
 many values).")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-let
+  (package
+    (name "ocaml-ppx-let")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_let" version
+              "0gd6d3gdaqfwjcs7gaw1qxc30i584q6a86ndaj1bx1q63xqd6yx9"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-driver" ,ocaml-ppx-driver)
+       ("ppx-core" ,ocaml-ppx-core)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_let")
+    (synopsis "Monadic let-bindings")
+    (description "A ppx rewriter for monadic and applicative let bindings,
+match expressions, and if expressions.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 10/10] gnu: Add ocaml-ppx-typerep-conv.
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (8 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 09/10] gnu: Add ocaml-ppx-let Julien Lepiller
@ 2017-03-12 20:29 ` Julien Lepiller
  2017-03-13  4:02 ` [PATCH 00/10] Next 10 ocaml packages Leo Famulari
  10 siblings, 0 replies; 13+ messages in thread
From: Julien Lepiller @ 2017-03-12 20:29 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/ocaml.scm (ocaml-ppx-typerep-conv): New variable.
---
 gnu/packages/ocaml.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index a12d19808..ebc5caf25 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2461,3 +2461,24 @@ many values).")
     (description "A ppx rewriter for monadic and applicative let bindings,
 match expressions, and if expressions.")
     (license license:asl2.0)))
+
+(define-public ocaml-ppx-typerep-conv
+  (package
+    (name "ocaml-ppx-typerep-conv")
+    (version "113.33.03")
+    (source (janestreet-origin "ppx_typerep_conv" version
+              "0g0xqm9s1b2jjvxb8yp69281q2s3bwz6sibn10fvgcdawpa0rmrg"))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("js-build-tools" ,ocaml-js-build-tools)
+       ("opam" ,opam)))
+    (propagated-inputs
+     `(("ppx-tools" ,ocaml-ppx-tools)
+       ("ppx-type-conv" ,ocaml-ppx-type-conv)
+       ("ppx-core" ,ocaml-ppx-core)
+       ("typerep" ,ocaml-typerep)))
+    (arguments janestreet-arguments)
+    (home-page "https://github.com/janestreet/ppx_typerep_conv")
+    (synopsis "Generation of runtime types from type declarations")
+    (description "Automatic generation of runtime types from type definitions.")
+    (license license:asl2.0)))
-- 
2.12.0

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 00/10] Next 10 ocaml packages
  2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
                   ` (9 preceding siblings ...)
  2017-03-12 20:29 ` [PATCH 10/10] gnu: Add ocaml-ppx-typerep-conv Julien Lepiller
@ 2017-03-13  4:02 ` Leo Famulari
  2017-03-14 13:28   ` Ludovic Courtès
  10 siblings, 1 reply; 13+ messages in thread
From: Leo Famulari @ 2017-03-13  4:02 UTC (permalink / raw)
  To: Julien Lepiller; +Cc: guix-devel

On Sun, Mar 12, 2017 at 09:28:58PM +0100, Julien Lepiller wrote:
> Julien Lepiller (10):
>   gnu: Add ocaml-sexplib.
>   gnu: Add ocaml-typerep.
>   gnu: Add ocaml-variantslib.
>   gnu: Add ocaml-ppx-sexp-conv.
>   gnu: Add ocaml-ppx-variants-conv.
>   gnu: Add ocaml-ppx-here.
>   gnu: Add ocaml-ppx-assert.
>   gnu: Add ocaml-ppx-enumerate.
>   gnu: Add ocaml-ppx-let.
>   gnu: Add ocaml-ppx-typerep-conv.

LGTM!

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 00/10] Next 10 ocaml packages
  2017-03-13  4:02 ` [PATCH 00/10] Next 10 ocaml packages Leo Famulari
@ 2017-03-14 13:28   ` Ludovic Courtès
  0 siblings, 0 replies; 13+ messages in thread
From: Ludovic Courtès @ 2017-03-14 13:28 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

Leo Famulari <leo@famulari.name> skribis:

> On Sun, Mar 12, 2017 at 09:28:58PM +0100, Julien Lepiller wrote:
>> Julien Lepiller (10):
>>   gnu: Add ocaml-sexplib.
>>   gnu: Add ocaml-typerep.
>>   gnu: Add ocaml-variantslib.
>>   gnu: Add ocaml-ppx-sexp-conv.
>>   gnu: Add ocaml-ppx-variants-conv.
>>   gnu: Add ocaml-ppx-here.
>>   gnu: Add ocaml-ppx-assert.
>>   gnu: Add ocaml-ppx-enumerate.
>>   gnu: Add ocaml-ppx-let.
>>   gnu: Add ocaml-ppx-typerep-conv.
>
> LGTM!

BTW Julien, consider using guix-patches@gnu.org in the future.  :-)
That goes to the queue at <https://bugs.gnu.org/guix-patches>.

Ludo’.

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2017-03-14 13:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-12 20:28 [PATCH 00/10] Next 10 ocaml packages Julien Lepiller
2017-03-12 20:28 ` [PATCH 01/10] gnu: Add ocaml-sexplib Julien Lepiller
2017-03-12 20:29 ` [PATCH 02/10] gnu: Add ocaml-typerep Julien Lepiller
2017-03-12 20:29 ` [PATCH 03/10] gnu: Add ocaml-variantslib Julien Lepiller
2017-03-12 20:29 ` [PATCH 04/10] gnu: Add ocaml-ppx-sexp-conv Julien Lepiller
2017-03-12 20:29 ` [PATCH 05/10] gnu: Add ocaml-ppx-variants-conv Julien Lepiller
2017-03-12 20:29 ` [PATCH 06/10] gnu: Add ocaml-ppx-here Julien Lepiller
2017-03-12 20:29 ` [PATCH 07/10] gnu: Add ocaml-ppx-assert Julien Lepiller
2017-03-12 20:29 ` [PATCH 08/10] gnu: Add ocaml-ppx-enumerate Julien Lepiller
2017-03-12 20:29 ` [PATCH 09/10] gnu: Add ocaml-ppx-let Julien Lepiller
2017-03-12 20:29 ` [PATCH 10/10] gnu: Add ocaml-ppx-typerep-conv Julien Lepiller
2017-03-13  4:02 ` [PATCH 00/10] Next 10 ocaml packages Leo Famulari
2017-03-14 13:28   ` Ludovic Courtès

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).