From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 21 Feb 2022 12:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org, zimon.toutoune@gmail.com Cc: Efraim Flashner X-Debbugs-Original-To: guix-patches@gnu.org, zimon.toutoune@gmail.com Received: via spool by submit@debbugs.gnu.org id=B.164544770027808 (code B ref -1); Mon, 21 Feb 2022 12:49:02 +0000 Received: (at submit) by debbugs.gnu.org; 21 Feb 2022 12:48:20 +0000 Received: from localhost ([127.0.0.1]:35309 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM872-0007ES-9I for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:48:20 -0500 Received: from lists.gnu.org ([209.51.188.17]:47082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM871-0007EL-Co for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:48:19 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59822) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nM86v-0005Oc-Vi for guix-patches@gnu.org; Mon, 21 Feb 2022 07:48:18 -0500 Received: from flashner.co.il ([178.62.234.194]:56074) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nM86u-0000jL-D3 for guix-patches@gnu.org; Mon, 21 Feb 2022 07:48:13 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id BD39D40313; Mon, 21 Feb 2022 12:47:39 +0000 (UTC) From: Efraim Flashner Date: Mon, 21 Feb 2022 14:47:05 +0200 Message-Id: X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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 (--) It turns out we didn't expose julia-package-dependencies in the julia-build-system, making the created Package.toml incomplete. This corrects the omission and fixes the one package where it is manually added. Efraim Flashner (2): build: julia: Add julia-package-dependencies as keyword. gnu: julia-media: Use julia-package-dependencies. gnu/packages/julia-xyz.scm | 15 ++------------- guix/build-system/julia.scm | 5 ++++- guix/build/julia-build-system.scm | 7 ++++++- 3 files changed, 12 insertions(+), 15 deletions(-) base-commit: 7eefff2054b94f8a7ad850ad8f36b8773bb39ce9 -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH 1/2] build: julia: Add julia-package-dependencies as keyword. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 21 Feb 2022 12:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org, zimon.toutoune@gmail.com Cc: Efraim Flashner Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164544792728178 (code B ref 54088); Mon, 21 Feb 2022 12:53:01 +0000 Received: (at 54088) by debbugs.gnu.org; 21 Feb 2022 12:52:07 +0000 Received: from localhost ([127.0.0.1]:35314 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM8Ag-0007KO-Om for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:52:07 -0500 Received: from flashner.co.il ([178.62.234.194]:37976) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM8Ab-0007Js-8s for 54088@debbugs.gnu.org; Mon, 21 Feb 2022 07:52:05 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id 5F00C40313; Mon, 21 Feb 2022 12:51:55 +0000 (UTC) From: Efraim Flashner Date: Mon, 21 Feb 2022 14:51:20 +0200 Message-Id: <9cdd299f057aad897abf5d16b28cf2421421f367.1645447521.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.34.0 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * guix/build-system/julia.scm (link-depot): Accept julia-package-dependencies keyword and use it for julia-create-package-toml function. (julia-build): Add julia-pacakge-dependencies. * guix/build/jul [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 1.6 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: nixo.xyz (xyz)] -0.0 T_SCC_BODY_TEXT_LINE No description available. 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: 0.6 (/) * guix/build-system/julia.scm (link-depot): Accept julia-package-dependencies keyword and use it for julia-create-package-toml function. (julia-build): Add julia-pacakge-dependencies. * guix/build/julia-build-system.scm (julia-build): Add julia-package-dependencies keyword. --- guix/build-system/julia.scm | 5 ++++- guix/build/julia-build-system.scm | 7 ++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/guix/build-system/julia.scm b/guix/build-system/julia.scm index 6261f8a55a..66eec65ef1 100644 --- a/guix/build-system/julia.scm +++ b/guix/build-system/julia.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2021 Ludovic Courtès ;;; Copyright © 2021 Jean-Baptiste Volatier ;;; Copyright © 2021 Simon Tournier +;;; Copyright © 2022 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -88,6 +89,7 @@ (define* (julia-build name inputs (guile #f) (julia-package-name #f) (julia-package-uuid #f) + (julia-package-dependencies #f) (imported-modules %julia-build-system-modules) (modules '((guix build julia-build-system) (guix build utils)))) @@ -108,7 +110,8 @@ (define builder search-paths)) #:inputs #$(input-tuples->gexp inputs) #:julia-package-name #$julia-package-name - #:julia-package-uuid #$julia-package-uuid)))) + #:julia-package-uuid #$julia-package-uuid + #:julia-package-dependencies #$julia-package-dependencies)))) (mlet %store-monad ((guile (package->derivation (or guile (default-guile)) system #:graft? #f))) diff --git a/guix/build/julia-build-system.scm b/guix/build/julia-build-system.scm index 03d669be64..fb524f03d7 100644 --- a/guix/build/julia-build-system.scm +++ b/guix/build/julia-build-system.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2019, 2020 Nicolò Balzarotti ;;; Copyright © 2021 Jean-Baptiste Volatier ;;; Copyright © 2021, 2022 Simon Tournier +;;; Copyright © 2022 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -136,7 +137,8 @@ (define* (check #:key tests? source inputs outputs julia-package-name package "/test/runtests.jl")))))) (define* (link-depot #:key source inputs outputs - julia-package-name julia-package-uuid #:allow-other-keys) + julia-package-name julia-package-uuid + julia-package-dependencies #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (name+version (strip-store-file-name out)) (version (last (string-split name+version #\-))) @@ -156,6 +158,7 @@ (define* (link-depot #:key source inputs outputs (julia-create-package-toml (getcwd) julia-package-name julia-package-uuid version + julia-package-dependencies #:file "Project.toml")) ;; When installing a package, julia looks first at in the JULIA_DEPOT_PATH @@ -207,6 +210,7 @@ (define %standard-phases (delete 'build))) (define* (julia-build #:key inputs julia-package-name julia-package-uuid + julia-package-dependencies (phases %standard-phases) #:allow-other-keys #:rest args) "Build the given Julia package, applying all of PHASES in order." @@ -214,4 +218,5 @@ (define* (julia-build #:key inputs julia-package-name julia-package-uuid #:inputs inputs #:phases phases #:julia-package-name julia-package-name #:julia-package-uuid julia-package-uuid + #:julia-package-dependencies julia-package-dependencies args)) -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH 2/2] gnu: julia-media: Use julia-package-dependencies. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 21 Feb 2022 12:53:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org, zimon.toutoune@gmail.com Cc: Efraim Flashner Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164544795528221 (code B ref 54088); Mon, 21 Feb 2022 12:53:01 +0000 Received: (at 54088) by debbugs.gnu.org; 21 Feb 2022 12:52:35 +0000 Received: from localhost ([127.0.0.1]:35317 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM8B9-0007L7-5V for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:52:35 -0500 Received: from flashner.co.il ([178.62.234.194]:37992) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM8B7-0007Ku-Jg for 54088@debbugs.gnu.org; Mon, 21 Feb 2022 07:52:33 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id D24CB40313; Mon, 21 Feb 2022 12:52:27 +0000 (UTC) From: Efraim Flashner Date: Mon, 21 Feb 2022 14:51:21 +0200 Message-Id: <6ef43f223656ad86c16e1e9bea6fbe8df5febb3f.1645447521.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.34.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia.scm (julia-media)[arguments]: Remove custom phase, add dependency packages to julia-package-dependencies. --- gnu/packages/julia-xyz.scm | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 4090d6d9c4..daf12e59fe 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3472,19 +3472,8 @@ (define-public julia-media (arguments '(#:julia-package-name "Media" #:julia-package-uuid "e89f7d12-3494-54d1-8411-f7d8b9ae1f27" - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'create-package-toml - (lambda* (#:key julia-package-name julia-package-uuid #:allow-other-keys) - (with-output-to-file "Project.toml" - (lambda _ - (format #t - "name = \"~a\"~@ - uuid = \"~a\"~@ - [deps]~@ - MacroTools = \"1914dd2f-81c6-5fcd-8719-6d5c9610ff09\"~%" - julia-package-name - julia-package-uuid)))))))) + #:julia-package-dependencies + `(("MacroTools" . "1914dd2f-81c6-5fcd-8719-6d5c9610ff09")))) (propagated-inputs (list julia-macrotools)) (home-page "https://github.com/JunoLab/Media.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 02/19] build: julia: Add 'julia-package-dependencies' as keyword. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: Efraim Flashner Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562406517914 (code B ref 54088); Wed, 23 Feb 2022 13:48:01 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:47:45 +0000 Received: from localhost ([127.0.0.1]:44308 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzb-0004ee-Uu for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:44 -0500 Received: from mail-wm1-f48.google.com ([209.85.128.48]:34081) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzZ-0004b5-EF for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:42 -0500 Received: by mail-wm1-f48.google.com with SMTP id l2-20020a7bc342000000b0037fa585de26so2383134wmj.1 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=eAot9JVuNvvFUDKJ/rouwkDv3KeCBky4//0eR66jrnY=; b=oOjbqia0Y1MK/qWad4HkeUjefQu4hf+hNEmn9hN2XkWjzwaxQMA2N/2Rw74mkfK8Vd CYzI5wBL6ZHy7VLOn5LmMZT9ctW/UpmxHEAHN9Fp5Mgj5Z5j6u7dck5d8kTjZPsC9IWM fSoUZFOpLjU1hkriSBFPPLkqjd4M9IjMLaKEFzxYUuLkTtP4hFWpiRMebWpfwAvXCCA2 +2SlQQdoTy8uNCOa0mBB6e2OfmyFaPYxDin6rg7vkyTis1UhcSJOxXkNM+Nl0zjXNUUK GCrSItkYzBKtb+WeMTjdH1P9xRQUnMwJkcJEygAbkGDz1ZkuoZfjVmyucGKp0xeBh+5Q V5kg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=eAot9JVuNvvFUDKJ/rouwkDv3KeCBky4//0eR66jrnY=; b=lMfKtwhgVCCuRYMJDE1gpkGjXZW5xg2v29yKdOoJAq7hiJ/gX5DKD4L44oKUTjLxjX UOl+RTH2losWosrMsnHMGNCbJshSHCUAwUPIgwhUEh+Fxrk8utjEr+J9Sy1AaWQKuhNV Mjrl42vtHQVL6SP8v1KxXrF60hx1+vkGHqx4KAZRSQcF7/fxTAcb/wVsTcASmkJ4l1UY yTrGPOJk5agiHXSrimbhBMIvXGA89DiTZyoID6ZeMBR3RMLqFJu4tZyD3mQzlsOP9bJz xDRSy7Do85OateU5YSHTkqN4Dyi9I+uOgA1eM1oWFxrL759plmarUuTx/9aLCTZKawz+ oiiA== X-Gm-Message-State: AOAM530ZxP55SIG8gzThr9rv09WARVKU/sAsdgljZV5fI+IDt4ATQQdY NSUcYoxQYYq1cUdZ+DgCHhMU1cnkmGI= X-Google-Smtp-Source: ABdhPJy50q4rS5Ix1j6N9K3OeNWjIUqvL5yJy1B3Q8we0oI40u7c8DxhiY+dWhDDS8JNXRErdhng8w== X-Received: by 2002:a05:600c:268a:b0:381:d9:f412 with SMTP id 10-20020a05600c268a00b0038100d9f412mr225374wmt.46.1645624055202; Wed, 23 Feb 2022 05:47:35 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.34 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:34 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:05 +0100 Message-Id: <20220223134722.354636-2-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.6 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: From: Efraim Flashner * guix/build-system/julia.scm (link-depot): Accept julia-package-dependencies keyword and use it for 'julia-create-package-toml' function. (julia-create-package-toml): Use pattern matching. (julia-bui [...] Content analysis details: (1.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.128.48 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (zimon.toutoune[at]gmail.com) 1.6 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: nixo.xyz (xyz)] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.128.48 listed in wl.mailspike.net] -0.0 T_SCC_BODY_TEXT_LINE No description available. 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: 0.6 (/) From: Efraim Flashner * guix/build-system/julia.scm (link-depot): Accept julia-package-dependencies keyword and use it for 'julia-create-package-toml' function. (julia-create-package-toml): Use pattern matching. (julia-build): Add 'julia-pacakge-dependencies'. * guix/build/julia-build-system.scm (julia-build): Add '#:julia-package-dependencies' keyword. --- guix/build-system/julia.scm | 7 +++++-- guix/build/julia-build-system.scm | 14 ++++++++++---- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/guix/build-system/julia.scm b/guix/build-system/julia.scm index 6261f8a55a..66e7711bcd 100644 --- a/guix/build-system/julia.scm +++ b/guix/build-system/julia.scm @@ -2,7 +2,8 @@ ;;; Copyright © 2019 Nicolò Balzarotti ;;; Copyright © 2021 Ludovic Courtès ;;; Copyright © 2021 Jean-Baptiste Volatier -;;; Copyright © 2021 Simon Tournier +;;; Copyright © 2021, 2022 Simon Tournier +;;; Copyright © 2022 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -88,6 +89,7 @@ (define* (julia-build name inputs (guile #f) (julia-package-name #f) (julia-package-uuid #f) + (julia-package-dependencies ''()) (imported-modules %julia-build-system-modules) (modules '((guix build julia-build-system) (guix build utils)))) @@ -108,7 +110,8 @@ (define builder search-paths)) #:inputs #$(input-tuples->gexp inputs) #:julia-package-name #$julia-package-name - #:julia-package-uuid #$julia-package-uuid)))) + #:julia-package-uuid #$julia-package-uuid + #:julia-package-dependencies #$julia-package-dependencies)))) (mlet %store-monad ((guile (package->derivation (or guile (default-guile)) system #:graft? #f))) diff --git a/guix/build/julia-build-system.scm b/guix/build/julia-build-system.scm index 03d669be64..c5ad65d029 100644 --- a/guix/build/julia-build-system.scm +++ b/guix/build/julia-build-system.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2019, 2020 Nicolò Balzarotti ;;; Copyright © 2021 Jean-Baptiste Volatier ;;; Copyright © 2021, 2022 Simon Tournier +;;; Copyright © 2022 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; @@ -136,7 +137,8 @@ (define* (check #:key tests? source inputs outputs julia-package-name package "/test/runtests.jl")))))) (define* (link-depot #:key source inputs outputs - julia-package-name julia-package-uuid #:allow-other-keys) + julia-package-name julia-package-uuid + julia-package-dependencies #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (name+version (strip-store-file-name out)) (version (last (string-split name+version #\-))) @@ -156,6 +158,7 @@ (define* (link-depot #:key source inputs outputs (julia-create-package-toml (getcwd) julia-package-name julia-package-uuid version + julia-package-dependencies #:file "Project.toml")) ;; When installing a package, julia looks first at in the JULIA_DEPOT_PATH @@ -186,9 +189,10 @@ (define* (julia-create-package-toml location ") f) (when (not (null? deps)) (display "[deps]\n" f) - (for-each (lambda dep - (display (string-append (car (car dep)) " = \"" (cdr (car dep)) "\"\n") - f)) + (for-each (match-lambda + ((name . uuid) + (display (string-append name " = \"" uuid "\"\n") + f))) deps)) (close-port f))) @@ -207,6 +211,7 @@ (define %standard-phases (delete 'build))) (define* (julia-build #:key inputs julia-package-name julia-package-uuid + julia-package-dependencies (phases %standard-phases) #:allow-other-keys #:rest args) "Build the given Julia package, applying all of PHASES in order." @@ -214,4 +219,5 @@ (define* (julia-build #:key inputs julia-package-name julia-package-uuid #:inputs inputs #:phases phases #:julia-package-name julia-package-name #:julia-package-uuid julia-package-uuid + #:julia-package-dependencies julia-package-dependencies args)) -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 03/19] gnu: julia-media: Use 'julia-package-dependencies'. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: Efraim Flashner Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562406517926 (code B ref 54088); Wed, 23 Feb 2022 13:48:02 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:47:45 +0000 Received: from localhost ([127.0.0.1]:44311 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzc-0004es-RJ for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:45 -0500 Received: from mail-wr1-f54.google.com ([209.85.221.54]:43874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzZ-0004bN-MO for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:43 -0500 Received: by mail-wr1-f54.google.com with SMTP id s1so13318403wrg.10 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=8DmCpO9tC9MtsA5rDAq/hv8xFzeXL/eCo9q8PCJOQTE=; b=RgLzmThQavTFgbqMbRo5/pPtebzOOX5dTr0dotFkjxmuQabJZR/l6oaU82/YqGmmBZ 1xkaVKQUtIe/IzSLCm8RC2po4Nrx2TkWwNXOw3Etz9vCHExPLM1ADEoZMxeB1LF0Qtfs 1WopMQEp0CHzw4xyWd6PPV1vS6zeUfF5O/whrxd+f+d8I+2PkQJ0219pl4eyqychxty7 n/Z3BQfWbjguqEJ4M/gTnpm1m4ipEOmGZHQGNDiltYR+V45JerjH8RTGYWhC/KFQ7jE9 o0NWPjEqiDARqbq3ZeJVab2PvaNzgkQ5SQ2eOH6pb3/oWigIZmY861muqcrGByttbsAi 36Fg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=8DmCpO9tC9MtsA5rDAq/hv8xFzeXL/eCo9q8PCJOQTE=; b=O3jekE20SKYDLEq4L7nlSqsojBd8HGQhAW9Z3vqF2om1wZOO7bapMWfhOS6UbucDn6 iB2jTOyohCNAxZd5KNeUOlQO5llphXsW+CvEb4ZYw6n74qlbdqQsjrdrZO3CEiLGEgaZ aRO7D6uBRYydvAUcfc4kCo1Wc4D09Zcxvc8/aFIpci8geEJsycgZhLBKWw2UpdrGM8Ij QkfcTQWh/HkRdRjPoh50G3dCP54vOV6BrN2zr371Csc8cBue3r5iDIZ6TIbcBQMIIzf9 Ex66R3m8J9GRcIJw0TAnh3aqqOR6y/dyMbIvCR9He1cDn2b1KclLPR57WZbVgWkKyNvN 0DmA== X-Gm-Message-State: AOAM531vxrY+4p1tGTnIWfXPfevGJdn8Y6f88z0cHH+gPcf9KM52xLkG M0LPT1SN6lQ0p1SDDcg/3GWCBuDHySA= X-Google-Smtp-Source: ABdhPJwUgithAmb8m4dPjOQAm1PVL2vxuEEchIorcBn4aYS7nmqstrPIewTZPLfaj+Yi2Syx6oILoQ== X-Received: by 2002:adf:ee4e:0:b0:1e4:b0b7:2604 with SMTP id w14-20020adfee4e000000b001e4b0b72604mr22719535wro.505.1645624055777; Wed, 23 Feb 2022 05:47:35 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:35 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:06 +0100 Message-Id: <20220223134722.354636-3-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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 (-) From: Efraim Flashner * gnu/packages/julia.scm (julia-media)[arguments]: Remove custom phase, add dependency packages to '#:julia-package-dependencies'. --- gnu/packages/julia-xyz.scm | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 14c8c30751..6bb404761b 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3508,19 +3508,8 @@ (define-public julia-media (list #:julia-package-name "Media" #:julia-package-uuid "e89f7d12-3494-54d1-8411-f7d8b9ae1f27" - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'create-package-toml - (lambda* (#:key julia-package-name julia-package-uuid #:allow-other-keys) - (with-output-to-file "Project.toml" - (lambda _ - (format #t - "name = \"~a\"~@ - uuid = \"~a\"~@ - [deps]~@ - MacroTools = \"1914dd2f-81c6-5fcd-8719-6d5c9610ff09\"~%" - julia-package-name - julia-package-uuid)))))))) + #:julia-package-dependencies + #~(list '("MacroTools" . "1914dd2f-81c6-5fcd-8719-6d5c9610ff09")))) (propagated-inputs (list julia-macrotools)) (home-page "https://github.com/JunoLab/Media.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 04/19] build: julia-build-system: Fix corner-case for parallel tests. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562406617943 (code B ref 54088); Wed, 23 Feb 2022 13:48:03 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:47:46 +0000 Received: from localhost ([127.0.0.1]:44315 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzd-0004f3-CC for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:46 -0500 Received: from mail-wm1-f50.google.com ([209.85.128.50]:46015) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrza-0004dZ-5F for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:43 -0500 Received: by mail-wm1-f50.google.com with SMTP id az26-20020a05600c601a00b0037c078db59cso4383682wmb.4 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=HyXgeqQ1QVFMqhpQsQk9k83FcEWjoerZJ6yfanWkMZg=; b=diIO3HSt+xgWtvhAW+a8GQ1CYRqnpDKetHPMpaN5iWeK/BPCbBYrtyHnrPDV9CE2RR HO1u3zhzFH0KHcspT36vo1BUr1D2USbGorwe8lf4kfWgeoRz7JU/d7L25SwmJjajIaR+ P5emFMDf70SbqMcwFCgr6yIxnPyFYHfAwu/XkY/LKVQdcPzVF456GjVx6wBfCHrZkqRv q6o8phOCkiZfp1hiKutCUW0k6R9V5cZgWt/jQSOFHOmChZRdZc8AkTXZ+Wp88h0yZFOb HO7qpNjfwtIdVu+J1Uuhz0sSXA5FljX5g8dPxJ71cKfjy6NSRNoXIqZAwvTRES8lJd/v 9BHA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=HyXgeqQ1QVFMqhpQsQk9k83FcEWjoerZJ6yfanWkMZg=; b=Z+Kew485FoIVKWXELBipEilSG6d36+Lj7OEPPuflU0dMliYppEQS/pC6DYAO0cxHRI 5/ncDb02CKr6pDXMQSshbZyx/47pKPEZcBVMd60uINmIZrgzWWDScnK5i14FnipMkbbc FW9jgPZ2G73FXjkfF3/ZXdon3xwryHS7JEhJlq9fUcQr5VznzCdMMcBRl//ylqwUCmfH 4ZvkcxLrIpYZDXQeH7hxwLmy98WPag3MzSEquabsxtWQTkDTb/NEcfDcVxHwNR0ff/wg Ditp5hcK5sGaAuGSKOMjG3ClwkTpggHTnzIGPZLFPanzFanyHhRHf/3/ES4GTUqUdosq +AwA== X-Gm-Message-State: AOAM533bRdsJ8UbIizZRmbwzkBwHjie9h/opVucqfz729jC0tqmKa+N5 ht25T4LMyzFlsedabI1XA8Y7ZESrCoM= X-Google-Smtp-Source: ABdhPJzNFqsE1Bb5Jn/rvicCVNI67+ZAig9ahqqcDunAd6tJIW2tZItAHQ6bQfmMqpf9KJ+5Ek9RRw== X-Received: by 2002:a05:600c:3b06:b0:37c:3ce4:9a31 with SMTP id m6-20020a05600c3b0600b0037c3ce49a31mr7693945wms.192.1645624056366; Wed, 23 Feb 2022 05:47:36 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:35 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:07 +0100 Message-Id: <20220223134722.354636-4-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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 (-) * guix/build/julia-build-system.scm (check): Do not run parallel tests when '--cores=1'. --- guix/build/julia-build-system.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guix/build/julia-build-system.scm b/guix/build/julia-build-system.scm index c5ad65d029..b0dac154e9 100644 --- a/guix/build/julia-build-system.scm +++ b/guix/build/julia-build-system.scm @@ -112,9 +112,9 @@ (define* (check #:key tests? source inputs outputs julia-package-name (job-count (if parallel-tests? (parallel-job-count) 1)) - ;; The --proc argument of Julia *adds* extra processors rather than - ;; specify the exact count to use, so zero must be specified to - ;; disable parallel processing... + ;; The --procs argument of Julia *adds* extra processors rather + ;; than specify the exact count to use, so zero must be specified + ;; to disable parallel processing... (additional-procs (max 0 (1- job-count)))) ;; With a patch, SOURCE_DATE_EPOCH is honored (setenv "SOURCE_DATE_EPOCH" "1") @@ -127,7 +127,7 @@ (define* (check #:key tests? source inputs outputs julia-package-name (setenv "HOME" "/tmp") (apply invoke "julia" `("--depwarn=yes" - ,@(if parallel-tests? + ,@(if (and parallel-tests? (< 0 additional-procs)) ;; XXX: ... but '--procs' doesn't accept 0 as a valid ;; value, so just omit the argument entirely. (list (string-append "--procs=" -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 05/19] gnu: julia-codeczlib: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562406717961 (code B ref 54088); Wed, 23 Feb 2022 13:48:03 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:47:47 +0000 Received: from localhost ([127.0.0.1]:44318 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrze-0004fM-6X for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:46 -0500 Received: from mail-wr1-f54.google.com ([209.85.221.54]:36357) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrza-0004ds-Qp for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:43 -0500 Received: by mail-wr1-f54.google.com with SMTP id o4so2954489wrf.3 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=wB60ZRBarJ2E6UnsFiyGx+WTyYDvlhzvH7dvpZ5voZw=; b=o+U3/9YdjsdOLlFLSebttWAFvxuWK6Ye9NQtkWPfmKq4Hj+8sNqhO4/mkQ5oLfungZ nzIE5dr1kyhF4FXYYqs8cZOTYY9ddNAXkuh+v6CICZzMBHNWdxJLtKHv7/2oW9V1uw/p Rp+hLoTD3O426SpATBqWEcmeMVW41Sd59A4XID/oZOq5p9Ra661drU4/3TeIS7pSj6Mn Gy3f4X2PsbbCTDAMIs9QGj/KR8W2v8umUAxIkl3Yk5xXQRCZSVsH8B0K3Wd08qoswiWq Ubzwjn4SqJnaZOqFDiWI69MeEE2iwi2DIV3Ro1RqqhOB3AL3NPnEZt7MUTiqH3RUIsMP i3CA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=wB60ZRBarJ2E6UnsFiyGx+WTyYDvlhzvH7dvpZ5voZw=; b=YtLZvf3xeEX+odZFZKiklUmyWNzCRGANKCcIBjs4nbhdPgcVKek+GN6bO7jXDUQZ+g 7dBqDKDoxbOENW06ByK+/TTSU20vGMsD+QmJYz6TUNMfcDcwLyMJHL+ILqy7fd2p8uDY PET6j7+DvlmGlj1/dm2NK9pDl1cnXoR0neJbtLYHy27FZ0+3/YzGoMBdHk2he8hZ35Dr SsbOD/HSRsCcxkIm8kxMZYu0hZryzYN2OJfRimCWZ7D8ENyk1jbIOBF+EHM+wzZA70UY d9xpRU3gMBnxtfqe9nLgx37OKeq+n20DqsMMbzwszjt3/djh4M4lyXOZSkZ2xeeY1Je+ 7B4Q== X-Gm-Message-State: AOAM533Vx2htKdpwZWsBhKpR5NHGFuZqMotE8LppxFcktSCMK7GzaKeD 0ruyi+Hh8qD8kBrs+gO6ZBqb9eM+fyY= X-Google-Smtp-Source: ABdhPJznwJiAmDLpi30sSQf0IB5zxJzCMpzv/mEj4Kx8wM2EIdfmqqBtWKM+O13JcxMX26tdBEnUJA== X-Received: by 2002:adf:d1ed:0:b0:1e9:e7ae:f505 with SMTP id g13-20020adfd1ed000000b001e9e7aef505mr13963016wrd.161.1645624056974; Wed, 23 Feb 2022 05:47:36 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:36 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:08 +0100 Message-Id: <20220223134722.354636-5-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-codeczlib): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 6bb404761b..f2d209cc3e 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -827,8 +827,7 @@ (define-public julia-codeczlib (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + (find-files out "\\.gz$")))))))) (propagated-inputs (list julia-transcodingstreams julia-zlib-jll)) -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 06/19] gnu: julia-dataframes: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562406717979 (code B ref 54088); Wed, 23 Feb 2022 13:48:04 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:47:47 +0000 Received: from localhost ([127.0.0.1]:44321 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrze-0004fe-OT for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:47 -0500 Received: from mail-wr1-f53.google.com ([209.85.221.53]:46001) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzb-0004dt-4z for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:43 -0500 Received: by mail-wr1-f53.google.com with SMTP id p9so39719191wra.12 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=oF3ibBCGO17vtkucUS/3m4FISU4DiA8f/wGfOtlAQ3o=; b=WPYe8ClI4PejIqbK+LrIBR9eJhDngYiLPxFgS+YFKj5sAqqesZeOrORkLPGfep8dkh Z/CBhJJKsB8CXamPvKBXGziOH4xWyeeB3W6rX5Wp6TEc4R7Qco6iITJI18ryG0GgDD5R ya3NnErYfayDBq4n1cJyG5YLB/ERHZho/MhHNAl6Ep+HOO40zvUZQAPI71nTHPr+M+te VDCgopEMnL75fVQSRieMDlBY4ofv1HW4jBFauf2qzqRY28nNfewQofmWly7OTPcye2z3 7DtR6i3sLFMP4NVQY3T8mjNMVQJEZaGnp6pIGx/gzTedbxooWDkLsqTnwtvaidkM5WqI gamQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=oF3ibBCGO17vtkucUS/3m4FISU4DiA8f/wGfOtlAQ3o=; b=dDrQWM/dmLSY5bRJ+7z9FbVxRO+D7FqFPptCkI7AwKygB1m6CYRC0JKhKqs8CbPc0K XAdxK5aAP8RcSN71/h2SKcssMt8hLrmrY1QDLzFmemv7iaWAxuw5OcJ33NBGbpGWHif+ oWPNsiCGYt9sogQoFMroFdS+oncF7zhm6NdVHjz/Qtdqb8gpXeOtcErhDiWvFpZegS70 1Dr5PV4l0aNHbX4ApZKUvg+B1/wYqwFmhrPJQlBf/W5WuZqtBrb+ZWMeIDoJHbb7pGQf onzn0sIY4T3G/kaVYdxFu0ZPl9nCbvs7MXlgwGo2j4g1UrzmzNwhIFpKDuaAcGstzJj6 DQeQ== X-Gm-Message-State: AOAM5304/UhsNv5yhRzsqLNrDLrjB5B3N0tdtr4MaiZQgqYtGgDKZphz r64lnmh380ckXbZlNnZZcX7ZdShAg1Y= X-Google-Smtp-Source: ABdhPJz+wfCQzC+kHMhJyGvhySztITZiLcKaakpw3rjUdkB4OAmju3YMYyG198yEuhHVVwTCh5te1Q== X-Received: by 2002:a5d:6a4e:0:b0:1e4:b619:52b0 with SMTP id t14-20020a5d6a4e000000b001e4b61952b0mr22282819wrw.504.1645624057500; Wed, 23 Feb 2022 05:47:37 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:37 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:09 +0100 Message-Id: <20220223134722.354636-6-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-dataframes): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index f2d209cc3e..da139277b7 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1180,8 +1180,7 @@ (define-public julia-dataframes (string-append all "return\n"))) (substitute* "test/join.jl" (("test (levels\\(outerjoin\\(B)" _ test) - (string-append "test_nowarn " test))) - #t))))) + (string-append "test_nowarn " test)))))))) (propagated-inputs (list julia-dataapi julia-invertedindices -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 07/19] gnu: julia-datavalues: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408218115 (code B ref 54088); Wed, 23 Feb 2022 13:48:05 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:02 +0000 Received: from localhost ([127.0.0.1]:44331 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzt-0004hl-Oc for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:02 -0500 Received: from mail-wr1-f48.google.com ([209.85.221.48]:33582) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzb-0004dv-M3 for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:44 -0500 Received: by mail-wr1-f48.google.com with SMTP id j17so13033155wrc.0 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=hafFHEVwCxJoKzTAn3VzDeXedc8HlCcu3o7b7dHyg/g=; b=HzxV/pYnFIJFL6IjWlOBukFv5jXP3nYss4Extgpoto26tHKL6ASPrsMstCvWnElwZo WsIH967+BGx/76p9DyrSjgB7mXwDoxnc0lz6Yf/8hynjR1lHh0x8cOrEMyPFLnmXWsSC TNN90ksBffymNwZ4pEKwmZW0jzDA6kStKqc3Z/RKPNyB7cczhUcqCds1X+Yx4BSzjYNB dnD2UKckqsacZWEoSJE0fNakSpfgKf+TOrbLzKgSv5Owykqhrg71/r6d71j1QPU8VzjJ 8DgOBgZGOSmfuz0eYsiNYmvp59BLY2suKTH0y315GzHIdm+lZgIr0ulxLoHLqicxT9tr Hzkg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=hafFHEVwCxJoKzTAn3VzDeXedc8HlCcu3o7b7dHyg/g=; b=p4Lq6xvf2lqkreHEV7Mw3pxZh1KYgYlmw+sD2Bl+ViQ+D0o3qplOku9Wyc3rtFb36w /7K6SLN/a9WbpeNyIfc/narAkdNHGcWFJrrBBLZ2iu88pGtYOqTvbOMZTgUUaxCdAbQx PM4osfNT4nrafLnev4Khl8dGB/XUNwfHEkqTBl31uW+nbbNs3tJC4jVhY9kb/ip0aqw+ i23FNDYw+d0o2hjtWgWC/lW7IPwuGgLVmNdAuZnXiE5GEMk5/KmOrJtlgQszjiUVfEM8 Tl0qf0eeEwUitlxCAJrkYv12PVyu9U/4Klvyy5Fa71Jjam3K/OLTism5dCLKT2XBN/bR nyFg== X-Gm-Message-State: AOAM531YxTfYdfh6t7f2OVAfsPX8e11q++FK3jzGtsU6aeQw9EsU8OKe iIUs6MJ1MGzwZ10KZepsQ3nr25ADu+g= X-Google-Smtp-Source: ABdhPJyAOAma3gCkrbtKIktUZYmNeQZ5kN3AXvHqNpGK99yC8GD08yQYko/7q8+8zRNYH0AGi+9Thg== X-Received: by 2002:adf:ef89:0:b0:1e4:aeab:d020 with SMTP id d9-20020adfef89000000b001e4aeabd020mr22618383wro.4.1645624058058; Wed, 23 Feb 2022 05:47:38 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:37 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:10 +0100 Message-Id: <20220223134722.354636-7-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-datavalues): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index da139277b7..4709aa9d89 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1292,8 +1292,7 @@ (define-public julia-datavalues ;; https://github.com/queryverse/DataValues.jl/issues/83 (substitute* "test/array/test_reduce.jl" ((".*DataValue\\(mapreduce.*") "") - ((".*DataValue\\(method\\(f.*") "")) - #t))))) + ((".*DataValue\\(method\\(f.*") ""))))))) (propagated-inputs (list julia-datavalueinterfaces)) (home-page "https://github.com/queryverse/DataValues.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 08/19] gnu: julia-finitediff: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:06 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408218125 (code B ref 54088); Wed, 23 Feb 2022 13:48:06 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:02 +0000 Received: from localhost ([127.0.0.1]:44334 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzu-0004i6-57 for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:02 -0500 Received: from mail-wr1-f45.google.com ([209.85.221.45]:36352) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzc-0004dw-5o for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:44 -0500 Received: by mail-wr1-f45.google.com with SMTP id o4so2954583wrf.3 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=Qv9IDQto1MWZMOHdQR18ACNkeYmFJisizVeaj1TJ+No=; b=Vsj/GP72zOXVhGsXMJRx62HElTrqyIlb5v9p7/mFZ0g164KySaXpeUe9+tv1LDbcBk mm+7tgZTMx+c0Yv4c3cGelOYhi31yc3evLMQMgEqoi5ESeyd+je7RDbBos56Vtuj3SHO 4HA2GZIZimi58SLJGlzcYG/GKcSMzyjWtNwtWnIsygapzU+QgTNcRZ11+rAPmJtFTEQK Gdy2kZ8/9AlVQ3zb23i/exDJ/8S5Gi/6SepV02rxhcu7jBrpJtRbP4f2f82Uzgp9Gdl1 2bZkGzHc41fepmbqa67LvEteU3YLCDfa5bHFADqle9CHusPaBl7WUEPq7NCSBr1ZOo9F ppAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=Qv9IDQto1MWZMOHdQR18ACNkeYmFJisizVeaj1TJ+No=; b=lVeY17m5byfwALSf5LlrwcMg0OSbaq3t8AhFYAgX7PQr/8/IHT+EBRKnIF9LD1sC0c DKj+LIYmvGqgqIR6bupA66T0yCKpPTqnvrms7eIUYSza7Qt0GAMoQtUm581sJaIWzplf aazIJ0p30Gope5qWmTmq3Ova3vQQ/dR9Ec/i3j6Yoz31DzkkzgOvZ4I85hgQQaAATUKC Ov0Ms3nLdUYJmkP+PbcfZNLMu4NdlYJuGAqcAzhA8sirPZltsQnd1zIGrbANoZD5dkDl qFn9ScQ3ub+F0eSh5eYq/bas9i2YigsZ7ZOK5HBf4UiLbTqT8KbYx3Aw/ZBkvsHAvb2e w0aQ== X-Gm-Message-State: AOAM5300GvK4SbM/decTmEwn3PW/ygTnIbFp0hbR0uDXSpmicXPqF4Sk 7Lcx+JO5Ja0KkjzV/9VNK1EqdClkc1c= X-Google-Smtp-Source: ABdhPJwLgFLYeT65EqQW8j4/WM/MzeOkZuBjoufQ00RkKyDdXBpsH5JuJ8e4svwkdM+tLG+CWpxXiA== X-Received: by 2002:a5d:53cd:0:b0:1e5:a670:9d0b with SMTP id a13-20020a5d53cd000000b001e5a6709d0bmr23451509wrw.170.1645624058578; Wed, 23 Feb 2022 05:47:38 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:38 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:11 +0100 Message-Id: <20220223134722.354636-8-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-finitediff): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 4709aa9d89..cedb11bf9b 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1884,8 +1884,7 @@ (define-public julia-finitediff (lambda _ ;; We don't want to run all the tests; the Downstream tests ;; try to download the package registry. - (setenv "GROUP" "Core") - #t))))) + (setenv "GROUP" "Core")))))) (propagated-inputs (list julia-arrayinterface julia-requires -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 09/19] gnu: julia-fixedpointnumbers: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:06 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408318135 (code B ref 54088); Wed, 23 Feb 2022 13:48:06 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:03 +0000 Received: from localhost ([127.0.0.1]:44337 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzu-0004iI-J2 for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:02 -0500 Received: from mail-wm1-f43.google.com ([209.85.128.43]:51832) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzc-0004dy-O1 for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:45 -0500 Received: by mail-wm1-f43.google.com with SMTP id p4so3586278wmg.1 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=NgCHMRozG68qKOBRYgpYxyK/sFLPgDiJhgX8q/nn0mU=; b=GL1NE8ICLzyJy3EkthA9XwPU2X/L5L3DngNHg5/WkwZCKl+CWv5wpfnRZL87/tV96G 6k2PbvpfatVbu2vU+3nP1WdBGuc7FuCtc/5kAadKPLoh7uTU4D0h2oOk3iPqL7tIYKb3 X6I7PNTzmm+Fyn0CiBpwAOJ8j3S2ponLLhIE6qL96OuA847BENTg1i0vQjj3QKTWPsrR spmmF+Pp2mb1FoS03JmjsyjcWxjApdnqbUn+zyvmubeRPQ0Uc1sCzIltlUNq/jk84XUL R8prdBhya1Vhg4eq2KalSKSkEQSPwlUCwaXK2Tqc7iWK0kcYrI9YpqBvWhWn+Fwfj6oB q3WA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=NgCHMRozG68qKOBRYgpYxyK/sFLPgDiJhgX8q/nn0mU=; b=T0Ba8Gr44mDvsArpskmJMCkscB9QMvg03dfGCZLioXBOz5iZrJldn2ZZCNhdZNACLS pwkEb53Y28RP9QxRNkyLPoTNvJJD93LvR1w1/y1t/xb5/QMMiHmahA1V2tr37FReLRQC zKNSOAmBvXjDyIth9zgS4kUWXBUxK4QvgJ7aqC3zkv3aAsUj++xm1tWMB6SWZ+3HUWku WC41HZrMLvCmemmWLLmlcJq/AHCVENlzLPKmwQuqgLn0S66laxxq8nCVW+YUuAL2x1e9 CuTrsQQPWnS0xTqfDY3GXvG8fjP3rIwDwlC/YRescwNQpal0vwDdB0RGRzgvLa3v36I8 buUA== X-Gm-Message-State: AOAM533OFfnxko2mkYQQRuxQxzpAzP8AJXkoLYhFTAyXbRamBVqYhJ/T GRywaIDZ1FMUhZE6tQIoe+jqzleqZk8= X-Google-Smtp-Source: ABdhPJwP1lTY2h1mS3h4A1Sfv607nhrnTjFTD/0yPdugmEfqjPPJAuHO5DvSIWvhWzNp1Di5/yamBg== X-Received: by 2002:a1c:2946:0:b0:37b:d710:f565 with SMTP id p67-20020a1c2946000000b0037bd710f565mr3076534wmp.10.1645624059077; Wed, 23 Feb 2022 05:47:39 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:38 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:12 +0100 Message-Id: <20220223134722.354636-9-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-fixedpointnumbers): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index cedb11bf9b..07ac7172da 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1961,8 +1961,7 @@ (define-public julia-fixedpointnumbers (lambda* (#:key outputs #:allow-other-keys) (substitute* "test/fixed.jl" ;; A deprecation warning is not thrown - (("@test_logs.*:warn" all) (string-append "# " all))) - #t))))) + (("@test_logs.*:warn" all) (string-append "# " all)))))))) (propagated-inputs (list julia-compat)) (home-page "https://github.com/JuliaMath/FixedPointNumbers.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 10/19] gnu: julia-http: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:48:07 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408318150 (code B ref 54088); Wed, 23 Feb 2022 13:48:07 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:03 +0000 Received: from localhost ([127.0.0.1]:44339 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzv-0004iS-0j for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:03 -0500 Received: from mail-wm1-f48.google.com ([209.85.128.48]:38487) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzd-0004dz-7m for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:45 -0500 Received: by mail-wm1-f48.google.com with SMTP id m13-20020a7bca4d000000b00380e379bae2so1581630wml.3 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=lstaIFp/EkjjR3xBYQNYMjob4lc40lQzsew0K2So17M=; b=gPQG4xd1abxHf/kkdMknjEAiyO2G36J1bmomKsGVJvfJjVa4gCdqG6wfWBTaxDPQ7i mPkc5dPjwfY+uajp6fa/gmFG1mwTaN8l7gHFXWDRvk1hd63PTREek0XHleOK9lf8G+Lj Jav7QYMy2RO58qR6eV+uLzyvanXG9rnlDhIbIJ5HXyUB02xPqjG8rqxwQ4n30KQ+XrHJ nDZ0iJFHVyoW/3fcOJNVnoHe0Qe/xOugnIORta18YP0C6vZQfd5b5jOPzAEwZpnmoFt8 nxBtPqgT5eNZgcKyCV1vEmOnI7PAW+TRns1ihk6zL/BoxTwsZczLGQUZO1iwQ9HLwvp1 B6zw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=lstaIFp/EkjjR3xBYQNYMjob4lc40lQzsew0K2So17M=; b=UV/1wC7DvEuGS1JmnIqH+xFQF4P4d6gBhOhkANprEk83rCevduG0NMGWLh4mHubH6B VJ8QnTzNvFIAuESgyPZ0cEi5OPhTrQ9oVSg4O5MjPxahs1NAZWjyGPgee2lpoZkE65tO /iO0mS5adRkHsuaWmJ7IH06s6nDy2//2yhpFUTn1JxxN7O0keEch26VcUPft0njEGqjI X1QVPYAQKuPegR7/shwTOR3gLrEeQbBcDm5yYuPHl19pb7FrZzR97FKcS2aAx52mJTA9 hoEQ/IKptNiuJiQMhkbmvD1Au0Z9lFsKNvDpT3NBBj/aogthcq5f9zrs2te47k/oqN43 TvUA== X-Gm-Message-State: AOAM531AGKQLKqY9H4GV/Dtd7+lbs7vTC8Ula/E0fTWjbonBV42436fQ SPkAO8OYH+0AEPR9laueBfhrT3D2f+U= X-Google-Smtp-Source: ABdhPJzMQo9S4ellOX7Y16Viy6HJuzs6AAveHjAVfBfQpTO6886cKNl5MnNPdo/SBUGXL621ivzWrg== X-Received: by 2002:a05:600c:1e24:b0:37e:cd3d:feba with SMTP id ay36-20020a05600c1e2400b0037ecd3dfebamr7804667wmb.50.1645624059669; Wed, 23 Feb 2022 05:47:39 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:39 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:13 +0100 Message-Id: <20220223134722.354636-10-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-http): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 07ac7172da..06f780a6cf 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2372,8 +2372,7 @@ (define-public julia-http (("@testset.*Body - .*" all) (string-append all "return\n")) (("@testset.*Write to file.*" all) - (string-append all "return\n"))) - #t))))) + (string-append all "return\n")))))))) (propagated-inputs (list julia-inifile julia-mbedtls -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 01/19] gnu: julia-xyz: Adjust style using G-expressions. References: In-Reply-To: Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408918235 (code B ref 54088); Wed, 23 Feb 2022 13:49:01 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:09 +0000 Received: from localhost ([127.0.0.1]:44342 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzv-0004ig-Fp for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:09 -0500 Received: from mail-wm1-f42.google.com ([209.85.128.42]:35663) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzZ-0004b4-An for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:46 -0500 Received: by mail-wm1-f42.google.com with SMTP id v2-20020a7bcb42000000b0037b9d960079so1608888wmj.0 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Bw0eAfSQnGeYp4eK1VTwD/26IpzSP8akzze6+Tb8Na4=; b=YLHVHPre35nV+WCn9KunrC/f9ASmG7qQojC/YpPDZ4MD3hDUGiz8DERrl70M3jtgek QcKVN0WowJy/TktRKJ9y6MYXOzxRnmkXG04kbtbJ11nWji2e9cc2Zn0nQVd+D7EFz+pT arHvzIP+a5N39M3502HxX7pyhFHzYZGEUXv26kwtp41ATnl29uWOEzwxGB5A8FnVeIUV i8xMg4JCxpmWKSyTb7hZ0sW8aTwbnU1MJ/CWUx+1400jMaSKYOusv0KecBH+J+BCVqZp wVL8nXfOGpR14cLZLdAjBXI2OokyC9nFCV18aeJnclgoYTpT69Ht5SQQsMxmPGzBVNSe rZuw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Bw0eAfSQnGeYp4eK1VTwD/26IpzSP8akzze6+Tb8Na4=; b=QiYbSGmBa7mxJDmZfTx2pH8dhxpQbScBAkVOS1PkaIDRxlZA3xpNjxbiRzGNse3JZf tcW+4fn4teU7Y/ox7b7gaA7zxF4RbKLrBnDGeAtZBB3gJYH/1/2gtzzIJ6Eb9y+rfxyb +ELpJd4kMlfRENaxk7D85V1DGbGIM0c9dvDF+BbbfV2+tjFbW3271Ov96v1rbVFCgbsA sBToFu9H3U6HvhXSIZdJs7OoYP7+kXcPmjrV6UPyVyMTTIoMydB+fe7O73F7Bm2ZuwkN NGyV2sGNH9TJy2YLKGQ0ltuckjBJSAY/YaXsU3xB2C35Rca7tCQZTeWu9+QBjs5RPXzT LyFA== X-Gm-Message-State: AOAM531XtIVpRZMmDaQHyfgxoBhOKK7nXeN9dTG0FvgMHnLZYdvqTfSG yCiOSKk7+zYql4pfj3RAUili4MIW1bA= X-Google-Smtp-Source: ABdhPJzXM/JgbA7ridL14vK+sE2NpWCBJBAbyyZ/rNzveA32qgLMoEcdqDLZTlN6mJzv+A6FsXRxxw== X-Received: by 2002:a7b:c4ce:0:b0:37c:49b:403d with SMTP id g14-20020a7bc4ce000000b0037c049b403dmr7627104wmk.90.1645624054610; Wed, 23 Feb 2022 05:47:34 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.33 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:34 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:04 +0100 Message-Id: <20220223134722.354636-1-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm: Adjust style using G-expressions. --- gnu/packages/julia-xyz.scm | 1114 +++++++++++++++++++----------------- 1 file changed, 581 insertions(+), 533 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 4090d6d9c4..14c8c30751 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -139,7 +139,7 @@ (define-public julia-aqua (base32 "1g0kyzcdykgs247j72jpc2qqall696jwgb3hnn4cxmbi8bkf7wpk")))) (build-system julia-build-system) (arguments - `(#:parallel-tests? #f)) + (list #:parallel-tests? #f)) (home-page "https://github.com/JuliaTesting/Aqua.jl") (synopsis "Automated quality assurance for Julia packages") (description "@acronym{Aqua.jl, Auto QUality Assurance for Julia packages}, @@ -165,7 +165,7 @@ (define-public julia-arrayinterface ;; Expression: @inferred(ArrayInterface.size(Rnr)) === (StaticInt(4),) ;; Evaluated: (static(2),) === (static(4),) ;; Disable as stopgap. - `(#:tests? ,(not (target-x86-32?)))) + (list #:tests? (not (target-x86-32?)))) (propagated-inputs (list julia-ifelse julia-requires @@ -335,24 +335,25 @@ (define-public julia-benchmarktools (base32 "1xz3kdrphp4b158pg7dwkiry49phs2fjjpdvk1hjpww5ykxacks8")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-tests-i686 - (lambda _ - (substitute* "test/GroupsTests.jl" - (("@test sprint\\(show, g1\\)") - "@test_broken sprint(show, g1)") - (("@test sprint\\(show, g1; context = :boundto => 1\\)") - "@test_broken sprint(show, g1; context = :boundto => 1)") - (("@test sprint\\(show, g1; context = :limit => false\\)") - "@test_broken sprint(show, g1; context = :limit => false)") - (("@test @test_deprecated") "@test_broken")) - (substitute* "test/ExecutionTests.jl" - ;; Evaluated: 12 == 8 - (("@test @ballocated\\(Ref\\(1\\)\\)") - "@test_broken @ballocated(Ref(1))")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-tests-i686 + (lambda _ + (substitute* "test/GroupsTests.jl" + (("@test sprint\\(show, g1\\)") + "@test_broken sprint(show, g1)") + (("@test sprint\\(show, g1; context = :boundto => 1\\)") + "@test_broken sprint(show, g1; context = :boundto => 1)") + (("@test sprint\\(show, g1; context = :limit => false\\)") + "@test_broken sprint(show, g1; context = :limit => false)") + (("@test @test_deprecated") "@test_broken")) + (substitute* "test/ExecutionTests.jl" + ;; Evaluated: 12 == 8 + (("@test @ballocated\\(Ref\\(1\\)\\)") + "@test_broken @ballocated(Ref(1))"))))) + #~%standard-phases))) (propagated-inputs (list julia-json)) (home-page "https://github.com/JuliaCI/BenchmarkTools.jl") @@ -405,15 +406,16 @@ (define-public julia-bioalignments (base32 "1wf6qgsada59r2fykxfj9hcr635wl8maqxbd3w8qpa01k9glxa0k")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'skip-test - (lambda _ - ;; Test fails because an unexpected type representation from - ;; BioSequences. The aligned value is correct though. - (substitute* "test/runtests.jl" - (("@test sprint\\(show, aln\\)") - "@test_broken sprint(show, aln)"))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-test + (lambda _ + ;; Test fails because an unexpected type representation from + ;; BioSequences. The aligned value is correct though. + (substitute* "test/runtests.jl" + (("@test sprint\\(show, aln\\)") + "@test_broken sprint(show, aln)"))))))) (propagated-inputs (list julia-biogenerics julia-biosequences @@ -498,13 +500,14 @@ (define-public julia-biosymbols (base32 "1222rwdndi777lai8a6dwrh35i5rgmj75kcrhn8si72sxgz0syjm")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'adjust-tests - (lambda _ - (substitute* "test/runtests.jl" - (("\\@testset \\\"Range.*" all) - (string-append all " return\n")))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'adjust-tests + (lambda _ + (substitute* "test/runtests.jl" + (("\\@testset \\\"Range.*" all) + (string-append all " return\n")))))))) (propagated-inputs (list julia-automa)) (home-page "https://github.com/BioJulia/BioSymbols.jl") @@ -528,14 +531,15 @@ (define-public julia-blockarrays (base32 "1by26036fk9mawmcgqxpwizgbs398v9p6vrbsgg7h6llqn3q9iw1")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-64bit?) - '(%standard-phases) - '((modify-phases %standard-phases - (add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* "test/test_blockarrays.jl" - (("Int64") "Int32"))))))))) + (list + #:phases + (if (target-64bit?) + #~%standard-phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/test_blockarrays.jl" + (("Int64") "Int32")))))))) (propagated-inputs (list julia-arraylayouts julia-fillarrays)) @@ -627,9 +631,10 @@ (define-public julia-bufferedstreams ;; freeze, see ;; https://travis-ci.org/BioJulia/BufferedStreams.jl/jobs/491050182 (arguments - '(#:tests? #f - #:julia-package-name "BufferedStreams" - #:julia-package-uuid "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d")) + (list + #:tests? #f + #:julia-package-name "BufferedStreams" + #:julia-package-uuid "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d")) (propagated-inputs (list julia-compat)) (home-page "https://github.com/BioJulia/BufferedStreams.jl") @@ -815,14 +820,15 @@ (define-public julia-codeczlib (base32 "0xm603nylkwk4bzx66zv1g3syzrvn3jh9spdx7kvcvgszzyrrgh4")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each make-file-writable - (find-files out "\\.gz$")) - #t)))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'reset-gzip-timestamps 'make-files-writable + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (for-each make-file-writable + (find-files out "\\.gz$")) + #t)))))) (propagated-inputs (list julia-transcodingstreams julia-zlib-jll)) @@ -1015,27 +1021,28 @@ (define-public julia-configurations (base32 "1b23p0zk8dx2sf01cnw177mqci7qd81b9s32ixz9clsh0r0icl1b")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'fix-tests - (lambda _ - (substitute* "test/runtests.jl" - (("option.toml") "test/option.toml")))) - (add-after 'link-depot 'dont-use-exproniconlite - (lambda _ - (substitute* '("Project.toml" - "src/Configurations.jl" - "test/runtests.jl") - (("ExproniconLite") "Expronicon")) - (substitute* "Project.toml" - (("55351af7-c7e9-48d6-89ff-24e801d99491") - "6b7a57c9-7cc1-4fdf-b7f5-e857abae3636")))) - ,@(if (target-64bit?) - '() - '((add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* "test/runtests.jl" - (("Int64") "Int32"))))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'fix-tests + (lambda _ + (substitute* "test/runtests.jl" + (("option.toml") "test/option.toml")))) + (add-after 'link-depot 'dont-use-exproniconlite + (lambda _ + (substitute* '("Project.toml" + "src/Configurations.jl" + "test/runtests.jl") + (("ExproniconLite") "Expronicon")) + (substitute* "Project.toml" + (("55351af7-c7e9-48d6-89ff-24e801d99491") + "6b7a57c9-7cc1-4fdf-b7f5-e857abae3636")))) + #$@(if (target-64bit?) + '() + '((add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/runtests.jl" + (("Int64") "Int32"))))))))) (propagated-inputs (list julia-crayons julia-expronicon @@ -1160,21 +1167,22 @@ (define-public julia-dataframes (base32 "1bk0amrghgjrkyn1mm4ac23swwbgszl1d0qyl9137qj5zvv9dasp")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-failing-test - (lambda _ - ;; Tests with non-standard colors. - (substitute* "test/show.jl" - (("test (sprint\\(show, df, context=:color=>true)" _ test) - (string-append "test_nowarn " test))) - (substitute* "test/io.jl" - (("testset \\\"improved.*" all) - (string-append all "return\n"))) - (substitute* "test/join.jl" - (("test (levels\\(outerjoin\\(B)" _ test) - (string-append "test_nowarn " test))) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-failing-test + (lambda _ + ;; Tests with non-standard colors. + (substitute* "test/show.jl" + (("test (sprint\\(show, df, context=:color=>true)" _ test) + (string-append "test_nowarn " test))) + (substitute* "test/io.jl" + (("testset \\\"improved.*" all) + (string-append all "return\n"))) + (substitute* "test/join.jl" + (("test (levels\\(outerjoin\\(B)" _ test) + (string-append "test_nowarn " test))) + #t))))) (propagated-inputs (list julia-dataapi julia-invertedindices @@ -1220,18 +1228,19 @@ (define-public julia-datastructures julia-orderedcollections)) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-test-i686 - (lambda _ - ;; The evaluation returns the correct value, - ;; Evaluated: "Accumulator(1 => 3, 3 => 4)" - ;; but, for some reasons, is considered as failed. - (substitute* "test/test_accumulator.jl" - (("@test sprint\\(show,Accumulator\\(1 => 3, 3 => 4\\)\\)") - "@test_broken sprint(show, Accumulator(1 => 3, 3 => 4))")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + ;; The evaluation returns the correct value, + ;; Evaluated: "Accumulator(1 => 3, 3 => 4)" + ;; but, for some reasons, is considered as failed. + (substitute* "test/test_accumulator.jl" + (("@test sprint\\(show,Accumulator\\(1 => 3, 3 => 4\\)\\)") + "@test_broken sprint(show, Accumulator(1 => 3, 3 => 4))"))))) + #~%standard-phases))) (home-page "https://github.com/JuliaCollections/DataStructures.jl") (synopsis "Julia module providing different data structures") (description "This package implements a variety of data structures, @@ -1275,17 +1284,18 @@ (define-public julia-datavalues (base32 "15j3hrqq6nazn533bfsvg32xznacbzsl303j1qs48av59ppnvhhv")))) (build-system julia-build-system) (arguments - `(#:tests? #f ; Tests need upgrading with newer Julia version. - #:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-known-failing-tests - (lambda _ - ;; See upstream report: - ;; https://github.com/queryverse/DataValues.jl/issues/83 - (substitute* "test/array/test_reduce.jl" - ((".*DataValue\\(mapreduce.*") "") - ((".*DataValue\\(method\\(f.*") "")) - #t))))) + (list + #:tests? #f ; Tests need upgrading with newer Julia version. + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-known-failing-tests + (lambda _ + ;; See upstream report: + ;; https://github.com/queryverse/DataValues.jl/issues/83 + (substitute* "test/array/test_reduce.jl" + ((".*DataValue\\(mapreduce.*") "") + ((".*DataValue\\(method\\(f.*") "")) + #t))))) (propagated-inputs (list julia-datavalueinterfaces)) (home-page "https://github.com/queryverse/DataValues.jl") @@ -1354,17 +1364,18 @@ (define-public julia-distances (base32 "1yqd9wg4z15k42mrp4y14j2x0sq7yrjhm5zpqklrw6w6j1c367ig")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-flakey-tests - (lambda _ - ;; Some combination of these tests fail nondeterministically - ;; each of the times this package is built. - (substitute* "test/test_dists.jl" - (("test dyz ≥") "test_nowarn dyz ≥") - (("test dist\\(y, x") "test_nowarn dist(y, x") - (("test dist\\(z, x") "test_nowarn dist(z, x") - (("test dist\\(z, y") "test_nowarn dist(z, y"))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-flakey-tests + (lambda _ + ;; Some combination of these tests fail nondeterministically + ;; each of the times this package is built. + (substitute* "test/test_dists.jl" + (("test dyz ≥") "test_nowarn dyz ≥") + (("test dist\\(y, x") "test_nowarn dist(y, x") + (("test dist\\(z, x") "test_nowarn dist(z, x") + (("test dist\\(z, y") "test_nowarn dist(z, y"))))))) (propagated-inputs (list julia-statsapi)) (native-inputs @@ -1393,7 +1404,7 @@ (define-public julia-docstringextensions (base32 "0fy4kfnfacyfmlly6nqxn77dk2gqw80b69zb4m1i0i39zv3cpqfb")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Tests try to read SSL certificates. + (list #:tests? #f)) ; Tests try to read SSL certificates. (home-page "https://juliadocs.github.io/DocStringExtensions.jl/latest/") (synopsis "Extensions for Julia's docsystem") (description "This package provides a collection of useful extensions for @@ -1420,22 +1431,23 @@ (define-public julia-documenter (base32 "00ai3c24i3fkn5plmavampcxm0ijhwk0v5cn9xwm7rvbjnnvaaam")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'patch-source - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "src/Deps.jl" - (("pip install") - (string-append (search-input-file inputs "bin/pip") - " install"))))) - (add-after 'link-depot 'remove-javascript-downloads - (lambda _ - (substitute* "src/Writers/HTMLWriter.jl" - (("cdnjs.cloudflare.com") "example.com")) - ;; Removing the javascript downloads causes these tests fail. - (substitute* "test/examples/tests.jl" - ((".*Main\\.examples_html_doc.*") "") - ((".*Main\\.examples_html_mathjax3_doc.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'patch-source + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/Deps.jl" + (("pip install") + (string-append (search-input-file inputs "bin/pip") + " install"))))) + (add-after 'link-depot 'remove-javascript-downloads + (lambda _ + (substitute* "src/Writers/HTMLWriter.jl" + (("cdnjs.cloudflare.com") "example.com")) + ;; Removing the javascript downloads causes these tests fail. + (substitute* "test/examples/tests.jl" + ((".*Main\\.examples_html_doc.*") "") + ((".*Main\\.examples_html_mathjax3_doc.*") ""))))))) (propagated-inputs (list julia-ansicoloredprinters julia-docstringextensions @@ -1505,7 +1517,7 @@ (define-public julia-documentertools (base32 "05p57p8xlkn42m1lv9gq4hl96vp7hpj19d51p828ai1rbpcpi3a6")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Tests require network. + (list #:tests? #f)) ; Tests require network. (inputs ;; We don't want to propagate the bootstrap version. ;; Cycle with Documenter.jl in later versions. @@ -1604,13 +1616,14 @@ (define-public julia-dualnumbers (base32 "05vr5wbzqpchnb96b3pmn67x196mbfnkv7r9bdlz3gm56if4awk5")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'adjust-test-suite - (lambda _ - (substitute* "test/runtests.jl" - ;; Seems to not play nicely with SpecialFunctions - ((".*isempty.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'adjust-test-suite + (lambda _ + (substitute* "test/runtests.jl" + ;; Seems to not play nicely with SpecialFunctions + ((".*isempty.*") ""))))))) (propagated-inputs (list julia-calculus julia-nanmath @@ -1638,13 +1651,14 @@ (define-public julia-ellipsisnotation (base32 "0py46kxl702r8pw3v7x4cqllf7yc91b0dr7vb60xh2qi7d6y3jc7")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'adjust-test-suite - (lambda _ - (substitute* "test/runtests.jl" - ;; Seems to not play nicely with Julia-1.6. - ((".*basic.jl.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'adjust-test-suite + (lambda _ + (substitute* "test/runtests.jl" + ;; Seems to not play nicely with Julia-1.6. + ((".*basic.jl.*") ""))))))) (propagated-inputs (list julia-arrayinterface)) (home-page "https://github.com/ChrisRackauckas/EllipsisNotation.jl") @@ -1690,13 +1704,14 @@ (define-public julia-expronicon (base32 "0h8aaynqlxrkn8575k5vqmhzil4vvxchhf0bcxa6zwawp558gj2y")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-network-tests - (lambda _ - (substitute* "test/runtests.jl" - ;; This test tries to access the Julia package registry. - ((".*expand\\.jl.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-network-tests + (lambda _ + (substitute* "test/runtests.jl" + ;; This test tries to access the Julia package registry. + ((".*expand\\.jl.*") ""))))))) (propagated-inputs (list julia-mlstyle)) (native-inputs @@ -1768,26 +1783,27 @@ (define-public julia-fileio (base32 "1b18x43i737g5q41n9818xbnc2pgd98q1m6yw3h29yri0clg4gfx")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (delete 'reset-gzip-timestamps) - (add-after 'link-depot 'skip-network-tests - (lambda _ - ;; These tests try to download audio/video files. - (substitute* "test/query.jl" - (("testset.*(MP4|OGG|MATROSKA).*" all) - (string-append all "return\n"))) - (substitute* "test/loadsave.jl" - (("testset.*CSVFiles.*" all) - (string-append all "return\n"))) - ;; This test tries to download a Julia package. - (substitute* "test/error_handling.jl" - (("testset.*Not installed.*" all) - (string-append all "return\n"))) - ;; This test tries to write to the store. - ;; (Error says can't find User 0) - (substitute* "test/runtests.jl" - ((".*test_mimesave.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (delete 'reset-gzip-timestamps) + (add-after 'link-depot 'skip-network-tests + (lambda _ + ;; These tests try to download audio/video files. + (substitute* "test/query.jl" + (("testset.*(MP4|OGG|MATROSKA).*" all) + (string-append all "return\n"))) + (substitute* "test/loadsave.jl" + (("testset.*CSVFiles.*" all) + (string-append all "return\n"))) + ;; This test tries to download a Julia package. + (substitute* "test/error_handling.jl" + (("testset.*Not installed.*" all) + (string-append all "return\n"))) + ;; This test tries to write to the store. + ;; (Error says can't find User 0) + (substitute* "test/runtests.jl" + ((".*test_mimesave.*") ""))))))) (propagated-inputs (list julia-requires)) (native-inputs @@ -1818,7 +1834,7 @@ (define-public julia-filepathsbase (base32 "136wm4ik6isrdanmpi4gdr1qw0qhr15i925qzjxbawk5hnyzwng9")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with JLSO.jl + (list #:tests? #f)) ; Cycle with JLSO.jl (home-page "https://github.com/rofinn/FilePathsBase.jl") (synopsis "Filesystem path types in Julia") (description "@code{FilePathsBase.jl} provides a type based approach to @@ -1864,14 +1880,15 @@ (define-public julia-finitediff (base32 "105f6r0hq97n9mxf1nacmz94dpca66vzqj5p3zh4h0brshmggqnq")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'check 'pre-check - (lambda _ - ;; We don't want to run all the tests; the Downstream tests - ;; try to download the package registry. - (setenv "GROUP" "Core") - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'pre-check + (lambda _ + ;; We don't want to run all the tests; the Downstream tests + ;; try to download the package registry. + (setenv "GROUP" "Core") + #t))))) (propagated-inputs (list julia-arrayinterface julia-requires @@ -1903,16 +1920,17 @@ (define-public julia-finitedifferences (base32 "09nsf9cgk49yrvprflnhd9h5rrgs280rgj8sad3csghxdx6jqk5c")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-test-i686 - (lambda _ - ;; Machine Precision incorrectly handled - (substitute* "test/methods.jl" - (("@test central_fdm\\(15, 5, adapt=2\\)\\(exp, 1.0\\)") - "@test_broken central_fdm(15, 5, adapt=2)(exp, 1.0)")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + ;; Machine Precision incorrectly handled + (substitute* "test/methods.jl" + (("@test central_fdm\\(15, 5, adapt=2\\)\\(exp, 1.0\\)") + "@test_broken central_fdm(15, 5, adapt=2)(exp, 1.0)"))))) + #~%standard-phases))) (inputs (list julia-benchmarktools)) (propagated-inputs @@ -1940,14 +1958,15 @@ (define-public julia-fixedpointnumbers (base32 "0j0n40n04q9sk68wh9jq90m6c67k4ws02k41djjzkrqmpzv4rcdi")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'disable-failing-test - (lambda* (#:key outputs #:allow-other-keys) - (substitute* "test/fixed.jl" - ;; A deprecation warning is not thrown - (("@test_logs.*:warn" all) (string-append "# " all))) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'disable-failing-test + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "test/fixed.jl" + ;; A deprecation warning is not thrown + (("@test_logs.*:warn" all) (string-append "# " all))) + #t))))) (propagated-inputs (list julia-compat)) (home-page "https://github.com/JuliaMath/FixedPointNumbers.jl") @@ -2000,7 +2019,7 @@ (define-public julia-forwarddiff ;; Expression: dual_isapprox(FDNUM ^ PRIMAL, exp(PRIMAL * log(FDNUM))) ;; ERROR: LoadError: LoadError: There was an error during testing ;; Disable as stopgap. - `(#:tests? ,(not (target-x86-32?)))) + (list #:tests? (not (target-x86-32?)))) (inputs ;required for tests (list julia-calculus julia-difftests)) @@ -2034,13 +2053,14 @@ (define-public julia-functionwrappers (base32 "02jilpjr7px6138dx2w7ixricvfgsxqdk84d9dgviranibhnjcxa")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'adjust-tests - (lambda _ - (substitute* "test/runtests.jl" - (("testset \\\"Abstract.*" all) - (string-append all "return\n")))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'adjust-tests + (lambda _ + (substitute* "test/runtests.jl" + (("testset \\\"Abstract.*" all) + (string-append all "return\n")))))))) (home-page "https://github.com/yuyichao/FunctionWrappers.jl") (synopsis "Type stable and efficient wrapper of arbitrary functions") (description "This package provides a type stable and efficient wrapper of @@ -2087,12 +2107,13 @@ (define-public julia-fuzzycompletions (base32 "07sv88c472n6w4x7diy952igbcfm1s104ysnnvprld83312siw06")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-failing-test - (lambda _ - (substitute* "test/runtests.jl" - ((".*RPLE.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-failing-test + (lambda _ + (substitute* "test/runtests.jl" + ((".*RPLE.*") ""))))))) (home-page "https://github.com/JunoLab/FuzzyCompletions.jl") (synopsis "Fuzzy completion provider for Julia") (description @@ -2114,12 +2135,13 @@ (define-public julia-genericlinearalgebra (base32 "0ndwypa397z3pwzdgc3s9plaqlqf63g3d4px5pvym5psgr6lnm3l")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'adjust-test-suite - (lambda _ - (substitute* "test/runtests.jl" - ((".*lapack.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'adjust-test-suite + (lambda _ + (substitute* "test/runtests.jl" + ((".*lapack.*") ""))))))) (native-inputs (list julia-quaternions)) (home-page "https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl") @@ -2145,20 +2167,21 @@ (define-public julia-genericschur (base32 "12x6lxzxm91y3k6s9dam46dq5hrby5sr0gy0fdfnp0xhjzdy2j0d")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'adjust-test-suite - (lambda _ - (substitute* "test/complex.jl" - ;; expected Array{Int32,1}, got a value of type Array{Int64,1} - (("A = _example") "#A = _example") - (("schurtest\\(A,20\\)") "")) - (substitute* "test/runtests.jl" - ;; Test errors relating to liblapack.so - ((".*complex\\.jl.*") "") - ((".*real\\.jl.*") "") - ;; GenericSVD is deprecated upstream - ((".*gordschur\\.jl.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'adjust-test-suite + (lambda _ + (substitute* "test/complex.jl" + ;; expected Array{Int32,1}, got a value of type Array{Int64,1} + (("A = _example") "#A = _example") + (("schurtest\\(A,20\\)") "")) + (substitute* "test/runtests.jl" + ;; Test errors relating to liblapack.so + ((".*complex\\.jl.*") "") + ((".*real\\.jl.*") "") + ;; GenericSVD is deprecated upstream + ((".*gordschur\\.jl.*") ""))))))) (home-page "https://github.com/RalphAS/GenericSchur.jl") (synopsis "Schur decomposition of matrices with generic element types") (description "The Schur decomposition is the workhorse for eigensystem @@ -2182,24 +2205,25 @@ (define-public julia-geometrybasics (base32 "057j3hjpli3q5b98cqkpi4p10x2k9pyksrz62hjmv1kb5qzdvhsj")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'remove-earcut - (lambda _ - (substitute* '("Project.toml" - "src/GeometryBasics.jl") - ((".*EarCut.*") "")))) - (add-after 'link-depot 'skip-incompatible-test - (lambda _ - (substitute* "test/runtests.jl" - (("@testset.*MetaT and heterogeneous data.*" all) - (string-append all "return\n"))))) - ,@(if (target-64bit?) - '() - '((add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* "test/runtests.jl" - (("Int64") "Int32"))))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'remove-earcut + (lambda _ + (substitute* '("Project.toml" + "src/GeometryBasics.jl") + ((".*EarCut.*") "")))) + (add-after 'link-depot 'skip-incompatible-test + (lambda _ + (substitute* "test/runtests.jl" + (("@testset.*MetaT and heterogeneous data.*" all) + (string-append all "return\n"))))) + #$@(if (target-64bit?) + '() + '((add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/runtests.jl" + (("Int64") "Int32"))))))))) (propagated-inputs (list julia-itertools julia-staticarrays @@ -2325,35 +2349,36 @@ (define-public julia-http (base32 "1jsyk3mhnwj4h19cxclx26igdqdrw51fd3k1hgav0nm67dy4cxyk")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'install 'disable-network-tests - (lambda _ - (substitute* "test/runtests.jl" - (("\"async.jl") "# \"async.jl") - (("\"client.jl") "# \"client.jl")) - (substitute* "test/aws4.jl" - (("@testset.*HTTP.request with AWS authentication.*" all) - (string-append all "return\n"))) - (substitute* "test/insert_layers.jl" - (("@testset.*Inserted final layer runs handler.*" all) - (string-append all "return\n"))) - (substitute* "test/multipart.jl" - (("@testset \"Setting of Content-Type.*" all) - (string-append all "return\n")) - (("@testset \"Deprecation of .*" all) - (string-append all "return\n"))) - (substitute* "test/websockets.jl" - (("@testset.*External Host.*" all) - (string-append all "return\n"))) - (substitute* "test/messages.jl" - (("@testset.*Read methods.*" all) - (string-append all "return\n")) - (("@testset.*Body - .*" all) - (string-append all "return\n")) - (("@testset.*Write to file.*" all) - (string-append all "return\n"))) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'disable-network-tests + (lambda _ + (substitute* "test/runtests.jl" + (("\"async.jl") "# \"async.jl") + (("\"client.jl") "# \"client.jl")) + (substitute* "test/aws4.jl" + (("@testset.*HTTP.request with AWS authentication.*" all) + (string-append all "return\n"))) + (substitute* "test/insert_layers.jl" + (("@testset.*Inserted final layer runs handler.*" all) + (string-append all "return\n"))) + (substitute* "test/multipart.jl" + (("@testset \"Setting of Content-Type.*" all) + (string-append all "return\n")) + (("@testset \"Deprecation of .*" all) + (string-append all "return\n"))) + (substitute* "test/websockets.jl" + (("@testset.*External Host.*" all) + (string-append all "return\n"))) + (substitute* "test/messages.jl" + (("@testset.*Read methods.*" all) + (string-append all "return\n")) + (("@testset.*Body - .*" all) + (string-append all "return\n")) + (("@testset.*Write to file.*" all) + (string-append all "return\n"))) + #t))))) (propagated-inputs (list julia-inifile julia-mbedtls @@ -2457,7 +2482,7 @@ (define-public julia-imagebase (base32 "1n63f2zs6ail9pcl7rzgv3l0z8v1idjsaza3zgvgy7iacxsdpcj2")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ImageMagick.jl. + (list #:tests? #f)) ; Cycle with ImageMagick.jl. (propagated-inputs (list julia-imagecore julia-reexport)) @@ -2488,7 +2513,7 @@ (define-public julia-imagecore (base32 "0h9m3pl3wic1jrgaqkdifz24cya5vxd3m6qdmm37pxg2y2ii2vcq")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ImageMagick.jl. + (list #:tests? #f)) ; Cycle with ImageMagick.jl. (propagated-inputs (list julia-abstractffts julia-colors @@ -2530,7 +2555,7 @@ (define-public julia-imageinterminal (base32 "0bbpzi7bv8jdiggq1wmcn67vnf96qagvwg0fk95s125wy5980xsl")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ReferenceTests.jl. + (list #:tests? #f)) ; Cycle with ReferenceTests.jl. (propagated-inputs (list julia-crayons julia-imagebase @@ -2568,18 +2593,19 @@ (define-public julia-imagemagick (base32 "05vzv4jsj3l9pv6yrix28hlw7wnag0mqdfjwv8shn4x71hcfxl1p")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-failing-test - (lambda _ - ;; These tests try to download from the imagemagick.org - (substitute* "test/runtests.jl" - ((".*readremote\\.jl.*") "")) - ;; Tests with the color gray are hard. - (substitute* "test/constructed_images.jl" - (("test (b == aa)" _ test) (string-append "test_nowarn " test)) - (("test (B == map)" _ test) (string-append "test_nowarn " test))) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-failing-test + (lambda _ + ;; These tests try to download from the imagemagick.org + (substitute* "test/runtests.jl" + ((".*readremote\\.jl.*") "")) + ;; Tests with the color gray are hard. + (substitute* "test/constructed_images.jl" + (("test (b == aa)" _ test) (string-append "test_nowarn " test)) + (("test (B == map)" _ test) (string-append "test_nowarn " test))) + #t))))) (propagated-inputs (list julia-fileio julia-imagecore @@ -2646,7 +2672,7 @@ (define-public julia-imageshow (base32 "00wq3ab8y6nyhxwc5lpz9dnslsmcr1vg3cjdkh7wb7k6a8bw98mh")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; cycle with ImageMagick.jl. + (list #:tests? #f)) ; cycle with ImageMagick.jl. (propagated-inputs (list julia-fileio julia-imagebase @@ -2681,7 +2707,7 @@ (define-public julia-imagetransformations (base32 "0i8gw68hljshsy9wdl5mrpbb31irhmayqyglsxi7jwm88iy9pxhm")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ImageMagick.jl. + (list #:tests? #f)) ; Cycle with ImageMagick.jl. (propagated-inputs (list julia-axisalgorithms julia-colorvectorspace @@ -2718,8 +2744,9 @@ (define-public julia-indexablebitvectors (build-system julia-build-system) ;; Package without Project.toml (arguments - '(#:julia-package-name "IndexableBitVectors" - #:julia-package-uuid "1cb3b9ac-1ffd-5777-9e6b-a3d42300664d")) + (list + #:julia-package-name "IndexableBitVectors" + #:julia-package-uuid "1cb3b9ac-1ffd-5777-9e6b-a3d42300664d")) (home-page "https://github.com/BioJulia/IndexableBitVectors.jl") (synopsis "Bit vectors operations with extremely fast speed") (description "This package exports following operations over bit vectors @@ -2798,14 +2825,15 @@ (define-public julia-infinity (base32 "1941lwvrdjnrynigzixxin3chpg1ba6xplvcwc89x0f6z658hwmm")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'remove-timezones.jl - (lambda _ - (substitute* "test/runtests.jl" - (("using TimeZones.*") "") - ((".*infextendedtime.*") "")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'remove-timezones.jl + (lambda _ + (substitute* "test/runtests.jl" + (("using TimeZones.*") "") + ((".*infextendedtime.*") "")) + #t))))) (propagated-inputs (list julia-requires)) (native-inputs @@ -2851,12 +2879,13 @@ (define-public julia-interpolations (base32 "1236c20k388qlh7k74mhf7hkbn0vf7ss8b1rgh1a6aj0234ayfnc")))) (build-system julia-build-system) (arguments - `(#:parallel-tests? #f - ;; XXXX: Unexpected failures for i686, e.g., - ;; Got exception outside of a @test - ;; OverflowError: 96908232 * 106943408 overflowed for type Int32 - ;; Disable as stopgap. - #:tests? ,(not (target-x86-32?)))) + (list + #:parallel-tests? #f + ;; XXXX: Unexpected failures for i686, e.g., + ;; Got exception outside of a @test + ;; OverflowError: 96908232 * 106943408 overflowed for type Int32 + ;; Disable as stopgap. + #:tests? (not (target-x86-32?)))) (propagated-inputs (list julia-axisalgorithms julia-offsetarrays @@ -2891,19 +2920,20 @@ (define-public julia-intervalsets (base32 "0gsz89cd3iygbl5qr389k9vwpg7w1nk0s90g25nsmk34y9hifxag")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-test-i686 - (lambda _ - (substitute* "test/runtests.jl" - ;; For some reason, the output is correct but the test - ;; is considered as failed: - ;; Expression: duration(ClosedInterval(A, B)) ≡ 60 - ;; Evaluated: 60 ≡ 60 - (("@test duration\\(ClosedInterval") - "@test_broken duration(ClosedInterval")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + (substitute* "test/runtests.jl" + ;; For some reason, the output is correct but the test + ;; is considered as failed: + ;; Expression: duration(ClosedInterval(A, B)) ≡ 60 + ;; Evaluated: 60 ≡ 60 + (("@test duration\\(ClosedInterval") + "@test_broken duration(ClosedInterval"))))) + #~%standard-phases))) (propagated-inputs (list julia-ellipsisnotation)) (native-inputs @@ -3183,14 +3213,15 @@ (define-public julia-lazyarrays (base32 "17rhlrmgfvdw8w62pg32ikr9j4xy2ylr7mx7ar0hnpzryv929rp5")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-64bit?) - '(%standard-phases) - '((modify-phases %standard-phases - (add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* "test/multests.jl" - (("Int64") "Int32"))))))))) + (list + #:phases + (if (target-64bit?) + #~%standard-phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/multests.jl" + (("Int64") "Int32")))))))) (propagated-inputs (list julia-arraylayouts julia-fillarrays @@ -3221,19 +3252,20 @@ (define-public julia-linesearches (base32 "1qc4la07w6s1xhcyd0hvbnpr31zc1a2ssgyybc8biv5m00g0dnr0")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-optim-tests - (lambda _ - (substitute* "test/examples.jl" - ;; Prevent a cycle with Optim.jl. - (("^ SKIPFILE.*") "") - (("^ #SKIPFILE") " SKIPFILE")))) - (add-after 'link-depot 'skip-doublefloats-tests - (lambda _ - (substitute* "test/runtests.jl" - (("using DoubleFloats.*") "") - ((".*arbitrary_precision\\.jl.*") ""))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-optim-tests + (lambda _ + (substitute* "test/examples.jl" + ;; Prevent a cycle with Optim.jl. + (("^ SKIPFILE.*") "") + (("^ #SKIPFILE") " SKIPFILE")))) + (add-after 'link-depot 'skip-doublefloats-tests + (lambda _ + (substitute* "test/runtests.jl" + (("using DoubleFloats.*") "") + ((".*arbitrary_precision\\.jl.*") ""))))))) (propagated-inputs (list julia-nlsolversbase julia-nanmath @@ -3311,14 +3343,15 @@ (define-public julia-mappedarrays (base32 "0l5adird8m1cmnsxwhzi5hcr7q9bm1rf7a6018zc7kcn2yxdshy3")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-64bit?) - '(%standard-phases) - '((modify-phases %standard-phases - (add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* "test/runtests.jl" - (("Int64") "Int32"))))))))) + (list + #:phases + (if (target-64bit?) + #~%standard-phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/runtests.jl" + (("Int64") "Int32")))))))) (propagated-inputs (list julia-fixedpointnumbers)) (native-inputs @@ -3350,16 +3383,17 @@ (define-public julia-matrixfactorizations (base32 "15zvcv2l4iqmjpnqjyx2kry7a85p652nbjy9pj3wq0piksqcz4jb")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-failing-test - (lambda _ - ;; Tests with math functions are hard. - (substitute* "test/test_ul.jl" - (("@test @inferred\\(logdet") "@test @test_nowarn(logdet") - ;; Also skip the REPL test. - (("test String") "test_nowarn String")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-failing-test + (lambda _ + ;; Tests with math functions are hard. + (substitute* "test/test_ul.jl" + (("@test @inferred\\(logdet") "@test @test_nowarn(logdet") + ;; Also skip the REPL test. + (("test String") "test_nowarn String")) + #t))))) (propagated-inputs (list julia-arraylayouts)) (home-page "https://github.com/JuliaMatrices/MatrixFactorizations.jl") @@ -3385,14 +3419,15 @@ (define-public julia-mbedtls (base32 "0zjzf2r57l24n3k0gcqkvx3izwn5827iv9ak0lqix0aa5967wvfb")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'install 'disable-network-tests - ;; Tries to connect to httpbin.org - (lambda _ - (substitute* "test/runtests.jl" - (("testhost =") "return #")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'disable-network-tests + ;; Tries to connect to httpbin.org + (lambda _ + (substitute* "test/runtests.jl" + (("testhost =") "return #")) + #t))))) (propagated-inputs (list julia-mbedtls-jll)) (home-page "https://github.com/JuliaLang/MbedTLS.jl") @@ -3470,21 +3505,22 @@ (define-public julia-media (build-system julia-build-system) ;; Package without Project.toml (arguments - '(#:julia-package-name "Media" - #:julia-package-uuid "e89f7d12-3494-54d1-8411-f7d8b9ae1f27" - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'create-package-toml - (lambda* (#:key julia-package-name julia-package-uuid #:allow-other-keys) - (with-output-to-file "Project.toml" - (lambda _ - (format #t - "name = \"~a\"~@ + (list + #:julia-package-name "Media" + #:julia-package-uuid "e89f7d12-3494-54d1-8411-f7d8b9ae1f27" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'create-package-toml + (lambda* (#:key julia-package-name julia-package-uuid #:allow-other-keys) + (with-output-to-file "Project.toml" + (lambda _ + (format #t + "name = \"~a\"~@ uuid = \"~a\"~@ [deps]~@ MacroTools = \"1914dd2f-81c6-5fcd-8719-6d5c9610ff09\"~%" - julia-package-name - julia-package-uuid)))))))) + julia-package-name + julia-package-uuid)))))))) (propagated-inputs (list julia-macrotools)) (home-page "https://github.com/JunoLab/Media.jl") @@ -3599,7 +3635,7 @@ (define-public julia-mosaicviews (base32 "04fgxghyb7n2ji76xkb1r1fjhzsdbgmp5wsfyyn3yjcsdqbyp8pz")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ImageCore.jl + (list #:tests? #f)) ; Cycle with ImageCore.jl (propagated-inputs (list julia-mappedarrays julia-paddedviews @@ -3651,21 +3687,22 @@ (define-public julia-mutablearithmetics (base32 "1isyj8h4nx96cr6892d154v8pw1nhr7mjyz5bd6ffr2mkzb2bq4f")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-test-i686 - (lambda _ - (substitute* "test/utilities.jl" - ;; Non-deterministic returned value, e.g., - ;; Expression: n == @allocated(f()) - ;; Evaluated: 240 == 120 - ;; and for some other values: - ;; Got correct result, please change to @test - ;; so @test_broken is not enough. - (("@test n == @allocated f\\(\\)") - " ")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + (substitute* "test/utilities.jl" + ;; Non-deterministic returned value, e.g., + ;; Expression: n == @allocated(f()) + ;; Evaluated: 240 == 120 + ;; and for some other values: + ;; Got correct result, please change to @test + ;; so @test_broken is not enough. + (("@test n == @allocated f\\(\\)") + " "))))) + #~%standard-phases))) (propagated-inputs (list julia-offsetarrays)) (home-page "https://github.com/jump-dev/MutableArithmetics.jl") @@ -3742,14 +3779,15 @@ (define-public julia-nnlib (base32 "16vn5w5274kcywh1xp0zqjk5q10xrk125aznz5av6wifwrvghk8s")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-cuda-tests - (lambda _ - (substitute* "test/runtests.jl" - (("using CUDA") "") - (("&& CUDA\\.functional\\(\\)") "")) - (setenv "NNLIB_TEST_CUDA" "false")))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-cuda-tests + (lambda _ + (substitute* "test/runtests.jl" + (("using CUDA") "") + (("&& CUDA\\.functional\\(\\)") "")) + (setenv "NNLIB_TEST_CUDA" "false")))))) (propagated-inputs (list julia-adapt julia-chainrulescore @@ -3827,8 +3865,9 @@ (define-public julia-optimtestproblems (base32 "10h47x5ws42pkqjccimaz0yxfvz41w0yazq6inamfk4lg5g2g3d9")))) (build-system julia-build-system) (arguments - `(#:julia-package-name "OptimTestProblems" - #:julia-package-uuid "cec144fc-5a64-5bc6-99fb-dde8f63e154c")) + (list + #:julia-package-name "OptimTestProblems" + #:julia-package-uuid "cec144fc-5a64-5bc6-99fb-dde8f63e154c")) (home-page "https://github.com/JuliaNLSolvers/OptimTestProblems.jl") (synopsis "Collection of optimization test problems") (description "The purpose of this package is to provide test problems for @@ -3874,7 +3913,7 @@ (define-public julia-offsetarrays (propagated-inputs (list julia-adapt)) ;; CatIndices depends on OffsetArrays, introducing a recursive dependency - (arguments '(#:tests? #f)) + (arguments (list #:tests? #f)) (home-page "https://juliaarrays.github.io/OffsetArrays.jl/stable/") (synopsis "Fortran-like arrays with arbitrary, zero or negative indices") (description "@code{OffsetArrays.jl} provides Julia users with arrays that @@ -4091,7 +4130,7 @@ (define-public julia-preferences (base32 "1cail43iqzbi6m9v6981rhz47zf2lcvhs5ds5gdqvc9nx5frghxq")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Tests try to mkdir /.julia + (list #:tests? #f)) ; Tests try to mkdir /.julia (home-page "https://github.com/JuliaPackaging/Preferences.jl") (synopsis "Store configuration switches to TOML files") (description "The @code{Preferences} package provides an integrated way for @@ -4116,13 +4155,14 @@ (define-public julia-prettytables (base32 "1d1sd87kkwbar3l608h0adzws42cwdrmp1idxx7an6mfqcsdrijw")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-color-tests - (lambda _ - (substitute* "test/text_backend.jl" - ((".*colors\\.jl.*") "")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-color-tests + (lambda _ + (substitute* "test/text_backend.jl" + ((".*colors\\.jl.*") "")) + #t))))) (propagated-inputs (list julia-crayons julia-formatting @@ -4150,49 +4190,50 @@ (define-public julia-pycall "1fj5d1ihnhnm0pl4hbx6hcd2bpdyhm8jiaqah2axsbd069j70saf")))) (build-system julia-build-system) (arguments - `(#:imported-modules ((guix build python-build-system) + (list + #:imported-modules `((guix build python-build-system) ,@%julia-build-system-modules) - #:modules ((guix build julia-build-system) + #:modules '((guix build julia-build-system) (guix build utils) ((guix build python-build-system) #:prefix python:)) - #:phases - (modify-phases %standard-phases - (add-after 'link-depot 'remove-conda - (lambda _ - (substitute* "Project.toml" - ((".*Conda.*") "")) - (substitute* (list "src/PyCall.jl" - "test/runtests.jl") - (("import Conda") "")) - (substitute* "deps/depsutils.jl" - (("Conda.PYTHONDIR") "\"/\"")) - #t)) - (add-after 'link-depot 'set-python - (lambda* (#:key inputs outputs #:allow-other-keys) - (let ((python (assoc-ref inputs "python"))) - (setenv "PYCALL_JL_RUNTIME_PYTHON" - (string-append python "/bin/python3")) - (with-output-to-file "deps/deps.jl" - (lambda _ - (format #t - "const python = \"~a/bin/python3\"~@ + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'remove-conda + (lambda _ + (substitute* "Project.toml" + ((".*Conda.*") "")) + (substitute* (list "src/PyCall.jl" + "test/runtests.jl") + (("import Conda") "")) + (substitute* "deps/depsutils.jl" + (("Conda.PYTHONDIR") "\"/\"")) + #t)) + (add-after 'link-depot 'set-python + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((python (assoc-ref inputs "python"))) + (setenv "PYCALL_JL_RUNTIME_PYTHON" + (string-append python "/bin/python3")) + (with-output-to-file "deps/deps.jl" + (lambda _ + (format #t + "const python = \"~a/bin/python3\"~@ const pyprogramname = \"~a/bin/python3\"~@ const libpython = \"~a/lib/libpython~a.so.1.0\"~@ const PYTHONHOME = \"~a\"~@ const pyversion_build = v\"~a\"~@ const conda = false~%" - python - python - python - (python:python-version python) - python - ,(package-version python)))) - #t))) - (add-before 'check 'pre-check - (lambda _ - (setenv "CI" "true") - (setenv "JULIA_PKGEVAL" "true") - #t))))) + python + python + python + (python:python-version python) + python + #$(package-version python)))) + #t))) + (add-before 'check 'pre-check + (lambda _ + (setenv "CI" "true") + (setenv "JULIA_PKGEVAL" "true") + #t))))) (propagated-inputs (list julia-macrotools julia-versionparsing)) @@ -4278,15 +4319,16 @@ (define-public julia-quadmath (base32 "051biw4b9zni7cmh2f1yzifp1v8wazlfxrdz4p44lyd1wba6379w")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'hardcode-libmath-location - (lambda* (#:key inputs #:allow-other-keys) - (let ((gcclib (assoc-ref inputs "gcc:lib"))) - (substitute* "src/Quadmath.jl" - (("libgcc_s.so.1" lib) (string-append gcclib "/lib/" lib)) - (("libquadmath.so.0" lib) (string-append gcclib "/lib/" lib))) - #t)))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'hardcode-libmath-location + (lambda* (#:key inputs #:allow-other-keys) + (let ((gcclib (assoc-ref inputs "gcc:lib"))) + (substitute* "src/Quadmath.jl" + (("libgcc_s.so.1" lib) (string-append gcclib "/lib/" lib)) + (("libquadmath.so.0" lib) (string-append gcclib "/lib/" lib))) + #t)))))) (propagated-inputs (list julia-requires)) (inputs @@ -4427,7 +4469,7 @@ (define-public julia-recipespipeline (base32 "0zq4bzxvq36zr0va6iip3x97mgq5b4fwza8avszx1ryfqm3lg1f7")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with Plots.jl. + (list #:tests? #f)) ; Cycle with Plots.jl. (propagated-inputs (list julia-nanmath julia-plotutils @@ -4457,7 +4499,7 @@ (define-public julia-recursivearraytools (base32 "0vx8ndxrii53na7jsc2lki47wfpi77rn3y2r6xhiysx1qwr14msf")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with OrdinaryDiffEq.jl. + (list #:tests? #f)) ; Cycle with OrdinaryDiffEq.jl. (propagated-inputs (list julia-arrayinterface julia-chainrulescore @@ -4512,7 +4554,7 @@ (define-public julia-referencetests (base32 "0mm6bjhs8a21pippww6b08b5frmnb9m6k8xrszrwq9zhc879zpc9")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Cycle with ImageCore.jl through ImageMagick.jl. + (list #:tests? #f)) ; Cycle with ImageCore.jl through ImageMagick.jl. (propagated-inputs (list julia-deepdiffs julia-distances @@ -4550,7 +4592,7 @@ (define-public julia-requires (base32 "03hyfy7c0ma45b0y756j76awi3az2ii4bz4s8cxm3xw9yy1z7b01")))) (build-system julia-build-system) (arguments - `(#:parallel-tests? #f)) + (list #:parallel-tests? #f)) (inputs ;required for test (list julia-example)) (propagated-inputs @@ -4582,7 +4624,7 @@ (define-public julia-reversediff ;; Expression: hash(tr_float, hash(1)) === hash(v_float, hash(1)) ;; MethodError: no method matching decompose(::ReverseDiff.TrackedReal{Float64, Float64, Nothing}) ;; Disable as stopgap. - `(#:tests? ,(not (target-x86-32?)))) + (list #:tests? (not (target-x86-32?)))) (propagated-inputs (list julia-diffresults julia-diffrules @@ -4680,8 +4722,9 @@ (define-public julia-safetestsets (base32 "1fb1dfdmiw2ggx60hf70954xlps0r48fcb3k3dvxynlz7ylphp96")))) (build-system julia-build-system) (arguments - `(#:julia-package-name "SafeTestsets" - #:julia-package-uuid "1bc83da4-3b8d-516f-aca4-4fe02f6d838f")) + (list + #:julia-package-name "SafeTestsets" + #:julia-package-uuid "1bc83da4-3b8d-516f-aca4-4fe02f6d838f")) (native-inputs (list julia-staticarrays)) (home-page "https://github.com/YingboMa/SafeTestsets.jl") @@ -4751,7 +4794,7 @@ (define-public julia-scratch "09xni9rrrax17fxjz04j1b48mk9ffww5rcbagh66jklr89mrkqhx")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Test suite tries to access the Julia package registry. + (list #:tests? #f)) ; Test suite tries to access the Julia package registry. (home-page "https://github.com/JuliaPackaging/Scratch.jl") (synopsis "Scratch spaces for all your persistent mutable data needs") (description "This repository implements the scratch spaces API for @@ -4872,7 +4915,7 @@ (define-public julia-sortingalgorithms (base32 "173x77a80xnh99viqa3r7rgdaksvxaw8xyfqw09gwvp4p2zrxivb")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; cycle with StatsBase.jl + (list #:tests? #f)) ; cycle with StatsBase.jl (propagated-inputs (list julia-datastructures)) ;(native-inputs @@ -4976,13 +5019,14 @@ (define-public julia-stackviews (base32 "1fwiaxdpx1z9dli3jr8kyraych0jbdiny3qklynf0r13px25r6i7")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'link-depot 'skip-doctest - (lambda _ - (substitute* "test/runtests.jl" - ((".*doctest.*") "")) - #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'link-depot 'skip-doctest + (lambda _ + (substitute* "test/runtests.jl" + ((".*doctest.*") "")) + #t))))) (propagated-inputs (list julia-offsetarrays)) (native-inputs @@ -5141,14 +5185,15 @@ (define-public julia-stringencodings (base32 "1qwc5ll68ng80b5921ww6fvifxbsmiylakfgsbsjbzg7lzyb5i67")))) (build-system julia-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'skip-failing-test - (lambda _ - ;; https://github.com/JuliaStrings/StringEncodings.jl/issues/49 - (substitute* "test/runtests.jl" - (("\"SHIFT_JIS\", \"SHIFT_JISX0213\"") - " "))))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-failing-test + (lambda _ + ;; https://github.com/JuliaStrings/StringEncodings.jl/issues/49 + (substitute* "test/runtests.jl" + (("\"SHIFT_JIS\", \"SHIFT_JISX0213\"") + " "))))))) (propagated-inputs (list julia-libiconv-jll)) (home-page "https://github.com/JuliaStrings/StringEncodings.jl") @@ -5173,15 +5218,16 @@ (define-public julia-structarrays (base32 "0rjcpyjwzg70n87q5r9c5i1qzigavncslxssm3rk5a3y549py56v")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-64bit?) - '(%standard-phases) - '((modify-phases %standard-phases - (add-after 'unpack 'fix-tests-int32-i686 - (lambda _ - (substitute* '("src/utils.jl" - "test/runtests.jl") - (("Int64") "Int32"))))))))) + (list + #:phases + (if (target-64bit?) + #~%standard-phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* '("src/utils.jl" + "test/runtests.jl") + (("Int64") "Int32")))))))) (propagated-inputs (list julia-dataapi julia-staticarrays @@ -5379,7 +5425,7 @@ (define-public julia-testimages (base32 "1lnfsmx33qspyvxw0cykwh7il8xykjpcw1080sisn95ngz2qhdmy")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; cycle with ImageMagick.jl + (list #:tests? #f)) ; cycle with ImageMagick.jl (propagated-inputs (list julia-axisarrays julia-colortypes @@ -5448,7 +5494,7 @@ (define-public julia-transcodingstreams (base32 "1w3klii293caqiclfh28jggv7f53xclm9fr6xmw38brwrn1hjb48")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ; Circular dependency with various codecs. + (list #:tests? #f)) ; Circular dependency with various codecs. (home-page "https://github.com/JuliaIO/TranscodingStreams.jl") (synopsis "Fast I/O transcoding data streams") (description "This package provides tools for transcoding data streams @@ -5543,17 +5589,18 @@ (define-public julia-uris (base32 "0kp4hg3kknkm2smlcizqfd33l9x4vkahc2714gnbjp39fj285b92")))) (build-system julia-build-system) (arguments - '(#:julia-package-name "URIs" ;required to run tests - #:julia-package-uuid "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" - #:phases - (modify-phases %standard-phases - (add-before 'check 'change-dir - ;; Tests must be run from the testdir - (lambda* (#:key source outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (chdir - (string-append out "/share/julia/loadpath/URIs/test"))) - #t))))) + (list + #:julia-package-name "URIs" ;required to run tests + #:julia-package-uuid "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'change-dir + ;; Tests must be run from the testdir + (lambda* (#:key source outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (chdir + (string-append out "/share/julia/loadpath/URIs/test"))) + #t))))) ;; required for tests (inputs (list julia-json)) (home-page "https://github.com/JuliaWeb/URIs.jl") @@ -5578,7 +5625,7 @@ (define-public julia-unitful (base32 "10qwscd15dnmvx116dwvg99m7kmwgmj5ahdkq7psiq48lcc554gq")))) (build-system julia-build-system) (arguments - `(#:parallel-tests? #f)) + (list #:parallel-tests? #f)) (propagated-inputs (list julia-constructionbase)) (home-page "https://painterqubits.github.io/Unitful.jl/stable/") @@ -5650,15 +5697,16 @@ (define-public julia-woodburymatrices (base32 "04yykivi8zrbryxlmb0p5xa6lma8iq22r5s863117dnnqj5gaffd")))) (build-system julia-build-system) (arguments - `(#:phases - ,@(if (target-x86-32?) - '((modify-phases %standard-phases - (add-after 'unpack 'remove-failing-test-i686 - (lambda _ - (substitute* "test/woodbury.jl" - (("@test logdet\\(W\\)") - "@test_broken logdet(W)")))))) - '(%standard-phases)))) + (list + #:phases + (if (target-x86-32?) + #~(modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + (substitute* "test/woodbury.jl" + (("@test logdet\\(W\\)") + "@test_broken logdet(W)"))))) + #~%standard-phases))) (home-page "https://github.com/timholy/WoodburyMatrices.jl") (synopsis "Support for the Woodbury matrix identity for Julia") (description "This package provides support for the Woodbury matrix identity @@ -5753,7 +5801,7 @@ (define-public julia-zygote (base32 "1cx66sp30s34ln6p0fpqk1ggjxfxg2gp8791zz3cl85dmk4dl14b")))) (build-system julia-build-system) (arguments - `(#:tests? #f)) ;require CUDA, not packaged yet + (list #:tests? #f)) ;require CUDA, not packaged yet (propagated-inputs (list julia-abstractffts julia-chainrules base-commit: 6cae4e97927dd215bc5af84e7c4d938a26fb40c1 -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 11/19] gnu: julia-imagemagick: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562408918242 (code B ref 54088); Wed, 23 Feb 2022 13:49:02 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:09 +0000 Received: from localhost ([127.0.0.1]:44350 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs01-0004k4-Dd for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:09 -0500 Received: from mail-wr1-f43.google.com ([209.85.221.43]:42562) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzd-0004e1-SU for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:46 -0500 Received: by mail-wr1-f43.google.com with SMTP id d17so4878804wrc.9 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=Rezy8AEYAZ38zsAF3ifKVxQ1kyFyZsqqB0gYSnrbDXU=; b=cJ7Jz48HevTnsRb93XJAe+x0AF2MJtj9LalEPBjm4MpSgrbsVa3TSUGv4gfNoBltNp bldMkiidnLL6jxamMRtrJZvjR5nOmSVUgLVZC93t41UX+WZFZdq0i3zOfTZVW6k1lrnh Nfx6w10uTT69QSJWy5aY+7/McYzWAsdl2dzewo4vSdpdBgMsoRaudCqa+5Z51C8GkqEX v8P4FBJ8p8TnQvJy5/Nz3XJVLCAwV8toABpMgZ8vwxbvoHgagKf/quN0VkdKLAk4CQDK GfN72jkTpfKNXh5eBOtP0EhPHydeiQRyTYLX0VfHyLWLfQk7leXqn5ZnindQ1riNe350 Xu1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=Rezy8AEYAZ38zsAF3ifKVxQ1kyFyZsqqB0gYSnrbDXU=; b=SkLzZHaNqcxzv4rtyRt66q9ydm2Tlv5ScH2O0WL6RK9cEKtzwi9cJBgYZiM8URgx3o ZxGda+Vvm5PMP4d0ykEx8PuF65tZPa0BTF2J3Y3ukkn4CnZlBogYzD/Esc1gwk3YYju4 JuS4DZANrNpbYNu7+tAVm7uqFzUl960eKy8qo5cmQ5riMQgiwEsI+BSmXwTk/NNooGnH Sn/UA1PUxYM1xZcqOrqIMvcNEbKJvDHkq1l1VGoyY7PJYWIEylAgvcw6GE0GRnt6SjYV UcSmqIIGddgMJpuAn7hW7Sef+XAREXhKkEU3yVmIzs3m87SrlEVOZtyzK9Ev9Y8rOuo0 Mxxg== X-Gm-Message-State: AOAM533QE3mtwoHhXByY/YTIn4EFdcM3pWd//vtew6hm5q9YLHWPko9h yIX9cUeljkCHk/7O6Lk7I/WvUx9tkQQ= X-Google-Smtp-Source: ABdhPJwKO6929z3kFkeeRxCli+HOWsgdt5C4oKka/bE2BB9hC6sWgRWpvrxeOz/8UhaUmqzbRZSKTw== X-Received: by 2002:a05:6000:1acc:b0:1e8:6df6:bb54 with SMTP id i12-20020a0560001acc00b001e86df6bb54mr23103323wry.295.1645624060235; Wed, 23 Feb 2022 05:47:40 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.39 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:39 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:14 +0100 Message-Id: <20220223134722.354636-11-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-imagemagick): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 06f780a6cf..653191cc43 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2598,8 +2598,7 @@ (define-public julia-imagemagick ;; Tests with the color gray are hard. (substitute* "test/constructed_images.jl" (("test (b == aa)" _ test) (string-append "test_nowarn " test)) - (("test (B == map)" _ test) (string-append "test_nowarn " test))) - #t))))) + (("test (B == map)" _ test) (string-append "test_nowarn " test)))))))) (propagated-inputs (list julia-fileio julia-imagecore -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 12/19] gnu: julia-infinity: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409018250 (code B ref 54088); Wed, 23 Feb 2022 13:49:02 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:10 +0000 Received: from localhost ([127.0.0.1]:44352 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs01-0004kB-NB for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:09 -0500 Received: from mail-wr1-f49.google.com ([209.85.221.49]:46007) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrze-0004e2-DE for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:47 -0500 Received: by mail-wr1-f49.google.com with SMTP id p9so39719425wra.12 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ujGdPwoGQA0RiAtdraxo5RXwm4mwgHZ6ZZG0YHdjSsU=; b=epEpbZk4SYbJlcUYl1qW74mEjkMT481dQpLfmoAN1dlIrGMsA3dCAcdTFRI8uvZV5t vHBbhcIz4zYUJvjDK8wIJYFx9mPgmCg4PMFKmLexMFF191+aGzujUk4zQwva9ARGzoED n/r/7RO91MQhEway5FeNcnOde+zjTkRUTAxG3K8ZpUwY+KNtjKLhQGMqm5NEYM3Vb5Lr iPZRgIcfw2HoIKAMuQXVGbB1CApNpskH1O6SFqP6vFhdYdtI5579jTgsskkXgkNECJJo 2e91A/tZkxkUbapC6QrTf0yPhKmphHux6GOkye4q5IfQJmtnOcNpsIZvpshtz4etMiUO uuUA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ujGdPwoGQA0RiAtdraxo5RXwm4mwgHZ6ZZG0YHdjSsU=; b=spD8NOQMerNzRfAFQYtwRZILTH+RkiFX97sVvSTt3WEBzxA+AmI4PRipT0bZAufRy8 BbeNo4GATAchxmRZU3jqeka0oyMKcfmDvtZr7JnkDtU9NKTY8OM+2h2xHGdeBEvjSzu2 b0EO4HrMlomqz5p79bqYiSKfvvjTrrGoPhseygayFNTlXu1R7JHo8E7tzR+ps0c9JMSq Gu4+1R6Sd0TA9LSfYMdDmbWZBjXjC1i5rwO5eC3Wul1APwrSXY/fMD6dDmHv7hjR/YXG MbgcHbjf3ro1jmSDUTAn2yEwmjUtQgGsqH6F1ACKpjMpC8QYzBZ34+R1hIeRMKGyFlW5 jXKQ== X-Gm-Message-State: AOAM5319q/DjN5J+IuexAlKsW724ZbtnI9v7k4R0V7LBJx/eBrRgXw6q kFp9K47bBASk0okrr34i5WDShvaNgtk= X-Google-Smtp-Source: ABdhPJzwJl2AA1sSCc6ZT87wG9JVCTs7Di9Y2mKp1AQbswhL5YV4ES2s8HMX5wRFu7SKFdv2tbo17g== X-Received: by 2002:a05:6000:18aa:b0:1e8:5dda:c340 with SMTP id b10-20020a05600018aa00b001e85ddac340mr22734409wri.677.1645624060796; Wed, 23 Feb 2022 05:47:40 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:40 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:15 +0100 Message-Id: <20220223134722.354636-12-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-infinity): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 653191cc43..ebb6d2f2af 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2825,8 +2825,7 @@ (define-public julia-infinity (lambda _ (substitute* "test/runtests.jl" (("using TimeZones.*") "") - ((".*infextendedtime.*") "")) - #t))))) + ((".*infextendedtime.*") ""))))))) (propagated-inputs (list julia-requires)) (native-inputs -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 13/19] gnu: julia-matrixfactorizations: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409018259 (code B ref 54088); Wed, 23 Feb 2022 13:49:02 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:10 +0000 Received: from localhost ([127.0.0.1]:44354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs02-0004kJ-0r for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:10 -0500 Received: from mail-wr1-f46.google.com ([209.85.221.46]:40499) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrze-0004e4-W3 for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:47 -0500 Received: by mail-wr1-f46.google.com with SMTP id f17so14889290wrh.7 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=fIcFz5jlHVDT/6uY1r/BmBXiOrdZeYQ5T2en6u9I/4g=; b=HzF8/fFFdEVLDLxXYvig6I/tsqsQPzcPynULBbS7L686HJ1+5gfGa4Njhiv8uRBSXs vQ6FQaNCrl9uIDu7GpFaFgczXgkLjztLg7C82+vxcnQ4NezqcCEtWbHyi0wMKf8DBvll RwJguma0p1ivQ0RxY11SrCQERRJHwBSGWy5TDNfBNCflD9be2EsN1sPARcgQGElWzuau ERSfmsBlpcOLY8qUYYAjWSyYvjssIQ+lOYt6sQqHjqKkkTKGiPBIp5v36CeLv0KHNFPQ fnTBJM7pEmMyje32hKLZdFQy4ulSLJ6KQ9uvcCh0RXmDvUIXj6+zcFfndIvuVoYsq2CH 3kiw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=fIcFz5jlHVDT/6uY1r/BmBXiOrdZeYQ5T2en6u9I/4g=; b=VZpLRKdtTDyB8pfYiYSU9bDLaHdMm90NlzS/5DlUNBJySN0bs9HM0gITEcSyyDyMB5 CV2X3LScMPDLd+x9mo9X1VrnHTNBWOfUvc63W6bcBy8luqBc++cceVhdHy3a3MltFO2X D96u3iKPT1yrNfJNjownE2LFCS20AFEAHKePaw9RZ0cedyvvwoNNZ356IbpZ38E6kule YQttJcX+CiHPPNYkvTRc4CkOYD5yya/7m9NBWdBvjrhJFujt0g7xOxOoiHgAT9EERH4g zmvkZkSTSs2RzLcIgg3bAqzpGVTJa/z3AiVRFDiuyYiXvW3vgTG9tJl36VTCQgirxEcQ 0gVQ== X-Gm-Message-State: AOAM531w/xYscjiVvNuNp9JiJZSqw/qRKQm9LJRjA+f7LcgJS/8f+rul PaQ7VeXEV7UclNcj5AoCgZpvwhj636c= X-Google-Smtp-Source: ABdhPJwH88JPPraNPX2ACB4ylv09MjKFG7hAF/W6l2FjxeiXWwzzfPnCCs3bfh8H7V74XmwrfElnHg== X-Received: by 2002:adf:fd48:0:b0:1e4:99d8:48bd with SMTP id h8-20020adffd48000000b001e499d848bdmr22803121wrs.497.1645624061366; Wed, 23 Feb 2022 05:47:41 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:41 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:16 +0100 Message-Id: <20220223134722.354636-13-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-matrixfactorizations): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index ebb6d2f2af..8d67e31ea2 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3384,8 +3384,7 @@ (define-public julia-matrixfactorizations (substitute* "test/test_ul.jl" (("@test @inferred\\(logdet") "@test @test_nowarn(logdet") ;; Also skip the REPL test. - (("test String") "test_nowarn String")) - #t))))) + (("test String") "test_nowarn String"))))))) (propagated-inputs (list julia-arraylayouts)) (home-page "https://github.com/JuliaMatrices/MatrixFactorizations.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 14/19] gnu: julia-mbedtls: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409018268 (code B ref 54088); Wed, 23 Feb 2022 13:49:03 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:10 +0000 Received: from localhost ([127.0.0.1]:44356 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs02-0004kR-Dl for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:10 -0500 Received: from mail-wr1-f52.google.com ([209.85.221.52]:39624) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzf-0004e5-LC for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:48 -0500 Received: by mail-wr1-f52.google.com with SMTP id s13so11200953wrb.6 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=fTas0SJiyOtqdaKI0o6I9DYR02vERt61GMnvPIn9cMM=; b=VoMxThO+p7RnvRbTDERN9MP71AyH82MMI9zwWofEmPmlJ2sE12hf9GAtRX2QEA+5GT OERgzZQ5Gmuw6oZ5gCGvq1vq4ZwG3jaI93DTl12llY6/D9kc+nGo3eRNMWywwwfSsHvi WjDlgoo6+NiYJ2BuBguMZyjqH2CTsZgxOxmXTeZbyHttKYTCZk/s1xav6OA0xkzCLtS5 GJWxcaXO8FzYuE1OqEiteeZIHVE0/sl+8Jgi3m1bAsFYHDDoSQY+nWifsloj3+YHr5IV Rz6hcy0HbSabWjR9lkRQyLP4WEadcm6cOz0cygkLPgCGcawcuTsI8Fln23X2J3AWSANv LaJg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=fTas0SJiyOtqdaKI0o6I9DYR02vERt61GMnvPIn9cMM=; b=V6ILjg6i1SECsM+5wrTFAyejNzVZQ0oD8PFrv3Y5kB5SUU6rhWir4E1KyTnH9KgFhJ HgZ55fWHkp0H7DADbGoMlK+2I/yCWYnmRuDCfdo4XeOCXNZ4wOOxZaxxTj4tDTtoxsOH 90IcCcJ21AKjBckvJTNeAbwyTQDAcVMal1zdQJkmu35PZAukWfA/6v/BUqfZwhKWSyyX Hte1kEb1/QPSEgRjyEG88fUey+yzLyGj9DZ9LQBwzy6iiyo42I52s7kZO0pLmFiMuskX oKciw6+j19HzFmvsLyKvAzrImbR1hImqUaO/C7y6e190JNm9zFXwVhVu047i9n7IYR1R 1AQA== X-Gm-Message-State: AOAM532wzh6jTHbtn3m/VGWpCFkA6wvho9pDpt79mccFsi0nTbDRrVLX xIDR9PzsJuIkG47VQ4s0d2tJzk33fHA= X-Google-Smtp-Source: ABdhPJx70uSdRxsM7sOBJ+SchsOXJG9tovtBZOstrY1Q5CGFeU4GWvVdsR4APBuD3yLNHT3/b/l3IQ== X-Received: by 2002:a05:6000:1787:b0:1e7:aeac:eb00 with SMTP id e7-20020a056000178700b001e7aeaceb00mr23903330wrg.141.1645624062022; Wed, 23 Feb 2022 05:47:42 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:41 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:17 +0100 Message-Id: <20220223134722.354636-14-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-mbedtls): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 8d67e31ea2..55a97b6aa1 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3417,8 +3417,7 @@ (define-public julia-mbedtls ;; Tries to connect to httpbin.org (lambda _ (substitute* "test/runtests.jl" - (("testhost =") "return #")) - #t))))) + (("testhost =") "return #"))))))) (propagated-inputs (list julia-mbedtls-jll)) (home-page "https://github.com/JuliaLang/MbedTLS.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 15/19] gnu: julia-prettytables: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409118276 (code B ref 54088); Wed, 23 Feb 2022 13:49:03 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:11 +0000 Received: from localhost ([127.0.0.1]:44358 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs02-0004kb-QG for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:11 -0500 Received: from mail-wr1-f53.google.com ([209.85.221.53]:41942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzg-0004eE-4K for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:48 -0500 Received: by mail-wr1-f53.google.com with SMTP id x15so5343739wrg.8 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=g7t/6/pWJd83JcfFi2acBMZUrjEDeVM1ECwt9Du9Xjs=; b=YiMQGBtts+To0Vd9kZUeBcFa1n+zl983L4pEkYz9fzu38mHp6NpTILukCPCavqtWXb WGtAx4hpHb7E2fZ+ikc+zMVt5aTiCFCRLqRawjMpd+T6pCd9UjpEXT3UJaVJHmm1/2Qm Gk9PzEIKuvcgKWjil2zLooVDRPK2d/KNeuyPJ2OGUnpv9HzC/aJLRiVvvPtKzKfzT1ZU kWubqgmKG7cjoACiYgkBv/yjyO1bTSeAe+nqRYcHgYrOC6ggDrwwBKC0bG2s/uTIvFsL FwX677ffP0k5xv02GZBWLisya2v0RPYMztJ46axDrVFex8UjQiYa0EA/Eesp/1MtRs9b 0qSw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=g7t/6/pWJd83JcfFi2acBMZUrjEDeVM1ECwt9Du9Xjs=; b=iWAgKBTGyml5iCSOF4H0nKkHJppNZsat3s+NvWoJPhQy9jJY0HlR/1V1HEoEqicUT/ /XgKzUA0XCWMuQusZSfvPG7E1qtozpE5pTJ/R1+QNR3EVAlpt1rGU0K42VMihDOBi39c IXoiIJA2eV2kiQIpbPhUesWFcqebciRVoCZlkDmjy7EkhZAaYKC+mglepvV9D/XMVKr0 otF4foZpyONc1G2p/gmLGoK3p1gPYvse97J5e023cRW+OUyajs05R1qpyD30RHX4XC67 YfOwkuBQMBEJ8wcbD/g/W6YzqEir/GnhWPM+F9ScsoQMj0AKR+NsILKcttAmCjXtzQuP xY7Q== X-Gm-Message-State: AOAM531MRpgALhayDPkOZ1J3e2qDMJGSqo23qjBwQVdjqTo8CIuQVY/o XF1PAZ/tRZ8/C8i2qOdTB0WQgruFWWk= X-Google-Smtp-Source: ABdhPJyonVwGWMYAcKDmVoAh8Yh+14ZNyYoga1YdWdYVNWbxcP5HuZIV/n01xmAPfpZ7PeJKtjTDAA== X-Received: by 2002:adf:fd4d:0:b0:1ea:9109:dae6 with SMTP id h13-20020adffd4d000000b001ea9109dae6mr6363787wrs.293.1645624062611; Wed, 23 Feb 2022 05:47:42 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:42 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:18 +0100 Message-Id: <20220223134722.354636-15-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-prettytables): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 55a97b6aa1..10d311247c 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -4140,8 +4140,7 @@ (define-public julia-prettytables (add-after 'link-depot 'skip-color-tests (lambda _ (substitute* "test/text_backend.jl" - ((".*colors\\.jl.*") "")) - #t))))) + ((".*colors\\.jl.*") ""))))))) (propagated-inputs (list julia-crayons julia-formatting -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 16/19] gnu: julia-pycall: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409118285 (code B ref 54088); Wed, 23 Feb 2022 13:49:04 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:11 +0000 Received: from localhost ([127.0.0.1]:44360 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs03-0004kj-5k for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:11 -0500 Received: from mail-wm1-f52.google.com ([209.85.128.52]:37443) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzg-0004eO-Rg for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:49 -0500 Received: by mail-wm1-f52.google.com with SMTP id l1-20020a7bcf01000000b0037f881182a8so1586819wmg.2 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=EUPH15Mcjnzp7OSJI640KhoM6Thr8F78Ze2/WYtukD4=; b=iqBA95N0C0gkVcR3d9lXsGs2hLFlj1vH97RgibBWjOMiYAgwXFABwZiEtsQ7xAMZLD 67VYhBInHvXhVnLuPxGwLFo/vV6Z5vx1C69YGWdoRxEbxU8rnZ6MgilJUSNvSICFVA0A +vayqKvLxT1uy/flBqZ2QzOa9xRl0w5iESPvTtHI7tekkr6bjRTH2JEexZ2/AQwYw/Zc /NVC1fwQWTnTsflZ159mZfDTBeo1VomQfGGtkz12XNYkY7TG7jl7UM6R9/MBLFKayIBN mLa53K89x9GJETY3HySVO13tpVkGM95uIYhxeFLUr9WAEAqG65dSvkIumNKXWuVEddhb m1pQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=EUPH15Mcjnzp7OSJI640KhoM6Thr8F78Ze2/WYtukD4=; b=KcedWlZ3dR0hVStZ1A8EpuHgLpAg/JLQ6oMWA1qjPTAUf9aAKhJDhV6O7KTyNIKR22 Dw8Vdkqv36fTWt7v/gIj8JTLslb9tD9RXwhwVoJMV20mQWrHfN7TPPdaNKWQXkJmIzJv OOI8Qd5imp6vFaHvOlUPVzIQk5KpGoiZ5viq03aTgI2oI0NeBj4QXCWhEUFMohKuzgeb UTpg+DXapLp/F8rRFwhig+PJTstpg0Yjcquosf8lzGQY1hf3OA1kaeKciKRuGChFLort KfKDE4V6xBhnMhxTugf+OoGxU4G4zlHtGiVC98lVqCLs6ojy+Oi2qk7WuuJYQXBVfI9E HPTA== X-Gm-Message-State: AOAM533x/V3T989OujzW6+qoK4ImX2RTpUR4ZGvntG7HHknl8lmIqVnU nE0fJJqml1svW9qr2LkCWEMPOP6CIu4= X-Google-Smtp-Source: ABdhPJyrO+/KL67vYJa5sSGlEpkeabju++AcyY5R3FwLda+mT7YdDnyYGmOKBxHkF0wE9e3UTflYXg== X-Received: by 2002:a1c:ed18:0:b0:37e:7a1d:a507 with SMTP id l24-20020a1ced18000000b0037e7a1da507mr7518165wmh.187.1645624063152; Wed, 23 Feb 2022 05:47:43 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:42 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:19 +0100 Message-Id: <20220223134722.354636-16-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-pycall): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 10d311247c..e95c51a167 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -4184,8 +4184,7 @@ (define-public julia-pycall "test/runtests.jl") (("import Conda") "")) (substitute* "deps/depsutils.jl" - (("Conda.PYTHONDIR") "\"/\"")) - #t)) + (("Conda.PYTHONDIR") "\"/\"")))) (add-after 'link-depot 'set-python (lambda* (#:key inputs outputs #:allow-other-keys) (let ((python (assoc-ref inputs "python"))) @@ -4205,13 +4204,11 @@ (define-public julia-pycall python (python:python-version python) python - #$(package-version python)))) - #t))) + #$(package-version python))))))) (add-before 'check 'pre-check (lambda _ (setenv "CI" "true") - (setenv "JULIA_PKGEVAL" "true") - #t))))) + (setenv "JULIA_PKGEVAL" "true")))))) (propagated-inputs (list julia-macrotools julia-versionparsing)) -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 17/19] gnu: julia-quadmath: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409218293 (code B ref 54088); Wed, 23 Feb 2022 13:49:04 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:12 +0000 Received: from localhost ([127.0.0.1]:44362 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs03-0004kr-Gy for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:11 -0500 Received: from mail-wm1-f42.google.com ([209.85.128.42]:46016) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzh-0004ef-AI for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:49 -0500 Received: by mail-wm1-f42.google.com with SMTP id az26-20020a05600c601a00b0037c078db59cso4383906wmb.4 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ZfRlQ0qUdnt38tjqcW9KztoYyaO9cn77xm+oTUePWeU=; b=Cu0s/mh+tGPALewZD3M4H53tI5x0keJO8Z0JZmlWQwJ+UHagyWZR5qwEmckjgkPsqA Bqy45r5+Maa++Kx3HowwzfEx1NTHZaEt+utVU6o4InlO8Lmoz/MO30fByxMQFyE9pTCZ dgO36qONxjwM8znPgKsJZRp4++Kidb172XX0n9l6rzTGnXIOgdxmSfUrh5hXWOXUOPuN YZ334RdtPd5kFEvgW5i/37GRXpF6PPM5LMfvBuM3McPwpAg5ebl8ffM7OBvh3XC0PM2a s+r48rJunJHty/j6SSWbA3bGivch3SEx9uUZcdHCTi39x2ddAPW5MiCZAqrYmq8nfYHl bPRA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ZfRlQ0qUdnt38tjqcW9KztoYyaO9cn77xm+oTUePWeU=; b=YTJdrXdR7FaBQnhCA8Yql2KRP7FlnF11hEeyyDcrYclGUSx59yoWkuABRiuY1XfUXq 58NBm802PM/6/55tzWMxkjmyjwWZ+h5L0bmkLvsv3PlvqMVsWo9GpP+CYlWRjm/kb48X ix8S8wchlyy3RG5Yj5u/iGC+4NTrsiXGaB9/cljRh+Vajz/kX5c0iz2Qas2lHEju0exh t7mKhHGHWv1qLqrM0riOY5sQP0J9DKVj1S4N74A7qtZ43PpTTJ8EQhFvs7qfZRc1qUaG ekRPV0VJEsaNMWrIRnzh46LZjRsI16MdWNiO2Y0mM5yNQhEVV0oBtswX6NnCu50OmL3T Awpg== X-Gm-Message-State: AOAM533NL0BAVAlsgo2flHydpbiYp8uI/tpePUf87RudjBj9GZMVZ87O hsvNlIRDd6SD6OUROJWTLbpZvlvHkyw= X-Google-Smtp-Source: ABdhPJwvkD8SVpupMc/HCHoepMSYG6CL4QoLIU5roZXBkVcFvIKYdS58n8hlxjqvsl7TQ4AEaHzE5g== X-Received: by 2002:a1c:7712:0:b0:37c:9455:b3fa with SMTP id t18-20020a1c7712000000b0037c9455b3famr7747907wmi.188.1645624063724; Wed, 23 Feb 2022 05:47:43 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:43 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:20 +0100 Message-Id: <20220223134722.354636-17-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-quadmath): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index e95c51a167..6510b8acf4 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -4302,8 +4302,7 @@ (define-public julia-quadmath (let ((gcclib (assoc-ref inputs "gcc:lib"))) (substitute* "src/Quadmath.jl" (("libgcc_s.so.1" lib) (string-append gcclib "/lib/" lib)) - (("libquadmath.so.0" lib) (string-append gcclib "/lib/" lib))) - #t)))))) + (("libquadmath.so.0" lib) (string-append gcclib "/lib/" lib))))))))) (propagated-inputs (list julia-requires)) (inputs -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 18/19] gnu: julia-stackviews: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:04 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409218302 (code B ref 54088); Wed, 23 Feb 2022 13:49:04 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:12 +0000 Received: from localhost ([127.0.0.1]:44364 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs03-0004l0-S4 for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:12 -0500 Received: from mail-wr1-f45.google.com ([209.85.221.45]:34764) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzh-0004eq-SO for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:50 -0500 Received: by mail-wr1-f45.google.com with SMTP id d3so24094128wrf.1 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=v9NkaKLgP64yIT0mBtXafhYwwq+h4z8DX+eVI8HQBWU=; b=mMI+Xnio6un1HU+JwwT/cg8JqdXOxAtvXvkbtLx6yEagY914buXcDpqGvGVtKZoiG5 JOXMmieE+o2yr/szlDRl6owO0hS8jdywen8Nhsdm2Jd8MKXmi4/QIFTNzjUNRNEqiIOn huFnyFqftsnfyj/41EBWZ7mZAXtkStNOi8N2PkQOcvGZmBC5dM3u5gu6xyRdq5TxNFL6 zd6xZldr2Yzcv6uvFp6C8Qq5UT0kUbZiVqwgvwvpheEm4gd0JnLn7cOTBTVtFSb0LqQ8 gXmCjPQGJkxa6Kx7XFjS8PIhTicsb93vxBdRdv6yILCB58GUecFSoftBhUKoroTDpESo IHTQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=v9NkaKLgP64yIT0mBtXafhYwwq+h4z8DX+eVI8HQBWU=; b=z5j3z3rCdEHe84VJN76n/bVCm/qimACMcK7DnMrfn5SFuKx0YRtA5Jf/v9a+dKU8Kz 7Mc/t2L/YbgT8BAZlh5hKVpZkqU6jkvZ0veW0GxOLmHxRXw8M+B0h1NC5jkcG/OWpnsH UQcj80FgH9O2QmRzEWMAwKfLdOCRNwpLZWhcbkFR1yaWABWS9IZB2ykNyKxrzEFXS+Vq M7v58Bn/NXTgq2iKB7T1taC60YzWDwM1Kz69o9R/zJGKynSggKwxyyBKV82O1YFlQnDC 9LY3JIWerzWNNfPZSpfjxe922HUKFkAScMxJk+4kYf+MJQazdBN1hAgfsDehpMGgmznd 0YlQ== X-Gm-Message-State: AOAM533U/OugKo5rDKJ7Dp9lkQl+yX35nIbSY2KrTlozDXxJrvuRCXYd mcmguIj4XpjArWkf7dAVesTT9ck8IfQ= X-Google-Smtp-Source: ABdhPJwo650v7o1zj83D9SwxiJDZJvefJnxDXYfYO3ev0ckF5JmkRSwJkFmxqKR34F34WyIxa+g00A== X-Received: by 2002:adf:de05:0:b0:1ed:9e87:30d8 with SMTP id b5-20020adfde05000000b001ed9e8730d8mr3466022wrm.688.1645624064335; Wed, 23 Feb 2022 05:47:44 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:43 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:21 +0100 Message-Id: <20220223134722.354636-18-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-stackviews): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 6510b8acf4..b43c04eb1e 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -4999,8 +4999,7 @@ (define-public julia-stackviews (add-after 'link-depot 'skip-doctest (lambda _ (substitute* "test/runtests.jl" - ((".*doctest.*") "")) - #t))))) + ((".*doctest.*") ""))))))) (propagated-inputs (list julia-offsetarrays)) (native-inputs -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 19/19] gnu: julia-uris: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 54088@debbugs.gnu.org Cc: zimoun Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409318310 (code B ref 54088); Wed, 23 Feb 2022 13:49:05 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:13 +0000 Received: from localhost ([127.0.0.1]:44366 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs04-0004l9-Gm for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:12 -0500 Received: from mail-wr1-f50.google.com ([209.85.221.50]:43898) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzi-0004f0-Hj for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:50 -0500 Received: by mail-wr1-f50.google.com with SMTP id s1so13319086wrg.10 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=SSB0pOn9C3Xw8Hpfyv+h3SGn/i/Fv9CrniVL6eMuED4=; b=JAZlvS3Y1uCovly74mKIf6LTB9FR/JqCG6wshHp2GWqEeG0peredojj1FntWtfCGWn u2v8/plUKAc/c8a8uemtmpVkRVr0qIcbTdzZpyV4A7pJOR976SuhopLPtSD2bNbqXcEQ TzG6ONfrJkbwIpkzWSlyfJVv00aTWAsh/FM9eOPsMCMSiLgAAZP+GbRJBx/ftpiTv/4j 66kXFyoAOm0wTmW42ybFCK5uemy3FU81AaF2PrH4ZuQtJu/n+L0m7IH3uXgu3CgxJmM5 Npd0v8Gs/qEw+ASCKc/MaV68w/Weok2Kd/Ax8nSDgE39ZgxTdWRPFL+4L09FXSRg0F9Z yeFA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=SSB0pOn9C3Xw8Hpfyv+h3SGn/i/Fv9CrniVL6eMuED4=; b=6H9jqwjQQRWKhgYMJBKuDMZnokTQfWlmHBC/IB45JUd9LSg1qROcIqjTV5JkodSwya EBnFHwxbUQfpAgxTiRg0lMkm3xPhCz3tPY5xzRx39uBT6llqoLs0yPhyL+FboUlx1L21 r54rKwgfOJzBS6s5liDoSptH3Yau+O71zszaPX+977Z361txUkB4gY49/WntAklVOMYs Of2F9RLt2cDYp6c2ve/QtFuhso2vUS4y8EnqNCWo8DukdpLW6PHgSF6YdX+EqdU7jQFH StSABtEPcD21TY1MxJpNciOZwOQ09kpAt8vQeObNhRj8osRsqX73EMeYCoWTMSRUCJ91 eIlw== X-Gm-Message-State: AOAM5302trljA83Hgijci2J4+6EdbUcgjV8FBYsteFsl/5TbHRIQeEMx 8IZZMPZD2DOgayS0KJYAlEtC0flbMzc= X-Google-Smtp-Source: ABdhPJy6UN9rS0PCfkGG1FCatrO8KN7+EuqpeSF/ywNzXENhYGaZQYDDFVTaucbIr8lX54IW8Hn6ag== X-Received: by 2002:adf:e185:0:b0:1e2:6421:f2d0 with SMTP id az5-20020adfe185000000b001e26421f2d0mr24112732wrb.703.1645624064937; Wed, 23 Feb 2022 05:47:44 -0800 (PST) Received: from localhost.localdomain ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id d6sm55823135wrs.85.2022.02.23.05.47.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:44 -0800 (PST) From: zimoun Date: Wed, 23 Feb 2022 14:47:22 +0100 Message-Id: <20220223134722.354636-19-zimon.toutoune@gmail.com> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220223134722.354636-1-zimon.toutoune@gmail.com> References: <20220223134722.354636-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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/julia-xyz.scm (julia-uris): Delete trailing #t. --- gnu/packages/julia-xyz.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index b43c04eb1e..eedfe9c438 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -5572,8 +5572,7 @@ (define-public julia-uris (lambda* (#:key source outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (chdir - (string-append out "/share/julia/loadpath/URIs/test"))) - #t))))) + (string-append out "/share/julia/loadpath/URIs/test")))))))) ;; required for tests (inputs (list julia-json)) (home-page "https://github.com/JuliaWeb/URIs.jl") -- 2.34.0 From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 23 Feb 2022 13:49:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 54088@debbugs.gnu.org Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164562409318318 (code B ref 54088); Wed, 23 Feb 2022 13:49:05 +0000 Received: (at 54088) by debbugs.gnu.org; 23 Feb 2022 13:48:13 +0000 Received: from localhost ([127.0.0.1]:44368 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMs04-0004lH-Sr for submit@debbugs.gnu.org; Wed, 23 Feb 2022 08:48:13 -0500 Received: from mail-wr1-f45.google.com ([209.85.221.45]:43904) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMrzm-0004gF-5E for 54088@debbugs.gnu.org; Wed, 23 Feb 2022 08:47:54 -0500 Received: by mail-wr1-f45.google.com with SMTP id s1so13319353wrg.10 for <54088@debbugs.gnu.org>; Wed, 23 Feb 2022 05:47:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=vqEXpo0Mkmx2Twv+KQtp8piaX80PFMvjdhabB6MvNtY=; b=PwNYFmLnjBGfmZeoSV9bEHIYYcgnkM01MMqINc8AwRokypN9opbH/dmflQCVcHqnA0 Z1Ab882c+fryTj/DoyxxRxvU6hM4sTgidyMtJNt5ITeWLGlJl9y5oU87qVN1T2NbcMbN dO6NFMY3xy+MMfaQtpOSXlnm2gE8ACbckdDq4JzLXlD42oeDhWLWUEb3U8lyUIHiSoBX lPK5jeLm7KRqdcQ0KgoaXOzdqd1apmQTy1yEiy3lq91sIITNPpZWTHITOrh7gVzy3q+x XjQf/eaRWxHOnO7irsADecCET5QpkiIn+NppccqFPe7A81f6v/uYa2yTUXZl+aKshis1 3OGw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=vqEXpo0Mkmx2Twv+KQtp8piaX80PFMvjdhabB6MvNtY=; b=fDwubJZeK/AJNgMRt+CIW1h6sb3ADMrEtuyOaQAN1EZpFxfsgzkf9GGa7fAd5Ore4F sHr8emliK6+/iVoh6VdhCHBd5+9RA939pQm+vwLG9fxK8svcVGKOjtmjPK3KS0RlNVub 2A87YlMrzs9AWJTX/sJYGHLyzBgckzRaXKo5g7pcc3eD2m+EcJDm5edRRywO3XaIkmcb 7ju7JtKKgbGYDeZOb+UvFo64jYn/nxk1UOzBN0Apnea4EcYz5THRV2ufeHmTG7qNBZ/u CcqpKuXv26+TBRziMI7KWT+4rNGx1LGo18hB7qzPlaoL54cJxDBlVZ4kPyADIdc0YdPX n0UQ== X-Gm-Message-State: AOAM531tBHK8abHBqHRwVwFQtoByng8sT6UVwn3U/1jcr21K8Cvicto/ JiFNC5gqbYXA8oq3DreuHly2CCeQ0UY= X-Google-Smtp-Source: ABdhPJwaZUVFZxlOahqd6CaFqld03HFj071UmwsEhyXw7H3eJNMmx0lWCTSDMxlhonDW2D15hP8/nA== X-Received: by 2002:adf:f804:0:b0:1ed:c0b4:c597 with SMTP id s4-20020adff804000000b001edc0b4c597mr533636wrp.66.1645624068628; Wed, 23 Feb 2022 05:47:48 -0800 (PST) Received: from pfiuh07 ([193.48.40.241]) by smtp.gmail.com with ESMTPSA id s7sm22698894wri.5.2022.02.23.05.47.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Feb 2022 05:47:48 -0800 (PST) From: zimoun References: Date: Wed, 23 Feb 2022 14:44:43 +0100 In-Reply-To: (Efraim Flashner's message of "Mon, 21 Feb 2022 14:47:05 +0200") Message-ID: <87sfs9hf3o.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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 Efraim, On Mon, 21 Feb 2022 at 14:47, Efraim Flashner wrote: > It turns out we didn't expose julia-package-dependencies in the > julia-build-system, making the created Package.toml incomplete. This > corrects the omission and fixes the one package where it is manually > added. All LGTM. But I take this opportunity to uniform, as discussed: It's definitely the new pattern we're using now. I suppose it's not really necessary here, but having more instances of it throughout the codebase also makes it easier to search for examples when others are looking to use or modify gexps. The first patch of the series uses G-exps. Note that it does not imply any rebuild. The Julia build system is adapted for the new 'julia-package-dependencies' and so it requires the minor tweak to default with ''() instead of #f; otherwise it crashes for some packages. Since we are at it, I fix a minor typo of how Julia uses --procs. Other said, currently "guix build julia-media -c 0" works but not "guix build julia-media -c 1" which crashes. Because the build system modifications imply a full Julia rebuild, let take the opportunity to remove the trailing #t. It is done package per package because each modified package need a rebuild so it eases to follow, IMHO. They can be squashed otherwise. Cheers, simon From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 05/19] gnu: julia-codeczlib: Delete trailing #t. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 24 Feb 2022 10:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: zimoun Cc: 54088@debbugs.gnu.org Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164569827319323 (code B ref 54088); Thu, 24 Feb 2022 10:25:01 +0000 Received: (at 54088) by debbugs.gnu.org; 24 Feb 2022 10:24:33 +0000 Received: from localhost ([127.0.0.1]:47656 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBIX-00051b-0S for submit@debbugs.gnu.org; Thu, 24 Feb 2022 05:24:33 -0500 Received: from flashner.co.il ([178.62.234.194]:60412) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBIU-00051O-Lw for 54088@debbugs.gnu.org; Thu, 24 Feb 2022 05:24:31 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id 7EF1E401FD; Thu, 24 Feb 2022 10:24:24 +0000 (UTC) Date: Thu, 24 Feb 2022 12:23:51 +0200 From: Efraim Flashner Message-ID: Mail-Followup-To: Efraim Flashner , zimoun , 54088@debbugs.gnu.org References: <20220223134722.354636-1-zimon.toutoune@gmail.com> <20220223134722.354636-5-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="/JXZEbFZkGqUsln0" Content-Disposition: inline In-Reply-To: <20220223134722.354636-5-zimon.toutoune@gmail.com> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) 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 (-) --/JXZEbFZkGqUsln0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable With this one we actually don't need the make-file-writable phase anymore, so I skipped this patch and replaced it with one to remove the entire phase. On Wed, Feb 23, 2022 at 02:47:08PM +0100, zimoun wrote: > * gnu/packages/julia-xyz.scm (julia-codeczlib): Delete trailing #t. > --- > gnu/packages/julia-xyz.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) >=20 > diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm > index 6bb404761b..f2d209cc3e 100644 > --- a/gnu/packages/julia-xyz.scm > +++ b/gnu/packages/julia-xyz.scm > @@ -827,8 +827,7 @@ (define-public julia-codeczlib > (lambda* (#:key outputs #:allow-other-keys) > (let ((out (assoc-ref outputs "out"))) > (for-each make-file-writable > - (find-files out "\\.gz$")) > - #t)))))) > + (find-files out "\\.gz$")))))))) > (propagated-inputs > (list julia-transcodingstreams > julia-zlib-jll)) > --=20 > 2.34.0 >=20 >=20 >=20 >=20 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --/JXZEbFZkGqUsln0 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmIXXLcACgkQQarn3Mo9 g1ESrA/+KYeT6hWwygse9p7tM9Ga+svQ3vCstCm6jyKVQkS5WXKB4hJOvJa2jZfk Nec1WUL+LK5JWM0aTdG2Nl/UrkoO9utp9pqUfhykLXzyxJ8V85oepu1bwBalJ643 7DoLq0mhjmkvmw7OvKH7xMSp3EjQ4aAEgC8MV89sfl9/iGP6Q69vlkLnyEzLa9A1 hNmTPZkjN3d59mCmAAs0ZNQpgtHhvstO20gouCbDfXLSGqMdtRaaiPebWynJ3gsF 0Y1q0pFqo4GANA1oBLvUe3OlcF2LI7fPzuYONj835JyTvc8mBy4DBmv3Znney6vM H/8T3oQ5kBsK02R6Pqo8xsLz8NmRflWdXjreCBIWYHv58BK+0SI4rPs6Z9niE0hZ 5aMzPvLvQrGB0CzDzEVtvkqRUrqVagM7gO2bvFBBfQs6B8C+Ir/GWFN4W0NXYXI7 RYCF0EfoFoozEP36+aWSPxCNcrhuBx02hvoyGW16h8LAnQ9ZvbukyVk7/BR7U6hd 3SAIFvYVpLJLKA+53cgvIaHLtrpZY0ufguAoo+vQaSZBAcA5a95PZ8kOVB6d6/NJ ggXwkR6rYRjMNOmQq3er/S3lpEZLcLvvZON71xX1V1EiTUrC1zsPo5emZxLmSjyH 6CVyCYsC6ybbsH6nYqM+xB67jipugYW0SXKf8t1u7DNT33gNfuc= =k+8f -----END PGP SIGNATURE----- --/JXZEbFZkGqUsln0-- From unknown Tue Jun 17 22:27:12 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Efraim Flashner Subject: bug#54088: closed (Re: bug#54088: [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps) Message-ID: References: X-Gnu-PR-Message: they-closed 54088 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 54088@debbugs.gnu.org Date: Thu, 24 Feb 2022 10:26:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1645698362-19471-1" This is a multi-part message in MIME format... ------------=_1645698362-19471-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #54088: [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 54088@debbugs.gnu.org. --=20 54088: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D54088 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1645698362-19471-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 54088-done) by debbugs.gnu.org; 24 Feb 2022 10:25:05 +0000 Received: from localhost ([127.0.0.1]:47660 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBJ3-00052q-9R for submit@debbugs.gnu.org; Thu, 24 Feb 2022 05:25:05 -0500 Received: from flashner.co.il ([178.62.234.194]:60430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBJ1-000528-KF for 54088-done@debbugs.gnu.org; Thu, 24 Feb 2022 05:25:03 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id C6119401FD; Thu, 24 Feb 2022 10:24:57 +0000 (UTC) Date: Thu, 24 Feb 2022 12:24:05 +0200 From: Efraim Flashner To: zimoun Subject: Re: bug#54088: [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps Message-ID: Mail-Followup-To: Efraim Flashner , zimoun , 54088-done@debbugs.gnu.org References: <87sfs9hf3o.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="acOQ0n3GpHRPvp5u" Content-Disposition: inline In-Reply-To: <87sfs9hf3o.fsf@gmail.com> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 54088-done Cc: 54088-done@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 (-) --acOQ0n3GpHRPvp5u Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Great job! Patches pushed (with one change) On Wed, Feb 23, 2022 at 02:44:43PM +0100, zimoun wrote: > Hi Efraim, >=20 > On Mon, 21 Feb 2022 at 14:47, Efraim Flashner wro= te: >=20 > > It turns out we didn't expose julia-package-dependencies in the > > julia-build-system, making the created Package.toml incomplete. This > > corrects the omission and fixes the one package where it is manually > > added. >=20 > All LGTM. But I take this opportunity to uniform, as discussed: >=20 > It's definitely the new pattern we're using now. I suppose it's > not really necessary here, but having more instances of it > throughout the codebase also makes it easier to search for > examples when others are looking to use or modify gexps. >=20 > >=20 > The first patch of the series uses G-exps. Note that it does not imply > any rebuild. >=20 > The Julia build system is adapted for the new > 'julia-package-dependencies' and so it requires the minor tweak to > default with ''() instead of #f; otherwise it crashes for some packages. >=20 > Since we are at it, I fix a minor typo of how Julia uses --procs. Other > said, currently "guix build julia-media -c 0" works but not "guix build > julia-media -c 1" which crashes. >=20 > Because the build system modifications imply a full Julia rebuild, let > take the opportunity to remove the trailing #t. It is done package per > package because each modified package need a rebuild so it eases to > follow, IMHO. They can be squashed otherwise. >=20 >=20 > Cheers, > simon --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --acOQ0n3GpHRPvp5u Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmIXXMUACgkQQarn3Mo9 g1FRzA/8DImCTTIHNjxbJ1N2hWx8HwkMdxjz8T7bqVJ02ufPOJ08MYjqOizEvB7l MhVhZxEjM3EL5UK7iwZU0M9RSiOjMTbjhgjdid5aBHMwxrFvKxVIXdEhGfUAKmq+ Nh0DEpFZ4eE9DtHekWLzCXdO5wbJpBs6NwvBczK0NzBrPuHEPOfR4g6wLssbuCcM RJNmK1FXEPsr0qWmiLXx3Ym/j12ABhTEACP2ZNtuq5+LagWuQVLAWnqlJ0szapD5 5yb3kGhbevto/ahwPZ7HJqSWuQDHs4B06cz9ITYi4PnR4dxwjB3RMRytgVsclcgs V0608RfjIvtzz3vapN2KVx+kE3z6oe+WVse1oZKr6Wrf7Q/M7XrbhRY0M2a34V3q P9whSUyNl2YiV0VfbNFpszvwFd2T6VrgJJLk+0CKtwtwm5QR67AxdZmwKTb23pZC ppzWZ5cch3F1O+BjzS4MKOS2Kx9OrNBuSYQ/mBqdIjXYiPBpA6CuHCD3TVvYPJqF N58K3SX7W6cCcPJ5YB+rvfHbKEGBQpVpdxh1RbTtw/p8hvKaFhsW+v4FISlBO3fZ ZaLvbF2/3PrkeWwubRVXJtZWjbRHqE779gwKqLUPwPRIIq3Mfj7lyfLOgZNO/nuZ wLebwk0/yLMBY7pCc1FRM7sGwMj/2bwmk1L//JNahYTKyByrrgE= =Mk5S -----END PGP SIGNATURE----- --acOQ0n3GpHRPvp5u-- ------------=_1645698362-19471-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 21 Feb 2022 12:48:20 +0000 Received: from localhost ([127.0.0.1]:35309 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM872-0007ES-9I for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:48:20 -0500 Received: from lists.gnu.org ([209.51.188.17]:47082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nM871-0007EL-Co for submit@debbugs.gnu.org; Mon, 21 Feb 2022 07:48:19 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59822) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nM86v-0005Oc-Vi for guix-patches@gnu.org; Mon, 21 Feb 2022 07:48:18 -0500 Received: from flashner.co.il ([178.62.234.194]:56074) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nM86u-0000jL-D3 for guix-patches@gnu.org; Mon, 21 Feb 2022 07:48:13 -0500 Received: from localhost (unknown [31.210.181.166]) by flashner.co.il (Postfix) with ESMTPSA id BD39D40313; Mon, 21 Feb 2022 12:47:39 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org, zimon.toutoune@gmail.com Subject: [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps Date: Mon, 21 Feb 2022 14:47:05 +0200 Message-Id: X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner 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 (--) It turns out we didn't expose julia-package-dependencies in the julia-build-system, making the created Package.toml incomplete. This corrects the omission and fixes the one package where it is manually added. Efraim Flashner (2): build: julia: Add julia-package-dependencies as keyword. gnu: julia-media: Use julia-package-dependencies. gnu/packages/julia-xyz.scm | 15 ++------------- guix/build-system/julia.scm | 5 ++++- guix/build/julia-build-system.scm | 7 ++++++- 3 files changed, 12 insertions(+), 15 deletions(-) base-commit: 7eefff2054b94f8a7ad850ad8f36b8773bb39ce9 -- 2.34.0 ------------=_1645698362-19471-1-- From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH v2 05/19] gnu: julia-codeczlib: Delete trailing #t. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 24 Feb 2022 10:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 54088@debbugs.gnu.org Received: via spool by 54088-submit@debbugs.gnu.org id=B54088.164569974121776 (code B ref 54088); Thu, 24 Feb 2022 10:49:02 +0000 Received: (at 54088) by debbugs.gnu.org; 24 Feb 2022 10:49:01 +0000 Received: from localhost ([127.0.0.1]:47705 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBgC-0005fA-RU for submit@debbugs.gnu.org; Thu, 24 Feb 2022 05:49:01 -0500 Received: from mail-wm1-f45.google.com ([209.85.128.45]:51129) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBgB-0005ex-IM for 54088@debbugs.gnu.org; Thu, 24 Feb 2022 05:49:00 -0500 Received: by mail-wm1-f45.google.com with SMTP id y5so873214wmi.0 for <54088@debbugs.gnu.org>; Thu, 24 Feb 2022 02:48:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:in-reply-to:references:date:message-id :mime-version; bh=9rL9PQewjrmy/DOr21v2b49wFd4k9cRgz1dFcSrhVyA=; b=YRlViqnTDeP08m0o7dPI+hF5X1XzlTNCCbvzyB/0/36UeCVApqSAPc4Z3NCDVP1Tt5 hBLxzu02Jcc1Pvx4V/Gcx220D8D0cOI5Nmvu0JvBuxnmIuAjJqJhhBBRqp+q820+rQ8E NltzoSV6/63M0eLb5eWtQYqt9F5nQ2AoTESHEBjcJsJUls0080u7jrKz9YfegFWwo6kb zb6g3gZgjdAJxAwgfaV+nZMLcPzPIOXnE4Pt+Rw9ufs1yv+hpb8VHuGBPPfLa8f9edra wdaGclW9paqqjuMJ+zui93bg2PCEhUBVy6fd92+p9oAtiHOvcSkEbTC42tyxFtTBN/in Cd5Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:in-reply-to:references:date :message-id:mime-version; bh=9rL9PQewjrmy/DOr21v2b49wFd4k9cRgz1dFcSrhVyA=; b=wd0J/hLy5i75OQi1wOEt4i4srNENSm5Z3sBuVtmrWEdwTsnmZL8PgBzKdMEDLcn4Ek gLfs/yBeOaQK3/KKKDBGcY2JEyQiscEZZsHXikbAiOA28OFIKT7yWU6lQVXavV2FIKJm del9/CZif+NnoHSQ03p5gT3YmCFqMcdueS0FgsFLxgP6Uc3WG46hm4YPC3pGCQ+bPdEP LLw3XJFF9Zs5yVbvimSkzYOe5bfON1zTJ1JetW7A72/za7FddTBGKPgMUZcfCmSf3G9d 8x3R9jDS6p3J+py3ElhBf04bn36iwZrdoWssqLKkGJzNvn3K/uV82l43joF0KZLWGSzA k3pA== X-Gm-Message-State: AOAM532HocHoLp5kMcQYX5AA5Z4Xo8UjH+ARMDQalZXqTVAmdKD23gjC ulPxVjncMyEiFVuBQF65qY/uWDUQSss= X-Google-Smtp-Source: ABdhPJyDFW1RKLXjMB4YoI4IqJs/rkzT3QsJfEJgFjWAEOqGYwP4r5gL+2QofpmwGz5tXi+Sp0GJqg== X-Received: by 2002:a05:600c:3589:b0:37b:b9fb:f939 with SMTP id p9-20020a05600c358900b0037bb9fbf939mr1766113wmq.188.1645699733515; Thu, 24 Feb 2022 02:48:53 -0800 (PST) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id n2sm2396353wmq.6.2022.02.24.02.48.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 24 Feb 2022 02:48:53 -0800 (PST) From: zimoun In-Reply-To: References: <20220223134722.354636-1-zimon.toutoune@gmail.com> <20220223134722.354636-5-zimon.toutoune@gmail.com> Date: Thu, 24 Feb 2022 11:39:15 +0100 Message-ID: <8635k8r1kc.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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 Efraim, On Thu, 24 Feb 2022 at 12:23, Efraim Flashner wrote: >> (lambda* (#:key outputs #:allow-other-keys) >> (let ((out (assoc-ref outputs "out"))) >> (for-each make-file-writable >> - (find-files out "\\.gz$")) >> - #t)))))) >> + (find-files out "\\.gz$")))))))) > > With this one we actually don't need the make-file-writable phase > anymore, so I skipped this patch and replaced it with one to remove the > entire phase. Ah sorry to have missed that. Thanks for the review. :-) Cheers, simon From unknown Tue Jun 17 22:27:12 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#54088] [PATCH 0/2] julia-build-system: Add missing julia-pkg-deps Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 24 Feb 2022 10:50:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 54088 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 54088-done@debbugs.gnu.org Received: via spool by 54088-done@debbugs.gnu.org id=D54088.164569974521817 (code D ref 54088); Thu, 24 Feb 2022 10:50:01 +0000 Received: (at 54088-done) by debbugs.gnu.org; 24 Feb 2022 10:49:05 +0000 Received: from localhost ([127.0.0.1]:47709 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBgH-0005fp-2z for submit@debbugs.gnu.org; Thu, 24 Feb 2022 05:49:05 -0500 Received: from mail-wr1-f44.google.com ([209.85.221.44]:37808) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nNBgC-0005ez-P6 for 54088-done@debbugs.gnu.org; Thu, 24 Feb 2022 05:49:01 -0500 Received: by mail-wr1-f44.google.com with SMTP id d28so2320676wra.4 for <54088-done@debbugs.gnu.org>; Thu, 24 Feb 2022 02:49:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:in-reply-to:references:date:message-id :mime-version; bh=MOOEcOJtZ2BPrEhz0k2kyeUw99AFjIog5Hfat/n4cvs=; b=XudciKuzhm00z2oJdEDR6q2GAm2QIiEVWSJ1ylKjE0A/mcK05pV7FuCsfpNiFLDELf 68aIHJR3kEpKnHgStuKDlLylHZbiUfw7/f8kaa77b8YJN8WT30mem8M1Ld0pTTsS/XWQ x0XcRf6nzy44TXkpY1nk7TXea2EdF8iyng4kVnJ/eRD4/vx5CoY7XymsUZTSvIvhhicH 3xP+p7NRc1zTuvGvjg3raPBDV6OuWl6UQtDeOg/axaBpRNTTR4YVSiiAmDUgJW23+x5e ZsWbIzYG8RYDGTa0Eakc7BkMkMFYIbu5NPGav1Z6Xw8Xwro0rQ+oU6ZVQ3SWNBBCW6Ad i8Kg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:in-reply-to:references:date :message-id:mime-version; bh=MOOEcOJtZ2BPrEhz0k2kyeUw99AFjIog5Hfat/n4cvs=; b=XjnAe5/86iQuzzEaUbEg9GpgMPSOZUNkpQJfYCgvLpjKxZ+zyJVA0/siBUZbEiqkrG ijEeFC4Ga5Pu7jKiNPmjr/qA5gMhtRvM24yfJmA1Ui6D8+akdMvt0uNKcvILS88i8ynL 0P8ZhWoLHvreyfZZtinX/dskaQpYuCfmYEHDQM1TYgFYYC0WnOWkqs51Q8rniuGncQzV +L2lyLj53/nNzCaOtBTYl/sPbRB2mSt00GjtcgcgNt/bXmD6aKsfLS1nLx1hwX09P73m 1znujCy5Kecu3VMBvdBFCb4E+0YSbrRchIn/tjjYsSTue34qC+smWvczP3rwViswZJAR OeqQ== X-Gm-Message-State: AOAM533SzZIJEMaYYOP7UIxzwnD5+UJjpjHnouoDZDEMMjgffd29Sip6 VtSr1HU3dAv5rgV5NkCdpZ50RyK6pyU= X-Google-Smtp-Source: ABdhPJyZ2UgoC3INqRGoBhJm+n1tQuYoyvX78qFy4/5pi/05Kz+H3Ok1FVkbVq906bLjogdb8d5daA== X-Received: by 2002:a05:6000:186a:b0:1ed:9e7c:7b7d with SMTP id d10-20020a056000186a00b001ed9e7c7b7dmr1717758wri.581.1645699734866; Thu, 24 Feb 2022 02:48:54 -0800 (PST) Received: from lili ([2a01:e0a:59b:9120:65d2:2476:f637:db1e]) by smtp.gmail.com with ESMTPSA id x2-20020a7bc762000000b00380fd1ba4ebsm3253199wmk.9.2022.02.24.02.48.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 24 Feb 2022 02:48:54 -0800 (PST) From: zimoun In-Reply-To: References: <87sfs9hf3o.fsf@gmail.com> Date: Thu, 24 Feb 2022 11:39:50 +0100 Message-ID: <86y220pmyx.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) 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, 24 Feb 2022 at 12:24, Efraim Flashner wrote: > Great job! Patches pushed (with one change) Thanks! Cheers, simon