From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp11.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms0.migadu.com with LMTPS id oG8eItoCUmKc9gAAgWs5BA (envelope-from ) for ; Sun, 10 Apr 2022 00:04:10 +0200 Received: from aspmx1.migadu.com ([2001:41d0:8:6d80::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp11.migadu.com with LMTPS id WKd8H9oCUmKYsAAA9RJhRA (envelope-from ) for ; Sun, 10 Apr 2022 00:04:10 +0200 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 281431B353 for ; Sun, 10 Apr 2022 00:04:10 +0200 (CEST) Received: from localhost ([::1]:35016 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ndJBg-0007jJ-Rl for larch@yhetil.org; Sat, 09 Apr 2022 18:04:08 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:46168) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ndJBa-0007gr-IL for guix-patches@gnu.org; Sat, 09 Apr 2022 18:04:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44966) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1ndJBa-0007J0-9p for guix-patches@gnu.org; Sat, 09 Apr 2022 18:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ndJBa-0005MY-6J for guix-patches@gnu.org; Sat, 09 Apr 2022 18:04:02 -0400 Subject: bug#54795: [PATCH] gnu: efivar: Fix build errors on i686-linux. Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-To: guix-patches@gnu.org Resent-Date: Sat, 09 Apr 2022 22:04:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 54795 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: itd Cc: 54795-done@debbugs.gnu.org Mail-Followup-To: 54795@debbugs.gnu.org, ludo@gnu.org, itd@net.in.tum.de Received: via spool by 54795-done@debbugs.gnu.org id=D54795.164954181920578 (code D ref 54795); Sat, 09 Apr 2022 22:04:01 +0000 Received: (at 54795-done) by debbugs.gnu.org; 9 Apr 2022 22:03:39 +0000 Received: from localhost ([127.0.0.1]:38862 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ndJBC-0005Lq-Nl for submit@debbugs.gnu.org; Sat, 09 Apr 2022 18:03:38 -0400 Received: from eggs.gnu.org ([209.51.188.92]:52774) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ndJBA-0005Lc-N3 for 54795-done@debbugs.gnu.org; Sat, 09 Apr 2022 18:03:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:57746) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ndJB3-0007F6-Gp; Sat, 09 Apr 2022 18:03:29 -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=9sEEJczEVY51h99BtmS5X0iGMwpsIoQCUsTwbZ2+CS0=; b=EhZaq7kQfxOJe2Ujcudu yODYwUUJ+Iwlg0/URQKFrCyIIZza//FR8hOm1K3hn6Ag6pamlCdegYxMDZmPtygANM0y4L3lJUb96 lkLWaxAmp92AZx40Z2MJIiPAzIsv/EemiOw4WZOhgW5+JjQ3hhvdgDDq2lnLr67OYnb9koMBM4D1M vU7F252TkIKGwcLcVxU2vnfwM2qLTQssejKM9SW5V1wsqlH14NxFTb/dkDyMDjNoYJOkipvysey9E nrv3mSvg/3Cs+ZEoJlUL7CQDowj+UuHlVO0tIminRTBoj5GLZW/qfSJPZ8M2KuP2seekXkeNgsp/R rf4CYO4nTzk23w==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:53902 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ndJB2-0005bl-Mk; Sat, 09 Apr 2022 18:03:29 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87lewf7c5w.fsf@localhost> Date: Sun, 10 Apr 2022 00:03:26 +0200 In-Reply-To: <87lewf7c5w.fsf@localhost> (itd@net.in.tum.de's message of "Fri, 08 Apr 2022 18:49:47 +0200") Message-ID: <87h7717w41.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Migadu-Flow: FLOW_IN X-Migadu-To: larch@yhetil.org X-Migadu-Country: US ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=yhetil.org; s=key1; t=1649541850; h=from:from:sender:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding:resent-to: resent-from:resent-sender:resent-message-id:in-reply-to:in-reply-to: references:references:list-id:list-help:list-unsubscribe: list-subscribe:list-post:dkim-signature; bh=9sEEJczEVY51h99BtmS5X0iGMwpsIoQCUsTwbZ2+CS0=; b=qUWSDrWG9QydSkQdqGid9fk0aOst6JW3k1xzyPEyBJjqEk2WyfOkiB3Xpi3scYBcDf6AaV RKek7LyCAp1ErzURZEoEWa9ppChzF5tcejCQke1FNbVGASxGoacpE+C9wVEZrObkFdbdF7 w1mJeu8bIswjhNc6375M6mEsMwlLk5tEhZHWV9pwcEv+i82PQ2t4dT73pcJYrzfbJam9La tO9IBEQcf0SEiuBbiEVF8EX5vtpPBhkyN/DhpFL7+LKcNP+CYw+1wNFZ40LagvBjpJ9WdT grlTNxTa3x0ItZIE6mjmT6ojFr6qcdcxgt7sUQPq05B/pDz/DsfL/cLyQ9qVOQ== ARC-Seal: i=1; s=key1; d=yhetil.org; t=1649541850; a=rsa-sha256; cv=none; b=S7tzE5WoPlQDKz9YYVDaCUw1dGIsf1LTloE39q8gWQfsRcuUdr6r29tux0STO+NQo35cza +B4DKjwGNBdKzExbjZeN5BuBB82nQoZLR7rWP8TvX08x/5mYVLZrWh94Ix1ycp0SOHdU7i TxHkiW5PihZ3zol2vIwppuifXMlyCX4AMiEsV1HK7z4LUji/rDt90l70Cz2wmnLQKNE4DI tgfqMz6HR0nd1v2neOQZNw6UU0RZ4+4bp3xiOF5scSFH4kHWyduBB0/l7Z3FmBdGIZ8LHl tK22am5q9WuHF16dG25xass3x2OKKovhy5Etsp+jYEXZCPnZCSgZkasMA0baTg== ARC-Authentication-Results: i=1; aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=EhZaq7kQ; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "guix-patches-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="guix-patches-bounces+larch=yhetil.org@gnu.org" X-Migadu-Spam-Score: -4.77 Authentication-Results: aspmx1.migadu.com; dkim=fail ("headers rsa verify failed") header.d=gnu.org header.s=fencepost-gnu-org header.b=EhZaq7kQ; dmarc=pass (policy=none) header.from=gnu.org; spf=pass (aspmx1.migadu.com: domain of "guix-patches-bounces+larch=yhetil.org@gnu.org" designates 209.51.188.17 as permitted sender) smtp.mailfrom="guix-patches-bounces+larch=yhetil.org@gnu.org" X-Migadu-Queue-Id: 281431B353 X-Spam-Score: -4.77 X-Migadu-Scanner: scn0.migadu.com X-TUID: iMvWp4s3mult Hi, itd skribis: >>>From a6a2c3b3eddbf4ff47e39cfe8265346265d22b00 Mon Sep 17 00:00:00 2001 > > * gnu/packages/patches/efivar-211.patch: New patch. > * gnu/local.mk (dist_patch_DATA): Add it. > * gnu/packages/linux.scm (efivar)[source]: Use it. I added the URL of the upstream pull request at the top of the patch and committed it. Thanks! Ludo=E2=80=99.