From patchwork Sat Jun 19 15:50:32 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30508 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id B758827BC81; Sat, 19 Jun 2021 16:54:22 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 65B1127BC78 for ; Sat, 19 Jun 2021 16:54:22 +0100 (BST) Received: from localhost ([::1]:48550 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludIb-0005Jx-FW for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:54:21 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42144) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFO-0000SZ-Gh for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48996) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFO-0003dH-8P for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFO-0006q9-8P for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 1/6] gnu: Add ocaml-pcre. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411784126177 (code B ref 49101); Sat, 19 Jun 2021 15:51:02 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:41 +0000 Received: from localhost ([127.0.0.1]:60521 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF3-0006o8-7m for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:41 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49060 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF1-0006nm-7S for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:39 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117833; bh=IW/oM3cNwGPwZ0vSXEJMkWHjKwsqa5MY/C+Wr97tboo=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=e0Ebp9ATlohMJqypkl8ZjC78PO0LBL5fYtoPbEIU975UAsfKODrKRboYVo9/qS36R bipAPquznoOrAv/D/70y5t5kZDAarG2d54MmTcF+H5dfboaWfW8TODu8QuJbE7RNMv +OMqo452jIqGS8A3J0wrTYMmnVaANMnAZtWZerkw= In-Reply-To: References: Message-Id: <6e05031b1aa80953a2dda53017957e06d66c333c.1624117491.git.public@yoctocell.xyz> Date: Sat, 19 Jun 2021 17:50:32 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml-pcre): New variable. --- gnu/packages/ocaml.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index a8432ebbfe..542730699e 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3086,6 +3086,38 @@ every compliant installation of OCaml and organize these libraries into a hierarchy of modules.") (license license:lgpl2.1+))) +(define-public ocaml-pcre + (package + (name "ocaml-pcre") + (version "7.4.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mmottl/pcre-ocaml") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "11mck879p5zvkghps4ky8yslm0isgz52d84adl0dmcfxv2ibvcym")))) + (build-system dune-build-system) + (arguments + ;; No tests. + '(#:tests? #f)) + (propagated-inputs + `(("dune-configurator" ,dune-configurator) + ("pcre" ,pcre))) + (native-inputs + `(("pcre:bin" ,pcre "bin"))) + (home-page "https://mmottl.github.io/pcre-ocaml") + (synopsis + "Bindings to the Perl Compatibility Regular Expressions library") + (description "pcre-ocaml offers library functions for string +pattern matching and substitution, similar to the functionality +offered by the Perl language.") + ;; With static linking exception + (license license:lgpl2.1+))) + (define-public ocaml4.07-pcre (package (name "ocaml4.07-pcre") From patchwork Sat Jun 19 15:50:35 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30509 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id CA31227BC81; Sat, 19 Jun 2021 16:54:34 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 9195627BC78 for ; Sat, 19 Jun 2021 16:54:34 +0100 (BST) Received: from localhost ([::1]:49382 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludIn-0005tG-Mo for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:54:33 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42160) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFP-0000Ve-C8 for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48998) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFP-0003ec-3T for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFP-0006qO-3B for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 2/6] gnu: ocaml4.07-expect: Switch to default OCaml compiler. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411784626213 (code B ref 49101); Sat, 19 Jun 2021 15:51:03 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:46 +0000 Received: from localhost ([127.0.0.1]:60528 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF7-0006oi-Qw for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:46 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49068 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF3-0006np-DX for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:42 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117835; bh=jVTyy20DOz59BHtb+UUvRyFK9YA59B5T0DYxML3Osbk=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=Jkj7XPLCtQgq+tgxIH+FgXOXIT2WNxu3Z8NGZWPFTLXsC44NksTuV2DCYwWEVSJu7 g6Dgu5bmwsU6+DyhBtHffBeqGZfpImYpXV+3x6FWuIvPBoSXydHSDLWRXOvw4atvuP 4nirazFcMv3Xp0ZoviZ10efJBtKRZwalBjgh+PRw= In-Reply-To: References: Message-Id: <30f7fe1b11ad75966da59ade74cede77b487d27a.1624117491.git.public@yoctocell.xyz> Date: Sat, 19 Jun 2021 17:50:35 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml4.07-expect): Rename to ‘ocaml-expect’. [arguments]: Use default OCaml compiler. [native-inputs]: Use ‘ocaml-*’ packages instead of ‘ocaml4.07-*’. [propagated-inputs]: Likewise. [description]: Make it a full sentence. --- gnu/packages/ocaml.scm | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 542730699e..d3674ccba8 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3148,9 +3148,9 @@ matching and substitution, similar to the functionality offered by the Perl language.") (license license:lgpl2.1+))); with the OCaml link exception -(define-public ocaml4.07-expect +(define-public ocaml-expect (package - (name "ocaml4.07-expect") + (name "ocaml-expect") (version "0.0.6") (source (origin (method url-fetch) @@ -3159,21 +3159,20 @@ language.") (base32 "098qvg9d4yrqzr5ax291y3whrpax0m3sx4gi6is0mblc96r9yqk0")))) (arguments - `(#:tests? #f - #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib)) + `(#:tests? #f)) (build-system ocaml-build-system) (native-inputs - `(("ocamlbuild" ,(package-with-ocaml4.07 ocamlbuild)) - ("ocaml-num" ,(package-with-ocaml4.07 ocaml-num)) - ("ocaml-pcre" ,ocaml4.07-pcre) - ("ounit" ,(package-with-ocaml4.07 ocaml-ounit)))) + `(("ocamlbuild" ,ocamlbuild) + ("ocaml-num" ,ocaml-num) + ("ocaml-pcre" ,ocaml-pcre) + ("ounit" ,ocaml-ounit))) (propagated-inputs - `(("batteries" ,(package-with-ocaml4.07 ocaml-batteries)))) + `(("batteries" ,ocaml-batteries))) (home-page "https://forge.ocamlcore.org/projects/ocaml-expect/") (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.") + (description "This package provides utilities for 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 From patchwork Sat Jun 19 15:50:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30504 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 9BF9227BC81; Sat, 19 Jun 2021 16:51:17 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 4FFA827BC78 for ; Sat, 19 Jun 2021 16:51:17 +0100 (BST) Received: from localhost ([::1]:41728 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludFc-0000ig-CE for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:51:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42162) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFP-0000X4-Pn for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48999) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFP-0003fG-Fz for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFP-0006qV-Fx for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 3/6] gnu: ocaml4.07-pcre: Remove package. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411784626222 (code B ref 49101); Sat, 19 Jun 2021 15:51:03 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:46 +0000 Received: from localhost ([127.0.0.1]:60530 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF8-0006ok-49 for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:46 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49076 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF5-0006nr-6d for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:43 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117837; bh=vy3ZpEt6i5ZfldXOalmx+cHwSckEX9efsnHOSoDtR7w=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=FPKtLOc3sBlGqF5cwKPNvVvu4RFojZNQIvv6Sj3jqjgzvj1yCdak8unEf1TpofBrN wyUCBPkaC7gPByz2hbmCpANuxZf/Pqmp2We9dFSWaxE+r0yWr3M/Ev0lzKcVhT5D/X SXl1GVZ2d8aNV9JyReEcTAJD+GkM38bLzq8jRcrY= In-Reply-To: References: Message-Id: Date: Sat, 19 Jun 2021 17:50:37 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml4.07-pcre): Remove package. It has been superseded by ‘ocaml-pcre’. --- gnu/packages/ocaml.scm | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d3674ccba8..c89908a1b2 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3118,36 +3118,6 @@ offered by the Perl language.") ;; With static linking exception (license license:lgpl2.1+))) -(define-public ocaml4.07-pcre - (package - (name "ocaml4.07-pcre") - (version "7.4.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mmottl/pcre-ocaml") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "11sd8g668h48790lamz0riw9jgnfkaif5qdfa0akcndwa6aj07jf")))) - (build-system dune-build-system) - (arguments - `(#:test-target "." - #:ocaml ,ocaml-4.07 - #:findlib ,ocaml4.07-findlib - #:dune ,ocaml4.07-dune)) - (native-inputs - `(("ocaml-base" ,(package-with-ocaml4.07 ocaml-base)) - ("pcre:bin" ,pcre "bin"))) - (propagated-inputs `(("pcre" ,pcre))) - (home-page "https://mmottl.github.io/pcre-ocaml") - (synopsis "Bindings to the Perl Compatibility Regular Expressions library") - (description "Pcre-ocaml offers library functions for string pattern -matching and substitution, similar to the functionality offered by the Perl -language.") - (license license:lgpl2.1+))); with the OCaml link exception - (define-public ocaml-expect (package (name "ocaml-expect") From patchwork Sat Jun 19 15:50:38 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30507 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 826ED27BC81; Sat, 19 Jun 2021 16:53:03 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 3E85427BC78 for ; Sat, 19 Jun 2021 16:53:03 +0100 (BST) Received: from localhost ([::1]:46308 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludHK-0003oh-AG for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:53:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42172) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFQ-0000YZ-76 for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49000) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFP-0003fc-Tf for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFP-0006qc-SJ for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:03 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 4/6] gnu: Add ocaml-mparser. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411784726233 (code B ref 49101); Sat, 19 Jun 2021 15:51:03 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:47 +0000 Received: from localhost ([127.0.0.1]:60533 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF8-0006os-Io for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:46 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49084 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF6-0006nu-Qg for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:45 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117839; bh=LgBsxmq4Pw7isvPOs/MfwvO2yGg4icNaRb3vtzBAxAQ=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=d/7WHeGrjC2jN0Sd7OTH+R5TxCLfkCKwby8plEhM3XGghPlQfRHb7v+j4KBqI9NYe janltHzRvwD0CyCV2uW5ZE46PmiPbc8oq4Pe6egZ3Xxkb06hTXNLxZrdyfJ1a7NEhq s18VsdWAoh/auMS2vSIEFHTiyoS67CHbz7GSnhMs= In-Reply-To: References: Message-Id: <305310cc26562edd9b29fcebdb142bc6c8cccf93.1624117491.git.public@yoctocell.xyz> Date: Sat, 19 Jun 2021 17:50:38 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml-mparser): New variable. --- gnu/packages/ocaml.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c89908a1b2..af8790aca6 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6792,6 +6792,34 @@ in the documentation always stays up-to-date. compatibility.") (license license:isc))) +(define-public ocaml-mparser + (package + (name "ocaml-mparser") + (version "1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/murmour/mparser") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx")))) + (build-system dune-build-system) + (arguments + ;; No tests. + '(#:package "mparser" + #:tests? #f)) + (home-page "https://github.com/murmour/mparser") + (synopsis "Simple monadic parser combinator library") + (description + "This library implements a rather complete and efficient monadic parser +combinator library similar to the Parsec library for Haskell by Daan Leijen and +the FParsec library for FSharp by Stephan Tolksdorf.") + ;; With static linking exception. + (license license:lgpl2.1+))) + (define-public lablgtk3 (package (name "lablgtk") From patchwork Sat Jun 19 15:50:40 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30505 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id D3E0627BC81; Sat, 19 Jun 2021 16:51:30 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 9669427BC78 for ; Sat, 19 Jun 2021 16:51:30 +0100 (BST) Received: from localhost ([::1]:42328 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludFp-00018J-L9 for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:51:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42180) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFQ-0000Zr-Ig for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49001) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFQ-0003g9-91 for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFQ-0006qk-8M for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 5/6] gnu: Add ocaml-mparser-re. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411785326259 (code B ref 49101); Sat, 19 Jun 2021 15:51:04 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:53 +0000 Received: from localhost ([127.0.0.1]:60537 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludFF-0006pS-0X for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:53 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49094 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF8-0006o7-8f for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:46 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117840; bh=UsDo55L+RCVs0rYUsQYPcDhNIZ5PGAraOggR/sCzzXw=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=lQXEwPCwlbDygU8FwasyjSe6ZIuPa31GSEalMidCddvyd7BMhli7Xijj6Suna7TlH MV84rL/8yo+lnqJW1Opd8PnOx/jfJXCLRSzrsKtlmNIKCyoqmUsW6qC2CLLgAqCc2z wD21LKEkeuzeH8CgF3USTmNHaiwKGjJ6wgWpEDFo= In-Reply-To: References: Message-Id: <68c852e6f91166701ffc0b0578d7559d77d2e0f7.1624117492.git.public@yoctocell.xyz> Date: Sat, 19 Jun 2021 17:50:40 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml-mparser-re): New variable. --- gnu/packages/ocaml.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index af8790aca6..3455161553 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6820,6 +6820,21 @@ the FParsec library for FSharp by Stephan Tolksdorf.") ;; With static linking exception. (license license:lgpl2.1+))) +(define-public ocaml-mparser-re + (package + (inherit ocaml-mparser) + (name "ocaml-mparser-re") + (arguments + ;; No tests. + '(#:package "mparser-re" + #:tests? #f)) + (propagated-inputs + `(("ocaml-mparser" ,ocaml-mparser) + ("ocaml-re" ,ocaml-re))) + (synopsis "MParser plugin for RE-based regular expressions") + (description "This package provides RE-based regular expressions +support for Mparser."))) + (define-public lablgtk3 (package (name "lablgtk") From patchwork Sat Jun 19 15:50:41 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30506 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id A17A727BC81; Sat, 19 Jun 2021 16:51:42 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,SPF_HELO_PASS,T_DKIM_INVALID,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 6459627BC78 for ; Sat, 19 Jun 2021 16:51:42 +0100 (BST) Received: from localhost ([::1]:42958 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ludG1-0001Zt-EV for patchwork@mira.cbaines.net; Sat, 19 Jun 2021 11:51:41 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42186) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ludFQ-0000ag-Vo for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49002) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ludFQ-0003gR-L9 for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ludFQ-0006qr-L8 for guix-patches@gnu.org; Sat, 19 Jun 2021 11:51:04 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49101] [PATCH v3 6/6] gnu: Add ocaml-mparser-pcre. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 19 Jun 2021 15:51:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49101 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49101@debbugs.gnu.org Cc: Julien Lepiller Received: via spool by 49101-submit@debbugs.gnu.org id=B49101.162411785426272 (code B ref 49101); Sat, 19 Jun 2021 15:51:04 +0000 Received: (at 49101) by debbugs.gnu.org; 19 Jun 2021 15:50:54 +0000 Received: from localhost ([127.0.0.1]:60541 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludFF-0006pb-J6 for submit@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:53 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:49102 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ludF9-0006oT-LU for 49101@debbugs.gnu.org; Sat, 19 Jun 2021 11:50:47 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624117842; bh=w2EQK10ZR4zveGDlqNf3yz6qnpydROvP/mFxroMQ48U=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=uwz07N7TPxgMiSpdgLrLe6pHslYKtxl36cBU58Xi7qaJUtpSvhsaOdL7m+fJsntIe J/zp0BbBVMppdL3CSg9OjnXLrrBa5idlHnb3PRLwY2nuL35zwOzKwVUOj+HC+g6yZR 332q5vqdUU0ffyOQiUjn4T6blTrhRgGwgG6j3XXs= In-Reply-To: References: Message-Id: Date: Sat, 19 Jun 2021 17:50:41 +0200 MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/ocaml.scm (ocaml-mparser-pcre): New variable. --- gnu/packages/ocaml.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 3455161553..1c7f4db18f 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6835,6 +6835,21 @@ the FParsec library for FSharp by Stephan Tolksdorf.") (description "This package provides RE-based regular expressions support for Mparser."))) +(define-public ocaml-mparser-pcre + (package + (inherit ocaml-mparser) + (name "ocaml-mparser-pcre") + (arguments + ;; No tests. + '(#:package "mparser-pcre" + #:tests? #f)) + (propagated-inputs + `(("ocaml-mparser" ,ocaml-mparser) + ("ocaml-pcre" ,ocaml-pcre))) + (synopsis "MParser plugin for PCRE-based regular expressions") + (description "This package provides PCRE-based regular expressions +support for Mparser."))) + (define-public lablgtk3 (package (name "lablgtk")