Mon May 9 19:35:37 2011 UTC ()
Update SBCL to version 1.0.48

changes in sbcl-1.0.48 relative to sbcl-1.0.47:
  * incompatible change: SB!KERNEL:INSTANCE-LAMBDA, deprecated for over five
    years, is now no longer supported.
  * enhancement: read() and write() have been added to SB-POSIX.
  * enhancement: types of DEFSTRUCT constructors are proclaimed more
    accurately, allowing better typechecking of call-sites.
  * enhancement: errors during compile-time-too processing (i.e. EVAL-WHEN)
    are no longer caught. (reverted to pre 1.0.34 behaviour)
  * optimization: slightly faster ISQRT. (lp#713343)
  * bug fix: better support for Solaris /bin/sh in sh-based tests.
  * bug fix: TRACE behaves better when attempting to trace undefined
    functions. (lp#740717)
  * bug fix: missed optimizations for (FUNCALL (LAMBDA ...) ...) in comparison
    to (FUNCALL #'(LAMBDA ...) ...).
  * bug fix: ((LAMBDA ...) ...) forms with invalid argument counts resulted in
    a compile-time error. (lp#720382)
  * bug fix: forms such as (FUNCALL (FUNCTION NAME OOPS) ...) were compiled
    without complaints.
  * bug fix: less verbose source forms for functions from EVAL. (lp#747485)
  * bug fix: sense of SLOT-BOUNDP-USING-CLASS was inverted in a MAKE-INSTANCE
    optimization. (regression from 1.0.45.18/1.0.46.15)
  * bug fix: package locks did not protects against compile-time side-effects
    of DEFUN. (lp#675584)
  * bug fix: --dynamic-space-size argument is validated more carefully.
    (lp#721457)
  * bug fix: memory fault from printing a malformed simple-condition.
    (lp#705690)
  * bug fix: redefining classes so that slot-definition classes change now
    engages the obsolete instance protocol. (lp#766271)
  * bug fix: constant improper lists could break source coverage recording.
    (lp#767959)
  * bug fix: compiling calls to eg. MEMBER with massive constant list arguments
    could exhaust stack.


(asau)
diff -r1.33 -r1.34 pkgsrc/lang/sbcl/Makefile
diff -r1.17 -r1.18 pkgsrc/lang/sbcl/distinfo

cvs diff -r1.33 -r1.34 pkgsrc/lang/sbcl/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/sbcl/Makefile 2011/04/20 20:46:50 1.33
+++ pkgsrc/lang/sbcl/Makefile 2011/05/09 19:35:37 1.34
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.33 2011/04/20 20:46:50 asau Exp $ 1# $NetBSD: Makefile,v 1.34 2011/05/09 19:35:37 asau Exp $
2 2
3DISTNAME= ${PKGNAME_NOREV}-source 3DISTNAME= ${PKGNAME_NOREV}-source
4PKGNAME= sbcl-1.0.47 4PKGNAME= sbcl-1.0.48
5CATEGORIES= lang 5CATEGORIES= lang
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sbcl/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sbcl/}
7EXTRACT_SUFX= .tar.bz2 7EXTRACT_SUFX= .tar.bz2
8 8
9MAINTAINER= jonb@NetBSD.org 9MAINTAINER= jonb@NetBSD.org
10HOMEPAGE= http://www.sbcl.org/ 10HOMEPAGE= http://www.sbcl.org/
11COMMENT= SBCL, a Common Lisp implementation 11COMMENT= SBCL, a Common Lisp implementation
12 12
13# SBCL creates a new release with minor updates and fixes every 13# SBCL creates a new release with minor updates and fixes every
14# month. The maintainer of this package does not have the time 14# month. The maintainer of this package does not have the time
15# to build, test, update, etc. this package that often. If you 15# to build, test, update, etc. this package that often. If you
16# would like a newer (or older) version, this works very often: 16# would like a newer (or older) version, this works very often:
17# 1) change the PKGNAME variable above as desired 17# 1) change the PKGNAME variable above as desired
@@ -65,25 +65,27 @@ SUBST_SED.fix-paths+= -e 's,/v @@ -65,25 +65,27 @@ SUBST_SED.fix-paths+= -e 's,/v
65SUBST_CLASSES+= fix-gtar 65SUBST_CLASSES+= fix-gtar
66SUBST_STAGE.fix-gtar= pre-configure 66SUBST_STAGE.fix-gtar= pre-configure
67SUBST_MESSAGE.fix-gtar= Fixing GNU tar references. 67SUBST_MESSAGE.fix-gtar= Fixing GNU tar references.
68SUBST_FILES.fix-gtar= contrib/asdf-install/installer.lisp 68SUBST_FILES.fix-gtar= contrib/asdf-install/installer.lisp
69SUBST_SED.fix-gtar= -e 's,@GTAR@,${GTAR},' 69SUBST_SED.fix-gtar= -e 's,@GTAR@,${GTAR},'
70 70
71do-build: 71do-build:
72 cd ${WRKSRC} && ${SH} make.sh --prefix=${PREFIX} --xc-host=${SBCL_BOOT_SYSTEM:Q} 72 cd ${WRKSRC} && ${SH} make.sh --prefix=${PREFIX} --xc-host=${SBCL_BOOT_SYSTEM:Q}
73post-build: 73post-build:
74 cd ${WRKSRC} && ${RM} -f contrib/sb-cover/test-output/* 74 cd ${WRKSRC} && ${RM} -f contrib/sb-cover/test-output/*
75 75
76do-install: 76do-install:
77 cd ${WRKSRC} && BUILD_ROOT=${DESTDIR:Q} INSTALL_ROOT=${PREFIX:Q} MAN_DIR=${PREFIX:Q}/${PKGMANDIR} ${SH} install.sh 77 cd ${WRKSRC} && BUILD_ROOT=${DESTDIR:Q} INSTALL_ROOT=${PREFIX:Q} MAN_DIR=${PREFIX:Q}/${PKGMANDIR} ${SH} install.sh
 78 rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/write-test.txt
 79 rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/read-test.txt
78 rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/asdf-install/installer.lisp.orig 80 rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/asdf-install/installer.lisp.orig
79 81
80do-test: 82do-test:
81 cd ${WRKSRC}/tests && ${SH} ./run-tests.sh 83 cd ${WRKSRC}/tests && ${SH} ./run-tests.sh
82 84
83.if $(LOWER_ARCH) == "amd64" || $(LOWER_ARCH) == "x86_64" 85.if $(LOWER_ARCH) == "amd64" || $(LOWER_ARCH) == "x86_64"
84PLIST_SUBST+= SUFX64=-64 86PLIST_SUBST+= SUFX64=-64
85.else 87.else
86PLIST_SUBST+= SUFX64= 88PLIST_SUBST+= SUFX64=
87.endif 89.endif
88 90
89.include "../../mk/bsd.pkg.mk" 91.include "../../mk/bsd.pkg.mk"

cvs diff -r1.17 -r1.18 pkgsrc/lang/sbcl/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/sbcl/distinfo 2011/04/20 20:46:50 1.17
+++ pkgsrc/lang/sbcl/distinfo 2011/05/09 19:35:37 1.18
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.17 2011/04/20 20:46:50 asau Exp $ 1$NetBSD: distinfo,v 1.18 2011/05/09 19:35:37 asau Exp $
2 2
3SHA1 (sbcl-1.0.47-source.tar.bz2) = 4812f7c527da88e60fce1354076263acbcaec4bd 3SHA1 (sbcl-1.0.48-source.tar.bz2) = c983d68fec66c9a9bdcefd9cbc23a3631f5515d2
4RMD160 (sbcl-1.0.47-source.tar.bz2) = 2f7ce0470b629000da464773ded23d25b28072e7 4RMD160 (sbcl-1.0.48-source.tar.bz2) = e0eaedec44fe6075f823d20f83d620e6900f5b01
5Size (sbcl-1.0.47-source.tar.bz2) = 3531790 bytes 5Size (sbcl-1.0.48-source.tar.bz2) = 3534766 bytes
6SHA1 (patch-ab) = e8420a7aa51f6920d6556e84ef3f0ca32fdeb2fd 6SHA1 (patch-ab) = e8420a7aa51f6920d6556e84ef3f0ca32fdeb2fd
7SHA1 (patch-ad) = 4a10e7d498b686a09b067c527010981c15f0f8c8 7SHA1 (patch-ad) = 4a10e7d498b686a09b067c527010981c15f0f8c8
8SHA1 (patch-ae) = ea29307779f7aede89ab368a9a7901f95d16d5b2 8SHA1 (patch-ae) = ea29307779f7aede89ab368a9a7901f95d16d5b2