all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 66718@debbugs.gnu.org
Cc: Hilton Chain <hako@ultrarare.space>, Hilton Chain <hako@ultrarare.space>
Subject: [bug#66718] [PATCH v2 1/6] gnu: mbedtls-for-hiawatha: Use inherited source.
Date: Sat, 18 Nov 2023 14:49:13 +0800	[thread overview]
Message-ID: <25db53767b5c4d1af4e2f1e8a7b86a27678a0779.1700289538.git.hako@ultrarare.space> (raw)
In-Reply-To: <cover.1700289538.git.hako@ultrarare.space>

* gnu/packages/tls.scm (mbedtls-for-hiawatha): Use inherited source.
[arguments]<#:phases>: Keep "-Wformat-signedness".

Change-Id: I562ae6533b518a853b9b59f8fb69c0135364277f
---
 gnu/packages/tls.scm | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 6a0aaf7f14..37650f632d 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -989,8 +989,6 @@ (define-public perl-crypt-openssl-random
 (define-public mbedtls-apache
   (package
     (name "mbedtls-apache")
-    ;; XXX Check whether ‘-Wformat-signedness’ still breaks mbedtls-for-hiawatha
-    ;; when updating.
     (version "2.28.0")
     (source
      (origin
@@ -1027,26 +1025,6 @@ (define-public mbedtls-for-hiawatha
   (hidden-package
    (package
      (inherit mbedtls-apache)
-     (name "mbedtls-apache")
-     (version "2.26.0")
-     (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-              (url "https://github.com/ARMmbed/mbedtls")
-              (commit (string-append "mbedtls-" version))))
-        (sha256
-         (base32 "0scwpmrgvg6q7rvqkc352d2fqlsx0aylcbyibcp1f1rsn8iiif2m"))
-        (file-name (git-file-name name version))
-        (modules '((guix build utils)))
-        (snippet
-         '(begin
-            ;; Can be removed with the next version.
-            ;; Reduce level of format truncation warnings due to false positives.
-            ;; https://github.com/ARMmbed/mbedtls/commit/2065a8d8af27c6cb1e40c9462b5933336dca7434
-            (substitute* "CMakeLists.txt"
-              (("Wformat-truncation=2") "Wformat-truncation"))
-            #t))))
      (arguments
       (substitute-keyword-arguments (package-arguments mbedtls-apache)
         ((#:phases phases)
@@ -1057,9 +1035,6 @@ (define-public mbedtls-for-hiawatha
                             (invoke "scripts/config.pl" "set" feature))
                           (list "MBEDTLS_THREADING_C"
                                 "MBEDTLS_THREADING_PTHREAD"))
-                ;; XXX The above enables code that breaks with -Werror…
-                (substitute* "CMakeLists.txt"
-                  ((" -Wformat-signedness") ""))
                 #t)))))))))
 
 (define-public dehydrated
-- 
2.41.0





  reply	other threads:[~2023-11-18  6:51 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-24  0:20 [bug#66718] [PATCH 0/6] gnu: mbedtls-apache: Update to 3.5.0 Hilton Chain via Guix-patches via
2023-10-24  0:28 ` [bug#66718] [PATCH 1/6] gnu: mbedtls-apache: Rename to mbedtls-apache-lts Hilton Chain via Guix-patches via
2023-10-24  0:28   ` [bug#66718] [PATCH 2/6] gnu: mbedtls-for-hiawatha: Use inherited source Hilton Chain via Guix-patches via
2023-10-24  0:28   ` [bug#66718] [PATCH 3/6] gnu: mbedtls-for-hiawatha: Update package style Hilton Chain via Guix-patches via
2023-10-24  0:28   ` [bug#66718] [PATCH 4/6] gnu: mbedtls-apache-lts: Update to 2.28.5 Hilton Chain via Guix-patches via
2023-10-24  0:28   ` [bug#66718] [PATCH 5/6] gnu: mbedtls-apache-lts: Use gexp Hilton Chain via Guix-patches via
2023-10-24  0:28   ` [bug#66718] [PATCH 6/6] gnu: Add mbedtls-apache, version 3.5.0 Hilton Chain via Guix-patches via
2023-11-18  6:47 ` [bug#66718] [PATCH v2 0/6] gnu: Add mbedtls, version 3.5.1 Hilton Chain via Guix-patches via
2023-11-18  6:49   ` Hilton Chain via Guix-patches via [this message]
2023-11-18  6:49   ` [bug#66718] [PATCH v2 2/6] gnu: mbedtls-for-hiawatha: Update package style Hilton Chain via Guix-patches via
2023-11-18  6:49   ` [bug#66718] [PATCH v2 3/6] gnu: mbedtls-apache: Update to 2.28.6 Hilton Chain via Guix-patches via
2023-11-18  6:49   ` [bug#66718] [PATCH v2 4/6] gnu: mbedtls-apache: Use gexp Hilton Chain via Guix-patches via
2023-11-18  6:49   ` [bug#66718] [PATCH v2 5/6] gnu: mbedtls-apache: Rename to mbedtls-lts Hilton Chain via Guix-patches via
2023-11-18  6:49   ` [bug#66718] [PATCH v2 6/6] gnu: Add mbedtls, version 3.5.1 Hilton Chain via Guix-patches via
2024-01-28 13:11 ` [bug#66718] [PATCH v3 0/6] gnu: Add mbedtls, version 3.5.2 Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 1/6] gnu: mbedtls-for-hiawatha: Use inherited source Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 2/6] gnu: mbedtls-for-hiawatha: Update package style Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 3/6] gnu: mbedtls-apache: Update to 2.28.7 Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 4/6] gnu: mbedtls-apache: Use gexps Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 5/6] gnu: mbedtls-apache: Rename to mbedtls-lts Hilton Chain via Guix-patches via
2024-01-28 13:12   ` [bug#66718] [PATCH v3 6/6] gnu: Add mbedtls, version 3.5.2 Hilton Chain via Guix-patches via
2024-02-05  7:32   ` bug#66718: [PATCH v3 0/6] " Hilton Chain via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=25db53767b5c4d1af4e2f1e8a7b86a27678a0779.1700289538.git.hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=66718@debbugs.gnu.org \
    --cc=hako@ultrarare.space \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.