From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 15 02:40:02 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12EA8106566B for ; Tue, 15 Jul 2008 02:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D8EA18FC15 for ; Tue, 15 Jul 2008 02:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m6F2e1jF098004 for ; Tue, 15 Jul 2008 02:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m6F2e17H098003; Tue, 15 Jul 2008 02:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 15 Jul 2008 02:40:01 GMT Resent-Message-Id: <200807150240.m6F2e17H098003@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bf Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE31A106564A for ; Tue, 15 Jul 2008 02:30:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C6B908FC0A for ; Tue, 15 Jul 2008 02:30:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m6F2UpRJ053639 for ; Tue, 15 Jul 2008 02:30:51 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.2/8.14.1/Submit) id m6F2UpRa053638; Tue, 15 Jul 2008 02:30:51 GMT (envelope-from nobody) Message-Id: <200807150230.m6F2UpRa053638@www.freebsd.org> Date: Tue, 15 Jul 2008 02:30:51 GMT From: bf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/125620: [PATCH]lang/sbcl: update to 1.0.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2008 02:40:02 -0000 >Number: 125620 >Category: ports >Synopsis: [PATCH]lang/sbcl: update to 1.0.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jul 15 02:40:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: bf >Release: 7-STABLE i386 >Organization: - >Environment: >Description: "changes in sbcl-1.0.18 relative to 1.0.17: * minor incompatible change: SB-SPROF:WITH-PROFILING now by default profiles only the current thread. * minor incompatible change: changes to SYMBOL-VALUE of constants defined with DEFCONSTANT now signal an error. * enhancement: SB-SPROF now has support for wallclock profiling, and is also able to profile specific threads. REPORT output has also additional sorting options. * enhancement: better pretty-printing of DEFPACKAGE forms. (Thanks to Michael Weber) * optimization: structure allocation has been improved ** constructors created by non-toplevel DEFSTRUCTs are ~40% faster. ** out of line constructors are ~10% faster. ** inline constructors are ~15% faster. ** inline constructors are capable of dynamic extent allocation (generally on x86 and x86-64, in some cases on other platforms as well.) * optimization: simple uses of HANDLER-CASE and HANDLER-BIND no longer cons. * optimization: file compiler is now able to coalesce non-circular lists, non-base strings, and bit-vectors. Additionally, constants are never referenced through SYMBOL-VALUE at runtime. * optimization: code defining methods on PRINT-OBJECT (and other generic functions in the COMMON-LISP package) now loads faster. * bug fix: EAI_NODATA is deprecated since RFC 3493. Stop using it in sb-bsd-sockets. * bug fix: if COMPILE-FILE aborts due to an unwind, the partial fasl is now deleted. (reported by Attila Lendvai) * bug fix: READ-LINE always returned NIL for the last line in files. (reported by Yoshinori Tahara) * bug fix: more accurate disassembly annotations of foreign function calls. (thanks to Andy Hefner) * bug fix: trimming non-simple strings and non-string string designators when the there is nothing to trim works properly. (thanks to James Knight) * new feature: SB-POSIX bindings for mlockall, munlockall, and setsid. (thanks to Travis Cross) * fixed some bugs revealed by Paul Dietz' test suite: ** NIL is a valid function name (regression at 1.0.13.38) ** FILL on lists was missing its return value (regression at 1.0.12.27) ** STRING-TRIM, STRING-LEFT-TRIM, and STRING-RIGHT-TRIM did not respect fill pointers properly (regression at 1.0.12.23) ** STRING-TRIM, STRING-LEFT-TRIM, and STRING-RIGHT-TRIM did not respect displacement indices properly (regression at 1.0.12.23)" >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN sbcl.orig/Makefile sbcl/Makefile --- sbcl.orig/Makefile 2008-06-05 04:39:35.000000000 -0400 +++ sbcl/Makefile 2008-07-14 15:20:59.945195580 -0400 @@ -9,7 +9,7 @@ # PORTNAME= sbcl -PORTVERSION= 1.0.17 +PORTVERSION= 1.0.18 PORTREVISION= 0 CATEGORIES= lang lisp MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ diff -ruN sbcl.orig/distinfo sbcl/distinfo --- sbcl.orig/distinfo 2008-06-05 04:39:35.000000000 -0400 +++ sbcl/distinfo 2008-07-14 15:20:59.945195580 -0400 @@ -1,6 +1,6 @@ -MD5 (sbcl-1.0.17-source.tar.bz2) = 6f1858c98370e06f5cca7bd95227c69e -SHA256 (sbcl-1.0.17-source.tar.bz2) = c9b7b9270f709266e27e2b32d50c59d71aac909fe2d72ec4846d5932754f7487 -SIZE (sbcl-1.0.17-source.tar.bz2) = 3251964 +MD5 (sbcl-1.0.18-source.tar.bz2) = 6ae3ff8c676afd582388daa2b7259314 +SHA256 (sbcl-1.0.18-source.tar.bz2) = 090bec638688421385daff89e22d5396e5bf6e3c5adeea5154423fb6b8ac58d3 +SIZE (sbcl-1.0.18-source.tar.bz2) = 3239013 MD5 (sbcl-1.0.17-amd64-freebsd8-binary.tar.bz2) = 97c0acdaab6a0ad0101cf6d23e03176f SHA256 (sbcl-1.0.17-amd64-freebsd8-binary.tar.bz2) = 19f7a1311e2b0c7a174cce2182c9a240f0b1fe12eeb61de6e1cc253d47c4dc27 SIZE (sbcl-1.0.17-amd64-freebsd8-binary.tar.bz2) = 7786927 >Release-Note: >Audit-Trail: >Unformatted: