From 102a02896d4bf8eeed346521aaec8a7bda46c58b Mon Sep 17 00:00:00 2001 From: pukkamustard Date: Tue, 1 Feb 2022 19:36:38 +0000 Subject: gnu: js-of-ocaml: Update to 4.0.0. * gnu/packages/ocaml (js-of-ocaml): Update to 4.0.0. Signed-off-by: Julien Lepiller --- gnu/packages/ocaml.scm | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6c1ac057a4..fa6cdcb0d5 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020, 2021 Simon Tournier ;;; Copyright © 2020 divoplade -;;; Copyright © 2020, 2021 pukkamustard +;;; Copyright © 2020, 2021, 2022 pukkamustard ;;; Copyright © 2021 aecepoglu ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Xinglu Chen @@ -7639,7 +7639,7 @@ (define-public ocaml-cohttp (define-public js-of-ocaml (package (name "js-of-ocaml") - (version "3.11.0") + (version "4.0.0") (source (origin (method git-fetch) @@ -7648,20 +7648,9 @@ (define-public js-of-ocaml (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1x5f1ph9wgx0mgyibssssnrcwp69ihw66gzhsnz9h79czgzyjpp2")))) + (base32 "0iyhl9z57j53j2jvyqcwmxhbvy23l6g80aa0abmlgwam14yskspf")))) (build-system dune-build-system) - (arguments - `(#:test-target "." - #:phases - (modify-phases %standard-phases - (add-before 'check 'fix-failing-test - (lambda _ - ;; Formating difference - (with-output-to-file "compiler/tests-jsoo/bin/error2.expected" - (lambda _ - (format #t - "Fatal error: exception Match_failure(\ -\"compiler/tests-jsoo/bin/error2.ml\", 11, 2)\n\n")))))))) + (arguments `(#:test-target ".")) (propagated-inputs (list ocaml-ppxlib ocaml-uchar -- cgit v1.2.3 From 90547d6d505c0a998d5fe2f446f3cbaa2c1b1579 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:09:11 +0100 Subject: gnu: dune: Update to 2.9.3. * gnu/packages/ocaml.scm (dune-bootstrap): Update to 2.9.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fa6cdcb0d5..d1294518ad 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1656,7 +1656,7 @@ (define-public ocaml-stringext (define dune-bootstrap (package (name "dune") - (version "2.9.1") + (version "2.9.3") (source (origin (method git-fetch) (uri (git-reference @@ -1665,7 +1665,7 @@ (define dune-bootstrap (file-name (git-file-name name version)) (sha256 (base32 - "1lnah40pm9ndixz5hbsh67chvdspqpy26g6byb767vqgj7dbivfh")))) + "1b4rsqn6gf3cv46jgvrsq0xh9zfsaif810zpbvm0mv2bhphqfjk7")))) (build-system ocaml-build-system) (arguments `(#:tests? #f; require odoc -- cgit v1.2.3 From 040d12a2f6e1350fbbdb6f0cdc9bd9cb2acdcdd3 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:17:43 +0100 Subject: gnu: ocaml-odoc-parser: Update to 1.0.0. * gnu/packages/ocaml.scm (ocaml-odoc-parser): Update to 1.0.0. (ocamlformat): Update to 0.20.1. --- gnu/packages/ocaml.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d1294518ad..c71102e124 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6820,7 +6820,7 @@ (define-public ocaml-odoc (define-public ocaml-odoc-parser (package (name "ocaml-odoc-parser") - (version "0.9.0") + (version "1.0.0") (source (origin (method git-fetch) @@ -6830,7 +6830,7 @@ (define-public ocaml-odoc-parser (file-name (git-file-name name version)) (sha256 (base32 - "1jlc6dp3v90r1ra7r0jfw0xs8rylwdz9gymw4rd53h0p17cw1wnj")))) + "0mvwbnla0wd29bc7ckwpb494qv7p616cx8hnm0zg36np7v3zwy4w")))) (build-system dune-build-system) (propagated-inputs (list ocaml-astring ocaml-result)) @@ -7354,7 +7354,7 @@ (define-public ocaml-either (define-public ocamlformat (package (name "ocamlformat") - (version "0.20.0") + (version "0.20.1") (source (origin (method git-fetch) @@ -7364,7 +7364,7 @@ (define-public ocamlformat (file-name (git-file-name name version)) (sha256 (base32 - "0zhvhb8ky0danmfvp4vvbh0pg89d7r7ka6m3q81vlyvb7gk08r6r")))) + "1q78gxsz763d6vbi1lyfmn7733l10qhq80bchdli9zw7sggs7nq1")))) (build-system dune-build-system) (arguments '(#:package "ocamlformat" -- cgit v1.2.3 From a52ad7e8befc96fe32ecf413fd9830d84a5242ac Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:19:53 +0100 Subject: gnu: ocaml-ocp-index: Update to 1.3.3. * gnu/packages/ocaml.scm (ocaml-ocp-index): Update to 1.3.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c71102e124..b93a493dd9 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2958,7 +2958,7 @@ (define-public ocaml-ocp-indent (define-public ocaml-ocp-index (package (name "ocaml-ocp-index") - (version "1.3.2") + (version "1.3.3") (source (origin (method git-fetch) @@ -2968,7 +2968,7 @@ (define-public ocaml-ocp-index (file-name (git-file-name name version)) (sha256 (base32 - "0y7fk8s477f40vvbsp4ikxv1v51y6bzj416bh1sc3f17rbnczpkk")))) + "1gbigw5s2cafkr82n9vkxbb892qfkykj0adj0hrdkrkw8j6rfl0j")))) (build-system dune-build-system) (arguments `(#:package "ocp-index")) -- cgit v1.2.3 From 66c5d6e8d51a081e49a409d8be8ef0002f4b047c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:21:57 +0100 Subject: gnu: ocaml-fix: Update to 20220121. * gnu/packages/ocaml.scm (ocaml-fix): Update to 20220121. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index b93a493dd9..da8b2bc978 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7289,7 +7289,7 @@ (define-public ocaml-uuseg (define-public ocaml-fix (package (name "ocaml-fix") - (version "20211125") + (version "20220121") (source (origin (method git-fetch) @@ -7299,7 +7299,7 @@ (define-public ocaml-fix (file-name (git-file-name name version)) (sha256 (base32 - "00vq2das1l8xca013z7z7jy5622fsy3jha2cj72psp22wx9199l1")))) + "15785v43jcbqsw1y653cnb89alrcnbdri1h0w6zl6p7769ja9rdj")))) (build-system dune-build-system) (arguments ;; No tests. -- cgit v1.2.3 From 643c2fb44b3c60017a4feaf6d3cfffb6efb1e789 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 14:25:53 +0100 Subject: gnu: ocaml-bisect-ppx: Update to 2.7.1. * gnu/packages/ocaml.scm (ocaml-bisect-ppx): Update to 2.7.1. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index da8b2bc978..5f25f4341a 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6703,7 +6703,7 @@ (define-public ocaml4.07-tyxml (define-public ocaml-bisect-ppx (package (name "ocaml-bisect-ppx") - (version "2.6.1") + (version "2.7.1") (source (origin (method git-fetch) @@ -6713,7 +6713,7 @@ (define-public ocaml-bisect-ppx (file-name (git-file-name name version)) (sha256 (base32 - "1knglw1b2kjr9jnd8cpfzmm581abxxdcx9l3cd2balg6gnac7qk1")))) + "02sn1a9anyksd2lpd9xryrxsx76xg99c7mx1mq6b5q09r9b060d4")))) (build-system dune-build-system) (propagated-inputs (list ocaml-ppxlib ocaml-cmdliner)) -- cgit v1.2.3 From 89d4cf2a873de9fd2b2c3afe011b0355fdf3f2c1 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:30:18 +0100 Subject: gnu: ocaml-ounit2: Update to 2.2.5. * gnu/packages/ocaml.scm (ocaml-ounit2): Update to 2.2.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 5f25f4341a..f1ecfa70df 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1338,7 +1338,7 @@ (define-public ocaml4.09-findlib (define-public ocaml-ounit2 (package (name "ocaml-ounit2") - (version "2.2.4") + (version "2.2.5") (source (origin (method git-fetch) (uri (git-reference @@ -1347,7 +1347,7 @@ (define-public ocaml-ounit2 (file-name (git-file-name name version)) (sha256 (base32 - "0gxjw1bhmjcjzri6x6psqrkbbyq678b69bqfl9i1zswp7cj2lryg")))) + "1frdfnal6zl46dq5vlxz1ks28bf9x57zgik2cc65izji0ymr7pis")))) (build-system dune-build-system) (propagated-inputs (list ocaml-lwt ocaml-stdlib-shims)) -- cgit v1.2.3 From ca79fc5b14ab3e0c98221fb55bc29cfa54973363 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:36:09 +0100 Subject: gnu: ocaml-rresult: Update to 0.7.0. * gnu/packages/ocaml.scm (ocaml-rresult): Update to 0.7.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f1ecfa70df..f955bdfd55 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2006,14 +2006,14 @@ (define-public ocaml-topkg (define-public ocaml-rresult (package (name "ocaml-rresult") - (version "0.5.0") + (version "0.7.0") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/rresult/releases/" "rresult-" version ".tbz")) (sha256 (base32 - "1xxycxhdhaq8p9vhwi93s2mlxjwgm44fcxybx5vghzgbankz9yhm")))) + "0h2mjyzhay1p4k7n0mzaa7hlc7875kiy6m1i3r1n03j6hddpzahi")))) (build-system ocaml-build-system) (native-inputs (list opam ocamlbuild)) -- cgit v1.2.3 From 18a588773e21291452744263a0f641d01b75f22c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 16:43:15 +0100 Subject: gnu: ocaml-ctypes: Update to 0.20.0. * gnu/packages/ocaml.scm (ocaml-ctypes): Update to 0.20.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f955bdfd55..fcfbe4c191 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4209,7 +4209,7 @@ (define-public ocaml-integers (define-public ocaml-ctypes (package (name "ocaml-ctypes") - (version "0.19.1") + (version "0.20.0") (home-page "https://github.com/ocamllabs/ocaml-ctypes") (source (origin (method git-fetch) @@ -4219,7 +4219,7 @@ (define-public ocaml-ctypes (file-name (git-file-name name version)) (sha256 (base32 - "1xi1a486gssrb23zln3sf7zn0rmyl1k684bdf9iqkhgpz607fq6s")))) + "13mq6i08f217fj2lq55psji453nmqp136sjxhg25hjb2z0gv9gky")))) (build-system ocaml-build-system) (arguments `(#:make-flags -- cgit v1.2.3 From 877da38bd3f279d5618d6c6517f48b50541a1e4c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Feb 2022 17:57:55 +0100 Subject: gnu: ocaml-lwt: Update to 5.5.0. * gnu/packages/ocaml.scm (ocaml-lwt): Update to 5.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fcfbe4c191..aa810f2414 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2463,7 +2463,7 @@ (define-public ocaml-mmap (define-public ocaml-lwt (package (name "ocaml-lwt") - (version "5.4.2") + (version "5.5.0") (source (origin (method git-fetch) @@ -2472,7 +2472,7 @@ (define-public ocaml-lwt (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "1gkld5ms63lxkaa41jfg8y34qm5lb3ls6mkw03s760zln8i1k3gy")))) + "1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z")))) (build-system dune-build-system) (arguments `(#:package "lwt")) -- cgit v1.2.3 From 3e882e84667d8f072740c787f315df96683b1344 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:43:48 +0100 Subject: gnu: ocaml-mccs: Update to 1.1+13. * gnu/packages/ocaml.scm (ocaml-mccs): Update to 1.1+13. --- gnu/packages/ocaml.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index aa810f2414..591503c061 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016 Eric Bavier ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner -;;; Copyright © 2016-2021 Julien Lepiller +;;; Copyright © 2016-2022 Julien Lepiller ;;; Copyright © 2017 Ben Woodcroft ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018 Peter Kreye @@ -620,7 +620,7 @@ (define-public ocaml-cudf (define-public ocaml-mccs (package (name "ocaml-mccs") - (version "1.1+11") + (version "1.1+13") (source (origin (method git-fetch) (uri (git-reference @@ -629,7 +629,7 @@ (define-public ocaml-mccs (file-name (git-file-name name version)) (sha256 (base32 - "1gsad5cj03256i36wdjqk5pg51pyd48rpjazf0gfaakrn8lk438g")))) + "15slv97jlvbaxj221wp4sjxk4lbdfyj9vcig0jwd4n54v89ksvib")))) (build-system dune-build-system) (propagated-inputs (list ocaml-cudf)) (home-page "https://www.i3s.unice.fr/~cpjm/misc/") -- cgit v1.2.3 From d782c633fa558356ff7ebed63e1644307c316039 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:46:25 +0100 Subject: gnu: ocaml-gen: Update to 1.0. * gnu/packages/ocaml.scm (ocaml-gen): Update to 1.0. --- gnu/packages/ocaml.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 591503c061..134f74625b 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2665,22 +2665,22 @@ (define-public ocaml-xmlm (define-public ocaml-gen (package (name "ocaml-gen") - (version "0.5.3") + (version "1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/c-cube/gen") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1jzrs0nsdk55annkd2zrk5svi61i3b1nk6qyqdc2y26vnzqvzfg8")))) + "1z5nw5wljvcqp8q07h336bbvf9paynia0jsdh4486hlkbmr1ask1")))) (build-system dune-build-system) (arguments `(#:package "gen" #:test-target ".")) (propagated-inputs - (list ocaml-odoc)) + (list ocaml-odoc ocaml-seq)) (native-inputs (list ocaml-qtest ocaml-qcheck)) (home-page "https://github.com/c-cube/gen/") -- cgit v1.2.3 From 84e304b56d6b42bdf03da837cf612e2407a38b41 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:48:33 +0100 Subject: gnu: ocaml-sedlex: Update to 2.5. * gnu/packages/ocaml.scm (ocaml-sedlex): Update to 2.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 134f74625b..74ecab8f74 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2692,7 +2692,7 @@ (define-public ocaml-gen (define-public ocaml-sedlex (package (name "ocaml-sedlex") - (version "2.4") + (version "2.5") (source (origin (method git-fetch) (uri (git-reference @@ -2701,7 +2701,7 @@ (define-public ocaml-sedlex (file-name (git-file-name name version)) (sha256 (base32 - "13g8az4zqg6hrnxmy3qrasslppzlag13dd1dsr8vlpg2vpfmfv6i")))) + "062a5dvrzvb81l3a9phljrhxfw9nlb61q341q0a6xn65hll3z2wy")))) (build-system dune-build-system) (arguments `(#:tests? #f ; no tests -- cgit v1.2.3 From 5ce3d41d56e0c1b159e0a48f6e3f3164d2d3f2c8 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:54:16 +0100 Subject: gnu: ocaml-cohttp: Update to 5.0.0. * gnu/packages/ocaml.scm (ocaml-cohttp): Update to 5.0.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 74ecab8f74..711c873d25 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7603,7 +7603,7 @@ (define-public ocaml-uri-sexp (define-public ocaml-cohttp (package (name "ocaml-cohttp") - (version "4.0.0") + (version "5.0.0") (source (origin (method git-fetch) @@ -7613,7 +7613,7 @@ (define-public ocaml-cohttp (file-name (git-file-name name version)) (sha256 (base32 - "02d7417yy1i62by368w3wyw3756047pbrw69spcvz3cd1z7vqaci")))) + "074xis3wmr76gadh1ffmfzjfx13mw4kr2s6rkwqwzcl6l85n9x2z")))) (build-system dune-build-system) (arguments '(#:package "cohttp" -- cgit v1.2.3 From 589c99e6f6ef17f30c541042768557a72706df47 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 10:56:33 +0100 Subject: gnu: ocaml-utop: Update to 2.9.0. * gnu/packages/ocaml.scm (ocaml-utop): Update to 2.9.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 711c873d25..fbdc5557e3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4135,7 +4135,7 @@ (define-public ocaml4.07-lambda-term (define-public ocaml-utop (package (name "ocaml-utop") - (version "2.8.0") + (version "2.9.0") (source (origin (method git-fetch) @@ -4144,7 +4144,7 @@ (define-public ocaml-utop (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1zf4hg33sblzh2f65vk0292jg4jlwa8702kfwpsg1kcg4w6nsfdp")))) + (base32 "1mdpqc1b67p5rm2jsbwy0gjjgdlfqcakjyh1cwdj959ykz4zy9ld")))) (build-system dune-build-system) (arguments `(#:test-target ".")) -- cgit v1.2.3 From 370da71d24ec99c66ca9eb6ce7e6848e1cb3c713 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:19:07 +0100 Subject: gnu: ocaml-batteries: Update to 3.5.0. * gnu/packages/ocaml.scm (ocaml-batteries): Update to 3.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fbdc5557e3..fa51f08ac5 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3170,7 +3170,7 @@ (define-public ocaml-benchmark (define-public ocaml-batteries (package (name "ocaml-batteries") - (version "3.4.0") + (version "3.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -3179,7 +3179,7 @@ (define-public ocaml-batteries (file-name (git-file-name name version)) (sha256 (base32 - "1cd7475n1mxhq482aidmhh27mq5p2vmb8d9fkb1mlza9pz5z66yq")))) + "1w2fb47vgifj4iws0s8r531n0p9khq92n7gwcs7caj5bbzfc5zdx")))) (build-system ocaml-build-system) (propagated-inputs (list ocaml-num)) (native-inputs -- cgit v1.2.3 From 8fb772bc064ea468a8def73ae40dd1c06d2f7095 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:35:56 +0100 Subject: gnu: ocaml-lwt-react: Update to 1.1.5. * gnu/packages/ocaml.scm (ocaml-lwt-react): Update to 1.1.5. --- gnu/packages/ocaml.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fa51f08ac5..3e632e2be6 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2494,17 +2494,17 @@ (define-public ocaml-lwt-react (package (inherit ocaml-lwt) (name "ocaml-lwt-react") - (version "1.1.4") + (version "1.1.5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ocsigen/lwt") ;; Version from opam - (commit "5.4.0"))) + (commit "5.5.0"))) (file-name (git-file-name name version)) (sha256 (base32 - "1ay1zgadnw19r9hl2awfjr22n37l7rzxd9v73pjbahavwm2ay65d")))) + "1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z")))) (arguments `(#:package "lwt_react")) (properties `((upstream-name . "lwt_react"))) -- cgit v1.2.3 From bb5dfd6ede2dcb7134b69e06614fee31ed829de4 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 11:53:25 +0100 Subject: gnu: ocaml-sqlite3: Update to 5.1.0. * gnu/packages/ocaml.scm (ocaml-sqlite3): Update to 5.1.0. (ocaml4.07-sqlite3): Stay at 5.0.2. --- gnu/packages/ocaml.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3e632e2be6..d1e1d9965d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2036,7 +2036,7 @@ (define-public ocaml-rresult (define-public ocaml-sqlite3 (package (name "ocaml-sqlite3") - (version "5.0.2") + (version "5.1.0") (source (origin (method git-fetch) @@ -2046,7 +2046,7 @@ (define-public ocaml-sqlite3 (file-name (git-file-name name version)) (sha256 (base32 - "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f")))) + "1ksm0a490315sf0yy8lmva5f3bgr0jnllffanyq89431grpj6x15")))) (build-system dune-build-system) (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sqlite3)))) (propagated-inputs @@ -2068,6 +2068,17 @@ (define-public ocaml4.07-sqlite3 (package-with-ocaml4.07 (package (inherit ocaml-sqlite3) + (version "5.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mmottl/sqlite3-ocaml") + (commit version))) + (file-name (git-file-name "ocaml-sqlite3" version)) + (sha256 + (base32 + "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f")))) (arguments `(#:phases (modify-phases %standard-phases -- cgit v1.2.3 From 475b44c9a9b88e9f1b42fc2f29b60b61fc548a43 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 12:22:44 +0100 Subject: gnu: ocaml-base: Update to 0.14.3. * gnu/packages/ocaml.scm (ocaml-base): Update to 0.14.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d1e1d9965d..909d9f8736 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5051,7 +5051,7 @@ (define-public ocaml4.07-sexplib (define-public ocaml-base (package (name "ocaml-base") - (version "0.14.1") + (version "0.14.3") (home-page "https://github.com/janestreet/base") (source (origin @@ -5062,7 +5062,7 @@ (define-public ocaml-base (file-name (git-file-name name version)) (sha256 (base32 - "1hizjxmiqlj2zzkwplzjamw9rbnl0kh44sxgjpzdij99qnfkzylf")))) + "1cqpdpvhr4zns1lpdm2w0p6q400mc1z91hd716mb062ng83n2nsf")))) (build-system dune-build-system) (propagated-inputs (list ocaml-sexplib0)) -- cgit v1.2.3 From 1a97471939e28884dee4d239bea65aa8a68f58e2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:01:39 +0100 Subject: gnu: ocaml-topkg: Update to 1.0.5. * gnu/packages/ocaml.scm (ocaml-topkg): Update to 1.0.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 909d9f8736..151499c3ef 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1976,14 +1976,14 @@ (define-public ocaml4.09-result (define-public ocaml-topkg (package (name "ocaml-topkg") - (version "1.0.4") + (version "1.0.5") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/topkg/releases/" "topkg-" version ".tbz")) (sha256 (base32 - "1kzw5cxkizcvh4rgzwgpjlj9hfxfk6yr686bxx6wrbsfs8as371k")))) + "1iyinmcfqpprk7k4cc51nqgypayprbj4larwcfqw86k5dri84825")))) (build-system ocaml-build-system) (native-inputs (list opam ocamlbuild)) -- cgit v1.2.3 From 8dfc0efd9245b881f7d19bcc54fc40f15b845ac2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:05:02 +0100 Subject: gnu: ocaml-mdx: Update to 2.1.0. * gnu/packages/ocaml.scm (ocaml-mdx): Update to 2.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 151499c3ef..16eab94542 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7008,7 +7008,7 @@ (define-public ocaml-version (define-public ocaml-mdx (package (name "ocaml-mdx") - (version "1.11.0") + (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference @@ -7017,7 +7017,7 @@ (define-public ocaml-mdx (file-name (git-file-name name version)) (sha256 (base32 - "1w2vx4my9z6n57vjvsa3b9vwkbdzs1kq0cc58rf088qrh2lrx2ba")))) + "1w1givvhwv9jzj9zbg4mmlpb35sqi75w83r99p2z50bdr69fdf57")))) (build-system dune-build-system) (inputs (list ocaml-fmt -- cgit v1.2.3 From 13ac9e11adc22768d21f5f778250e01f5f516692 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 13:50:11 +0100 Subject: gnu: ocaml-pcre: Update to 7.5.0. * gnu/packages/ocaml.scm (ocaml-pcre): Update to 7.5.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 16eab94542..3199b84d39 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3266,7 +3266,7 @@ (define-public ocaml4.07-batteries (define-public ocaml-pcre (package (name "ocaml-pcre") - (version "7.4.6") + (version "7.5.0") (source (origin (method git-fetch) @@ -3276,7 +3276,7 @@ (define-public ocaml-pcre (file-name (git-file-name name version)) (sha256 (base32 - "11mck879p5zvkghps4ky8yslm0isgz52d84adl0dmcfxv2ibvcym")))) + "048k1rl17fcml000yh8fnghk1a06h14lbyrnk9nbigxsymrz6cq2")))) (build-system dune-build-system) (arguments ;; No tests. -- cgit v1.2.3 From 2cabfdfc86933bdc001453457b337d6f7b10aab9 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:06:09 +0100 Subject: gnu: ocaml-menhir: Update to 20211230. * gnu/packages/ocaml.scm (ocaml-menhir): Update to 20211230. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3199b84d39..3c01ea6020 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1062,7 +1062,7 @@ (define-public emacs-tuareg (define-public ocaml-menhir (package (name "ocaml-menhir") - (version "20211012") + (version "20211230") (source (origin (method git-fetch) @@ -1071,7 +1071,7 @@ (define-public ocaml-menhir (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "08kf5apbv15n2kcr3qhyr3rvsf2lg25ackr3x9kfgiiqc0p3sz40")))) + (base32 "177gfp23gxc84j5pv2mqkza1ggg6rskvfwwjg229ba1457inayzs")))) (build-system dune-build-system) (inputs (list ocaml)) -- cgit v1.2.3 From 60356cc029b21eb2fd5660cac5476c8f64a2e00a Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:22:37 +0100 Subject: gnu: ocaml-ocurl: Update to 0.9.2. * gnu/packages/ocaml.scm (ocaml-ocurl): Update to 0.9.2. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3c01ea6020..cd833b6073 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3000,14 +3000,14 @@ (define-public ocaml-ocp-index (define-public ocaml-ocurl (package (name "ocaml-ocurl") - (version "0.9.1") + (version "0.9.2") (source (origin (method url-fetch) (uri (string-append "http://ygrek.org.ua/p/release/ocurl/ocurl-" version ".tar.gz")) (sha256 (base32 - "0n621cxb9012pj280c7821qqsdhypj8qy9qgrah79dkh6a8h2py6")))) + "0qvpsqbq4qbd397n0nlv9cwlqfyjw7gfb5mmq1awvnklr0c9fdg0")))) (build-system ocaml-build-system) (arguments `(#:phases -- cgit v1.2.3 From a041609a82af9384972581d337f31b2a988d478f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 14:24:06 +0100 Subject: gnu: ocaml-parsexp: Update to 0.14.2. * gnu/packages/ocaml.scm (ocaml-parsexp): Update to 0.14.2. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index cd833b6073..e0fbab7de3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4965,7 +4965,7 @@ (define-public ocaml4.07-sexplib0 (define-public ocaml-parsexp (package (name "ocaml-parsexp") - (version "0.14.1") + (version "0.14.2") (home-page "https://github.com/janestreet/parsexp") (source (origin (method git-fetch) @@ -4975,7 +4975,7 @@ (define-public ocaml-parsexp (file-name (git-file-name name version)) (sha256 (base32 - "1nr0ncb8l2mkk8pqzknr7fsqw5kpz8y102kyv5bc0x7c36v0d4zy")))) + "14yi0licf1cp6b7qny5pz6dmlalqdksx0m0kzcrwi6byjxwjkbi9")))) (build-system dune-build-system) (inputs (list ocaml-sexplib0 ocaml-base)) -- cgit v1.2.3 From d7e1c5acb3c8282c6a568d97ab164db82e33324f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 4 Feb 2022 16:43:38 +0100 Subject: gnu: ocaml-bigarray-compat: Update to 1.1.0. * gnu/packages/ocaml.scm (ocaml-bigarray-compat): Update to 1.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index e0fbab7de3..150ce3157f 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1092,7 +1092,7 @@ (define-public ocaml-menhir (define-public ocaml-bigarray-compat (package (name "ocaml-bigarray-compat") - (version "1.0.0") + (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference @@ -1101,7 +1101,7 @@ (define-public ocaml-bigarray-compat (file-name (git-file-name name version)) (sha256 (base32 - "06j1dwlpisxshdd0nab4n4x266gg1s1n8na16lpgw3fvcznwnimz")))) + "0hif5baiwswdblymyfbxh9066pfqynlz5vj3b2brpn0a12k6i5fq")))) (build-system dune-build-system) (arguments `(#:tests? #f)); no tests -- cgit v1.2.3 From c8b5f9daf5a5aed503c70ed7b3477d4edfd4f523 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 19:30:24 +0100 Subject: gnu: ocaml-qcheck: Update to 0.18.1. * gnu/packages/ocaml.scm (ocaml-qcheck): Update to 0.18.1. * gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/local.mk | 1 - gnu/packages/ocaml.scm | 14 +++---------- .../patches/ocaml-qcheck-fix-test-whitespace.patch | 24 ---------------------- 3 files changed, 3 insertions(+), 36 deletions(-) delete mode 100644 gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/local.mk b/gnu/local.mk index 3ae66803f2..38eed6bbae 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1570,7 +1570,6 @@ dist_patch_DATA = \ %D%/packages/patches/ocaml-dose3-Install-mli-cmx-etc.patch \ %D%/packages/patches/ocaml-multiple-definitions.patch \ %D%/packages/patches/ocaml-4.09-multiple-definitions.patch \ - %D%/packages/patches/ocaml-qcheck-fix-test-whitespace.patch \ %D%/packages/patches/omake-fix-non-determinism.patch \ %D%/packages/patches/oneko-remove-nonfree-characters.patch \ %D%/packages/patches/onnx-optimizer-system-library.patch \ diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 150ce3157f..6b743f8892 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1548,7 +1548,7 @@ (define-public ocaml4.07-frontc (define-public ocaml-qcheck (package (name "ocaml-qcheck") - (version "0.18") + (version "0.18.1") (source (origin (method git-fetch) @@ -1556,19 +1556,11 @@ (define-public ocaml-qcheck (url "https://github.com/c-cube/qcheck") (commit (string-append "v" version)))) (file-name (git-file-name name version)) - (patches (search-patches "ocaml-qcheck-fix-test-whitespace.patch")) (sha256 - (base32 "1s652hrj2sxqj30dfl300zjvvqk3r62a1bnzqw1hqyf6pi88qn8x")))) + (base32 "0g3r8lrw6fsdphgpnp08saxyxk1vd3chpmb564ir2qnsp716vz6z")))) (build-system dune-build-system) (arguments - `(#:test-target "." - #:phases - (modify-phases %standard-phases - (add-before 'build 'fix-deprecated - (lambda _ - (substitute* "src/core/QCheck.ml" - (("Pervasives.compare") "compare")) - #t))))) + `(#:test-target ".")) (propagated-inputs (list ocaml-alcotest ocaml-ounit)) (native-inputs diff --git a/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch b/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch deleted file mode 100644 index 012f5de31c..0000000000 --- a/gnu/packages/patches/ocaml-qcheck-fix-test-whitespace.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 0cb666fffcbeb78c8c14d271b3ba65ea514bfc44 Mon Sep 17 00:00:00 2001 -From: Julien Lepiller -Date: Fri, 19 Nov 2021 03:03:21 +0100 -Subject: [PATCH] Fix whitespace issue in test - ---- - example/alcotest/output.txt.expected | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/example/alcotest/output.txt.expected b/example/alcotest/output.txt.expected -index bde0b83..9f1417c 100644 ---- a/example/alcotest/output.txt.expected -+++ b/example/alcotest/output.txt.expected -@@ -16,7 +16,6 @@ test `fail_sort_id` failed on ≥ 1 cases: [1; 0] (after 20 shrink steps) - [exception] test `fail_sort_id` failed on ≥ 1 cases: [1; 0] (after 20 shrink steps) - - -- - ────────────────────────────────────────────────────────────────────────────── - - 3 failures! 5 tests run. --- -2.33.1 - -- cgit v1.2.3 From cceb4d34126208c32f1224af50784cb4408922ea Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 20:06:36 +0100 Subject: gnu: ocaml-uutf: Update to 1.0.3. * gnu/packages/ocaml.scm (ocaml-uutf): Update to 1.0.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6b743f8892..4a88d17f6c 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2809,14 +2809,14 @@ (define-public ocaml-uchar (define-public ocaml-uutf (package (name "ocaml-uutf") - (version "1.0.1") + (version "1.0.3") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/uutf/releases/" "uutf-" version ".tbz")) (sha256 (base32 - "1gp96dcggq7s84934vimxh89caaxa77lqiff1yywbwkilkkjcfqj")))) + "0s05r8ggp1g97zq4rnvbxzj22pv8ld0k5wsdw662jw0y7mhsawl7")))) (build-system ocaml-build-system) (arguments `(#:tests? #f -- cgit v1.2.3 From 99a9b28806f42362547d086bc2ccd4fc5d03547f Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 20:40:20 +0100 Subject: gnu: ocaml-integers: Update to 0.6.0. * gnu/packages/ocaml.scm (ocaml-integers): Update to 0.6.0. --- gnu/packages/ocaml.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 4a88d17f6c..097a67f20b 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4189,7 +4189,7 @@ (define-public ocaml4.07-utop (define-public ocaml-integers (package (name "ocaml-integers") - (version "0.5.1") + (version "0.6.0") (home-page "https://github.com/ocamllabs/ocaml-integers") (source (origin (method git-fetch) @@ -4199,10 +4199,12 @@ (define-public ocaml-integers (file-name (git-file-name name version)) (sha256 (base32 - "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi")))) + "07qk7dgxykn528qvhfwa0j402yr58y1y84ivpi1ji1lvk0qddxcs")))) (build-system dune-build-system) (arguments `(#:tests? #f)) ; no tests + (propagated-inputs + (list ocaml-stdlib-shims)) (synopsis "Various signed and unsigned integer types for OCaml") (description "The ocaml-integers library provides a number of 8-, 16-, 32- and 64-bit signed and unsigned integer types, together with aliases such as -- cgit v1.2.3 From d0e7bca44239576d16462698b24a77e0dafa31e8 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Feb 2022 21:38:42 +0100 Subject: gnu: ocaml-findlib: Update to 1.9.3. * gnu/packages/ocaml.scm (ocaml-findlib): Update to 1.9.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 097a67f20b..a93a5bf897 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1273,14 +1273,14 @@ (define-public unison (define-public ocaml-findlib (package (name "ocaml-findlib") - (version "1.9.1") + (version "1.9.3") (source (origin (method url-fetch) (uri (string-append "http://download.camlcity.org/download/" "findlib" "-" version ".tar.gz")) (sha256 (base32 - "1qhgk25avmz4l4g47g8jvk0k1g9p9d5hbdrwpz2693a8ajyvhhib")))) + "0hfcwamcvinmww59b5i4yxbf0kxyzkp5qv3d1c7ybn9q52vgq463")))) (build-system gnu-build-system) (native-inputs (list m4 ocaml)) -- cgit v1.2.3 From ec5d2b54cd0c96276f4feaae863a18bc3e73ecae Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 8 Feb 2022 15:31:57 +0100 Subject: gnu: ocaml-fftw3: Update to 0.8.5. * gnu/packages/ocaml.scm (ocaml-fftw3): Update to 0.8.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index a93a5bf897..d0cfafbab4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6887,7 +6887,7 @@ (define-public ocaml4.07-odoc (define-public ocaml-fftw3 (package (name "ocaml-fftw3") - (version "0.8.4") + (version "0.8.5") (source (origin (method git-fetch) @@ -6897,7 +6897,7 @@ (define-public ocaml-fftw3 (file-name (git-file-name name version)) (sha256 (base32 - "0l66yagjkwdcib6q55wd8wiap50vi23qiahkghlvm28z7nvbclfk")))) + "07ljbin9dsclsqh24p7haqjccz1w828sf5xfwlzl298d4a6zsbhs")))) (build-system dune-build-system) (arguments `(#:test-target "tests")) -- cgit v1.2.3 From 9aa69b37c07b45c04f4bd3619936413ad24f40c2 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 15:52:21 +0100 Subject: gnu: ocaml-ppxlib: Update to 0.24.0. * gnu/packages/ocaml.scm (ocaml-ppxlib): Update to 0.24.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d0cfafbab4..d65e6a26c4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5227,7 +5227,7 @@ (define-public ocaml-ppx-derivers (define-public ocaml-ppxlib (package (name "ocaml-ppxlib") - (version "0.23.0") + (version "0.24.0") (home-page "https://github.com/ocaml-ppx/ppxlib") (source (origin @@ -5238,7 +5238,7 @@ (define-public ocaml-ppxlib (file-name (git-file-name name version)) (sha256 (base32 - "0jg5v4pssbl66hn5davpin1i57a0r3r54l96vpz5y99xk5w70xi1")))) + "1nkkdvqifa36hxj6msd74ld4dfd749d6d9ygfj7zsm328rqvpqf2")))) (build-system dune-build-system) (propagated-inputs (list ocaml-base -- cgit v1.2.3 From 060e6e711cbe40b43ece5442a4200e966ac29041 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 16:00:21 +0100 Subject: gnu: ocaml-xmlm: Update to 1.4.0. * gnu/packages/ocaml.scm (ocaml-xmlm): Update to 1.4.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d65e6a26c4..1482696836 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2641,14 +2641,14 @@ (define-public ocaml-bos (define-public ocaml-xmlm (package (name "ocaml-xmlm") - (version "1.3.0") + (version "1.4.0") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/xmlm/releases/" "xmlm-" version ".tbz")) (sha256 (base32 - "1rrdxg5kh9zaqmgapy9bhdqyxbbvxxib3bdfg1vhw4rrkp1z0x8n")))) + "1ynrjba3wm3axscvggrfijfgsznmphhxnkffqch67l9xiqjm44h9")))) (build-system ocaml-build-system) (arguments `(#:tests? #f -- cgit v1.2.3 From 4dffeced6c6e1c4ce141a76ad1f2323f6541bace Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 10 Feb 2022 16:05:26 +0100 Subject: gnu: ocaml-odoc: Update to 2.1.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/ocaml.scm') diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 1482696836..b34013cc31 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6768,7 +6768,7 @@ (define-public ocaml4.07-bisect-ppx (define-public ocaml-odoc (package (name "ocaml-odoc") - (version "2.0.2") + (version "2.1.0") (source (origin (method git-fetch) @@ -6777,7 +6777,7 @@ (define-public ocaml-odoc (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "06rm1bhfp2yvkvidksndwii9v074r0lc9sqfp60q8mfcfd7pj7rx")))) + (base32 "1ycb468pc6vsvqj176j99bmbkrr9saxvyn9qhpazi01abbcq5d90")))) (build-system dune-build-system) (arguments `(#:phases -- cgit v1.2.3