From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:45:53 2020 Received: (at submit) by debbugs.gnu.org; 1 Oct 2020 13:45:53 +0000 Received: from localhost ([127.0.0.1]:34869 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNyu8-0001nt-Iy for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:45:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:50642) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNyu7-0001nl-8p for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:45:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53534) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kNyu4-0001Kc-J7 for guix-patches@gnu.org; Thu, 01 Oct 2020 09:45:49 -0400 Received: from lepiller.eu ([2a00:5884:8208::1]:45650) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kNyu1-0002eO-89 for guix-patches@gnu.org; Thu, 01 Oct 2020 09:45:48 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 877f419b for ; Thu, 1 Oct 2020 13:45:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:subject:message-id:mime-version:content-type :content-transfer-encoding; s=dkim; bh=jpxtAkNsCl9pxIxDFlF96NvWd 18SCKn+VHyZJhtdFfs=; b=j4Cz00m61IUyK/sLeW71C1kxFw71ThwuB0Bu4JbcL WzJHtn5Vx/6Ni/sUs/cyyRL3ztQfATydqRyeDwP3GzjeTebs4I4+6VHuMjDNugeF u0mrZazJR+xQguragID+scWZ0WU/TQyF4ijlrk04Dqz/CDo3QRJ/guUYRSB6fS8n BdHbKs6m4cRdw1IVDJ7b0g3J0ylI9yQ8c4kJeQSNdolU50kkRcqk9ytGicHwzq57 GRnBlzQgT4OUsj5hTumlOdOpScDHe3WC0v+TRxZUT+bGLhE5zLtGXVd0cqLqlEuT 0YFaUvkNwZaZ63ZUIQJgwJL6mgdwgmFaONxJ0pU2AJrpQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 3288019a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Thu, 1 Oct 2020 13:45:37 +0000 (UTC) Date: Thu, 1 Oct 2020 15:39:09 +0200 From: Julien Lepiller To: guix-patches@gnu.org Subject: [PATCH] gnu: dune: Update to 2.7.1. Message-ID: <20201001153909.296c8d3e@tachikoma.lepiller.eu> X-Mailer: Claws Mail 3.17.6 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=2a00:5884:8208::1; envelope-from=julien@lepiller.eu; helo=lepiller.eu X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hi Guix! This patch series updates dune to 2.7.1. The first patch is unrelated, but reduces the number of dependents of ocaml-4.07, which I'd like to remove in the future, by building unison with 4.09. Then, 4 updates that are required, or they fail to build with the newer dune. Since dune 2 removed jbuilder entirely, we need to get rid of every use of the #:jbuild argument, which I do in the following patches. I add stdlib-shims, which is required for other updates later in the series. I then update 6 more packages, that fail in their current version with dune 2, but whose updated version work well with dune 1 and 2. I add csexp, which is a dependency of dune-configurator 2, convert compiler-libs and jane-street-headers to ocaml-4.07 only (so they don't need to be updated for now, as that would create all sorts of issues). The penultimate patch ensures we build all ocaml4.07- packages with ocaml4.07-dune, which was not a problem before but... The last patch updates dune to 2.7.1, and keeps ocaml4.07-dune at its current version, which causes problems when mixing the two, hence the previous patch. The reason for preserving the version of ocaml4.07-dune is that many dependents were created for jbuilder, so we'd need to change many of them in order to update ocaml4.07-dune. In the future, I'd like to add ocaml 4.11, update bap and maybe some other packages to use ocaml 4.09, and remove 4.07, eliminating dune 1 completely. From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:16 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:16 +0000 Received: from localhost ([127.0.0.1]:34884 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywL-0001sp-NT for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:16 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywG-0001sR-2B for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:07 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id c2eb7b06 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=EwRuLPrd2+LUBZlOIdbI5P9Lk mKac9Ww8FSAdvZyn4g=; b=Mwkmb0A08ICl0hnE6yaI81hK5qKk7jZly2OkE5eu9 KVjAwtmrltVTwnBDoucDXAXIUezbBgmSOelVnaYeUUU5aRdRhoO4NWcjnCUotHh0 Gh2djXKB3ryKNgEnqfP9dZAUx1RS68Ji9i6VLV16k5+X4Q9mr5BgOV53OOpBJutK TSU4c6tAyLHbi8HtdxuBlgt9GKTPCoN5v9gGz+TxtwK0N8zenAr/N1xcNlf3FFti JT0lT1Y8RcpqasDzr2N+/XZ7wpNV86hzToZLRQyAEwUQrd4aQds3wMbvzunzdzLV Mj/WtrVOMeA/ROBh084qjpIe+4RZxDkYt2XGbbf8g4z7Q== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 7354fb81 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:01 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 01/27] gnu: unison: Build with ocaml-4.09. Date: Thu, 1 Oct 2020 15:41:07 +0200 Message-Id: <20201001134133.32105-1-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001153909.296c8d3e@tachikoma.lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (unison)[sources]: Add an upstream patch. [native-inputs]: Use ocaml-4.09. * gnu/packages/patches/unison-fix-ocaml-4.08.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. --- gnu/local.mk | 1 + gnu/packages/ocaml.scm | 5 +- .../patches/unison-fix-ocaml-4.08.patch | 76 +++++++++++++++++++ 3 files changed, 80 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/unison-fix-ocaml-4.08.patch diff --git a/gnu/local.mk b/gnu/local.mk index a278c83553..2a1a0ae059 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1633,6 +1633,7 @@ dist_patch_DATA = \ %D%/packages/patches/ucx-tcp-iface-ioctl.patch \ %D%/packages/patches/udiskie-no-appindicator.patch \ %D%/packages/patches/ungoogled-chromium-system-nspr.patch \ + %D%/packages/patches/unison-fix-ocaml-4.08.patch \ %D%/packages/patches/unknown-horizons-python-3.8-distro.patch \ %D%/packages/patches/unzip-CVE-2014-8139.patch \ %D%/packages/patches/unzip-CVE-2014-8140.patch \ diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d61948afc3..394db50150 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -861,12 +861,13 @@ libpanel, librsvg and quartz.") (file-name (git-file-name name version)) (sha256 (base32 - "1bykiyc0dc5pkw8x370qkg2kygq9pq7yqzsgczd3y13b6ivm4sdq")))) + "1bykiyc0dc5pkw8x370qkg2kygq9pq7yqzsgczd3y13b6ivm4sdq")) + (patches (search-patches "unison-fix-ocaml-4.08.patch")))) (build-system gnu-build-system) (outputs '("out" "doc")) ; 1.9 MiB of documentation (native-inputs - `(("ocaml" ,ocaml-4.07) + `(("ocaml" ,ocaml-4.09) ;; For documentation ("ghostscript" ,ghostscript) ("texlive" ,texlive-tiny) diff --git a/gnu/packages/patches/unison-fix-ocaml-4.08.patch b/gnu/packages/patches/unison-fix-ocaml-4.08.patch new file mode 100644 index 0000000000..4b6e6b6564 --- /dev/null +++ b/gnu/packages/patches/unison-fix-ocaml-4.08.patch @@ -0,0 +1,76 @@ +diff --git a/src/Makefile.OCaml b/src/Makefile.OCaml +index 7cefa2e..378fc8b 100644 +--- a/src/Makefile.OCaml ++++ b/src/Makefile.OCaml +@@ -272,7 +272,7 @@ endif + + # Gtk GUI + ifeq ($(UISTYLE), gtk) +- CAMLFLAGS+=-I +lablgtk ++ CAMLFLAGS+=-I $(LABLGTKLIB) + OCAMLOBJS+=pixmaps.cmo uigtk.cmo linkgtk.cmo + OCAMLLIBS+=lablgtk.cma + endif +@@ -282,7 +282,7 @@ OCAMLFIND := $(shell command -v ocamlfind 2> /dev/null) + + ifeq ($(UISTYLE), gtk2) + ifndef OCAMLFIND +- CAMLFLAGS+=-I +lablgtk2 ++ CAMLFLAGS+=-I $(LABLGTK2LIB) + else + CAMLFLAGS+=$(shell $(OCAMLFIND) query -i-format lablgtk2 ) + endif +diff --git a/src/files.ml b/src/files.ml +index 5ff1881..1d1fbcc 100644 +--- a/src/files.ml ++++ b/src/files.ml +@@ -734,7 +734,7 @@ let get_files_in_directory dir = + with End_of_file -> + dirh.System.closedir () + end; +- Sort.list (<) !files ++ List.sort String.compare !files + + let ls dir pattern = + Util.convertUnixErrorsToTransient +diff --git a/src/recon.ml b/src/recon.ml +index 2c619bb..2412c18 100644 +--- a/src/recon.ml ++++ b/src/recon.ml +@@ -661,8 +661,8 @@ let rec reconcile + + (* Sorts the paths so that they will be displayed in order *) + let sortPaths pathUpdatesList = +- Sort.list +- (fun (p1, _) (p2, _) -> Path.compare p1 p2 <= 0) ++ List.sort ++ Path.compare + pathUpdatesList + + let rec enterPath p1 p2 t = +diff --git a/src/system/system_generic.ml b/src/system/system_generic.ml +index 453027d..c2288b8 100755 +--- a/src/system/system_generic.ml ++++ b/src/system/system_generic.ml +@@ -47,7 +47,7 @@ let open_out_gen = open_out_gen + let chmod = Unix.chmod + let chown = Unix.chown + let utimes = Unix.utimes +-let link = Unix.link ++let link s d = Unix.link s d + let openfile = Unix.openfile + let opendir f = + let h = Unix.opendir f in +diff --git a/src/uigtk2.ml b/src/uigtk2.ml +index fbc5d8f..4e82cc2 100644 +--- a/src/uigtk2.ml ++++ b/src/uigtk2.ml +@@ -94,7 +94,7 @@ let icon = + let icon = + let p = GdkPixbuf.create ~width:48 ~height:48 ~has_alpha:true () in + Gpointer.blit +- (Gpointer.region_of_string Pixmaps.icon_data) (GdkPixbuf.get_pixels p); ++ (Gpointer.region_of_bytes Pixmaps.icon_data) (GdkPixbuf.get_pixels p); + p + + let leftPtrWatch = -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:16 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:17 +0000 Received: from localhost ([127.0.0.1]:34900 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywS-0001u8-8r for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:16 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywK-0001sR-8D for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:08 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id ab93d4e1 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=5Ox5n5Pi9mUBD8YfD4cRC1Tdm qx9Oh1fCPFyg853jt0=; b=Ym77SYN1sRnR1t3NuMnxA0/geoht2nsXQmGXzuY9W ANVzWA9EVi+49XrLH9JNbeeyQy+h02H6UtmrZx+aQ080i4Tk0c+C6LK9gAwzUmKM J1QfyGvw6f/ZBA0Ff/wPMnp+O3B8s6cb0uqYNvBAfwuqa0hMpcCanjq8A9b5QfYK fFOUmxsvXqQERpe42gdCLgMgvXDaNj9IaYFtLHWOtrArwi2l8l+lrJEDMzULrQEY fm3OgoOiPZ8qxk/7vhxZ6euPastiJc3Kf9n8PUrnzBWJ8rU+0TdxolV+aZWEDctu IrCfzviVIGwdk1Gx/U86/8mVXjvXZ7d1WKyprKIzAVooQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 30c14487 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:02 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 02/27] gnu: camlp5: Update to 7.13. Date: Thu, 1 Oct 2020 15:41:08 +0200 Message-Id: <20201001134133.32105-2-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (camlp5): Update to 7.13. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 394db50150..f5d7799ae5 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -541,7 +541,7 @@ Git-friendly development workflow.") (define-public camlp5 (package (name "camlp5") - (version "7.12") + (version "7.13") (source (origin (method git-fetch) @@ -550,7 +550,7 @@ Git-friendly development workflow.") (commit (string-append "rel" (string-delete #\. version))))) (file-name (git-file-name name version)) (sha256 - (base32 "12ix5g15bys932hyf9gs637iz76m0ji9075d83jfdmx85q30llgf")))) + (base32 "1d9spy3f5ahixm8nxxk086kpslzva669a5scn49am0s7vx4i71kp")))) (build-system gnu-build-system) (inputs `(("ocaml" ,ocaml))) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:17 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:17 +0000 Received: from localhost ([127.0.0.1]:34904 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywS-0001uN-Qn for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:17 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywK-0001sY-FG for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:09 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id fb59b818 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=46NQuSP1v2cavmIhyfs82nn4D 80zhD+K8ITUMQoF5R4=; b=evw1CmCNmKDkXjhs3W6kNblAsWD3o5yKnadHfxN69 l6EMfCjZS4ekQKSNpgFND/NH9Q7a+IUrUHN3gDKTOm9x825Apl8z1B8SQmMRIPNo ReiEXUQrXwrmFmdrVt+Nwxjscqx1kssN3/TPXt+Ocqcm9Lx0UDmEFJ3yPtNOta30 Wr2QX5P7x9D7DHVTnJs2vLxCF4a/QOAakmMP6EO7DjUH2oRWnKJ49lR62uUbKVDX +Gx+qy/yrnFHe2NSVHNnCgG3oHlFvwhKWV/GPgEuMiEBSJy71/e9f5hJ2qhTtSwg O9Qlz4MR69LZiaxwwZ0EXSfWOQpgio9XEorKEZltAOnYw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 18da3de3 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:02 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 03/27] gnu: ocaml-mccs: Update to 1.1+11. Date: Thu, 1 Oct 2020 15:41:09 +0200 Message-Id: <20201001134133.32105-3-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml-mccs: Update to 1.1+11. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index f5d7799ae5..521df69d59 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -329,7 +329,7 @@ Software distribution.") (define-public ocaml-mccs (package (name "ocaml-mccs") - (version "1.1+9") + (version "1.1+11") (source (origin (method git-fetch) (uri (git-reference @@ -338,7 +338,7 @@ Software distribution.") (file-name (git-file-name name version)) (sha256 (base32 - "1i0hhkrqi7rqlainlg5pc4hibbx6b5dp3x99gmav8c3sbfvlk9mc")))) + "1gsad5cj03256i36wdjqk5pg51pyd48rpjazf0gfaakrn8lk438g")))) (build-system dune-build-system) (propagated-inputs `(("ocaml-cudf" ,ocaml-cudf))) (home-page "https://www.i3s.unice.fr/~cpjm/misc/") -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:23 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:23 +0000 Received: from localhost ([127.0.0.1]:34907 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywT-0001ue-CH for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:23 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywK-0001sR-Ti for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:12 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 69d58322 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=0X+voh8berMAfZIIE8o0PAfrY 2TmMThrPeq/4fLMaZw=; b=SP20t/ePIZktyOaaGuN47D8mDY/05eSyZwQyy8v1K LbeKGvjK1/HlkoYv94cNG0khP4ij3VyJ5BfZlXXi3aLA3YOi3J7HPBQ5uwrLOP7P b0mqpizwC24rceqsIX1SgAcJcZtqAXx50f1q3n6vusE/3wpglJGdHbuN5hII1XvS XYk1UQSjtmX4OxOVqDeVL+4muwG6o8SHnqwJ1LKq5yMNbWzIXtVGwb7F2zuuwtHR dH6B4DBtVhQEKZjtnwVR0YaSEp8PGbBNZHqrxia/lZVJSxebM1NgUr8xaeCHANum pSdbaZRO8Cfd8nR7AZ6UYiStmdhgdlDYKOZiHXSF0sXww== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 2fc85840 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:03 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. Date: Thu, 1 Oct 2020 15:41:10 +0200 Message-Id: <20201001134133.32105-4-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-migrate-parsetree): Update to 1.7.3. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 521df69d59..ed692230bc 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1292,7 +1292,7 @@ following a very simple s-expression syntax.") (define-public ocaml-migrate-parsetree (package (name "ocaml-migrate-parsetree") - (version "1.4.0") + (version "1.7.3") (home-page "https://github.com/ocaml-ppx/ocaml-migrate-parsetree") (source (origin @@ -1303,7 +1303,7 @@ following a very simple s-expression syntax.") (file-name (git-file-name name version)) (sha256 (base32 - "0sv1p4615l8gpbah4ya2c40yr6fbvahvv3ks7zhrsgcwcq2ljyr2")))) + "0336vz0galjnsazbmkxjwdv1qvdqsx2rgrvp778xgq2fzasz45cx")))) (build-system dune-build-system) (arguments `(#:tests? #f)) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:23 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:23 +0000 Received: from localhost ([127.0.0.1]:34915 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywZ-0001vB-D7 for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:23 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywL-0001sY-Tw for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:12 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 280e3875 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=4hHcDp/4LTQc6RCLQEozsd8kb Vv6QzcxK95uVsYXqwA=; b=L7aMINsaeSHtGU1QVchfSWIJdlw4/vW9J/dF4TupO 3+cQd8MGAOdMpXONXjozsqIMlBjThNpH+ZfktSPajqTwf80kC6UlK22IPRQyc5ds JljdJZchHCDo1h8mI7H97Pts3qXCBif7MwsaLpF8bwSAaexQtppeQlHm5aoYG4C2 MGIsHLESRCF++p5xt5YnW0Kcb/g/4a4Xi7bxPBsUJXM69JkFojfG69v9eTc0lYVB uXYLeNI9xJGdMfUotg2sek/uhpLlSOP10BdcsUKtKvMYn8Q4AAQIp3vweeIGa9JN 4Zo70CTPVanvcKVhhAy57TPmG7448w7LM8QL10Xdpvf9g== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id ca0ea835 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:03 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 05/27] gnu: ocaml-ppx-tools-versioned: Update to 5.4.0. Date: Thu, 1 Oct 2020 15:41:11 +0200 Message-Id: <20201001134133.32105-5-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-ppx-tools-versioned): Update to 5.4.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index ed692230bc..9ec9c82b16 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1321,7 +1321,7 @@ functions to the next and/or previous version.") (define-public ocaml-ppx-tools-versioned (package (name "ocaml-ppx-tools-versioned") - (version "5.2.3") + (version "5.4.0") (source (origin (method git-fetch) (uri (git-reference @@ -1330,7 +1330,7 @@ functions to the next and/or previous version.") (file-name (git-file-name name version)) (sha256 (base32 - "1hcmpnw26zf70a71r3d2c2c0mn8q084gdn1r36ynng6fv9hq6j0y")))) + "07lnj4yzwvwyh5fhpp1dxrys4ddih15jhgqjn59pmgxinbnddi66")))) (build-system dune-build-system) (arguments `(#:test-target ".")) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:23 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:23 +0000 Received: from localhost ([127.0.0.1]:34917 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywZ-0001vI-K6 for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:23 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywO-0001sR-NS for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:13 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 7f4fd7aa for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=594pNpLMvQ+xP6yiVk6ND91FW 8FiOHpcok60h0VojwU=; b=Uaf0b1USsmJrXLeIckUr30t3rBOj6DZWbJoW32CMY U5OpIzR7+SeTF1txj6bQVQoep2PPy0ecGyaYWny1fBUqyTU+oPC5sGGFbGCieON5 QNzQLIa2/mQKYyvQOyKEUjtY5Dat+j/wy+TMYE6IISwl3J3qx1sXmIEiusmzecdV NDZ5j3QrlCdg744RvCstP9kI132pCdNjZR7KgcW/EepM1wh4Kr4hVL4QUALpc3wP cRkTnA8D+s2Rwqwb39gim7GU1vQ/5P07klvKfoWdVnHQbXNJmuawE3gkEgiIAOBb h11E+8uAXu4ZqhFNvvRsS7OeQlnIJ0UiFzDMKPGA7WUbw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id ca425e18 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:04 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 06/27] gnu: ocaml-qtest: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:12 +0200 Message-Id: <20201001134133.32105-6-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-qtest): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 9ec9c82b16..97b5b26c70 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1213,8 +1213,7 @@ instances and printing them.") "0gddzan4vzs0vklsxhirdjrvx3rp7hhh2yr20vi13nq8rwkn9w29")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t - #:test-target "tests")) + `(#:test-target "tests")) (propagated-inputs `(("ounit" ,ocaml-ounit) ("qcheck" ,ocaml-qcheck))) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:27 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:27 +0000 Received: from localhost ([127.0.0.1]:34919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywZ-0001vQ-QA for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:27 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywP-0001sY-07 for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:13 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 01283897 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=YlJf8ZABiXWOkfT+rmjpxxGGh hYeJPVoTwrN7A6/HRQ=; b=ICocTlzBQkjOmQ/nR1MbBdPQV0Jhs01hf5Pj1SHoH /d0QKSYUOr2VS0f6+7MKlt3zgDUtjmASdBBh3kZ05pQllWAjA9mzI5rG5JKJli/S V/YvUQS3Bl1vtfbrEDb4XHdS2Xva8n8F0PjoDaa3vyEEydLigZF+T1mbnrRXdv3/ SYkVyOE0WUlQHUArlOVu0P+/AL+cN7u9Tgp8dXyLOmA3pfhvXFUNp04/57kgCoBa qliqbLd6/SN3ZTLnWZVXVIY528awX77uRYzCQngU45gadNEkF8UHkzqaOfDZfeQI +4dUvNfBR58J+h5+RG9bQqlahKt6pChUfl3Y+JEfypiKg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id b59f2653 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:04 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 07/27] gnu: ocaml-bitstring: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:13 +0200 Message-Id: <20201001134133.32105-7-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-bitstring): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 97b5b26c70..e85a73365d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1362,8 +1362,8 @@ ocaml-migrate-parsetree") (propagated-inputs `(("ocaml-ppx-tools-versioned" ,ocaml-ppx-tools-versioned))) (arguments - `(#:tests? #f; Tests fail to build - #:jbuild? #t)) + `(#:package "bitstring" + #:tests? #f)); Tests fail to build (home-page "https://github.com/xguerin/bitstring") (synopsis "Bitstrings and bitstring matching for OCaml") (description "Adds Erlang-style bitstrings and matching over bitstrings as -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:27 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:27 +0000 Received: from localhost ([127.0.0.1]:34921 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywd-0001vf-3F for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:27 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywP-0001sR-Br for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:13 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 06931a56 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=RxnQqN/Xh7dMLWlnRARyHhsjo bn/NJSygcr6/4rxQvo=; b=lBB8Cr3JYBhG38AqnGSq4wjukVqqynfmOkSMbVR2w hCJdbqEUJCNU7iporFjE30cd4U7aRev517/YBY8Ct6y+37JzEl0llCaoSiNOQsgd vvftC2ZVPjFkBJVYyNmSAAgrzwPMhfifbW8tpRB0Yp5wNfk7dcfgBFdV7ZvPRReN rWj8q8i0xlKulH/CRvN0DDYISeI2N7qJwKSC9Z7IRFMHg83FTfoL/rmnab0XNh4q tmuovAeMIo+fz3mz7w33svIOMVuNfCZglXoryG7VJpEBt/uUuDKI3n3M/FB0GHj3 2RCEh3CLGOz6b+9RumRHXrBU7H74Oe2AK94/P6PoJJIsw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 04ee43da (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:05 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 08/27] gnu: ocaml-lwt-log: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:14 +0200 Message-Id: <20201001134133.32105-8-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-lwt-log): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index e85a73365d..13c31ef939 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1866,8 +1866,7 @@ locks or other synchronization primitives.") "1n12i1rmn9cjn6p8yr6qn5dwbrwvym7ckr7bla04a1xnq8qlcyj7")))) (build-system dune-build-system) (arguments - `(#:tests? #f; require lwt_ppx - #:jbuild? #t)) + `(#:tests? #f)); require lwt_ppx (propagated-inputs `(("lwt" ,ocaml-lwt))) (properties `((upstream-name . "lwt_log"))) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:27 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:27 +0000 Received: from localhost ([127.0.0.1]:34923 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywd-0001vm-Ge for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:27 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywP-0001t4-FK for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:14 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id b3640936 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=/HSTA9ZsxLFG7hECfRnGQiSo/ 8Ung//cQXHKDHRKHFQ=; b=cFyJfC76tk0OZD8F4n6wMJ4GfGyg9FXJObJa+RcZD 24YBD4mErjvbQvCDPImNF071wNb0bjz5ICH/wrbDHDSCYA/b+QcG7Kpvud+Ybd7s 9P+8mVSycUtFuhxi6xZwUaB+8xAFi3hwUwT3RDNjhI1UIdbpgU/rDfzmMNNy5IbC JmWYUsQNj/sx+oamnBO2uNcSbv6XQVswZ+3mb+Bf84alLVUQeQid+9VrHy1i2seV pUg3Q4/RFZEgIflsD2ggBbQ7kbjXAFNyLADqRhugiluzd9I0gcsXOsR688H5jIHz JNsbp0QvjQp9rUlnVVJoduvO6NjgQVV3/zCzQPAqucapg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id ea4605ef (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:05 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 09/27] gnu: ocaml-easy-format: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:15 +0200 Message-Id: <20201001134133.32105-9-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-easy-format): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 13c31ef939..5aa95bf569 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2817,7 +2817,7 @@ JSON.") "1fc95q2ypck6m6rv3kiawwilh5ac93v2hcp823mj608d5kj79xkb")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t + `(#:package "easy-format" #:phases (modify-phases %standard-phases (add-before 'build 'make-writable -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:28 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:28 +0000 Received: from localhost ([127.0.0.1]:34925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywd-0001vt-Pl for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:27 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywP-0001sY-Nv for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:14 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 94ef3b20 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=1r2DPFZMTbmbX6MW7GFnVhAR8 Mo+nxDfswW2kIFCwRU=; b=h7MjiIv7biFwuK1FI+l+WoWv1pv7VvRAHGF9b6M9Z crhCwzUEIZGy+dIT/I/DyRrJcgLjC7de/cmIzBgK5H9vCKd7qWhmX+eWHpUGf3e9 uTC6U4Ol/i/iS5KR/jZPKoQTzxiMJOP3kzfp4Qf/C7XivtXYAd8/LqGmfjLeJLoj 4yoxgly6N/BebXZ/YSu9CxhZAExzQBaoVqolo/qakLpNvEGdJ6I8EZuMk7mWBMH2 WaxTtzs8wCRal7FudFMNjjmIlJpI6Eo/CuVFiSt7pKUtw+aUwk5TfcldMo5AuOeu 069WQaj9n337WiqPtKnJumSsb4KsyMuMr1H6DdUACVfYA== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id f5def1ef (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:06 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 10/27] gnu: ocaml4.07-zed: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:16 +0200 Message-Id: <20201001134133.32105-10-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-zed): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 5aa95bf569..bad755516d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3146,8 +3146,7 @@ function that follows the prototype of POSIX's wcwidth.") (base32 "0pa9awinqr0plp4b2az78dwpvh01pwaljnn5ydg8mc6hi7rmir55")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t - #:test-target "." + `(#:test-target "." #:ocaml ,ocaml-4.07 #:findlib ,ocaml4.07-findlib)) (propagated-inputs -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:28 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:28 +0000 Received: from localhost ([127.0.0.1]:34927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywe-0001w0-0w for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:28 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywQ-0001sR-58 for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:14 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id acab45d5 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=ZxzCuF9+use2uFE/a9UEmcDLW 5759al8YV8Moo2kZpo=; b=T2Qyaoj8hNy4oiM4l7ewKyzq6HnjemlW7iyNT3KY7 7BEUMAAFqV07/Qtsb1e8Li8SfziT6jzkANX3YY40yWDUToUPx+Bpff4X8ww8dffl 7NTOiQ3esezXqtawyxe57JudH26faNtkVhkodn4PmeYuwsdPc8EvtvQVyF04C2jW 4mHBAtIqmZ9PShtt5HyCDf/TYLf8y01iT+LoYJ7sFUw0oc0RiaLI+azglU4H2oqN JoZDPe07kZkuywSxJ1DEMaPJvmEdStIObrLckXcCzicUETRmGmg1IsLDvR4X/Fpm 7sthgT5n0cSg/Vr+nqgXH1ZZfZ9WirfF8BpqZnxzZDESw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 6b1ea7b8 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:07 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 11/27] gnu: ocaml4.07-utop: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:17 +0200 Message-Id: <20201001134133.32105-11-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-utop): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index bad755516d..50bfc10fc3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3211,8 +3211,7 @@ instead of bindings to a C library.") (base32 "1bl4943qpi3qy152dbdm5glhx19zsiylmn4rcxi8l66g58hikyjp")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t - #:test-target "." + `(#:test-target "." #:ocaml ,ocaml-4.07 #:findlib ,ocaml4.07-findlib)) (native-inputs -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:28 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:28 +0000 Received: from localhost ([127.0.0.1]:34929 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywe-0001w8-Aq for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:28 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywQ-0001t4-Eg for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:14 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 422a41a8 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=WB1IgpV9SBme30YCDBvSnaREW wURBOejbBS8o1LMSO8=; b=E28wNx36A9QHYJpQrZm6CiCx5VH+x6KwYSVqhsgfi QeJERqyg/EPHEZZGJhAOJsWM8SpxYk35lBTP+aGByseTa7EEeNPPjkWODfAjmeNq QyvYjBwYo4stZZduw4pqY5KCum7cNseanSYN9a52R98KHv4W7NwdGKNCLsIVTVlb vFoEY78u7pY4TSfY6lwiEgMoOlicr9dijATNAveG99E5R7Lf3hoS+xSHjsWZ5tVF zbf5hxXqb5jIaSToBIDUjTAVSSqFraGJGksiUHt/ftirPq9ycxRJOIqnGD2JtAjc FaCEcbTPpwgvdGDh1LQdf4FGQ/fs0Y8AcGjeUNOMBgZOg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id afc2b549 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:07 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 12/27] gnu: ocaml4.07-merlin: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:18 +0200 Message-Id: <20201001134133.32105-12-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-merlin): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 50bfc10fc3..0515dc097c 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3761,7 +3761,7 @@ format}. @code{craml} is released as a single binary (called @code{craml}).") (native-inputs `(("ocaml-findlib" ,ocaml-findlib))) (arguments - `(#:jbuild? #t + `(#:package "merlin" #:tests? #f ;; Errors in tests in version 3.2.2 #:ocaml ,ocaml-4.07 #:findlib ,ocaml4.07-findlib)) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:28 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:28 +0000 Received: from localhost ([127.0.0.1]:34931 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywe-0001wF-Ie for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:28 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywQ-0001sY-JP for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:14 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id dc0eb518 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=905ihNbF0TIRfbkVKiXp8z3KL NK+4DhL0///y25AWng=; b=RE1DtDRlW+0WJ3SIUjW0qZ///1UB//KcvbbET/boG w2lTJYBqfn9d2DOkanGv/A97VFVMBh0Fe1SYytE61iXnXvNpd4Wp9JyiHI79U5xL YvPlDc1ew3at3uaTAHy9G1dj/WuqVq92JFmgKLcbeRnZJj2ETk2d5xt2c8LTZq5u pqc3NNHM0VHHZYtldl0HlS2B8Qqx0uRz2SCz7D6gFSuYh78vabhPueKXtK62TCjj wUbaCt/Lx57oUvYBwQo9HRv58zNab/msZPIz7kEq4fexlfyr+RG3L2rql/Tn+bQ4 DJBPgqs8J1rYU8p5C0MYCkoo24Dko3iIdcnrWrUad6Ftw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 2a196997 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:08 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 13/27] gnu: ocaml4.07-ppx-expect: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:19 +0200 Message-Id: <20201001134133.32105-13-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-ppx-expect): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 0515dc097c..4dce8bbe1c 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4864,8 +4864,7 @@ useful errors on failure.") "1wawsbjfkri4sw52n8xqrzihxc3xfpdicv3ahz83a1rsn4lb8j5q")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t - #:ocaml ,ocaml-4.07 + `(#:ocaml ,ocaml-4.07 #:findlib ,ocaml4.07-findlib)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:29 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:29 +0000 Received: from localhost ([127.0.0.1]:34933 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywe-0001wM-RF for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:29 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywQ-0001sR-RK for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:15 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id daaa1979 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=kcCBauvQky4lBseMZZJ3vcuaG TIXBLSZ5zGLwRSdrDk=; b=fkG54mgOInqoW/GAI3ATNL12iRXbaNgkaIqIMyu0g 7wr0dAYvINVGdLKP2GudzH7mOMNOI0OED6SYyJPhpkI+cHGmksosICkih2QppVJe WQQl7SLLFHQdfki/5qc5X1wof1KCC9KFE0koLrW33IGLYh7HYE93zXPy76iqoCAN uSkx3MykAvVVkD7FR9OCu8EJdhS+BZEoI5CkG2A4vBFQQspU4JipQ6ufMTumxjZ+ BoFZ32qvWqkkOzA/r0aLBLmRtAOUaV5MeHeoZ6F6YswFoJz5ov0BEJDZqITrqZSs I6vwBRe+f/LADXTw1nsRy+GHm+rXljC6nnyDJ2F4Ta6xA== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id a11fb9b8 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:08 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 14/27] gnu: ocaml4.07-core: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:20 +0200 Message-Id: <20201001134133.32105-14-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-core): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 4dce8bbe1c..3910f5c20f 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5221,9 +5221,8 @@ thousands of times faster than fork. "0pzl8n09z4f3i7z2wq4cjxfqrr8mj6xcdp7rbg0nxap2zdhjgvrq")))) (build-system dune-build-system) (arguments - `(#:jbuild? #t - ;; Require a cyclic dependency: core_extended - #:tests? #f + `(#:package "core" + #:tests? #f; Require a cyclic dependency: core_extended #:ocaml ,ocaml-4.07 #:findlib ,ocaml4.07-findlib)) (propagated-inputs -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:29 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:29 +0000 Received: from localhost ([127.0.0.1]:34935 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywf-0001wV-2b for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:29 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywR-0001t4-4k for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:15 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 256aa207 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=lGf3GtN20syqHOoIcoWUs1eW/ s/IJ/5EvOXvPcTJtC4=; b=GJJ51S/rQeZANwPHpV35IU1OsGJ11ib09Qqf1XF18 ggNvK8i6cbuyyXplPLtVleHyHfdbT5iDIlJHbay5jFQtlpd2G5S7EvA/8tcKA3uR I49EYwvS6zjfzMNaGRBSfK3nZMTlht+Vf5Bdl/fHpWz9t+tUguWHOE/8r/4txfiu 3EEQlcr18ZqN0XC9jTTx4ILWeh8okgCbZHbyytV0VRWgaxV09l8xIsXAgzRqqKrc yHL4GxKX4MFkZ612hLBKHFHUBfiAzsjkfrOlvCJvLGWOIBhsHmThox6jx3EQk4d4 xn6xPmFXiSis0mZLtJktsPqH8nAA22ZMQdchSu1K42SNg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 5a526d2a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:09 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 15/27] gnu: ocaml-tyxml: Do not use deprecated jbuilder. Date: Thu, 1 Oct 2020 15:41:21 +0200 Message-Id: <20201001134133.32105-15-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-tyxml): Remove #:jbuild argument. --- gnu/packages/ocaml.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3910f5c20f..aa9230cd9e 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5370,7 +5370,7 @@ stream, and convert everything to UTF-8.") ("ocaml-markup" ,ocaml-markup))) (native-inputs `(("ocaml-alcotest" ,ocaml-alcotest))) - (arguments `(#:jbuild? #t)) + (arguments `(#:package "tyxml")) (home-page "https://github.com/ocsigen/tyxml/") (synopsis "TyXML is a library for building correct HTML and SVG documents") (description "TyXML provides a set of convenient combinators that uses the -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:29 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:29 +0000 Received: from localhost ([127.0.0.1]:34937 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywf-0001wd-Ap for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:29 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywR-0001sY-9O for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:15 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 9c7842df for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=oNhGVtr5/v96CYobu0vjyDPFF m7ZKP2Okh59BV01OkE=; b=DtlnMb07/2Zc85Usyh7b88aCxV9FHvRhpAyKuYQHR 9nRR32bcaVpOY3m2EmhA4W/AQUrsLZR/LxyNxwaeebMb3A08oXWDzaJbeqK4tSmP 4+N97MKog7xymiUKu61tuR8otzFRjQPTAap1SwrzmvDzLY/nvNzgsIqE3AxItyuL F2zfO2VhcGBQ52IMHjJ+W4eX5S4KmgMsm4x+gQkwQiDYxM33C9B5r86fgrrHxhQ4 gzgtV2QDUWvpdL5/krqKF/M7QxTL8zmz8pI+hsOAtrMrY3JoWK5FAfRQv8QlJpvO 11WNNELt/99BFv6sv52jJkvHb+FOzWhYX724/iwFGkmUg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 028b458e (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:09 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 16/27] gnu: Add ocaml-stdlib-shims. Date: Thu, 1 Oct 2020 15:41:22 +0200 Message-Id: <20201001134133.32105-16-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-stdlib-shims): New variable. --- gnu/packages/ocaml.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index aa9230cd9e..7f402e0a47 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -265,6 +265,30 @@ functional, imperative and object-oriented styles of programming.") for building OCaml library and programs.") (license license:lgpl2.1+))) +(define-public ocaml-stdlib-shims + (package + (name "ocaml-stdlib-shims") + (version "0.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocaml/stdlib-shims") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1jv6yb47f66239m7hsz7zzw3i48mjpbvfgpszws48apqx63wjwsk")))) + (build-system dune-build-system) + (home-page "https://github.com/ocaml/stdlib-shims") + (synopsis "Backport of some of the new stdlib features to older OCaml") + (description "This package backports some of the new stdlib features to +older OCaml compiler, such as the Stdlib module. + +This allows projects that require compatibility with older compilers to +use these new features in their code.") + ;; Same as the OCaml compiler + (license (list license:qpl license:lgpl2.0)))) + (define-public ocaml-extlib (package (name "ocaml-extlib") -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:29 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:29 +0000 Received: from localhost ([127.0.0.1]:34939 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywf-0001wk-JF for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:29 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywR-0001sR-GC for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:15 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id ed0dddc9 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=sdhyiD68AlHX7JA9Mhx5EkNIf fzzp1jnnrqesvzBWjo=; b=F3fufG0d3UZAwr1kZF8PKv26lOuWL5JiIVAX8ji6n q2LZWX1Bebe6ZE7S+znQK+RysQB+uP1ciL5cKbqf9QFAdApejYkiwkrDJE5zbze9 b9MdNYuKyNl40L0Q4y1nG8D+NoQqXd/d0oO/WJAN9YVnA3gIEHyrJ9Fc0L+kmrD9 +67bu+QsrIdSWEywQiV+w3nt/25tkwZgnv3gHu1VBZEMrAk84Oe8QIjaPl9LopM8 YiJXj7KX4EQpUodvvDB75bNjt8r1ILGe/SbuQOJE1jHAZcxsXeKc0MJnmgWgHeSo JpYlfrimbTh0E6NOVsesh4+MZg2ax6ccg6zcRnZmMC6qA== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 7f35683a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:10 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 17/27] gnu: opam: Update to 2.0.7. Date: Thu, 1 Oct 2020 15:41:23 +0200 Message-Id: <20201001134133.32105-17-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (opam): Update to 2.0.7. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 7f402e0a47..181cd679d4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -460,7 +460,7 @@ the opam file format.") (define-public opam (package (name "opam") - (version "2.0.6") + (version "2.0.7") (source (origin (method git-fetch) (uri (git-reference @@ -469,7 +469,7 @@ the opam file format.") (file-name (git-file-name name version)) (sha256 (base32 - "1vyga2jllsfsikppxyzljm4isfnnnl8k0rb44h8xaddjzdg1d4m8")))) + "1p719ccn9wnzk6impsnwr809yh507h8f37dx9nn64b1hsyb5z8ax")))) (build-system ocaml-build-system) (arguments `(#:configure-flags -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:30 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:30 +0000 Received: from localhost ([127.0.0.1]:34941 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywf-0001wr-Sz for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:30 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywR-0001t4-Qt for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:16 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 02b0020a for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=kCgZaxcUksdQ2qgwYalbg8RzV d9JLCg3ndM/SwXUqCI=; b=Pk1zTpYDBBYg4WQdxaKNWE+gELcCeaDQ7iqemFkQj 1TzTZv5mN24djiVkNsXHteOoss0brLMq2Fm6ILPXDKQ8W6i1RdWC4TiDzL6vveG5 HYRUXIOStJXSG1rsnxovFb5x+nDRir3pJLyKyrhOMVAVtP+wCed4aCc/yc3k86fK GstqUXngCwdTEqc4jnBX5khaoyeCqw52S9Q/lWgVoBPwh9jsTcYmkn9sp9O80/OF nmOPsEB+IflhrMaBfI95QvEVeC1/u7IFRLeLRv51ViRXLiTzu6XV93CmNVCZnqYL zdlkEn8CN3cfAwV4Q2J/eYEfnWzDtgpJMbCNSfoPVlGjg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 2d1796c4 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:10 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 18/27] gnu: ocaml-base64: Update to 3.4.0. Date: Thu, 1 Oct 2020 15:41:24 +0200 Message-Id: <20201001134133.32105-18-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-base64): Update to 3.4.0. --- gnu/packages/ocaml.scm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 181cd679d4..07270f329d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2257,7 +2257,7 @@ multitude of other network protocols (FTP/SMTP/RTSP/etc).") (define-public ocaml-base64 (package (name "ocaml-base64") - (version "3.2.0") + (version "3.4.0") (source (origin (method git-fetch) (uri (git-reference @@ -2266,8 +2266,19 @@ multitude of other network protocols (FTP/SMTP/RTSP/etc).") (file-name (git-file-name name version)) (sha256 (base32 - "1ilw3zj0w6cq7i4pvr8m2kv5l5f2y9aldmv72drlwwns013b1gwy")))) + "0aa1m1sr8p1hgc10p96mij7p22r3qcysvzy6fz2jqamfgswchgqc")))) (build-system dune-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'fix-dune + (lambda _ + ;; This package expects dune 2, which unbundled its configurator + ;; module. We still use dune 1, so we need to let it know we need + ;; its internal module. + (substitute* "config/dune" + (("dune-configurator") "dune.configurator")) + #t))))) (native-inputs `(("ocaml-alcotest" ,ocaml-alcotest) ("ocaml-bos" ,ocaml-bos) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:30 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:30 +0000 Received: from localhost ([127.0.0.1]:34943 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywg-0001wy-3k for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:30 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywS-0001sR-6r for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:16 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 2129051c for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=thCsHjsvkEJGH8LhKta9GAgzr aO+CbEqERakRd1VWzA=; b=Wl5726aE/OYnHuvMZdbRxxbhJciQolRPEgurQndRx mW0zWt5xfxzZarAgiBEczPonshcP3rYk/I2D87F7sLgycHxxtXPQQkZzg7z27h7D x8VM5kIo2naP6Si4GRL1fu8DU9/xt8iLx4iWOTpzWF1+iDDnIri+Oiek51sdX6ww ngfbekpoNEHoaPEDmamzYc+Cob9mqK+1ErVss3b9xGWK4BS1J8qvIxoqrR+VsfIO JACXdCsUQIQDuA9CWey9PEbd/hnfRJik/ps5gn2PjealxYVYkIquPhtHZHDPhVhE hh1ucg6vagugyR5vskuZlRJrDsEqvbWoEYbCty1RLolJg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id eb578d5f (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:11 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 20/27] gnu: ocaml-fmt: Update to 0.8.9. Date: Thu, 1 Oct 2020 15:41:26 +0200 Message-Id: <20201001134133.32105-20-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-fmt): Update to 0.8.9. --- gnu/packages/ocaml.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index cd14f0b578..365c87d8b2 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1618,23 +1618,23 @@ most of the POSIX and GNU conventions.") (define-public ocaml-fmt (package (name "ocaml-fmt") - (version "0.8.5") + (version "0.8.9") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/fmt/releases/fmt-" version ".tbz")) (sha256 (base32 - "1zj9azcxcn6skmb69ykgmi9z8c50yskwg03wqgh87lypgjdcz060")))) + "0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk")))) (build-system ocaml-build-system) (native-inputs `(("ocamlbuild" ,ocamlbuild) ("opam" ,opam) ("topkg" ,ocaml-topkg))) (propagated-inputs - `(("result" ,ocaml-result) - ("ocaml-uchar" ,ocaml-uchar) - ("cmdliner" ,ocaml-cmdliner))) + `(("cmdliner" ,ocaml-cmdliner) + ("ocaml-stdlib-shims" ,ocaml-stdlib-shims) + ("ocaml-uchar" ,ocaml-uchar))) (arguments `(#:tests? #f #:build-flags (list "build" "--with-base-unix" "true" "--with-cmdliner" "true") -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:30 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:30 +0000 Received: from localhost ([127.0.0.1]:34945 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywg-0001x6-CJ for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:30 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywS-0001sY-3U for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:17 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 987f2a9d for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=vv5hDT9AkwGg7ZaHDnqyrrD/9 Jm0IkuqlwDm368L3J0=; b=iCOTc9kNGvO194ts16FHcaGTM2e2nb019hQOXKvtu YUf+VHPUBTZpVDjTQBJVl2dReCj2e+yOsplaIS1mwdutE7XcgbyD09uG4dS18HWa x0iIxr5Ppx0Y0gOjJJaSViaiOPsxC4GcQ1TbLwLjIDCLL9HYH9VUrBXiCRsiCOeV zsKoF7u6hVEu5BHEIoXlNTXfG12FBMz8Y5B3vYYLKwSWBMDf3mgCLSDRug5p8dzl 1uXSpNUW8dIPW8xLudMUqCQPdIz7DqjEgNekL4SEMLLb0ailyb4ka3iHJDwTk7rA IyYgeUmxD2xLKodAuTseJtGss/13TEWQiG1MwtS8Ti8Rw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id f55ed22f (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:11 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 19/27] gnu: ocaml-logs: Update to 0.7.0. Date: Thu, 1 Oct 2020 15:41:25 +0200 Message-Id: <20201001134133.32105-19-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-logs): Update to 0.7.0. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 07270f329d..cd14f0b578 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1903,14 +1903,14 @@ ocaml lwt.") (define-public ocaml-logs (package (name "ocaml-logs") - (version "0.6.2") + (version "0.7.0") (source (origin (method url-fetch) (uri (string-append "http://erratique.ch/software/logs/releases/" "logs-" version ".tbz")) (sha256 (base32 - "1khbn7jqpid83zn8rvyh1x1sirls7zc878zj4fz985m5xlsfy853")))) + "1jnmd675wmsmdwyb5mx5b0ac66g4c6gpv5s4mrx2j6pb0wla1x46")))) (build-system ocaml-build-system) (arguments `(#:tests? #f -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:30 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:30 +0000 Received: from localhost ([127.0.0.1]:34947 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywg-0001xD-JV for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:30 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywS-0001t4-Jx for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:17 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 3e8be617 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=v4XF6SUJKBzf6EfSrQgEmTLvh L3CJvouHN2cDiwoXGw=; b=MyDKt5iZIIwVq9N67Qls1PiOCd6TOvrar1RNkzmx+ 8Nw7ry67Icv23hDLtXoRLBNUWPaBVqjqtlftLZO9jjET7RhUZiDFHchKgHOCOr9F vhGdo6r8q6AqYSmrqms9alJ0r39YD3f11oeKaDtf3W1ky1/GsYU3p+2QBu/JA6F8 kExa9a3P1eLwxgxEDskroIk2FaBRstj4vG5EKMHs+TP/OpG/MGjad969W1THPgqa kCiejaTzoH4kjbNNjNH3kz0dQhLUIPUgLCC+prsB4FnYLbx9IU5z6VJmxzJcYlzU poXaT6exy4AALmQid+j6awjbHMZ0FvhyvBxULw06MgllQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id f2da56cd (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:12 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 21/27] gnu: ocaml-alcotest: Update to 1.0.0. Date: Thu, 1 Oct 2020 15:41:27 +0200 Message-Id: <20201001134133.32105-21-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --- gnu/packages/ocaml.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 365c87d8b2..9633dc30fb 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1683,14 +1683,14 @@ immutability.") (define-public ocaml-alcotest (package (name "ocaml-alcotest") - (version "0.8.5") + (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/mirage/alcotest/releases/" "download/" version "/alcotest-" version ".tbz")) (sha256 (base32 - "0szwjxvaahgynsx0apj81jxj3ki6yz4is9mh2wkcbx66qy7n6fvb")))) + "1a43ilhwnj58pq3bi78ni46l9wh6klmmgfc93i94mvyx48bzzayx")))) (build-system dune-build-system) (arguments `(#:package "alcotest" @@ -1701,8 +1701,10 @@ immutability.") `(("ocaml-astring" ,ocaml-astring) ("ocaml-cmdliner" ,ocaml-cmdliner) ("ocaml-fmt" ,ocaml-fmt) - ("ocaml-result" ,ocaml-result) - ("ocaml-uuidm" ,ocaml-uuidm))) + ("ocaml-re" ,ocaml-re) + ("ocaml-stdlib-shims" ,ocaml-stdlib-shims) + ("ocaml-uuidm" ,ocaml-uuidm) + ("ocaml-uutf" ,ocaml-uutf))) (home-page "https://github.com/mirage/alcotest") (synopsis "Lightweight OCaml test framework") (description "Alcotest exposes simple interface to perform unit tests. It -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:31 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:31 +0000 Received: from localhost ([127.0.0.1]:34949 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywg-0001xK-Qt for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:31 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywT-0001sR-88 for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:17 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 184a995a for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=CxypD5HFenh10Lo0ejJ+zHzgl SGpzdpU/+82HF8t14k=; b=mQ0RD9QX63C0x2T/UjTJBafqarMuLQgVT6ByHUozs C3iA3CAxsIc9zxfBOYzk07FedFio1w536fUa0I0gxScn1V+aEQUphSSVmhCzQ1IH Ouj6lpCbFY1J0TmaQ5F1esWTC9LgWkPL/xAAAh3Y4s1G6A9hg1WDVQCBWl+k0VnS dz7dzZnlxtTonqchjpD8wvx702wpfFl4m+hrteuZnzIu1yIsJGYOshXeVAnSg83p EJxQEa0ppbTX7a113i0h7bEdJWksG7wOxl35gePcxAx4EHU/c9nq24c5YTintDKY mdAmzSPtHr3yoURLBkyGEAV0oen0Bq7C3NNfvhmRAmJsA== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id d3c19160 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:12 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 22/27] gnu: ocaml-result: Update to 1.5. Date: Thu, 1 Oct 2020 15:41:28 +0200 Message-Id: <20201001134133.32105-22-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-result): Update to 1.5. --- gnu/packages/ocaml.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 9633dc30fb..ee82f9ca32 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1400,7 +1400,7 @@ powerful.") (define-public ocaml-result (package (name "ocaml-result") - (version "1.4") + (version "1.5") (source (origin (method git-fetch) (uri (git-reference @@ -1409,7 +1409,7 @@ powerful.") (file-name (git-file-name name version)) (sha256 (base32 - "0hir97k9i72nfkm6kncxnqpyk400wlsxysbldgcvk0fd9pjnsc3p")))) + "166laj8qk7466sdl037c6cjs4ac571hglw4l5qpyll6df07h6a7q")))) (build-system dune-build-system) (arguments `(#:test-target ".")) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:31 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:31 +0000 Received: from localhost ([127.0.0.1]:34951 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywh-0001xR-2c for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:31 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywT-0001t4-QK for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:18 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 41758fba for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=vQC2lkzo9YE81ld9uLzQSQCsE gL4jqnV+eC2wCGvUiQ=; b=Li7S0oa0TdR3iUHJT30Gf7k3uuyLBnW7LhCwISxFT 3Ixr7ODHMf8/hwfPmXrMbVB0Ab4IDKDSrPYJexWl51Q4axwV+lXLr323UgDdBkIm zUcpVmiiSFNcqwmK023kiaSOSSDkIwBmp9J6zwZHb20ywjxT5j9X2Lp0LmbUoYkv NtWBsLGLWylVGaO4+TtTuc41OIOeJwrCBABSAXodjsXekU7LU66UPuTficy0P25H HjzMLtHqTY9eMJuvjOi46mgFm7g6XW72Y7NsjX+l34JEJTFZhDGPkXq8cofAzVRM U2oBpmuPWV8JwFogL3yWCMegP4PTkxXLf5JznX3TaLOeg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 8a2c2841 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:13 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 24/27] gnu: ocaml-compiler-libs: Build only with OCaml 4.07. Date: Thu, 1 Oct 2020 15:41:30 +0200 Message-Id: <20201001134133.32105-24-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-compiler-libs): Rename to... (ocaml4.07-compiler-libs): ...to this. Use OCaml 4.07. --- gnu/packages/ocaml.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 55496f8ca4..96ef6fbd17 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3598,7 +3598,7 @@ syntax checking on dedukti files.") `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" ,(package-with-ocaml4.07 ocaml-migrate-parsetree)) - ("ocaml-compiler-libs" ,(package-with-ocaml4.07 ocaml-compiler-libs)) + ("ocaml-compiler-libs" ,ocaml4.07-compiler-libs) ("ocaml-sexplib0" ,ocaml4.07-sexplib0) ("ocaml-stdio" ,ocaml4.07-stdio) ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) @@ -4116,9 +4116,9 @@ provided by companion libraries such as @url{https://github.com/janestreet/stdio, ocaml-stdio}.") (license license:expat))) -(define-public ocaml-compiler-libs +(define-public ocaml4.07-compiler-libs (package - (name "ocaml-compiler-libs") + (name "ocaml4.07-compiler-libs") (version "0.11.0") (home-page "https://github.com/janestreet/ocaml-compiler-libs") (source @@ -4133,7 +4133,10 @@ provided by companion libraries such as "03jds7bszh8wwpfwxb3dg0gyr1j1872wxwx1xqhry5ir0i84bg0s")))) (build-system dune-build-system) (arguments - '(#:tests? #f)) ;no tests + `(#:tests? #f ;no tests + #:ocaml ,ocaml-4.07 + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ocaml-compiler-libs"))) (synopsis "Compiler libraries repackaged") (description "This package simply repackages the OCaml compiler libraries @@ -4216,7 +4219,7 @@ as part of the same ocaml-migrate-parsetree driver.") (build-system dune-build-system) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) - ("ocaml-compiler-libs" ,(package-with-ocaml4.07 ocaml-compiler-libs)) + ("ocaml-compiler-libs" ,ocaml4.07-compiler-libs) ("ocaml-migrate-parsetree" ,(package-with-ocaml4.07 ocaml-migrate-parsetree)) ("ocaml-ppx-derivers" ,(package-with-ocaml4.07 ocaml-ppx-derivers)) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:32 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:32 +0000 Received: from localhost ([127.0.0.1]:34953 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywh-0001xZ-Ai for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:32 -0400 Received: from lepiller.eu ([89.234.186.109]:51938) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywU-0001t4-Io for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:19 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id f1395cd9 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=jQMGPcWbZ20saA+6u1ca5BOxU rvMemJcTtmTFJee5zE=; b=Fwr7QNrfZ+wjL6f5jq178qGtBW968TdLZrgeN2p6C zipImdLX6uvbeTCsrB6mvYDRwk6YbJa1xYeZoDIfInBGytqa7xpBqgWuco8cxqDH Nlvu83Ooj5f7Cied8XlAiM1ya7WLjzlbODN+8OF9H+ib1+ABF5DwHNDEi5RmYBjV U3HuXIAJSPVRcRllwgdkGEVyfi0T1ON8C2FdRHvUej8UodMatNHAxSIMhBAWqouH 2f5LEw9TeTa94NBp/rQ96J30nef3TQKwpETd9kP3ynAl2J4hjrVYynlQorQfYAJ6 YxjuKcd4BCRGYFJBBVj6N1jcD8Qx0RxO0hEPnqHJeaYmA== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 31e7cc50 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:14 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 26/27] gnu: ocaml-4.07: Ensure build with ocaml4.7-dune. Date: Thu, 1 Oct 2020 15:41:32 +0200 Message-Id: <20201001134133.32105-26-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml4.07-gen, ocaml4.07-sedlex) (ocaml4.07-ezjsonm, ocaml4.07-uri, ocaml4.07-charinfo-width) (ocaml4.07-zed, ocaml4.07-lambda-term, ocaml4.07-utop) (ocaml4.07-ppx-inline-test, ocaml4.07-earley, ocaml4.07-merlin) (ocaml4.07-sexplib0, ocaml4.07-parsexp, ocaml4.07-sexplib) (ocaml4.07-base, ocaml4.07-stdio, ocaml4.07-ppxlib, ocaml4.07-ppx-compare) (ocaml4.07-fieldslib, ocaml4.07-variantslib, ocaml4.07-ppx-fields-conv) (ocaml4.07-ppx-sexp-conv, ocaml4.07-ppx-variants-conv) (ocaml4.07-ppx-custom-printf, ocaml4.07-bin-prot, ocaml4.07-ppx-hash) (ocaml4.07-ppx-enumerate, ocaml4.07-ppx-bench, ocaml4.07-ppx-here) (ocaml4.07-ppx-typerep, ocaml4.07-ppx-sexp-value, ocaml4.07-ppx-sexp-message) (ocaml4.07-ppx-pipebang, ocaml4.07-ppx-optional, ocaml4.07-ppx-optcomp) (ocaml4.07-ppx-let, ocaml4.07-ppx-fail, ocaml4.07-ppx-assert) (ocaml4.07-ppx-expect, ocaml4.07-ppx-js-style, ocaml4.07-ppx-typerep-conv) (ocaml4.07-ppx-base, ocaml4.07-ppx-bin-prot, ocaml4.07-ppx-jane) (ocaml4.07-splittable-random, ocaml4.07-configurator, ocaml4.07-spawn) (ocaml4.07-core, ocaml4.07-core-kernel)[arguments]: Use ocaml4.07-dune. --- gnu/packages/ocaml.scm | 147 +++++++++++++++++++++++++++-------------- 1 file changed, 98 insertions(+), 49 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 1a08bc9531..d2e2e61863 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2092,7 +2092,8 @@ representation of the data.") `(#:tests? #f; no tests #:package "gen" #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-odoc" ,ocaml4.07-odoc))) (native-inputs @@ -2137,7 +2138,8 @@ and consumable.") (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*")) #t))) #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (native-inputs `(("ocamlbuild" ,(package-with-ocaml4.07 ocamlbuild)))) (propagated-inputs @@ -2829,7 +2831,8 @@ writing to these structures, and they are accessed via the Bigarray module.") `(#:package "ezjsonm" #:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (native-inputs `(("ocaml-alcotest" ,(package-with-ocaml4.07 ocaml-alcotest)))) (propagated-inputs @@ -2867,7 +2870,8 @@ JSON.") (substitute* "lib/uri.ml" (("Re.get") "Re.Group.get"))))) #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (native-inputs `(("ocaml-ounit" ,(package-with-ocaml4.07 ocaml-ounit)) ("ocaml-ppx-sexp-conv" ,ocaml4.07-ppx-sexp-conv))) @@ -3195,7 +3199,8 @@ library is currently designed for Unicode Standard 3.2.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-result" ,(package-with-ocaml4.07 ocaml-result)) ("ocaml-camomile" ,(package-with-ocaml4.07 ocaml-camomile)))) @@ -3226,7 +3231,8 @@ function that follows the prototype of POSIX's wcwidth.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-camomile" ,(package-with-ocaml4.07 ocaml-camomile)) ("ocaml-charinfo-width" ,ocaml4.07-charinfo-width) @@ -3256,7 +3262,8 @@ connect an engine to your inputs and rendering functions to get an editor.") `(#:build-flags (list "--profile" "release") #:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-lwt" ,(package-with-ocaml4.07 ocaml-lwt)) ("ocaml-lwt-log" ,(package-with-ocaml4.07 ocaml-lwt-log)) @@ -3291,7 +3298,8 @@ instead of bindings to a C library.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (native-inputs `(("cppo" ,(package-with-ocaml4.07 ocaml-cppo)))) (propagated-inputs @@ -3593,7 +3601,8 @@ syntax checking on dedukti files.") ;see home page README for further information `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -3666,7 +3675,8 @@ or quantified formulas.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Parsing library based on Earley Algorithm") (description "Earley is a parser combinator library base on Earley's algorithm. It is intended to be used in conjunction with an OCaml syntax @@ -3842,7 +3852,8 @@ format}. @code{craml} is released as a single binary (called @code{craml}).") `(#:package "merlin" #:tests? #f ;; Errors in tests in version 3.2.2 #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Context sensitive completion for OCaml in Vim and Emacs") (description "Merlin is an editor service that provides modern IDE features for OCaml. Emacs and Vim support is provided out-of-the-box. @@ -3988,7 +3999,8 @@ exclusion algorithms are typical examples of such systems.") (arguments `(#:tests? #f ;no tests #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Library containing the definition of S-expressions and some base converters") (description "Part of Jane Street's Core library The Core suite of @@ -4014,7 +4026,8 @@ that was developed by Jane Street, the largest industrial user of OCaml.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (inputs `(("ocaml-sexplib0" ,ocaml4.07-sexplib0))) (synopsis "S-expression parsing library") @@ -4063,7 +4076,8 @@ parsexp_io.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-num" ,(package-with-ocaml4.07 ocaml-num)) ("ocaml-parsexp" ,ocaml4.07-parsexp) @@ -4101,7 +4115,8 @@ functionality for parsing and pretty-printing s-expressions.") (lambda _ (invoke "dune" "build" "@install" "--profile=release")))) #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Full standard library replacement for OCaml") (description @@ -4166,7 +4181,8 @@ is now @code{Ocaml_common.Ast_helper}.") (arguments `(#:tests? #f ;no tests #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Standard IO library for OCaml") (description "Stdio implements simple input/output functionalities for OCaml. It @@ -4247,7 +4263,8 @@ as part of the same ocaml-migrate-parsetree driver.") all)))) #t))) #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (synopsis "Base library and tools for ppx rewriters") (description @@ -4286,7 +4303,8 @@ OCaml AST in the OCaml syntax; ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_compare"))) (home-page "https://github.com/janestreet/ppx_compare") (synopsis "Generation of comparison functions from types") @@ -4315,7 +4333,8 @@ by making sure that you only compare comparable values.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4346,7 +4365,8 @@ of a record and create new record values.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4380,7 +4400,8 @@ standard library.") ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_fields_conv"))) (home-page "https://github.com/janestreet/ppx_fields_conv") (synopsis "Generation of accessor and iteration functions for ocaml records") @@ -4411,7 +4432,8 @@ new record values.") ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_sexp_conv"))) (home-page "https://github.com/janestreet/ppx_sexp_conv") (synopsis "Generation of S-expression conversion functions from type definitions") @@ -4441,7 +4463,8 @@ definitions.") ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_variants_conv"))) (home-page @@ -4473,7 +4496,8 @@ variant types.") ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_custom_printf"))) (home-page "https://github.com/janestreet/ppx_custom_printf") (synopsis "Printf-style format-strings for user-defined string conversion") @@ -4505,7 +4529,8 @@ string conversion.") ,(package-with-ocaml4.07 ocaml-migrate-parsetree)))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "bin_prot"))) (home-page "https://github.com/janestreet/bin_prot") (synopsis "Binary protocol generator") @@ -4571,7 +4596,8 @@ storage of large amounts of data.") ("ocaml-ppxlib" ,ocaml4.07-ppxlib))) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (properties `((upstream-name . "ppx_hash"))) (home-page "https://github.com/janestreet/ppx_hash") (synopsis "Generation of hash functions from type expressions and definitions") @@ -4596,7 +4622,8 @@ hash functions from type exrpessions and definitions.") (arguments `(#:tests? #f; no test suite #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4627,7 +4654,8 @@ many values).") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-ppx-inline-test" ,ocaml4.07-ppx-inline-test) ("ocaml-migrate-parsetree" @@ -4656,7 +4684,8 @@ many values).") ;; broken tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4685,7 +4714,8 @@ many values).") (arguments `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base))) (home-page "https://github.com/janestreet/typerep") (synopsis "Typerep is a library for runtime types") @@ -4707,7 +4737,8 @@ many values).") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-here" ,ocaml4.07-ppx-here) @@ -4737,7 +4768,8 @@ ocaml values.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-here" ,ocaml4.07-ppx-here) @@ -4771,7 +4803,8 @@ context such as function arguments.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-migrate-parsetree" ,(package-with-ocaml4.07 ocaml-migrate-parsetree)) @@ -4800,7 +4833,8 @@ context such as function arguments.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4829,7 +4863,8 @@ else expression.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-stdio" ,ocaml4.07-stdio) @@ -4857,7 +4892,8 @@ size, the version of the compiler, ...") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -4885,7 +4921,8 @@ match expressions, and if expressions.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-here" ,ocaml4.07-ppx-here) @@ -4914,7 +4951,8 @@ position.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-compare" ,ocaml4.07-ppx-compare) @@ -4946,7 +4984,8 @@ useful errors on failure.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-assert" ,ocaml4.07-ppx-assert) @@ -4989,7 +5028,8 @@ to denote the expected output.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-migrate-parsetree" @@ -5021,7 +5061,8 @@ packages.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-typerep" ,ocaml4.07-typerep) @@ -5051,7 +5092,8 @@ from type definitions.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-ppx-compare" ,ocaml4.07-ppx-compare) ("ocaml-ppx-enumerate" ,ocaml4.07-ppx-enumerate) @@ -5088,7 +5130,8 @@ verification tool.") ;; Cyclic dependency with ocaml-ppx-jane `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-bin-prot" ,ocaml4.07-bin-prot) @@ -5119,7 +5162,8 @@ functions from type definitions.") (arguments `(#:test-target "." #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-ppx-assert" ,ocaml4.07-ppx-assert) ("ocaml-ppx-base" ,ocaml4.07-ppx-base) @@ -5164,7 +5208,8 @@ driver including all standard Jane Street ppx rewriters.") (build-system dune-build-system) (arguments `(#:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-ppx-jane" ,ocaml4.07-ppx-jane) @@ -5223,7 +5268,8 @@ various Jane Street packages.") ;; No tests `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-stdio" ,ocaml4.07-stdio))) @@ -5266,7 +5312,8 @@ Configurator allows one to: (("/bin/echo") (which "echo"))) #t))) #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (native-inputs `(("ocaml-ppx-expect" ,ocaml4.07-ppx-expect))) (home-page "https://github.com/janestreet/spawn") @@ -5308,7 +5355,8 @@ thousands of times faster than fork. `(#:package "core" #:tests? #f; Require a cyclic dependency: core_extended #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-configurator" ,ocaml4.07-configurator) @@ -5347,7 +5395,8 @@ standard library that was developed by Jane Street.") ;; Cyclic dependency with ocaml-core `(#:tests? #f #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (propagated-inputs `(("ocaml-base" ,ocaml4.07-base) ("ocaml-bin-prot" ,ocaml4.07-bin-prot) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 09:48:32 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 13:48:32 +0000 Received: from localhost ([127.0.0.1]:34955 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywi-0001xj-6v for submit@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:32 -0400 Received: from lepiller.eu ([89.234.186.109]:51936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywT-0001sY-E6 for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:24 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 9757fda9 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=WA7Ey3jM2p3GOttpGMHbhC2cr nsElX+COULvaStlyPQ=; b=JDlVoRyq/u9O2QxaY5XsRfm41AecYrHMOBsqon6aj yaH9PQnJE1KIJz5v4A15FGOhUviFPgaNk4baX27wy2p77oxxdQS7iijP/F6eFduz /1cJjyTlP5v29Id8QcxmCuWDQ9t/ZYAApz+AzfvybrwJvhDOEAB4E83VHrCyOzVw hdDU2NmdoeOqGC7dLGyaPJVp5Jj7W4la7g3Fb57MidhynbsQUCirgQHnLtGfvCi5 MKuNkM+zcfIl2hzec1h9UptEXXQfFPnZZ//Y8cm0mwOeQUURO8Dg4efrrL2ByCSq LJ6grcM/j/gnadXMDF2prikr9adIMdvX6i/f51oVvZl5g== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 97c0c8f2 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:13 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 23/27] gnu: Add ocaml-csexp. Date: Thu, 1 Oct 2020 15:41:29 +0200 Message-Id: <20201001134133.32105-23-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-csexp): New variable. --- gnu/packages/ocaml.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index ee82f9ca32..55496f8ca4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1312,6 +1312,47 @@ following a very simple s-expression syntax.") (define-public ocaml4.07-dune (package-with-ocaml4.07 dune)) +(define-public ocaml-csexp + (package + (name "ocaml-csexp") + (version "1.3.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocaml-dune/csexp") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "190zppgvdjgghmrnx67ayzzk86qdjy3yn5fcrcw08wsh93384pl0")))) + (build-system dune-build-system) + (arguments + `(#:tests? #f; FIXME: needs ppx_expect, but which version? + #:phases + (modify-phases %standard-phases + (add-before 'build 'chmod + (lambda _ + (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*")) + #t))))) + (propagated-inputs + `(("dune" ,dune) + ("ocaml-result" ,ocaml-result))) + (home-page "https://github.com/ocaml-dune/csexp") + (synopsis "Parsing and printing of S-expressions in Canonical form") + (description "This library provides minimal support for Canonical +S-expressions. Canonical S-expressions are a binary encoding of +S-expressions that is super simple and well suited for communication +between programs. + +This library only provides a few helpers for simple applications. If +you need more advanced support, such as parsing from more fancy input +sources, you should consider copying the code of this library given +how simple parsing S-expressions in canonical form is. + +To avoid a dependency on a particular S-expression library, the only +module of this library is parameterised by the type of S-expressions.") + (license #f))) + (define-public ocaml-migrate-parsetree (package (name "ocaml-migrate-parsetree") -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 10:06:01 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 14:06:01 +0000 Received: from localhost ([127.0.0.1]:37834 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNzDd-00038e-45 for submit@debbugs.gnu.org; Thu, 01 Oct 2020 10:06:01 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywU-0001sR-4y for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:18 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 1c3774a5 for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=i2nu5NptuWF5hwCWEaKEYicKD UC33jp+HIqJW2v4ECI=; b=DcAbPj/uxJW83a3lgpRRU82LENsDko/mTEK32/ztb lbsSBSJEUJzj4GXHOdQPURbFdm1c/2f+1ZtszPthNEqCIK3+XsUWfMrLRdKqOFIt 0MltMZ3T8c6zpHBj08nPRQgT40D/qdFc360G7oB87OWp4wuRfpnelemxp5Ry3O0G UfHXLxYunszB+ZqPvn6eftMDv2lS3RzBh3uyx2si2y9M8TMgKjbZ8jGdy9WEQhZI FVnWKk9HLEPMOxtmMedHyH1+6dWp8n1Q7AWafv/5RZT9bZAIC3MpArD01Z3TGGbJ SXDzxNwxEOAVyDiewx7kHZ87kM3Y+r2W/oQpqWy/lTdlg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 3be9e534 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:14 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 25/27] gnu: ocaml-jane-street-headers: Build only with OCaml 4.07. Date: Thu, 1 Oct 2020 15:41:31 +0200 Message-Id: <20201001134133.32105-25-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (ocaml-jane-street-headers): Rename to... (ocaml4.07-jane-street-headers): ...to this. Use OCaml 4.07. --- gnu/packages/ocaml.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 96ef6fbd17..1a08bc9531 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5182,9 +5182,9 @@ This library implements a splittable pseudo-random number generator that sacrifi cryptographic-quality randomness in favor of performance.") (license license:asl2.0))) -(define-public ocaml-jane-street-headers +(define-public ocaml4.07-jane-street-headers (package - (name "ocaml-jane-street-headers") + (name "ocaml4.07-jane-street-headers") (version "0.11.0") (source (origin (method url-fetch) @@ -5196,7 +5196,10 @@ cryptographic-quality randomness in favor of performance.") "0afhzm08l9v883fhpqqh2lmy7az609pxif40bp7x1sk8c0yszqsh")))) (build-system dune-build-system) (arguments - `(#:test-target ".")) + `(#:test-target "." + #:ocaml ,ocaml-4.07 + #:findlib ,ocaml4.07-findlib + #:dune ,ocaml4.07-dune)) (home-page "https://github.com/janestreet/jane-street-headers") (synopsis "Jane Street C header files") (description "This package provides C header files shared between the @@ -5350,8 +5353,7 @@ standard library that was developed by Jane Street.") ("ocaml-bin-prot" ,ocaml4.07-bin-prot) ("ocaml-configurator" ,ocaml4.07-configurator) ("ocaml-fieldslib" ,ocaml4.07-fieldslib) - ("ocaml-jane-street-headers" - ,(package-with-ocaml4.07 ocaml-jane-street-headers)) + ("ocaml-jane-street-headers" ,ocaml4.07-jane-street-headers) ("ocaml-ppx-assert" ,ocaml4.07-ppx-assert) ("ocaml-ppx-base" ,ocaml4.07-ppx-base) ("ocaml-ppx-hash" ,ocaml4.07-ppx-hash) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 10:06:01 2020 Received: (at 43745) by debbugs.gnu.org; 1 Oct 2020 14:06:02 +0000 Received: from localhost ([127.0.0.1]:37836 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNzDd-00038m-GT for submit@debbugs.gnu.org; Thu, 01 Oct 2020 10:06:01 -0400 Received: from lepiller.eu ([89.234.186.109]:51934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kNywU-0001sR-RT for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 09:48:19 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 64e7708c for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=dkim; bh=ndF97yeqBY3jbn56lczEQDkvW /+TXPcq3uzhfoHbsno=; b=W6qKV8XwpkNAD7WCir84IL1z+zLNoxJarTHqjEQy9 DfJNg1EiYSlczzxOTyHHwfQTO04btoQtAnKD1c6ACE1PdVCmyv9NDbb0FP+ULKOP MTruklvdoJXdyUXat89VOzSos9IoTRcFlh36Xc+5fsuO5S3oEHEKw3tkWcK22UHU FYgctSF6qhonvmrCP3mkXXVih7iXQhzPVlS3Qudu67y+kqxx1nWutjTx+1PeBqEv DWDFWRTSdKCu/6NTPK2CyfmHZUjpQi8RFkFYwb2qKTjJxC1Hmcb+MrQWkdMkyQ1n tBdFKk/SY0sjwmY5jKwgt43MtGMWJy2pIdyl/g3mZdDHw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 37e7bf35 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745@debbugs.gnu.org>; Thu, 1 Oct 2020 13:48:14 +0000 (UTC) From: Julien Lepiller To: 43745@debbugs.gnu.org Subject: [PATCH 27/27] gnu: dune: Update to 2.7.1. Date: Thu, 1 Oct 2020 15:41:33 +0200 Message-Id: <20201001134133.32105-27-julien@lepiller.eu> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/ocaml.scm (dune): Update to 2.7.1. (ocaml4.07-dune): Keep version 1.11.3. (ocaml-result, ocaml-csexp): Use the bootstrap dune on dune dependencies. (ocaml-craml, ocaml-bitstring): Run "dune upgrade" before building. --- gnu/packages/ocaml.scm | 67 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 58 insertions(+), 9 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d2e2e61863..025badb031 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1277,10 +1277,10 @@ full_split, cut, rcut, etc..") ;; where it says `mit'. (license license:expat))) -(define-public dune +(define dune-bootstrap (package (name "dune") - (version "1.11.3") + (version "2.7.1") (source (origin (method git-fetch) (uri (git-reference @@ -1289,17 +1289,19 @@ full_split, cut, rcut, etc..") (file-name (git-file-name name version)) (sha256 (base32 - "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))) + "10qgx83fq8b522y9mpllrp0l5cgmr2bs5s7aix5img21hlbm34in")))) (build-system ocaml-build-system) (arguments `(#:tests? #f; require odoc - #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) + #:make-flags (list "release" + (string-append "PREFIX=" (assoc-ref %outputs "out")) (string-append "LIBDIR=" (assoc-ref %outputs "out") "/lib/ocaml/site-lib")) #:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key outputs #:allow-other-keys) + (mkdir-p "src/dune") (invoke "./configure") #t))))) (home-page "https://github.com/ocaml/dune") @@ -1309,8 +1311,41 @@ release of Jane Street packages. It reads metadata from @file{dune} files following a very simple s-expression syntax.") (license license:expat))) +(define-public dune-configurator + (package + (inherit dune-bootstrap) + (name "dune-configurator") + (build-system dune-build-system) + (arguments + `(#:package "dune-configurator" + #:dune ,dune-bootstrap + ; require ppx_expect + #:tests? #f)) + (propagated-inputs + `(("ocaml-csexp" ,ocaml-csexp))) + (synopsis "") + (description ""))) + +(define-public dune + (package + (inherit dune-bootstrap) + (propagated-inputs + `(("dune-configurator" ,dune-configurator))) + (properties `((ocaml4.07-variant . ,(delay ocaml4.07-dune)))))) + (define-public ocaml4.07-dune - (package-with-ocaml4.07 dune)) + (package + (inherit (package-with-ocaml4.07 dune-bootstrap)) + (version "1.11.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocaml/dune") + (commit version))) + (file-name (git-file-name "dune" version)) + (sha256 + (base32 + "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))))) (define-public ocaml-csexp (package @@ -1328,6 +1363,7 @@ following a very simple s-expression syntax.") (build-system dune-build-system) (arguments `(#:tests? #f; FIXME: needs ppx_expect, but which version? + #:dune ,dune-bootstrap #:phases (modify-phases %standard-phases (add-before 'build 'chmod @@ -1335,8 +1371,7 @@ following a very simple s-expression syntax.") (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*")) #t))))) (propagated-inputs - `(("dune" ,dune) - ("ocaml-result" ,ocaml-result))) + `(("ocaml-result" ,ocaml-result))) (home-page "https://github.com/ocaml-dune/csexp") (synopsis "Parsing and printing of S-expressions in Canonical form") (description "This library provides minimal support for Canonical @@ -1428,7 +1463,13 @@ ocaml-migrate-parsetree") `(("ocaml-ppx-tools-versioned" ,ocaml-ppx-tools-versioned))) (arguments `(#:package "bitstring" - #:tests? #f)); Tests fail to build + #:tests? #f; Tests fail to build + #:phases + (modify-phases %standard-phases + (add-before 'build 'upgrade + (lambda _ + (invoke "dune" "upgrade") + #t))))) (home-page "https://github.com/xguerin/bitstring") (synopsis "Bitstrings and bitstring matching for OCaml") (description "Adds Erlang-style bitstrings and matching over bitstrings as @@ -1453,7 +1494,8 @@ powerful.") "166laj8qk7466sdl037c6cjs4ac571hglw4l5qpyll6df07h6a7q")))) (build-system dune-build-system) (arguments - `(#:test-target ".")) + `(#:test-target "." + #:dune ,dune-bootstrap)) (home-page "https://github.com/janestreet/result") (synopsis "Compatibility Result module") (description "Uses the new result type defined in OCaml >= 4.03 while @@ -3813,6 +3855,13 @@ serializers and deserializers from type definitions.") (base32 "197xjp4vmzdymf2ndinw271ihpf45h04mx8gqj8ypspxdr5fj1a5")))) (build-system dune-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'build 'upgrade + (lambda _ + (invoke "dune" "upgrade") + #t))))) (inputs `(("ocaml-fmt" ,ocaml-fmt) ("ocaml-astring" ,ocaml-astring) -- 2.28.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 01 22:41:31 2020 Received: (at 43745) by debbugs.gnu.org; 2 Oct 2020 02:41:31 +0000 Received: from localhost ([127.0.0.1]:38881 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOB0k-0000z5-W5 for submit@debbugs.gnu.org; Thu, 01 Oct 2020 22:41:31 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59894) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOB0j-0000yu-Jm for 43745@debbugs.gnu.org; Thu, 01 Oct 2020 22:41:29 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:38762) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kOB0Z-0002rv-Gq; Thu, 01 Oct 2020 22:41:22 -0400 Received: from [2605:6000:1a0d:48fb::8e5] (port=58240 helo=debian) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kOB0Y-00036O-93; Thu, 01 Oct 2020 22:41:19 -0400 From: Brett Gilio To: Julien Lepiller Subject: Re: [bug#43745] [PATCH] gnu: dune: Update to 2.7.1. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> Date: Thu, 01 Oct 2020 21:41:16 -0500 In-Reply-To: <20201001153909.296c8d3e@tachikoma.lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:39:09 +0200") Message-ID: <87k0w9xsc3.fsf@debian> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Julien Lepiller writes: > Hi Guix! > > This patch series updates dune to 2.7.1. The first patch is unrelated, > but reduces the number of dependents of ocaml-4.07, which I'd like to > remove in the future, by building unison with 4.09. > > Then, 4 updates that are required, or they fail to build with the newer > dune. Since dune 2 removed jbuilder entirely, we need to get rid of > every use of the #:jbuild argument, which I do in the following patches. > > I add stdlib-shims, which is required for other updates later in the > series. I then update 6 more packages, that fail in their current > version with dune 2, but whose updated version work well with dune 1 > and 2. > > I add csexp, which is a dependency of dune-configurator 2, convert > compiler-libs and jane-street-headers to ocaml-4.07 only (so they don't > need to be updated for now, as that would create all sorts of issues). > The penultimate patch ensures we build all ocaml4.07- packages with > ocaml4.07-dune, which was not a problem before but... > > The last patch updates dune to 2.7.1, and keeps ocaml4.07-dune at its > current version, which causes problems when mixing the two, hence the > previous patch. > > The reason for preserving the version of ocaml4.07-dune is that many > dependents were created for jbuilder, so we'd need to change many of > them in order to update ocaml4.07-dune. > > In the future, I'd like to add ocaml 4.11, update bap and maybe some > other packages to use ocaml 4.09, and remove 4.07, eliminating dune 1 > completely. Wow, tremendous work. I look forward to going through these patches. Brett Gilio From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 02 04:56:40 2020 Received: (at 43745) by debbugs.gnu.org; 2 Oct 2020 08:56:40 +0000 Received: from localhost ([127.0.0.1]:39320 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOGro-0004Sf-4u for submit@debbugs.gnu.org; Fri, 02 Oct 2020 04:56:40 -0400 Received: from mail-qv1-f45.google.com ([209.85.219.45]:36233) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOGrm-0004SL-4p for 43745@debbugs.gnu.org; Fri, 02 Oct 2020 04:56:39 -0400 Received: by mail-qv1-f45.google.com with SMTP id f11so412124qvw.3 for <43745@debbugs.gnu.org>; Fri, 02 Oct 2020 01:56:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=3BtBNOilN5BeS0eH6c/7RqHdkKwGZlQyGHfo3TSrXuU=; b=iuDWtXBDnJVRHCrtiq9Nw9Dy9yI2p5O27xsq3fFd0h7ekgrWeVhVME7JdogT32oSWd LwRSGZLQ+8Aqm+kufCK9AWdOol2d8XAw9HGPmkTgfhdRKUq8n0cIVWU26oKqShz3V6mA T7e5HWXvT65ngV4oCNyLktWw+dozWsAD59H6Q3Yjzc8ZscbX9djnD8Dsh/uKfnNxbO1/ j32sNUHjae96VMw9bg1tfpE6doA2aHBn2O2Qyr7odJX/iMkqUbtHTRsnUG/N8z1f1MOH np2zqS94cLr0Xlu3Sa6F4mjmJocGhFT3lzmDijCYY+LLNY+lNkkT0MRZUhzP/NTdRpsp SA8A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=3BtBNOilN5BeS0eH6c/7RqHdkKwGZlQyGHfo3TSrXuU=; b=C7ePdf21AgoPzVjbf5P9TQ0SCMZ9KFlb50wBoomzIGYEvq3UIPZXKZNE63fbmfMmFS 9mXnMzOhxUgqvQGuF2+Pv2ivn8S2XV592EzcQk8DTUrolP+8S7IHr4Xou/Lo2sJ3hMl0 ufHmWHebTgpMq90n8X08tohoAbAVH0Awu07hmwesP/uEiLDZBt8pGbemptzYP6yrIACR qhH+TN87+4k83/PAnAMEdYXF8rciDo2rH4xpivoI7WGFupjvOYyYpUBntr4NENSK/DA0 tq5nkdOM08kEefg7yd0QXk/9G0uwsXbtz2aSmudSIfVIWBXweEdVOrU+nOmYCTTIH5+p 0Npg== X-Gm-Message-State: AOAM53391i/Zr13dPe6Xxp7t/6TYTUyvGP309pa49c8Rv69VRYUdfYJ+ mHdWQYcWl6T+PPm+KOoQYCRfdCGvLHutUud8Ul/vTz/pH/E= X-Google-Smtp-Source: ABdhPJyoEdPRYpUo7BE5VeYr6EsHN0a72XPdeM+7oLI60x5fTbS5pP6FuLH8rCgN5y1lkouKXaFCh621Ls92utAduUE= X-Received: by 2002:a05:6214:1767:: with SMTP id et7mr1116002qvb.43.1601628992293; Fri, 02 Oct 2020 01:56:32 -0700 (PDT) MIME-Version: 1.0 References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-27-julien@lepiller.eu> In-Reply-To: <20201001134133.32105-27-julien@lepiller.eu> From: zimoun Date: Fri, 2 Oct 2020 10:56:20 +0200 Message-ID: Subject: Re: [bug#43745] [PATCH 27/27] gnu: dune: Update to 2.7.1. To: Julien Lepiller Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Thank you for all the patch set! :-) On Thu, 1 Oct 2020 at 16:07, Julien Lepiller wrote: > -(define-public dune > +(define dune-bootstrap > (package > (name "dune") > - (version "1.11.3") > + (version "2.7.1") > (source (origin > (method git-fetch) > (uri (git-reference > @@ -1289,17 +1289,19 @@ full_split, cut, rcut, etc..") > (file-name (git-file-name name version)) > (sha256 > (base32 > - "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))) > + "10qgx83fq8b522y9mpllrp0l5cgmr2bs5s7aix5img21hlbm34in")))) > (build-system ocaml-build-system) > (arguments > `(#:tests? #f; require odoc > - #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) > + #:make-flags (list "release" > + (string-append "PREFIX=" (assoc-ref %outputs "out")) > (string-append "LIBDIR=" (assoc-ref %outputs "out") > "/lib/ocaml/site-lib")) > #:phases > (modify-phases %standard-phases > (replace 'configure > (lambda* (#:key outputs #:allow-other-keys) > + (mkdir-p "src/dune") > (invoke "./configure") > #t))))) > (home-page "https://github.com/ocaml/dune") [...] > +(define-public dune > + (package > + (inherit dune-bootstrap) > + (propagated-inputs > + `(("dune-configurator" ,dune-configurator))) > + (properties `((ocaml4.07-variant . ,(delay ocaml4.07-dune)))))) > + > (define-public ocaml4.07-dune > - (package-with-ocaml4.07 dune)) > + (package > + (inherit (package-with-ocaml4.07 dune-bootstrap)) > + (version "1.11.3") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/ocaml/dune") > + (commit version))) > + (file-name (git-file-name "dune" version)) > + (sha256 > + (base32 > + "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))))) Can the v2.7.1 of 'dune-bootstrap' be compiled with OCaml4.07? All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 02 08:42:58 2020 Received: (at 43745) by debbugs.gnu.org; 2 Oct 2020 12:42:58 +0000 Received: from localhost ([127.0.0.1]:39663 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOKOo-0008AT-2e for submit@debbugs.gnu.org; Fri, 02 Oct 2020 08:42:58 -0400 Received: from lepiller.eu ([89.234.186.109]:52428) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kOKOi-0008AD-6C for 43745@debbugs.gnu.org; Fri, 02 Oct 2020 08:42:56 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 8fd76d78; Fri, 2 Oct 2020 12:42:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=/MIppD20AA4RLOs4VxzNoCJbR/pz7GxbxUxGrYK1eZ8=; b=ERmynBw aQqYw3Dla4HP4ZexRTfwmkZJPPqZT63M12PsLSSexc4IHo2bhVVQzW2JI7B6pQBf 3rfufsuZl0a/9Woqsjz8JnkTavJ3CHrWzd5g3fRAFagC6YK4kZfgpaFehif06tgI Bvc4uiOG/q8TELM0hB2WSGBKuNBY88FHI0t1OEytVB57Frh2Us+H1WzOUl79raOT IJ2wtvWcQbd1BVSxS8fvXzKXtv35b306Mo4ue9rDHCpEvdLDpZT03oYeiC4d6ncS 5pnOUWsca8XKpZrY5PmJXaoCIf0gFmHGgoAPRz5+7dID2+sfoEt4jtRMf1Hw1HPQ M4SOgcnmxVvOPPg== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id bb2f9d57 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Fri, 2 Oct 2020 12:42:48 +0000 (UTC) Date: Fri, 02 Oct 2020 08:42:39 -0400 User-Agent: K-9 Mail for Android In-Reply-To: References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-27-julien@lepiller.eu> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----DSS438S05BU27FDQ11ESBAH92LU5MQ" Content-Transfer-Encoding: 7bit Subject: Re: [bug#43745] [PATCH 27/27] gnu: dune: Update to 2.7.1. To: zimoun From: Julien Lepiller Message-ID: <9E953033-A6C1-4FBA-9BEE-8C7F826C4CD1@lepiller.eu> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------DSS438S05BU27FDQ11ESBAH92LU5MQ Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Yes, it's posssible, but as I said, most of our ocaml4=2E07-* packages will= need to be fixed to work with dune 2=2E Le 2 octobre 2020 04:56:20 GMT-04:00, zimoun a =C3=A9crit : >Hi, > >Thank you for all the patch set! :-) > > >On Thu, 1 Oct 2020 at 16:07, Julien Lepiller >wrote: > >> -(define-public dune >> +(define dune-bootstrap >> (package >> (name "dune") >> - (version "1=2E11=2E3") >> + (version "2=2E7=2E1") >> (source (origin >> (method git-fetch) >> (uri (git-reference >> @@ -1289,17 +1289,19 @@ full_split, cut, rcut, etc=2E=2E") >> (file-name (git-file-name name version)) >> (sha256 >> (base32 >> - =20 >"0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))) >> + =20 >"10qgx83fq8b522y9mpllrp0l5cgmr2bs5s7aix5img21hlbm34in")))) >> (build-system ocaml-build-system) >> (arguments >> `(#:tests? #f; require odoc >> - #:make-flags (list (string-append "PREFIX=3D" (assoc-ref >%outputs "out")) >> + #:make-flags (list "release" >> + (string-append "PREFIX=3D" (assoc-ref >%outputs "out")) >> (string-append "LIBDIR=3D" (assoc-ref >%outputs "out") >> "/lib/ocaml/site-lib")) >> #:phases >> (modify-phases %standard-phases >> (replace 'configure >> (lambda* (#:key outputs #:allow-other-keys) >> + (mkdir-p "src/dune") >> (invoke "=2E/configure") >> #t))))) >> (home-page "https://github=2Ecom/ocaml/dune") > >[=2E=2E=2E] > >> +(define-public dune >> + (package >> + (inherit dune-bootstrap) >> + (propagated-inputs >> + `(("dune-configurator" ,dune-configurator))) >> + (properties `((ocaml4=2E07-variant =2E ,(delay ocaml4=2E07-dune)))= ))) >> + >> (define-public ocaml4=2E07-dune >> - (package-with-ocaml4=2E07 dune)) >> + (package >> + (inherit (package-with-ocaml4=2E07 dune-bootstrap)) >> + (version "1=2E11=2E3") >> + (source (origin >> + (method git-fetch) >> + (uri (git-reference >> + (url "https://github=2Ecom/ocaml/dune") >> + (commit version))) >> + (file-name (git-file-name "dune" version)) >> + (sha256 >> + (base32 >> + =20 >"0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))))) > >Can the v2=2E7=2E1 of 'dune-bootstrap' be compiled with OCaml4=2E07? > >All the best, >simon ------DSS438S05BU27FDQ11ESBAH92LU5MQ Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Yes, it's posssible, but as I said, most of our oc= aml4=2E07-* packages will need to be fixed to work with dune 2=2E

Le 2 octobre 2020 04:56:20 GMT-04:00, zimoun <z= imon=2Etoutoune@gmail=2Ecom> a =C3=A9crit :
Hi,

Thank you for all the patch set! :-)
<= br>
On Thu, 1 Oct 2020 at 16:07, Julien Lepiller <julien@lepiller=2Ee= u> wrote:

-(defi= ne-public dune
+(define dune-bootstrap
(package
(name "dun= e")
- (version "1=2E11=2E3")
+ (version "2=2E7=2E1")
(s= ource (origin
(method git-fetch)
(uri (= git-reference
@@ -1289,17 +1289,19 @@ full_split, cut, rcut, etc=2E=2E")=
(file-name (git-file-name name version))
= (sha256
(base32
- "0l4x0x2fz135pljv= 88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr"))))
+ "10qgx83fq8b5= 22y9mpllrp0l5cgmr2bs5s7aix5img21hlbm34in"))))
(build-system ocaml-b= uild-system)
(arguments
`(#:tests? #f; require odoc
- = #:make-flags (list (string-append "PREFIX=3D" (assoc-ref %outputs "out= "))
+ #:make-flags (list "release"
+ (= string-append "PREFIX=3D" (assoc-ref %outputs "out"))
= (string-append "LIBDIR=3D" (assoc-ref %outputs "out")
= "/lib/ocaml/site-lib"))
#:phase= s
(modify-phases %standard-phases
(replace 'configu= re
(lambda* (#:key outputs #:allow-other-keys)
+ = (mkdir-p "src/dune")
(invoke "=2E/configure")
= #t)))))
(home-page "https://github=2Ecom/ocaml/dune")
<= /blockquote>
[=2E=2E=2E]

+(define-public dune
+ (package
+ (inherit dune-bootstr= ap)
+ (propagated-inputs
+ `(("dune-configurator" ,dune-config= urator)))
+ (properties `((ocaml4=2E07-variant =2E ,(delay ocaml4=2E0= 7-dune))))))
+
(define-public ocaml4=2E07-dune
- (package-with-o= caml4=2E07 dune))
+ (package
+ (inherit (package-with-ocaml4=2E07= dune-bootstrap))
+ (version "1=2E11=2E3")
+ (source (origin+ (method git-fetch)
+ (uri (git-reference+ (url "https://github=2Ecom/ocaml/dune")
+ = (commit version)))
+ (file-name (git-file-name= "dune" version))
+ (sha256
+ (base32
+= "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))))= )

Can the v2=2E7=2E1 of 'dune-bootstrap' be compiled w= ith OCaml4=2E07?

All the best,
simon
= ------DSS438S05BU27FDQ11ESBAH92LU5MQ-- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 05 10:56:13 2020 Received: (at 43745) by debbugs.gnu.org; 5 Oct 2020 14:56:14 +0000 Received: from localhost ([127.0.0.1]:50105 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kPRuP-0000Ic-In for submit@debbugs.gnu.org; Mon, 05 Oct 2020 10:56:13 -0400 Received: from mail-qt1-f169.google.com ([209.85.160.169]:33077) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kPRuK-0000IK-TT for 43745@debbugs.gnu.org; Mon, 05 Oct 2020 10:56:11 -0400 Received: by mail-qt1-f169.google.com with SMTP id c23so2646708qtp.0 for <43745@debbugs.gnu.org>; Mon, 05 Oct 2020 07:56:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=IeFdoDrH3eKm1nLyCffJRdL0YfdFiKzlpYxCgpd+9lI=; b=D1Cg9KkCNl605/q2+ZShVLKDFv/WRcn9yRegXbrbRitX6H/vcc9tLgdbtCNjefhuQo 0XKYzbyXLxvFJ1mf6bSrK19p0+Cv5X0fniNvYZcO6eork+z/G01kFHFVbKjJNcQ9nqTU fX2dk/Qmbs0X2ucJR+GA+6lK3XZ7eDI0/ZddrkMe3hFeF8ggM1FsD2bbstjSj1PqEWfj V4ku1kCvD61l38eMQqQhtz4LIFxsbu6oPEgw0RN4aElKUIMto9z8568/itwSSfZV/wby FQfx3ijWG+WkaOLR95JtH1I/OgFfm4mE8ygvDyyC/QarfcG8MyBKrZ1a2JlN0e75fxUx in1g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=IeFdoDrH3eKm1nLyCffJRdL0YfdFiKzlpYxCgpd+9lI=; b=iKlpL0tBzDngp9lkkDQfLoKxpxkFuM8QWB7G+Gyi1nV3/VG4sAhcMG/eraSYHaUwGP sAFUNuiHXWm+HVvkjYibb25boqrW0Lt8qnLniTEV/r2x82SXmxb5XZIHjZTUYMpDtu16 rj6KJcoBxQaxWICcR2kJ6ERMXsnAhTMKAuPWSow6f/V+fEwp43wANJKFwoKLq6kyGCJ1 2JZJJ3w53GckkwkbQz8kAB3aW/GexebH5Gp81qD879rMSwLX2T8/2qFGXmrQ+604MEZU ND9NxNx9Hu6Vrdcj8LuPpNOYk5LocTfRvYN67frj0LQvV8qKWx4OHkoyMVDub5B+cCHn ZFsg== X-Gm-Message-State: AOAM533O/ayfotXq1NzOxP+nbNPyb1hvmntWrYJPkZ5H7Yz8gfX/RQlA HW/powV+nVbkZnY2oQs13I7i/D9y4iAhmRuge14= X-Google-Smtp-Source: ABdhPJxQusuao2y0houUNsG7G5jMFDMBWCa7VOb6uw3Yx+nfx172oc9Qh7RAiYA5v5Mw1H8Wej/PeEQcDpKFBLKHtqk= X-Received: by 2002:ac8:5942:: with SMTP id 2mr188510qtz.217.1601909763301; Mon, 05 Oct 2020 07:56:03 -0700 (PDT) MIME-Version: 1.0 References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-27-julien@lepiller.eu> <9E953033-A6C1-4FBA-9BEE-8C7F826C4CD1@lepiller.eu> In-Reply-To: <9E953033-A6C1-4FBA-9BEE-8C7F826C4CD1@lepiller.eu> From: zimoun Date: Mon, 5 Oct 2020 16:55:52 +0200 Message-ID: Subject: Re: [bug#43745] [PATCH 27/27] gnu: dune: Update to 2.7.1. To: Julien Lepiller Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Fri, 2 Oct 2020 at 14:42, Julien Lepiller wrote: > > Yes, it's posssible, but as I said, most of our ocaml4.07-* packages will need to be fixed to work with dune 2. Thanks for explaining and sorry I have overlooked your cover letter. Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 18:47:19 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 22:47:19 +0000 Received: from localhost ([127.0.0.1]:44280 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6b6-0008Ts-Vb for submit@debbugs.gnu.org; Mon, 12 Oct 2020 18:47:19 -0400 Received: from mail-wm1-f67.google.com ([209.85.128.67]:35941) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6b1-0008Tb-Ik for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 18:47:15 -0400 Received: by mail-wm1-f67.google.com with SMTP id e2so19476143wme.1 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 15:47:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=xQC8Qcioc+kRy5Y53hCQXH/nCq6vXXepHGzs7Yu9dZs=; b=lJkRZiP8ZapBW/ZwxANDddmyt1gRbNlQ9rwQSY9svBRLVEvryHBPiCtf9M1ZpptNkZ 79UY0bDPjuEUdJM3hgivfs8eZj64tYkyhua1osa5myksgF3pi2/HddaHwuPctzgzqJRF FobS0+/yD/HYVuOTYiZuI0V4+jywfYDrVi74rWPe+JuXF43QiDRZhKtbC4qfSUPkurk6 DNIn2MuZ965C98FlHtVbi9ZaJ3cVxS9eSxL8rzQbWYHAvVIDkDP9D7h77MDinDhTsmtV dZucT/+JiKVjdu5RSAtEfn7IH/Yv5KQvOmfQZrvGtgeij3PmVgz1PLDKimQjYsf3VF4h OyYQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=xQC8Qcioc+kRy5Y53hCQXH/nCq6vXXepHGzs7Yu9dZs=; b=ijtknH4KPVHTFZOPDPdrfCBTLSKjD9bLUqHaf6H6zjxAhW4D/J0p90sbmaRS6bqOnW uoPYLoxhDspN2xeyrKPQN9Na3XJwTA3QSaZ5cdmzZT+qZ0V4ZWXYMKWMQnA8sMyCBCEN cIHEuhf97pXAZrNJiTDDSkQJ+3Y/AZ1jD1q8jnDif5kjePKuve3bimZRFxm3tG9Z2l4K s4XXBjL7p0xj5PKz2OYvo5fJeVw+Yia7XtbHLRpEbgAF+rgpgq39IJNygeCyCbtdsXEL fSWUc4DX2PgAr97AnorhXItCC3d3Lwf6XbBgxOX0kNnZgHXGTSpjv8Jfp/Z85kng0KSb XkcA== X-Gm-Message-State: AOAM532so/CP6MtZybRGFP/jymJVYDe3aCixY4Ga76z0TGCJMZnuJ4UC Cmnej0B6SlyMPusAYwlgXcT1nMlK7fc= X-Google-Smtp-Source: ABdhPJyUp9q/9GMC2KP2BfxkrUlJwMre9+Vmvaw+dvLp6gn6S/WK+dpZfdLN0bgTsgjyDRfEX89b1w== X-Received: by 2002:a1c:6457:: with SMTP id y84mr12409127wmb.36.1602542825354; Mon, 12 Oct 2020 15:47:05 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id k190sm24486230wme.33.2020.10.12.15.47.04 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 15:47:04 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 01/27] gnu: unison: Build with ocaml-4.09. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> Date: Tue, 13 Oct 2020 00:47:03 +0200 In-Reply-To: <20201001134133.32105-1-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:07 +0200") Message-ID: <865z7foye0.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (unison)[sources]: Add an upstream patch. > [native-inputs]: Use ocaml-4.09. > * gnu/packages/patches/unison-fix-ocaml-4.08.patch: New file. [...] > + %D%/packages/patches/unison-fix-ocaml-4.08.patch \ [...] > + (patches (search-patches "unison-fix-ocaml-4.08.patch")))) Why 4.08? Typo? Maybe a comment otherwise? From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 18:47:50 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 22:47:50 +0000 Received: from localhost ([127.0.0.1]:44283 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6be-0008Ug-HV for submit@debbugs.gnu.org; Mon, 12 Oct 2020 18:47:50 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:45637) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6bc-0008UR-VJ for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 18:47:49 -0400 Received: by mail-wr1-f66.google.com with SMTP id e17so21329560wru.12 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 15:47:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=UFMuRKE72Z8bNLT7izv08Qx/jF5dZEI7Cvv5CL6eWV4=; b=SbfTWEwwpDYFUyhyNIeDP8RGSjr4XsdntYotzbKKiDo9zmhbW3ic84dB/UcikDsb8L zaTGtzGRNqYfAaIs8f/rpSoensIZ6yD/LOgM2BjtjeKVzr8UBinCTeKhfWMbecLt5UkN 6h1og5r6pvnOpmroOwGR3DYJQP10eiKx/AWNUi9eMLtW6gS7ZI//dGUElHBMRrVmqiOs vK74teeZnEmdEyzEesk4SjDBue26mX4kq4/eTyuxNqoZri3pffsM4M7mkK+RsoYFULcf McYYSnUSw1747ZG+UuXxxVrh/TvRn7mfJzPvL93hAxXuXdy6faOE+HR0xcyIWbjgXoiy cWOQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=UFMuRKE72Z8bNLT7izv08Qx/jF5dZEI7Cvv5CL6eWV4=; b=M9udJ6lnNyQY18vdPwoLQTKNIbItoJbZGdrviagf0urcvJhOphJG0v5V1crsUGPU9Z x1l6nVGirxh614aYKw97/tkN2hBSLDOLJ+3Nr0/3W9D6FZeyNEzP0yGm1PcVo7K+6VoR 7Xn21BeVwJC0TKWPcPyuhxYH+/gehjr87qP1RTjQ5+3ovqC8iv6v28Zn9B0HalBkkugf juxZiPii/UWyCkE2gyR5VRwhYu6szzhIXq+/KszTYmBIyKODu16ysM+MG6V/k6EJ6n8X v1ikWosJpEpFO3sYz1ZpQUzg8Rfg3Rb5AU+Xhrq3VIfulf0CiqQAnTiaTkyJAvai3eFS ShMw== X-Gm-Message-State: AOAM533Dxih0nMTRzU7fA8bsY1LwXtlyXKEZFSDub0IXYFSk7EuN5YVD jPD11m08KxrApZa1BgZ58L31/Rnjrf4= X-Google-Smtp-Source: ABdhPJzHjj2f1xO2hkvQIyXhETOCP5B/hNb7b541bEA+2FUWUDY3QHd38w5riwyUq8+Qq+CIeAsvXQ== X-Received: by 2002:adf:e9c6:: with SMTP id l6mr9808282wrn.257.1602542862950; Mon, 12 Oct 2020 15:47:42 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id v17sm27262228wrc.23.2020.10.12.15.47.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 15:47:42 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 02/27] gnu: camlp5: Update to 7.13. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-2-julien@lepiller.eu> Date: Tue, 13 Oct 2020 00:47:41 +0200 In-Reply-To: <20201001134133.32105-2-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:08 +0200") Message-ID: <86362joycy.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (camlp5): Update to 7.13. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 18:50:52 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 22:50:52 +0000 Received: from localhost ([127.0.0.1]:44288 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6ea-00007j-0H for submit@debbugs.gnu.org; Mon, 12 Oct 2020 18:50:52 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:45125) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6eY-00007X-Ht for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 18:50:50 -0400 Received: by mail-wr1-f68.google.com with SMTP id e17so21343147wru.12 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 15:50:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=1JcqLymFE2+yfJPqFdf6B9jJQ/2CQv5OvFXff3y0RTw=; b=PxqJ4UTxs60Oa38FETf/eX+Fdprqd1qSQ8urcc9QnSHV6ynqg6xqwbT46HUg0MMCQk RN2e+8EXS7hGkhZgAF3OprCJ8XMqdMCLzdEIEl5IwF+Ch+BJvxP4KFAc6nh2l8zU5LFE uXqKBqiQvcZi/XE76kXRduEkNhrNOMobQMHHKS6sapMSEcPKTlZVo7reOwLXaQZx8UFG HH/dc5JttaqsXoWTxPECX15bnIbTG/grPp7WoB8YUZDDSCyG5OTQF9ChMFnDriCwuyY0 qjHqQxLQ4mr/NgZN9bOjHBzo+9lbZjJHb1HZaX0CDIx+XMwx6QXjU9T0ZXyvNQKko+dW Je8A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=1JcqLymFE2+yfJPqFdf6B9jJQ/2CQv5OvFXff3y0RTw=; b=pC9QgiiMcspTyPnxqgmt8Pq6H2uoLT4lv0QL7slMKEesJEPcr5Li3wjSd4069ftBWQ Bz4yns2AH/kWQlXVgRstROL0hjNlXkEPEbSXJ7fyz+CQGtwvGUIr8NN1iZeAKjAps7vm 28HP3Cl3EjbvBBKiMBcS5UR3G921jh47DRfSyoi6BKpnPhIyXTnKCa2k/dWoKJrP1tn1 PrdV6ZsYh1RXLkj3yaNUrBdgz41KXOWF2RfJV46T663coWo9BewJKh9s7G1MVcluSHxf oNjJWYawJIMcoTggdP0Q4jIe2K+20/4an/zgSlh6SBfmg/heBCBmpjTI3YIfGLrp5gwx lhRg== X-Gm-Message-State: AOAM5302/wHQLYu0gv9nKSk4iv2b5MWKLBAeO/bEqRZASZw6TXy8+m+I ZbK+92BWmMOPjHkUWqO3uuVqZAtFjNc= X-Google-Smtp-Source: ABdhPJyDiQ5baeTYYgCO1H5Z8h4P/hUPaLtJyi1Vxi+B3flENUsmQcFhcmeS8bka0peLp8yM9apfwQ== X-Received: by 2002:a5d:4083:: with SMTP id o3mr3992154wrp.44.1602543044614; Mon, 12 Oct 2020 15:50:44 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id y4sm25615412wrp.74.2020.10.12.15.50.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 15:50:44 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 03/27] gnu: ocaml-mccs: Update to 1.1+11. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-3-julien@lepiller.eu> Date: Tue, 13 Oct 2020 00:50:43 +0200 In-Reply-To: <20201001134133.32105-3-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:09 +0200") Message-ID: <86zh4rnjng.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml-mccs: Update to 1.1+11. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 18:53:53 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 22:53:53 +0000 Received: from localhost ([127.0.0.1]:44292 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6hV-0000Bz-EX for submit@debbugs.gnu.org; Mon, 12 Oct 2020 18:53:53 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:40948) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6hT-0000Bm-UU for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 18:53:52 -0400 Received: by mail-wr1-f68.google.com with SMTP id h5so11305770wrv.7 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 15:53:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=JYXLKWY8lqYQ3xQn070mzR/Zu1iV4Rda4N8h/5XWFQM=; b=Q82RoBSnMCj6EB4d+YxHRlG5EdNbPB4USkTOdpxGHXO7EkTpuHGntRw9wh1r9TJfSC nXvja5id1diglkKhJN1fnTjWyxkImOvIF8rPt5vBFKjRdVUuwFFhMN79ZceRY7SigUTn 9SSSIFHZj2IOwYdY4LVxPitfQqi8NEiXPvGFiRWzF7AKx6nG1stJHZbdIyJp/I4kE3tD 79AL7zDgI2ttWz2lIFa5sGeV7Czim4FHxsh2XdN+hQTfRW5I0gYUIG3+em5t9bF9dLH0 +AEw6/MF7cE8ElQFi+GDu+qPNCgi5imem4G7e8xx++XhJIUJUHxHg6HNlDUI/vvaoCy0 NJvg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=JYXLKWY8lqYQ3xQn070mzR/Zu1iV4Rda4N8h/5XWFQM=; b=Dm8mH2LPQfIX5lEZ0TqYfGIXLsJmQrJLlmn2EVmqBMGKlaQ8rPeckOr2n25XpFyT7y JvOEl0hfK7zXu37DvwGir1liZ2AvicSBTYIgWoNIYub/Hpnv2cNPHw+820o9/K0hEtIP Nv5rJEeOQxFtBLrDfjQ5/cozD7ZQao5QfdsYf1Wf3EGjNk9WttoqI165iXRrUaXwsxHU Pombxmt5qoC5uuegbSEWHmflzoRZBStWze42ZanES+J4UrScYTMT/o4dnQqyFGfNHIRC Ua233NmuZLJ6eT5RfVsUjZubceZk5H4hg0Iqx141Sz8ngHAFNLxUq/W05+DJkvl8GGjD uePA== X-Gm-Message-State: AOAM532oK0LwfKHNdl1TR36YUo0HUQZ0TxhLfZFGF8eNTZYV2e7lw9xV j5YCiwtD/fXPed5zBwAd6BTuzda0n8s= X-Google-Smtp-Source: ABdhPJwozDGabaUJodHX/JPAV2SqXGl+4W9Xu+sV3C6np9CETRBdsMgx/+Baid9bDaTBlltorXfOFQ== X-Received: by 2002:a5d:40c3:: with SMTP id b3mr35271294wrq.157.1602543225823; Mon, 12 Oct 2020 15:53:45 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id n2sm24553536wma.29.2020.10.12.15.53.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 15:53:45 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-4-julien@lepiller.eu> Date: Tue, 13 Oct 2020 00:53:43 +0200 In-Reply-To: <20201001134133.32105-4-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:10 +0200") Message-ID: <86wnzvnjig.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-migrate-parsetree): Update to 1.7.3. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM but '--check' returns: --8<---------------cut here---------------start------------->8--- guix build: error: derivation `/gnu/store/fgkmww5s1srlh8frn1jbzz952mkn4pvi-ocaml-migrate-parsetree-1.7.3.drv' may not be deterministic: output `/gnu/store/3pb3cz6s0p37p4737gm6cj50p1vh02q8-ocaml-migrate-parsetree-1.7.3' differs --8<---------------cut here---------------end--------------->8--- Could you open a bug report when you will merge to master? All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 18:56:49 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 22:56:49 +0000 Received: from localhost ([127.0.0.1]:44296 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6kK-0000Ge-Tn for submit@debbugs.gnu.org; Mon, 12 Oct 2020 18:56:49 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:37220) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6kI-0000Fz-Nx for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 18:56:47 -0400 Received: by mail-wm1-f68.google.com with SMTP id j136so19513199wmj.2 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 15:56:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=ScWfU+dZJzONPj9YfyS0v+wQghDaqeH/2DGAV5fVTDM=; b=EOjNzodA2Qhd0uI5H5fpfXbbTwuj/6aN3leTf8UVcNlml9jlzq3e8cnY64Q9bvkHxU jetvHzyVBOJcADAp/HS8Km5a3S1/Vh2vHYo8G01qCGBxfdq57c9EztYU5MVKwE6xSt8L y15h+Ch2n3gYmnzOgAjyGGaDI+ll1RiGtG9F12jEvvfggQc0RFf55b4Mm8pJLdgpimxN sxMkaq6UMdIHM7eJUIM3toDpBm8YsrUGD6nWdVRblzOid7E9YgdqY8JjwyiwvoeG8Vav l6xP6enN2DKfh5MuG8MOD7Yufzlgb4B+ZAP5jY4z3IvSjA9RFoCPCBhVtV7kJRm1/75W Pz2A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=ScWfU+dZJzONPj9YfyS0v+wQghDaqeH/2DGAV5fVTDM=; b=aGk5APnJgCyIqS3RGwbuF7bAHm6TtUQ9aLS20LkEdLBH6KCaCArVIQE0tALEYmk2rJ MirR/Ic+yG0VICxupneiREMxsJPgXZuMNNXkmLJTmClnpMF2rGqAkruMG6U43CDo0Mwx tWsXFmmrm5z6B2bxMnjR4ecoL7Bl3ciief7dsbGLm3CKouCKSp/bQmPM5xLpwSZxZLk3 y2W8hA5hf5vuObrG7RU4rnzFjiFVC42e8OORKctahtCLgEIsrZYkudpE4mYCygJZaFYA AJlwduGCk7aSqWXhWw7bSrsx0sn3p8pErWyiqAVrE4ddzvppaNS/uFWYk5fqD1aiSUH3 BzXw== X-Gm-Message-State: AOAM530ZfWK1y45BUee+jn4E5PoIsRkF4mg8d7otA+d42harZk4DXVdz 0HMBlcGTgWoGRXPrnRh3FaNZU7CLraY= X-Google-Smtp-Source: ABdhPJzbYl38jPOTBrEO9IZC35HtKwFg/w0g3x8eDZbR3R5iQzFSJa4libaEt54thS6IePRVeKiSxA== X-Received: by 2002:a1c:2187:: with SMTP id h129mr13490809wmh.51.1602543400439; Mon, 12 Oct 2020 15:56:40 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id v9sm25611809wmh.23.2020.10.12.15.56.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 15:56:40 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 05/27] gnu: ocaml-ppx-tools-versioned: Update to 5.4.0. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-5-julien@lepiller.eu> Date: Tue, 13 Oct 2020 00:56:38 +0200 In-Reply-To: <20201001134133.32105-5-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:11 +0200") Message-ID: <86tuuznjdl.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-ppx-tools-versioned): Update to 5.4.0. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM. However, '--check' returns: --8<---------------cut here---------------start------------->8--- guix build: error: derivation `/gnu/store/147ak35gzjzgri940dq77lwlgqw8dgqw-ocaml-ppx-tools-versioned-5.4.0.drv' may not be deterministic: output `/gnu/store/2972awnn3x72ckpkfcf40x4cn370rs8h-ocaml-ppx-tools-versioned-5.4.0' differs --8<---------------cut here---------------end--------------->8--- Could you please open a bug report once you will merge to master? All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:06:09 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:06:09 +0000 Received: from localhost ([127.0.0.1]:44300 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6tM-0000V0-R0 for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:06:09 -0400 Received: from mail-wr1-f67.google.com ([209.85.221.67]:43246) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6tK-0000Ub-Pk for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:06:07 -0400 Received: by mail-wr1-f67.google.com with SMTP id g12so21412747wrp.10 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:06:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=eFyLd5yz1+QrauNFJohs2N/yl4LRJXD74f4MYBrhV5o=; b=eKuiwuwdFoCz+eijGB/oqoAfv+8KY2TQgNQN0IvB0qBGfSsrlj4GAgPN7wqzjr2rhq vGprcPS8jtaH5I6EOI6cRpT5IRTwtJadRtoe1HCUenyARcFX9S0U4cFoKFrzEYOO3ztw gSfH9COZEgh4LHOcBS4O4sSKcrqDa1BRJdQVXWxP/gQnL3gbAbnUBhcr3SFwxLytNbzw LulFNuBc73+4HF8D0dR9B16C4Ps01PdIY2o7H2nnYzcipfQjVig+I862Ro3S3RmGZcHs zNX0vKEk4X6ZcSappzLQRgoH4yVa8Oy5wYmcJWxPr20cHRiKUp4Y+dp7jWIW5MIfiIrJ dSuQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=eFyLd5yz1+QrauNFJohs2N/yl4LRJXD74f4MYBrhV5o=; b=dSPsoSyDfNEz4EErGJmOb2mJ6v6/PCqoQqHoJOKa2T6STot+s9Jy26CZXvCq0YVu/3 IW6oyc5mozX+l+UQQA9CQYMnmsu5Q4jJlLUJTWh3pfcsHBcnww148hTiBJLyEBOPlu27 4q0VexZqpNxknj1w2oYbFFQiSNakArlsKx/g6qoX+1KzT/aBFM08YJqN+Bp/X3cGQxR+ 8W3LY9K3Ibd9TY4nDWiUXkyifbQoNok6sKxcJgBqrYbcmRG+7Drfq0Gj5HUOQH6a6kpl KRaKzIxjE+oe9oBwU4oG62oGI4NxGUDAeOjYHf9sk1jEq0ViHg2tb93Ymi+uWiLDYwRN XVog== X-Gm-Message-State: AOAM532C7SENpCMKKYpmD2EfG0jig+9NP7ljmV6EAp0Tjj9RK0AyoCxU pdi77Ug3B6y9Ds67BaPlyt0YZ6lzhcg= X-Google-Smtp-Source: ABdhPJwv9xDoC4pMCbT6HKiD+iISYHEa1ETg9roIwTin2iZzgXW4UMMMpl0lLIqflVET8/fssGO3Qg== X-Received: by 2002:adf:e4c9:: with SMTP id v9mr31475693wrm.375.1602543960663; Mon, 12 Oct 2020 16:06:00 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id d4sm26514500wrp.47.2020.10.12.16.05.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:06:00 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 06/27] gnu: ocaml-qtest: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-6-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:05:58 +0200 In-Reply-To: <20201001134133.32105-6-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:12 +0200") Message-ID: <86r1q3niy1.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-qtest): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:07:03 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:07:03 +0000 Received: from localhost ([127.0.0.1]:44304 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6uF-0000WZ-5e for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:07:03 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:36564) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6uD-0000Vx-7O for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:07:02 -0400 Received: by mail-wr1-f66.google.com with SMTP id x7so12823440wrl.3 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:07:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=hY0xZQQGI+HTdoA8PzmhsblzeVOgwwNob7JrKu35YA8=; b=lSZBY073+g7V7qjcgyO5SVIOlLt44A3BHd8Bja7qUj9xLBh9J+gkGsHjIkra40Hbx7 3aNrNXNSibR3iuAkLab3FOvEls9viyCQU4XfSQ83IVk3bO4c5MUoWPJf0MJPVQFHqcfY EcHlY/ASzeW3cMLLpgmoY6ZRoHL42PiZegC2QX76xnHFF/1IcYVTZIcSuodX4dPF4Apr 7XEUboLG/nOqRyUFDepB+HXxxa2Ytp5M3074BRYCpo2u73Rq7LDVCe1gh3okGwfdW/Bi hk0O76YST4odrg6AdRkdcl9jPOxZeS1jrL8jw8WijO0xrmCiAZid2B8OnDIbM8vk1wOs pVhg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=hY0xZQQGI+HTdoA8PzmhsblzeVOgwwNob7JrKu35YA8=; b=rIBal2qWepf54y65iZjA0fkX1/yXtaQgOqEDD6Y0+hEiRy0yS6ohgCD/C5C+7Oenxz LTrGVEEN4a9+f4E2h64K4oigFRM9DWHofwqLk85xfBbOqplhWQsxhNv/G491mEfd5DzB 3EfVnKdZ2/HDlT+UpXddk7AvorigjJTewcbTfPGzOqt7HIMtWLII1b1aL5FzlK43TpI+ 0OkH/SFxUXINcmb0zAFvoYClnwJvFBRnB943W5Mgf7G3P+SPfbbzab/acFJP4bkINboK yowwM3fTIsj7lyy06wrYg6zFmVyqQO20l+z708GuF3uCiRC3A021vVcUsi6SEBMAG826 Dbbg== X-Gm-Message-State: AOAM5315MYNZc8fNshQFIz0uUOXUkgFPv4m5bKrI5acbb06wTS8Gxdza XWhj62NlQe99UhA83EHCK7gEAjEeI4I= X-Google-Smtp-Source: ABdhPJyPT0S4UoQ1IyASRMbL+bw08/sN2HT9capnFo5nz3W1YeokawXaHpf9mVpwPJL5UMtuaD/D8A== X-Received: by 2002:adf:df91:: with SMTP id z17mr23411528wrl.379.1602544015560; Mon, 12 Oct 2020 16:06:55 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id u2sm27820034wre.7.2020.10.12.16.06.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:06:55 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 07/27] gnu: ocaml-bitstring: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-7-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:06:53 +0200 In-Reply-To: <20201001134133.32105-7-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:13 +0200") Message-ID: <86o8l7niwi.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-bitstring): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:09:49 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:09:49 +0000 Received: from localhost ([127.0.0.1]:44332 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6wu-0000bG-Sb for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:09:49 -0400 Received: from mail-wr1-f65.google.com ([209.85.221.65]:39503) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6ws-0000b1-1S for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:09:47 -0400 Received: by mail-wr1-f65.google.com with SMTP id y12so16066940wrp.6 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:09:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=WMaNgECx1n7me3cV1GY+tg+FgWnTCFGXXELHbc6IUsU=; b=HRjvgXAJep0Ha3DBgjj59riyOamh75p2XGGBqdxZol7iNcmEqi1L+Mwp3tlUEn5WaF frYe7MfEmvjcE4AW6GeEqL+QiS1T6EVrvQwsRT6HmYEvVOUU7qhoZgI7djtKsRQQmqP6 am1HchS4Lzts7MwmZR91FSRYbAtbI5mPJDytwz1EstzFlEaF3V2vxWgWX5CCbsZ5DaKQ mZr3s0lQbaacFF6USNu/U+RTVEud7yJrWCkZLCK3B2IakvG8PGhghw6HTpwdRuKZVpik lLaO9HHXF8oVcpt/11xfx1GhjfA3eNOauUdLq55TCfMhijpaE+f0cSRd/LenoEN7ClS5 W+Fg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=WMaNgECx1n7me3cV1GY+tg+FgWnTCFGXXELHbc6IUsU=; b=a0B3r4U/mcn3+tr4YIedj++jjyktr3tIKsTVQ5MffxgS8vGgEyG326WCEeTKSypnPI TAIupUf0gl3sFn/vC7Br20kI9WAYcVwhC68oEKhsi5l18Pm/lo3JDsQMqh5jsXYuY3rr N2J6crP1DlV6UlGIevj4ihwZz1tpiU1k1Br4M7ySTfhuagFIujm4ZY09361KuqhmVSC5 KHyMC/N+AqIizFVI3w3EkIQEnc2Klw/P/Jyhmrl4ZjIveoATA6lBqsSd/S4Hy4O6YPLT 67+yDQ4CgBXfhJpLh2nK8sHnVmq5nbBbTB2WDjDqqifhaWvU2rn8Werp5Pj2xepqaghT mp2w== X-Gm-Message-State: AOAM533dQgwiBVbbIrMjTAcXSoNFD+YT3Unqro+naXFdBkeD/58Btcje EwR6DPmN99rpzUlvx++sBWaLiIgBVpQ= X-Google-Smtp-Source: ABdhPJy2yRHSTQcr45Xg7b9QWPg3TI0503nMWa6mdTt1ptk0GFKAI2ThYfe1787ix/oOsiigeBdtkA== X-Received: by 2002:a5d:6a49:: with SMTP id t9mr14350484wrw.194.1602544180341; Mon, 12 Oct 2020 16:09:40 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id k190sm24530458wme.33.2020.10.12.16.09.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:09:39 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 08/27] gnu: ocaml-lwt-log: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-8-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:09:38 +0200 In-Reply-To: <20201001134133.32105-8-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:14 +0200") Message-ID: <86lfgbnirx.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-lwt-log): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:12:03 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:12:03 +0000 Received: from localhost ([127.0.0.1]:44343 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6z5-0000fM-HQ for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:12:03 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:34428) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS6z3-0000ep-EL for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:12:01 -0400 Received: by mail-wr1-f66.google.com with SMTP id i1so15319873wro.1 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:12:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=6PqcMA2ofj4tHpbpHMVZkWKL6f+Y+/pJYh8X2IR3DVo=; b=ekNakGPbJjxWzPagv3f2jUXS5lzWmCkY6yPFhB9rCFsKjO/WTHMTQl6LHZKYIGS3FK g7fA/K6x/dKR3+vNJM1DXR9jEWZQS1KUP+vLBWv6YzKJqf8HPavKT6WCM5pVKCf1pWTg sV2jYeAdOciy99oZr0czoPRltDg3YHMjBUPZnNJerNZ0/XLPK7+VHHV56hgKAPHbUMjU H7CnPE2m+1hN8p5vElqWChar8N+OWA1RUdQ37yWVbK40LpM/88PJoguGLTaP20BFPAeB BE7KYq97WJ1r/7u2F43I9+ZjNNTczOohV2WuPGLxaNtpd/N8jVCfZ3Ftkc5ZTYBC2f/k Ning== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=6PqcMA2ofj4tHpbpHMVZkWKL6f+Y+/pJYh8X2IR3DVo=; b=GNc5IdPqFMGYFciPl+HzYFxCWUBGqq+ERejMrlMroOsaK9+xYm9s+ReC/ohnnnhAZH 0E/7CG8M0ViSncrSNaQXhn8Rf246pjK/JIzjzBpJAkbuMw7j2p4v6KixOTOwm1fgCgbc Qgjj7JcjJQbqX+LM82d2vWQOT2DY0SjdmNgHackUdszjlfjB+QmLplTOrgGKLPohSR3B ourP0V3SiFMvRPMUrB0wlVMRCXMlKJWzVppLphn8eetj1yo6uDZaZZAMasNzp2Guw0Kn HrVaePtpiigXIwuZ8/GeFIiZNU2deSGrQYYcVaImESr21OrZxqjrqWxm89FAYHKcqGnK F3Rw== X-Gm-Message-State: AOAM5309ba/5LNUeaCp0PRmbYnUbdT/UzRcAF1hurZRbFJ4yket7qtlq LGPUwKnwnO9blknNMO8nfcjPRFbvlNQ= X-Google-Smtp-Source: ABdhPJwHkzAupJp8DM+1sgDdimg3V869BQ6XFzNB6xevqJPOEvTWVYcxLbGTiLDbB09sw7o1N8wG+w== X-Received: by 2002:adf:e8c7:: with SMTP id k7mr6687294wrn.102.1602544315529; Mon, 12 Oct 2020 16:11:55 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id p4sm20730875wrf.67.2020.10.12.16.11.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:11:55 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 09/27] gnu: ocaml-easy-format: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-9-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:11:53 +0200 In-Reply-To: <20201001134133.32105-9-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:15 +0200") Message-ID: <86imbfnio6.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-easy-format): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:14:54 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:14:54 +0000 Received: from localhost ([127.0.0.1]:44359 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS71q-0000ju-Bf for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:14:54 -0400 Received: from lepiller.eu ([89.234.186.109]:45696) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS71n-0000jj-Hm for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:14:53 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 67a42430; Mon, 12 Oct 2020 23:14:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=oMuE+U7DTgBGQP61fbsG3QcNzsWpJCjYjNrUtWsOw2Y=; b=fZW+QOA Cig1A7rKXYXTwAkNnc6nLZ119RHHu5AUa4EkM39Xyq1vjSsqipbi9SuJpsyG1AyJ 9JYqD5WktP6S8X8unKbFBSO7ldITQw6cDvTfGEJeDgeTExexv1QPJD+Z9DdcmZZe hfyaTlZgAyQCy6SRFMmzQ2xFcGfwMPa9pY3C8VWerJi5Gl5l/wMLlNxC5BfPsDJo VSWjskwtej+TfS1ThIy75RmlOcNChVStPd0qcKrr1C4DOq49MUgf1xuLkHCM1YzN pHO77yQ2Xo5OrhnPx09d+qAc0nZbkWYlGp/CPiXH95wA/BHZyM5f7hYJLD6Lhsiu 7MLm40my178uukQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 016b7840 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Mon, 12 Oct 2020 23:14:48 +0000 (UTC) Date: Mon, 12 Oct 2020 19:14:30 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <865z7foye0.fsf@gmail.com> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <865z7foye0.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [bug#43745] [PATCH 01/27] gnu: unison: Build with ocaml-4.09. To: zimoun From: Julien Lepiller Message-ID: <9F5EAAD5-133D-4330-BF0F-627480A30765@lepiller.eu> X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Le 12 octobre 2020 18:47:03 GMT-04:00, zimoun a =C3=A9crit : >On Thu, 01 Oct 2020 at 15:41, Julien Lepiller >wrote: >> * gnu/packages/ocaml=2Escm (unison)[sources]: Add an upstream patch=2E >> [native-inputs]: Use ocaml-4=2E09=2E >> * gnu/packages/patches/unison-fix-ocaml-4=2E08=2Epatch: New file=2E > >[=2E=2E=2E] > >> + %D%/packages/patches/unison-fix-ocaml-4=2E08=2Epatch \ > >[=2E=2E=2E] > >> + (patches (search-patches >"unison-fix-ocaml-4=2E08=2Epatch")))) > >Why 4=2E08? Typo? Maybe a comment otherwise? Ah right=2E This patch fixes compatibility with changes introduced in 4=2E= 08=2E From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:18:10 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:18:10 +0000 Received: from localhost ([127.0.0.1]:44363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS74z-0000pO-S2 for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:18:10 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:34844) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS74y-0000pB-EJ for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:18:08 -0400 Received: by mail-wm1-f68.google.com with SMTP id q5so19562501wmq.0 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:18:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=FZxiUSfFmrV776uMsoxZ8NEGm5ERYfa99HTn5e5tXnM=; b=kJTuNs6At2ZI+1a3XAt3hmjdORTjk1unpWzK7S54+sDENzShsjma2tU0R4T7X7x60o q23j2owU4DyGT/AunGKWjro1P36CLTXlfwIpqbZZtaSz4UQ3YFXx/b6tvHjwNCfkRivJ 1DPH1J6dFPjEohsCQqSafEcywwZuacoiXw9+y9W7o+Kb0ByAntmrpsv+GiL+CgMCNJZE ps69FYVuJN29ozA3HhHHMKaL+2REi82gWMyt7ZsdNa+jVHKFx3z3X24RJCytOYlpcoH3 nWzf100Q2/KGss1DU6GmXipBogkTPzYwjhqAVIFODn/Pi06tHfFS0OvvTSoTUw7aXuSL MnUA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=FZxiUSfFmrV776uMsoxZ8NEGm5ERYfa99HTn5e5tXnM=; b=WtP1ZMbcuSESrfxN1Wp/SbT2up8dHA7lNC0eADaEujawOfH3kaBCNzJGFmH5M1PyVT xUt+62Kj8Vq9ZeakLHhYwN7zjkHXDUTvun74EOtICiGUZ98033pMi9pCtfcKtX3H2nJi vyh6Ql20KNtVaB2i4NL0ToL84T9gt8kEDPjXUxQPuha8PrdrjI5KkYrcpQcCRNWeszOK 6dvfQ1S24rsczjG+UF6mR0YZScRc2LNosja7yobwaPPOAQx2Tn3GTcokB5NM0tJRJlEZ 7XfZ0l3mRorX7H7JdqnQdPSuODfNcqnhdN2NoZDF3GeQyoiRRiGCyv/fdpvsYaM9NjPa argQ== X-Gm-Message-State: AOAM532kK+JpZkMmZRQD4hccnECCrnHFfETHfrz6nI93Yq0fbMzuxDQ1 XdqGgfAeMeu4ezReRTPtDpIo624fQEc= X-Google-Smtp-Source: ABdhPJyEe9olLIEPMjKeYn4JGGpUdl2QP19DAptDFZV8NJGPyZlC7GaURlfGlGHTcu24LgkI3IE6ng== X-Received: by 2002:a1c:ab55:: with SMTP id u82mr5089284wme.152.1602544682430; Mon, 12 Oct 2020 16:18:02 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id d20sm12814736wra.38.2020.10.12.16.18.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:18:01 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 10/27] gnu: ocaml4.07-zed: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-10-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:18:00 +0200 In-Reply-To: <20201001134133.32105-10-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:16 +0200") Message-ID: <86ft6jnidz.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-zed): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:20:14 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:20:14 +0000 Received: from localhost ([127.0.0.1]:44367 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS770-0000sT-8T for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:20:14 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:38145) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS76y-0000sH-Jg for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:20:12 -0400 Received: by mail-wr1-f66.google.com with SMTP id n18so21470360wrs.5 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:20:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=kcofgDdkELQyTH5MKt+hgHY2pL5b22Tzx55t8Io1TOo=; b=vbMtz/dEcb2mngj2mLxZnqV5zwmFDGi/B7NOgG6VOViJBOeTnF1nOGVeLu3TPiubI/ Z0JuUZXLn/g8OXtaYd6HISVFFWMZ8Rwmmp0NSkHdvlb66aEUFeH88T5mllG9Q2RdlnF8 rJ/kdgvi7QIN4fQ/8imXvhzQkGFacez03ldruVe0pk6fgGMeU1IWodeCc7+d3Ewy2YWM aQeQOZdJ0JkdV0mQyy1KYPz8AJm2SxoneRWemIfuiD4wUjirGqnNexLhffLjJP68kBR6 Qn4BtGkM8s6A2CjpoBjHDeA+f3eYsmACVlOcyBhzjfF08vIr+WIyZmb60b+8kkA6JcJF mKkw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=kcofgDdkELQyTH5MKt+hgHY2pL5b22Tzx55t8Io1TOo=; b=gtOVd0kuSmtTgdciPOSg7ifIlybcqMY8ws+6RVF6uWFIT/ZLEkiUtc98Th3FiyXzpx YYWE+BrQNt9cC4KqfVW0PAtWEBlm6tQSUsWSsQ3tLVO2b/XijccPeZiSgicZEViBGMUF gYGbsE/QNfsYceRincaAwtv7XrD2sDyPLpl1olwe+j0w8ED7ZIjQJIs77AZaepCPT+Vj tZano1nkMlSsgdnVBiOhBvmKeNl22J5OhMGgmkRTHtvXMf6i+8EHV/r6ZvPvLoOLP/Go 8lv7j7Qs3BhGvleLXJD5c0Y1XZGabzXpWla7IyBFSUWT8yP+B2FGCjrcEqAMMzQz/6+Y DXvA== X-Gm-Message-State: AOAM532+3v1BXbO19Z/NZkfqbeHiYjZGJFuIpymv86SjZfzwe3vS5J6E PocRlB4L+0yHgH3PM3vVc+yd65/D0bo= X-Google-Smtp-Source: ABdhPJz+haxz/aXHKVY40Appdg57B7qAGo/0f02FCHQG6ZTDLA5HrPSYYgxq9DcdjNTqnAFmhh9DQg== X-Received: by 2002:a5d:480a:: with SMTP id l10mr31069850wrq.238.1602544806598; Mon, 12 Oct 2020 16:20:06 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id l11sm28181474wrt.54.2020.10.12.16.20.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:20:06 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 11/27] gnu: ocaml4.07-utop: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-11-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:20:04 +0200 In-Reply-To: <20201001134133.32105-11-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:17 +0200") Message-ID: <86d01nniaj.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-utop): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:23:27 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:23:27 +0000 Received: from localhost ([127.0.0.1]:44371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7A6-0000xW-NH for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:23:26 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:51528) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7A4-0000xH-6e for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:23:25 -0400 Received: by mail-wm1-f68.google.com with SMTP id d81so18929373wmc.1 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:23:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=As50DAz+IvN6zeYzPm+3E/GII5zN9A7BjPJRy4KTHro=; b=Y1eTNkd9W9o4q1NiDtLMCQg5iyRVF4cx2HLEsR+WaMYCWeohJkkBGHT2PrQ6HzAGS6 pbIEqwDDcfqFaXp6C97TBnryrwP/v4QHijodJeNB8lsY2WilRZfYN3DKEd/+4BAdR4f/ rygrupSpz61HgFjsYf9qjyBADneJiVIE6UcwQ+b5fkcCYoETQpF7/GvNmyMJDwEme9s3 uqrKwN8W0rSR1eFx4sL5J+ay8kSiUFTbJqoKMxfcvuP8sWN3dqQ7BzOOzmn+QhKOREBF PwV5MPDzMb97wThswN7TZZMxFJwDQPgLS35ujDF3YlSqXz+VfV4z8W9Dq6uCma/sf0rb IQJw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=As50DAz+IvN6zeYzPm+3E/GII5zN9A7BjPJRy4KTHro=; b=h6fL8AaaCwOxEUFMNEed1YSdIenKiHUm6wT9VmOvneFFd9BWpPESbt8DqR5PEjuVhk 5dFBUIsmylzZpQA0Z8BRpr7+jds5qBKjBxTgnlCYBXPj/AbiU2AjG96WTczC6nyfUHMe ddNptUybIhlgEoH7th6qe9b7YE3YzP59+Qb53JR7SZG5g7wKhXu4fZJ1+HcdPljtqAlq Ups9YvMhvpXG6TqhPzl8VJI5HujH4j3WdF3uMSf7StxgUASdDKw+yuJbzARQ3nOK+5OQ VAr1Su/Rjq4nzbSC/s79D2OtHF4DY3KfzjHabDhP/yfO0ZyOM+mgQZvfcwDJmsWrByN3 DD9g== X-Gm-Message-State: AOAM531AnBcPLVA2PQsijHqr58XHptMVkDBi7AoFXygdkitzEhBZ8o72 3oqPCLQFhIxtZoFzWEzIa09+O2eUM0k= X-Google-Smtp-Source: ABdhPJzkRUHXvc4Z9nIiIl3DpM7iHkWoxLAxhECGdVm80hixRD9TuwmyR9/+36Iq6NmAtdY3Nb5EFg== X-Received: by 2002:a05:600c:228a:: with SMTP id 10mr12744596wmf.123.1602544998242; Mon, 12 Oct 2020 16:23:18 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id l8sm17039449wrn.28.2020.10.12.16.23.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:23:17 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 12/27] gnu: ocaml4.07-merlin: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-12-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:23:16 +0200 In-Reply-To: <20201001134133.32105-12-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:18 +0200") Message-ID: <86a6wrni57.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-merlin): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:24:45 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:24:45 +0000 Received: from localhost ([127.0.0.1]:44375 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7BN-0000zT-1y for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:24:45 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:50614) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7BD-0000z5-Th for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:24:43 -0400 Received: by mail-wm1-f68.google.com with SMTP id 13so18940304wmf.0 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:24:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=vL6ANv0LY5Zj3s7Rbo1WCHURKbR3D+vszzZB0wlwS+k=; b=oveXjUXAimT9Oi3aRk4I9839Lg1zxMRB7t97SxeX4djuEDsoX7T05PEfwekCbsq1OG iypCKdSbo9Tbo1o3CVUJsuZ5W2NWZ0qT80W2S/UmGwTxd1+Bjt/+HzbhuG6cG+vKU9VP rh4SV5joQ9Lfhu3vtu75lkkl+Au7DFxRygtJ3FrLpR4ArYV4uv/7MlQJrjCbWUAN+EQU TbHdv13im1cMAlE5MJ57xYysgGt6eUY3xSH4xUUpR3joyM26VOSnlDze3pklXqt6/LXF penqMNtGeZaNg0grjW3jqN9/M+J54po/S+gDFvwW2qNUDUCAwCzZBFcwZtJi5u3hkITG eWfg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=vL6ANv0LY5Zj3s7Rbo1WCHURKbR3D+vszzZB0wlwS+k=; b=X9iI5henLhOQi1MQ9a4Wo6yYXuzyL0Ak54JQOAZQOds4jX+RXhUaIvOMWGKDWpsUaT kzc0h57mtC7qM0vNLZtBAbQ899+BZi95EJitLOw489pWXesNnAqCFadBRLIVeTbWUVoN ylM8HJLlH1v2wX1wVaenBAKvoW5EKEsLP0U1oCfysc8NSXOrJU76jZFyIHqisxXRdehf TDqzRPxYCgCZLPmdyQ/5JS+sU+4m0+xoWXLxAcAbgnwy71oIsNdiZOGNAcCsEd/USqSh TN+nIc3G7F6Ui7XEMl+MAnvvfgfZYQ5t+PD95B1LTn+ilGm+skoF6GgDTQ4IEO7PV/Uc 9YLw== X-Gm-Message-State: AOAM532foYpTkZghsOATn9mFXUzJCokcEuUSs50uchHPOuoRgbJUODr+ jeLuaojRP7hhhjTbk6ZEQPgzbeFhFyA= X-Google-Smtp-Source: ABdhPJx1JrwxkCe/GRHw9HX1tYSoGWFrmG8kxJjBxpzYJJp3PeOPuETylMy1ddQe/Pa0BGE1cnQ6ig== X-Received: by 2002:a1c:4d05:: with SMTP id o5mr12368038wmh.94.1602545070206; Mon, 12 Oct 2020 16:24:30 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id y4sm25694451wrp.74.2020.10.12.16.24.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:24:29 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 13/27] gnu: ocaml4.07-ppx-expect: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-13-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:24:28 +0200 In-Reply-To: <20201001134133.32105-13-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:19 +0200") Message-ID: <867drvni37.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-ppx-expect): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:34:09 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:34:09 +0000 Received: from localhost ([127.0.0.1]:44381 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7KT-0001Dt-7G for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:34:09 -0400 Received: from mail-wm1-f67.google.com ([209.85.128.67]:40484) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7KR-0001Dg-C0 for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:34:08 -0400 Received: by mail-wm1-f67.google.com with SMTP id k18so19601793wmj.5 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:34:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=LfHQKAVCAKegAGX0yNqgcUQgq0uuMm7Xs/vuBD8MFsk=; b=CwN+DTYNwd3SqJVvyxKC7l7B2c2X5HWzU2hYiCR+tq8j0EPR1ihed7oH9BBQmOcLCZ oa5xZ7mOdnkknyePpjNBR/MOSINQmxd/6PC4idhdKwhm47U9Y7Pk11Enxn3No0js8pdV 2aY7dK40SIOHSTEcKWIrXgBJc1mfcgwAtJPbHoGlc55vEM4AK7opSmtquv5hwL/UbuW8 BsDAOrgQopYPy1M/kMNVfHClz0fRMrruFbBCAnNtVTGrXfmKxCBJJkClB2HIfMm2MGJC Ho7DAzm5MFzCTaqvCmvjA1SLStuG0BizyrsNGxjxw2fQtHZrTaf62MOVxSo/vH1NQ5jd zwqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=LfHQKAVCAKegAGX0yNqgcUQgq0uuMm7Xs/vuBD8MFsk=; b=EAaNf2idyUVSH9vNYHsY7j7GbKHwkdgIZ/DpOFSa68pvSoAXlQGqNHuQgmTOZDWi77 QTFWUPJa9C1lP1lOvCvJvegbheApkzjcLHzWpYgNcvvyQ1kxHlpMZBDFwuRlkqRcoMSf FWJblBj0cI6oLBej8HjtYfPBQOokJI1ZS6ycMMrxDBDjwYuWpltLkyPuy2sch++hiqhq HMREwhAnNVbpDEPtB0O34tXlTUFtnr2UtLsPWEOEijWmFJbcW9A+xr2OALVpzLjSlwHo nneBK0+Z4xBnngOho742TqgmGToHpFxuIdDlwzmNZN+lqlrh5oskrgrPJTZl0xViQRHs /t+g== X-Gm-Message-State: AOAM5338JdDvuwDn5sRT8+U1ovj7kPtQRNYw7efCS+5275hRP/4oDqQ4 eZNqlZaQQC/3MB6PftmJ0VJJo/ms/sI= X-Google-Smtp-Source: ABdhPJwdJn91tplDfsXSLonz7zsLs2kVcTnKbVuT7rCQwcKMv3kAGbMwU7hUPC5ioAIANlzgqZ+BhQ== X-Received: by 2002:a1c:6788:: with SMTP id b130mr13576714wmc.91.1602545641338; Mon, 12 Oct 2020 16:34:01 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id u195sm2752128wmu.18.2020.10.12.16.34.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:34:00 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 14/27] gnu: ocaml4.07-core: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-14-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:33:59 +0200 In-Reply-To: <20201001134133.32105-14-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:20 +0200") Message-ID: <864kmznhnc.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-core): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:36:44 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:36:45 +0000 Received: from localhost ([127.0.0.1]:44385 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7My-0001Hd-KU for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:36:44 -0400 Received: from mail-wm1-f66.google.com ([209.85.128.66]:33704) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7Mv-0001HP-Uo for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:36:43 -0400 Received: by mail-wm1-f66.google.com with SMTP id z22so14636956wmi.0 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:36:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=K/qA38FRK32VjUcdjgJ/kIJNtDR9kmok7aimeYbmNXI=; b=geg6Ze7MRmwe9ax7F+7xEIH+uB5mvni4ze18VUP190lww5TKFyNrzsRMUhQRy1uj+s Ug+GOTInzegIFYMIu76TKn3NB+vd05cimky21yEJvikCpFGXqbpwak95gV/KyamitfIU X+xNhoeN174UDSV0MYgOBggI0NC/phb2lKIxpARP88PnX1P1AVsh3AZ0iA3G1MJMTdNO 4ioB8ku2DwNrZR/L+E8oxpSTU4lbaN/dMIQTvALzprFNUU7B6iwSIvTE8CPFwjPGVDJW qihxzHCmSgphLQU1eTzFFXXKsfSUc90y3XcqFVchbB3OYTIHKurahD5QKMzl7ET8cCJx OoAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=K/qA38FRK32VjUcdjgJ/kIJNtDR9kmok7aimeYbmNXI=; b=iPJrqElIzM+3HrCwKGfE8dFSQdxZDX8CXAD7W6pAfEDe7fBCVdLsRCZYmAmL71Wxet AB+ZpBmYNjCdPfklr4vW5+k/mBoa2p7kuiqCwjglV8woOxMnYZqu1MNDzJgMmzrk2g/j XxqGGqeRuyJYFSFIHcNbDmBVEIiDxAPpcov7MhhZNCU0wc69iQqcJbnXGIut4RUqBZly dDfFwS9v1uRrc0TVk/z1vwJ3HGJzx8XfcBoTKeRdGIGI+2eZoQmKrXAlE1tPIA+4tPcf Fw/2rTWKC/acHpts5ky6fbkMhNQun2E5itkQqwnmtmjVZ/Owf4wF6kLYgkkXL/1ZhpTg Ichw== X-Gm-Message-State: AOAM532VcqVNy8w026tHssebsWRzH4JRzkS/ZzYEZG07UPduETN9l2/T yESl1d3zGWxT+e3lD5R9ynLxKqLmad8= X-Google-Smtp-Source: ABdhPJwE5d6XdmRQT5JcYUfd6uztPK7c+6rinfF+6RItJUfEyQwwDmoa1eWo7cWUFtcUofENLvo9yQ== X-Received: by 2002:a7b:cd85:: with SMTP id y5mr10645769wmj.168.1602545796079; Mon, 12 Oct 2020 16:36:36 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id j7sm4555172wmc.7.2020.10.12.16.36.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:36:35 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 15/27] gnu: ocaml-tyxml: Do not use deprecated jbuilder. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-15-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:36:33 +0200 In-Reply-To: <20201001134133.32105-15-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:21 +0200") Message-ID: <861ri3nhj2.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-tyxml): Remove #:jbuild argument. > --- > gnu/packages/ocaml.scm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM. However the =E2=80=99--check=E2=80=99 raises an error: --8<---------------cut here---------------start------------->8--- guix build: error: derivation `/gnu/store/laj310615ni831im2s0a3d501wig5rgw-= ocaml-tyxml-4.3.0.drv' may not be deterministic: output `/gnu/store/gp0caxy= 33i1zi4w5zn9xvyyqjgi0gxy0-ocaml-tyxml-4.3.0' differs --8<---------------cut here---------------end--------------->8--- Could you please open a bug report once you merge to master? All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:40:49 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:40:49 +0000 Received: from localhost ([127.0.0.1]:44389 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7Qv-0001O1-7j for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:40:49 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:54052) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7Qs-0001Nm-VW for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:40:47 -0400 Received: by mail-wm1-f68.google.com with SMTP id f21so18957499wml.3 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:40:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=fO79Imi4X7fp5jXXedqcivGwuaBzdJIdnvbAOmma+PU=; b=f8ORuffkCceU1GBREPIdslA6a3eDAzODLg2Lg0CAcWtuelNm+KPfiPW+6HgLdP5Fsx WQguS0qiJjISi9xV0HYYg20O/4Byi8rcBN6mABec/xCKRB0jIk21lgbKAYT1kxdBwBPX a737DC/lQL1sPzHDfFJaMYCihATiRQVvWvDqhJvI0Uy/0Rs3EVDcLKU8o7fZK44ab37N cE62/0xqxapBbmJ+7RafbwKMcqAbZhgCndT0B0tO1SICuQ3kcZVBAB8v54l6tHgNGBh2 YvXJIoPv8jKgb4Aq4R2LY4gvLyE8axLthiIxSoDSN324cBqBO2wjJ/EP9Io0ee+XVFee 76pg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=fO79Imi4X7fp5jXXedqcivGwuaBzdJIdnvbAOmma+PU=; b=KzyE1mzpx13xlvCh5+ndYUE4sSNRt+PlUP0haiRZgxHqcgmyEoZuD2Q4MilyM9rG3t ba/6C21mobxGuOWpwY5NHxHGPIN/Hmwp5i8esUV4iwGy76DHlD4NU7UdmexfO9u+qKjZ EkiPM9I0dOfwu+54B1REVsEKP5xUhPny2FAmm3udQV8U5qBxhdFntSjOtLqI2y4tkHcV xerizTXRlvBbyy3bcubxzMEJyaXxnmTctP4Z75EAGhg9sZtkWeBgdrh1JeILycKsPC2p cwdFk/6s7Ayx4aWKCG98dJAnOBLBPjNjTaq3sCP5PR3B/0hKsKocyyF5e8jXp75g9gbJ 2Jmw== X-Gm-Message-State: AOAM533UK1Ubvy2d2Huonk2DxxyrnbsqwZqurg0KWX8954ForNEZxLHl cpAKz3AP7qAB0V2D9uG5eVflIribTCo= X-Google-Smtp-Source: ABdhPJxyctjJSkyimoMzsKq1qrDEtEDJ1ucB+y1ddwVhGHdaOK6O/4pGlXq1KL7ShZSnxuZ96cVXrA== X-Received: by 2002:a1c:6643:: with SMTP id a64mr13142247wmc.142.1602546040824; Mon, 12 Oct 2020 16:40:40 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id o194sm24095334wme.24.2020.10.12.16.40.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:40:40 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 16/27] gnu: Add ocaml-stdlib-shims. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-16-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:40:38 +0200 In-Reply-To: <20201001134133.32105-16-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:22 +0200") Message-ID: <86y2kbm2rt.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-stdlib-shims): New variable. > --- > gnu/packages/ocaml.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm > index aa9230cd9e..7f402e0a47 100644 > --- a/gnu/packages/ocaml.scm > +++ b/gnu/packages/ocaml.scm > @@ -265,6 +265,30 @@ functional, imperative and object-oriented styles of programming.") > for building OCaml library and programs.") > (license license:lgpl2.1+))) > > +(define-public ocaml-stdlib-shims > + (package > + (name "ocaml-stdlib-shims") > + (version "0.1.0") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/ocaml/stdlib-shims") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "1jv6yb47f66239m7hsz7zzw3i48mjpbvfgpszws48apqx63wjwsk")))) > + (build-system dune-build-system) > + (home-page "https://github.com/ocaml/stdlib-shims") > + (synopsis "Backport of some of the new stdlib features to older OCaml") > + (description "This package backports some of the new stdlib features to > +older OCaml compiler, such as the Stdlib module. > + > +This allows projects that require compatibility with older compilers to > +use these new features in their code.") > + ;; Same as the OCaml compiler > + (license (list license:qpl license:lgpl2.0)))) > + > (define-public ocaml-extlib > (package > (name "ocaml-extlib") Already defined and substitute available. You can drop this commit. --8<---------------cut here---------------start------------->8--- (synopsis "Simple implementation of expect") (description "Help building unitary testing of interactive program. You can match the question using a regular expression or a timeout.") (license license:lgpl2.1+))) ; with the OCaml static compilation exception (define-public ocaml-stdlib-shims (package (name "ocaml-stdlib-shims") (version "0.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ocaml/stdlib-shims") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "007dwywsr5285z0np6a9nr0h8iqmyzfrlx6s5xaqcwj69zabsrjm")))) (build-system dune-build-system) (home-page "https://github.com/ocaml/stdlib-shims") (synopsis "OCaml stdlib features backport to older OCaml compilers") (description "This package backports some of the new stdlib features to older compilers, such as the Stdlib module. This allows projects that require compatibility with older compiler to use these new features in their code.") ;; with ocaml-linking exception (license license:lgpl2.1+))) (define-public ocaml-fileutils (package (name "ocaml-fileutils") --8<---------------cut here---------------end--------------->8--- From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:44:04 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:44:04 +0000 Received: from localhost ([127.0.0.1]:44393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7U3-0001TF-Pg for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:44:04 -0400 Received: from mail-wm1-f65.google.com ([209.85.128.65]:40912) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7U1-0001Se-Gk for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:44:02 -0400 Received: by mail-wm1-f65.google.com with SMTP id k18so19626884wmj.5 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:44:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=/jeQEdotX55toGrH9eJzYmOYimkbO6wGeLOSMbb9XGQ=; b=vHnFRgUSX7dIPOLPpvYgVvp1dQ1Cyi2+cyT4jJ/E10AcaJcSlrW7DXlZuTwKxIB2M4 q4ykPFJtBQZ8aXfCZjRiYd2Dz98xPi0QFoBuLBPAQrtbOJYscjSQkuzJP3RzQmMoWjmN XOsx2NL5cAN/by4KVBf2bHse5YfjRJHNeJuo/NFn05D4f74HBd2ntmC6+MxU/PTFae5G DcU4wH3VmCHqfPBA7EwoJ/i9BdMtrPjFwxhopWnQXl4woxS2hg5MC4io4FhQ8vG2hABb KbakTyN4e76C8cCCI3cMYd7ksOhpsVX77M96ke6LWwbsmJOH7pHGZw4fUW1FADyHqVib XH9A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=/jeQEdotX55toGrH9eJzYmOYimkbO6wGeLOSMbb9XGQ=; b=EeNTNrR1FAlImbclIjd5PBxWPl0Y4z36WdM0FqOvYlApWVzidzy4vTpqsxqBonkDFb coB5I9k4q+hqt3C1KxSs0cb7AvZQ+RY4MbvPLwLDbTJ39FXarKVHLgm+iO4ch44CFjlm gsttl4IeJww3XWpveJIcHxaEnLeZ7CMr2sZ3Gxvzte5dFfzzhYple44pAqb/nxKwgMyl Q7kHW9POqYlhPweyDrVXnGSCRnv7TgEaKp9+mZhCWTALXIUvp9CP+7696p59AC8RAeWU kUuQuCCNzvxod/mbi2fZsIs4lwcvUhPKzDSj7f4oUEstn07Ee3LjCuslRhgVid7ZiAMO N0BQ== X-Gm-Message-State: AOAM531khsDJU/veROVoGXFSnlTAOnAR+lvNECWRhX0lixYOxiHDSM3a GF3yS0/hgneP32+vHdwGTRauuQeAvbQ= X-Google-Smtp-Source: ABdhPJztvbmg9G+JevvzsNC4q5rZNDoFEdWaRJLgOXHDOZXaJcAH6pYCX+pmAVpDWB7chv2HsTZpKA== X-Received: by 2002:a7b:c1c2:: with SMTP id a2mr12595558wmj.23.1602546235749; Mon, 12 Oct 2020 16:43:55 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id o14sm25537210wmc.36.2020.10.12.16.43.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:43:55 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 17/27] gnu: opam: Update to 2.0.7. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-17-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:43:53 +0200 In-Reply-To: <20201001134133.32105-17-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:23 +0200") Message-ID: <86v9ffm2me.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (opam): Update to 2.0.7. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 19:46:11 2020 Received: (at 43745) by debbugs.gnu.org; 12 Oct 2020 23:46:11 +0000 Received: from localhost ([127.0.0.1]:44397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7W7-0001Ws-8K for submit@debbugs.gnu.org; Mon, 12 Oct 2020 19:46:11 -0400 Received: from mail-wr1-f67.google.com ([209.85.221.67]:45677) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS7W5-0001Wf-Gm for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 19:46:10 -0400 Received: by mail-wr1-f67.google.com with SMTP id e17so21501250wru.12 for <43745@debbugs.gnu.org>; Mon, 12 Oct 2020 16:46:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=K0bOcKO51EBrWWV95T9l+p4uCtL4mBdfrmJWsKd/T9U=; b=B9+9pKBpSvkz90i7zQ02q9uRrQ5kfYgUI9NGkBaViM4XRIfaVOlSy8p/eWUSZ2mrHh n5nJNKArAXbOkpw7Xu1vg/+sNBbAKIkADbBtTwlzIoq8XQLZvJ4qBExKUwMgYDzMqYw/ fpP+m/pMKkI5vl2GwDSOeIlAw+O2fRcRPvjUwnelCdcfHZyseJOvynENg3U8hnUZtqG4 hTHA3OorhEdgNzm0rkMJctfcmMrJCrQuiksYUhWYpn6fF9k5k5VyTzz3ZxyoPnW3Whb8 NDic4dGoaIfwMMj1AXYslofsg5IskJyXF5JmUKR44djPXTR+Ud/y2x1FX7OsaUFtYDY1 ddzw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=K0bOcKO51EBrWWV95T9l+p4uCtL4mBdfrmJWsKd/T9U=; b=Sr3n/rtwwWr3oj6gcpketGJP5OJ6yrN1GKdGIsye0Lfvpa2NmNnWBUMaIJ/VG/wKZ4 ZcGyyluM1T9cZLhGXGOFhWNJakMSuqR2n7uuZyZlM8UqceQJDYIecjbE5C1DQh0WcimT Mxf5sDchX31Y+opgLh9H7W18cdjDpm4Y938Y6Mz8upl5fMe8GMBEKPxk0GXqdYWnqofJ OuxylNohI8EhHIa2+cMaBXvfEWLiOH1+7uskCYELV1oZLMgueV2KOtMIx7gvs38X6bF4 0UXSvYYP+fpmMQDwc1bGb6zgOE7/BqmA3bUtsrbz5Vt6XfsrYAWrFm4CHhbfUN3BO2ie BxrA== X-Gm-Message-State: AOAM530qAIvTfwbA3YpNulJBft/7IKmtN0ftSdXSzZPT29D9JuZJEqOR E84i203h7HEQ6Hk6Y6PGwcsxipXA4rA= X-Google-Smtp-Source: ABdhPJz3qCBlT60MCRP1r6yFq8c/q+mCth7FEnNH5R99ClZQgc0F5vd3DhUo14XYSNqCTklTt8vEwQ== X-Received: by 2002:a5d:6cae:: with SMTP id a14mr33655454wra.187.1602546363514; Mon, 12 Oct 2020 16:46:03 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id y66sm8281432wmd.14.2020.10.12.16.46.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 12 Oct 2020 16:46:03 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 18/27] gnu: ocaml-base64: Update to 3.4.0. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-18-julien@lepiller.eu> Date: Tue, 13 Oct 2020 01:46:02 +0200 In-Reply-To: <20201001134133.32105-18-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:24 +0200") Message-ID: <86sgajm2it.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-base64): Update to 3.4.0. > --- > gnu/packages/ocaml.scm | 15 +++++++++++++-- > 1 file changed, 13 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 12 22:04:02 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 02:04:02 +0000 Received: from localhost ([127.0.0.1]:44596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS9fW-000561-CW for submit@debbugs.gnu.org; Mon, 12 Oct 2020 22:04:02 -0400 Received: from lepiller.eu ([89.234.186.109]:45736) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kS9fR-00055W-41 for 43745@debbugs.gnu.org; Mon, 12 Oct 2020 22:04:00 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 10ecfdd3; Tue, 13 Oct 2020 02:03:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:cc:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=dkim; bh=5MWmVsyVxauS Zx1/OkgbzBgxd2hs7xDSQl6ZdOGpRQQ=; b=g023x3DQgd/bc4VEIfNy0srApKMF NTsjoXfBbyAaBhBuNRu6DDJ4lA1ZQjXPaeCB2A6G32FbqaJOEYF7Q31dl/COXuLY q6NBU52NASyAfGtAkRRCvLMiBgfUIQyOqgDzPl0wjStXdaBGrkRlu5SLUs5tktZO KqbryCoKtjItXVwoID0ZeGghMgA4uhOQNjSfaUA/PuXKifoassuHtnBOSVOf42I6 cM+aXn/XQyFj6RqTT5Iv31IUJoJ5RoHcy8L6qFXr7ZnKeiD1X6BradNE5u/1MiX6 LhZ3QFjvW2QdfO9Dl6GvXIyPljQT7WJ8qyL8pqKJ0Pc7GD0+bWsF2SpI5g== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 0dd0e75d (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 13 Oct 2020 02:03:54 +0000 (UTC) Date: Tue, 13 Oct 2020 04:03:45 +0200 From: Julien Lepiller To: zimoun Subject: Re: [bug#43745] [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. Message-ID: <20201013040345.73b2367d@tachikoma.lepiller.eu> In-Reply-To: <86wnzvnjig.fsf@gmail.com> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-4-julien@lepiller.eu> <86wnzvnjig.fsf@gmail.com> X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Le Tue, 13 Oct 2020 00:53:43 +0200, zimoun a =C3=A9crit : >=20 > On Thu, 01 Oct 2020 at 15:41, Julien Lepiller > wrote: > > * gnu/packages/ocaml.scm (ocaml-migrate-parsetree): Update to 1.7.3. > > --- > > gnu/packages/ocaml.scm | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > LGTM but '--check' returns: >=20 > --8<---------------cut here---------------start------------->8--- > guix build: error: derivation > `/gnu/store/fgkmww5s1srlh8frn1jbzz952mkn4pvi-ocaml-migrate-parsetree-1.7.= 3.drv' > may not be deterministic: output > `/gnu/store/3pb3cz6s0p37p4737gm6cj50p1vh02q8-ocaml-migrate-parsetree-1.7.= 3' > differs --8<---------------cut > here---------------end--------------->8--- >=20 > Could you open a bug report when you will merge to master? >=20 >=20 > All the best, > simon Thank you! I've been investigating this, but I don't really understand what's happening. So, I've created myself an environment in which I could compile the sources of migrate-parsetree: cd s1 /my/guix/repo/pre-inst-env guix environment -C ocaml-migrate-parsetree dune build @install exit mv s1 s2 copy sources to s1 again (to prevent issues due to recorded build paths), and build again. This allows me to keep and compare all the intermediate build products. =46rom diffoscope and _build/log, I found the first differing file that is a cmo file. I note that the build is not in order, but arguments are always sorted. This is expected, as dune runs with 4 cores. Next, I've created this very simple file (one line), called test.ml: module Ast_402 =3D Migrate_parsetree__Ast_402 (this is the first line of Ast_402.ml-gen, which is the file that builds the first differing cmo. Then, I build it using: OCAMLC=3Docamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats-short-paths -keep-locs -w -49 -nopervasives -nostdlib -g -bin-annot -no-alias-deps -opaque -o a.cmo -c -implem test.ml using exactly the same options as dune, excluding a -I (include). This creates a.cmo, a.cmt and a.cmi. Then, using sha256sum, I can see if the files differ. Removing these files and trying again gives me always the same result. However, if I instead move them to b.cm{o,t,i}, the next time I build a.cmo, there is a difference between a.cmo and b.cmo, as well as the cmt files (but not the cmi files): ${OCAMLC} sha256sum a.cmo de1caa8b636e97e3e7c964ea84ea52bc532d80653afd13a5a106687886255861 a.cmo rm a.cm* ${OCAMLC} sha256sum a.cmo de1caa8b636e97e3e7c964ea84ea52bc532d80653afd13a5a106687886255861 a.cmo ... mv {a,b}.cmo; mv {a,b}.cmt; mv {a,b}.cmi ${OCAMLC} sha256sum a.cmo 8cfd4b3d214d924f8229bd3697cc3eace58d4e20eb7cb27c27e7b670fa9809e6 a.cmo rm a.cm* ${OCAMLC} sha256sum a.cmo 8cfd4b3d214d924f8229bd3697cc3eace58d4e20eb7cb27c27e7b670fa9809e6 a.cmo ... and with every additional files (c.cmo, d.cmo, ...) I get a different hash, but as long as I keep the same files there, nothing changes. The hash also changes if I create additional files, such as: touch e.cmi (the cmi file seems to be the only one whose presence changes the content of the cmo and cmt files). So, my hypothesis is that dune is building files out of order, but lets ocaml read the generated cmi files. Since the build is not in order, when it builds the same file in two different builds, the cmi are not the same and the result is different. Since dune will always use all my cores, I used a trick I learned from LFS: echo 0 > /sys/devices/system/cpu/cpu1/online (and similar for every other core, except cpu0) This way, I have a single-core machine and, hopefully, dune runs sequentially. This time, --rounds=3D2 passed (after removing the existing store item of course). From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:19:24 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:19:24 +0000 Received: from localhost ([127.0.0.1]:45362 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIKy-0006k0-59 for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:19:24 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:40769) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIKv-0006jk-Jn for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:19:22 -0400 Received: by mail-wr1-f68.google.com with SMTP id h5so13473515wrv.7 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:19:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=Bocrz2+tb3kHvRwn9qw2e1NYXxRe+A3VNmKZ6YbtViE=; b=UWrnRhw/hOq1fY9nhtxr2H9QTwIGGa9w3dYwbfIoNp2OfC8i8Xw4RDig3+jRM9ac8f 5YIcvxdCDLf4moh+HfN7Slmt+sPAdodnWp56fHmoYPakdGAvXggcltDQAdbdLJE4Xvqz cHhTC/AnFx+v6yiRyaIlMhnMcXfU2rFlZNRovnLK0pJka7FpUAjj0sVzByh2Z7QGtMZq K3k3y+dB5czY+1fRQoaPd+2RbxOM1P5LyMsDBWRH8Pk5eJ/ApNYVHMGT+brZ2ZGf648p P9dObWsJA2tkMul9MlJCm9GyPoVI6y8TCabRS9tx47J2MWjP3bwzm/IlRVYINmn743DE vppQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=Bocrz2+tb3kHvRwn9qw2e1NYXxRe+A3VNmKZ6YbtViE=; b=B+k+vK9oMWEo81rNROCJGHduNPShLNoQMhPbz89r+0fgaRb/dhk6mHHJgMYnHtvJUR SJIenQpcDv/YR8gEbrGAckAogfCGk3dDR6fBc+GmNieq85wCw5ehs2pYO4bqhTwMMomL qR/eKuDv/tgEDuDRf4qJpN9GxklhqRc7m6oWLmKVsf2t1JnQxomqN3hQ3NUdn6deQ3Ag hVNdlOQq9dAzKomLi6G5ua8Y4tmURXCzUW2+eGQdpllaEIEkEVPZHIwQXA+gMfUG5ei+ Cqz3oTT6IV0J9lZaNE53Ta89MbLcKmTXhTgHnU5S0rwWo7vqahE5AjOEUkPK5R5R2E4Z vnbw== X-Gm-Message-State: AOAM533X6HWGi99YaFsZaA1oWnEcKcKDQZ8FY7tEv8CjKnLV2cMlUB8u hC7ix2Y24yTNwSqCGKI5etDFLDELNj8= X-Google-Smtp-Source: ABdhPJz5vsKZnihVvySJFhd3EdJOv6GxRAetM6/EHqt6URkhLWxIPpXiLK11UGwXKhdLaXCpcQt3Zg== X-Received: by 2002:adf:dd8f:: with SMTP id x15mr33762873wrl.124.1602587955431; Tue, 13 Oct 2020 04:19:15 -0700 (PDT) Received: from lili ([88.126.110.68]) by smtp.gmail.com with ESMTPSA id n2sm28450126wrt.82.2020.10.13.04.19.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:19:14 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 20/27] gnu: ocaml-fmt: Update to 0.8.9. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-20-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:19:13 +0200 In-Reply-To: <20201001134133.32105-20-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:26 +0200") Message-ID: <86mu0qmkzy.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-fmt): Update to 0.8.9. > --- > gnu/packages/ocaml.scm | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:20:18 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:20:18 +0000 Received: from localhost ([127.0.0.1]:45366 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSILq-0006lo-GW for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:20:18 -0400 Received: from mail-wm1-f65.google.com ([209.85.128.65]:33538) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSILo-0006lT-Gh for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:20:17 -0400 Received: by mail-wm1-f65.google.com with SMTP id z22so15536423wmi.0 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:20:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=ASfYKdm+vVYtyDQf5K8lhQyV8rDBBC7VArlBPOmfqFI=; b=dbzKvBQAtvtJSNSrXvFZhmQa5ZHimvuJsedVaG242+wbAh2jCjiMccHQlMMkdtOio/ TE9+mDLI2ODzvBHQKgnRDUYIv9w7N6ySYjUdS95+n/tO1Jxia4trDo0gCHlfgdagKBnM /L+eJQTFA/ShbWvsedBt6x1lXvBVfX3yL/x1/zilURjT/aum218VWxyRkQ7Q3fi2QALz C5uAtm+CqxWc5Yaaf3LqXod7/VMAo53bjaLDc+2v286VKv9bu9PgKSsHbefM81AsVL8p FlcdBuKWaLOy9Sj5LdCamTeCS/lHc253lB+iRgjzsVUtfAtMy8AYdIp9/9CkNP5V6ef2 b6fw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=ASfYKdm+vVYtyDQf5K8lhQyV8rDBBC7VArlBPOmfqFI=; b=TXdbDyWCBiUYMktZf4ERVdr3kx9BS17n0Y3pA5+jPRwzsd9KoipB/h0nLBkc97hwPO gaFrnlilfmlFsMk5s8+OuyWO8eER5iUe9QRINvIMAjllvp/3nnz4Jh1Wz9cl0h3Lbc0I RxuLzQcdYqgUX3QKJBVLwUnuyMFsER4rrJFvvlpRDZOj6av26OdEsC8EcCBNvWJW0euV tlEfE9WEwPYV2kImhGxaY7D84z/WPCr7pkpHCxj+elbX8rrMdXPqmwVZHdOu1m5iFQKZ xWBCnjJ0/c4+mV25+gcIM9xx4xjTToMXiLZ0rZsCnXAawIpsQXaFVn42NWAFzC0mdnPv /c9w== X-Gm-Message-State: AOAM532LXxehdfisUR97tDGJykhTaJVBgEMgDUOfQqDpbH2FN8fDf3c/ LLlAMjSpuNTOe66h1jKEgVPR/1EscEY= X-Google-Smtp-Source: ABdhPJxoHtBcyKoU5XqmC6MsJHA8/14s4Z/tLUkB7prLZ1KRDSVmP+czpi8ZpSf0LpKXi+wQ9Xazww== X-Received: by 2002:a7b:ca50:: with SMTP id m16mr15205490wml.106.1602588010359; Tue, 13 Oct 2020 04:20:10 -0700 (PDT) Received: from lili ([88.126.110.68]) by smtp.gmail.com with ESMTPSA id n3sm26650576wmn.28.2020.10.13.04.20.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:20:09 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 19/27] gnu: ocaml-logs: Update to 0.7.0. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-19-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:20:08 +0200 In-Reply-To: <20201001134133.32105-19-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:25 +0200") Message-ID: <86k0vumkyf.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-logs): Update to 0.7.0. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:22:56 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:22:56 +0000 Received: from localhost ([127.0.0.1]:45378 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIOO-0006q7-03 for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:22:56 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:43915) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIOL-0006pt-EB for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:22:55 -0400 Received: by mail-wr1-f66.google.com with SMTP id g12so23544037wrp.10 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:22:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=8XWWW6CMt0mSVbPsjUa3+OEfyZDNZgdDj6v/VCmJ1bk=; b=luYU4D8cKfntGxaxEnSP6Q+mEVb9Rgxnx4AVW3XNUxind3uvVHvPCuSPubn2WhYV8p u/2afCnc1qRVvwyB8fa/WaMFAl7LRE5A6EC3Ql5Up1VHNdp6O6xGPlwzP1Es30P/cwXL zkWRkcxKwRLknHHnvvcGffj4b0fpL9q29KiotD0+hsI7nlqSlzSpJVVH2wXwKhlW6efP 5lueE/ctsM63/Xe1ktMur/vGFEL7YF/2CEacJiNTMWJR80CO9rR4Un/Q30kdNmGfs/Sp +iWN+dZWygoZq87hKUbMZobF1SLNhtnp/I2/RjxslVwtJ6lAIkkC348QjeuRToC1ICNJ l2nQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=8XWWW6CMt0mSVbPsjUa3+OEfyZDNZgdDj6v/VCmJ1bk=; b=DrK4bfK+0YKKWCLVCR42FGe0wav3ZJeRHnhEobQRVhVpyUOmif2T3XtcnLM51FZvAB 30ndfiw5aNdnMtJZ4jTsuEQo5YfYybX/uKGJemOK7xElw+V4L1CGegoMoSa1d9E+WEyf /Pg59nGsiw0bgpoqRsWsYLlofJEXgLhP1mvVlQKU6/sBITYFOdtvxpNfX0mhxojoAvmj cgjRtDcFtnE0gBb7q2+vh2M21n5wYu5zGgCokCeWMwFEXy8fTDTgn8XKQ17sgTF7bOVQ 2GQDTVrW6+N7WVnEpCNgMhDBnZdXZLfMNyZaDduBNlvoWztW3lpt34j1QxpDulx3Ems+ dtpQ== X-Gm-Message-State: AOAM5329kNhTbS2CKpvpMmDV+KsbagwqnkS3I7nV5zsAPdVmsVygZOzs UEy5/6kBbCg5ZyR/MQIpSpCNegdb5u4= X-Google-Smtp-Source: ABdhPJx1zSr2hxCrLuPass7VyWit9pulzZSXdDO5SeIqSneBvgGfMBYCGX7BCxZc2sPhxtBrMXq7XQ== X-Received: by 2002:adf:9504:: with SMTP id 4mr36671022wrs.27.1602588167684; Tue, 13 Oct 2020 04:22:47 -0700 (PDT) Received: from lili ([88.126.110.68]) by smtp.gmail.com with ESMTPSA id r3sm28594863wrm.51.2020.10.13.04.22.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:22:47 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 21/27] gnu: ocaml-alcotest: Update to 1.0.0. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-21-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:22:45 +0200 In-Reply-To: <20201001134133.32105-21-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:27 +0200") Message-ID: <86h7qymku2.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > --- > gnu/packages/ocaml.scm | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) Missing: * gnu/packages/ocaml.scm (ocaml-alcotest): Update to 1.0.0. and the other modif BTW, --8<---------------cut here---------------start------------->8--- guix build: error: derivation `/gnu/store/2d4wz8ax8f2s3a1g9clcskas7mn07clb-ocaml-alcotest-1.0.0.drv' may not be deterministic: output `/gnu/store/d4z21drbyn5sgsvfmkil0qlpd8zrwxbx-ocaml-alcotest-1.0.0' differs --8<---------------cut here---------------end--------------->8--- All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:23:48 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:23:48 +0000 Received: from localhost ([127.0.0.1]:45382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIPE-0006rr-9L for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:23:48 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:44058) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIPC-0006re-0k for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:23:46 -0400 Received: by mail-wr1-f68.google.com with SMTP id t9so23553113wrq.11 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:23:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=tTUWpLhS+iGvLbobocAY8hYs55afyGXBqbDPL838S3M=; b=gn8op1Kh0Uq4PSO3x4h4cYuQqCkpA1FV8jZS3C8qZhJiR5pU6aDr4PkGAcXIb7gK9q 1M204hPRiT5tQel56u5mW+b6pUZ0N3Zbtom5KXVTPQpW2EEYXLaZBqspCci/ypSpEHFy haqWtWTZxJ/HFegu14sDW7wVEJeQX2iNxJ+s5zZ1ouohYsf6Kb/l4okpXXCitHRYZhe/ /x5d88I3pL7AdchR/8hkxmcc0FrHkO5dbZZraLCs6FeR4k1G4CZdV4aoBwgKhIUUWex1 6N63silaiFuK+HJOh8hPzZsmbFpqwA8uvym/gWJ5eqoK/5Ghwt4H+mBCpz9cnl26MDSv 5/FQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=tTUWpLhS+iGvLbobocAY8hYs55afyGXBqbDPL838S3M=; b=WxYTDCF0kMNovtAwgUwtQcoaJK1FiCOSdJpzl0xaZACz3k/bsTimdEXAJo09dnnozn vwsvYbsRDtRZe/v8nNyf21SpWQshFxZ89AOwE2rE1+Mpag0BOtBmxHit2h7h8WFo+6Fp Jyytasnc7pnIP+VjIsfAWNVrdOtEjY48n+TLbEyitkbQ5sxF2k1xGxOR/NnjZ2hY7YXD WtDRK6cKGRNEscejuTju79yCrKY1mZbFtUtBQRZZKIJ6JkdyDoWysjFtoeOhJJDK4byY 61/bBkRqIfMWMDsSP4vn1v/50uDPlsmpoXevM6eNAeo9f/ZplwGC2uQ/WoFhWBaupsss 5d9Q== X-Gm-Message-State: AOAM530axcORgg+iNUaV8zfBRwDqkvE8FRF013M8dyvj9IelQ7ZpkUeK e4zO5h2EQDHvG/udOEEp2pcdXOemOiw= X-Google-Smtp-Source: ABdhPJx+QTdIyQtm1VfekUNI08lYph0HN2MS2LjVuKxGUwa/ZRzA9Pc1ZEmYBoGnGL44kxq0KvtLeg== X-Received: by 2002:a5d:554b:: with SMTP id g11mr35486440wrw.370.1602588220242; Tue, 13 Oct 2020 04:23:40 -0700 (PDT) Received: from lili ([88.126.110.68]) by smtp.gmail.com with ESMTPSA id f7sm4546241wrx.64.2020.10.13.04.23.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:23:39 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 22/27] gnu: ocaml-result: Update to 1.5. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-22-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:23:38 +0200 In-Reply-To: <20201001134133.32105-22-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:28 +0200") Message-ID: <86eem2mksl.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-result): Update to 1.5. > --- > gnu/packages/ocaml.scm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:28:01 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:28:01 +0000 Received: from localhost ([127.0.0.1]:45389 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSITI-0006y0-Sx for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:28:01 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:38276) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSITG-0006xj-VJ for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:27:59 -0400 Received: by mail-wr1-f68.google.com with SMTP id n18so23589579wrs.5 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:27:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=ao1WHLa054QAo/7X8FsnunmnTN5shunNCz+rIoxJkbc=; b=TsK2h1idC3bark5hVWG3lQpwaTpnvvuj/zWcLwPEwvW4AhTK+2loWzobom+IfJGvaQ 9sTAfp6FqmPIjAT78ztmCXjPOlWfrznHq9+SZ0c8i1i5KJ3iVdfOmkLpIZ0LwLfP8HlA y7WVBYu62QkU7AL2ASWVtXU08Y0O8wRDHcedID0vC9nHLBIWVWnUOJy0hjAR7ce1p2Au GECEyFMQhUh04msWRz7kpQIJNV+RSDOOL0eIFCchH6lXUcaxG3kTNbRxm2euPuN0rkvV QjIT/BcfO9gawbP33R2QU4d9magz+LKEhJA9lD4jSdUfmWi5SEOE4bGmIaBRMWxxOjhv ruiA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=ao1WHLa054QAo/7X8FsnunmnTN5shunNCz+rIoxJkbc=; b=t3Xpjz3owhQ7C3BDtvIBTEXtJQoWJkj0Ezn8rFUHGXvtKrNUIDI9cxNMUUCGjABGIV jcF88N7ksVL2Uy0ppfAv68l0WspoCtUXZko85giyphj7fKfsFDOp4sFpILYGx/7QY9ao 1pd6srAbql4PiXyxk9pIVDlRDGDgIwpBnwZrJwwrwTqdzQ0ylZd7yQttIoZpAXaGFll1 9znUpN80Qk+mj2jc91a3SfJTVbcQFMcOpfezKkCUXfZr3+pic+A1PzLuC2HUePffCSgw yaL54sOSgW90fDx0Smmu0RDfdCtluWWQNYxPdtSqTMg0n1fK7w4wAzq4DGaF2IQHiOSj MLww== X-Gm-Message-State: AOAM531JvZkdiVEQd2I56Xk01UETZi+JG+j6XiNFUdkGW+UZ/hvKUubF NxM8IjYNYaPebhHdjFnZ+3QwKyvv/Oo= X-Google-Smtp-Source: ABdhPJxGFYtBtJH/mBBMTdUhw2QGrH+u9Oo/2eMl4AVW4VMNJcg8Pm5nE0dy4LTThXfdi0zzYdwkuA== X-Received: by 2002:a5d:40d2:: with SMTP id b18mr15801479wrq.155.1602588473010; Tue, 13 Oct 2020 04:27:53 -0700 (PDT) Received: from lili ([88.126.110.68]) by smtp.gmail.com with ESMTPSA id a127sm32129799wmh.13.2020.10.13.04.27.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:27:52 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 24/27] gnu: ocaml-compiler-libs: Build only with OCaml 4.07. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-24-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:27:50 +0200 In-Reply-To: <20201001134133.32105-24-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:30 +0200") Message-ID: <86blh6mkll.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-compiler-libs): Rename to... > (ocaml4.07-compiler-libs): ...to this. Use OCaml 4.07. Missing: the tests argument changes. > --- > gnu/packages/ocaml.scm | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) Otherwise, LGTM. From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:41:50 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:41:50 +0000 Received: from localhost ([127.0.0.1]:45428 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIgg-0000zp-8Y for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:41:50 -0400 Received: from mail-wm1-f68.google.com ([209.85.128.68]:38500) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIgc-0000zb-6y for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:41:48 -0400 Received: by mail-wm1-f68.google.com with SMTP id b127so8606295wmb.3 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:41:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=Gchg/WHfT6Ln0w2NUXiBVotL2L10Z5pSRWBDIFKuIug=; b=OECjZE8ZVy2LFNszvUi6GkwHpue62cpqIYFCfl4w70pgE5UyEvekM1ElOIU7hJZV0V q2E8udkOy4cNmbmYeK2QxfxnBsxF9hfDxNFHu2SftqCYs0iFwfH1bGoa2ZRYknroYoCd rX2e9jNHpiCyQPALMiKLiwD5dy4MIg70cI0ReC9CMRpl/6BIkGq+6zLmRxUeOUR3NjOx C/RV8Wpkw/224ZSOIVy01GWvEhVQSdBKE1O4JzGvgnYnn9ZlSwq6mgolUzAAvSpYzdh+ X/pIXDfZ1rn2t2EZlU1S40SvvhC6XsRe/9MvvEhMIJrYr/BziycPTOxBaaSD0eI6z96o ZHAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=Gchg/WHfT6Ln0w2NUXiBVotL2L10Z5pSRWBDIFKuIug=; b=pqoq3pzELPo+sXgNzBW0N7T8SSrR3g1+f4mtyF+GQ7jAsbIyVzAprq47KSP9DmFrN/ 6o/E/RJlg5VNYTMPHojeoUXj8Be7qFRBejCNiZ4Sugh6U79pcNydsn743Pd2IAaDupvf 9rHYA0SLMbkXLE08sLkmnYENuBzNL1PZhNaKsmH/qozqkaXwwP27hTjn93tl2L3dPXs5 xfT8f8N3gbnngdAsYXhifa8yv/iji2k1Sth/Ojsdd9mINOJSmFIcYdwp2abSShwEKlR6 Umy+/45ytlqnPNvk6pp7g754o2HGDlXbfPOns+eDzw1aYOUDs5CxwMA3iI+F5iXPx47d 4riQ== X-Gm-Message-State: AOAM533xps4u9pE5MOT0jl7fOMJcKVSd4TtiJlQrfr8ZTzeVTxjjEr4X mv+VVaqmlNU2r4OoFIGLRx7XNv9tS0U= X-Google-Smtp-Source: ABdhPJzbUOBo0bC429LoZYBn+Yc9No1KTpyzpcIaMPxswHpYrLipMujzh9xwV4V4ja2jYrbJOxOzhA== X-Received: by 2002:a1c:197:: with SMTP id 145mr2511727wmb.97.1602589299971; Tue, 13 Oct 2020 04:41:39 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id f8sm15842618wrw.85.2020.10.13.04.41.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:41:39 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 26/27] gnu: ocaml-4.07: Ensure build with ocaml4.7-dune. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-26-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:41:37 +0200 In-Reply-To: <20201001134133.32105-26-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:32 +0200") Message-ID: <868scamjym.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Well, the duplicate reported before appears: --8<---------------cut here---------------start------------->8--- [100%] GUILEC gnu/packages/ocaml.go gnu/packages/ocaml.scm:2489:0: warning: shadows previous definition of `oca= ml-stdlib-shims' at gnu/packages/ocaml.scm:268:0 --8<---------------cut here---------------end--------------->8--- On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml4.07-gen, ocaml4.07-sedlex) > (ocaml4.07-ezjsonm, ocaml4.07-uri, ocaml4.07-charinfo-width) > (ocaml4.07-zed, ocaml4.07-lambda-term, ocaml4.07-utop) > (ocaml4.07-ppx-inline-test, ocaml4.07-earley, ocaml4.07-merlin) > (ocaml4.07-sexplib0, ocaml4.07-parsexp, ocaml4.07-sexplib) > (ocaml4.07-base, ocaml4.07-stdio, ocaml4.07-ppxlib, ocaml4.07-ppx-compare) > (ocaml4.07-fieldslib, ocaml4.07-variantslib, ocaml4.07-ppx-fields-conv) > (ocaml4.07-ppx-sexp-conv, ocaml4.07-ppx-variants-conv) > (ocaml4.07-ppx-custom-printf, ocaml4.07-bin-prot, ocaml4.07-ppx-hash) > (ocaml4.07-ppx-enumerate, ocaml4.07-ppx-bench, ocaml4.07-ppx-here) > (ocaml4.07-ppx-typerep, ocaml4.07-ppx-sexp-value, The package =E2=80=99ocaml4.07-ppx-typerep=E2=80=99 does not exist. Maybe =E2=80=99ocaml4.07-typerep=E2=80=99 or =E2=80=99ocaml4.07-ppx-typerep-conv= =E2=80=98? I have been to lazy to find the correct one. Sorry. > ocaml4.07-ppx-sexp-message) > (ocaml4.07-ppx-pipebang, ocaml4.07-ppx-optional, ocaml4.07-ppx-optcomp) > (ocaml4.07-ppx-let, ocaml4.07-ppx-fail, ocaml4.07-ppx-assert) > (ocaml4.07-ppx-expect, ocaml4.07-ppx-js-style, ocaml4.07-ppx-typerep-conv) > (ocaml4.07-ppx-base, ocaml4.07-ppx-bin-prot, ocaml4.07-ppx-jane) > (ocaml4.07-splittable-random, ocaml4.07-configurator, ocaml4.07-spawn) > (ocaml4.07-core, ocaml4.07-core-kernel)[arguments]: Use ocaml4.07-dune. > --- > gnu/packages/ocaml.scm | 147 +++++++++++++++++++++++++++-------------- > 1 file changed, 98 insertions(+), 49 deletions(-) I am not sure to understand how to use =E2=80=9Cguix refresh=E2=80=9D to ch= eck how many packages are impacted. Otherwise, LGTM. From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:44:59 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:44:59 +0000 Received: from localhost ([127.0.0.1]:45454 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIjj-00015M-8F for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:44:59 -0400 Received: from mail-wr1-f68.google.com ([209.85.221.68]:33668) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIjf-000156-2F for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:44:57 -0400 Received: by mail-wr1-f68.google.com with SMTP id b8so10425588wrn.0 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:44:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=8t4iBpmd0r7fWBxvhIbcV1+GzCGZVzwqh6nbf+9ZQ+8=; b=RpCXP3MUm4Xr8qPM+229iBmnoB9W8u7cE2ctSIwtmeUZk1SdGXVc8uxfCXn54y9Mk2 YtV0950FD0fgLd7WJ5ZIvDODX2iWVu9w8xVmRkPEp9tgK/gsU3vGpcJ09/UONaKQSq0w 85PpzRH26vHYdtj8V8Wo/D8/q/MGcSSNIX/ERY66yGZj3UXeBhiGhdKV+ZSw/Ts5kAZC 5KYjDG0GepB5W80yU+MpEsUriuVzddQIwhhKmLydSw4v2yvSIMGbNMH3bZM8/oJMmwRl 7+TTt3bP8gp/T7P6p2Y6rPHEqMotZRDIlxgjCAOzk1GQ2x7MmKD4vGqzeceaXMF7rfmn GhwQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=8t4iBpmd0r7fWBxvhIbcV1+GzCGZVzwqh6nbf+9ZQ+8=; b=UZTJQnFfFL5JpljxgTvVYIjCz+vtV2+hrWXn5AcT7aPMnioJY6IDSd6hk9PUx4XR28 rze9aHgtUPvjaIY/awjTn7Rh93tZ+tmqfNfNWPrp1qavDN7iyrLf5wluvAkpePBJhHDT ICBbZjLF9hvry6zYXJB+rzuY/DB5jTV296DVfEXhIZnzyC71GMUxFGDDMOs9JKSdyVHL dnhoYo/RS7B+Drry0wrRr1LTcyewpieUVN9ywUwv09ewJGzxFpQBv4+ivOtrb5qi05Rd tWYJW47H58zBMskAm4gCA4Ywz3NRUNtsY86/q//Rez1Qvlg6YaRgDj3CmJTnZK+q5tDL 9vFw== X-Gm-Message-State: AOAM532kfkbHokiq1u3VR3skMrvHyh8yImiFDFAMfSyGvzgS638VRTce cX4biA6kAXdKTOVDOxAavtgb+B/i7AI= X-Google-Smtp-Source: ABdhPJxs3szjbjS0+sFlfkfFlxTeIub28QImD1VVgON2pGoijnLvhHsCHlGWy2dh+QgUjoXzooMKzg== X-Received: by 2002:adf:8b15:: with SMTP id n21mr20079445wra.313.1602589489001; Tue, 13 Oct 2020 04:44:49 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id o184sm5718460wmo.37.2020.10.13.04.44.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:44:48 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 23/27] gnu: Add ocaml-csexp. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-23-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:44:46 +0200 In-Reply-To: <20201001134133.32105-23-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:29 +0200") Message-ID: <865z7emjtd.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-csexp): New variable. > --- > gnu/packages/ocaml.scm | 41 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > > diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm > index ee82f9ca32..55496f8ca4 100644 > --- a/gnu/packages/ocaml.scm > +++ b/gnu/packages/ocaml.scm > @@ -1312,6 +1312,47 @@ following a very simple s-expression syntax.") > (define-public ocaml4.07-dune > (package-with-ocaml4.07 dune)) > > +(define-public ocaml-csexp > + (package > + (name "ocaml-csexp") [...] > + (license #f))) Missing license. Otherwise, LGTM. All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:46:42 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:46:42 +0000 Received: from localhost ([127.0.0.1]:45458 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIlN-00018d-KU for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:46:42 -0400 Received: from mail-wr1-f65.google.com ([209.85.221.65]:42429) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIlL-00018P-4H for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:46:40 -0400 Received: by mail-wr1-f65.google.com with SMTP id e18so23628037wrw.9 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:46:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=u+IA6wxSz60z++qHEZoWOPKkC77lCzmQu/33KhpX8JU=; b=ffAUWcuYSnAIpU623iz3HM80g14UVlOjXxIsPmbvLGC2dMlK9Fw9c2TVdeFil959Co Hkbs5uj8JWMAVVUzOtc3T+PWvQqdJSTKfcRnGcOIcPDQWL88smfpv+RPNDQPU65BYuwG sqKHLGJ8dpTyGIgkNID4SD8S/3z7eLe/lyULJ7ihLnZ6v77kEbnqlHArWqbYuZOh/qS1 1cTh6FLQ7K8Tmw+c+JS4ah2kPXfMj2BQSS4PMDqw+6nIau4B6Rbfdv1VgaKDGiyqf4sS FgyCUihfkJa7UrisUuc5JS2xt2RSV24Ab8mepfKV/uQ0s3HFSpi+xrvGeYM6RALUm4g3 k7Ig== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=u+IA6wxSz60z++qHEZoWOPKkC77lCzmQu/33KhpX8JU=; b=HwQcwYgJXldSit1LtUkR3sBGN7o4s5Y9UsFZKJwtHXjJaSnawBpS3AoJCk0gxEKYVO MkPAvdMLzXPx+UAOxzbbHETuJoLpfD0bDewpjSyGd0MBVU7ymNyeqOLna/eLxYjhwm35 qHtuna18NOUF6GWSNkZQwyF0Nr+XdfKtqbO02j0S4ANhnVzA/ZXpvPH9Cdx97Cv+Rz+M U1zaLiUSbBVcOWYf1C186RPvulakEaBoEBaWyzyghLJLGonv1RNwVPhy2Fnk0bLIHgBD 46nDkci/GcAbdsl4Yz4ldhqHnnVIz1jOYpKBFmVvv7mTVqNPKuLK85AcaxfzgZHLus7J Ajig== X-Gm-Message-State: AOAM53334Tz+Kl0wGtKvShM4C2Wp73Rl//b7/P4IRLk2y7InfkO16+Tt MG+GWj1dp1xVwNp2JeEihxp1J8FXG+A= X-Google-Smtp-Source: ABdhPJxVoIpRh2P6F1+MEkenPffP34y9x8NfQiMUTYJv9jhjSmvQKm6SNaWCiiNQsa6cMbkLhIB4eA== X-Received: by 2002:a5d:4f09:: with SMTP id c9mr33884343wru.427.1602589593325; Tue, 13 Oct 2020 04:46:33 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id 205sm12633687wme.38.2020.10.13.04.46.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:46:32 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 25/27] gnu: ocaml-jane-street-headers: Build only with OCaml 4.07. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-25-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:46:31 +0200 In-Reply-To: <20201001134133.32105-25-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:31 +0200") Message-ID: <86362imjqg.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (ocaml-jane-street-headers): Rename to... > (ocaml4.07-jane-street-headers): ...to this. Use OCaml 4.07. > (arguments > - `(#:test-target ".")) > + `(#:test-target "." > + #:ocaml ,ocaml-4.07 > + #:findlib ,ocaml4.07-findlib > + #:dune ,ocaml4.07-dune)) Maybe this is missing in the commit message. Otherwsie LGTM. All the best, simon From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:54:41 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:54:41 +0000 Received: from localhost ([127.0.0.1]:45478 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIt7-0001Kn-68 for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:54:41 -0400 Received: from lepiller.eu ([89.234.186.109]:45864) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIt4-0001KX-Ar for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:54:40 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 16586f94; Tue, 13 Oct 2020 11:54:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=ToB0D1ftgPyl0pwYSV9tdZaCTjgHXGKUXZZMDxtb9qI=; b=XmZTZkD DL/4mAXYsMfXUN7h3vgGE1NEyx5m8D6C8GlXmtT0FCk8SKPaRnHHYJj+EQqZ0qjk 7lFSBAIXaP6ZoYWxg6hgbYLn2o/2OkH5MEyB+7N7rS02mzlxHN3Ew+c6GXrzYf4I vhtcmQm2Odc6kHr8Ty/YcgbNmi/oQpyyFn72AEmQ3rXxUVjk2vKzZdeFLOp6KJ8o ip3BYuaMrmT3maOs5S2uqdquVI2qGEW/ZUMmUMRMgxfSUkClPwv6b5wAi9hdwFUE ycPLQUnLwA5lZnx+nrZs8EK/rsnvmk6BKq7BUUfuE8Cabl9qir+Ihlvd0MmlYL3N 765SZR11hg2uwaQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 8f12856c (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 13 Oct 2020 11:54:33 +0000 (UTC) Date: Tue, 13 Oct 2020 07:50:22 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <868scamjym.fsf@gmail.com> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-26-julien@lepiller.eu> <868scamjym.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----IJH5NKOTXW3NQMHX2JMIW4RXWPXP52" Content-Transfer-Encoding: 7bit Subject: Re: [bug#43745] [PATCH 26/27] gnu: ocaml-4.07: Ensure build with ocaml4.7-dune. To: zimoun From: Julien Lepiller Message-ID: X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------IJH5NKOTXW3NQMHX2JMIW4RXWPXP52 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Well, less than guix refresh -l ocaml@4=2E07 :) Le 13 octobre 2020 07:41:37 GMT-04:00, zimoun a =C3=A9crit : > >Well, the duplicate reported before appears: > >--8<---------------cut here---------------start------------->8--- >[100%] GUILEC gnu/packages/ocaml=2Ego >gnu/packages/ocaml=2Escm:2489:0: warning: shadows previous definition of >`ocaml-stdlib-shims' at gnu/packages/ocaml=2Escm:268:0 >--8<---------------cut here---------------end--------------->8--- > > >On Thu, 01 Oct 2020 at 15:41, Julien Lepiller >wrote: > >> * gnu/packages/ocaml=2Escm (ocaml4=2E07-gen, ocaml4=2E07-sedlex) >> (ocaml4=2E07-ezjsonm, ocaml4=2E07-uri, ocaml4=2E07-charinfo-width) >> (ocaml4=2E07-zed, ocaml4=2E07-lambda-term, ocaml4=2E07-utop) >> (ocaml4=2E07-ppx-inline-test, ocaml4=2E07-earley, ocaml4=2E07-merlin) >> (ocaml4=2E07-sexplib0, ocaml4=2E07-parsexp, ocaml4=2E07-sexplib) >> (ocaml4=2E07-base, ocaml4=2E07-stdio, ocaml4=2E07-ppxlib, >ocaml4=2E07-ppx-compare) >> (ocaml4=2E07-fieldslib, ocaml4=2E07-variantslib, >ocaml4=2E07-ppx-fields-conv) >> (ocaml4=2E07-ppx-sexp-conv, ocaml4=2E07-ppx-variants-conv) >> (ocaml4=2E07-ppx-custom-printf, ocaml4=2E07-bin-prot, ocaml4=2E07-ppx-h= ash) >> (ocaml4=2E07-ppx-enumerate, ocaml4=2E07-ppx-bench, ocaml4=2E07-ppx-here= ) >> (ocaml4=2E07-ppx-typerep, ocaml4=2E07-ppx-sexp-value, > >The package =E2=80=99ocaml4=2E07-ppx-typerep=E2=80=99 does not exist=2E = Maybe >=E2=80=99ocaml4=2E07-typerep=E2=80=99 or =E2=80=99ocaml4=2E07-ppx-typerep= -conv=E2=80=98? I have been to >lazy to find the correct one=2E Sorry=2E > > >> ocaml4=2E07-ppx-sexp-message) >> (ocaml4=2E07-ppx-pipebang, ocaml4=2E07-ppx-optional, >ocaml4=2E07-ppx-optcomp) >> (ocaml4=2E07-ppx-let, ocaml4=2E07-ppx-fail, ocaml4=2E07-ppx-assert) >> (ocaml4=2E07-ppx-expect, ocaml4=2E07-ppx-js-style, >ocaml4=2E07-ppx-typerep-conv) >> (ocaml4=2E07-ppx-base, ocaml4=2E07-ppx-bin-prot, ocaml4=2E07-ppx-jane) >> (ocaml4=2E07-splittable-random, ocaml4=2E07-configurator, >ocaml4=2E07-spawn) >> (ocaml4=2E07-core, ocaml4=2E07-core-kernel)[arguments]: Use >ocaml4=2E07-dune=2E >> --- >> gnu/packages/ocaml=2Escm | 147 >+++++++++++++++++++++++++++-------------- >> 1 file changed, 98 insertions(+), 49 deletions(-) > >I am not sure to understand how to use =E2=80=9Cguix refresh=E2=80=9D to = check how many >packages are impacted=2E > > >Otherwise, LGTM=2E ------IJH5NKOTXW3NQMHX2JMIW4RXWPXP52 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Well, less than guix refresh -l ocaml@4=2E07 :)
Le 13 octobre 2020 07:41:37 GMT-04:00, zimo= un <zimon=2Etoutoune@gmail=2Ecom> a =C3=A9crit :

Well, the duplicate reported before appears:
=
--8<---------------cut here---------------start------------->8---=
[100%] GUILEC gnu/packages/ocaml=2Ego
gnu/packages/ocaml=2Escm:248= 9:0: warning: shadows previous definition of `ocaml-stdlib-shims' at gnu/pa= ckages/ocaml=2Escm:268:0
--8<---------------cut here---------------en= d--------------->8---


On Thu, 01 Oct 2020 at 15:41, Julien Le= piller <julien@lepiller=2Eeu> wrote:

* gnu/packages/ocaml=2Escm (ocaml4=2E07-gen, ocaml4= =2E07-sedlex)
(ocaml4=2E07-ezjsonm, ocaml4=2E07-uri, ocaml4=2E07-charinf= o-width)
(ocaml4=2E07-zed, ocaml4=2E07-lambda-term, ocaml4=2E07-utop)(ocaml4=2E07-ppx-inline-test, ocaml4=2E07-earley, ocaml4=2E07-merlin)
(= ocaml4=2E07-sexplib0, ocaml4=2E07-parsexp, ocaml4=2E07-sexplib)
(ocaml4= =2E07-base, ocaml4=2E07-stdio, ocaml4=2E07-ppxlib, ocaml4=2E07-ppx-compare)=
(ocaml4=2E07-fieldslib, ocaml4=2E07-variantslib, ocaml4=2E07-ppx-fields= -conv)
(ocaml4=2E07-ppx-sexp-conv, ocaml4=2E07-ppx-variants-conv)
(oc= aml4=2E07-ppx-custom-printf, ocaml4=2E07-bin-prot, ocaml4=2E07-ppx-hash)(ocaml4=2E07-ppx-enumerate, ocaml4=2E07-ppx-bench, ocaml4=2E07-ppx-here)(ocaml4=2E07-ppx-typerep, ocaml4=2E07-ppx-sexp-value,
The package =E2=80=99ocaml4=2E07-ppx-typerep=E2=80=99 does not exist=2E M= aybe
=E2=80=99ocaml4=2E07-typerep=E2=80=99 or =E2=80=99ocaml4=2E07-ppx-t= yperep-conv=E2=80=98? I have been to
lazy to find the correct one=2E S= orry=2E


ocaml4= =2E07-ppx-sexp-message)
(ocaml4=2E07-ppx-pipebang, ocaml4=2E07-ppx-optio= nal, ocaml4=2E07-ppx-optcomp)
(ocaml4=2E07-ppx-let, ocaml4=2E07-ppx-fail= , ocaml4=2E07-ppx-assert)
(ocaml4=2E07-ppx-expect, ocaml4=2E07-ppx-js-st= yle, ocaml4=2E07-ppx-typerep-conv)
(ocaml4=2E07-ppx-base, ocaml4=2E07-pp= x-bin-prot, ocaml4=2E07-ppx-jane)
(ocaml4=2E07-splittable-random, ocaml4= =2E07-configurator, ocaml4=2E07-spawn)
(ocaml4=2E07-core, ocaml4=2E07-co= re-kernel)[arguments]: Use ocaml4=2E07-dune=2E
gnu/packages/ocaml=2Escm= | 147 +++++++++++++++++++++++++++--------------
1 file changed, 98 ins= ertions(+), 49 deletions(-)

I am not sure to understand= how to use =E2=80=9Cguix refresh=E2=80=9D to check how many
packages ar= e impacted=2E


Otherwise, LGTM=2E
------IJH5NKOTXW3NQMHX2JMIW4RXWPXP52-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 07:58:04 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 11:58:05 +0000 Received: from localhost ([127.0.0.1]:45482 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIwO-0001Pz-PF for submit@debbugs.gnu.org; Tue, 13 Oct 2020 07:58:04 -0400 Received: from mail-wr1-f67.google.com ([209.85.221.67]:39532) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSIwN-0001PV-2j for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 07:58:03 -0400 Received: by mail-wr1-f67.google.com with SMTP id y12so18318990wrp.6 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 04:58:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=4q+RbS/ucerOP573qi/elxIHBKSDvRHPPStDD5uwysM=; b=UVgYcD8G7k906PKmsu+CEzvSB9UsvNJvGneWDIF3oKA0r1VBEmlv/33Po3wKU1eXUT rNJvO3FVOKS4n1OF0jhGNqR23Dd2jzKx5r+YOKTPvNyaMNjDv5jQLf4NbBicE0F8Q3An lpaQTDApJM3Dpc/hOTYPbALB8z4HLTQeAbQMTgHVgtC6RfMMin4ENXbwDMVEsTZ74+d7 opJ9tudxRwe8vEu0xYi4sQoQQW9uEeE6B6o3vuAN0ewJhB5Vla2W0O4/NdyWOsoDCQ6U JW+iVxJ3oTwxNzuWNAA4MJSxxAHDgSoZanYw+tIlreR4rVrpll9dx4iKhkLweIgxMKQR GhRQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=4q+RbS/ucerOP573qi/elxIHBKSDvRHPPStDD5uwysM=; b=aIk181lkMROiY5mVYn4PQaXerMpMn2XPHpIVc1yQAADYbLXAhgAaTDDWlrgorr/ofD c4pLRbjausITx9rsZiVQUpeYT1fwT0YqYB5fC8CWAdV6rOOefJJTh7+vp9bInhew+dWf FAqP2Wp/fUyoOg3TkN5MmBXYCnTdBZGfEPex08oOPyzEXf0K+Pdqpu9EAHmqGdjP0hqR eV6THQ/86XCbKNuiuh7nmSh1h4dfkGSTm7/51hXno18laVV1uiDuAkDs/G2bcrsZPvB9 Eqm2ITLImGWdVyhQ078zSBNB9jJr7Ntw5Orumw+Okq4BlFHA2/murWimn2vl9pM/RhOe iUqw== X-Gm-Message-State: AOAM533MdoOONosgzRcEwjZoJ2Zx0LB5kKfEdKoD/m3xU44WUUNTDoGu ap2RDG12jQwlAA//x4tye//IocXMUE0= X-Google-Smtp-Source: ABdhPJyGsrwXAhIuJ7+Gx4Wvo73viuIajskx7hya6HyzABm2LUceWPG/OR8dqEyg0zREld93NXsJ/A== X-Received: by 2002:adf:bc0f:: with SMTP id s15mr35769449wrg.83.1602590276917; Tue, 13 Oct 2020 04:57:56 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id c18sm28885089wrq.5.2020.10.13.04.57.55 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 04:57:56 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 27/27] gnu: dune: Update to 2.7.1. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-27-julien@lepiller.eu> Date: Tue, 13 Oct 2020 13:57:55 +0200 In-Reply-To: <20201001134133.32105-27-julien@lepiller.eu> (Julien Lepiller's message of "Thu, 1 Oct 2020 15:41:33 +0200") Message-ID: <86zh4ql4n0.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 01 Oct 2020 at 15:41, Julien Lepiller wrote: > * gnu/packages/ocaml.scm (dune): Update to 2.7.1. > (ocaml4.07-dune): Keep version 1.11.3. > (ocaml-result, ocaml-csexp): Use the bootstrap dune on dune > dependencies. > (ocaml-craml, ocaml-bitstring): Run "dune upgrade" before building. > --- > gnu/packages/ocaml.scm | 67 ++++++++++++++++++++++++++++++++++++------ > 1 file changed, 58 insertions(+), 9 deletions(-) LGTM. Noticing the =E2=80=99ocaml-bitstring=E2=80=99 is not reproducible and =E2= =80=99ocaml-craml=E2=80=99 rebuild some dependencies. From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 08:10:06 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 12:10:07 +0000 Received: from localhost ([127.0.0.1]:45541 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSJ82-0001lG-MC for submit@debbugs.gnu.org; Tue, 13 Oct 2020 08:10:06 -0400 Received: from mail-wr1-f67.google.com ([209.85.221.67]:46460) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSJ80-0001kV-9H for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 08:10:05 -0400 Received: by mail-wr1-f67.google.com with SMTP id n6so23433612wrm.13 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 05:10:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=GJM6ZWsznXKm+9Ter+SJ5Dwl+pj/q3q6r/wfx/zqR/U=; b=lMawkVTqux0eZFtZC1M0sNaffsR2t6OQ9nDL6Qh+ad8tnsti5LvpKofuWbjbQM1GSd l4obj75ZQYbh5vziE9iVXvaXk6nLZ9sfC/GvG7dE3NnsaqE8zo9kSGaLN/JYh4ig4pUe Io8cG1Egubfp+iUPfITJD2ISTYSWoO71rZLIL3Uwvx0HV9JpId2qz1A0cW6gRBachEtl qNBOSk8J9vNaPioaRuJ/xuoTGiMCdOrH5Yh/Q4y+m812G8jBG6kKQpfeiWxb+Y9ZaVcV bNS5F2aGgagaucte/Z/78UaNIVuUJeMSea9dnrn+oilKOr4bF6q6SUH2rpC7nVMioGxc yOPA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=GJM6ZWsznXKm+9Ter+SJ5Dwl+pj/q3q6r/wfx/zqR/U=; b=WKX3zznYttVxUmpnyB1pAAI2coKaooLps7sn6csXXs5wkcKH4Y5uDJmzn3Qsf9jdbI KsDTab3sPYRTr5vrTxQMFXOwN7Oh7Ja8Fz6EFmeXNKBzL6iCjd2gerx7Lj6XGgvn+DYg KbXIf9YyNbUOWVcYXvws02kuj0zeAnyA/pWN4aDnaLG0MXtIu7ffzsUrFTRjM8oSU4g1 /mBFbm3f0BJ265ATtAtXlVdyiEEmo8hPwn6cWuso5ALfYJphQjHo6D1EXcTDCKi294bc dwbcbFprI85HsZGNiGNTQNIC+ggSbtX+FH8sSyKelvM8vgfBXJ5Yoz4DoFbI71RKKKWT D7cA== X-Gm-Message-State: AOAM532ZZxls+sFQgMzyWbkUm2JviAI9TYMJyM9NmcNhL7dpoTy3oC3t 0xqw1MRq7Kl6w4/tNgYnJpdnuFnXifw= X-Google-Smtp-Source: ABdhPJwZkWhq3ppuysT+BIgCiYZpktMnSV5bgCUEBiwtXMG5PwlVDhGW+2yizKbv31+o/F9uIgLS3g== X-Received: by 2002:adf:e589:: with SMTP id l9mr9310705wrm.110.1602590998118; Tue, 13 Oct 2020 05:09:58 -0700 (PDT) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id l26sm18401452wmi.39.2020.10.13.05.09.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Oct 2020 05:09:57 -0700 (PDT) From: zimoun To: Julien Lepiller Subject: Re: [bug#43745] [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-4-julien@lepiller.eu> <86wnzvnjig.fsf@gmail.com> <20201013040345.73b2367d@tachikoma.lepiller.eu> Date: Tue, 13 Oct 2020 14:09:55 +0200 In-Reply-To: <20201013040345.73b2367d@tachikoma.lepiller.eu> (Julien Lepiller's message of "Tue, 13 Oct 2020 04:03:45 +0200") Message-ID: <86wnzul430.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Julien, Wow! Thank you for this detailed investigation. On Tue, 13 Oct 2020 at 04:03, Julien Lepiller wrote: > So, my hypothesis is that dune is building files out of order, but lets > ocaml read the generated cmi files. Since the build is not in order, > when it builds the same file in two different builds, the cmi are not > the same and the result is different. Since dune will always use all > my cores, I used a trick I learned from LFS: > > echo 0 > /sys/devices/system/cpu/cpu1/online > (and similar for every other core, except cpu0) > > This way, I have a single-core machine and, hopefully, dune runs > sequentially. This time, --rounds=3D2 passed (after removing the existing > store item of course). Where do you this =E2=80=9Cecho 0 > /sys/devices/system/cpu/cpu1/online=E2= =80=9C to disable all except cpu0? Because, I have tried as root on my 4 cpu machine and then =E2=80=9C./pre-inst-env guix build ocaml-migrate-parsetree =E2=80=93no-grafts =E2=80=93check=E2=80=9C still returns an error. Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 10:46:23 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 14:46:23 +0000 Received: from localhost ([127.0.0.1]:48150 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSLZH-00068o-6L for submit@debbugs.gnu.org; Tue, 13 Oct 2020 10:46:23 -0400 Received: from lepiller.eu ([89.234.186.109]:45906) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSLZE-00068d-1x for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 10:46:21 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 86868172; Tue, 13 Oct 2020 14:46:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=9q+bMUCfSGhEcC8iMQZ4xRxOzO/KXI6+89U3xa7B2xU=; b=L1Ho8eq ZbK7W4UCZcnyc3Ziv5Hp9kSKz6gZiXnLu40l5q/ZO8kFm0CdcwPHfGvx6fnoACYI S34sTZafEokIaR2kRNLq89hCpDb0krLbltA9w8n28tMrNIyLC3CK0PHo+FUmR4zB Zgqe3FpgS2NeJdQUrVJHDIYBk+AJol05+B4lsK4tq/UMp1XumEe+meH5UTitU0MO cNLJHidrZTRT/uYi16S4i53tsRzopMuficfRa5tBFMw43p0v0cUYWb9trcao1dv1 UscWFCMklik2lmRCBwk/2kr7OKGNkIBGujdpILjH/QEq9P9K12N4Tgggkp7lxjKg XIuV5vc6T2tqSAQ== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 849e438c (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 13 Oct 2020 14:46:17 +0000 (UTC) Date: Tue, 13 Oct 2020 07:51:51 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <86362imjqg.fsf@gmail.com> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-25-julien@lepiller.eu> <86362imjqg.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----C6GZ54Q4D6MQ3DNUTS9BEPOI7UBUOM" Content-Transfer-Encoding: 7bit Subject: Re: [bug#43745] [PATCH 25/27] gnu: ocaml-jane-street-headers: Build only with OCaml 4.07. To: zimoun From: Julien Lepiller Message-ID: <177006E6-E8C5-40B9-8553-C93DEEE18A64@lepiller.eu> X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------C6GZ54Q4D6MQ3DNUTS9BEPOI7UBUOM Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Well, I'd say it's included in "build with ocaml 4=2E07", no? Le 13 octobre 2020 07:46:31 GMT-04:00, zimoun a =C3=A9crit : > >On Thu, 01 Oct 2020 at 15:41, Julien Lepiller >wrote: >> * gnu/packages/ocaml=2Escm (ocaml-jane-street-headers): Rename to=2E=2E= =2E >> (ocaml4=2E07-jane-street-headers): =2E=2E=2Eto this=2E Use OCaml 4=2E0= 7=2E > >> (arguments >> - `(#:test-target "=2E")) >> + `(#:test-target "=2E" >> + #:ocaml ,ocaml-4=2E07 >> + #:findlib ,ocaml4=2E07-findlib >> + #:dune ,ocaml4=2E07-dune)) > >Maybe this is missing in the commit message=2E > >Otherwsie LGTM=2E > > >All the best, >simon ------C6GZ54Q4D6MQ3DNUTS9BEPOI7UBUOM Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Well, I'd say it's included in "build with ocaml 4= =2E07", no?

Le 13 octobre 2020 07:46:31 G= MT-04:00, zimoun <zimon=2Etoutoune@gmail=2Ecom> a =C3=A9crit :

On Thu, 01 Oct 2020 at 15:41, Julien Lepiller &l= t;julien@lepiller=2Eeu> wrote:
* gnu/packages/ocaml=2Escm (ocaml-jane-street-headers): Rename t= o=2E=2E=2E
(ocaml4=2E07-jane-street-headers): =2E=2E=2Eto this=2E Use O= Caml 4=2E07=2E

(arguments
- `(#:test-target "=2E"))
+ `(#:tes= t-target "=2E"
+ #:ocaml ,ocaml-4=2E07
+ #:findlib ,ocaml= 4=2E07-findlib
+ #:dune ,ocaml4=2E07-dune))

Ma= ybe this is missing in the commit message=2E

Otherwsie LGTM=2E

All the best,
simon
------C6GZ54Q4D6MQ3DNUTS9BEPOI7UBUOM-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 11:13:34 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 15:13:34 +0000 Received: from localhost ([127.0.0.1]:48197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSLzZ-0006pV-U1 for submit@debbugs.gnu.org; Tue, 13 Oct 2020 11:13:34 -0400 Received: from mail-qk1-f195.google.com ([209.85.222.195]:43848) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSLzX-0006pF-Rh for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 11:13:32 -0400 Received: by mail-qk1-f195.google.com with SMTP id c2so79851qkf.10 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 08:13:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=xqRgKXqU2n7kQ3lQAJ8xeXgJZhkg1VvCyuh0bsmBwhw=; b=Tiqvxa0ELE2c6isIxZQOBmnFsFQHb8QLYQM29CMLQ0nbtwexIBIaOh52wMOJeuntGv YlbZoFihsm9CkOJGsc17FN3SdwPFyydDubh1A1KVaPLnNLGpGjCZAi3RXwlkf5Hlrz7S quOqlilMWi6T0lPgCP+J+tOKipottECAWTBTj2LxROJTzbNoQbNAYGTXoxlwyxrzAnZ5 /d+BbvQ9FfWz6vHNJEdo6Tcfkh9Ld5od26dBoDzx7+oLvuynryn/6kU4kI74jEHSOD/a coML4UNsg9klBlJfzHLetir5DhnSG5sT7GGjjyeYH5kxvAjcEO5sNWUeYPw2pQKqG6Yf uOyQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=xqRgKXqU2n7kQ3lQAJ8xeXgJZhkg1VvCyuh0bsmBwhw=; b=Xb4yyTLFpl56PMrfi3Xoa21pSF8rqDZbdsoh6ypCqEJhsbmbmXI3dIs2lBhbiRzM1r /vRhCZRjNHaqaSr2Ya5WkgwpvLYVeR1BnmWHom/ESFLPEMY5Kxs45VMq9quXv9PgcSro QOAEKmYjgKU6t9aTiSBVqZa/Kc8r9ggsaz7WVizykLWlopAJVPyophLoPusjVzxe2oQs 0FyArvm7TBUX2bkmdfeQU9I/Kr07HtRURt9oxro0kWe/4W5DtQwYZS0w4jrNEoLT9K9A BI6PiMpUw66O/RGCjUe56DIpGfsPkFRZyaXaIHsTNX7Z35nL5/PKhJhPvniSqmivGUsk kPPw== X-Gm-Message-State: AOAM533C5JdIka+JNJ6Pdxz/ih9caYNdeVS4EQv63ndoBu9FWwd9FUOt xpUNgiojENTOaPf2TbLp0Y+AIU1HbCCVr7iOma94wmbXBNw= X-Google-Smtp-Source: ABdhPJyGd8psyvJxyAI+dydAtfEv3UeJAjCW4MmKd9QyiMQzEYcVcsFr2ApOHgUQBIaxnqMjAMh9r35fu6Sm0tl3p+0= X-Received: by 2002:a37:a2cd:: with SMTP id l196mr375344qke.201.1602602006402; Tue, 13 Oct 2020 08:13:26 -0700 (PDT) MIME-Version: 1.0 References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-25-julien@lepiller.eu> <86362imjqg.fsf@gmail.com> <177006E6-E8C5-40B9-8553-C93DEEE18A64@lepiller.eu> In-Reply-To: <177006E6-E8C5-40B9-8553-C93DEEE18A64@lepiller.eu> From: zimoun Date: Tue, 13 Oct 2020 17:13:14 +0200 Message-ID: Subject: Re: [bug#43745] [PATCH 25/27] gnu: ocaml-jane-street-headers: Build only with OCaml 4.07. To: Julien Lepiller Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 13 Oct 2020 at 16:46, Julien Lepiller wrote: > > Well, I'd say it's included in "build with ocaml 4.07", no? Maybe, I do not know. :-) From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 11:24:26 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 15:24:26 +0000 Received: from localhost ([127.0.0.1]:48246 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSMA6-0000om-6o for submit@debbugs.gnu.org; Tue, 13 Oct 2020 11:24:26 -0400 Received: from lepiller.eu ([89.234.186.109]:45922) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSMA2-0000oV-Rj for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 11:24:25 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 13cae718; Tue, 13 Oct 2020 15:24:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date :in-reply-to:references:mime-version:content-type :content-transfer-encoding:subject:to:cc:from:message-id; s= dkim; bh=8AGKE9ZCJUH91CIr6W2OdW04IM8JCBRyVZugNqO+qZM=; b=b1kH5mN 46Gt880PWZdZT3TF3vvidQ+Ap+L0t5CKP0elWcYsF488x+0Kt6mThR5tVsTzCETL 0Vc8g0yzAYlkUrKejqcmtHIcXlrZ2lY0tSFYZ+RS2g18Z9qsNotyX6Y5zGGv5OQs iO8xDdtCrjvRlcZVi6QwJA0wZR5c3b6WaO+xUqhxNil78eiLKSdjNH3wxdXA8QU7 7zhsVkfqdlk5m3PwI+w9jTfeyd453xI4oJ2JTBnB7A1d39/RC4OrgUcaBJvpQHIV B/qgd6xJdMgFzvmXUtqW5/T2JyldV4d+vYScrKi6g1jGGDvWbT3OCQlUljnTHsjy hBBBu2V9vo2GMLw== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 54c63089 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Tue, 13 Oct 2020 15:24:19 +0000 (UTC) Date: Tue, 13 Oct 2020 11:24:12 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <86wnzul430.fsf@gmail.com> References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-4-julien@lepiller.eu> <86wnzvnjig.fsf@gmail.com> <20201013040345.73b2367d@tachikoma.lepiller.eu> <86wnzul430.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----O5KP4LRGAG6QA1QJO9DOOIKBRIKY68" Content-Transfer-Encoding: 7bit Subject: Re: [bug#43745] [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. To: zimoun From: Julien Lepiller Message-ID: <44429C76-38D5-4C7A-BC41-256095556447@lepiller.eu> X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------O5KP4LRGAG6QA1QJO9DOOIKBRIKY68 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Your existing build was built unreproducibly=2E You need to remove it with = guix gc first=2E Then you can run --rounds=3D2=2E Alternatively add "-j1" as an argument to dune (as #:build-flags)=2E That = will change the output, ensuring you don't compare with an unreproducible b= uild=2E Le 13 octobre 2020 08:09:55 GMT-04:00, zimoun a =C3=A9crit : >Hi Julien, > >Wow! Thank you for this detailed investigation=2E > > >On Tue, 13 Oct 2020 at 04:03, Julien Lepiller >wrote: > >> So, my hypothesis is that dune is building files out of order, but >lets >> ocaml read the generated cmi files=2E Since the build is not in order, >> when it builds the same file in two different builds, the cmi are not >> the same and the result is different=2E Since dune will always use all >> my cores, I used a trick I learned from LFS: >> >> echo 0 > /sys/devices/system/cpu/cpu1/online >> (and similar for every other core, except cpu0) >> >> This way, I have a single-core machine and, hopefully, dune runs >> sequentially=2E This time, --rounds=3D2 passed (after removing the >existing >> store item of course)=2E > >Where do you this =E2=80=9Cecho 0 > /sys/devices/system/cpu/cpu1/online= =E2=80=9C to >disable all except cpu0? Because, I have tried as root on my 4 cpu >machine and then =E2=80=9C=2E/pre-inst-env guix build ocaml-migrate-parse= tree >=E2=80=93no-grafts =E2=80=93check=E2=80=9C still returns an error=2E > > >Cheers, >simon --=20 Envoy=C3=A9 de mon appareil Android avec Courriel K-9 Mail=2E Veuillez exc= user ma bri=C3=A8vet=C3=A9=2E ------O5KP4LRGAG6QA1QJO9DOOIKBRIKY68 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable Your existing build was built unreproducibly=2E Yo= u need to remove it with guix gc first=2E Then you can run --rounds=3D2=2E<= br>
Alternatively add "-j1" as an argument to dune (as #:build-flags)=2E= That will change the output, ensuring you don't compare with an unreproduc= ible build=2E

Le 13 octobre 2020 08:09:55= GMT-04:00, zimoun <zimon=2Etoutoune@gmail=2Ecom> a =C3=A9crit :
Hi Julien,

Wow! Thank you for this detailed = investigation=2E


On Tue, 13 Oct 2020 at 04:03, Julien Lepiller &= lt;julien@lepiller=2Eeu> wrote:

So, my hypothesis is that dune is building files out of or= der, but lets
ocaml read the generated cmi files=2E Since the build is= not in order,
when it builds the same file in two different builds, th= e cmi are not
the same and the result is different=2E Since dune will = always use all
my cores, I used a trick I learned from LFS:

ech= o 0 > /sys/devices/system/cpu/cpu1/online
(and similar for every oth= er core, except cpu0)

This way, I have a single-core machine and, h= opefully, dune runs
sequentially=2E This time, --rounds=3D2 passed (aft= er removing the existing
store item of course)=2E

W= here do you this =E2=80=9Cecho 0 > /sys/devices/system/cpu/cpu1/online= =E2=80=9C to
disable all except cpu0? Because, I have tried as root on = my 4 cpu
machine and then =E2=80=9C=2E/pre-inst-env guix build ocaml-mig= rate-parsetree
=E2=80=93no-grafts =E2=80=93check=E2=80=9C still returns = an error=2E


Cheers,
simon

-- =
Envoy=C3=A9 de mon appareil Android avec Courriel K-9 Mail=2E Veuillez = excuser ma bri=C3=A8vet=C3=A9=2E ------O5KP4LRGAG6QA1QJO9DOOIKBRIKY68-- From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 13 11:38:04 2020 Received: (at 43745) by debbugs.gnu.org; 13 Oct 2020 15:38:04 +0000 Received: from localhost ([127.0.0.1]:48345 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSMNH-0001Ev-Pg for submit@debbugs.gnu.org; Tue, 13 Oct 2020 11:38:04 -0400 Received: from mail-qk1-f193.google.com ([209.85.222.193]:35998) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kSMNF-0001EQ-JN for 43745@debbugs.gnu.org; Tue, 13 Oct 2020 11:38:02 -0400 Received: by mail-qk1-f193.google.com with SMTP id q63so192473qkf.3 for <43745@debbugs.gnu.org>; Tue, 13 Oct 2020 08:38:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=FmoObTFJpKy3sWVKxIbTwB+n93JtwzYVo15Apo6qVuA=; b=ET8U9jvu52MeHie2/dUd/sc0AyKFWLr5e4L/4Je23ESpDKEF4rTgq0Mm6OCBSJ1swq /bkKvWcSL8MOQzv3SeXX8xDBTRfaZv9XF8q/Y0XOYprvBOnceswB9D7cJyihfPeW7cRl eblCS2WP52mrTIgunQW6ydoNA/1HMJooUtDljzLj0l0sdx6+YOIANlXhCEsoe3q2lytJ CCBWLkB9fwa8TujEtzdIxfzqss9J8TuMIBdVjVIX0qkHFWpm1+0+q48yy2FHVinyRhPh w1nylpkBeHkyT8keVy2JCCsZyhr1UK1T2tzpZ4QTHl2Tpf8aptVcZKP/9O0W9Pet6inj xskA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=FmoObTFJpKy3sWVKxIbTwB+n93JtwzYVo15Apo6qVuA=; b=iTqaGcNoOjF99bdoS51KlQQXWtkeR1P7Ezg+StT5OJ9EKOMyzSqV8TtPJpF/99+b1+ ahoUvzZzS1cCVaXRtlPsN/evFRluXVKnqnOWw018Zp58TZ9/dlt+eB5X/0qjzpPl/9lo ZBHC5MjR+CMfJBDDBx9EO9+RCl/AfuVqkM5okgRL+hMyerX3bKZR2s0uM738dz91wbv+ gu8RbDx8XXEqa/ZLkrzhvfIADheE7yHlDQV2Gvm/y3oB8uci4IBGhYWPqWND8vJ1xYd+ 2kpik1aFIWLpU2J4ePtCVMrYz1xZn6bgfx4wsIQjGAI1swtjH1cOWoIm2rq8l2jpLtWi UW/g== X-Gm-Message-State: AOAM532A3PaUGx3JDR5svM8mFFs5dy7Wv0bHucDZRoijp+x2LBifFwgV dr7rda8rYXbAFyT2v8pFGEt8IIOkDGEi7AXTA0k= X-Google-Smtp-Source: ABdhPJx7R1VBXJiXfi57eLviNfZuoMdtae/ODe1lABn/4HBjDDGkABDQCEtkSCJ2ftPr1KeXT/auxEKsO1RcpHwxtUk= X-Received: by 2002:a37:a2cd:: with SMTP id l196mr477825qke.201.1602603476063; Tue, 13 Oct 2020 08:37:56 -0700 (PDT) MIME-Version: 1.0 References: <20201001153909.296c8d3e@tachikoma.lepiller.eu> <20201001134133.32105-1-julien@lepiller.eu> <20201001134133.32105-4-julien@lepiller.eu> <86wnzvnjig.fsf@gmail.com> <20201013040345.73b2367d@tachikoma.lepiller.eu> <86wnzul430.fsf@gmail.com> <44429C76-38D5-4C7A-BC41-256095556447@lepiller.eu> In-Reply-To: <44429C76-38D5-4C7A-BC41-256095556447@lepiller.eu> From: zimoun Date: Tue, 13 Oct 2020 17:37:44 +0200 Message-ID: Subject: Re: [bug#43745] [PATCH 04/27] gnu: ocaml-migrate-parsetree: Update to 1.7.3. To: Julien Lepiller Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43745 Cc: 43745@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 13 Oct 2020 at 17:24, Julien Lepiller wrote: > > Your existing build was built unreproducibly. You need to remove it with guix gc first. Then you can run --rounds=2. > > Alternatively add "-j1" as an argument to dune (as #:build-flags). That will change the output, ensuring you don't compare with an unreproducible build. Yeah, for sure! Sorry. It works with "echo 0>/sys/devices/system/cpu/cpu1/online" etc. Nice trick, thanks. Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 15 12:04:30 2020 Received: (at 43745-done) by debbugs.gnu.org; 15 Oct 2020 16:04:30 +0000 Received: from localhost ([127.0.0.1]:56313 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kT5jy-0001nH-1l for submit@debbugs.gnu.org; Thu, 15 Oct 2020 12:04:30 -0400 Received: from lepiller.eu ([89.234.186.109]:46610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kT5jw-0001n6-GG for 43745-done@debbugs.gnu.org; Thu, 15 Oct 2020 12:04:29 -0400 Received: from lepiller.eu (localhost [127.0.0.1]) by lepiller.eu (OpenSMTPD) with ESMTP id 42823577 for <43745-done@debbugs.gnu.org>; Thu, 15 Oct 2020 16:04:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=lepiller.eu; h=date:from :to:subject:message-id:mime-version:content-type :content-transfer-encoding; s=dkim; bh=5mdfz/YtDDjHVkUSKRCMxPamQ 630eUlq8zjYZjEuzuU=; b=NacdV+0xEa5MgWwMuAzmfZgln/fR+NMxyyuvJr1Ph VovjCmNS4kw1UKGwlug4Y3E7a7iDoLg+vqKzyvIXS1sT0ick5Fo667xJvJ0vCQDY HLpSMfxdRQIGmDcfUnuWKBmLnId03St+3OMtnttIX+7xguSFYCZZuNV3YireysxP CJc+N5PiCV5CDG5Zh4hXrNlO6hVB3G3N7dtGgMGnfg+yFO4lMK6p7sNRrubYwN9P 4NNhyRnIfetF+9wHXws3P1aO5q5+70wHWDa2M9apYy7SEJsN1Amhb3AxAVkaJCRf 9wFZCJjzE2mFRccc6zKUDopBF6Tl572Y0YQ3lRSeFL+9w== Received: by lepiller.eu (OpenSMTPD) with ESMTPSA id 60357dc9 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <43745-done@debbugs.gnu.org>; Thu, 15 Oct 2020 16:04:25 +0000 (UTC) Date: Thu, 15 Oct 2020 18:04:11 +0200 From: Julien Lepiller To: 43745-done@debbugs.gnu.org Subject: [PATCH] gnu: dune: Update to 2.7.1. Message-ID: <20201015180411.6610971b@tachikoma> X-Mailer: Claws Mail 3.17.7 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 43745-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Thank you, pushed as aea459a50474b98f31f6ce7da9468a98958ef949 to 339177956affdc471832750a3805b74356487e93 with Simon's remarks. From unknown Sun Jun 22 11:49:43 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 13 Nov 2020 12:24:10 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator