pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/nasm Update to 2.03.01:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/720762a900e8
branches:  trunk
changeset: 546754:720762a900e8
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Sep 07 14:09:40 2008 +0000

description:
Update to 2.03.01:

2.03.01
-------
* Fix buffer overflow in the listing module.
* Fix the handling of hexadecimal escape codes in `...` strings.
* The Postscript/PDF documentation has been reformatted.
* The -F option now implies -g.

2.03
----
* Add support for Intel AVX, CLMUL and FMA instructions,
  including YMM registers.
* "dy", "resy" and "yword" for 32-byte operands.
* Fix some SSE5 instructions.
* Intel INVEPT, INVVPID and MOVBE instructions.
* Fix checking for critical expressions when the optimizer is enabled.
* Support the DWARF debugging format for ELF targets.
* Fix optimizations of signed bytes.
* Fix operation on bigendian machines.
* Fix buffer overflow in the preprocessor.
* SAFESEH support for Win32, IMAGEREL for Win64 (SEH).
* %? and %?? to refer to the name of a macro itself.  In particular,
  "%idefine keyword $%?" can be used to make a keyword "disappear".
* New options for dependency generation: -MD, -MF, -MP, -MT, -MQ.
* New preprocessor directives %pathsearch and %depend; INCBIN
  reimplemented as a macro.
* %include now resolves macros in a sane manner.
* %substr can now be used to get other than one-character substrings.
* New type of character/string constants, using backquotes (`...`),
  which support C-style escape sequences.
* %defstr and %idefstr to stringize macro definitions before creation.
* Fix forward references used in EQU statements.

diffstat:

 devel/nasm/Makefile         |   5 ++---
 devel/nasm/distinfo         |  11 +++++------
 devel/nasm/patches/patch-ab |  10 +++++-----
 devel/nasm/patches/patch-ad |  13 -------------
 4 files changed, 12 insertions(+), 27 deletions(-)

diffs (76 lines):

diff -r b884ccb8c3ef -r 720762a900e8 devel/nasm/Makefile
--- a/devel/nasm/Makefile       Sun Sep 07 14:05:27 2008 +0000
+++ b/devel/nasm/Makefile       Sun Sep 07 14:09:40 2008 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.36 2008/06/17 14:06:25 tron Exp $
+# $NetBSD: Makefile,v 1.37 2008/09/07 14:09:40 wiz Exp $
 
-DISTNAME=      nasm-2.02
-PKGREVISION=   1
+DISTNAME=      nasm-2.03.01
 CATEGORIES=    devel lang
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=nasm/}
 EXTRACT_SUFX=  .tar.bz2
diff -r b884ccb8c3ef -r 720762a900e8 devel/nasm/distinfo
--- a/devel/nasm/distinfo       Sun Sep 07 14:05:27 2008 +0000
+++ b/devel/nasm/distinfo       Sun Sep 07 14:09:40 2008 +0000
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.16 2008/06/17 14:06:25 tron Exp $
+$NetBSD: distinfo,v 1.17 2008/09/07 14:09:40 wiz Exp $
 
-SHA1 (nasm-2.02.tar.bz2) = 40c5b7bd73fa3f6cdf1712388ef43962185871e8
-RMD160 (nasm-2.02.tar.bz2) = 3205b97be60f05704f4b102496bfd4e331cf9116
-Size (nasm-2.02.tar.bz2) = 729602 bytes
+SHA1 (nasm-2.03.01.tar.bz2) = 45590099abaf8e46f43c430c51ec29174e33c818
+RMD160 (nasm-2.03.01.tar.bz2) = 45af4c74f0f0dc446db57155cf71ed14cca7412c
+Size (nasm-2.03.01.tar.bz2) = 767490 bytes
 SHA1 (patch-aa) = 3f05734250b81898f15fc4323d95ec5606c91cb1
-SHA1 (patch-ab) = c38aa7866a741906c6cee34a99b4cc502abdcbb0
+SHA1 (patch-ab) = 0cd095efb69cb1618062127972e61ae5b422345e
 SHA1 (patch-ac) = 35b69553570023019193c9de915913b1994dcd5b
-SHA1 (patch-ad) = a6298aea005cbac946a6e7585d11fdb98a8446cb
diff -r b884ccb8c3ef -r 720762a900e8 devel/nasm/patches/patch-ab
--- a/devel/nasm/patches/patch-ab       Sun Sep 07 14:05:27 2008 +0000
+++ b/devel/nasm/patches/patch-ab       Sun Sep 07 14:09:40 2008 +0000
@@ -1,6 +1,6 @@
-$NetBSD: patch-ab,v 1.4 2008/03/12 21:16:12 drochner Exp $
+$NetBSD: patch-ab,v 1.5 2008/09/07 14:09:40 wiz Exp $
 
---- doc/Makefile.in.orig       2008-02-19 20:08:57.000000000 +0100
+--- doc/Makefile.in.orig       2008-06-17 06:31:16.000000000 +0200
 +++ doc/Makefile.in
 @@ -8,7 +8,8 @@ prefix         = @prefix@
  exec_prefix   = @exec_prefix@
@@ -23,12 +23,12 @@
  PS2PDF          = ps2pdf              # Part of GhostScript
  
  SRCS          = nasmdoc.src
--OUT           = nasm.info nasmdoc.ps nasmdoc.pdf
-+OUT           = nasm.info nasmdoc.ps # nasmdoc.pdf
+-OUT           = info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf
++OUT           = info html nasmdoc.txt nasmdoc.ps # nasmdoc.pdf
  
  # exports
  export srcdir
-@@ -79,7 +79,8 @@ spotless: clean
+@@ -88,7 +88,8 @@ spotless: clean
        -rm -f nasmdoc*.ps inslist.src
  
  install: all
diff -r b884ccb8c3ef -r 720762a900e8 devel/nasm/patches/patch-ad
--- a/devel/nasm/patches/patch-ad       Sun Sep 07 14:05:27 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.8 2008/06/17 14:06:25 tron Exp $
-
---- preproc.c.orig     2008-02-19 19:08:57.000000000 +0000
-+++ preproc.c  2008-06-17 15:01:56.000000000 +0100
-@@ -1074,7 +1074,7 @@
-         }
- 
-         for (r = p, s = ourcopy; *r; r++) {
--          if (r > p+MAX_KEYWORD)
-+          if (r >= p+MAX_KEYWORD)
-               return tokval->t_type = TOKEN_ID; /* Not a keyword */
-             *s++ = tolower(*r);
-       }



Home | Main Index | Thread Index | Old Index