summaryrefslogtreecommitdiff
path: root/devel/yasm
diff options
context:
space:
mode:
authorwiz <wiz>2006-08-12 21:05:06 +0000
committerwiz <wiz>2006-08-12 21:05:06 +0000
commitc301f7e2e9c08c2a1f671504d991f82ad3155839 (patch)
tree15b992fafee768f4d41117fee4d44fa2cec42537 /devel/yasm
parent00be0f377d565be4b00f885b017ba154355e1575 (diff)
downloadpkgsrc-c301f7e2e9c08c2a1f671504d991f82ad3155839.tar.gz
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 (limited to 'devel/yasm')
-rw-r--r--devel/yasm/Makefile7
-rw-r--r--devel/yasm/PLIST26
-rw-r--r--devel/yasm/distinfo11
-rw-r--r--devel/yasm/patches/patch-aa13
-rw-r--r--devel/yasm/patches/patch-ab13
-rw-r--r--devel/yasm/patches/patch-ac13
6 files changed, 14 insertions, 69 deletions
diff --git a/devel/yasm/Makefile b/devel/yasm/Makefile
index 6c6222fbf64..8e306e945aa 100644
--- a/devel/yasm/Makefile
+++ b/devel/yasm/Makefile
@@ -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
+MAINTAINER= shaun@inerd.com
HOMEPAGE= http://www.tortall.net/projects/yasm/
COMMENT= Complete rewrite of the NASM assembler with BSD license
diff --git a/devel/yasm/PLIST b/devel/yasm/PLIST
index 38699b8dcd7..2fda8f76a99 100644
--- a/devel/yasm/PLIST
+++ b/devel/yasm/PLIST
@@ -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/compat-queue.h
include/libyasm/coretype.h
include/libyasm/dbgfmt.h
include/libyasm/errwarn.h
-include/libyasm/expr-int.h
include/libyasm/expr.h
+include/libyasm/expr-int.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 --git a/devel/yasm/distinfo b/devel/yasm/distinfo
index 69a12b54eae..4f6fb32b447 100644
--- a/devel/yasm/distinfo
+++ b/devel/yasm/distinfo
@@ -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 --git a/devel/yasm/patches/patch-aa b/devel/yasm/patches/patch-aa
deleted file mode 100644
index dcb2830eeaf..00000000000
--- a/devel/yasm/patches/patch-aa
+++ /dev/null
@@ -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 --git a/devel/yasm/patches/patch-ab b/devel/yasm/patches/patch-ab
deleted file mode 100644
index 6755b08c8d7..00000000000
--- a/devel/yasm/patches/patch-ab
+++ /dev/null
@@ -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 --git a/devel/yasm/patches/patch-ac b/devel/yasm/patches/patch-ac
deleted file mode 100644
index e8d702d0dd2..00000000000
--- a/devel/yasm/patches/patch-ac
+++ /dev/null
@@ -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)"