Date: Mon, 20 Jul 2020 18:22:03 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542660 - in head/devel/nasm: . files Message-ID: <202007201822.06KIM3v4063336@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zeising Date: Mon Jul 20 18:22:03 2020 New Revision: 542660 URL: https://svnweb.freebsd.org/changeset/ports/542660 Log: devel/nasm: Update to 2.15.03 Update devel/nasm to 2.15.03 Add a patch to fix nasm's ELF_OSABI field when emitting object files [1] Changelog: https://nasm.us/doc/nasmdocc.html PR: 245069 [1] Submitted by: dim [1] Reported by: unitrunker gmail com [1] MFH: 2020Q3 Added: head/devel/nasm/files/ head/devel/nasm/files/patch-output_outelf.c (contents, props changed) Modified: head/devel/nasm/Makefile head/devel/nasm/distinfo Modified: head/devel/nasm/Makefile ============================================================================== --- head/devel/nasm/Makefile Mon Jul 20 17:53:49 2020 (r542659) +++ head/devel/nasm/Makefile Mon Jul 20 18:22:03 2020 (r542660) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nasm -PORTVERSION= 2.14.02 +PORTVERSION= 2.15.02 PORTEPOCH= 1 CATEGORIES= devel lang MASTER_SITES= https://www.nasm.us/pub/nasm/releasebuilds/${PORTVERSION}/ \ Modified: head/devel/nasm/distinfo ============================================================================== --- head/devel/nasm/distinfo Mon Jul 20 17:53:49 2020 (r542659) +++ head/devel/nasm/distinfo Mon Jul 20 18:22:03 2020 (r542660) @@ -1,5 +1,5 @@ -TIMESTAMP = 1546207834 -SHA256 (nasm-2.14.02.tar.xz) = e24ade3e928f7253aa8c14aa44726d1edf3f98643f87c9d72ec1df44b26be8f5 -SIZE (nasm-2.14.02.tar.xz) = 827620 -SHA256 (nasm-2.14.02-xdoc.tar.xz) = 5bc115e176521066f2c0678e784103817cb5767f317fdeae2ebf9416f8e893a5 -SIZE (nasm-2.14.02-xdoc.tar.xz) = 742792 +TIMESTAMP = 1594153325 +SHA256 (nasm-2.15.02.tar.xz) = f4fd1329b1713e1ccd34b2fc121c4bcd278c9f91cc4cb205ae8fcd2e4728dd14 +SIZE (nasm-2.15.02.tar.xz) = 978012 +SHA256 (nasm-2.15.02-xdoc.tar.xz) = a2ec81aeb86b61dee8e43bdc561449119a65fb429efa48abdc569dc7471b1981 +SIZE (nasm-2.15.02-xdoc.tar.xz) = 809736 Added: head/devel/nasm/files/patch-output_outelf.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nasm/files/patch-output_outelf.c Mon Jul 20 18:22:03 2020 (r542660) @@ -0,0 +1,11 @@ +--- output/outelf.c.orig 2020-07-02 04:44:07 UTC ++++ output/outelf.c +@@ -248,7 +248,7 @@ static int32_t elf_gotpc_sect, elf_gotoff_sect; + static int32_t elf_got_sect, elf_plt_sect; + static int32_t elf_sym_sect, elf_gottpoff_sect, elf_tlsie_sect; + +-uint8_t elf_osabi = 0; /* Default OSABI = 0 (System V or Linux) */ ++uint8_t elf_osabi = 9; /* Default OSABI = 9 (FreeBSD) */ + uint8_t elf_abiver = 0; /* Current ABI version */ + + /* Known sections with nonstandard defaults. -n means n*pointer size. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007201822.06KIM3v4063336>