From nobody Tue Oct 12 10:23:25 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id E7B9217ED33C; Tue, 12 Oct 2021 10:23:25 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HTBZj641dz4d6L; Tue, 12 Oct 2021 10:23:25 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B0473128F0; Tue, 12 Oct 2021 10:23:25 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19CANPpa022707; Tue, 12 Oct 2021 10:23:25 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19CANPWx022706; Tue, 12 Oct 2021 10:23:25 GMT (envelope-from git) Date: Tue, 12 Oct 2021 10:23:25 GMT Message-Id: <202110121023.19CANPWx022706@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: =?utf-8?Q?Vin=C3=ADcius Zavam?= Subject: git: 1231d77a5990 - main - net/ipxe: FIX failing to build while ISO=off List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: egypcio X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1231d77a59906d386cc6275a00dcec0a7dcfab5b Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by egypcio: URL: https://cgit.FreeBSD.org/ports/commit/?id=1231d77a59906d386cc6275a00dcec0a7dcfab5b commit 1231d77a59906d386cc6275a00dcec0a7dcfab5b Author: Vinícius Zavam AuthorDate: 2021-10-12 10:19:40 +0000 Commit: Vinícius Zavam CommitDate: 2021-10-12 10:19:40 +0000 net/ipxe: FIX failing to build while ISO=off * while here, update g20210727 (e09e114) to g20210910 (2265a65) Reported by: Stephane D'Alu PR: 258860 --- net/ipxe/Makefile | 14 +++++++------- net/ipxe/distinfo | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/net/ipxe/Makefile b/net/ipxe/Makefile index f27e4edd3ab3..dc87ceb2d741 100644 --- a/net/ipxe/Makefile +++ b/net/ipxe/Makefile @@ -1,7 +1,7 @@ # Created by: Guerkan Karaman PORTNAME= ipxe -DISTVERSION= g20210727 +DISTVERSION= g20210910 PORTEPOCH= 1 CATEGORIES= net @@ -17,7 +17,7 @@ USES= gmake perl5 shebangfix USE_BINUTILS= yes USE_GCC= yes:build USE_GITHUB= yes -GH_TAGNAME= e09e114 +GH_TAGNAME= 2265a65 USE_PERL5= build MAKE_ARGS= AR=${AR} \ ARCH=${ARCH:S/amd64/i386/} \ @@ -65,8 +65,10 @@ OPTIONS_DEFAULT= EFI ISO EFI_DESC= Create EFI images ISO_DESC= Create bootable CD image -EFI_BUILD_DEPENDS= bash:shells/bash \ - mformat:emulators/mtools +BUILD_DEPENDS= bash:shells/bash \ + syslinux:sysutils/syslinux + +EFI_BUILD_DEPENDS= mformat:emulators/mtools _EFI_ARCHS= ${ARCH:Mamd64:S/amd64/x86_64/} i386 _EFI_TARGETS= ipxe snp snponly .for _arch in ${_EFI_ARCHS} @@ -76,9 +78,7 @@ EFI_PLIST_FILES+= ${DATADIR}/${_target}.efi-${_arch} EFI_PLIST_FILES+= ${DATADIR}/ipxe.efi-${_arch}.usb .endfor -ISO_BUILD_DEPENDS= ${LOCALBASE}/share/syslinux/bios/core/isolinux.bin:sysutils/syslinux \ - bash:shells/bash \ - mkisofs:sysutils/cdrtools +ISO_BUILD_DEPENDS= mkisofs:sysutils/cdrtools ISO_MAKE_ARGS= ISOLINUX_BIN="${WRKSRC}/isolinux.bin" \ LDLINUX_C32="${LOCALBASE}/share/syslinux/bios/com32/elflink/ldlinux/ldlinux.c32" ISO_ALL_TARGET= bin/ipxe.iso diff --git a/net/ipxe/distinfo b/net/ipxe/distinfo index 952ce72272db..59291042d9f6 100644 --- a/net/ipxe/distinfo +++ b/net/ipxe/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628862961 -SHA256 (ipxe-ipxe-g20210727-e09e114_GH0.tar.gz) = 205308c0e39e727833d0aed39ea34b931c0208fc8af58c80b221259c988933aa -SIZE (ipxe-ipxe-g20210727-e09e114_GH0.tar.gz) = 3968724 +TIMESTAMP = 1633345261 +SHA256 (ipxe-ipxe-g20210910-2265a65_GH0.tar.gz) = 30319d1c48bac8ee0b45d69a6d72f8d80cb33aad0d6efe8e88899fa39cb6f8ff +SIZE (ipxe-ipxe-g20210910-2265a65_GH0.tar.gz) = 3970605