pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/yasm Update to 0.5.0, provided by the new mainta...
details: https://anonhg.NetBSD.org/pkgsrc/rev/979ec69d9f79
branches: trunk
changeset: 517494:979ec69d9f79
user: wiz <wiz%pkgsrc.org@localhost>
date: Sat Aug 12 21:05:06 2006 +0000
description:
Update to 0.5.0, provided by the new maintainer, Shaun Amott, in PR 34190.
New features in this release (compared to 0.5.0rc2):
- Support for arithmetic on single-character constants.
- Support for OUTPUT_FORMAT as an alias for YASM_OBJFMT.
- A couple of other bugfixes.
New features in this release (compared to 0.5.0rc1):
- Support for CodeView 8.0 source debugging (as used by Visual Studio
2005).
- Fixed -I support to properly handle relative paths (now the search
pattern is essentially identical to most C compilers). This change is
backwards incompatible (to both NASM and earlier Yasm versions), but
is much more consistent.
- Standard macros that provide version information: __YASM_MAJOR__,
__YASM_MINOR__, __YASM_SUBMINOR__, __YASM_BUILD__, __YASM_VERSION_ID__
and __YASM_VER__.
New features in this release (compared to 0.4.0) include:
- Aliases for AMD64 object formats: "win64" and "elf64" (these
automatically set the machine to "amd64").
- "x64" alias for Win64 object format (for easier use with Visual
Studio).
- DWARF2 debugging format (enable with "-g dwarf2").
- GAS parser good enough to take GCC output for both AMD64 and 32-bit
x86 (including DWARF2 debug information).
- Dozens of bugfixes in x86 and AMD64 support.
- Specifying "amd64" as the machine (or using a 64-bit object format)
automatically sets BITS 64.
Known issues with this release include:
- List output is buggy and often outright wrong.
- The optimizer is a very basic 2-pass style and generates inefficient
(large) code at times.
- The binary object format does not yet support sections other than
.text, .bss, and .data, unlike newer versions of NASM (see Trac bug
#71).
diffstat:
devel/yasm/Makefile | 7 +++----
devel/yasm/PLIST | 26 +++++++-------------------
devel/yasm/distinfo | 11 ++++-------
devel/yasm/patches/patch-aa | 13 -------------
devel/yasm/patches/patch-ab | 13 -------------
devel/yasm/patches/patch-ac | 13 -------------
6 files changed, 14 insertions(+), 69 deletions(-)
diffs (140 lines):
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/Makefile
--- a/devel/yasm/Makefile Sat Aug 12 16:23:19 2006 +0000
+++ b/devel/yasm/Makefile Sat Aug 12 21:05:06 2006 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.16 2006/04/13 18:27:24 jlam Exp $
+# $NetBSD: Makefile,v 1.17 2006/08/12 21:05:06 wiz Exp $
#
-DISTNAME= yasm-0.4.0
-PKGREVISION= 1
+DISTNAME= yasm-0.5.0
CATEGORIES= devel
MASTER_SITES= http://www.tortall.net/projects/yasm/releases/
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+MAINTAINER= shaun%inerd.com@localhost
HOMEPAGE= http://www.tortall.net/projects/yasm/
COMMENT= Complete rewrite of the NASM assembler with BSD license
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/PLIST
--- a/devel/yasm/PLIST Sat Aug 12 16:23:19 2006 +0000
+++ b/devel/yasm/PLIST Sat Aug 12 21:05:06 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2005/12/04 20:00:01 kristerw Exp $
+@comment $NetBSD: PLIST,v 1.5 2006/08/12 21:05:06 wiz Exp $
bin/yasm
include/libyasm.h
include/libyasm/arch.h
@@ -10,38 +10,26 @@
include/libyasm/coretype.h
include/libyasm/dbgfmt.h
include/libyasm/errwarn.h
+include/libyasm/expr.h
include/libyasm/expr-int.h
-include/libyasm/expr.h
include/libyasm/file.h
include/libyasm/floatnum.h
include/libyasm/hamt.h
include/libyasm/intnum.h
include/libyasm/linemgr.h
include/libyasm/listfmt.h
+include/libyasm/md5.h
+include/libyasm/module.h
include/libyasm/objfmt.h
include/libyasm/optimizer.h
include/libyasm/parser.h
+include/libyasm/phash.h
include/libyasm/preproc.h
include/libyasm/section.h
include/libyasm/symrec.h
include/libyasm/valparam.h
-lib/libyasm.la
-lib/yasm/arch_lc3b.la
-lib/yasm/arch_x86.la
-lib/yasm/dbgfmt_null.la
-lib/yasm/dbgfmt_stabs.la
-lib/yasm/listfmt_nasm.la
-lib/yasm/objfmt_bin.la
-lib/yasm/objfmt_coff.la
-lib/yasm/objfmt_dbg.la
-lib/yasm/objfmt_elf.la
-lib/yasm/objfmt_win32.la
-lib/yasm/objfmt_xdf.la
-lib/yasm/optimizer_basic.la
-lib/yasm/parser_nasm.la
-lib/yasm/preproc_nasm.la
-lib/yasm/preproc_raw.la
+include/libyasm/value.h
+lib/libyasm.a
man/man1/yasm.1
man/man7/yasm_arch.7
-@dirrm lib/yasm
@dirrm include/libyasm
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/distinfo
--- a/devel/yasm/distinfo Sat Aug 12 16:23:19 2006 +0000
+++ b/devel/yasm/distinfo Sat Aug 12 21:05:06 2006 +0000
@@ -1,8 +1,5 @@
-$NetBSD: distinfo,v 1.4 2005/12/04 20:00:01 kristerw Exp $
+$NetBSD: distinfo,v 1.5 2006/08/12 21:05:06 wiz Exp $
-SHA1 (yasm-0.4.0.tar.gz) = 46f3666b0aabd64898066c37c4a3141dc7e94129
-RMD160 (yasm-0.4.0.tar.gz) = 714b54d30208112f012564f9ec4860375eae65d2
-Size (yasm-0.4.0.tar.gz) = 1116987 bytes
-SHA1 (patch-aa) = 30430443ba6826fd55019f02947bf287ffbd109c
-SHA1 (patch-ab) = 41d6252586451e624f6cabd1e7335b50344f4d06
-SHA1 (patch-ac) = bdc920d91cd6a1cf3a8382be2dda071bc362b257
+SHA1 (yasm-0.5.0.tar.gz) = 2880d5a330a9948cb9ac3a5cb95d94a8ea704cde
+RMD160 (yasm-0.5.0.tar.gz) = 76893c8ea4552c1a580c78b8548e84338b1cf51c
+Size (yasm-0.5.0.tar.gz) = 1171590 bytes
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/patches/patch-aa
--- a/devel/yasm/patches/patch-aa Sat Aug 12 16:23:19 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2005/12/04 20:00:01 kristerw Exp $
-
---- m4/Makefile.in.orig 2004-10-31 13:00:09.000000000 +0900
-+++ m4/Makefile.in 2005-06-05 01:46:32.000000000 +0900
-@@ -45,7 +45,7 @@
- $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
--mkinstalldirs = $(mkdir_p)
-+mkinstalldirs = mkdir -p
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
- SOURCES =
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/patches/patch-ab
--- a/devel/yasm/patches/patch-ab Sat Aug 12 16:23:19 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/12/04 20:00:01 kristerw Exp $
-
---- Makefile.in.orig 2004-10-31 13:00:08.000000000 +0900
-+++ Makefile.in 2005-06-05 01:46:38.000000000 +0900
-@@ -192,7 +192,7 @@
- $(ACLOCAL_M4)
- am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
- configure.lineno configure.status.lineno
--mkinstalldirs = $(mkdir_p)
-+mkinstalldirs = mkdir -p
- CONFIG_HEADER = config.h
- CONFIG_CLEAN_FILES =
- am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(modincludedir)"
diff -r 683cbced93f7 -r 979ec69d9f79 devel/yasm/patches/patch-ac
--- a/devel/yasm/patches/patch-ac Sat Aug 12 16:23:19 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2005/12/04 20:00:01 kristerw Exp $
-
---- libltdl/Makefile.in.orig 2004-10-31 13:00:09.000000000 +0900
-+++ libltdl/Makefile.in 2005-06-05 01:48:33.000000000 +0900
-@@ -51,7 +51,7 @@
- $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
--mkinstalldirs = $(mkdir_p)
-+mkinstalldirs = mkdir -p
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
- am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"
Home |
Main Index |
Thread Index |
Old Index