From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60545) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9M3Z-0001S5-AJ for guix-patches@gnu.org; Sun, 07 Oct 2018 23:18:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9M3W-0007Bn-64 for guix-patches@gnu.org; Sun, 07 Oct 2018 23:18:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35554) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g9M3W-0007Bg-2P for guix-patches@gnu.org; Sun, 07 Oct 2018 23:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g9M3V-0002BD-Qq for guix-patches@gnu.org; Sun, 07 Oct 2018 23:18:01 -0400 Subject: [bug#32982] [PATCH] gnu: u-boot: Update to 2018.09. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9M2m-000152-Kn for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g9M2g-0006nL-1v for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:13 -0400 Received: from cascadia.aikidev.net ([173.255.214.101]:41670) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g9M2X-0006Qx-TN for guix-patches@gnu.org; Sun, 07 Oct 2018 23:17:06 -0400 Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 7FEB51AA23 for ; Sun, 7 Oct 2018 20:16:52 -0700 (PDT) From: Vagrant Cascadian Date: Sun, 07 Oct 2018 20:16:47 -0700 Message-ID: <875zydyvog.fsf@aikidev.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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: 32982@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable * gnu/packages/bootloaders.scm (u-boot): Update to 2018.09. (u-boot-tools): Substitute "coverage" for "python-coverage". (u-boot-tools): Update workaround for only 99% test coverage. =2D-- gnu/packages/bootloaders.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 4ba9d2e04..e6876d359 100644 =2D-- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -360,7 +360,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") (define u-boot (package (name "u-boot") =2D (version "2018.07") + (version "2018.09") (source (origin (method url-fetch) (uri (string-append @@ -368,7 +368,7 @@ tree binary files. These are board description files u= sed by Linux and BSD.") "u-boot-" version ".tar.bz2")) (sha256 (base32 =2D "1m7nw64mxflpc6sqvnz2kb5fxfkb4mrpy8b1wi15dcwipj4dy44z"))= )) + "0s122kyz1svvs2yjzj4j9qravl3ra4vn0fjqgski7rlczqyg56w3")))) (native-inputs `(("bc" ,bc) ("bison" ,bison) @@ -403,6 +403,12 @@ also initializes the boards (RAM etc).") (("/bin/false") (which "false"))) (substitute* "tools/dtoc/fdt_util.py" (("'cc'") "'gcc'")) + (substitute* "tools/patman/test_util.py" + ;; python-coverage is simply called coverage in guix. + (("python-coverage") "coverage") + ;; Allow for only 99% test coverage. + ;; TODO: Find out why that is needed. + (("if coverage !=3D '100%':") "if not int(coverage.rstrip('%= ')) >=3D 99:")) (substitute* "test/run" ;; Make it easier to find test failures. (("#!/bin/bash") "#!/bin/bash -x") @@ -417,8 +423,6 @@ also initializes the boards (RAM etc).") (("def test_ctrl_c") "@pytest.mark.skip(reason=3D'Guix has problems with SIGINT') def test_ctrl_c")) =2D (substitute* "tools/binman/binman.py" =2D (("100%") "99%")) ; TODO: Find out why that is needed. #t)) (replace 'configure (lambda* (#:key make-flags #:allow-other-keys) =2D-=20 2.19.1 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCW7rMHwAKCRDcUY/If5cW qrxnAP4yV4oxmAMzPsxEiRBxKGGRnHIWxN2AAYOw+8AQ3+KxVwD/S7oY0gIvZ4NJ zprm963u0e46swWQ+4urpvXXFRAYiQI= =U4ox -----END PGP SIGNATURE----- --=-=-=--