diff options
author | obache <obache> | 2008-07-18 13:56:42 +0000 |
---|---|---|
committer | obache <obache> | 2008-07-18 13:56:42 +0000 |
commit | 6ed95d6f0c6792db631ebe36e55d3064b8319a18 (patch) | |
tree | cbbe46b72070906d0a047c0b5ee1c63e89b06536 /devel | |
parent | 4214b6c5d125393e3fd045e87df0d72239104a8e (diff) | |
download | pkgsrc-6ed95d6f0c6792db631ebe36e55d3064b8319a18.tar.gz |
Update arena to 0.9.13.
Patch provided by Leonardo Taccari in PR 39142.
While here define test target, confirmed to pass all tests on NetBSD/i386 4.0.
Version 0.9.13
04 Sep 2007
- make static methods calling each other work correctly
Version 0.9.12
19 Aug 2007
- change system() library function to return raw exit code
Version 0.9.11
14 Aug 2007
- change signature type to also contain the function name
- add function_name() library function
Version 0.9.10
07 Jan 2007
- fix documentation of gmtime() and localtime() to list needed argument
- add mputstring() and mgetstring() library functions
- add cfloat() library function for calling C function that expect "float"
instead of "double"
Diffstat (limited to 'devel')
-rw-r--r-- | devel/arena/Makefile | 6 | ||||
-rw-r--r-- | devel/arena/distinfo | 10 | ||||
-rw-r--r-- | devel/arena/patches/patch-aa | 4 |
3 files changed, 11 insertions, 9 deletions
diff --git a/devel/arena/Makefile b/devel/arena/Makefile index e4b63601d75..687238ebc58 100644 --- a/devel/arena/Makefile +++ b/devel/arena/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2008/06/12 02:14:21 joerg Exp $ +# $NetBSD: Makefile,v 1.6 2008/07/18 13:56:42 obache Exp $ -DISTNAME= arena-0.9.9 +DISTNAME= arena-0.9.13 CATEGORIES= devel MASTER_SITES= http://www.minimalinux.org/arena/ @@ -12,4 +12,6 @@ PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes +TEST_TARGET= test + .include "../../mk/bsd.pkg.mk" diff --git a/devel/arena/distinfo b/devel/arena/distinfo index af572b476bf..0f341766251 100644 --- a/devel/arena/distinfo +++ b/devel/arena/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2006/11/16 21:52:19 agc Exp $ +$NetBSD: distinfo,v 1.5 2008/07/18 13:56:42 obache Exp $ -SHA1 (arena-0.9.9.tar.gz) = 384e562bcab29d0c8351a2c9430277894501a09d -RMD160 (arena-0.9.9.tar.gz) = c09830b8f5344d2b765eefbf05856a3c6fe3537a -Size (arena-0.9.9.tar.gz) = 239433 bytes -SHA1 (patch-aa) = 2a5d33427ea7cf5217e4415f1a445253c862a250 +SHA1 (arena-0.9.13.tar.gz) = a558617151223192ae2851c69b90c9c230796594 +RMD160 (arena-0.9.13.tar.gz) = 76b803718301ec3178f39b159f7e70ec3aa2e3fb +Size (arena-0.9.13.tar.gz) = 253554 bytes +SHA1 (patch-aa) = 5469254bebcd11fe088d3dbb9de09ff134ceb86e diff --git a/devel/arena/patches/patch-aa b/devel/arena/patches/patch-aa index 17fac0620c9..cab53fc85d7 100644 --- a/devel/arena/patches/patch-aa +++ b/devel/arena/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1 2006/10/27 20:43:27 agc Exp $ +$NetBSD: patch-aa,v 1.2 2008/07/18 13:56:42 obache Exp $ --- tests/data/library/foreign 2006/10/17 22:11:53 1.1 +++ tests/data/library/foreign 2006/10/17 22:13:42 @@ -18,7 +18,7 @@ $NetBSD: patch-aa,v 1.1 2006/10/27 20:43:27 agc Exp $ @@ -29,9 +31,9 @@ - # 3) call C function that takes and returns float + # 3) call C function that takes and returns C double -a = dyn_call_float(libm, "fabs", -2.5); +#a = dyn_call_float(libm, "fabs", -2.5); |