From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 11 08:16:15 2023 Received: (at submit) by debbugs.gnu.org; 11 Aug 2023 12:16:15 +0000 Received: from localhost ([127.0.0.1]:45113 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUR3v-0005UM-9E for submit@debbugs.gnu.org; Fri, 11 Aug 2023 08:16:15 -0400 Received: from lists.gnu.org ([2001:470:142::17]:52104) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUR3q-0005U4-H7 for submit@debbugs.gnu.org; Fri, 11 Aug 2023 08:16:14 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qUR3i-0000vc-C8 for guix-patches@gnu.org; Fri, 11 Aug 2023 08:16:02 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qUR3W-0004wA-7z; Fri, 11 Aug 2023 08:15:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=XHUDBUeJyQyg7dIyRdhftfBATx0jjDJrt7fg3jhHFbg=; b=qGAsDWtd2BuS1g HiWg/TIoxswSCsleSN2Z0IG4QakqrDYiAVv8Knhv4j4x2jdKF+BFTqEqzhQo6jQ0W/nV0+r0baF57 aOdLGGBl1q2FzHXzKpgA3b0WzT7rEtBATdvjUlEuS5H8+DNdNmnnCv5ve2E88ZJwaAEH5ZEUUrm/Z 4Feu1yd3p4fAyC/BEQPAnAYFDP8CTwD0jgih2WnlWYbIKAMBdIJz4Ii800LbFJ1A+rxGDTKWIDoJC UJm2FntZm1HnrUjyX5Q/sDB0ePhL/JE4G1RB72n2dC+82sNJCNAuxU0eVSzct9OvVS3VrA1fxmzp5 ZW+uDl4Hqj80ZdcS8bmA==; From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= To: guix-patches@gnu.org Subject: [PATCH] gnu: libflame: Update to 70c19e7. Date: Fri, 11 Aug 2023 14:15:28 +0200 Message-ID: <1e2bf2b94b358533876746b1bbb3e35e73ca9f34.1691755971.git.ludo@gnu.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Andreas Enge , Efraim Flashner , Eric Bavier Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit Cc: Florent Pruvost , =?UTF-8?q?Ludovic=20Court=C3=A8s?= , 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: -1.0 (-) From: Ludovic Courtès * gnu/packages/maths.scm (libflame): Update to 70c19e7. [arguments]: Add #:make-flags. --- gnu/packages/maths.scm | 135 +++++++++++++++++++++-------------------- 1 file changed, 69 insertions(+), 66 deletions(-) Hello! This updates libflame to a current commit, which in turn allows us to use it as a dependency of 'lapack'. Any objections, Efraim? Thanks, Ludo'. diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 420f1894f3..e6e42f21cd 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2599,78 +2599,81 @@ (define-public libfixmath (license license:expat)))) (define-public libflame - (package - (name "libflame") - (version "5.2.0") - (outputs '("out" "static")) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/flame/libflame") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1n6lf0wvpp77lxqlr721h2jbfbzigphdp19wq8ajiccilcksh7ay")))) - (build-system gnu-build-system) - (arguments - (list #:configure-flags - ;; Sensible defaults: https://github.com/flame/libflame/issues/28 - #~(list "--enable-dynamic-build" - "--enable-max-arg-list-hack" - "--enable-lapack2flame" - "--enable-verbose-make-output" - "--enable-multithreading=pthreads" ; Openblas isn't built with openmp. - #$@(if (target-x86?) - #~("--enable-vector-intrinsics=sse") - #~()) - "--enable-supermatrix" - "--enable-memory-alignment=16" - "--enable-ldim-alignment") - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'patch-/usr/bin/env-bash - (lambda _ - (substitute* "build/config.mk.in" - (("/usr/bin/env bash") - (which "bash"))))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (substitute* "test/Makefile" - (("LIBBLAS .*") - "LIBBLAS = -lblas\n") - (("LIBLAPACK .*") - "LIBLAPACK = -llapack\n")) - (when tests? - (with-directory-excursion "test" - (mkdir "obj") - (invoke "make") - (invoke "./test_libflame.x"))))) - (add-after 'install 'install-static - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out")) - (static (assoc-ref outputs "static"))) - (mkdir-p (string-append static "/lib")) - (rename-file (string-append out - "/lib/libflame.a") - (string-append static - "/lib/libflame.a")) - (install-file (string-append out - "/include/FLAME.h") - (string-append static "/include")))))))) - (inputs (list gfortran)) - (native-inputs (list lapack perl python-wrapper)) - (home-page "https://github.com/flame/libflame") - (synopsis "High-performance library for @acronym{DLA, dense linear algebra} computations") - (description "@code{libflame} is a portable library for dense matrix + ;; The latest release (5.2.0) dates back to 2019. Use a newer one, which + ;; among other things provides extra LAPACK symbols, such as 'dgemlq_' + ;; (needed by LAPACKe). + (let ((commit "70c19e770ead0ae846c59b59216deb16d236b40c") + (revision "0")) + (package + (name "libflame") + (version (git-version "5.2.0" revision commit)) + (outputs '("out" "static")) + (home-page "https://github.com/flame/libflame") + (source (origin + (method git-fetch) + (uri (git-reference (url home-page) (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rk8ln5p4yybsws6p60w0vkxbqp53jddv90brlgf60mk6lv51sxl")))) + (build-system gnu-build-system) + (arguments + (list #:configure-flags + ;; Sensible defaults: https://github.com/flame/libflame/issues/28 + #~(list "--enable-dynamic-build" + "--enable-max-arg-list-hack" + "--enable-lapack2flame" + "--enable-verbose-make-output" + "--enable-multithreading=pthreads" ; Openblas isn't built with openmp. + #$@(if (target-x86?) + #~("--enable-vector-intrinsics=sse") + #~()) + "--enable-supermatrix" + "--enable-memory-alignment=16" + "--enable-ldim-alignment") + #:make-flags #~(list "FC=gfortran -fPIC") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-/usr/bin/env-bash + (lambda _ + (substitute* "build/config.mk.in" + (("/usr/bin/env bash") + (which "bash"))))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (substitute* "test/Makefile" + (("LIBBLAS .*") + "LIBBLAS = -lblas\n") + (("LIBLAPACK .*") + "LIBLAPACK = -llapack\n")) + (when tests? + (with-directory-excursion "test" + (mkdir "obj") + (invoke "make") + (invoke "./test_libflame.x"))))) + (add-after 'install 'install-static + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out")) + (static (assoc-ref outputs "static"))) + (mkdir-p (string-append static "/lib")) + (rename-file (string-append out + "/lib/libflame.a") + (string-append static + "/lib/libflame.a")) + (install-file (string-append out + "/include/FLAME.h") + (string-append static "/include")))))))) + (inputs (list gfortran)) + (native-inputs (list lapack perl python-wrapper)) + (synopsis "High-performance library for @acronym{DLA, dense linear algebra} computations") + (description "@code{libflame} is a portable library for dense matrix computations, providing much of the functionality present in LAPACK, developed by current and former members of the @acronym{SHPC, Science of High-Performance Computing} group in the @url{https://www.ices.utexas.edu/, Institute for Computational Engineering and Sciences} at The University of Texas at Austin. @code{libflame} includes a compatibility layer, @code{lapack2flame}, which includes a complete LAPACK implementation.") - (license license:bsd-3))) + (license license:bsd-3)))) (define-public scasp (let ((commit "89a427aa04ec6346425a40111c99b310901ffe51") base-commit: 56fddefc6de3b0c1f2ccb9559d86ba08d2e429b9 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 16 10:20:43 2023 Received: (at submit) by debbugs.gnu.org; 16 Aug 2023 14:20:43 +0000 Received: from localhost ([127.0.0.1]:41778 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qWHO7-00046q-9D for submit@debbugs.gnu.org; Wed, 16 Aug 2023 10:20:43 -0400 Received: from lists.gnu.org ([2001:470:142::17]:57266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qWHO4-00046b-CA for submit@debbugs.gnu.org; Wed, 16 Aug 2023 10:20:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qWHNy-0000qE-LX for guix-patches@gnu.org; Wed, 16 Aug 2023 10:20:34 -0400 Received: from mail-qv1-xf33.google.com ([2607:f8b0:4864:20::f33]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1qWHNw-0002fF-0e; Wed, 16 Aug 2023 10:20:34 -0400 Received: by mail-qv1-xf33.google.com with SMTP id 6a1803df08f44-64189860374so33366396d6.0; Wed, 16 Aug 2023 07:20:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1692195630; x=1692800430; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender:from:to :cc:subject:date:message-id:reply-to; bh=VHltZswFmomkF+EI6OcBn/VpBH+O4g/pi+H2UNSvzmA=; b=NfIPt/GtND2uBbMNKbn9nFtZ1kBhrtMuC+Hgx6xJR/WPxLfjsxWOa3/Zd6k4mSYlC9 9vnXMabPg/5l+jyJrK9HyLf6qhAQ+8Fh56T5pnhuWTmbvPxxVndnUoEPz6D2t7Vp1/Vm clE6bKBRpJ9ru5YQs5/GVauzltqrWn2WzC9f3c7utYwiwmMk+O8h0bH8YG5fQCG/HUYv 939Tuc9SewSJTnn4P/PuWIjrKYpJDxqkvcUksDAuFgZ7kXM4LBK2alJWjQd/myxTWOcO WgpAM1wdcGyCKMv1ya8WnM+g0x63w2tGaB5OXAbzmfZGJYwif/VNdSFGupJq28/QVU2r 9dRA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1692195630; x=1692800430; h=in-reply-to:content-disposition:mime-version:references :mail-followup-to:message-id:subject:cc:to:from:date:sender :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=VHltZswFmomkF+EI6OcBn/VpBH+O4g/pi+H2UNSvzmA=; b=JvPVWc5jSGrKLHYYykgQgDwfFwBJWXE/W6dzqHbFMhB05mueJR2WMkCs/iszt28pPh ChF5cn0g9m/Ss6VTT9QkMxFVmM9vo4hn6tdbCw3EvEXMrL1cpBW2Wem5/PxBfaTZMPGN tJ1uV93uaAY5zB8RKL6r8Dw7Ywkxy5GjQKMbDitLswiNb8eU7BPzmhXp1f9zQWVZ5mis RjdCebKvP3zy+NLw8S1t7v4s6iCAwhFqXo5HeeCxIU+yY2/XHKWLl5h3ilucx3Qsr5Ma UP7Wr/F1Pfxmnifl9ktebEIN9jHzi/2Dqh+Ai6jTFr0Yw+qD80LbmmGLY/yZbmjPgy6X krMQ== X-Gm-Message-State: AOJu0YxcHS3sn2o0ovLt8f4fEQQjJY4Ngze8zltw/rEXZlXv3IWRrPL2 nYgEpWU4/T/bu3eudTWSnQ6faNp4e+GzZw== X-Google-Smtp-Source: AGHT+IGe1h3c/n5bsapzApr5f22h2M5J5PXYQntirIVY2+cBrUr4kVraC6ewyiM3HPJ3lOvnOnG1AQ== X-Received: by 2002:a0c:c991:0:b0:63d:6755:d1cb with SMTP id b17-20020a0cc991000000b0063d6755d1cbmr1912152qvk.16.1692195630299; Wed, 16 Aug 2023 07:20:30 -0700 (PDT) Received: from localhost (ool-ad039216.dyn.optonline.net. [173.3.146.22]) by smtp.gmail.com with ESMTPSA id q11-20020ae9e40b000000b0076c9e981b6bsm4403904qkc.57.2023.08.16.07.20.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 16 Aug 2023 07:20:29 -0700 (PDT) Date: Wed, 16 Aug 2023 17:20:12 +0300 From: Efraim Flashner To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [PATCH] gnu: libflame: Update to 70c19e7. Message-ID: Mail-Followup-To: Ludovic =?utf-8?Q?Court=C3=A8s?= , guix-patches@gnu.org, Ludovic =?utf-8?Q?Court=C3=A8s?= , Florent Pruvost References: <1e2bf2b94b358533876746b1bbb3e35e73ca9f34.1691755971.git.ludo@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="S1P459k7enGbr3Xl" Content-Disposition: inline In-Reply-To: <1e2bf2b94b358533876746b1bbb3e35e73ca9f34.1691755971.git.ludo@gnu.org> 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 Received-SPF: pass client-ip=2607:f8b0:4864:20::f33; envelope-from=efraim.flashner@gmail.com; helo=mail-qv1-xf33.google.com X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FORGED_FROMDOMAIN=0.25, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.25, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.5 (+) 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: On Fri, Aug 11, 2023 at 02:15:28PM +0200, Ludovic Courtès wrote: > From: Ludovic Courtès > > * gnu/packages/maths.scm (libflame): Update to 70c19e7. > [arguments]: Add #:m [...] Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (efraim.flashner[at]gmail.com) 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 0.2 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different X-Debbugs-Envelope-To: submit Cc: Florent Pruvost , Ludovic =?utf-8?Q?Court=C3=A8s?= , guix-patches@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: 0.5 (/) --S1P459k7enGbr3Xl Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 11, 2023 at 02:15:28PM +0200, Ludovic Court=C3=A8s wrote: > From: Ludovic Court=C3=A8s >=20 > * gnu/packages/maths.scm (libflame): Update to 70c19e7. > [arguments]: Add #:make-flags. > --- > gnu/packages/maths.scm | 135 +++++++++++++++++++++-------------------- > 1 file changed, 69 insertions(+), 66 deletions(-) >=20 > Hello! >=20 > This updates libflame to a current commit, which in turn allows us to use > it as a dependency of 'lapack'. >=20 > Any objections, Efraim? >=20 > Thanks, > Ludo'. Some of the config.guess and config.sub files in the test suite are too old to run on aarch64/riscv64, but that's something that we can fix. I don't see any problems overall. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --S1P459k7enGbr3Xl Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmTc2xEACgkQQarn3Mo9 g1Evnw//TLbci9gsgzLWOPp8Rea5dPaS/BFDlCAW2sGz4HJPEEPjQ/8jsAGJ6Re1 kwYCViBy+ufaqN+34JuKIJoSi6gAMM6XCBzYXS2SOlu+RWr8FCIWw11HeFeKBgnn PJtzKmwCI0dJC3lROfGqnruYws1osDEMCx94fSRc7hpOkbmc98GLiaOzTcj8WUkY YC69VBfzvQWteQZprSIJ3GHfPF+7iewu6SERXV9u0By3yfwNdndGeaO7WByvtwbs 3zh1yJ6N/uRqMvvS7y5m1ImycmZ5HsiWjpohkIBzYFw1GoFNlbpe7tWf8fEtix4B lMGH8dP1AKt3iXrz/M3hXgS6KYI/nXMHAt3YBRr+sJLXu0+xrITne6Wojq8j1DfS uFR8lasdTqJgXUM6u/lGgDJs5QB9Sf4kF5YkR0LZpUTukpoGLWCiN+CZqr/VVDFw 9cvAQX4w+L1pr7C3MeubCjuU1Rfk465TxZHFXORkehHHI/AEOGCLv22r0x7Fees7 f8OttZxAqGvIAm2b3BCdMSKGn8QHN6osYm0WbvHTVDS6+2L97k1i68CkLv7aD76s Tcl3Y4Q/xfAHxj03rsUQxLNGnwuqsbTM5nurKg+VhMCHPNcaQT8pchNBWdC7k0xE zMKxUzsNmMTSuBqd4h2z53+NvUQmKKlGsLA/qg6PE2FEd7UDGsY= =2m/o -----END PGP SIGNATURE----- --S1P459k7enGbr3Xl-- From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 17 13:09:40 2023 Received: (at 65227-done) by debbugs.gnu.org; 17 Aug 2023 17:09:40 +0000 Received: from localhost ([127.0.0.1]:45476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qWgVA-0006wu-EG for submit@debbugs.gnu.org; Thu, 17 Aug 2023 13:09:40 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36764) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qWgV8-0006wQ-EK for 65227-done@debbugs.gnu.org; Thu, 17 Aug 2023 13:09:38 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qWgV2-0006xv-8X; Thu, 17 Aug 2023 13:09:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=Qh8nOUGdJX5I7X2+55nI4NQCNrgUomPyevs4NQwRnoc=; b=A7i/jez8SRr2gXzHPWxt +PKqTdFC7Ah7hdFnDqH47c+/tCLDe+R2zr021jsJmBxSvimIDJxOfDsyKcHkkHz+g9uKADp4RnbxE bTqT0/y5LbHKwSksP7FZyymZm7Ev3O6FTWEVFOL472xXf/pQHzMBwG0Ovj45oGWzeEFtBhEYfVcEb V3dkhe4i5zQckJLJ+zXwntFH/K4M71dPbluyRQ/SYhNAVg+CYO0/S2KN65PDrqL+sPOMVi3if+4iX D6YOg2ZfLtiYi0p4sRCz+ozEegfQcZcfc/VXPuGk04Z2tdwRpC0iTI1W/NrZoNhj8tb6uVSCjnIdH F/bomTE4w74Afw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: 65227-done@debbugs.gnu.org Subject: Re: bug#65227: [PATCH] gnu: libflame: Update to 70c19e7. References: <1e2bf2b94b358533876746b1bbb3e35e73ca9f34.1691755971.git.ludo@gnu.org> Date: Thu, 17 Aug 2023 19:09:29 +0200 In-Reply-To: (Efraim Flashner's message of "Wed, 16 Aug 2023 17:20:12 +0300") Message-ID: <87edk1vbna.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65227-done Cc: Florent Pruvost , 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: -3.3 (---) Hello, Efraim Flashner skribis: > On Fri, Aug 11, 2023 at 02:15:28PM +0200, Ludovic Court=C3=A8s wrote: >> From: Ludovic Court=C3=A8s >>=20 >> * gnu/packages/maths.scm (libflame): Update to 70c19e7. >> [arguments]: Add #:make-flags. [...] > Some of the config.guess and config.sub files in the test suite are too > old to run on aarch64/riscv64, but that's something that we can fix. Right, and it can=E2=80=99t be a regression. > I don't see any problems overall. Awesome, pushed as dcf05f2321821ca1497929630edea3ff53c4dcb0! Thanks, Ludo=E2=80=99. PS: Your MUA sets an incorrect =E2=80=98Mail-Followup-To=E2=80=99 that lacks NNN@debbugs.gnu.org and yourself. From unknown Sat Jun 21 03:28:34 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 15 Sep 2023 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator