Accepted sbcl 1:1.0.34.0-1 (source all amd64)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 30 Dec 2009 22:47:25 +0100
Source: sbcl
Binary: sbcl sbcl-doc sbcl-source
Architecture: source all amd64
Version: 1:1.0.34.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Common Lisp Team <pkg-common-lisp-devel@lists.alioth.debian.org>
Changed-By: Peter Van Eynde <pvaneynd@debian.org>
Description:
sbcl - A Common Lisp compiler and development system
sbcl-doc - Documentation for Steel Bank Common Lisp
sbcl-source - Source code files for SBCL
Closes: 517374 545847
Changes:
sbcl (1:1.0.34.0-1) unstable; urgency=low
.
* Import new upstream. Major changes:
+ minor incompatible change: threading support is now enabled by default
on x86[-64] Linux.
+ enhancement: SB-INTROSPECT:DEFTYPE-LAMBDA-LIST now also works on most
builtin types.
+ enhancement: Errors during compile-time-too processing (i.e. EVAL-WHEN)
are now caught and reported just like errors during macroexpansion.
+ enhancement: SB-POSIX now provides access to tcdrain(), tcflow(),
tcflush(), tcgetsid(), and tcsendbreak(). (thanks to Jerry James)
+ enhancement: ASDF systems can now depends on SB-QUEUE.
+ fixes and improvements related to Unicode and external formats:
+* bug fix: error handling and restart usage in the ucs-2 external format
has been improved.
+* there is now an implementation of the ucs-4 external format.
+* the utf-16 and utf-32 external formats are supported.
+ bug fix: SB-POSIX wrapper for putenv no longer tries to put lisp strings
in the environment. setenv() and unsetenv() are also provided.
(reported by Fare Rideau; launchpad bug lp#460455)
+ bug fix: LOAD of both .fasl and .FASL type files now forces fasl-style
loading. This ensures sensible errors for .FASL files from other
implementations on case-insensitive filesystems. (reported by Willem
Broekema; launchpad bug lp#489417)
+ bug fix: #p"\\\\" can now be read without error on Win32. (reported by
Willem Broekema; launchpad bug lp#489698).
+ bug fix: some minor code rearrangements to reenable warning-free building
from CMUCL (reported by xme@gmx.net; launchpad bug lp#491104)
+ bug fix: PRINT-OBJECT for clos instances respects the right margin when
pretty printing
+ bug fix: FIND-PACKAGE & DEFPACKAGE were not thread safe. (reported by
Attila Lendvai)
+ optimization: faster FIND and POSITION on strings of unknown element
type in high SPEED policies. (thanks to Karol Swietlicki)
+ optimization: faster CONCATENATE 'STRING in low SPEED policies
(reported by David Vázquez)
+ improvement: better error signalling for bogus parameter specializer
names in DEFMETHOD forms (reported by Pluijzer)
+ bug fix: DELETE-FILE once again works on logical pathnames (regression
since 1.0.30.49)
+ bug fix: LOGICAL-PATHNAME signals a TYPE-ERROR if pathspec is
specified incorrectly.
+ bug fix: redefinition of a class via DEFCLASS without :DEFAULT-INITARGS
removes previous default initargs (reported by Lars Rune Nøstdal and
Samium Gromoff)
+ bug fix: correct WHO-CALLS information for inlined lambdas with complex
lambda-lists. (reported by Peter Seibel)
+ bug fix: SAVE-LISP-AND-DIE option :SAVE-RUNTIME-OPTIONS did not work
correctly when starting from an executable core without saved runtime
options (reported by Faré Rideau, thanks to Zach Beane)
+ bug fix: (SETF SLOT-VALUE) signalled a warning which should have been
an optimization note instead. (reported by Martin Cracauer)
+ bug fix: WITH-SLOTS did not work with THE forms.
(thanks to David Tolpin)
+ bug fix: Have RUN-PROGRAM with :INPUT T only run the subprocess in a
new process group if it doesn't need to share stdin with the sbcl
process. (thanks to Leslie Polzer)
+ bug fix: SATISFIES could be misoptimized to refer to a local function.
(reported by Stanislaw Halik)
+ improvement: support O_LARGEFILE access to files larger than 2GB on
x86-64/linux. (thanks to Daniel Janus; launchpad bug #453080)
+ new feature: SB-INTROSPECT:WHO-SPECIALIZES-DIRECTLY to get a list of
definitions for methods specializing on the passed class itself.
+ new feature: SB-INTROSPECT:WHO-SPECIALIZES-GENERALLY to get a list of
definitions for methods specializing on the passed class itself, or on
subclasses of it.
+ new build flag: :sb-xref-for-internals; SBCL will collect xref
information about itself during the build (e.g. for M-? in Slime),
if this flag is enabled in customize-target-features.lisp. This
will increase the core size by about 5-6mb, though, so it's mostly
interesting to SBCL developers.
+ new feature: various GENCGC tuning parameters have been experimentally
documented and exported from SB-EXT. See documentation for details.
+ fixes and improvements related to Unicode and external formats:
++ the Unicode character database has been upgraded to the
Unicode 5.2 standard, giving names and properties to a number of new
characters, and providing a few extra characters with case
transformations.
++ improvement: restarts for providing replacement input/output on
coding errors for fd-stream external formats.
++ improvement: where :<encoding> is a keyword corresponding to an
external format the system supports, it is now possible to specify
(:<encoding> :replacement <character>) as an external format which
will automatically substitute <character> on encoding or decoding
errors for streams and for STRING-TO-OCTETS and its inverse.
(launchpad bug #317072)
++ improvement: the file streams underlying the standard streams
(such as +STANDARD-INPUT*, *TERMINAL-IO*) are opened with an
external format which uses the replacement mechanism to handle
encoding errors, preventing various infinite error chains and
unrecoverable I/O confusion.
++ minor incompatible change: the utf-8 external format now correctly
refuses to encode Lisp characters in the surrogate range (char-codes
between #xd800 and #xdfff).
++ fix a typo preventing conversion of strings into octet vectors
in the latin-2 encoding. (reported by Attila Lendvai; launchpad bug
#471689)
++ fix a bug in the octet multibyte handling of decoding errors and the
USE-VALUE restart. (launchpad bug #314939)
++ fix the bug underlying the expected failure in the FORCE-END-OF-FILE
restart on fd-stream decoding errors.
++ fix a bug in the ATTEMPT-RESYNC fd-stream decoding restart when the
error is near the end of file.
++ fix a double-error case in unibyte octet conversions, when the first
use of USE-VALUE is ignored.
++ fix bugs in handling of undefined code points in unibyte encodings.
++ fix LISTEN (and consequent hangs in READ-CHAR-NO-HANG) on bivalent
streams after an UNREAD-CHAR.
+ enhancement: SB-INTROSPECT:ALLOCATION-INFORMATION also reports if the
object is allocated in a boxed region of dynamic space.
+ enhancement: SB-POSIX:FORK now signals an error if an attempt to
fork with multiple Lisp threads running is made, instead of going
ahead with unpredictable consequences. (reported by Leslie Polzer)
+ bug fix: uses of slot accessors on specialized method parameters within
the bodies of SLOT-VALUE-USING-CLASS methods no longer triggers a type
error while finalizing the class. This fix may cause classes with slot
accessors to be finalized later than previously.
(reported by Lars Rune Nøstdal; launchpad bug #473699)
+ bug fix: restore buildability on the MIPS platform. (regression from
1.0.30.38, reported by Samium Gromoff)
+ bug fix: inspecting closures is less likely to fail with a type error.
+ bug fix: no timer starvation when setting the system clock back.
(launchpad bug #460283)
+ bug fix: WITH-STANDARD-IO-SYNTAX now binds *PRINT-PPRINT-DISPATCH*
to the standard pprint dispatch table as specified by CLHS.
+ bug fix: give CLISP a hint about a type declaration to enable it to
build the cross-compiler without warnings. (thanks to Josh Elasser;
launchpad bug #396597)
+ bug fix: correctly dump literal objects in defaulting forms of arglists.
(reported by Attila Lendvai; launchpad bug #310132)
+ bug fix: distinguish in type specifiers between arrays that might be
complex and arrays that are definitely complex. (launchpad bug #309129)
+ bug fix: SUBTYPEP knows that the SYMBOL type is not SUBTYPEP the KEYWORD
type. (reported by Levente Mészáros; launchpad bug #485972)
+ bug fix: setting the value of a symbol-macro within a method in the
presence of type declarations works properly again. (reported by Iban
Hatchondo; launchpad bug #485019)
* Removed the usage of dh_undocumented
* We also dropped the alpha architecture (Closes: #545847)
and powerpc (Closes: #517374)
* Removed unneeded Section from sbcl-source
Checksums-Sha1:
dd1001b840b16d0300ef0198e898ec178a1590af 1935 sbcl_1.0.34.0-1.dsc
9f01bdef062632666032258390dcfebd06714ff8 4254331 sbcl_1.0.34.0.orig.tar.gz
b8e08ecb7944103ab89408f2517412143b5c93ff 57990 sbcl_1.0.34.0-1.diff.gz
5897f4fa1d65ce28a9a0e5e0116ed6b5b5099014 1304426 sbcl-doc_1.0.34.0-1_all.deb
b0f6d3981d09d31070f58059ebb8aad1664ae40b 3491854 sbcl-source_1.0.34.0-1_all.deb
7d821e8b9410d37c104835d5faa21a9a6ee6af18 10432764 sbcl_1.0.34.0-1_amd64.deb
Checksums-Sha256:
a8207490470fb478a7be30e9cb3831409c1134bf7286311d8146282d1d4e247c 1935 sbcl_1.0.34.0-1.dsc
51af453621e4c9ff9dd9be0a213a3b3395a7751bc07adf7bd19d485ca51c9dde 4254331 sbcl_1.0.34.0.orig.tar.gz
2187a456015a335a747557913829db20f91492a874591a0e47ce7cbd9f1591cf 57990 sbcl_1.0.34.0-1.diff.gz
9fdc51d836ce927d07e88b8582a9e26643c1dbad490009b179605eb2ccf5f503 1304426 sbcl-doc_1.0.34.0-1_all.deb
c7cb8fe37e0d5eca7476fec3e9340c51841a00f859c44723513901082a6960b8 3491854 sbcl-source_1.0.34.0-1_all.deb
07b9878f23aa6bbcad0dd2113ce3046d3b4584894945cd0ef4833bcd0ed00c49 10432764 sbcl_1.0.34.0-1_amd64.deb
Files:
81f9072f0b84e0c78689cafc4d6fe97b 1935 lisp optional sbcl_1.0.34.0-1.dsc
d5af91b5add1d7abb3e5ae97e0521257 4254331 lisp optional sbcl_1.0.34.0.orig.tar.gz
a60246b2c1a6562a3af10e45f1173ed6 57990 lisp optional sbcl_1.0.34.0-1.diff.gz
31959ae893d0fa366dea3a0c07648811 1304426 doc optional sbcl-doc_1.0.34.0-1_all.deb
7a6d7a644c0753f55bd9dc4d4d07686c 3491854 lisp optional sbcl-source_1.0.34.0-1_all.deb
71188119655a1639c973e67adddc5930 10432764 lisp optional sbcl_1.0.34.0-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBCAAGBQJLPMOAAAoJEB4VNT76eIlaCh4P/3wZ4fkEe82O2tv4efZqcB+7
GsB7gsZP0kQkMwnuF/98dsPEhKKIo1RuQ4e8dxDl390uzWRanGj7yaQK7QT8I0nS
HZeeGe0jcp/1mOWk0jFrUXNHlhAWIKpCtHJ43u0FyFcN6LwgALd0pRGx7RhaEZ73
FwYMzzuTkvV8HLHN7RqlVKWAzC2RWyrDmuS5BeKc29Mp073935Q87gFnC/EQEINM
D7GkoUL7+8dPppGace+uwXdOnmnoiwbGZR2DPcuyjHD7tAiKOOH4K/5OQpeMHofH
duYeObzM0mVb7wmkLK3qJ63abLU7BHBlLLGNwpseBvjeiUCQjXHfOzPEqHDrOl0H
GEhUvysn3LNZbPeqs9Z98oxGshJ1v2IjWyDws+KO4nbR2zmgCRW2UQMMLxIzwtHv
F/6h8x0CTaQmFjpoEc/zcdfOrXBBOLPzJSRaxxXuXs1XuOiTwhiVgpDtYI094jNl
8YzKN/YgGQVzwpyMqgxOU81StytsaGrgu5dETvOClxZyfbj9jdCip2nPAz52wer0
gVVI/AEQy4cE20wObDU9Yo+THLqfbPh0KlvwH+StO5q6pbMCgs72Irqp6X/tNBUg
Z/aKSlvhSylOrjfZT4H3vUnTpmL17ZwSZOARvqhdhqRrITgqDKPIUHPk03YaPjP4
/eMPZMCHJogJJDxSIo2T
=Jkw5
-----END PGP SIGNATURE-----
Accepted:
sbcl-doc_1.0.34.0-1_all.deb
to main/s/sbcl/sbcl-doc_1.0.34.0-1_all.deb
sbcl-source_1.0.34.0-1_all.deb
to main/s/sbcl/sbcl-source_1.0.34.0-1_all.deb
sbcl_1.0.34.0-1.diff.gz
to main/s/sbcl/sbcl_1.0.34.0-1.diff.gz
sbcl_1.0.34.0-1.dsc
to main/s/sbcl/sbcl_1.0.34.0-1.dsc
sbcl_1.0.34.0-1_amd64.deb
to main/s/sbcl/sbcl_1.0.34.0-1_amd64.deb
sbcl_1.0.34.0.orig.tar.gz
to main/s/sbcl/sbcl_1.0.34.0.orig.tar.gz