From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 19 11:45:57 2022 Received: (at submit) by debbugs.gnu.org; 19 Feb 2022 16:45:57 +0000 Received: from localhost ([127.0.0.1]:58626 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nLSrt-0002AM-53 for submit@debbugs.gnu.org; Sat, 19 Feb 2022 11:45:57 -0500 Received: from lists.gnu.org ([209.51.188.17]:45330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nLSrq-0002AE-Nm for submit@debbugs.gnu.org; Sat, 19 Feb 2022 11:45:55 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46242) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nLSrp-0006y0-IV for guix-patches@gnu.org; Sat, 19 Feb 2022 11:45:54 -0500 Received: from mail-40136.proton.ch ([185.70.40.136]:15085) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nLSrL-0004Oh-LX for guix-patches@gnu.org; Sat, 19 Feb 2022 11:45:52 -0500 Date: Sat, 19 Feb 2022 16:45:10 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=elenq.tech; s=protonmail2; t=1645289112; bh=ChthDQa1bh8n/kwfM4J54fMW9KYJoZavlHPgj/5lqnc=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc:Date:Subject: Reply-To:Feedback-ID:Message-ID; b=hXuq3z4KVBma4rhSKoJLUPQYBPkrOoc8rN0bJj91dT3LQn+FcaIc0x7aRkJaXGCdq soK7EqQC9VG9XTj/mzWGiiVDTBzxYnx+UBYZaRanjbFy4ouzOJ6ZSxRVB2eOvsS8iU +UUQOpyX1XO9WKAI+Wlr381Wvf+6GyysZuUBZw2MtgXNZzxkytURDGmew6/v/nWa1u OcHqTrDZnYAw5kE//fawwaGO5BnCCYePlRobXOMzLlMC8KBlbX/m9E2Xck4heNuFMB VPzBCAOMBbwICfXRAGaJbgwzFCAHaxbWTV6/LpmtFrvq1N6pLoNdQE1vFfO1eGuj92 Gp+PqRSYbj+zg== To: "guix-patches@gnu.org" From: Ekaitz Zarraga Subject: [PATCH]: Update mesa to 21.3.6 (fixup release) Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=185.70.40.136; envelope-from=ekaitz@elenq.tech; helo=mail-40136.proton.ch X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=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 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: , Reply-To: Ekaitz Zarraga Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) >From a8dbe13a127cd29c87f9ab70c421661e393d53b6 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sat, 19 Feb 2022 17:43:46 +0100 Subject: [PATCH] gnu: mesa: Update to 21.3.6. * gnu/packages/gl.scm (mesa): Update to 21.3.6. --- gnu/packages/gl.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 0ff39dc24d..470c9094c7 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -260,7 +260,7 @@ (define libva-without-mesa (define-public mesa (package (name "mesa") - (version "21.3.2") + (version "21.3.6") (source (origin (method url-fetch) @@ -272,7 +272,7 @@ (define-public mesa version "/mesa-" version ".tar.xz"))) (sha256 (base32 - "1g96y59bw10ml8h4jl259g41jdmf5ww3jbwqpz1sprq7hgxvmrz2")) + "0dk717mrp59i6wgf5nir7126hmjw48jw1z15s10smsa6slgpdfwn")) (patches (search-patches "mesa-skip-tests.patch")))) (build-system meson-build-system) -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 22 14:51:09 2022 Received: (at 54066) by debbugs.gnu.org; 22 Feb 2022 19:51:09 +0000 Received: from localhost ([127.0.0.1]:42698 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMbBk-0003qb-PL for submit@debbugs.gnu.org; Tue, 22 Feb 2022 14:51:08 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:26097) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nMbBj-0003q4-5F for 54066@debbugs.gnu.org; Tue, 22 Feb 2022 14:51:07 -0500 Date: Tue, 22 Feb 2022 19:50:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1645559460; bh=7T2znMCdKC2imODwQOO+uiTsQmVlUb9p0JN68gWsqhM=; h=Date:To:From:Reply-To:Subject:Message-ID:From:To:Cc:Date:Subject: Reply-To:Feedback-ID:Message-ID; b=VjKmg+xoTAtdB8fqUYBx0xVLDdqmJ9I8bhkKCJtq0lyvVXTnRdaDgsYFnWxO0D8oe L4XjAQQxyMB6sh7JtxQn3gyLLuTzzO3/U8QGiX4PobD4GCgWBc1A1s9wipFzcZBeFd ZOGW+/mE+7f5wOWyL66GiybgmasZj1svT9OfPBkcs9Vw5GA9njUymqCZfTBwe34AWQ CBGBDBHpN8N2PQwyWVxuu/jrTWIE5Gpk+zyQr2bdpOlUYdQk5FruJXnpobSR5qkZJi wZtQ9jBN8KtrVVDcMy23xE5R2DphyL5XEX0iE33WhE+Y9eb4PfgdPS2DrojY5i1cUK lsDBqvlw3+/fw== To: "54066@debbugs.gnu.org" <54066@debbugs.gnu.org> From: John Kehayias Subject: Re: [PATCH]: Update mesa to 21.3.6 (fixup release) Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 54066 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: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Thanks for the patch! I had just done a similar one locally and confirm tha= t everything built fine on x86-64. The last mesa update was part of core-updates(-frozen), but I heard in the = past it went into staging. These days, at least, mesa moves quickly, updati= ng every few weeks (the last few all 2 weeks or so apart). So, I'd like to propose we set up a branch on the CI to build this mesa upd= ate to then push to master once we confirm no big breakage in building. The= n we would have substitutes right away, which I think would be one of the b= ig concerns with updating something like mesa (again, since this is a set o= f minor bugfix releases). We could batch a few other changes to deploy at the same time, maybe the re= cent security grafts? It would be great to leverage that CI to move quickly on updates like mesa = which won't (we'll check!) be introducing breaking changes, merely lots of = rebuilds. Likewise with grafts->updates, though I'm less familiar with what= to look out for there. I suppose this is sort of the staging branch idea, = but maybe a smaller scale and quicker. Mesa, for instance, would likely hav= e a new version(s) if this is stretched over a month or two. WDYT? From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 03 11:05:56 2022 Received: (at 54066) by debbugs.gnu.org; 3 Mar 2022 16:05:56 +0000 Received: from localhost ([127.0.0.1]:43485 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nPnxk-0000QF-G9 for submit@debbugs.gnu.org; Thu, 03 Mar 2022 11:05:56 -0500 Received: from mail-40133.protonmail.ch ([185.70.40.133]:26634) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nPnxi-0000Pw-FC for 54066@debbugs.gnu.org; Thu, 03 Mar 2022 11:05:55 -0500 Date: Thu, 03 Mar 2022 16:05:47 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1646323548; bh=v6Ldybcw9irRp+oB70oWFn+lW7pbiCqFpG+ANb+M1WM=; h=Date:To:From:Reply-To:Subject:Message-ID:In-Reply-To:References: From:To:Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=EzYmyYlgcLFTtBBxf0XM+Hi55OHxf/njV59KXgAQpfLnubEt4mTtZnnpJ11YZcLXP PDtkiMn4cjynwem6w84xGU6tf8fKXamLTJr4CQJndq5Y9JyZrG3kpJFGxiKHXEVEl/ 0Yz2b8j0+CInHwvy6qxGq0UBxvab/Ys35kfYJJfgw86gc+qclhv6DqWc3JwtAARg5O EhzzmLw+7/spdw2MgGmGPOhCzcc0tlMy+UgaVxO+ssbCggPV35MBF4F08CtsHxtgQX vN6BRZdAd/Ma/ez0+i4peg7NAl+2Teg/ptDA5PLkfrFOLnFddKh6J2cKOD/PVcJ3av Vt83IU/Ux7ZDg== To: "54066@debbugs.gnu.org" <54066@debbugs.gnu.org> From: John Kehayias Subject: Re: [PATCH]: Update mesa to 21.3.6 (fixup release) Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 54066 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: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) ------- Original Message ------- On Tuesday, February 22nd, 2022 at 2:50 PM, John Kehayias wrote: ... > It would be great to leverage that CI to move quickly on updates like mes= a which won't (we'll check!) be introducing breaking changes, merely lots o= f rebuilds. Likewise with grafts->updates, though I'm less familiar with wh= at to look out for there. I suppose this is sort of the staging branch idea= , but maybe a smaller scale and quicker. Mesa, for instance, would likely h= ave a new version(s) if this is stretched over a month or two. > Indeed, just after this message Mesa released 21.3.7. Any support for a quick staging type branch to build changes, check for any= major build failures, and then push to master with the substitutes? From debbugs-submit-bounces@debbugs.gnu.org Sun May 15 10:03:42 2022 Received: (at 54066-done) by debbugs.gnu.org; 15 May 2022 14:03:42 +0000 Received: from localhost ([127.0.0.1]:50333 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nqEqU-0005y3-BK for submit@debbugs.gnu.org; Sun, 15 May 2022 10:03:42 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39520) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nqEqS-0005xm-8P; Sun, 15 May 2022 10:03:40 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:47774) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nqEqM-00086u-Fj; Sun, 15 May 2022 10:03:34 -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=GDEp1HSgoY86UmOismWkJjoSzo3tcSnXLAhoCzcsCGQ=; b=WZ+iE1SMBdvMEAFtGNI9 tb/MyL0X7+DoGfkIBAp9RRTmaKUS98LrKefNzUgL+ZXOkx9m/+kKv/pJhIOEzUzGjdo5L17gdwfGQ g/tW1ErDfZfVv9EQbPSernS5vQMNP1iMkw+BwkLNbPY9yJNoHV/fq7IapGlZbSQZA4Z7PQzND5XEu +E136bS458z8DuguM4mZ/Tpj8mOM9/oMA0kpmIOb022lTqtxR+BRj3re/nzAgB/0FC6tfrwfrNe18 N07TXUm/OQki/2a6GKoqIEnGJhnHNt4LtF6UP9K6CHe0iDov5BARe/3SDBYemVx++WOkbw3naV69m dTUYQLY65VMBGw==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201]:55946 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nqEqM-0003KC-0s; Sun, 15 May 2022 10:03:34 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Ekaitz Zarraga , "Wamm K. D" Subject: Re: bug#54066: [PATCH]: Update mesa to 21.3.6 (fixup release) References: Date: Sun, 15 May 2022 16:03:31 +0200 In-Reply-To: (Ekaitz Zarraga's message of "Sat, 19 Feb 2022 16:45:10 +0000") Message-ID: <87h75qevv0.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-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54066-done Cc: 54522-done@debbugs.gnu.org, 54066-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: -3.3 (---) Hi, I updated Mesa to 21.3.8 on =E2=80=98staging=E2=80=99 in commit d0951c288b97db42c470506ec62f4e14a76774b1. Sorry that it took so long! Ludo=E2=80=99. From unknown Mon Jun 23 09:41:03 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 13 Jun 2022 11:24:09 +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