[ubuntu/wily-proposed] sbcl 2:1.2.11-2ubuntu1 (Accepted)

Logan Rosen logan at ubuntu.com
Mon May 25 05:46:25 UTC 2015


sbcl (2:1.2.11-2ubuntu1) wily; urgency=medium

  * Merge from Debian unstable. Remaining changes:
    - debian/rules: Do not leave stage1 unreadable, fixing an FTBFS on the
      Launchpad buildds with pkgstriptranslations.

sbcl (2:1.2.11-2) unstable; urgency=medium

  * Fix build on kfreebsd

sbcl (2:1.2.11-1) unstable; urgency=medium

  * New Upstream Version
    Remove Adding-curly-braces-around-subgraphs-to-make-things-.patch -- fixed upstream
    Cleanup fixed upstream (Closes: #734967)

    changes in sbcl-1.2.11 relative to sbcl-1.2.10:
      * enhancement: SET-PPRINT-DISPATCH will warn when given an expression in
        which any part is unrecognizable as a legal type-specifier.
        The dispatch table will be altered, but the new entry is disabled.
        Subsequent type-defining forms will cause pprint-dispatch tables to
        re-examine whether any disabled entries should be enabled. (lp#1429520)
      * enhancement: Loading code containing calls to a deprecated function will,
        under most circumstances, signal warnings similar to compiling such code.
        The usual caveat holds about not detecting calls through a computed name,
        as in (funcall (intern "DEPRECATED-FUN" "SB-EXT")).
      * enhancement: (SB-EXT:COMPILE-FILE-LINE) is a new macro that expands
        to a constant (VALUES integer integer) indicating the source line/column
        from which it was read, intended for logging Lisp runtime errors in
        a style similar to that afforded by the C preprocessor __LINE__ macro.
        Similarly (SB-EXT:COMPILE-FILE-POSITION) returns a position in characters.
      * enhancement: improved source locations for VOPs, alien types and
        declarations.
      * bug fix: functions in :FINAL deprecation have the correct docstring.
        No visible change, as no such functions presently exist. (lp#1439151)
      * bug fix: (SETF (FDEFINITION this) (FDEFINITION OTHER)) signals an error
        if OTHER names either a macro or special-operator. (lp#1439921)
    changes in sbcl-1.2.10 relative to sbcl-1.2.9:
      * minor incompatible change: all SOCKINT::WIN32-* functions have been
        deprecated with EARLY deprecation state
      * minor incompatible change: performing introspection via the system-internal
        SB-INT:INFO function could expose that :TYPE :TRANSLATOR is not necessarily
        a function, as it always was before. (Affects swank-fancy-inspector)
      * enhancement: The value of SXHASH on bit-vectors of length equal to the
        word size now depends on the vector's contents instead of being constant;
        its value on bit-vectors of length divisible by the word size now depends
        also on the contents of the vector's last word.
      * bug-fix: sb-bsd-sockets on win32 uses proper C function declarations.
        (lp#1426667)
      * bug fix: A new dead code elimination phase removes dead code loops
        that confuse stack analysis. (lp#1255782, lp#308914)
      * bug fix: A toplevel form which was simple enough to bypass the main
        compiler in COMPILE-FILE, and which contained an empty SETQ or PROGN
        would produce an invalid fasl file. (lp#1427050)
      * bug fix: The compiler no longer signals an internal error when
        encountering invalid FUNCTION forms like (function 1)
      * bug fix: express proper dependencies in the ASDF contrib, to support
        systems where make runs in parallel.  (lp#1434768; thanks to Nikhil
        Benesch)
    changes in sbcl-1.2.9 relative to sbcl-1.2.8:
      * minor incompatible change and bug fix: unboxed numeric constants
        on x86oids are arranged in memory differently, and the disassembler
        does not show them separately in DISASSEMBLE, but does
        if DISASSEMBLE-CODE-COMPONENT is used. (lp#1421987)
      * optimization: The compiler's treatment of type specifiers makes
        it slightly faster and more memory-efficient. Portable code
        should be indifferent to this change, however, users of
        SB-INTROSPECT:FUNCTION-TYPE might notice that (MEMBER T NIL)
        and (MEMBER NIL T) are both internally collapsed to the former,
        so that the latter can never be obtained as part of an FTYPE.
      * optimization: a TYPEP call in which the second argument is not a
        QUOTE form but nevertheless recognized as a compile-time constant
        might open-code the test. One scenario for this involves backquote,
        such as (TYPEP x `(my-type ,some-arg)). Code which relied upon
        deferring until runtime should declare (NOTINLINE TYPEP).
        [Due to the sematic constraints of DEFTYPE etc in in CLHS 3.2.2.3,
        code requiring delayed evaluation could be unportable though.]
      * enhancement: unused variables at the top-level are now reported.
        (lp#492200)
      * bug fix: DEFCLASS handles cyclic {super,meta}class relations better
        (lp#1418883)
      * bug fix: compiler no longer signals an error when compiling certain
        function calls. (lp#1416704, lp#404441, lp#1417822, lp#1234919)
      * bug fix: compiler doesn't stumble on a LOGIOR transform. (lp#1389433)
      * bug fix: more robust debugger and backtraces. (lp#1413850, lp#1099500,
        lp#1412881, lp#945261, lp#1419205, lp#1409402)
      * bug fix: files larger than 4GB can now be compiled.
      * bug fix: x86 truncated results from 64-bit foreign functions to 32 bits.
      * bug fix: file-position didn't work on large files on win32. (lp#1271545)
      * bug fix: callbacks from foreign threads can work without enabling
        sb-safepoint.
      * bug fix: sb-introspect:function-lambda-list works properly on interpeted
        macros. (lp#1387404)
      * bug fix: ADJUST-ARRAY properly handles non-adjustable arrays. (lp#886418)
      * bug fix: compiler no longer fails to dump a multidimensional array
        constant involving a circular reference to itself
      * bug fix: conditional and nested DX allocation no longer confuse the
        compiler in STACK analysis. (lp#1044465)
      * bug fix: sb-rotate-byte constant folding bug fixed. (lp#1423682)

sbcl (2:1.2.8-1) experimental; urgency=medium

  * New upstream version
    changes in sbcl-1.2.8 relative to sbcl-1.2.7:
      * enhancement: better error and warning messages. (lp#1314767, lp#736383)
      * enhancement: backtrace for invalid argument count produces the exact
        supplied arguments including the extra ones, on x86, x86-64 and ARM.
      * enhancement: a STYLE-WARNING is signaled for DEFSTRUCT accessors which
        are used before the structure is defined; similarly for the predicate.
      * optimization: FORMAT NIL with only ~a and string arguments is transformed
        into CONCATENATE.
      * optimization: POSITION and FIND when inlined into code that is compiled
        with qualities of safety < 2 and speed > space will no longer signal
        an error on circular lists, but will potentially loop forever if given
        no :END constraint. As was always the case, calls that are not inlined
        are safe regardless of lexical policy.
      * bug fix: CLOS methods compiled with (OPTIMIZE (DEBUG 0))
        no longer cause debugger failure when printing a backtrace
      * bug fix: more resilience to deleted code. (lp#1308328, lp#1390544)
      * bug fix: the CLHS example of MAKE-LOAD-FORM involving TREE-WITH-PARENT
        did not work, and now it does.
    changes in sbcl-1.2.7 relative to sbcl-1.2.6:
      * optimization: returning constant values refers to preboxed constants
        more reliably. (lp#1398785)
      * enhancement: a STYLE-WARNING is produced if a compiler-macro is defined
        for a function after at least one ordinary (not inlined) call to that
        function was compiled, indicating a likely compilation order problem.
        Likewise a warning ensues if a call is compiled to a function
        that is subsequently proclaimed INLINE.
      * enhancement: always lose() when something goes wrong while saving a core
        (instead of just printing an error on stderr in some situations).
      * enhancement: frames in the debugger are now restartable by default.
      * bug fix: restore error handling on Windows x86.
      * bug fix: MAKE-SEQUENCE detects type errors in its :INITIAL-ELEMENT
        at compile-time when possible. (lp#330299)
      * bug fix: parsing of malformed type specifiers no longer results
        in a memory-fault-error.
      * bug fix: LOOP properly destructures nested lists in WITH.
      * bug fix: MACROEXPANDing the redefinition of an alien structure type no
        longer signals the wrong error.
      * bug fix: PROGV doesn't get confused by forced DEBUG 3 (lp#1405456).
    changes in sbcl-1.2.6 relative to sbcl-1.2.5:
      * enhancement: SERVE-EVENTS uses the poll() system call in lieu of
        select() if the OS has the former. Previously poll() was used
        only if waiting on exactly one file descriptor.
      * enhancement: efficiency of access to untagged structure slots is improved
        on x86-64, and the order of slots in memory is exactly as specified by
        defstruct, simplifying use of structures as arguments to foreign calls.
      * bug fix: SB-DEBUG:ARG now works in all TRACE options which evaluate forms.
       (lp#1357826)
      * bug fix: GC memory corruption during internal memory handling.
      * bug fix: duplicate effective-slot-definition objects as compared
        by EQ on name could be present in CLASS-SLOTS of a class whose
        metaclass was structure-class or condition-class. (lp#1049423)
      * bug fix: HANDLER-BIND with empty bindings works again; regression in
        1.2.5. (lp#1388707)
      * bug fix: ATOMIC-INCF works on structure slots in interpreted code.
        (lp#1381867)
      * bug fix: MAKE-ARRAY properly handles character types like (eql #\a) and
        (member #\a #\c). (lp#1392068)
      * bug fix: READ sometimes accidentally preserved a whitespace character
        after a token when it should not have. (lp#327790)
    changes in sbcl-1.2.5 relative to sbcl-1.2.4:
      * enhancement: sb-bsd-sockets now has basic support for IPv6
      * enhancement: An sb-unicode package has been added, containing
        many functions related to handling Unicode text
      * enhancement: The reader now normalizes symbols to Normalization
        Form KC (NFKC). This behavior can be disabled with
        SB-EXT:READTABLE-NORMALIZATION
      * enhancement: a style-warning is signaled if OPTIMIZE declarations
        multiply specify a quality with differing values. (lp#310267)
      * bug fix: conservatively pointed to pages wipe out unused dwords so
        that they cannot act as false roots in turn.
      * bug fix: the walker's handling of lexical variable and symbol-macro
        bindings is improved (lp#375326, lp#1368305)
      * bug fix: HANDLER-{BIND,CASE} no longer drop into ldb when a clause
        contains an undefined condition type; regression in 1.1.19 (lp#1378939)
      * bug fix: in interpreted code, inequality predicates did not type-check
        arguments that weren't examined, and a 1-argument use of MIN or MAX
        accepted a complex number. (lp#1373702)
      * bug fix: APROPOS and APROPOS-LIST handle inherited symbols correctly.
        (lp#1364413, thanks to Zach Beane)

Date: Mon, 25 May 2015 01:44:37 -0400
Changed-By: Logan Rosen <logan at ubuntu.com>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
https://launchpad.net/ubuntu/+source/sbcl/2:1.2.11-2ubuntu1
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 25 May 2015 01:44:37 -0400
Source: sbcl
Binary: sbcl sbcl-doc sbcl-source
Architecture: source
Version: 2:1.2.11-2ubuntu1
Distribution: wily
Urgency: medium
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Changed-By: Logan Rosen <logan at ubuntu.com>
Description:
 sbcl       - Common Lisp compiler and development system
 sbcl-doc   - Documentation for Steel Bank Common Lisp
 sbcl-source - Source code files for SBCL
Closes: 734967
Changes:
 sbcl (2:1.2.11-2ubuntu1) wily; urgency=medium
 .
   * Merge from Debian unstable. Remaining changes:
     - debian/rules: Do not leave stage1 unreadable, fixing an FTBFS on the
       Launchpad buildds with pkgstriptranslations.
 .
 sbcl (2:1.2.11-2) unstable; urgency=medium
 .
   * Fix build on kfreebsd
 .
 sbcl (2:1.2.11-1) unstable; urgency=medium
 .
   * New Upstream Version
     Remove Adding-curly-braces-around-subgraphs-to-make-things-.patch -- fixed upstream
     Cleanup fixed upstream (Closes: #734967)
 .
     changes in sbcl-1.2.11 relative to sbcl-1.2.10:
       * enhancement: SET-PPRINT-DISPATCH will warn when given an expression in
         which any part is unrecognizable as a legal type-specifier.
         The dispatch table will be altered, but the new entry is disabled.
         Subsequent type-defining forms will cause pprint-dispatch tables to
         re-examine whether any disabled entries should be enabled. (lp#1429520)
       * enhancement: Loading code containing calls to a deprecated function will,
         under most circumstances, signal warnings similar to compiling such code.
         The usual caveat holds about not detecting calls through a computed name,
         as in (funcall (intern "DEPRECATED-FUN" "SB-EXT")).
       * enhancement: (SB-EXT:COMPILE-FILE-LINE) is a new macro that expands
         to a constant (VALUES integer integer) indicating the source line/column
         from which it was read, intended for logging Lisp runtime errors in
         a style similar to that afforded by the C preprocessor __LINE__ macro.
         Similarly (SB-EXT:COMPILE-FILE-POSITION) returns a position in characters.
       * enhancement: improved source locations for VOPs, alien types and
         declarations.
       * bug fix: functions in :FINAL deprecation have the correct docstring.
         No visible change, as no such functions presently exist. (lp#1439151)
       * bug fix: (SETF (FDEFINITION this) (FDEFINITION OTHER)) signals an error
         if OTHER names either a macro or special-operator. (lp#1439921)
     changes in sbcl-1.2.10 relative to sbcl-1.2.9:
       * minor incompatible change: all SOCKINT::WIN32-* functions have been
         deprecated with EARLY deprecation state
       * minor incompatible change: performing introspection via the system-internal
         SB-INT:INFO function could expose that :TYPE :TRANSLATOR is not necessarily
         a function, as it always was before. (Affects swank-fancy-inspector)
       * enhancement: The value of SXHASH on bit-vectors of length equal to the
         word size now depends on the vector's contents instead of being constant;
         its value on bit-vectors of length divisible by the word size now depends
         also on the contents of the vector's last word.
       * bug-fix: sb-bsd-sockets on win32 uses proper C function declarations.
         (lp#1426667)
       * bug fix: A new dead code elimination phase removes dead code loops
         that confuse stack analysis. (lp#1255782, lp#308914)
       * bug fix: A toplevel form which was simple enough to bypass the main
         compiler in COMPILE-FILE, and which contained an empty SETQ or PROGN
         would produce an invalid fasl file. (lp#1427050)
       * bug fix: The compiler no longer signals an internal error when
         encountering invalid FUNCTION forms like (function 1)
       * bug fix: express proper dependencies in the ASDF contrib, to support
         systems where make runs in parallel.  (lp#1434768; thanks to Nikhil
         Benesch)
     changes in sbcl-1.2.9 relative to sbcl-1.2.8:
       * minor incompatible change and bug fix: unboxed numeric constants
         on x86oids are arranged in memory differently, and the disassembler
         does not show them separately in DISASSEMBLE, but does
         if DISASSEMBLE-CODE-COMPONENT is used. (lp#1421987)
       * optimization: The compiler's treatment of type specifiers makes
         it slightly faster and more memory-efficient. Portable code
         should be indifferent to this change, however, users of
         SB-INTROSPECT:FUNCTION-TYPE might notice that (MEMBER T NIL)
         and (MEMBER NIL T) are both internally collapsed to the former,
         so that the latter can never be obtained as part of an FTYPE.
       * optimization: a TYPEP call in which the second argument is not a
         QUOTE form but nevertheless recognized as a compile-time constant
         might open-code the test. One scenario for this involves backquote,
         such as (TYPEP x `(my-type ,some-arg)). Code which relied upon
         deferring until runtime should declare (NOTINLINE TYPEP).
         [Due to the sematic constraints of DEFTYPE etc in in CLHS 3.2.2.3,
         code requiring delayed evaluation could be unportable though.]
       * enhancement: unused variables at the top-level are now reported.
         (lp#492200)
       * bug fix: DEFCLASS handles cyclic {super,meta}class relations better
         (lp#1418883)
       * bug fix: compiler no longer signals an error when compiling certain
         function calls. (lp#1416704, lp#404441, lp#1417822, lp#1234919)
       * bug fix: compiler doesn't stumble on a LOGIOR transform. (lp#1389433)
       * bug fix: more robust debugger and backtraces. (lp#1413850, lp#1099500,
         lp#1412881, lp#945261, lp#1419205, lp#1409402)
       * bug fix: files larger than 4GB can now be compiled.
       * bug fix: x86 truncated results from 64-bit foreign functions to 32 bits.
       * bug fix: file-position didn't work on large files on win32. (lp#1271545)
       * bug fix: callbacks from foreign threads can work without enabling
         sb-safepoint.
       * bug fix: sb-introspect:function-lambda-list works properly on interpeted
         macros. (lp#1387404)
       * bug fix: ADJUST-ARRAY properly handles non-adjustable arrays. (lp#886418)
       * bug fix: compiler no longer fails to dump a multidimensional array
         constant involving a circular reference to itself
       * bug fix: conditional and nested DX allocation no longer confuse the
         compiler in STACK analysis. (lp#1044465)
       * bug fix: sb-rotate-byte constant folding bug fixed. (lp#1423682)
 .
 sbcl (2:1.2.8-1) experimental; urgency=medium
 .
   * New upstream version
     changes in sbcl-1.2.8 relative to sbcl-1.2.7:
       * enhancement: better error and warning messages. (lp#1314767, lp#736383)
       * enhancement: backtrace for invalid argument count produces the exact
         supplied arguments including the extra ones, on x86, x86-64 and ARM.
       * enhancement: a STYLE-WARNING is signaled for DEFSTRUCT accessors which
         are used before the structure is defined; similarly for the predicate.
       * optimization: FORMAT NIL with only ~a and string arguments is transformed
         into CONCATENATE.
       * optimization: POSITION and FIND when inlined into code that is compiled
         with qualities of safety < 2 and speed > space will no longer signal
         an error on circular lists, but will potentially loop forever if given
         no :END constraint. As was always the case, calls that are not inlined
         are safe regardless of lexical policy.
       * bug fix: CLOS methods compiled with (OPTIMIZE (DEBUG 0))
         no longer cause debugger failure when printing a backtrace
       * bug fix: more resilience to deleted code. (lp#1308328, lp#1390544)
       * bug fix: the CLHS example of MAKE-LOAD-FORM involving TREE-WITH-PARENT
         did not work, and now it does.
     changes in sbcl-1.2.7 relative to sbcl-1.2.6:
       * optimization: returning constant values refers to preboxed constants
         more reliably. (lp#1398785)
       * enhancement: a STYLE-WARNING is produced if a compiler-macro is defined
         for a function after at least one ordinary (not inlined) call to that
         function was compiled, indicating a likely compilation order problem.
         Likewise a warning ensues if a call is compiled to a function
         that is subsequently proclaimed INLINE.
       * enhancement: always lose() when something goes wrong while saving a core
         (instead of just printing an error on stderr in some situations).
       * enhancement: frames in the debugger are now restartable by default.
       * bug fix: restore error handling on Windows x86.
       * bug fix: MAKE-SEQUENCE detects type errors in its :INITIAL-ELEMENT
         at compile-time when possible. (lp#330299)
       * bug fix: parsing of malformed type specifiers no longer results
         in a memory-fault-error.
       * bug fix: LOOP properly destructures nested lists in WITH.
       * bug fix: MACROEXPANDing the redefinition of an alien structure type no
         longer signals the wrong error.
       * bug fix: PROGV doesn't get confused by forced DEBUG 3 (lp#1405456).
     changes in sbcl-1.2.6 relative to sbcl-1.2.5:
       * enhancement: SERVE-EVENTS uses the poll() system call in lieu of
         select() if the OS has the former. Previously poll() was used
         only if waiting on exactly one file descriptor.
       * enhancement: efficiency of access to untagged structure slots is improved
         on x86-64, and the order of slots in memory is exactly as specified by
         defstruct, simplifying use of structures as arguments to foreign calls.
       * bug fix: SB-DEBUG:ARG now works in all TRACE options which evaluate forms.
        (lp#1357826)
       * bug fix: GC memory corruption during internal memory handling.
       * bug fix: duplicate effective-slot-definition objects as compared
         by EQ on name could be present in CLASS-SLOTS of a class whose
         metaclass was structure-class or condition-class. (lp#1049423)
       * bug fix: HANDLER-BIND with empty bindings works again; regression in
         1.2.5. (lp#1388707)
       * bug fix: ATOMIC-INCF works on structure slots in interpreted code.
         (lp#1381867)
       * bug fix: MAKE-ARRAY properly handles character types like (eql #\a) and
         (member #\a #\c). (lp#1392068)
       * bug fix: READ sometimes accidentally preserved a whitespace character
         after a token when it should not have. (lp#327790)
     changes in sbcl-1.2.5 relative to sbcl-1.2.4:
       * enhancement: sb-bsd-sockets now has basic support for IPv6
       * enhancement: An sb-unicode package has been added, containing
         many functions related to handling Unicode text
       * enhancement: The reader now normalizes symbols to Normalization
         Form KC (NFKC). This behavior can be disabled with
         SB-EXT:READTABLE-NORMALIZATION
       * enhancement: a style-warning is signaled if OPTIMIZE declarations
         multiply specify a quality with differing values. (lp#310267)
       * bug fix: conservatively pointed to pages wipe out unused dwords so
         that they cannot act as false roots in turn.
       * bug fix: the walker's handling of lexical variable and symbol-macro
         bindings is improved (lp#375326, lp#1368305)
       * bug fix: HANDLER-{BIND,CASE} no longer drop into ldb when a clause
         contains an undefined condition type; regression in 1.1.19 (lp#1378939)
       * bug fix: in interpreted code, inequality predicates did not type-check
         arguments that weren't examined, and a 1-argument use of MIN or MAX
         accepted a complex number. (lp#1373702)
       * bug fix: APROPOS and APROPOS-LIST handle inherited symbols correctly.
         (lp#1364413, thanks to Zach Beane)
Checksums-Sha1:
 a6c3ae67787f8500535199049f8929d76230c3f3 2109 sbcl_1.2.11-2ubuntu1.dsc
 88ba4dd7c72c1eb5fd7966422d2d2ca6cba5c69c 5535528 sbcl_1.2.11.orig.tar.bz2
 51b1ec3fc6447f4a8d9124c1f71df4dd3b1fd529 75844 sbcl_1.2.11-2ubuntu1.debian.tar.xz
Checksums-Sha256:
 ae0234e53f12171fb1180fa5314d06f312be12c1b4bd54019d339689440cec4c 2109 sbcl_1.2.11-2ubuntu1.dsc
 88aa04dae72d011f5c22084a35201188d8a02f0cd82e5de542aa4ce6bfaa3e70 5535528 sbcl_1.2.11.orig.tar.bz2
 b5b0e15f1d02c0ec4b2bbcbfe69b9a25e5ec401883ed0f46bb6dc2084b019647 75844 sbcl_1.2.11-2ubuntu1.debian.tar.xz
Files:
 6f0dc51504ad091a56a10bf83bce48a6 2109 lisp optional sbcl_1.2.11-2ubuntu1.dsc
 ce3d9c18656646ca99773a0ed49ab730 5535528 lisp optional sbcl_1.2.11.orig.tar.bz2
 e3eee0b5b02c17c6156eef9b4203925e 75844 lisp optional sbcl_1.2.11-2ubuntu1.debian.tar.xz
Original-Maintainer: Debian Common Lisp Team <pkg-common-lisp-devel at lists.alioth.debian.org>

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJVYrcOAAoJEATn8ULx7RNFN5sIALw4MeAR8bmEsVK/cX+Qa8dC
OSxVQpx8XcFlrClQBJbBNfdZQi5pEGG3LY6dR/loV6kZ0l/v1FnZp9zxIPLlG/p8
S9dpzJIVZSMHNxpz17xxFkPN0qPwaHVQ9IHdWnxq9BICHRkKOLy07FtP14PlilYc
lXuIAv/DP3HFZql7K18XR2XO/b6v+NxapJQbs1WJ1IsWBx0QlVvVUoRybh4XRoml
hyp+5qjDmCKP5kDTIyyDZK2JqjNRc9ELOp/YjP05qXTzaWJTUw+WrsGW7cmb5DvY
KV5+FSsCP+GI7CQPdfn5TBLBS7lJFL8OUXTNmA91pfIwOkdjBB8hOsYgftSH6vQ=
=Fy/+
-----END PGP SIGNATURE-----


More information about the Wily-changes mailing list