Date: Sat, 14 Jan 2017 14:20:04 +0100 From: Emmanuel Vadot <manu@bidouilliste.com> To: Brad Davis <brd@FreeBSD.org>, Warner Losh <imp@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r431424 - head/sysutils/u-boot-master Message-ID: <20170114142004.15089c4ba29e1d5b77a1ad14@bidouilliste.com> In-Reply-To: <201701132104.v0DL41a7063137@repo.freebsd.org> References: <201701132104.v0DL41a7063137@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Thanks Brad, The patch to use /usr/bin/env has been upstreamed and is in v2017.01 (https://github.com/u-boot/u-boot/blob/v2017.01/tools/binman/binman.py). Warner, is your tree up to date with upstream tag v2017.01 ? On Fri, 13 Jan 2017 21:04:01 +0000 (UTC) Brad Davis <brd@FreeBSD.org> wrote: > Author: brd > Date: Fri Jan 13 21:04:00 2017 > New Revision: 431424 > URL: https://svnweb.freebsd.org/changeset/ports/431424 > > Log: > Fix python usage. Which fixes u-boot-bananapi, u-boot-rpi3, and > u-boot-beaglebone. > > Approved by: imp, bdrewery (implicit) > > Modified: > head/sysutils/u-boot-master/Makefile > > Modified: head/sysutils/u-boot-master/Makefile > ============================================================================== > --- head/sysutils/u-boot-master/Makefile Fri Jan 13 20:12:31 2017 (r431423) > +++ head/sysutils/u-boot-master/Makefile Fri Jan 13 21:04:00 2017 (r431424) > @@ -17,15 +17,15 @@ LICENSE= GPLv2 > BUILD_DEPENDS= arm-none-eabi-gcc:devel/arm-none-eabi-gcc \ > gsed:textproc/gsed \ > swig3.0:devel/swig30 \ > - python:lang/python2 \ > ${LOCALBASE}/bin/dtc:sysutils/dtc > > -USES= gmake > +USES= gmake python:build shebangfix > > USE_GITHUB= yes > GH_ACCOUNT= bsdimp > GH_PROJECT= u-boot > > +SHEBANG_FILES= tools/binman/binman.py > SSP_UNSAFE= yes > UBOOT_DIR= share/u-boot/${PORTNAME}${PKGNAMESUFFIX} > INST= ${PREFIX}/${UBOOT_DIR} > @@ -37,13 +37,13 @@ NO_ARCH= yes > > # Sanity checks > .if !defined(MODEL) > -IGNORE+= "MODEL is not defined" > +IGNORE+= MODEL is not defined > .endif > .if !defined(BOARD_CONFIG) > -IGNORE+= "BOARD_CONFIG is not defined" > +IGNORE+= BOARD_CONFIG is not defined > .endif > .if !defined(FAMILY) > -IGNORE+= "FAMILY is not defined" > +IGNORE+= FAMILY is not defined > .endif > > # Defines for OMAP family > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" -- Emmanuel Vadot <manu@bidouilliste.com> <manu@freebsd.org>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20170114142004.15089c4ba29e1d5b77a1ad14>