From owner-svn-ports-head@freebsd.org Thu Apr 23 18:46:45 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3C1682BFF2C; Thu, 23 Apr 2020 18:46:45 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 497R9K0jcXz4Bd0; Thu, 23 Apr 2020 18:46:45 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 132C190A9; Thu, 23 Apr 2020 18:46:45 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03NIkie0081194; Thu, 23 Apr 2020 18:46:44 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03NIkhLH081187; Thu, 23 Apr 2020 18:46:43 GMT (envelope-from manu@FreeBSD.org) Message-Id: <202004231846.03NIkhLH081187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Thu, 23 Apr 2020 18:46:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532703 - in head/sysutils: u-boot-duovero u-boot-master u-boot-pandaboard u-boot-rock64 u-boot-rpi3 u-boot-rpi4 X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/sysutils: u-boot-duovero u-boot-master u-boot-pandaboard u-boot-rock64 u-boot-rpi3 u-boot-rpi4 X-SVN-Commit-Revision: 532703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Apr 2020 18:46:45 -0000 Author: manu Date: Thu Apr 23 18:46:43 2020 New Revision: 532703 URL: https://svnweb.freebsd.org/changeset/ports/532703 Log: sysutils/u-boot: Update to 2020.04 While here use python3 for it as it now works. Two slave ports have been marked broken : u-boot-pandaboard and u-boot-duovero Both of those boards have ~0 users in FreeBSD so if you are one of those raise your hand. Modified: head/sysutils/u-boot-duovero/Makefile head/sysutils/u-boot-master/Makefile head/sysutils/u-boot-master/distinfo head/sysutils/u-boot-pandaboard/Makefile head/sysutils/u-boot-rock64/Makefile head/sysutils/u-boot-rpi3/Makefile head/sysutils/u-boot-rpi4/Makefile Modified: head/sysutils/u-boot-duovero/Makefile ============================================================================== --- head/sysutils/u-boot-duovero/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-duovero/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -6,4 +6,6 @@ MODEL= duovero BOARD_CONFIG= duovero_defconfig FAMILY= omap +BROKEN= Does not build anymore + .include "${MASTERDIR}/Makefile" Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-master/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -21,8 +21,8 @@ BUILD_DEPENDS+= gsed:textproc/gsed \ mkimage:sysutils/u-boot-tools BUILD_DEPENDS+= ${COMPILER}:devel/${COMPILER} -USES= bison gmake python:2.7,build shebangfix tar:bz2 -BINARY_ALIAS= bison=${LOCALBASE}/bin/bison dtc=${LOCALBASE}/bin/dtc sed=gsed swig=swig3.0 python2=python2.7 +USES= bison gmake python:3.7,build shebangfix tar:bz2 +BINARY_ALIAS= bison=${LOCALBASE}/bin/bison dtc=${LOCALBASE}/bin/dtc sed=gsed swig=swig3.0 python3=python3.7 SHEBANG_FILES= tools/binman/binman.py arch/arm/mach-rockchip/make_fit_atf.py SSP_UNSAFE= yes @@ -108,7 +108,7 @@ UBOOT_METADATA_ARMADA38X_RAW_BS= 512 .if !defined(UBOOT_VERSION) && defined(UBOOT_VERSION_${FAMILY:tu}) UBOOT_VERSION=${UBOOT_VERSION_${FAMILY:tu}} .endif -UBOOT_VERSION?= 2019.10 +UBOOT_VERSION?= 2020.04 # If a slave port defines a PORTREVISION use it .if defined(U_BOOT_SLAVE_PORTREVISION_${UBOOT_VERSION}) Modified: head/sysutils/u-boot-master/distinfo ============================================================================== --- head/sysutils/u-boot-master/distinfo Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-master/distinfo Thu Apr 23 18:46:43 2020 (r532703) @@ -1,6 +1,6 @@ -TIMESTAMP = 1584323217 -SHA256 (u-boot/u-boot-2019.10.tar.bz2) = 8d6d6070739522dd236cba7055b8736bfe92b4fac0ea18ad809829ca79667014 -SIZE (u-boot/u-boot-2019.10.tar.bz2) = 14214608 +TIMESTAMP = 1586872320 +SHA256 (u-boot/u-boot-2020.04.tar.bz2) = fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372 +SIZE (u-boot/u-boot-2020.04.tar.bz2) = 15065656 SHA256 (u-boot/939129/raw) = 2a4ebf283aec8e74ec77b3cb071c6883f73807454ca94fea78361c7391187b97 SIZE (u-boot/939129/raw) = 310 SHA256 (u-boot/1036621/raw) = 28dbd66d14fab9dc782ce091d3c132a226b8425f6503c329ee8a7031b79b52f7 Modified: head/sysutils/u-boot-pandaboard/Makefile ============================================================================== --- head/sysutils/u-boot-pandaboard/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-pandaboard/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -6,4 +6,6 @@ MODEL= pandaboard BOARD_CONFIG= omap4_panda_defconfig FAMILY= omap +BROKEN= Does not build anymore + .include "${MASTERDIR}/Makefile" Modified: head/sysutils/u-boot-rock64/Makefile ============================================================================== --- head/sysutils/u-boot-rock64/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-rock64/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -2,12 +2,6 @@ MASTERDIR= ${.CURDIR}/../u-boot-master -U_BOOT_SLAVE_PORTREVISION_2019.10= 1 - -PATCHFILES+= 1173473/raw \ - 1172554/raw \ - 1172555/raw - MODEL= rock64 BOARD_CONFIG= rock64-rk3328_defconfig FAMILY= rk3328 Modified: head/sysutils/u-boot-rpi3/Makefile ============================================================================== --- head/sysutils/u-boot-rpi3/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-rpi3/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -2,8 +2,6 @@ MASTERDIR= ${.CURDIR}/../u-boot-master -U_BOOT_SLAVE_PORTREVISION_2019.10= 1 - EXTRA_PATCHES= ${.CURDIR}/files/ PATCHFILES+= 939129/raw # Allow variable reservation of lowest pages for increased PSCI stub size. Modified: head/sysutils/u-boot-rpi4/Makefile ============================================================================== --- head/sysutils/u-boot-rpi4/Makefile Thu Apr 23 18:42:44 2020 (r532702) +++ head/sysutils/u-boot-rpi4/Makefile Thu Apr 23 18:46:43 2020 (r532703) @@ -2,8 +2,6 @@ MASTERDIR= ${.CURDIR}/../u-boot-master -U_BOOT_SLAVE_PORTREVISION_2019.10= 1 - EXTRA_PATCHES= ${.CURDIR}/files/ PATCHFILES+= 939129/raw # Updated libfdt, pre-req to the next set