From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51560) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jS6Oa-0008Sa-0N for guix-patches@gnu.org; Fri, 24 Apr 2020 18:02:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jS6OZ-0001DH-AU for guix-patches@gnu.org; Fri, 24 Apr 2020 18:02:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46608) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jS6OY-0001D2-R1 for guix-patches@gnu.org; Fri, 24 Apr 2020 18:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jS6OY-0002fE-L5 for guix-patches@gnu.org; Fri, 24 Apr 2020 18:02:02 -0400 Subject: [bug#40833] [PATCH] gnu: u-boot: Update to 2020.04. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51422) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jS6NY-0007Fa-LL for guix-patches@gnu.org; Fri, 24 Apr 2020 18:01:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jS6NX-0000lq-Sz for guix-patches@gnu.org; Fri, 24 Apr 2020 18:01:00 -0400 Received: from mout.gmx.net ([212.227.15.18]:47535) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jS6NX-0000lM-8I for guix-patches@gnu.org; Fri, 24 Apr 2020 18:00:59 -0400 References: <87blni31gh.fsf@gmail.com> <87k126owtc.fsf@yucca> <87h7xaovxb.fsf@yucca> <871roeq932.fsf@gmx.com> <43a1cc04-b36f-d866-611b-ade711df23c4@gmail.com> From: Pierre Langlois In-reply-to: <43a1cc04-b36f-d866-611b-ade711df23c4@gmail.com> Date: Sat, 25 Apr 2020 00:00:47 +0200 Message-ID: <87r1wcpmr4.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40833@debbugs.gnu.org, vagrant@debian.org, m.othacehe@gmail.com Cc: Vincent Legoll , Pierre Langlois --=-=-= Content-Type: text/plain Hi all! Vincent Legoll writes: > Hello, > > On 23/04/2020 21:46, Pierre Langlois wrote: >> Switching u-boot's dependency on sdl to sdl2 fixed it for me locally! >> >> I can send a patch tomorrow if nobody beats me to it :-) > > The u-boot sandbox switched to SDL2 recently, see: > > https://gitlab.denx.de/u-boot/u-boot/-/commit/96d0cd460430f18d0f22eead5409ed3dc53b4c4e As promised, here's a patch to update u-boot again but with sdl switched to sdl2. Vagrant, I've kept you as the original author, and just added a co-authored by note in the commit message, I think that's how we do things right? Thanks, Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-u-boot-Update-to-2020.04.patch Content-Transfer-Encoding: quoted-printable >From e2ccdcd01e520c1d37a91d81acd05fbdf5044243 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 14 Apr 2020 23:14:01 -0700 Subject: [PATCH] gnu: u-boot: Update to 2020.04. * gnu/packages/bootloaders (u-boot): Update to 2020.04. [native-inputs]: Replace sdl with sdl2. Co-authored-by: Pierre Langlois --- gnu/packages/bootloaders.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 2a6e0707b2..666562762f 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -12,6 +12,7 @@ ;;; Copyright =C2=A9 2019 Mathieu Othacehe ;;; Copyright =C2=A9 2020 Bj=C3=B6rn H=C3=B6fling ;;; Copyright =C2=A9 2018, 2019, 2020 Vagrant Cascadian +;;; Copyright =C2=A9 2020 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -400,7 +401,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") (define u-boot (package (name "u-boot") - (version "2020.01") + (version "2020.04") (source (origin (method url-fetch) (uri (string-append @@ -408,7 +409,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") "u-boot-" version ".tar.bz2")) (sha256 (base32 - "1w9ml4jl15q6ixpdqzspxjnl7d3rgxd7f99ms1xv5c8869h3qida")))) + "0wjkasnz87q86hx93inspdjfjsinmxi87bcvj30c773x0fpjlwzy")))) (native-inputs `(("bc" ,bc) ("bison" ,bison) @@ -419,7 +420,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") ("python" ,python) ("python-coverage" ,python-coverage) ("python-pytest" ,python-pytest) - ("sdl" ,sdl) + ("sdl2" ,sdl2) ("swig" ,swig))) (build-system gnu-build-system) (home-page "https://www.denx.de/wiki/U-Boot/") --=20 2.26.2 --=-=-=--