From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 08 19:35:58 2023 Received: (at submit) by debbugs.gnu.org; 9 Jan 2023 00:35:58 +0000 Received: from localhost ([127.0.0.1]:35062 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pEg8s-0001gN-77 for submit@debbugs.gnu.org; Sun, 08 Jan 2023 19:35:58 -0500 Received: from lists.gnu.org ([209.51.188.17]:49582) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pEg8n-0001fc-3P for submit@debbugs.gnu.org; Sun, 08 Jan 2023 19:35:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pEg8m-0005Lr-Ui for guix-patches@gnu.org; Sun, 08 Jan 2023 19:35:52 -0500 Received: from mx0.riseup.net ([198.252.153.6]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pEg8l-00040C-9l for guix-patches@gnu.org; Sun, 08 Jan 2023 19:35:52 -0500 Received: from fews1.riseup.net (fews1-pn.riseup.net [10.0.1.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx0.riseup.net (Postfix) with ESMTPS id 4Nqw3B2Xrpz9tJn for ; Mon, 9 Jan 2023 00:35:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1673224550; bh=95NTfFvZWpQ2TE/yUnRVK+UVt4trulv7Y42yEmUECLw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mu3EjW78CLgm7Z6HwyrsIhrjRA9arz0ediINFm0G0yKDmFT2MPO+zU5DtVzmxk1kf KOOfECiO1ZEtDHzBVlZmN81XQ/aUSJBJV7qJ6slZTu1vcGnTvWv/t4zIa1VYd2hA9w 3nmG/AoBBCpKTLO3FIv5W6CQmBLyskEr2xkUOSWM= X-Riseup-User-ID: 744DCC8DAE346E2596884B8B87BFD1B73509A193DB1BCAF323DB7A7D482D9037 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews1.riseup.net (Postfix) with ESMTPSA id 4Nqw393c8lz5vjc; Mon, 9 Jan 2023 00:35:49 +0000 (UTC) From: Csepp To: guix-patches@gnu.org Subject: [PATCH 04/39] gnu: Add ocaml-opam-monorepo. Date: Mon, 9 Jan 2023 01:34:54 +0100 Message-Id: <20230109003529.23375-4-raingloom@riseup.net> In-Reply-To: <20230109003529.23375-1-raingloom@riseup.net> References: <20230109003529.23375-1-raingloom@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.252.153.6; envelope-from=raingloom@riseup.net; helo=mx0.riseup.net X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: raingloom 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.4 (--) From: raingloom * gnu/packages/ocaml.scm (ocaml-opam-monorepo): New variable. --- It's possible this should also omit the ocaml- prefix, like opam, but then it will also require special handling in the importer. gnu/packages/ocaml.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 7f36df6111..1082103504 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -976,6 +976,39 @@ (define-public opam ;; The 'LICENSE' file waives some requirements compared to LGPLv3. (license license:lgpl3))) +(define-public ocaml-opam-monorepo + (package + (name "ocaml-opam-monorepo") + (version "0.3.5") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/tarides/opam-monorepo/") + (commit version))) + (file-name name) + (sha256 + (base32 + "09lq788b1sai4v1nxd16b00pw0m55plcwrx3f9v5a90gpxg0a6sc")))) + (build-system dune-build-system) + (arguments + ;; TODO + ;; Too many tests require a fully initialized opam, disabling them would + ;; be a huge pain. "Mocking" opam init is difficult because it requires + ;; networking access. + '(#:tests? #f)) + ;; TODO: not entirely clear if these should be native, test cross-building + (native-inputs (list ocaml-odoc + pkg-config)) + ;; (propagated-inputs lablgtk3) optional and is currently failing to build + (home-page "https://github.com/tarides/opam-monorepo") + (synopsis "Assemble and manage fully vendored Dune repositories") + (description + "The opam monorepo plugin provides a convenient interface to bridge the +opam package manager with having a local copy of all the source code required +to build a project using the dune build tool.") + (license license:isc))) + (define-public ocaml-camlp-streams (package (name "ocaml-camlp-streams") -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 09 09:18:38 2023 Received: (at control) by debbugs.gnu.org; 9 Jan 2023 14:18:38 +0000 Received: from localhost ([127.0.0.1]:36061 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pEsyz-0004uq-SV for submit@debbugs.gnu.org; Mon, 09 Jan 2023 09:18:38 -0500 Received: from mx1.riseup.net ([198.252.153.129]:50014) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pEsyw-0004ud-TM for control@debbugs.gnu.org; Mon, 09 Jan 2023 09:18:36 -0500 Received: from fews2.riseup.net (fews2-pn.riseup.net [10.0.1.84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "mail.riseup.net", Issuer "R3" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4NrGJP29yWzDrMr for ; Mon, 9 Jan 2023 14:18:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1673273909; bh=taKq5V0ohoRrhFk9my0OXgQT/VZgiFqJK9V3rc5JHWA=; h=From:To:Subject:Date:From; b=bjDOISLm+xPTBLbNFKcYhB89DxGpNvwR1KX0SP/wSm01D79iEDI4LNcHY1H6Ot00o 6hcVsP6TuOun6gR4rRr0d3eM6f5nkCy7V8MXlO6vhTtMy3xZz7y8hMfPwKkXF0Tn5s qOiA4OmiGXSJtbfW8kRc83yb3zK+C5iVF4B1pkQQ= X-Riseup-User-ID: C2FD515AAB73DB8385A5EEF503150880DAAB614E09BEF3490C806AD644FA45E0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews2.riseup.net (Postfix) with ESMTPSA id 4NrGJN3zR2z1yZp for ; Mon, 9 Jan 2023 14:18:28 +0000 (UTC) From: Csepp To: control@debbugs.gnu.org Subject: merging accidental multiple submission Date: Mon, 09 Jan 2023 14:51:22 +0100 Message-ID: <86eds3hjvn.fsf@riseup.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control 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.7 (-) merge 60671 60672 60673 60674 60675 60676 60677 60678 60679 60680 60681 60682 60683 thanks Sorry, and thanks nckx for helping me sort this out! From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 07 02:54:52 2023 Received: (at control) by debbugs.gnu.org; 7 Feb 2023 07:54:52 +0000 Received: from localhost ([127.0.0.1]:50902 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pPIoW-0006EC-AZ for submit@debbugs.gnu.org; Tue, 07 Feb 2023 02:54:52 -0500 Received: from mira.cbaines.net ([212.71.252.8]:42154) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pPIoV-0006E5-0x for control@debbugs.gnu.org; Tue, 07 Feb 2023 02:54:51 -0500 Received: from localhost (unknown [IPv6:2a02:1808:280:b109:f055:17e:cfb4:2]) by mira.cbaines.net (Postfix) with ESMTPSA id 8AA1727BBE9 for ; Tue, 7 Feb 2023 07:54:49 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 30a6acab for ; Tue, 7 Feb 2023 07:54:48 +0000 (UTC) From: Christopher Baines To: control@debbugs.gnu.org Subject: tag 60674 moreinfo Date: Tue, 07 Feb 2023 07:54:48 +0000 Message-ID: <87cz6lykon.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control 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 (-) tags 60674 + moreinfo quit From unknown Sat Aug 16 14:30:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 18 Mar 2023 11:24:11 +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