From patchwork Mon Jun 21 10:02:01 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xinglu Chen X-Patchwork-Id: 30574 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 6781A27BC81; Mon, 21 Jun 2021 11:37:23 +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,RCVD_IN_MSPIKE_H2,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 2D02227BC78 for ; Mon, 21 Jun 2021 11:37:23 +0100 (BST) Received: from localhost ([::1]:54482 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lvHIw-000624-3q for patchwork@mira.cbaines.net; Mon, 21 Jun 2021 06:37:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36376) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lvGlm-0005Ck-9Z for guix-patches@gnu.org; Mon, 21 Jun 2021 06:03:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52190) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lvGlk-0000sJ-2N for guix-patches@gnu.org; Mon, 21 Jun 2021 06:03:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1lvGlk-0003vx-0S for guix-patches@gnu.org; Mon, 21 Jun 2021 06:03:04 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#49150] [PATCH 7/9] gnu: Add ocaml-fix. Resent-From: Xinglu Chen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 21 Jun 2021 10:03:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49150 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49150@debbugs.gnu.org Received: via spool by 49150-submit@debbugs.gnu.org id=B49150.162426973715028 (code B ref 49150); Mon, 21 Jun 2021 10:03:03 +0000 Received: (at 49150) by debbugs.gnu.org; 21 Jun 2021 10:02:17 +0000 Received: from localhost ([127.0.0.1]:35497 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lvGkz-0003uJ-Ag for submit@debbugs.gnu.org; Mon, 21 Jun 2021 06:02:17 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:46642 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lvGkp-0003sh-JG for 49150@debbugs.gnu.org; Mon, 21 Jun 2021 06:02:08 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1624269721; bh=Zt2x3GHPpgH8e9tKK+8hU6qCAD2rl/l16uLzMPEeRKg=; h=From:To:Subject:In-Reply-To:References:Date; b=QC0sm1qspIpM09JNGwpdVHwf4yQU2UMqQuWGz7lvo7c4+aGgmeyU4ZUMxabhQJcGO gJU+k24JYD5lvTob7/yoykgjr7VoJz8hv7r8UOvQrTWeM/fNtmcrr/S/jHrISqmN/6 1fMFpBsybi2O6B/FJRXnfnb257OHQ2uigPJb8+YQ= In-Reply-To: References: Message-Id: <7eb675d085b0656e3db8ebca6d3160a4c5a83c8d.1624269361.git.public@yoctocell.xyz> Date: Mon, 21 Jun 2021 12:02:01 +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-fix): 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 c2e1039146..94e5f23ec0 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7061,6 +7061,30 @@ structure and it can process text without a complete in-memory representation.") (license license:isc))) +(define-public ocaml-fix + (package + (name "ocaml-fix") + (version "20201120") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.inria.fr/fpottier/fix") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1j40mg1gy03c0djzx3nzmpvnl984s14n04zwcmp2xnlidq48kvs4")))) + (build-system dune-build-system) + (arguments + ;; No tests. + '(#:tests? #f)) + (home-page "https://gitlab.inria.fr/fpottier/fix") + (synopsis "Facilities for memoization and fixed points") + (description "This package provides helpers with various constructions +that involve memoization and recursion.") + (license license:lgpl2.0))) + (define-public ocaml-bigstringaf (package (name "ocaml-bigstringaf")