unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
@ 2018-08-23 16:24 Pierre Neidhardt
  2018-08-24 10:32 ` Pierre Neidhardt
  2018-08-24 12:56 ` Ludovic Courtès
  0 siblings, 2 replies; 14+ messages in thread
From: Pierre Neidhardt @ 2018-08-23 16:24 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 9987 bytes --]

In the long path of packaging Next browsing, I found myself packaging
the mgl-pax dependency.

	http://quickdocs.org/mgl-pax/

This package depends on SWANK which is packaged in emacs-slime.
emacs-slime contains two pieces of code:
- SLIME (the Emacs package)
- SWANK: the Common Lisp backend.

	https://github.com/slime/slime

Since the emacs-slime package uses the emacs build system, I think it
might not expose SWANK properly, so I packaged SWANK separately using
the ASDF build system:

--8<---------------cut here---------------start------------->8---
(define-public sbcl-slime-swank
  (package
    (name "sbcl-slime-swank")
    (version "2.22")
    (source
     (origin
       (file-name (string-append name "-" version ".tar.gz"))
       (method url-fetch)
       (uri (string-append
             "https://github.com/slime/slime/archive/v"
             version ".tar.gz"))
       (sha256
        (base32
         "07vaib1n4zyh5yy30gdpq0bc5cv6w84piml5b3mfc9ibjhaykkms"))))
    (build-system asdf-build-system/sbcl)
    (arguments
     `(#:asd-file "swank.asd"
       #:asd-system-name "swank"))
    (home-page "https://github.com/slime/slime")
    (synopsis "Common Lisp Swank server")
    (description
     "This is only useful if you want to start a Swank server in a Lisp
processes that doesn't run under Emacs.  Lisp processes created by
@command{M-x slime} automatically start the server.")
    (license license:gpl2+)))
--8<---------------cut here---------------end--------------->8---

So far so good.  I've declared the mgl-pax package as follows:

--8<---------------cut here---------------start------------->8---
(define-public sbcl-mgl-pax
  (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
    (package
      (name "sbcl-mgl-pax")
      (version (git-version "0.0.0" "1" commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/melisgl/mgl-pax")
               (commit commit)))
         (sha256
          (base32
           "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
         (file-name (string-append "mgl-pax" version "-checkout"))))
      (build-system asdf-build-system/sbcl)
      (inputs
       `(("3bmd" ,sbcl-3bmd)
         ("3bmd-ext-code-blocks" ,sbcl-3bmd-ext-code-blocks)
         ("babel" ,sbcl-babel)
         ("cl-fad" ,sbcl-cl-fad)
         ("ironclad" ,sbcl-ironclad)
         ("named-readtables" ,sbcl-named-readtables)
         ("pythonic-string-reader" ,sbcl-pythonic-string-reader)
         ("swank" ,sbcl-slime-swank)))
      (synopsis "Exploratory programming environment and documentation generator")
      (description
       "PAX provides an extremely poor man's Explorable Programming
environment.  Narrative primarily lives in so called sections that mix markdown
docstrings with references to functions, variables, etc, all of which should
probably have their own docstrings.

The primary focus is on making code easily explorable by using SLIME's
@command{M-.} (@command{slime-edit-definition}).  See how to enable some
fanciness in Emacs Integration. Generating documentation from sections and all
the referenced items in Markdown or HTML format is also implemented.

With the simplistic tools provided, one may accomplish similar effects as with
Literate Programming, but documentation is generated from code, not vice versa
and there is no support for chunking yet.  Code is first, code must look
pretty, documentation is code.")
      (home-page "http://quotenil.com/")
      (license license:bsd-3))))
--8<---------------cut here---------------end--------------->8---

It finds SWANK but later in the build process it spits out the following
error:

--8<---------------cut here---------------start------------->8---
; compiling file "/gnu/store/2mxm532160zrg4wkww8g24d2bdwfrii4-sbcl-mgl-pax-0.0.0-1.8184484/share/common-lisp/sbcl-source/mgl-pax/src/pax.lisp" (written 23 AUG 2018 04:15:29 PM):
; compiling (IN-PACKAGE :MGL-PAX)
; compiling (IN-READTABLE PYTHONIC-STRING-SYNTAX)
; compiling (DEFSECTION @MGL-PAX-MANUAL ...)
; compiling (DEFSECTION @MGL-PAX-LINKS ...)
; compiling (DEFSECTION @MGL-PAX-BACKGROUND ...)
; compiling (DEFSECTION @MGL-PAX-TUTORIAL ...)
; compiling (DEFSECTION @MGL-PAX-EMACS-INTEGRATION ...);
; caught ERROR:
;   READ error during COMPILE-FILE:
;
;     Package SWANK-BACKEND does not exist.
;
;       Line: 331, Column: -1, File-Position: 12600
;
;       Stream: #<SB-INT:FORM-TRACKING-STREAM for "file /gnu/store/2mxm532160zrg4wkww8g24d2bdwfrii4-sbcl-mgl-pax-0.0.0-1.8184484/share/common-lisp/sbcl-source/mgl-pax/src/pax.lisp" {10021B9C13}>

; compilation aborted after 0:00:00.022
Unhandled UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
                                                          {10005585B3}>:
  COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "mgl-pax" "src" "pax">

Backtrace for: #<SB-THREAD:THREAD "main thread" RUNNING {10005585B3}>
0: (SB-DEBUG::DEBUGGER-DISABLED-HOOK #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10026FE5E3}> #<unused argument> :QUIT T)
1: (SB-DEBUG::RUN-HOOK *INVOKE-DEBUGGER-HOOK* #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10026FE5E3}>)
2: (INVOKE-DEBUGGER #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10026FE5E3}>)
3: (ERROR UIOP/LISP-BUILD:COMPILE-FILE-ERROR :CONTEXT-FORMAT "~/asdf-action::format-action/" :CONTEXT-ARGUMENTS ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "mgl-pax" "src" "pax">)))
4: (UIOP/LISP-BUILD:CHECK-LISP-COMPILE-RESULTS NIL T T "~/asdf-action::format-action/" ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "mgl-pax" "src" "pax">)))
5: ((SB-PCL::EMF ASDF/ACTION:PERFORM) #<unused argument> #<unused argument> #<ASDF/LISP-ACTION:COMPILE-OP > #<ASDF/LISP-ACTION:CL-SOURCE-FILE "mgl-pax" "src" "pax">)
6: ((LAMBDA NIL :IN ASDF/ACTION:CALL-WHILE-VISITING-ACTION))
7: ((:METHOD ASDF/ACTION:PERFORM-WITH-RESTARTS :AROUND (T T)) #<ASDF/LISP-ACTION:COMPILE-OP > #<ASDF/LISP-ACTION:CL-SOURCE-FILE "mgl-pax" "src" "pax">) [fast-method]
8: ((:METHOD ASDF/PLAN:PERFORM-PLAN (T)) #<ASDF/PLAN:SEQUENTIAL-PLAN {1001F4D893}>) [fast-method]
9: ((FLET SB-C::WITH-IT :IN SB-C::%WITH-COMPILATION-UNIT))
10: ((:METHOD ASDF/PLAN:PERFORM-PLAN :AROUND (T)) #<ASDF/PLAN:SEQUENTIAL-PLAN {1001F4D893}>) [fast-method]
11: ((:METHOD ASDF/OPERATE:OPERATE (ASDF/OPERATION:OPERATION ASDF/COMPONENT:COMPONENT)) #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "mgl-pax"> :PLAN-CLASS NIL :PLAN-OPTIONS NIL) [fast-method]
12: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "mgl-pax">)
13: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
14: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "mgl-pax">) [fast-method]
15: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> ASDF/BUNDLE:COMPILE-BUNDLE-OP "mgl-pax")
16: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
17: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) ASDF/BUNDLE:COMPILE-BUNDLE-OP "mgl-pax") [fast-method]
18: (ASDF/SESSION:CALL-WITH-ASDF-SESSION #<CLOSURE (LAMBDA NIL :IN ASDF/OPERATE:OPERATE) {1001EB21BB}> :OVERRIDE T :KEY NIL :OVERRIDE-CACHE T :OVERRIDE-FORCING NIL)
19: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
20: (ASDF/SESSION:CALL-WITH-ASDF-SESSION #<CLOSURE (LAMBDA NIL :IN ASDF/OPERATE:OPERATE) {1001E9800B}> :OVERRIDE NIL :KEY NIL :OVERRIDE-CACHE NIL :OVERRIDE-FORCING NIL)
21: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) ASDF/BUNDLE:COMPILE-BUNDLE-OP "mgl-pax") [fast-method]
22: (SB-INT:SIMPLE-EVAL-IN-LEXENV (ASDF/OPERATE:OPERATE (QUOTE ASDF/BUNDLE:COMPILE-BUNDLE-OP) "mgl-pax") #<NULL-LEXENV>)
23: (EVAL (ASDF/OPERATE:OPERATE (QUOTE ASDF/BUNDLE:COMPILE-BUNDLE-OP) "mgl-pax"))
24: (SB-IMPL::PROCESS-EVAL/LOAD-OPTIONS ((:EVAL . "(require :asdf)") (:EVAL . "(let ((*package* (find-package :asdf))) (load \"/gnu/store/2mxm532160zrg4wkww8g24d2bdwfrii4-sbcl-mgl-pax-0.0.0-1.8184484/share/common-lisp/sbcl-source/mgl-pax/mgl-pax.asd\"))") (:EVAL . "(asdf:operate (quote asdf:compile-bundle-op) \"mgl-pax\")") (:QUIT)))
25: (SB-IMPL::TOPLEVEL-INIT)
26: ((FLET SB-UNIX::BODY :IN SAVE-LISP-AND-DIE))
27: ((FLET "WITHOUT-INTERRUPTS-BODY-27" :IN SAVE-LISP-AND-DIE))
28: ((LABELS SB-IMPL::RESTART-LISP :IN SAVE-LISP-AND-DIE))

unhandled condition in --disable-debugger mode, quitting
;
; compilation unit aborted
;   caught 2 fatal ERROR conditions
;   caught 1 ERROR condition
;   printed 1 note
Backtrace:
           7 (primitive-load "/gnu/store/ichxngbrfqv6ysa4hpnjk2lvxrg…")
In ice-9/eval.scm:
   191:35  6 (_ _)
In ice-9/boot-9.scm:
    152:2  5 (with-fluid* _ _ _)
    152:2  4 (with-fluid* _ _ _)
In srfi/srfi-1.scm:
    640:9  3 (for-each #<procedure 98a960 at /gnu/store/ig46c9fafvf…> …)
In /gnu/store/ig46c9fafvfv0czlpgh7l4w1xmwzsvaj-module-import/guix/build/gnu-build-system.scm:
   799:31  2 (_ _)
In /gnu/store/ig46c9fafvfv0czlpgh7l4w1xmwzsvaj-module-import/guix/build/asdf-build-system.scm:
    124:4  1 (build #:outputs _ #:inputs _ #:asd-file _ # _)
In unknown file:
           0 (scm-error misc-error #f "~A ~S ~S" ("lisp-eval-pro…" …) …)

ERROR: In procedure scm-error:
lisp-eval-program failed! "/gnu/store/rdvy6q3nskb0r01rwjrxj3935d850r2d-sbcl-1.4.4/bin/sbcl" ((require :asdf) (let ((*package* (find-package :asdf))) (load "/gnu/store/2mxm532160zrg4wkww8g24d2bdwfrii4-sbcl-mgl-pax-0.0.0-1.8184484/share/common-lisp/sbcl-source/mgl-pax/mgl-pax.asd")) (asdf:operate (quote asdf:compile-bundle-op) "mgl-pax"))
--8<---------------cut here---------------end--------------->8---

I have no clue what this SWANK-BACKEND is.  I can find SWANK/BACKEND in
the source however.  Maybe my misunderstanding of Common Lisp...

Any clue?

--
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-23 16:24 [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist Pierre Neidhardt
@ 2018-08-24 10:32 ` Pierre Neidhardt
  2018-08-24 12:56 ` Ludovic Courtès
  1 sibling, 0 replies; 14+ messages in thread
From: Pierre Neidhardt @ 2018-08-24 10:32 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 124 bytes --]

I've also reported the issue at https://github.com/slime/slime/issues/457.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-23 16:24 [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist Pierre Neidhardt
  2018-08-24 10:32 ` Pierre Neidhardt
@ 2018-08-24 12:56 ` Ludovic Courtès
  2018-08-24 13:15   ` Pierre Neidhardt
  2018-08-27  7:24   ` Andy Patterson
  1 sibling, 2 replies; 14+ messages in thread
From: Ludovic Courtès @ 2018-08-24 12:56 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Hi Pierre,

Pierre Neidhardt <ambrevar@gmail.com> skribis:

> I have no clue what this SWANK-BACKEND is.  I can find SWANK/BACKEND in
> the source however.  Maybe my misunderstanding of Common Lisp...
>
> Any clue?

I’m clueless ;-) but I’ve Cc’d one of our local CL experts.
Any ideas, Andy?

Ludo’.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-24 12:56 ` Ludovic Courtès
@ 2018-08-24 13:15   ` Pierre Neidhardt
  2018-08-27  7:24   ` Andy Patterson
  1 sibling, 0 replies; 14+ messages in thread
From: Pierre Neidhardt @ 2018-08-24 13:15 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 223 bytes --]

Thank you, Ludo.

Upstream suggests a patch to the ASDF system definition.  I'll try that later.

I've pushed the current state of work to the 'wip-next-browser' branch.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-24 12:56 ` Ludovic Courtès
  2018-08-24 13:15   ` Pierre Neidhardt
@ 2018-08-27  7:24   ` Andy Patterson
  2018-08-27  7:42     ` Pierre Neidhardt
  1 sibling, 1 reply; 14+ messages in thread
From: Andy Patterson @ 2018-08-27  7:24 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, Pierre Neidhardt

Hi all,

There are a few different messages in this thread that I could reply
to, but I'll do my best to address them all here.

On Fri, 24 Aug 2018 14:56:19 +0200
ludo@gnu.org (Ludovic Courtès) wrote:

> Hi Pierre,
> 
> Pierre Neidhardt <ambrevar@gmail.com> skribis:
> 
> > I have no clue what this SWANK-BACKEND is.  I can find
> > SWANK/BACKEND in the source however.  Maybe my misunderstanding of
> > Common Lisp...
> >
> > Any clue?  
> 
> I’m clueless ;-) but I’ve Cc’d one of our local CL experts.
> Any ideas, Andy?

Expert is a bit strong, but I'll try my best.  I wasn't able to dive
deep into this particular issue this weekend, but I did try to bring
myself back up to speed by rebuilding the currently upstreamed CL
packages as well as my local additions.  The good news here is that
I've finally found out why our slynk package doesn't build on sbcl, and
that might be relevant to this problem.

As for the initial error - it looks like it's because swank's system
definition file only compiles swank-loader, which I guess is because it
wants to use that loader to load the rest of the system.  As a result
the swank-backend package never gets added to the built swank package.

The PR linked in the upstream bug report looks like it addresses that
issue by adding all of the source files to the system's components.
The log listed in the report when using that PR doesn't show the full
details - but I've just found out that some warnings are being treated
as errors by sbcl.  It might be that there's some warning shown earlier
on which is causing the reported compilation failure, despite the fact
that it's reported as a benign-seeming warning.  I haven't been able
to figure out whether or not this is a guix-specific problem.

I haven't forgotten that I'd promised to deliver some build system
improvements a while back - I've gotten that all formatted into commits
now so I'll try to send that in later this week if I can find time.

> 
> Ludo’.

Hoping that helps,

--
Andy

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-27  7:24   ` Andy Patterson
@ 2018-08-27  7:42     ` Pierre Neidhardt
  2018-08-28  7:36       ` Andy Patterson
  0 siblings, 1 reply; 14+ messages in thread
From: Pierre Neidhardt @ 2018-08-27  7:42 UTC (permalink / raw)
  To: Andy Patterson; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2211 bytes --]

Hey Andy!

Great to hear for you, it's a big relief to have someone around who is
knowledgeable on Common Lisp as I'm starting to feel a bit overwhelmed! :p

> As for the initial error - it looks like it's because swank's system
> definition file only compiles swank-loader, which I guess is because it
> wants to use that loader to load the rest of the system.  As a result
> the swank-backend package never gets added to the built swank package.

Absolutely, I had come to that conclusion as well.

There is also another upstream pull request that attempts to fix the same
problem, from a different angle:

	https://github.com/slime/slime/pull/83

I haven't tried it yet.

One thing I'd like to understand about Common Lisp packages in Guix, if you can
shed some light on this: the build system uses ASDF to "bundle compile" the
entire package into a single /gnu/store/…-PACKAGE/lib/PACKAGE--system.fasl
file.  This file is then referenced in /gnu/store…-PACKAGE/lib/PACKAGE.asd.
So when a Common Lisp package looks for its dependencies, it searches for a
PACKAGE.asd file in the LIBRARY_PATH environment variable.
Is this correct?

If so, what would be the steps to package a Common Lisp library without ASDF?
Is it possible to create a bundle without ASDF?  How are multiple .fasl files
loaded when put in a folder pointed by LIBRARY_PATH?  Do we absolutely need a
.asd file?

I have skimmed over the ASDF documentation but I am not sure I can find answers
there.

> The log listed in the report when using that PR doesn't show the full
> details - but I've just found out that some warnings are being treated
> as errors by sbcl.

Which log?  If it's one of mine, I can post the full backtrace.  As I'm not too
familiar (yet) with Common Lisp and SBCL, I might have missed important parts of
the backtrace.  Let me know.

Regarding your additions: Have a look at my wip-next-browser branch, in case
it's overlapping with your work.  I've borrowed one or two of the packages you
had sent earlier on this list.  I've also "fixed" one thing in the build system
(more of a quick & dirty workaround).

Cheers!

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-27  7:42     ` Pierre Neidhardt
@ 2018-08-28  7:36       ` Andy Patterson
  2018-08-28 19:18         ` Pierre Neidhardt
  0 siblings, 1 reply; 14+ messages in thread
From: Andy Patterson @ 2018-08-28  7:36 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Hi Pierre,

On Mon, 27 Aug 2018 09:42:27 +0200
Pierre Neidhardt <mail@ambrevar.xyz> wrote:

[...]

> One thing I'd like to understand about Common Lisp packages in Guix,
> if you can shed some light on this: the build system uses ASDF to
> "bundle compile" the entire package into a
> single /gnu/store/…-PACKAGE/lib/PACKAGE--system.fasl file.  This file
> is then referenced in /gnu/store…-PACKAGE/lib/PACKAGE.asd. So when a
> Common Lisp package looks for its dependencies, it searches for a
> PACKAGE.asd file in the LIBRARY_PATH environment variable. Is this
> correct?

It's actually using XDG_DATA_DIRS.  In Guix, we set up our lisp
implementations to check for share/{lisp}-bundle-systems for system
definitions. The links there are followed to the lib directory which is
a bit arbitrary, but was already being used for built-in libraries by
sbcl.

> 
> If so, what would be the steps to package a Common Lisp library
> without ASDF? 

I guess you'd have to basically do what asdf does - call the compiler
on the source files with all the right ceremony.

> Is it possible to create a bundle without ASDF?

I'm guessing it is but it's probably implementation specific.

> How
> are multiple .fasl files loaded when put in a folder pointed by
> LIBRARY_PATH?  Do we absolutely need a .asd file?
>

It could be done with output translations but it's super brittle in my
experience.  I think some asd file is required regardless.

> I have skimmed over the ASDF documentation but I am not sure I can
> find answers there.
> 
> > The log listed in the report when using that PR doesn't show the
> > full details - but I've just found out that some warnings are being
> > treated as errors by sbcl.  
> 
> Which log?  If it's one of mine, I can post the full backtrace.  As
> I'm not too familiar (yet) with Common Lisp and SBCL, I might have
> missed important parts of the backtrace.  Let me know.

I was referring to the log you posted at [1]. I'm guessing that there's
a warning somewhere just up above.

> 
> Regarding your additions: Have a look at my wip-next-browser branch,
> in case it's overlapping with your work.  I've borrowed one or two of
> the packages you had sent earlier on this list.  I've also "fixed"
> one thing in the build system (more of a quick & dirty workaround).

Sure thing.

> 
> Cheers!
> 

--
Andy

[1]<https://github.com/slime/slime/issues/457#details-issuecomment-415824038>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-28  7:36       ` Andy Patterson
@ 2018-08-28 19:18         ` Pierre Neidhardt
  2018-08-29  6:18           ` Andy Patterson
  0 siblings, 1 reply; 14+ messages in thread
From: Pierre Neidhardt @ 2018-08-28 19:18 UTC (permalink / raw)
  To: Andy Patterson; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 144363 bytes --]

Thanks for the details.

Here is the full backtrace when I attempt to build sbcl-slime-swank with PR #433
(https://github.com/slime/slime/pull/433):

--8<---------------cut here---------------start------------->8---
> ./pre-inst-env guix build -K sbcl-slime-swank
;;; note: source file /home/ambrevar/projects/guix/gnu/packages/lisp.scm
;;;       newer than compiled /home/ambrevar/projects/guix/gnu/packages/lisp.go
;;; note: source file /home/ambrevar/projects/guix/gnu/packages/lisp.scm
;;;       newer than compiled /run/current-system/profile/lib/guile/2.2/site-ccache/gnu/packages/lisp.go
substitute: updating substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
@ build-started /gnu/store/p4g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv - x86_64-linux /var/log/guix/drvs/p4//g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv.bz2
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/rdvy6q3nskb0r01rwjrxj3935d850r2d-sbcl-1.4.4/bin:/gnu/store/hxj9mdzhbjxmfj536crfscc0fhwwz4vy-tar-1.30/bin:/gnu/store/kc3xgspiq86ry6spyw874qk6pbxfpjx2-gzip-1.9/bin:/gnu/store/qvwvwbfz2hmjm0spz92sn1w3r5r8l2f8-bzip2-1.0.6/bin:/gnu/store/dk23rrx1nycghfqr32qpcn261pl0gyp4-xz-5.2.3/bin:/gnu/store/qhxgdgyiyq2ilvh17fqfw0njpqlg4gsc-file-5.32/bin:/gnu/store/iwfrjby868bx7fcc6mfl2z098j21ky5k-diffutils-3.6/bin:/gnu/store/q98l02i6wjw3v0x8vbp42ng8wwwxrb4g-patch-2.7.6/bin:/gnu/store/cyw1s5q7s7ql0vwkf34rzjb0cr6w1qnp-findutils-4.6.0/bin:/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/bin:/gnu/store/2vggh6ka830b73vaw6mc8krqwk59fw9m-sed-4.5/bin:/gnu/store/i69323v107s0jj1l2vflwji1md537agi-grep-3.1/bin:/gnu/store/63gkgnixg6xj3m9cgl25ib2zxl51ngw0-coreutils-8.29/bin:/gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1/bin:/gnu/store/rbrandv7anzjxqkr40d7fkanzssslk4b-bash-minimal-4.4.19/bin:/gnu/store/b5x786d3h552j2zp4ppvlz9dkbiqy2ng-ld-wrapper-0/bin:/gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30/bin:/gnu/store/zrhwhlqqk51qslbddk4cip2z2p3fpvxd-gcc-5.5.0/bin:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/bin:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/sbin'
environment variable `XDG_DATA_DIRS' set to `/gnu/store/rdvy6q3nskb0r01rwjrxj3935d850r2d-sbcl-1.4.4/share:/gnu/store/hxj9mdzhbjxmfj536crfscc0fhwwz4vy-tar-1.30/share:/gnu/store/kc3xgspiq86ry6spyw874qk6pbxfpjx2-gzip-1.9/share:/gnu/store/qvwvwbfz2hmjm0spz92sn1w3r5r8l2f8-bzip2-1.0.6/share:/gnu/store/dk23rrx1nycghfqr32qpcn261pl0gyp4-xz-5.2.3/share:/gnu/store/qhxgdgyiyq2ilvh17fqfw0njpqlg4gsc-file-5.32/share:/gnu/store/iwfrjby868bx7fcc6mfl2z098j21ky5k-diffutils-3.6/share:/gnu/store/q98l02i6wjw3v0x8vbp42ng8wwwxrb4g-patch-2.7.6/share:/gnu/store/cyw1s5q7s7ql0vwkf34rzjb0cr6w1qnp-findutils-4.6.0/share:/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/share:/gnu/store/2vggh6ka830b73vaw6mc8krqwk59fw9m-sed-4.5/share:/gnu/store/i69323v107s0jj1l2vflwji1md537agi-grep-3.1/share:/gnu/store/63gkgnixg6xj3m9cgl25ib2zxl51ngw0-coreutils-8.29/share:/gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1/share:/gnu/store/rbrandv7anzjxqkr40d7fkanzssslk4b-bash-minimal-4.4.19/share:/gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30/share:/gnu/store/zrhwhlqqk51qslbddk4cip2z2p3fpvxd-gcc-5.5.0/share:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/share:/gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26/share'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `C_INCLUDE_PATH' set to `/gnu/store/qvwvwbfz2hmjm0spz92sn1w3r5r8l2f8-bzip2-1.0.6/include:/gnu/store/dk23rrx1nycghfqr32qpcn261pl0gyp4-xz-5.2.3/include:/gnu/store/qhxgdgyiyq2ilvh17fqfw0njpqlg4gsc-file-5.32/include:/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/include:/gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1/include:/gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30/include:/gnu/store/zrhwhlqqk51qslbddk4cip2z2p3fpvxd-gcc-5.5.0/include:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/include:/gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26/include'
environment variable `CPLUS_INCLUDE_PATH' set to `/gnu/store/qvwvwbfz2hmjm0spz92sn1w3r5r8l2f8-bzip2-1.0.6/include:/gnu/store/dk23rrx1nycghfqr32qpcn261pl0gyp4-xz-5.2.3/include:/gnu/store/qhxgdgyiyq2ilvh17fqfw0njpqlg4gsc-file-5.32/include:/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/include:/gnu/store/nx21fqlb8jixwhbs83xlfp9a3h5p3g9a-make-4.2.1/include:/gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30/include:/gnu/store/zrhwhlqqk51qslbddk4cip2z2p3fpvxd-gcc-5.5.0/include:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/include:/gnu/store/6w4x24a4i8ssgf147a7yhp6ppickr2nr-linux-libre-headers-4.14.26/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/rdvy6q3nskb0r01rwjrxj3935d850r2d-sbcl-1.4.4/lib:/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib:/gnu/store/qvwvwbfz2hmjm0spz92sn1w3r5r8l2f8-bzip2-1.0.6/lib:/gnu/store/dk23rrx1nycghfqr32qpcn261pl0gyp4-xz-5.2.3/lib:/gnu/store/qhxgdgyiyq2ilvh17fqfw0njpqlg4gsc-file-5.32/lib:/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/lib:/gnu/store/srmqh29dpm50j8kj1pbqg2rgh053wgyp-binutils-2.30/lib:/gnu/store/l4lr0f5cjd0nbsaaf8b5dmcw1a1yypr3-glibc-2.27/lib:/gnu/store/166hj8p5vnlqs4ghh4y6g745i6qx9dyr-glibc-2.27-static/lib:/gnu/store/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/ki1m42g3s2lav4mr3xjscg1bbdrqd5yz-glibc-utf8-locales-2.27/lib/locale'
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank.asd' -> `./swank.asd'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/PROBLEMS' -> `./PROBLEMS'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/.gitattributes' -> `./.gitattributes'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/slime-tests.el' -> `./slime-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/sbcl-pprint-patch.lisp' -> `./sbcl-pprint-patch.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/.gitref' -> `./.gitref'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/slime-autoloads.el' -> `./slime-autoloads.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/NEWS' -> `./NEWS'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/start-swank.lisp' -> `./start-swank.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank-loader.lisp' -> `./swank-loader.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/README.md' -> `./README.md'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/metering.lisp' -> `./metering.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank-loader-asdf.lisp' -> `./swank-loader-asdf.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/.gitignore' -> `./.gitignore'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/CONTRIBUTING.md' -> `./CONTRIBUTING.md'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/packages.lisp' -> `./packages.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/Makefile' -> `./Makefile'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/slime.el' -> `./slime.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/.travis.yml' -> `./.travis.yml'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/xref.lisp' -> `./xref.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/asdf-init.lisp' -> `./asdf-init.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/nregex.lisp' -> `./nregex.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank.lisp' -> `./swank.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/.nosearch' -> `./lib/.nosearch'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/ert.el' -> `./lib/ert.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/ert-x.el' -> `./lib/ert-x.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/macrostep.el' -> `./lib/macrostep.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/hyperspec.el' -> `./lib/hyperspec.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/lib/cl-lib.el' -> `./lib/cl-lib.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/cmucl.lisp' -> `./swank/cmucl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/source-file-cache.lisp' -> `./swank/source-file-cache.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/mkcl.lisp' -> `./swank/mkcl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/backend.lisp' -> `./swank/backend.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/scl.lisp' -> `./swank/scl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/allegro.lisp' -> `./swank/allegro.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/ecl.lisp' -> `./swank/ecl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/abcl.lisp' -> `./swank/abcl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/sbcl.lisp' -> `./swank/sbcl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/rpc.lisp' -> `./swank/rpc.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/clisp.lisp' -> `./swank/clisp.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/ccl.lisp' -> `./swank/ccl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/match.lisp' -> `./swank/match.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/gray.lisp' -> `./swank/gray.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/lispworks.lisp' -> `./swank/lispworks.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/corman.lisp' -> `./swank/corman.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/source-path-parser.lisp' -> `./swank/source-path-parser.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/swank/clasp.lisp' -> `./swank/clasp.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank.rb' -> `./contrib/swank.rb'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-highlight-edits.el' -> `./contrib/slime-highlight-edits.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-cl-indent.el' -> `./contrib/slime-cl-indent.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-presentations.lisp' -> `./contrib/swank-presentations.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-r6rs.scm' -> `./contrib/swank-r6rs.scm'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-larceny.scm' -> `./contrib/swank-larceny.scm'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-goo.goo' -> `./contrib/swank-goo.goo'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/inferior-slime.el' -> `./contrib/inferior-slime.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-fancy-trace.el' -> `./contrib/slime-fancy-trace.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-references.el' -> `./contrib/slime-references.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-trace-dialog.el' -> `./contrib/slime-trace-dialog.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-fuzzy.el' -> `./contrib/slime-fuzzy.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-sbcl-exts.lisp' -> `./contrib/swank-sbcl-exts.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-autodoc.el' -> `./contrib/slime-autodoc.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-snapshot.el' -> `./contrib/slime-snapshot.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-xref-browser.el' -> `./contrib/slime-xref-browser.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-fuzzy.lisp' -> `./contrib/swank-fuzzy.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-kawa.scm' -> `./contrib/swank-kawa.scm'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-indentation.el' -> `./contrib/slime-indentation.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-mdot-fu.el' -> `./contrib/slime-mdot-fu.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-sprof.el' -> `./contrib/slime-sprof.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-ikarus.ss' -> `./contrib/swank-ikarus.ss'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-arglists.lisp' -> `./contrib/swank-arglists.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-package-fu.el' -> `./contrib/slime-package-fu.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-scheme.el' -> `./contrib/slime-scheme.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-media.el' -> `./contrib/slime-media.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-media.lisp' -> `./contrib/swank-media.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-banner.el' -> `./contrib/slime-banner.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/README.md' -> `./contrib/README.md'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-repl.el' -> `./contrib/slime-repl.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-tramp.el' -> `./contrib/slime-tramp.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-fancy-inspector.lisp' -> `./contrib/swank-fancy-inspector.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-fancy.el' -> `./contrib/slime-fancy.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/bridge.el' -> `./contrib/bridge.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-fontifying-fu.el' -> `./contrib/slime-fontifying-fu.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-clipboard.lisp' -> `./contrib/swank-clipboard.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-listener-hooks.lisp' -> `./contrib/swank-listener-hooks.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-snapshot.lisp' -> `./contrib/swank-snapshot.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-hyperdoc.el' -> `./contrib/slime-hyperdoc.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-jolt.k' -> `./contrib/swank-jolt.k'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-scratch.el' -> `./contrib/slime-scratch.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-asdf.el' -> `./contrib/slime-asdf.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-repl.lisp' -> `./contrib/swank-repl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-compiler-notes-tree.el' -> `./contrib/slime-compiler-notes-tree.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-asdf.lisp' -> `./contrib/swank-asdf.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-package-fu.lisp' -> `./contrib/swank-package-fu.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-mrepl.el' -> `./contrib/slime-mrepl.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-sbcl-exts.el' -> `./contrib/slime-sbcl-exts.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-parse.el' -> `./contrib/slime-parse.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-editing-commands.el' -> `./contrib/slime-editing-commands.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-hyperdoc.lisp' -> `./contrib/swank-hyperdoc.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/Makefile' -> `./contrib/Makefile'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-presentation-streams.el' -> `./contrib/slime-presentation-streams.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-listener-hooks.el' -> `./contrib/slime-listener-hooks.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-macrostep.el' -> `./contrib/slime-macrostep.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-presentations.el' -> `./contrib/slime-presentations.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-quicklisp.lisp' -> `./contrib/swank-quicklisp.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-mlworks.sml' -> `./contrib/swank-mlworks.sml'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-util.lisp' -> `./contrib/swank-util.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-presentation-streams.lisp' -> `./contrib/swank-presentation-streams.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-mit-scheme.scm' -> `./contrib/swank-mit-scheme.scm'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-sprof.lisp' -> `./contrib/swank-sprof.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-macrostep.lisp' -> `./contrib/swank-macrostep.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-typeout-frame.el' -> `./contrib/slime-typeout-frame.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-c-p-c.el' -> `./contrib/slime-c-p-c.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-c-p-c.lisp' -> `./contrib/swank-c-p-c.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-quicklisp.el' -> `./contrib/slime-quicklisp.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-mrepl.lisp' -> `./contrib/swank-mrepl.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-clipboard.el' -> `./contrib/slime-clipboard.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-fancy-inspector.el' -> `./contrib/slime-fancy-inspector.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-trace-dialog.lisp' -> `./contrib/swank-trace-dialog.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/slime-enclosing-context.el' -> `./contrib/slime-enclosing-context.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/swank-indentation.lisp' -> `./contrib/swank-indentation.lisp'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-repl-tests.el' -> `./contrib/test/slime-repl-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-cl-indent-test.txt' -> `./contrib/test/slime-cl-indent-test.txt'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-enclosing-context-tests.el' -> `./contrib/test/slime-enclosing-context-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-fontifying-fu-tests.el' -> `./contrib/test/slime-fontifying-fu-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-parse-tests.el' -> `./contrib/test/slime-parse-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-presentations-tests.el' -> `./contrib/test/slime-presentations-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-indentation-tests.el' -> `./contrib/test/slime-indentation-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-macrostep-tests.el' -> `./contrib/test/slime-macrostep-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-c-p-c-tests.el' -> `./contrib/test/slime-c-p-c-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-autodoc-tests.el' -> `./contrib/test/slime-autodoc-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/contrib/test/slime-mdot-fu-tests.el' -> `./contrib/test/slime-mdot-fu-tests.el'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime.texi' -> `./doc/slime.texi'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/texinfo-tabulate.awk' -> `./doc/texinfo-tabulate.awk'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime.css' -> `./doc/slime.css'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime-small.eps' -> `./doc/slime-small.eps'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/.cvsignore' -> `./doc/.cvsignore'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime-small.pdf' -> `./doc/slime-small.pdf'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/contributors.texi' -> `./doc/contributors.texi'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime-refcard.tex' -> `./doc/slime-refcard.tex'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/slime-refcard.pdf' -> `./doc/slime-refcard.pdf'
`/gnu/store/4b7p79rdawd2icivh4qhj3rxvbipkk6q-sbcl-slime-swank-2.22.tar.gz/doc/Makefile' -> `./doc/Makefile'
phase `unpack' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
phase `patch-usr-bin-file' succeeded after 0.0 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./doc/texinfo-tabulate.awk: changing `/usr/bin/env awk' to `/gnu/store/fbalwbm4yqldbfvcpaa2plhk4z7vszlz-gawk-4.2.1/bin/awk'
phase `patch-source-shebangs' succeeded after 0.0 seconds
starting phase `patch-generated-file-shebangs'
phase `patch-generated-file-shebangs' succeeded after 0.0 seconds
starting phase `copy-source'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/Makefile' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/Makefile'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/nregex.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/nregex.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/asdf-init.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/asdf-init.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/xref.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/xref.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/.travis.yml' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/.travis.yml'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/slime.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/slime.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/packages.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/packages.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/CONTRIBUTING.md' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/CONTRIBUTING.md'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/.gitignore' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/.gitignore'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank-loader-asdf.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank-loader-asdf.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/metering.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/metering.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/README.md' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/README.md'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank-loader.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank-loader.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/start-swank.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/start-swank.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/NEWS' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/NEWS'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/slime-autoloads.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/slime-autoloads.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/.gitref' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/.gitref'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/sbcl-pprint-patch.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/sbcl-pprint-patch.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/slime-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/slime-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/.gitattributes' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/.gitattributes'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/PROBLEMS' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/PROBLEMS'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank.asd' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank.asd'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/cl-lib.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/cl-lib.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/hyperspec.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/hyperspec.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/macrostep.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/macrostep.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/ert-x.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/ert-x.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/ert.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/ert.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/lib/.nosearch' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/lib/.nosearch'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/clasp.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/clasp.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/source-path-parser.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/source-path-parser.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/corman.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/corman.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/lispworks.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/lispworks.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/gray.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/gray.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/match.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/match.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/ccl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/ccl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/clisp.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/clisp.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/rpc.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/rpc.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/sbcl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/sbcl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/abcl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/abcl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/ecl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/ecl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/allegro.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/allegro.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/scl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/scl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/backend.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/backend.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/mkcl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/mkcl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/source-file-cache.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/source-file-cache.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/swank/cmucl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/swank/cmucl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/Makefile' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/Makefile'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-indentation.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-indentation.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-enclosing-context.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-enclosing-context.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-trace-dialog.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-trace-dialog.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-fancy-inspector.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-fancy-inspector.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-clipboard.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-clipboard.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-mrepl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-mrepl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-quicklisp.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-quicklisp.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-c-p-c.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-c-p-c.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-c-p-c.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-c-p-c.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-typeout-frame.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-typeout-frame.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-macrostep.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-macrostep.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-sprof.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-sprof.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-mit-scheme.scm' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-mit-scheme.scm'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-presentation-streams.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-presentation-streams.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-util.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-util.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-mlworks.sml' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-mlworks.sml'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-quicklisp.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-quicklisp.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-presentations.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-presentations.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-macrostep.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-macrostep.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-listener-hooks.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-listener-hooks.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-presentation-streams.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-presentation-streams.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-hyperdoc.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-hyperdoc.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-editing-commands.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-editing-commands.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-parse.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-parse.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-sbcl-exts.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-sbcl-exts.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-mrepl.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-mrepl.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-package-fu.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-package-fu.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-asdf.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-asdf.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-compiler-notes-tree.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-compiler-notes-tree.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-repl.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-repl.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-asdf.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-asdf.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-scratch.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-scratch.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-jolt.k' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-jolt.k'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-hyperdoc.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-hyperdoc.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-snapshot.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-snapshot.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-listener-hooks.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-listener-hooks.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-clipboard.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-clipboard.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-fontifying-fu.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-fontifying-fu.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/bridge.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/bridge.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-fancy.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-fancy.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-fancy-inspector.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-fancy-inspector.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-tramp.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-tramp.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-repl.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-repl.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/README.md' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/README.md'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-banner.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-banner.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-media.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-media.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-media.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-media.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-scheme.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-scheme.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-package-fu.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-package-fu.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-arglists.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-arglists.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-ikarus.ss' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-ikarus.ss'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-sprof.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-sprof.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-mdot-fu.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-mdot-fu.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-indentation.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-indentation.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-kawa.scm' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-kawa.scm'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-fuzzy.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-fuzzy.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-xref-browser.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-xref-browser.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-snapshot.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-snapshot.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-autodoc.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-autodoc.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-sbcl-exts.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-sbcl-exts.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-fuzzy.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-fuzzy.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-trace-dialog.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-trace-dialog.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-references.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-references.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-fancy-trace.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-fancy-trace.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/inferior-slime.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/inferior-slime.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-goo.goo' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-goo.goo'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-larceny.scm' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-larceny.scm'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-r6rs.scm' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-r6rs.scm'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank-presentations.lisp' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank-presentations.lisp'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-cl-indent.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-cl-indent.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/slime-highlight-edits.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/slime-highlight-edits.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/swank.rb' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/swank.rb'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-mdot-fu-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-mdot-fu-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-autodoc-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-autodoc-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-c-p-c-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-c-p-c-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-macrostep-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-macrostep-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-indentation-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-indentation-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-presentations-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-presentations-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-parse-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-parse-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-fontifying-fu-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-fontifying-fu-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-enclosing-context-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-enclosing-context-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-cl-indent-test.txt' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-cl-indent-test.txt'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/contrib/test/slime-repl-tests.el' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/contrib/test/slime-repl-tests.el'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/Makefile' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/Makefile'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/texinfo-tabulate.awk' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/texinfo-tabulate.awk'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime-refcard.pdf' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime-refcard.pdf'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime-refcard.tex' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime-refcard.tex'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/contributors.texi' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/contributors.texi'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime-small.pdf' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime-small.pdf'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/.cvsignore' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/.cvsignore'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime-small.eps' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime-small.eps'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime.css' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime.css'
`/tmp/guix-build-sbcl-slime-swank-2.22.drv-0/source/doc/slime.texi' -> `/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/source/swank/doc/slime.texi'
phase `copy-source' succeeded after 0.0 seconds
starting phase `build'
This is SBCL 1.4.4, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.

; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd
; in: DEFUN INIT
;     (DEFUN SWANK-LOADER:INIT (&KEY DELETE)
;       (ASDF/OPERATE:LOAD-SYSTEM :SWANK :FORCE SWANK-LOADER::RELOAD))
; 
; caught STYLE-WARNING:
;   The variable DELETE is defined but never used.

; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd
; in: DEFUN INIT
;     (ASDF/OPERATE:LOAD-SYSTEM :SWANK :FORCE SWANK-LOADER::RELOAD)
; 
; caught WARNING:
;   undefined variable: RELOAD
; 
; compilation unit finished
;   Undefined variable:
;     RELOAD
;   caught 1 WARNING condition
;   caught 1 STYLE-WARNING condition

; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd
; in: DEFUN INIT
;     (DEFUN SWANK-LOADER:INIT (&KEY DELETE)
;       (ASDF/OPERATE:LOAD-SYSTEM :SWANK :FORCE SWANK-LOADER::RELOAD))
; 
; caught STYLE-WARNING:
;   The variable DELETE is defined but never used.

; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd
; in: DEFUN SWANK-LOADER:INIT
;     (ASDF/OPERATE:LOAD-SYSTEM :SWANK :FORCE SWANK-LOADER::RELOAD)
; 
; caught WARNING:
;   undefined variable: SWANK-LOADER::RELOAD
; 
; compilation unit finished
;   Undefined variable:
;     SWANK-LOADER::RELOAD
;   caught 1 WARNING condition
;   caught 1 STYLE-WARNING condition
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/packages.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE SWANK/BACKEND ...)
; compiling (DEFPACKAGE SWANK/RPC ...)
; compiling (DEFPACKAGE SWANK/MATCH ...)
; compiling (DEFPACKAGE SWANK-MOP ...)
; compiling (DEFPACKAGE SWANK ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/packages-tmpGHU3ALSV.fasl written
; compilation finished in 0:00:00.003
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/backend.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE SWANK/BACKEND)
; compiling (DEFPARAMETER *DEBUG-SWANK-BACKEND* ...)
; compiling (DEFPARAMETER *INTERFACE-FUNCTIONS* ...)
; compiling (DEFPARAMETER *UNIMPLEMENTED-INTERFACES* ...)
; compiling (DEFVAR *LOG-OUTPUT* ...)
; compiling (DEFMACRO DEFINTERFACE ...)
; compiling (DEFMACRO DEFIMPLEMENTATION ...)
; compiling (DEFUN WARN-UNIMPLEMENTED-INTERFACES ...)
; compiling (DEFUN IMPORT-TO-SWANK-MOP ...)
; compiling (DEFUN IMPORT-SWANK-MOP-SYMBOLS ...)
; compiling (DEFINTERFACE GRAY-PACKAGE-NAME ...)
; compiling (DEFMACRO WITH-STRUCT ...)
; compiling (DEFMACRO WHEN-LET ...)
; compiling (DEFUN BOOLEAN-TO-FEATURE-EXPRESSION ...)
; compiling (DEFUN WITH-SYMBOL ...)
; compiling (DEFUN CHOOSE-SYMBOL ...)
; compiling (DEFTYPE OCTET ...)
; compiling (DEFTYPE OCTETS ...)
; compiling (DEFUN UTF8-DECODE-AUX ...)
; compiling (DEFUN UTF8-DECODE ...)
; compiling (DEFUN UTF8-DECODE-INTO ...)
; compiling (DEFUN DEFAULT-UTF8-TO-STRING ...)
; compiling (DEFMACRO UTF8-ENCODE-AUX ...)
; compiling (DEFUN %UTF8-ENCODE ...)
; compiling (DEFUN UTF8-ENCODE ...)
; compiling (DEFUN UTF8-ENCODE-INTO ...)
; compiling (DEFUN DEFAULT-STRING-TO-UTF8 ...)
; compiling (DEFINTERFACE STRING-TO-UTF8 ...)
; compiling (DEFINTERFACE UTF8-TO-STRING ...)
; compiling (DEFINTERFACE CREATE-SOCKET ...)
; compiling (DEFINTERFACE LOCAL-PORT ...)
; compiling (DEFINTERFACE CLOSE-SOCKET ...)
; compiling (DEFINTERFACE ACCEPT-CONNECTION ...)
; compiling (DEFINTERFACE ADD-SIGIO-HANDLER ...)
; compiling (DEFINTERFACE REMOVE-SIGIO-HANDLERS ...)
; compiling (DEFINTERFACE ADD-FD-HANDLER ...)
; compiling (DEFINTERFACE REMOVE-FD-HANDLERS ...)
; compiling (DEFINTERFACE PREFERRED-COMMUNICATION-STYLE ...)
; compiling (DEFINTERFACE SET-STREAM-TIMEOUT ...)
; compiling (DEFINE-CONDITION NETWORK-ERROR ...)
; compiling (DEFINTERFACE EMACS-CONNECTED ...)
; compiling (DEFCONSTANT +SIGINT+ ...)
; compiling (DEFINTERFACE GETPID ...)
; compiling (DEFINTERFACE INSTALL-SIGINT-HANDLER ...)
; compiling (DEFINTERFACE CALL-WITH-USER-BREAK-HANDLER ...)
; compiling (DEFINTERFACE QUIT-LISP ...)
; compiling (DEFINTERFACE LISP-IMPLEMENTATION-TYPE-NAME ...)
; compiling (DEFINTERFACE LISP-IMPLEMENTATION-PROGRAM ...)
; compiling (DEFINTERFACE SOCKET-FD ...)
; compiling (DEFINTERFACE MAKE-FD-STREAM ...)
; compiling (DEFINTERFACE DUP ...)
; compiling (DEFINTERFACE EXEC-IMAGE ...)
; compiling (DEFINTERFACE COMMAND-LINE-ARGS ...)
; compiling (DEFINTERFACE FILENAME-TO-PATHNAME ...)
; compiling (DEFINTERFACE PATHNAME-TO-FILENAME ...)
; compiling (DEFINTERFACE DEFAULT-DIRECTORY ...)
; compiling (DEFINTERFACE SET-DEFAULT-DIRECTORY ...)
; compiling (DEFINTERFACE CALL-WITH-SYNTAX-HOOKS ...)
; compiling (DEFINTERFACE DEFAULT-READTABLE-ALIST ...)
; compiling (DEFINTERFACE PACKAGE-LOCAL-NICKNAMES ...)
; compiling (DEFINTERFACE FIND-LOCALLY-NICKNAMED-PACKAGE ...)
; compiling (DEFINTERFACE CALL-WITH-COMPILATION-HOOKS ...)
; compiling (DEFMACRO WITH-COMPILATION-HOOKS ...)
; compiling (DEFINTERFACE SWANK-COMPILE-STRING ...)
; compiling (DEFINTERFACE SWANK-COMPILE-FILE ...)
; compiling (DEFTYPE SEVERITY ...)
; compiling (DEFINE-CONDITION COMPILER-CONDITION ...)
; compiling (DEFINTERFACE FIND-EXTERNAL-FORMAT ...)
; compiling (DEFINTERFACE GUESS-EXTERNAL-FORMAT ...)
; compiling (DEFUN %SEARCH-CODING ...)
; compiling (DEFINTERFACE MAKE-OUTPUT-STREAM ...)
; compiling (DEFINTERFACE MAKE-INPUT-STREAM ...)
; compiling (DEFVAR *AUTO-FLUSH-INTERVAL* ...)
; compiling (DEFUN AUTO-FLUSH-LOOP ...)
; compiling (DEFINTERFACE MAKE-AUTO-FLUSH-THREAD ...)
; compiling (DEFINTERFACE ARGLIST ...)
; compiling (DEFGENERIC DECLARATION-ARGLIST ...)
; compiling (DEFGENERIC TYPE-SPECIFIER-ARGLIST ...)
; compiling (DEFINTERFACE TYPE-SPECIFIER-P ...)
; compiling (DEFINTERFACE FUNCTION-NAME ...)
; compiling (DEFINTERFACE VALID-FUNCTION-NAME-P ...)
; compiling (DEFINTERFACE MACROEXPAND-ALL ...)
; compiling (DEFINTERFACE COMPILER-MACROEXPAND-1 ...)
; compiling (DEFINTERFACE COMPILER-MACROEXPAND ...)
; compiling (DEFMACRO WITH-COLLECTED-MACRO-FORMS ...)
; compiling (DEFUN CALL-WITH-COLLECTED-MACRO-FORMS ...)
; compiling (DEFINTERFACE COLLECT-MACRO-FORMS ...)
; compiling (DEFINTERFACE FORMAT-STRING-EXPAND ...)
; compiling (DEFINTERFACE DESCRIBE-SYMBOL-FOR-EMACS ...)
; compiling (DEFINTERFACE DESCRIBE-DEFINITION ...)
; compiling (DEFINTERFACE INSTALL-DEBUGGER-GLOBALLY ...)
; compiling (DEFINTERFACE CALL-WITH-DEBUGGING-ENVIRONMENT ...)
; compiling (DEFINTERFACE CALL-WITH-DEBUGGER-HOOK ...)
; compiling (DEFINE-CONDITION SLDB-CONDITION ...)
; compiling (DEFINTERFACE COMPUTE-BACKTRACE ...)
; compiling (DEFINTERFACE PRINT-FRAME ...)
; compiling (DEFINTERFACE FRAME-RESTARTABLE-P ...)
; compiling (DEFINTERFACE FRAME-SOURCE-LOCATION ...)
; compiling (DEFINTERFACE FRAME-CATCH-TAGS ...)
; compiling (DEFINTERFACE FRAME-LOCALS ...)
; compiling (DEFINTERFACE FRAME-VAR-VALUE ...)
; compiling (DEFINTERFACE DISASSEMBLE-FRAME ...)
; compiling (DEFINTERFACE EVAL-IN-FRAME ...)
; compiling (DEFINTERFACE FRAME-PACKAGE ...)
; compiling (DEFINTERFACE FRAME-CALL ...)
; compiling (DEFINTERFACE RETURN-FROM-FRAME ...)
; compiling (DEFINTERFACE RESTART-FRAME ...)
; compiling (DEFINTERFACE PRINT-CONDITION ...)
; compiling (DEFINTERFACE CONDITION-EXTRAS ...)
; compiling (DEFINTERFACE GDB-INITIAL-COMMANDS ...)
; compiling (DEFINTERFACE ACTIVATE-STEPPING ...)
; compiling (DEFINTERFACE SLDB-BREAK-ON-RETURN ...)
; compiling (DEFINTERFACE SLDB-BREAK-AT-START ...)
; compiling (DEFINTERFACE SLDB-STEPPER-CONDITION-P ...)
; compiling (DEFINTERFACE SLDB-STEP-INTO ...)
; compiling (DEFINTERFACE SLDB-STEP-NEXT ...)
; compiling (DEFINTERFACE SLDB-STEP-OUT ...)
; compiling (DEFSTRUCT (LOCATION # ...) ...)
; compiling (DEFMACRO CONVERTING-ERRORS-TO-ERROR-LOCATION ...)
; compiling (DEFUN MAKE-ERROR-LOCATION ...)
; compiling (DEFINTERFACE FIND-DEFINITIONS ...)
; compiling (DEFINTERFACE FIND-SOURCE-LOCATION ...)
; compiling (DEFINTERFACE BUFFER-FIRST-CHANGE ...)
; compiling (DEFINTERFACE WHO-CALLS ...)
; compiling (DEFINTERFACE CALLS-WHO ...)
; compiling (DEFINTERFACE WHO-REFERENCES ...)
; compiling (DEFINTERFACE WHO-BINDS ...)
; compiling (DEFINTERFACE WHO-SETS ...)
; compiling (DEFINTERFACE WHO-MACROEXPANDS ...)
; compiling (DEFINTERFACE WHO-SPECIALIZES ...)
; compiling (DEFINTERFACE LIST-CALLERS ...)
; compiling (DEFINTERFACE LIST-CALLEES ...)
; compiling (DEFINTERFACE PROFILE ...)
; compiling (DEFINTERFACE PROFILED-FUNCTIONS ...)
; compiling (DEFINTERFACE UNPROFILE ...)
; compiling (DEFINTERFACE UNPROFILE-ALL ...)
; compiling (DEFINTERFACE PROFILE-REPORT ...)
; compiling (DEFINTERFACE PROFILE-RESET ...)
; compiling (DEFINTERFACE PROFILE-PACKAGE ...)
; compiling (DEFINTERFACE TOGGLE-TRACE ...)
; compiling (DEFGENERIC EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFINTERFACE EVAL-CONTEXT ...)
; compiling (DEFUN LABEL-VALUE-LINE ...)
; compiling (DEFMACRO LABEL-VALUE-LINE* ...)
; compiling (DEFINTERFACE DESCRIBE-PRIMITIVE-TYPE ...)
; compiling (DEFINTERFACE INITIALIZE-MULTIPROCESSING ...)
; compiling (DEFINTERFACE SPAWN ...)
; compiling (DEFINTERFACE THREAD-ID ...)
; compiling (DEFINTERFACE FIND-THREAD ...)
; compiling (DEFINTERFACE THREAD-NAME ...)
; compiling (DEFINTERFACE THREAD-STATUS ...)
; compiling (DEFINTERFACE THREAD-ATTRIBUTES ...)
; compiling (DEFINTERFACE CURRENT-THREAD ...)
; compiling (DEFINTERFACE ALL-THREADS ...)
; compiling (DEFINTERFACE THREAD-ALIVE-P ...)
; compiling (DEFINTERFACE INTERRUPT-THREAD ...)
; compiling (DEFINTERFACE KILL-THREAD ...)
; compiling (DEFINTERFACE SEND ...)
; compiling (DEFINTERFACE RECEIVE ...)
; compiling (DEFINTERFACE RECEIVE-IF ...)
; compiling (DEFINTERFACE WAKE-THREAD ...)
; compiling (DEFINTERFACE REGISTER-THREAD ...)
; compiling (DEFINTERFACE FIND-REGISTERED ...)
; compiling (DEFINTERFACE SET-DEFAULT-INITIAL-BINDING ...)
; compiling (DEFVAR *PENDING-SLIME-INTERRUPTS*)
; compiling (DEFUN CHECK-SLIME-INTERRUPTS ...)
; compiling (DEFVAR *INTERRUPT-QUEUED-HANDLER* ...)
; compiling (DEFINTERFACE WAIT-FOR-INPUT ...)
; compiling (DEFINTERFACE MAKE-LOCK ...)
; compiling (DEFINTERFACE CALL-WITH-LOCK-HELD ...)
; compiling (DEFINTERFACE MAKE-WEAK-KEY-HASH-TABLE ...)
; compiling (DEFINTERFACE MAKE-WEAK-VALUE-HASH-TABLE ...)
; compiling (DEFINTERFACE HASH-TABLE-WEAKNESS ...)
; compiling (DEFINTERFACE FLOAT-NAN-P ...)
; compiling (DEFINTERFACE FLOAT-INFINITY-P ...)
; compiling (DEFINTERFACE CHARACTER-COMPLETION-SET ...)
; compiling (DEFPARAMETER *TYPE-SPECIFIER-ARGLISTS* ...)
; compiling (DEFINTERFACE SAVE-IMAGE ...)
; compiling (DEFINTERFACE BACKGROUND-SAVE-IMAGE ...)
; compiling (DEFUN DEINIT-LOG-OUTPUT ...)
; compiling (DEFINTERFACE WRAP ...)
; compiling (DEFINTERFACE UNWRAP ...)
; compiling (DEFINTERFACE WRAPPED-P ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/backend-tmpAAURSO1.fasl written
; compilation finished in 0:00:00.340
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/nregex.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :CL-USER)
; compiling (DEFPACKAGE SLIME-NREGEX ...)
; compiling (IN-PACKAGE :SLIME-NREGEX)
; compiling (DEFVAR *REGEX-DEBUG* ...)
; compiling (DEFMACRO INFO ...)
; compiling (DEFVAR *REGEX-GROUPS* ...)
; compiling (DEFVAR *REGEX-GROUPINGS* ...)
; compiling (DEFUN REGEX ...)
; compiling (DEFVAR *REGEX-SPECIAL-CHARS* ...)
; compiling (DEFMACRO ADD-EXP ...)
; compiling (DEFUN REGEX-QUOTED ...)
; compiling (DEFUN REGEX-COMPILE ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/nregex-tmp5GEXGEG5.fasl written
; compilation finished in 0:00:00.048
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/source-path-parser.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE SWANK/SOURCE-PATH-PARSER ...)
; compiling (IN-PACKAGE SWANK/SOURCE-PATH-PARSER)
; compiling (LET (#) ...)
; compiling (DEFUN MAKE-SHARPDOT-READER ...)
; compiling (DEFUN MAKE-SOURCE-RECORDER ...)
; compiling (DEFUN MAKE-SOURCE-RECORDING-READTABLE ...)
; compiling (DEFUN READ-AND-RECORD-SOURCE-MAP ...)
; compiling (DEFUN STARTS-WITH-P ...)
; compiling (DEFUN EXTRACT-PACKAGE ...)
; compiling (DEFUN READTABLE-FOR-PACKAGE ...)
; compiling (DEFUN GUESS-READER-STATE ...)
; compiling (DEFUN SKIP-WHITESPACE ...)
; compiling (DEFUN SKIP-TOPLEVEL-FORMS ...)
; compiling (DEFUN READ-SOURCE-FORM ...)
; compiling (DEFUN SOURCE-PATH-STREAM-POSITION ...)
; compiling (DEFUN CHECK-SOURCE-PATH ...)
; compiling (DEFUN SOURCE-PATH-STRING-POSITION ...)
; compiling (DEFUN SOURCE-PATH-FILE-POSITION ...)
; compiling (DEFGENERIC SEXP-IN-BOUNDS-P ...)
; compiling (DEFGENERIC SEXP-REF ...)
; compiling (DEFUN SOURCE-PATH-SOURCE-POSITION ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/source-path-parser-tmpAR3FSGEY.fasl written
; compilation finished in 0:00:00.054
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/source-file-cache.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE SWANK/SOURCE-FILE-CACHE ...)
; compiling (IN-PACKAGE SWANK/SOURCE-FILE-CACHE)
; compiling (DEFVAR *CACHE-SOURCECODE* ...)
; compiling (DEFVAR *SOURCE-FILE-CACHE* ...)
; compiling (DEFSTRUCT (SOURCE-CACHE-ENTRY # ...) ...)
; compiling (DEFIMPLEMENTATION BUFFER-FIRST-CHANGE ...)
; compiling (DEFUN GET-SOURCE-CODE ...)
; compiling (DEFUN SOURCE-CACHE-GET ...)
; compiling (DEFUN SOURCE-CACHED-P ...)
; compiling (DEFUN READ-FILE ...)
; compiling (DEFVAR *SOURCE-SNIPPET-SIZE* ...)
; compiling (DEFUN READ-SNIPPET ...)
; compiling (DEFUN READ-SNIPPET-FROM-STRING ...)
; compiling (DEFUN SKIP-COMMENTS-AND-WHITESPACE ...)
; compiling (DEFUN READ-UPTO-N-CHARS ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/source-file-cache-tmpJAIDFZTC.fasl written
; compilation finished in 0:00:00.028
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/match.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE SWANK/MATCH)
; compiling (DEFMACRO MATCH ...)
; compiling (DEFMACRO SELECT-MATCH ...)
; compiling (DEFUN EXPAND-SELECT-PATTERNS ...)
; compiling (DEFUN EXPAND-SELECT-PATTERNS-STYLE-1 ...)
; compiling (DEFUN EXPAND-SELECT-PATTERNS-STYLE-2 ...)
; compiling (DEFUN COMPILE-SELECT-TEST ...)
; compiling (DEFUN COMPILE-SELECT-TESTS ...)
; compiling (DEFUN COMPILE-SELECT-BINDINGS ...)
; compiling (DEFUN SELECT-IN-TREE ...)
; compiling (DEFUN SELECT-DOUBLE-MATCH? ...)
; compiling (DEFUN SELECT-PREDICATE? ...)
; compiling (DEFUN CS-CAR ...)
; compiling (DEFUN CS-CDR ...)
; compiling (DEFUN CS-CAR/CDR ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/match-tmp8V3J6PE9.fasl written
; compilation finished in 0:00:00.035
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/rpc.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE SWANK/RPC)
; compiling (DEFINE-CONDITION SWANK-READER-ERROR ...)
; compiling (DEFUN READ-MESSAGE ...)
; compiling (DEFUN READ-PACKET ...)
; compiling (DEFUN ASCIIFY ...)
; compiling (DEFUN PARSE-HEADER ...)
; compiling (DEFUN READ-CHUNK ...)
; compiling (DEFPARAMETER *VALIDATE-INPUT* ...)
; compiling (DEFUN READ-FORM ...)
; compiling (DEFUN VALIDATING-READ ...)
; compiling (DEFUN SIMPLE-READ ...)
; compiling (DEFUN WRITE-MESSAGE ...)
; compiling (DEFUN ENCODING-ERROR ...)
; compiling (DEFUN WRITE-HEADER ...)
; compiling (DEFUN SWITCH-TO-DOUBLE-FLOATS ...)
; compiling (DEFUN PRIN1-TO-STRING-FOR-EMACS ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/rpc-tmp9V47YWQF.fasl written
; compilation finished in 0:00:00.041
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (DEFCONSTANT CL-PACKAGE ...)
; compiling (DEFCONSTANT KEYWORD-PACKAGE ...)
; compiling (DEFCONSTANT DEFAULT-SERVER-PORT ...)
; compiling (DEFVAR *SWANK-DEBUG-P* ...)
; compiling (DEFVAR *BACKTRACE-PPRINT-DISPATCH-TABLE* ...)
; compiling (DEFVAR *BACKTRACE-PRINTER-BINDINGS* ...)
; compiling (DEFVAR *DEFAULT-WORKER-THREAD-BINDINGS* ...)
; compiling (DEFUN CALL-WITH-BINDINGS ...)
; compiling (DEFMACRO WITH-BINDINGS ...)
; compiling (DEFMACRO DEFSLIMEFUN ...)
; compiling (DEFUN MISSING-ARG ...)
; compiling (DEFMACRO ADD-HOOK ...)
; compiling (DEFUN RUN-HOOK ...)
; compiling (DEFVAR *NEW-CONNECTION-HOOK* ...)
; compiling (DEFVAR *CONNECTION-CLOSED-HOOK* ...)
; compiling (DEFVAR *PRE-REPLY-HOOK* ...)
; compiling (DEFVAR *AFTER-INIT-HOOK* ...)
; compiling (DEFSTRUCT (CONNECTION # ...) ...)
; compiling (DEFUN PRINT-CONNECTION ...)
; compiling (DEFSTRUCT (SINGLETHREADED-CONNECTION # ...) ...)
; compiling (DEFSTRUCT (MULTITHREADED-CONNECTION # ...) ...)
; compiling (DEFVAR *EMACS-CONNECTION* ...)
; compiling (DEFUN MAKE-CONNECTION ...)
; compiling (DEFSLIMEFUN PING ...)
; compiling (DEFUN SAFE-BACKTRACE ...)
; compiling (DEFINE-CONDITION SWANK-ERROR ...)
; compiling (DEFUN SIGNAL-SWANK-ERROR ...)
; compiling (DEFVAR *DEBUG-ON-SWANK-PROTOCOL-ERROR* ...)
; compiling (DEFMACRO WITH-SWANK-ERROR-HANDLER ...)
; compiling (DEFMACRO WITH-PANIC-HANDLER ...)
; compiling (ADD-HOOK *NEW-CONNECTION-HOOK* ...)
; compiling (DEFUN NOTIFY-BACKEND-OF-CONNECTION ...)
; compiling (DEFVAR *SWANK-IO-PACKAGE* ...)
; compiling (DEFVAR *LOG-EVENTS* ...)
; compiling (DEFUN INIT-LOG-OUTPUT ...)
; compiling (ADD-HOOK *AFTER-INIT-HOOK* ...)
; compiling (DEFUN REAL-INPUT-STREAM ...)
; compiling (DEFUN REAL-OUTPUT-STREAM ...)
; compiling (DEFVAR *EVENT-HISTORY* ...)
; compiling (DEFVAR *EVENT-HISTORY-INDEX* ...)
; compiling (DEFVAR *ENABLE-EVENT-HISTORY* ...)
; compiling (DEFUN LOG-EVENT ...)
; compiling (DEFUN EVENT-HISTORY-TO-LIST ...)
; compiling (DEFUN CLEAR-EVENT-HISTORY ...)
; compiling (DEFUN DUMP-EVENT-HISTORY ...)
; compiling (DEFUN DUMP-EVENT ...)
; compiling (DEFUN ESCAPE-NON-ASCII ...)
; compiling (DEFUN ASCII-STRING-P ...)
; compiling (DEFUN ASCII-CHAR-P ...)
; compiling (DEFMACRO DCASE ...)
; compiling (DEFVAR *SLIME-INTERRUPTS-ENABLED*)
; compiling (DEFMACRO WITH-INTERRUPTS-ENABLED% ...)
; compiling (DEFMACRO WITH-SLIME-INTERRUPTS ...)
; compiling (DEFMACRO WITHOUT-SLIME-INTERRUPTS ...)
; compiling (DEFUN QUEUE-THREAD-INTERRUPT ...)
; compiling (DEFUN INVOKE-OR-QUEUE-INTERRUPT ...)
; compiling (DEFMACRO WITH-IO-REDIRECTION ...)
; compiling (DEFVAR *SEND-COUNTER*)
; compiling (DEFMACRO WITH-CONNECTION ...)
; compiling (DEFUN CALL-WITH-RETRY-RESTART ...)
; compiling (DEFMACRO WITH-RETRY-RESTART ...)
; compiling (DEFMACRO WITH-STRUCT* ...)
; compiling (DEFMACRO DEFINE-SPECIAL ...)
; compiling (DEFVAR *CONNECTIONS* ...)
; compiling (DEFVAR *SERVERS* ...)
; compiling (DEFUN DEFAULT-CONNECTION ...)
; compiling (DEFUN START-SENTINEL ...)
; compiling (DEFUN SENTINEL ...)
; compiling (DEFUN SEND-TO-SENTINEL ...)
; compiling (DEFUN SENTINEL-SERVE ...)
; compiling (DEFUN SENTINEL-STOP-SERVER ...)
; compiling (DEFUN SENTINEL-MAYBE-EXIT ...)
; compiling (DEFUN USE-THREADS-P ...)
; compiling (DEFUN CURRENT-THREAD-ID ...)
; compiling (DECLAIM (INLINE ENSURE-LIST))
; compiling (DEFUN ENSURE-LIST ...)
; compiling (DEFUN SYMBOL-STATUS ...)
; compiling (DEFUN SYMBOL-EXTERNAL-P ...)
; compiling (DEFVAR *COMMUNICATION-STYLE* ...)
; compiling (DEFVAR *DONT-CLOSE* ...)
; compiling (DEFPARAMETER *LOOPBACK-INTERFACE* ...)
; compiling (DEFUN START-SERVER ...)
; compiling (DEFUN CREATE-SERVER ...)
; compiling (DEFUN FIND-EXTERNAL-FORMAT-OR-LOSE ...)
; compiling (DEFMACRO RESTART-LOOP ...)
; compiling (DEFUN SOCKET-QUEST ...)
; compiling (DEFUN SETUP-SERVER ...)
; compiling (DEFUN STOP-SERVER ...)
; compiling (DEFUN RESTART-SERVER ...)
; compiling (DEFUN ACCEPT-CONNECTIONS ...)
; compiling (DEFUN AUTHENTICATE-CLIENT ...)
; compiling (DEFUN SLIME-SECRET ...)
; compiling (DEFUN SERVE-REQUESTS ...)
; compiling (DEFUN STOP-SERVING-REQUESTS ...)
; compiling (DEFUN ANNOUNCE-SERVER-PORT ...)
; compiling (DEFUN SIMPLE-ANNOUNCE-FUNCTION ...)
; compiling (DEFUN DECODE-MESSAGE ...)
; compiling (DEFUN ENCODE-MESSAGE ...)
; compiling (DEFVAR *SLDB-QUIT-RESTART* ...)
; compiling (DEFMACRO WITH-TOP-LEVEL-RESTART ...)
; compiling (DEFUN HANDLE-REQUESTS ...)
; compiling (DEFUN PROCESS-REQUESTS ...)
; compiling (DEFUN CURRENT-SOCKET-IO ...)
; compiling (DEFUN CLOSE-CONNECTION ...)
; compiling (DEFUN CLOSE-CONNECTION% ...)
; compiling (DEFUN READ-LOOP ...)
; compiling (DEFUN DISPATCH-LOOP ...)
; compiling (DEFGENERIC THREAD-FOR-EVALUATION ...)
; compiling (DEFUN INTERRUPT-WORKER-THREAD ...)
; compiling (DEFUN SPAWN-WORKER-THREAD ...)
; compiling (DEFUN ADD-ACTIVE-THREAD ...)
; compiling (DEFUN REMOVE-ACTIVE-THREAD ...)
; compiling (DEFUN DISPATCH-EVENT ...)
; compiling (DEFUN SEND-EVENT ...)
; compiling (DEFUN SEND-TO-EMACS ...)
; compiling (DEFCONSTANT SEND-COUNTER-LIMIT ...)
; compiling (DEFUN MAYBE-SLOW-DOWN ...)
; compiling (DEFUN PING-PONG ...)
; compiling (DEFUN WAIT-FOR-EVENT ...)
; compiling (DEFUN WAIT-FOR-EVENT/EVENT-LOOP ...)
; compiling (DEFUN POLL-FOR-EVENT ...)
; compiling (DEFUN EVENT-MATCH-P ...)
; compiling (DEFUN SPAWN-THREADS-FOR-CONNECTION ...)
; compiling (DEFUN CONTROL-THREAD ...)
; compiling (DEFUN CLEANUP-CONNECTION-THREADS ...)
; compiling (DEFUN INSTALL-SIGIO-HANDLER ...)
; compiling (DEFVAR *IO-INTERUPT-LEVEL* ...)
; compiling (DEFUN PROCESS-IO-INTERRUPT ...)
; compiling (DEFUN DEINSTALL-SIGIO-HANDLER ...)
; compiling (DEFUN INSTALL-FD-HANDLER ...)
; compiling (DEFUN DISPATCH-INTERRUPT-EVENT ...)
; compiling (DEFUN DEINSTALL-FD-HANDLER ...)
; compiling (DEFUN SIMPLE-SERVE-REQUESTS ...)
; compiling (DEFINE-CONDITION END-OF-REPL-INPUT ...)
; compiling (DEFUN SIMPLE-REPL ...)
; compiling (DEFUN MAKE-REPL-INPUT-STREAM ...)
; compiling (DEFUN REPL-INPUT-STREAM-READ ...)
; compiling (DEFUN READ-NON-BLOCKING ...)
; compiling (DEFVAR *CHANNELS* ...)
; compiling (DEFVAR *CHANNEL-COUNTER* ...)
; compiling (DEFCLASS CHANNEL ...)
; compiling (DEFMETHOD INITIALIZE-INSTANCE ...)
; compiling (DEFMETHOD PRINT-OBJECT ...)
; compiling (DEFUN FIND-CHANNEL ...)
; compiling (DEFGENERIC CHANNEL-SEND ...)
; compiling (DEFMACRO DEFINE-CHANNEL-METHOD ...)
; compiling (DEFUN SEND-TO-REMOTE-CHANNEL ...)
; compiling (DEFVAR *SLIME-FEATURES* ...)
; compiling (DEFUN SEND-OOB-TO-EMACS ...)
; compiling (DEFUN FORCE-USER-OUTPUT ...)
; compiling (ADD-HOOK *PRE-REPLY-HOOK* ...)
; compiling (DEFUN CLEAR-USER-INPUT ...)
; compiling (DEFVAR *TAG-COUNTER* ...)
; compiling (DEFUN MAKE-TAG ...)
; compiling (DEFUN Y-OR-N-P-IN-EMACS ...)
; compiling (DEFUN READ-FROM-MINIBUFFER-IN-EMACS ...)
; compiling (DEFSTRUCT (UNREDABLE-RESULT # ...) ...)
; compiling (DEFUN PROCESS-FORM-FOR-EMACS ...)
; compiling (DEFUN EVAL-IN-EMACS ...)
; compiling (DEFVAR *SWANK-WIRE-PROTOCOL-VERSION* ...)
; compiling (DEFSLIMEFUN CONNECTION-INFO ...)
; compiling (DEFUN DEBUG-ON-SWANK-ERROR ...)
; compiling (DEFUN (SETF DEBUG-ON-SWANK-ERROR) ...)
; compiling (DEFSLIMEFUN TOGGLE-DEBUG-ON-SWANK-ERROR ...)
; compiling (DEFINE-SPECIAL *BUFFER-PACKAGE* ...)
; compiling (DEFINE-SPECIAL *BUFFER-READTABLE* ...)
; compiling (DEFMACRO WITH-BUFFER-SYNTAX ...)
; compiling (DEFUN CALL-WITH-BUFFER-SYNTAX ...)
; compiling (DEFMACRO WITHOUT-PRINTING-ERRORS ...)
; compiling (DEFUN TO-STRING ...)
; compiling (DEFUN FROM-STRING ...)
; compiling (DEFUN PARSE-STRING ...)
; compiling (DEFUN TOKENIZE-SYMBOL ...)
; compiling (DEFUN TOKENIZE-SYMBOL-THOROUGHLY ...)
; compiling (DEFUN UNTOKENIZE-SYMBOL ...)
; compiling (DEFUN CASIFY-CHAR ...)
; compiling (DEFUN FIND-SYMBOL-WITH-STATUS ...)
; compiling (DEFUN PARSE-SYMBOL ...)
; compiling (DEFUN PARSE-SYMBOL-OR-LOSE ...)
; compiling (DEFUN PARSE-PACKAGE ...)
; compiling (DEFUN UNPARSE-NAME ...)
; compiling (DEFUN GUESS-PACKAGE ...)
; compiling (DEFVAR *READTABLE-ALIST* ...)
; compiling (DEFUN GUESS-BUFFER-READTABLE ...)
; compiling (DEFVAR *PENDING-CONTINUATIONS* ...)
; compiling (DEFUN GUESS-BUFFER-PACKAGE ...)
; compiling (DEFUN EVAL-FOR-EMACS ...)
; compiling (DEFVAR *ECHO-AREA-PREFIX* ...)
; compiling (DEFUN FORMAT-VALUES-FOR-ECHO-AREA ...)
; compiling (DEFMACRO VALUES-TO-STRING ...)
; compiling (DEFSLIMEFUN INTERACTIVE-EVAL ...)
; compiling (DEFSLIMEFUN EVAL-AND-GRAB-OUTPUT ...)
; compiling (DEFUN EVAL-REGION ...)
; compiling (DEFSLIMEFUN INTERACTIVE-EVAL-REGION ...)
; compiling (DEFSLIMEFUN RE-EVALUATE-DEFVAR ...)
; compiling (DEFVAR *SWANK-PPRINT-BINDINGS* ...)
; compiling (DEFUN SWANK-PPRINT ...)
; compiling (DEFSLIMEFUN PPRINT-EVAL ...)
; compiling (DEFSLIMEFUN SET-PACKAGE ...)
; compiling (DEFUN CAT ...)
; compiling (DEFUN TRUNCATE-STRING ...)
; compiling (DEFUN CALL/TRUNCATED-OUTPUT-TO-STRING ...)
; compiling (DEFMACRO WITH-STRING-STREAM ...)
; compiling (DEFUN TO-LINE ...)
; compiling (DEFUN ESCAPE-STRING ...)
; compiling (DEFVAR *CANONICAL-PACKAGE-NICKNAMES* ...)
; compiling (DEFVAR *AUTO-ABBREVIATE-DOTTED-PACKAGES* ...)
; compiling (DEFUN PACKAGE-STRING-FOR-PROMPT ...)
; compiling (DEFUN CANONICAL-PACKAGE-NICKNAME ...)
; compiling (DEFUN AUTO-ABBREVIATED-PACKAGE-NAME ...)
; compiling (DEFUN SHORTEST-PACKAGE-NICKNAME ...)
; compiling (DEFSLIMEFUN ED-IN-EMACS ...)
; compiling (DEFSLIMEFUN INSPECT-IN-EMACS ...)
; compiling (DEFSLIMEFUN VALUE-FOR-EDITING ...)
; compiling (DEFSLIMEFUN COMMIT-EDITED-VALUE ...)
; compiling (DEFUN BACKGROUND-MESSAGE ...)
; compiling (DEFUN SLEEP-FOR ...)
; compiling (DEFUN INVOKE-SLIME-DEBUGGER ...)
; compiling (DEFINE-CONDITION INVOKE-DEFAULT-DEBUGGER ...)
; compiling (DEFUN SWANK-DEBUGGER-HOOK ...)
; compiling (DEFUN INVOKE-DEFAULT-DEBUGGER ...)
; compiling (DEFVAR *GLOBAL-DEBUGGER* ...)
; compiling (ADD-HOOK *NEW-CONNECTION-HOOK* ...)
; compiling (DEFUN INSTALL-DEBUGGER ...)
; compiling (DEFVAR *SWANK-DEBUGGER-CONDITION* ...)
; compiling (DEFVAR *SLDB-LEVEL* ...)
; compiling (DEFVAR *SLDB-INITIAL-FRAMES* ...)
; compiling (DEFVAR *SLDB-RESTARTS* ...)
; compiling (DEFVAR *SLDB-STEPPING-P* ...)
; compiling (DEFUN DEBUG-IN-EMACS ...)
; compiling (DEFUN SLDB-LOOP ...)
; compiling (DEFUN HANDLE-SLDB-CONDITION ...)
; compiling (DEFUN %%CONDITION-MESSAGE ...)
; compiling (DEFUN %CONDITION-MESSAGE ...)
; compiling (DEFVAR *SLDB-CONDITION-PRINTER* ...)
; compiling (DEFUN SAFE-CONDITION-MESSAGE ...)
; compiling (DEFUN DEBUGGER-CONDITION-FOR-EMACS ...)
; compiling (DEFUN FORMAT-RESTARTS-FOR-EMACS ...)
; compiling (DEFSLIMEFUN SLDB-BREAK-WITH-DEFAULT-DEBUGGER ...)
; compiling (DEFSLIMEFUN BACKTRACE ...)
; compiling (DEFUN FRAME-TO-STRING ...)
; compiling (DEFSLIMEFUN DEBUGGER-INFO-FOR-EMACS ...)
; compiling (DEFUN NTH-RESTART ...)
; compiling (DEFSLIMEFUN INVOKE-NTH-RESTART ...)
; compiling (DEFSLIMEFUN SLDB-ABORT ...)
; compiling (DEFSLIMEFUN SLDB-CONTINUE ...)
; compiling (DEFUN COERCE-TO-CONDITION ...)
; compiling (DEFSLIMEFUN SIMPLE-BREAK ...)
; compiling (DEFSLIMEFUN THROW-TO-TOPLEVEL ...)
; compiling (DEFSLIMEFUN INVOKE-NTH-RESTART-FOR-EMACS ...)
; compiling (DEFUN WRAP-SLDB-VARS ...)
; compiling (DEFUN EVAL-IN-FRAME-AUX ...)
; compiling (DEFSLIMEFUN EVAL-STRING-IN-FRAME ...)
; compiling (DEFSLIMEFUN PPRINT-EVAL-STRING-IN-FRAME ...)
; compiling (DEFSLIMEFUN FRAME-PACKAGE-NAME ...)
; compiling (DEFSLIMEFUN FRAME-LOCALS-AND-CATCH-TAGS ...)
; compiling (DEFUN FRAME-LOCALS-FOR-EMACS ...)
; compiling (DEFSLIMEFUN SLDB-DISASSEMBLE ...)
; compiling (DEFSLIMEFUN SLDB-RETURN-FROM-FRAME ...)
; compiling (DEFSLIMEFUN SLDB-BREAK ...)
; compiling (DEFMACRO DEFINE-STEPPER-FUNCTION ...)
; compiling (DEFINE-STEPPER-FUNCTION SLDB-STEP ...)
; compiling (DEFINE-STEPPER-FUNCTION SLDB-NEXT ...)
; compiling (DEFINE-STEPPER-FUNCTION SLDB-OUT ...)
; compiling (DEFSLIMEFUN TOGGLE-BREAK-ON-SIGNALS ...)
; compiling (DEFSLIMEFUN SDLB-PRINT-CONDITION ...)
; compiling (DEFSTRUCT (COMPILATION-RESULT #) ...)
; compiling (DEFUN MEASURE-TIME-INTERVAL ...)
; compiling (DEFUN MAKE-COMPILER-NOTE ...)
; compiling (DEFUN COLLECT-NOTES ...)
; compiling (DEFUN SWANK-COMPILE-FILE* ...)
; compiling (DEFVAR *COMPILE-FILE-FOR-EMACS-HOOK* ...)
; compiling (DEFSLIMEFUN COMPILE-FILE-FOR-EMACS ...)
; compiling (DEFVAR *FASL-PATHNAME-FUNCTION* ...)
; compiling (DEFUN PATHNAME-AS-DIRECTORY ...)
; compiling (DEFUN COMPILE-FILE-OUTPUT ...)
; compiling (DEFUN FASL-PATHNAME ...)
; compiling (DEFSLIMEFUN COMPILE-STRING-FOR-EMACS ...)
; compiling (DEFSLIMEFUN COMPILE-MULTIPLE-STRINGS-FOR-EMACS ...)
; compiling (DEFUN FILE-NEWER-P ...)
; compiling (DEFUN REQUIRES-COMPILE-P ...)
; compiling (DEFSLIMEFUN COMPILE-FILE-IF-NEEDED ...)
; compiling (DEFSLIMEFUN LOAD-FILE ...)
; compiling (DEFSLIMEFUN SWANK-REQUIRE ...)
; compiling (DEFVAR *FIND-MODULE* ...)
; compiling (DEFUN MODULE-FILENAME ...)
; compiling (DEFUN MERGED-DIRECTORY ...)
; compiling (DEFVAR *LOAD-PATH* ...)
; compiling (DEFUN MODULE-CANDIDATES ...)
; compiling (DEFUN FIND-MODULE ...)
; compiling (DEFUN FIND-MODULE-ASDF ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.lisp
; in: DEFUN FIND-MODULE-ASDF
;     (ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME :SWANK)
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME -- please update your code to use a newer API.
;   The docstring for this function says:
;   DEPRECATED. This function used to expose ASDF internals with subtle
;   differences with respect to user expectations, that have been refactored
;   away since. We recommend you use ASDF:SYSTEM-SOURCE-FILE instead for a
;   mostly compatible replacement that we're supporting, or even
;   ASDF:SYSTEM-SOURCE-DIRECTORY or ASDF:SYSTEM-RELATIVE-PATHNAME
;   if that's whay you mean.
;   

; compiling (DEFVAR *MACROEXPAND-PRINTER-BINDINGS* ...)
; compiling (DEFUN APPLY-MACRO-EXPANDER ...)
; compiling (DEFSLIMEFUN SWANK-MACROEXPAND-1 ...)
; compiling (DEFSLIMEFUN SWANK-MACROEXPAND ...)
; compiling (DEFSLIMEFUN SWANK-MACROEXPAND-ALL ...)
; compiling (DEFSLIMEFUN SWANK-COMPILER-MACROEXPAND-1 ...)
; compiling (DEFSLIMEFUN SWANK-COMPILER-MACROEXPAND ...)
; compiling (DEFSLIMEFUN SWANK-EXPAND-1 ...)
; compiling (DEFSLIMEFUN SWANK-EXPAND ...)
; compiling (DEFUN EXPAND-1 ...)
; compiling (DEFUN EXPAND ...)
; compiling (DEFUN EXPAND-REPEATEDLY ...)
; compiling (DEFSLIMEFUN SWANK-FORMAT-STRING-EXPAND ...)
; compiling (DEFSLIMEFUN DISASSEMBLE-FORM ...)
; compiling (DEFSLIMEFUN SIMPLE-COMPLETIONS ...)
; compiling (DEFUN ALL-COMPLETIONS ...)
; compiling (DEFUN MATCHING-SYMBOLS ...)
; compiling (DEFUN UNPARSE-SYMBOL ...)
; compiling (DEFUN PREFIX-MATCH-P ...)
; compiling (DEFUN LONGEST-COMMON-PREFIX ...)
; compiling (DEFUN FORMAT-COMPLETION-SET ...)
; compiling (DEFSLIMEFUN OPERATOR-ARGLIST ...)
; compiling (DEFSLIMEFUN APROPOS-LIST-FOR-EMACS ...)
; compiling (DEFUN BRIEFLY-DESCRIBE-SYMBOL-FOR-EMACS ...)
; compiling (DEFUN MAP-IF ...)
; compiling (DEFUN LISTIFY ...)
; compiling (DEFUN PRESENT-SYMBOL-BEFORE-P ...)
; compiling (DEFUN MAKE-APROPOS-MATCHER ...)
; compiling (DEFUN APROPOS-SYMBOLS ...)
; compiling (DEFUN CALL-WITH-DESCRIBE-SETTINGS ...)
; compiling (DEFMACRO WITH-DESCRIBE-SETTINGS ...)
; compiling (DEFUN DESCRIBE-TO-STRING ...)
; compiling (DEFSLIMEFUN DESCRIBE-SYMBOL ...)
; compiling (DEFSLIMEFUN DESCRIBE-FUNCTION ...)
; compiling (DEFSLIMEFUN DESCRIBE-DEFINITION-FOR-EMACS ...)
; compiling (DEFSLIMEFUN DOCUMENTATION-SYMBOL ...)
; compiling (DEFSLIMEFUN LIST-ALL-PACKAGE-NAMES ...)
; compiling (DEFUN TRACEDP ...)
; compiling (DEFVAR *AFTER-TOGGLE-TRACE-HOOK* ...)
; compiling (DEFSLIMEFUN SWANK-TOGGLE-TRACE ...)
; compiling (DEFSLIMEFUN UNTRACE-ALL ...)
; compiling (DEFSLIMEFUN UNDEFINE-FUNCTION ...)
; compiling (DEFSLIMEFUN UNINTERN-SYMBOL ...)
; compiling (DEFSLIMEFUN SWANK-DELETE-PACKAGE ...)
; compiling (DEFUN PROFILEDP ...)
; compiling (DEFSLIMEFUN TOGGLE-PROFILE-FDEFINITION ...)
; compiling (DEFSLIMEFUN PROFILE-BY-SUBSTRING ...)
; compiling (DEFSLIMEFUN SWANK-PROFILE-PACKAGE ...)
; compiling (DEFSLIMEFUN FIND-DEFINITION-FOR-THING ...)
; compiling (DEFSLIMEFUN FIND-SOURCE-LOCATION-FOR-EMACS ...)
; compiling (DEFUN VALUE-SPEC-REF ...)
; compiling (DEFVAR *FIND-DEFINITIONS-RIGHT-TRIM* ...)
; compiling (DEFVAR *FIND-DEFINITIONS-LEFT-TRIM* ...)
; compiling (DEFUN FIND-DEFINITIONS-FIND-SYMBOL-OR-PACKAGE ...)
; compiling (DEFSLIMEFUN FIND-DEFINITIONS-FOR-EMACS ...)
; compiling (DEFGENERIC XREF-DOIT ...)
; compiling (DEFINE-XREF-ACTION :CALLS ...)
; compiling (DEFINE-XREF-ACTION :CALLS-WHO ...)
; compiling (DEFINE-XREF-ACTION :REFERENCES ...)
; compiling (DEFINE-XREF-ACTION :BINDS ...)
; compiling (DEFINE-XREF-ACTION :SETS ...)
; compiling (DEFINE-XREF-ACTION :MACROEXPANDS ...)
; compiling (DEFINE-XREF-ACTION :SPECIALIZES ...)
; compiling (DEFINE-XREF-ACTION :CALLERS ...)
; compiling (DEFINE-XREF-ACTION :CALLEES ...)
; compiling (DEFSLIMEFUN XREF ...)
; compiling (DEFSLIMEFUN XREFS ...)
; compiling (DEFUN XREF>ELISP ...)
; compiling (DEFSTRUCT (LCONS # ...) ...)
; compiling (DEFMACRO LCONS ...)
; compiling (DEFMACRO LCONS* ...)
; compiling (DEFUN LCONS-CDR ...)
; compiling (DEFUN LLIST-RANGE ...)
; compiling (DEFUN LLIST-SKIP ...)
; compiling (DEFUN LLIST-TAKE ...)
; compiling (DEFUN ILINE ...)
; compiling (DEFVAR *INSPECTOR-VERBOSE* ...)
; compiling (DEFVAR *INSPECTOR-PRINTER-BINDINGS* ...)
; compiling (DEFVAR *INSPECTOR-VERBOSE-PRINTER-BINDINGS* ...)
; compiling (DEFSTRUCT INSPECTOR-STATE)
; compiling (DEFSTRUCT (ISTATE # ...) ...)
; compiling (DEFVAR *ISTATE* ...)
; compiling (DEFVAR *INSPECTOR-HISTORY*)
; compiling (DEFUN RESET-INSPECTOR ...)
; compiling (DEFSLIMEFUN INIT-INSPECTOR ...)
; compiling (DEFUN ENSURE-ISTATE-METADATA ...)
; compiling (DEFUN INSPECT-OBJECT ...)
; compiling (DEFUN EMACS-INSPECT/ISTATE ...)
; compiling (DEFUN ISTATE>ELISP ...)
; compiling (DEFUN PREPARE-TITLE ...)
; compiling (DEFUN PREPARE-RANGE ...)
; compiling (DEFUN PREPARE-PART ...)
; compiling (DEFUN VALUE-PART ...)
; compiling (DEFUN ACTION-PART ...)
; compiling (DEFUN ASSIGN-INDEX ...)
; compiling (DEFUN PRINT-PART-TO-STRING ...)
; compiling (DEFUN CONTENT-RANGE ...)
; compiling (DEFSLIMEFUN INSPECTOR-NTH-PART ...)
; compiling (DEFSLIMEFUN INSPECT-NTH-PART ...)
; compiling (DEFSLIMEFUN INSPECTOR-RANGE ...)
; compiling (DEFSLIMEFUN INSPECTOR-CALL-NTH-ACTION ...)
; compiling (DEFSLIMEFUN INSPECTOR-POP ...)
; compiling (DEFSLIMEFUN INSPECTOR-NEXT ...)
; compiling (DEFSLIMEFUN INSPECTOR-REINSPECT ...)
; compiling (DEFSLIMEFUN INSPECTOR-TOGGLE-VERBOSE ...)
; compiling (DEFSLIMEFUN INSPECTOR-EVAL ...)
; compiling (DEFSLIMEFUN INSPECTOR-HISTORY ...)
; compiling (DEFSLIMEFUN QUIT-INSPECTOR ...)
; compiling (DEFSLIMEFUN DESCRIBE-INSPECTEE ...)
; compiling (DEFSLIMEFUN PPRINT-INSPECTOR-PART ...)
; compiling (DEFSLIMEFUN INSPECT-IN-FRAME ...)
; compiling (DEFSLIMEFUN INSPECT-CURRENT-CONDITION ...)
; compiling (DEFSLIMEFUN INSPECT-FRAME-VAR ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN INSPECT-CONS ...)
; compiling (DEFUN INSPECT-LIST ...)
; compiling (DEFUN INSPECT-LIST-AUX ...)
; compiling (DEFUN SAFE-LENGTH ...)
; compiling (DEFUN HASH-TABLE-TO-ALIST ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFVAR *THREAD-LIST* ...)
; compiling (DEFSLIMEFUN LIST-THREADS ...)
; compiling (DEFSLIMEFUN QUIT-THREAD-BROWSER ...)
; compiling (DEFUN NTH-THREAD ...)
; compiling (DEFSLIMEFUN DEBUG-NTH-THREAD ...)
; compiling (DEFSLIMEFUN KILL-NTH-THREAD ...)
; compiling (DEFSLIMEFUN START-SWANK-SERVER-IN-THREAD ...)
; compiling (DEFUN MOP-HELPER ...)
; compiling (DEFSLIMEFUN MOP ...)
; compiling (DEFUN SYNC-FEATURES-TO-EMACS ...)
; compiling (DEFUN FEATURES-FOR-EMACS ...)
; compiling (ADD-HOOK *PRE-REPLY-HOOK* ...)
; compiling (DEFVAR *CONFIGURE-EMACS-INDENTATION* ...)
; compiling (DEFSLIMEFUN UPDATE-INDENTATION-INFORMATION ...)
; compiling (DEFUN SYNC-INDENTATION-TO-EMACS ...)
; compiling (DEFUN SEND-TO-INDENTATION-CACHE ...)
; compiling (DEFUN INDENTATION-CACHE-LOOP ...)
; compiling (DEFUN HANDLE-INDENTATION-CACHE-REQUEST ...)
; compiling (DEFUN NEED-FULL-INDENTATION-UPDATE-P ...)
; compiling (DEFUN PERFORM-INDENTATION-UPDATE ...)
; compiling (DEFUN UPDATE-INDENTATION/DELTA-FOR-EMACS ...)
; compiling (DEFUN PACKAGE-NAMES ...)
; compiling (DEFUN SYMBOL-PACKAGES ...)
; compiling (DEFUN CL-SYMBOL-P ...)
; compiling (DEFUN KNOWN-TO-EMACS-P ...)
; compiling (DEFUN SYMBOL-INDENTATION ...)
; compiling (DEFUN MACRO-INDENTATION ...)
; compiling (DEFUN CLEAN-ARGLIST ...)
; compiling (DEFUN WELL-FORMED-LIST-P ...)
; compiling (DEFUN PRINT-INDENTATION-LOSSAGE ...)
; compiling (ADD-HOOK *PRE-REPLY-HOOK* ...)
; compiling (DEFSLIMEFUN IO-SPEED-TEST ...)
; compiling (DEFSLIMEFUN FLOW-CONTROL-TEST ...)
; compiling (DEFUN BEFORE-INIT ...)
; compiling (DEFUN INIT ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank-tmp9BN22RMA.fasl written
; compilation finished in 0:00:01.265
WARNING:
   Lisp compilation had style-warnings while
   compiling #<CL-SOURCE-FILE "swank" "swank">
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/sbcl.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE SWANK/SBCL ...)
; compiling (IN-PACKAGE SWANK/SBCL)
; compiling (REQUIRE (QUOTE SB-BSD-SOCKETS))
; compiling (REQUIRE (QUOTE SB-INTROSPECT))
; compiling (REQUIRE (QUOTE SB-POSIX))
; compiling (REQUIRE (QUOTE SB-CLTL2))
; compiling (DECLAIM (OPTIMIZE # ...))
; compiling (DEFUN SBCL-WITH-NEW-STEPPER-P ...)
; compiling (DEFUN SBCL-WITH-WEAK-HASH-TABLES ...)
; compiling (DEFUN SBCL-WITH-XREF-P ...)
; compiling (DEFUN SBCL-WITH-RESTART-FRAME ...)
; compiling (DEFUN SBCL-WITH-SETF-INVERSE-META-INFO ...)
; compiling (IMPORT-SWANK-MOP-SYMBOLS :SB-MOP ...)
; compiling (DEFUN SWANK-MOP:SLOT-DEFINITION-DOCUMENTATION ...)
; compiling (DEFIMPLEMENTATION GRAY-PACKAGE-NAME ...)
; compiling (DEFMETHOD SB-GRAY:STREAM-LINE-LENGTH ...)
; compiling (DEFIMPLEMENTATION LISP-IMPLEMENTATION-TYPE-NAME ...)
; compiling (DECLAIM (FTYPE # ...))
; compiling (DEFIMPLEMENTATION GETPID ...)
; compiling (DEFIMPLEMENTATION STRING-TO-UTF8 ...)
; compiling (DEFIMPLEMENTATION UTF8-TO-STRING ...)
; compiling (DEFIMPLEMENTATION PREFERRED-COMMUNICATION-STYLE ...)
; compiling (DEFUN RESOLVE-HOSTNAME ...)
; compiling (DEFIMPLEMENTATION CREATE-SOCKET ...)
; compiling (DEFIMPLEMENTATION LOCAL-PORT ...)
; compiling (DEFIMPLEMENTATION CLOSE-SOCKET ...)
; compiling (DEFIMPLEMENTATION ACCEPT-CONNECTION ...)
; compiling (DEFIMPLEMENTATION INSTALL-SIGINT-HANDLER ...)
; compiling (DEFVAR *SIGIO-HANDLERS* ...)
; compiling (DEFUN SIGIO-HANDLER ...)
; compiling (DEFUN SET-SIGIO-HANDLER ...)
; compiling (DEFUN ENABLE-SIGIO-ON-FD ...)
; compiling (DEFIMPLEMENTATION ADD-SIGIO-HANDLER ...)
; compiling (DEFIMPLEMENTATION REMOVE-SIGIO-HANDLERS ...)
; compiling (DEFIMPLEMENTATION ADD-FD-HANDLER ...)
; compiling (DEFIMPLEMENTATION REMOVE-FD-HANDLERS ...)
; compiling (DEFIMPLEMENTATION SOCKET-FD ...)
; compiling (DEFIMPLEMENTATION COMMAND-LINE-ARGS ...)
; compiling (DEFIMPLEMENTATION DUP ...)
; compiling (DEFVAR *WAIT-FOR-INPUT-CALLED*)
; compiling (DEFIMPLEMENTATION WAIT-FOR-INPUT ...)
; compiling (DEFUN FD-STREAM-INPUT-BUFFER-EMPTY-P ...)
; compiling (DEFUN INPUT-READY-P ...)
; compiling (DEFVAR *EXTERNAL-FORMAT-TO-CODING-SYSTEM* ...)
; compiling (DEFVAR *PHYSICAL-PATHNAME-HOST* ...)
; compiling (DEFIMPLEMENTATION FILENAME-TO-PATHNAME ...)
; compiling (DEFIMPLEMENTATION FIND-EXTERNAL-FORMAT ...)
; compiling (DEFIMPLEMENTATION SET-DEFAULT-DIRECTORY ...)
; compiling (DEFUN MAKE-SOCKET-IO-STREAM ...)
; compiling (DEFUN ACCEPT ...)
; compiling (DEFUN FEATURE-IN-LIST-P ...)
; compiling (DEFUN SHEBANG-READER ...)
; compiling (DEFVAR *SHEBANG-READTABLE* ...)
; compiling (DEFUN SHEBANG-READTABLE ...)
; compiling (DEFUN SBCL-PACKAGE-P ...)
; compiling (DEFUN SBCL-SOURCE-FILE-P ...)
; compiling (DEFUN GUESS-READTABLE-FOR-FILENAME ...)
; compiling (DEFVAR *DEBOOTSTRAP-PACKAGES* ...)
; compiling (DEFUN CALL-WITH-DEBOOTSTRAPPING ...)
; compiling (DEFMACRO WITH-DEBOOTSTRAPPING ...)
; compiling (DEFIMPLEMENTATION CALL-WITH-SYNTAX-HOOKS ...)
; compiling (DEFIMPLEMENTATION DEFAULT-READTABLE-ALIST ...)
; compiling (DEFIMPLEMENTATION PACKAGE-LOCAL-NICKNAMES ...)
; compiling (DEFIMPLEMENTATION ARGLIST ...)
; compiling (DEFIMPLEMENTATION FUNCTION-NAME ...)
; compiling (DEFMETHOD DECLARATION-ARGLIST ...)
; compiling (DEFMETHOD TYPE-SPECIFIER-ARGLIST ...)
; compiling (DEFIMPLEMENTATION TYPE-SPECIFIER-P ...)
; compiling (DEFVAR *BUFFER-NAME* ...)
; compiling (DEFVAR *BUFFER-TMPFILE* ...)
; compiling (DEFVAR *BUFFER-OFFSET*)
; compiling (DEFVAR *BUFFER-SUBSTRING* ...)
; compiling (DEFVAR *PREVIOUS-COMPILER-CONDITION* ...)
; compiling (DEFUN HANDLE-NOTIFICATION-CONDITION ...)
; compiling (DEFUN SIGNAL-COMPILER-CONDITION ...)
; compiling (DEFUN REAL-CONDITION ...)
; compiling (DEFUN CONDITION-REFERENCES ...)
; compiling (DEFUN COMPILER-NOTE-LOCATION ...)
; compiling (DEFUN COMPILING-FROM-BUFFER-P ...)
; compiling (DEFUN COMPILING-FROM-FILE-P ...)
; compiling (DEFUN COMPILING-FROM-GENERATED-CODE-P ...)
; compiling (DEFUN LOCATE-COMPILER-NOTE ...)
; compiling (DEFUN BRIEF-COMPILER-MESSAGE-FOR-EMACS ...)
; compiling (DEFUN COMPILER-ERROR-CONTEXT ...)
; compiling (DEFUN COMPILER-SOURCE-PATH ...)
; compiling (DEFIMPLEMENTATION CALL-WITH-COMPILATION-HOOKS ...)
; compiling (HANDLER-CASE (SB-EXT:RESTRICT-COMPILER-POLICY) ...)
; compiling (DEFUN COMPILER-POLICY ...)
; compiling (DEFUN (SETF COMPILER-POLICY) ...)
; compiling (DEFMACRO WITH-COMPILER-POLICY ...)
; compiling (DEFIMPLEMENTATION SWANK-COMPILE-FILE ...)
; compiling (SB-ALIEN:DEFINE-ALIEN-ROUTINE ("tempnam" TEMPNAM) ...)
; compiling (DEFUN TEMP-FILE-NAME ...)
; compiling (DEFVAR *TRAP-LOAD-TIME-WARNINGS* ...)
; compiling (DEFIMPLEMENTATION SWANK-COMPILE-STRING ...)
; compiling (DEFPARAMETER *DEFINITION-TYPES* ...)
; compiling (DEFUN DEFINITION-SPECIFIER ...)
; compiling (DEFUN MAKE-DSPEC ...)
; compiling (DEFIMPLEMENTATION FIND-DEFINITIONS ...)
; compiling (DEFIMPLEMENTATION FIND-SOURCE-LOCATION ...)
; compiling (DEFMACRO WITH-DEFINITION-SOURCE ...)
; compiling (DEFUN CATEGORIZE-DEFINITION-SOURCE ...)
; compiling (DEFUN FORM-NUMBER-POSITION ...)
; compiling (DEFUN FILE-FORM-NUMBER-POSITION ...)
; compiling (DEFUN STRING-FORM-NUMBER-POSITION ...)
; compiling (DEFUN DEFINITION-SOURCE-BUFFER-LOCATION ...)
; compiling (DEFUN DEFINITION-SOURCE-FILE-LOCATION ...)
; compiling (DEFUN DEFINITION-SOURCE-BUFFER-AND-FILE-LOCATION ...)
; compiling (DEFUN DEFINITION-SOURCE-FOR-EMACS ...)
; compiling (DEFUN SOURCE-FILE-POSITION ...)
; compiling (DEFUN SOURCE-HINT-SNIPPET ...)
; compiling (DEFUN FUNCTION-SOURCE-LOCATION ...)
; compiling (DEFUN SETF-EXPANDER ...)
; compiling (DEFIMPLEMENTATION DESCRIBE-SYMBOL-FOR-EMACS ...)
; compiling (DEFIMPLEMENTATION DESCRIBE-DEFINITION ...)
; compiling (DEFMACRO DEFXREF ...)
; compiling (DEFXREF WHO-CALLS)
; compiling (DEFXREF WHO-BINDS)
; compiling (DEFXREF WHO-SETS)
; compiling (DEFXREF WHO-REFERENCES)
; compiling (DEFXREF WHO-MACROEXPANDS)
; compiling (DEFXREF WHO-SPECIALIZES ...)
; compiling (DEFUN SOURCE-LOCATION-FOR-XREF-DATA ...)
; compiling (DEFIMPLEMENTATION LIST-CALLERS ...)
; compiling (DEFIMPLEMENTATION LIST-CALLEES ...)
; compiling (DEFUN SANITIZE-XREFS ...)
; compiling (DEFUN IGNORED-XREF-FUNCTION-NAMES ...)
; compiling (DEFUN FUNCTION-DSPEC ...)
; compiling (DEFIMPLEMENTATION MACROEXPAND-ALL ...)
; compiling (DEFIMPLEMENTATION COLLECT-MACRO-FORMS ...)
; compiling (DEFUN MAKE-INVOKE-DEBUGGER-HOOK ...)
; compiling (DEFUN SET-BREAK-HOOK ...)
; compiling (DEFUN CALL-WITH-BREAK-HOOK ...)
; compiling (DEFIMPLEMENTATION INSTALL-DEBUGGER-GLOBALLY ...)
; compiling (DEFIMPLEMENTATION CONDITION-EXTRAS ...)
; compiling (DEFUN EXTERNALIZE-REFERENCE ...)
; compiling (DEFVAR *SLDB-STACK-TOP*)
; compiling (DEFIMPLEMENTATION CALL-WITH-DEBUGGING-ENVIRONMENT ...)
; compiling (DEFIMPLEMENTATION ACTIVATE-STEPPING ...)
; compiling (DEFIMPLEMENTATION SLDB-STEPPER-CONDITION-P ...)
; compiling (DEFIMPLEMENTATION SLDB-STEP-INTO ...)
; compiling (DEFIMPLEMENTATION SLDB-STEP-NEXT ...)
; compiling (DEFIMPLEMENTATION SLDB-STEP-OUT ...)
; compiling (DEFIMPLEMENTATION CALL-WITH-DEBUGGER-HOOK ...)
; compiling (DEFUN NTH-FRAME ...)
; compiling (DEFIMPLEMENTATION COMPUTE-BACKTRACE ...)
; compiling (DEFIMPLEMENTATION PRINT-FRAME ...)
; compiling (DEFIMPLEMENTATION FRAME-RESTARTABLE-P ...)
; compiling (DEFIMPLEMENTATION FRAME-CALL ...)
; compiling (DEFUN CODE-LOCATION-SOURCE-LOCATION ...)
; compiling (DEFUN FILE-SOURCE-LOCATION ...)
; compiling (DEFUN FALLBACK-SOURCE-LOCATION ...)
; compiling (DEFUN LISP-SOURCE-LOCATION ...)
; compiling (DEFUN EMACS-BUFFER-SOURCE-LOCATION ...)
; compiling (DEFUN SOURCE-FILE-SOURCE-LOCATION ...)
; compiling (DEFUN CODE-LOCATION-DEBUG-SOURCE-NAME ...)
; compiling (DEFUN CODE-LOCATION-DEBUG-SOURCE-CREATED ...)
; compiling (DEFUN CODE-LOCATION-DEBUG-FUN-FUN ...)
; compiling (DEFUN CODE-LOCATION-HAS-DEBUG-BLOCK-INFO-P ...)
; compiling (DEFUN STREAM-SOURCE-POSITION ...)
; compiling (DEFUN STRING-SOURCE-POSITION ...)
; compiling (DEFIMPLEMENTATION FRAME-SOURCE-LOCATION ...)
; compiling (DEFVAR *KEEP-NON-VALID-LOCALS* ...)
; compiling (DEFUN FRAME-DEBUG-VARS ...)
; compiling (DEFUN DEBUG-VAR-VALUE ...)
; compiling (DEFUN DEBUG-VAR-INFO ...)
; compiling (DEFIMPLEMENTATION FRAME-LOCALS ...)
; compiling (DEFIMPLEMENTATION FRAME-VAR-VALUE ...)
; compiling (DEFIMPLEMENTATION FRAME-CATCH-TAGS ...)
; compiling (DEFIMPLEMENTATION EVAL-IN-FRAME ...)
; compiling (DEFIMPLEMENTATION FRAME-PACKAGE ...)
; compiling (DEFIMPLEMENTATION RETURN-FROM-FRAME ...)
; compiling (DEFIMPLEMENTATION RESTART-FRAME ...)
; compiling (DEFIMPLEMENTATION PRINT-CONDITION ...)
; compiling (DEFIMPLEMENTATION PROFILE ...)
; compiling (DEFIMPLEMENTATION UNPROFILE ...)
; compiling (DEFIMPLEMENTATION UNPROFILE-ALL ...)
; compiling (DEFIMPLEMENTATION PROFILE-REPORT ...)
; compiling (DEFIMPLEMENTATION PROFILE-RESET ...)
; compiling (DEFIMPLEMENTATION PROFILED-FUNCTIONS ...)
; compiling (DEFIMPLEMENTATION PROFILE-PACKAGE ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFVAR *THREAD-ID-COUNTER* ...)
; compiling (DEFVAR *THREAD-ID-COUNTER-LOCK* ...)
; compiling (DEFUN NEXT-THREAD-ID ...)
; compiling (DEFPARAMETER *THREAD-ID-MAP* ...)
; compiling (DEFVAR *THREAD-ID-MAP-LOCK* ...)
; compiling (DEFIMPLEMENTATION SPAWN ...)
; compiling (DEFIMPLEMENTATION THREAD-ID ...)
; compiling (DEFIMPLEMENTATION FIND-THREAD ...)
; compiling (DEFIMPLEMENTATION THREAD-NAME ...)
; compiling (DEFIMPLEMENTATION THREAD-STATUS ...)
; compiling (DEFIMPLEMENTATION MAKE-LOCK ...)
; compiling (DEFIMPLEMENTATION CALL-WITH-LOCK-HELD ...)
; compiling (DEFIMPLEMENTATION CURRENT-THREAD ...)
; compiling (DEFIMPLEMENTATION ALL-THREADS ...)
; compiling (DEFIMPLEMENTATION INTERRUPT-THREAD ...)
; compiling (DEFIMPLEMENTATION KILL-THREAD ...)
; compiling (DEFIMPLEMENTATION THREAD-ALIVE-P ...)
; compiling (DEFVAR *MAILBOX-LOCK* ...)
; compiling (DEFVAR *MAILBOXES* ...)
; compiling (DECLAIM (TYPE LIST ...))
; compiling (DEFSTRUCT (MAILBOX #) ...)
; compiling (DEFUN MAILBOX ...)
; compiling (DEFIMPLEMENTATION WAKE-THREAD ...)
; compiling (DEFIMPLEMENTATION SEND ...)
; compiling (DEFIMPLEMENTATION RECEIVE-IF ...)
; compiling (LET (# #) ...)
; compiling (DEFIMPLEMENTATION QUIT-LISP ...)
; compiling (DEFUN TOGGLE-TRACE-AUX ...)
; compiling (DEFUN PROCESS-FSPEC ...)
; compiling (DEFIMPLEMENTATION TOGGLE-TRACE ...)
; compiling (DEFIMPLEMENTATION MAKE-WEAK-KEY-HASH-TABLE ...)
; compiling (DEFIMPLEMENTATION MAKE-WEAK-VALUE-HASH-TABLE ...)
; compiling (DEFIMPLEMENTATION HASH-TABLE-WEAKNESS ...)
; compiling (DEFIMPLEMENTATION FLOAT-NAN-P ...)
; compiling (DEFIMPLEMENTATION FLOAT-INFINITY-P ...)
; compiling (DEFIMPLEMENTATION SAVE-IMAGE ...)
; compiling (SB-ALIEN:DEFINE-ALIEN-ROUTINE ("execv" SYS-EXECV) ...)
; compiling (DEFUN EXECV ...)
; compiling (DEFUN RUNTIME-PATHNAME ...)
; compiling (DEFIMPLEMENTATION EXEC-IMAGE ...)
; compiling (DEFIMPLEMENTATION MAKE-FD-STREAM ...)
; compiling (DEFIMPLEMENTATION BACKGROUND-SAVE-IMAGE ...)
; compiling (PUSHNEW (QUOTE DEINIT-LOG-OUTPUT) ...)
; compiling (DEFUN SBCL-VERSION>= ...)
; compiling (DEFIMPLEMENTATION WRAP ...)
; compiling (DEFIMPLEMENTATION UNWRAP ...)
; compiling (DEFIMPLEMENTATION WRAPPED-P ...)
; compiling (DEFUN SBCL-WRAP ...)
; compiling (DEFMETHOD SEXP-IN-BOUNDS-P ...)
; compiling (DEFMETHOD SEXP-REF ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/sbcl-tmp1CXFJSK9.fasl written
; compilation finished in 0:00:00.723
WARNING:
   redefining EMACS-INSPECT (#<SB-PCL:SYSTEM-CLASS COMMON-LISP:T>) in DEFMETHOD
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank/gray.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE SWANK/BACKEND)
; compiling NIL
; compiling NIL
; compiling (DEFPACKAGE SWANK/GRAY ...)
; compiling (IN-PACKAGE SWANK/GRAY)
; compiling (DEFCLASS SLIME-OUTPUT-STREAM ...)
; compiling (DEFUN MAYBE-SCHEDULE-FLUSH ...)
; compiling (DEFMACRO WITH-SLIME-OUTPUT-STREAM ...)
; compiling (DEFMETHOD STREAM-WRITE-CHAR ...)
; compiling (DEFMETHOD STREAM-WRITE-STRING ...)
; compiling (DEFMETHOD STREAM-LINE-COLUMN ...)
; compiling (DEFMETHOD STREAM-FINISH-OUTPUT ...)
; compiling (DEFMETHOD STREAM-FORCE-OUTPUT ...)
; compiling (DEFMETHOD STREAM-FORCE-OUTPUT ...)
; compiling (DEFMETHOD STREAM-FRESH-LINE ...)
; compiling (DEFCLASS SLIME-INPUT-STREAM ...)
; compiling (DEFMETHOD STREAM-READ-CHAR ...)
; compiling (DEFMETHOD STREAM-LISTEN ...)
; compiling (DEFMETHOD STREAM-UNREAD-CHAR ...)
; compiling (DEFMETHOD STREAM-CLEAR-INPUT ...)
; compiling (DEFMETHOD STREAM-LINE-COLUMN ...)
; compiling (DEFMETHOD STREAM-READ-CHAR-NO-HANG ...)
; compiling (DEFIMPLEMENTATION MAKE-AUTO-FLUSH-THREAD ...)
; compiling (DEFIMPLEMENTATION MAKE-OUTPUT-STREAM ...)
; compiling (DEFIMPLEMENTATION MAKE-INPUT-STREAM ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/swank/gray-tmpX4BRKI0R.fasl written
; compilation finished in 0:00:00.073
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/asdf-init.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (SETF SWANK-LOADER:*SOURCE-DIRECTORY* ...)
; compiling (SETF SWANK::*FIND-MODULE* ...)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/asdf-init-tmpQ371UGST.fasl written
; compilation finished in 0:00:00.001
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-util.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (DEFMACRO DO-SYMBOLS* ...)
; compiling (DEFUN CLASSIFY-SYMBOL ...)
; compiling (DEFUN SYMBOL-CLASSIFICATION-STRING ...)
; compiling (PROVIDE :SWANK-UTIL)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-util-tmp2OWI3Q7U.fasl written
; compilation finished in 0:00:00.024
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-c-p-c.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (SWANK-REQUIRE :SWANK-UTIL)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-c-p-c.lisp
; in: EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
;     (SWANK:SWANK-REQUIRE :SWANK-UTIL)
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME -- please update your code to use a newer API.
;   The docstring for this function says:
;   DEPRECATED. This function used to expose ASDF internals with subtle
;   differences with respect to user expectations, that have been refactored
;   away since. We recommend you use ASDF:SYSTEM-SOURCE-FILE instead for a
;   mostly compatible replacement that we're supporting, or even
;   ASDF:SYSTEM-SOURCE-DIRECTORY or ASDF:SYSTEM-RELATIVE-PATHNAME
;   if that's whay you mean.
;   

; compiling (DEFSLIMEFUN COMPLETIONS ...)
; compiling (DEFUN SYMBOL-COMPLETION-SET ...)
; compiling (DEFUN PACKAGE-COMPLETION-SET ...)
; compiling (DEFUN FIND-MATCHING-SYMBOLS ...)
; compiling (DEFUN FIND-MATCHING-SYMBOLS-IN-LIST ...)
; compiling (DEFUN FIND-MATCHING-PACKAGES ...)
; compiling (DEFUN PARSE-COMPLETION-ARGUMENTS ...)
; compiling (DEFUN COMPLETION-OUTPUT-CASE-CONVERTER ...)
; compiling (DEFUN COMPLETION-OUTPUT-PACKAGE-CONVERTER ...)
; compiling (DEFUN COMPLETION-OUTPUT-SYMBOL-CONVERTER ...)
; compiling (DEFUN DETERMINE-CASE ...)
; compiling (DEFUN MAKE-COMPOUND-PREFIX-MATCHER ...)
; compiling (DEFUN LONGEST-COMPOUND-PREFIX ...)
; compiling (DEFUN TOKENIZE-COMPLETION ...)
; compiling (DEFUN UNTOKENIZE-COMPLETION ...)
; compiling (DEFUN TRANSPOSE-LISTS ...)
; compiling (DEFSLIMEFUN COMPLETIONS-FOR-CHARACTER ...)
; compiling (PROVIDE :SWANK-C-P-C)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-c-p-c-tmp9KKTJMYV.fasl written
; compilation finished in 0:00:00.053
WARNING:
   Lisp compilation had style-warnings while
   compiling #<NO-LOAD-FILE "swank" "contrib" "swank-c-p-c">
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-arglists.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (SWANK-REQUIRE :SWANK-C-P-C)
; compiling (DEFUN COMPOSE ...)
; compiling (DEFUN LENGTH= ...)
; compiling (DECLAIM (INLINE MEMQ))
; compiling (DEFUN MEMQ ...)
; compiling (DEFUN EXACTLY-ONE-P ...)
; compiling (DEFUN VALID-OPERATOR-SYMBOL-P ...)
; compiling (DEFUN FUNCTION-EXISTS-P ...)
; compiling (DEFMACRO MULTIPLE-VALUE-OR ...)
; compiling (DEFUN ARGLIST-AVAILABLE-P ...)
; compiling (DEFMACRO WITH-AVAILABLE-ARGLIST ...)
; compiling (DEFSTRUCT (ARGLIST # ...) ...)
; compiling (DEFSTRUCT (ARGLIST-DUMMY # ...) ...)
; compiling (DEFUN EMPTY-ARG-P ...)
; compiling (DEFPARAMETER +LAMBDA-LIST-KEYWORDS+ ...)
; compiling (DEFMACRO DO-DECODED-ARGLIST ...)
; compiling (DEFUN UNDUMMY ...)
; compiling (DEFUN PRINT-DECODED-ARGLIST ...)
; compiling (DEFUN PRINT-ARG ...)
; compiling (DEFUN PRINT-DECODED-ARGLIST-AS-TEMPLATE ...)
; compiling (DEFVAR *ARGLIST-PPRINT-BINDINGS* ...)
; compiling (DEFVAR *ARGLIST-SHOW-PACKAGES* ...)
; compiling (DEFMACRO WITH-ARGLIST-IO-SYNTAX ...)
; compiling (DEFUN DECODED-ARGLIST-TO-STRING ...)
; compiling (DEFUN DECODED-ARGLIST-TO-TEMPLATE-STRING ...)
; compiling (DEFUN DECODE-REQUIRED-ARG ...)
; compiling (DEFUN ENCODE-REQUIRED-ARG ...)
; compiling (DEFSTRUCT (KEYWORD-ARG # ...) ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-arglists.lisp
; in: DEFSTRUCT KEYWORD-ARG
;     (DEFSTRUCT
;         (SWANK::KEYWORD-ARG (:CONC-NAME SWANK::KEYWORD-ARG.)
;          (:CONSTRUCTOR SWANK::%MAKE-KEYWORD-ARG))
;       KEYWORD
;       SWANK::ARG-NAME
;       SWANK::DEFAULT-ARG)
; --> PROGN EVAL-WHEN 
; ==>
;   (SB-KERNEL::%COMPILER-DEFSTRUCT
;    '#<SB-KERNEL:DEFSTRUCT-DESCRIPTION SWANK::KEYWORD-ARG {10045FE3B3}>
;    '#(#<SB-KERNEL:LAYOUT for T {20300003}>
;       #<SB-KERNEL:LAYOUT for STRUCTURE-OBJECT {20300103}>))
; 
; caught STYLE-WARNING:
;   Previously compiled calls to SWANK::KEYWORD-ARG.KEYWORD,
;   SWANK::KEYWORD-ARG.ARG-NAME and SWANK::KEYWORD-ARG.DEFAULT-ARG could not be
;   inlined because the structure definition for SWANK::KEYWORD-ARG was not yet
;   seen. To avoid this warning, DEFSTRUCT should precede references to the
;   affected functions, or they must be declared locally notinline at each call
;   site.

; compiling (DEFUN CANONICALIZE-DEFAULT-ARG ...)
; compiling (DEFUN MAKE-KEYWORD-ARG ...)
; compiling (DEFUN DECODE-KEYWORD-ARG ...)
; compiling (DEFUN ENCODE-KEYWORD-ARG ...)
; compiling (ASSERT (EQUALP # ...))
; compiling (ASSERT (EQUALP # ...))
; compiling (ASSERT (EQUALP # ...))
; compiling (ASSERT (EQUALP # ...))
; compiling (DEFSTRUCT (OPTIONAL-ARG # ...) ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-arglists.lisp
; in: DEFSTRUCT OPTIONAL-ARG
;     (DEFSTRUCT
;         (SWANK::OPTIONAL-ARG (:CONC-NAME SWANK::OPTIONAL-ARG.)
;          (:CONSTRUCTOR SWANK::%MAKE-OPTIONAL-ARG))
;       SWANK::ARG-NAME
;       SWANK::DEFAULT-ARG)
; --> PROGN EVAL-WHEN 
; ==>
;   (SB-KERNEL::%COMPILER-DEFSTRUCT
;    '#<SB-KERNEL:DEFSTRUCT-DESCRIPTION SWANK::OPTIONAL-ARG {1004A7E223}>
;    '#(#<SB-KERNEL:LAYOUT for T {20300003}>
;       #<SB-KERNEL:LAYOUT for STRUCTURE-OBJECT {20300103}>))
; 
; caught STYLE-WARNING:
;   Previously compiled calls to SWANK::OPTIONAL-ARG.ARG-NAME and
;   SWANK::OPTIONAL-ARG.DEFAULT-ARG could not be inlined because the structure
;   definition for SWANK::OPTIONAL-ARG was not yet seen. To avoid this warning,
;   DEFSTRUCT should precede references to the affected functions, or they must be
;   declared locally notinline at each call site.

; compiling (DEFUN MAKE-OPTIONAL-ARG ...)
; compiling (DEFUN DECODE-OPTIONAL-ARG ...)
; compiling (DEFUN ENCODE-OPTIONAL-ARG ...)
; compiling (ASSERT (EQUALP # ...))
; compiling (ASSERT (EQUALP # ...))
; compiling (DEFINE-MODIFY-MACRO NREVERSEF ...)
; compiling (DEFUN DECODE-ARGLIST ...)
; compiling (DEFUN ENCODE-ARGLIST ...)
; compiling (DEFUN ARGLIST-KEYWORDS ...)
; compiling (DEFUN METHODS-KEYWORDS ...)
; compiling (DEFUN GENERIC-FUNCTION-KEYWORDS ...)
; compiling (DEFUN APPLICABLE-METHODS-KEYWORDS ...)
; compiling (DEFGENERIC EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFUN MAKE-PACKAGE-COMPARATOR ...)
; compiling (DEFUN SORT-EXTRA-KEYWORDS ...)
; compiling (DEFUN KEYWORDS-OF-OPERATOR ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFUN CLASS-FROM-CLASS-NAME-FORM ...)
; compiling (DEFUN EXTRA-KEYWORDS/SLOTS ...)
; compiling (DEFUN EXTRA-KEYWORDS/MAKE-INSTANCE ...)
; compiling (DEFUN EXTRA-KEYWORDS/CHANGE-CLASS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFMETHOD EXTRA-KEYWORDS ...)
; compiling (DEFUN ENRICH-DECODED-ARGLIST-WITH-KEYWORDS ...)
; compiling (DEFUN ENRICH-DECODED-ARGLIST-WITH-EXTRA-KEYWORDS ...)
; compiling (DEFGENERIC COMPUTE-ENRICHED-DECODED-ARGLIST ...)
; compiling (DEFMETHOD COMPUTE-ENRICHED-DECODED-ARGLIST ...)
; compiling (DEFMETHOD COMPUTE-ENRICHED-DECODED-ARGLIST ...)
; compiling (DEFMETHOD COMPUTE-ENRICHED-DECODED-ARGLIST ...)
; compiling (DEFMETHOD COMPUTE-ENRICHED-DECODED-ARGLIST ...)
; compiling (DEFUN DELETE-GIVEN-ARGS ...)
; compiling (DEFUN REMOVE-GIVEN-ARGS ...)
; compiling (DEFUN ARGLIST-FROM-FORM ...)
; compiling (EXPORT (QUOTE ARGLIST-DISPATCH))
; compiling (DEFGENERIC ARGLIST-DISPATCH ...)
; compiling (DEFMETHOD ARGLIST-DISPATCH ...)
; compiling (DEFMETHOD ARGLIST-DISPATCH ...)
; compiling (DEFMETHOD ARGLIST-DISPATCH ...)
; compiling (DEFMETHOD ARGLIST-DISPATCH ...)
; compiling (DEFMETHOD ARGLIST-DISPATCH ...)
; compiling (DEFUN ARGLIST-FOR-TYPE-DECLARATION ...)
; compiling (DEFUN DECODED-ARGLIST-FOR-DECLARATION ...)
; compiling (DEFUN DECODED-ARGLIST-FOR-TYPE-SPECIFIER ...)
; compiling (DEFSLIMEFUN AUTODOC ...)
; compiling (DEFUN BOUNDP-AND-INTERESTING ...)
; compiling (DEFUN PRINT-VARIABLE-TO-STRING ...)
; compiling (DEFSLIMEFUN COMPLETE-FORM ...)
; compiling (DEFSLIMEFUN COMPLETIONS-FOR-KEYWORD ...)
; compiling (DEFPARAMETER +CURSOR-MARKER+ ...)
; compiling (DEFUN FIND-SUBFORM-WITH-ARGLIST ...)
; compiling (DEFUN EXTRACT-CURSOR-MARKER ...)
; compiling (DEFGENERIC EXTRACT-LOCAL-OP-ARGLISTS ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-arglists.lisp
; in: DEFGENERIC EXTRACT-LOCAL-OP-ARGLISTS => DEF.BODY (CDDR CURRENT-DEF)
;     (CDDR SWANK::CURRENT-DEF)
; --> CDR CDR 
; ==>
;   SWANK::CURRENT-DEF
; 
; note: deleting unreachable code

; in: DEFGENERIC EXTRACT-LOCAL-OP-ARGLISTS
;     (SWANK::%COLLECT-OP/ARGL-ALIST SWANK::DEFS)
; ==>
;   SWANK::DEFS
; 
; note: deleting unreachable code

; compiling (DEFUN %COLLECT-OP/ARGL-ALIST ...)
; compiling (DEFUN FIND-IMMEDIATELY-CONTAINING-ARGLIST ...)
; compiling (DEFUN FORM-PATH-TO-ARGLIST-PATH ...)
; compiling (DEFUN ARGLIST-INDEX ...)
; compiling (DEFUN ARGLIST-REF ...)
; compiling (DEFUN PROVIDED-ARGUMENTS-REF ...)
; compiling (DEFUN POSITIONAL-ARGS-NUMBER ...)
; compiling (DEFUN PARSE-RAW-FORM ...)
; compiling (DEFUN READ-CONVERSATIVELY ...)
; compiling (DEFUN TEST-PRINT-ARGLIST ...)
; compiling (DEFUN TEST-ARGLIST-REF ...)
; compiling (TEST-PRINT-ARGLIST)
; compiling (TEST-ARGLIST-REF)
; compiling (PROVIDE :SWANK-ARGLISTS)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-arglists-tmpJU0JWO19.fasl written
; compilation finished in 0:00:00.503
WARNING:
   Lisp compilation had style-warnings while
   compiling #<NO-LOAD-FILE "swank" "contrib" "swank-arglists">
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-asdf.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (DEFVAR *ASDF-PATH* ...)
; compiling (UNLESS (MEMBER :ASDF ...) ...)
; compiling (UNLESS (MEMBER :ASDF ...) ...)
; compiling (UNLESS (MEMBER :ASDF ...) ...)
; compiling (DEFUN ASDF-AT-LEAST ...)
; compiling (DEFMACRO ASDEFS ...)
; compiling (ASDEFS "2.15" ...)
; compiling (ASDEFS "2.16" ...)
; compiling (ASDEFS "2.17" ...)
; compiling (ASDEFS "2.19" ...)
; compiling (ASDEFS "2.21" ...)
; compiling (ASDEFS "2.22" ...)
; compiling (ASDEFS "2.26.149" ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-asdf.lisp
; in: ASDEFS "2.26.149"
;     (SWANK::ASDEFS "2.26.149"
;                    (DEFMETHOD SWANK::COMPONENT-RELATIVE-PATHNAME
;                               ((SWANK::SYSTEM ASDF/SYSTEM:SYSTEM))
;                      (UIOP/BACKWARD-DRIVER:COERCE-PATHNAME
;                       (AND
;                        (SLOT-BOUNDP SWANK::SYSTEM
;                                     'ASDF/COMPONENT:RELATIVE-PATHNAME)
;                        (SLOT-VALUE SWANK::SYSTEM
;                                    'ASDF/COMPONENT:RELATIVE-PATHNAME))
;                       :TYPE :DIRECTORY :DEFAULTS
;                       (SWANK::SYSTEM-SOURCE-DIRECTORY SWANK::SYSTEM)))
;                    (DEFUN SWANK::LOAD-ASD
;                           (PATHNAME &KEY SWANK::NAME &ALLOW-OTHER-KEYS)
;                      (ASDF/BACKWARD-INTERNALS:LOAD-SYSDEF
;                       (OR SWANK::NAME (STRING-DOWNCASE #)) PATHNAME)))
; --> PROGN UNLESS IF IF DEFMETHOD PROGN EVAL-WHEN SB-PCL::%DEFMETHOD-EXPANDER 
; --> SB-PCL::LOAD-DEFMETHOD LIST* LET* SB-INT:NAMED-LAMBDA FUNCTION 
; --> SYMBOL-MACROLET SB-PCL::FAST-LEXICAL-METHOD-FUNCTIONS 
; --> SB-PCL::BIND-FAST-LEXICAL-METHOD-FUNCTIONS FLET SB-PCL::BIND-ARGS LET* 
; --> LOCALLY SYMBOL-MACROLET SB-PCL::PV-BINDING SB-PCL::PV-BINDING1 
; --> SB-PCL::PV-ENV LOCALLY LET BLOCK 
; ==>
;   (UIOP/BACKWARD-DRIVER:COERCE-PATHNAME
;    (IF (SB-PCL::OPTIMIZED-SLOT-BOUNDP
;         (SLOT-BOUNDP SWANK::SYSTEM 'ASDF/COMPONENT:RELATIVE-PATHNAME)
;         SWANK::SYSTEM
;         (SB-PCL::INSTANCE-BOUNDP (SB-PCL::PV-OFFSET 0) SWANK::SYSTEM 0
;                                  'ASDF/COMPONENT:RELATIVE-PATHNAME
;                                  '#<STANDARD-CLASS ASDF/SYSTEM:SYSTEM>))
;        (SB-PCL::OPTIMIZED-SLOT-VALUE
;         (SLOT-VALUE SWANK::SYSTEM 'ASDF/COMPONENT:RELATIVE-PATHNAME)
;         SWANK::SYSTEM
;         (SB-PCL::INSTANCE-READ (SB-PCL::PV-OFFSET 0) SWANK::SYSTEM 0
;                                'ASDF/COMPONENT:RELATIVE-PATHNAME
;                                '#<STANDARD-CLASS ASDF/SYSTEM:SYSTEM>)))
;    :TYPE :DIRECTORY :DEFAULTS (SWANK::SYSTEM-SOURCE-DIRECTORY SWANK::SYSTEM))
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function UIOP/BACKWARD-DRIVER:COERCE-PATHNAME -- please update your code to use a newer API.
;   The docstring for this function says:
;   DEPRECATED. Please use UIOP:PARSE-UNIX-NAMESTRING instead.
;   

; in: DEFUN LOAD-ASD
;     (ASDF/BACKWARD-INTERNALS:LOAD-SYSDEF
;      (OR SWANK::NAME (STRING-DOWNCASE (PATHNAME-NAME PATHNAME))) PATHNAME)
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function ASDF/BACKWARD-INTERNALS:LOAD-SYSDEF -- please update your code to use a newer API.

; compiling (DEFMACRO WHILE-COLLECTING ...)
; compiling (DEFUN ASDF-OPERATION ...)
; compiling (DEFUN MAP-SYSTEM-COMPONENTS ...)
; compiling (DEFUN MAP-COMPONENT-SUBCOMPONENTS ...)
; compiling (DEFVAR *PATHNAME-COMPONENT* ...)
; compiling (DEFUN CLEAR-PATHNAME-COMPONENT-TABLE ...)
; compiling (DEFUN REGISTER-SYSTEM-PATHNAMES ...)
; compiling (DEFUN RECOMPUTE-PATHNAME-COMPONENT-TABLE ...)
; compiling (DEFUN PATHNAME-COMPONENT ...)
; compiling (DEFMETHOD ASDF/COMPONENT:COMPONENT-PATHNAME ...)
; compiling (DEFUN REGISTER-COMPONENT-PATHNAME ...)
; compiling (RECOMPUTE-PATHNAME-COMPONENT-TABLE)
; compiling (DEFSLIMEFUN WHO-DEPENDS-ON ...)
; compiling (DEFMETHOD XREF-DOIT ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-asdf.lisp
; in: DEFMETHOD XREF-DOIT ((EQL :DEPENDS-ON) T)
;     (ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME SWANK::DEPENDENCY)
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME -- please update your code to use a newer API.
;   The docstring for this function says:
;   DEPRECATED. This function used to expose ASDF internals with subtle
;   differences with respect to user expectations, that have been refactored
;   away since. We recommend you use ASDF:SYSTEM-SOURCE-FILE instead for a
;   mostly compatible replacement that we're supporting, or even
;   ASDF:SYSTEM-SOURCE-DIRECTORY or ASDF:SYSTEM-RELATIVE-PATHNAME
;   if that's whay you mean.
;   

; compiling (DEFSLIMEFUN OPERATE-ON-SYSTEM-FOR-EMACS ...)
; compiling (DEFUN OPERATE-ON-SYSTEM ...)
; compiling (DEFUN UNIQUE-STRING-LIST ...)
; compiling (DEFSLIMEFUN LIST-ALL-SYSTEMS-IN-CENTRAL-REGISTRY ...)
; compiling (DEFSLIMEFUN LIST-ALL-SYSTEMS-KNOWN-TO-ASDF ...)
; compiling (DEFSLIMEFUN LIST-ASDF-SYSTEMS ...)
; compiling (DEFUN ASDF-COMPONENT-SOURCE-FILES ...)
; compiling (DEFUN MAKE-OPERATION ...)
; compiling (DEFUN ASDF-COMPONENT-OUTPUT-FILES ...)
; compiling (DEFSLIMEFUN ASDF-SYSTEM-FILES ...)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-asdf.lisp
; in: DEFSLIMEFUN ASDF-SYSTEM-FILES
;     (ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME SWANK::SYSTEM)
; 
; caught STYLE-WARNING:
;   DEPRECATED-FUNCTION-STYLE-WARNING: Using deprecated function ASDF/BACKWARD-INTERFACE:SYSTEM-DEFINITION-PATHNAME -- please update your code to use a newer API.
;   The docstring for this function says:
;   DEPRECATED. This function used to expose ASDF internals with subtle
;   differences with respect to user expectations, that have been refactored
;   away since. We recommend you use ASDF:SYSTEM-SOURCE-FILE instead for a
;   mostly compatible replacement that we're supporting, or even
;   ASDF:SYSTEM-SOURCE-DIRECTORY or ASDF:SYSTEM-RELATIVE-PATHNAME
;   if that's whay you mean.
;   

; compiling (DEFSLIMEFUN ASDF-SYSTEM-LOADED-P ...)
; compiling (DEFSLIMEFUN ASDF-SYSTEM-DIRECTORY ...)
; compiling (DEFUN PATHNAME-SYSTEM ...)
; compiling (DEFSLIMEFUN ASDF-DETERMINE-SYSTEM ...)
; compiling (DEFSLIMEFUN DELETE-SYSTEM-FASLS ...)
; compiling (DEFVAR *RECOMPILE-SYSTEM* ...)
; compiling (DEFMETHOD ASDF/ACTION:OPERATION-DONE-P ...)
; compiling (DEFSLIMEFUN RELOAD-SYSTEM ...)
; compiling (WHEN (EQL *COMMUNICATION-STYLE* ...) ...)
; compiling (DEFUN TRY-COMPILE-FILE-WITH-ASDF ...)
; compiling (DEFUN TRY-COMPILE-ASD-FILE ...)
; compiling (PUSHNEW (QUOTE TRY-COMPILE-ASD-FILE) ...)
; compiling (PROVIDE :SWANK-ASDF)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-asdf-tmpZX2WN8N4.fasl written
; compilation finished in 0:00:00.094
WARNING:
   Lisp compilation had style-warnings while
   compiling #<NO-LOAD-FILE "swank" "contrib" "swank-asdf">
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-clipboard.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE :SWANK-CLIPBOARD ...)
; compiling (IN-PACKAGE :SWANK-CLIPBOARD)
; compiling (DEFSTRUCT CLIPBOARD ...)
; compiling (DEFVAR *CLIPBOARD* ...)
; compiling (DEFSLIMEFUN ADD ...)
; compiling (DEFSLIMEFUN ENTRIES ...)
; compiling (DEFSLIMEFUN DELETE-ENTRY ...)
; compiling (DEFSLIMEFUN ENTRY-TO-REF ...)
; compiling (DEFUN CLIPBOARD-ADD ...)
; compiling (DEFUN CLIPBOARD-REF ...)
; compiling (DEFUN CLIPBOARD-ENTRY ...)
; compiling (DEFUN CLIPBOARD-DELETE-ENTRY ...)
; compiling (DEFUN ENTRY-TO-STRING ...)
; compiling (DEFUN TO-LINE ...)
; compiling (PROVIDE :SWANK-CLIPBOARD)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-clipboard-tmpOU81XRV0.fasl written
; compilation finished in 0:00:00.020
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-fancy-inspector.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (SWANK-REQUIRE :SWANK-UTIL)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN INSPECT-TYPE-SPECIFIER ...)
; compiling (DEFUN DOCSTRING-ISPEC ...)
; compiling (UNLESS (FIND-METHOD # ...) ...)
; compiling (DEFUN INSPECT-FUNCTION ...)
; compiling (DEFUN METHOD-SPECIALIZERS-FOR-INSPECT ...)
; compiling (DEFUN METHOD-FOR-INSPECT-VALUE ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFVAR *GF-METHOD-GETTER* ...)
; compiling (DEFUN SPECIALIZER< ...)
; compiling (DEFUN METHODS-BY-APPLICABILITY ...)
; compiling (DEFUN ABBREV-DOC ...)
; compiling (DEFSTRUCT (INSPECTOR-CHECKLIST # ...) ...)
; compiling (DEFUN MAKE-CHECKLIST ...)
; compiling (DEFUN REINITIALIZE-CHECKLIST ...)
; compiling (DEFUN MAKE-CHECKLIST-BUTTON ...)
; compiling (DEFMACRO DO-CHECKLIST ...)
; compiling (DEFUN BOX ...)
; compiling (DEFUN REF ...)
; compiling (DEFUN (SETF REF) ...)
; compiling (DEFVAR *INSPECTOR-SLOTS-DEFAULT-ORDER* ...)
; compiling (DEFVAR *INSPECTOR-SLOTS-DEFAULT-GROUPING* ...)
; compiling (DEFGENERIC ALL-SLOTS-FOR-INSPECTOR ...)
; compiling (DEFMETHOD ALL-SLOTS-FOR-INSPECTOR ...)
; compiling (DEFUN LIST-ALL-SLOTS-BY-INHERITANCE ...)
; compiling (DEFUN MAKE-SLOT-LISTING ...)
; compiling (DEFGENERIC SLOT-VALUE-FOR-INSPECTOR ...)
; compiling (DEFUN SLOT-HOME-CLASS-USING-CLASS ...)
; compiling (DEFUN STABLE-SORT-BY-INHERITANCE ...)
; compiling (DEFUN QUERY-AND-SET-SLOT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN SPECIALIZER-DIRECT-METHODS ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFSTRUCT (%PACKAGE-SYMBOLS-CONTAINER # ...) ...)
; compiling (DEFUN %MAKE-PACKAGE-SYMBOLS-CONTAINER ...)
; compiling (DEFGENERIC MAKE-SYMBOLS-LISTING ...)
; compiling (DEFMETHOD MAKE-SYMBOLS-LISTING ...)
; compiling (DEFMETHOD MAKE-SYMBOLS-LISTING ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN DISPLAY-LINK ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN FORMAT-ISO8601-TIME ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN MAKE-PATHNAME-ISPEC ...)
; compiling (DEFUN MAKE-FILE-STREAM-ISPEC ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFMETHOD EMACS-INSPECT ...)
; compiling (DEFUN COMMON-SEPERATED-SPEC ...)
; compiling (DEFUN INSPECTOR-PRINC ...)
; compiling (PROVIDE :SWANK-FANCY-INSPECTOR)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-fancy-inspector-tmpY2ML9CFA.fasl written
; compilation finished in 0:00:00.296
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-fuzzy.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (SWANK-REQUIRE :SWANK-UTIL)
; compiling (SWANK-REQUIRE :SWANK-C-P-C)
; compiling (DEFVAR *FUZZY-DUPLICATE-SYMBOL-FILTER* ...)
; compiling (EXPORT (QUOTE *FUZZY-DUPLICATE-SYMBOL-FILTER*))
; compiling (DEFSLIMEFUN FUZZY-COMPLETIONS ...)
; compiling (DEFSTRUCT (FUZZY-MATCHING # ...) ...)
; compiling (DEFUN %FUZZY-EXTRACT-MATCHING-INFO ...)
; compiling (DEFUN FUZZY-FORMAT-MATCHING ...)
; compiling (DEFUN FUZZY-CONVERT-MATCHING-FOR-EMACS ...)
; compiling (DEFUN FUZZY-COMPLETION-SET ...)
; compiling (DEFUN FUZZY-GENERATE-MATCHINGS ...)
; compiling (DEFUN %GUESS-SORT-DURATION ...)
; compiling (DEFUN %MAKE-DUPLICATE-SYMBOLS-FILTER ...)
; compiling (DEFUN FUZZY-MATCHING-GREATERP ...)
; compiling (DECLAIM (FTYPE # ...))
; compiling (DEFUN GET-REAL-TIME-IN-MSECS ...)
; compiling (DEFUN FUZZY-FIND-MATCHING-SYMBOLS ...)
; compiling (DEFUN FUZZY-FIND-MATCHING-PACKAGES ...)
; compiling (DEFSLIMEFUN FUZZY-COMPLETION-SELECTED ...)
; compiling (DEFPARAMETER *FUZZY-RECURSION-SOFT-LIMIT* ...)
; compiling (DECLAIM (FIXNUM *FUZZY-RECURSION-SOFT-LIMIT*))
; compiling (DEFVAR *ALL-CHUNKS* ...)
; compiling (DECLAIM (TYPE LIST ...))
; compiling (DEFUN COMPUTE-HIGHEST-SCORING-COMPLETION ...)
; compiling (DEFUN COMPUTE-MOST-COMPLETIONS ...)
; compiling (DEFUN RECURSIVELY-COMPUTE-MOST-COMPLETIONS ...)
; compiling (DEFVAR *FUZZY-COMPLETION-SYMBOL-PREFIXES* ...)
; compiling (DEFVAR *FUZZY-COMPLETION-SYMBOL-SUFFIXES* ...)
; compiling (DEFVAR *FUZZY-COMPLETION-WORD-SEPARATORS* ...)
; compiling (DEFUN SCORE-COMPLETION ...)
; compiling (DEFUN HIGHLIGHT-COMPLETION ...)
; compiling (DEFUN FORMAT-FUZZY-COMPLETION-SET ...)
; compiling (PROVIDE :SWANK-FUZZY)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-fuzzy-tmpX2JYJDQE.fasl written
; compilation finished in 0:00:00.121
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-hyperdoc.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (DEFSLIMEFUN HYPERDOC ...)
; compiling (PROVIDE :SWANK-HYPERDOC)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-hyperdoc-tmpOPCILR65.fasl written
; compilation finished in 0:00:00.004
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-indentation.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (DEFVAR *APPLICATION-HINTS-TABLES* ...)
; compiling (DEFUN HAS-APPLICATION-INDENTATION-HINT-P ...)
; compiling (DEFUN APPLICATION-INDENTATION-HINT ...)
; compiling (DEFUN SYMBOL-INDENTATION ...)
; compiling (DEFUN MACRO-INDENTATION ...)
; compiling (PROVIDE :SWANK-INDENTATION)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-indentation-tmpRV9F8A9A.fasl written
; compilation finished in 0:00:00.015
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-repl.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE SWANK)
; compiling (DEFPACKAGE SWANK-REPL ...)
; compiling (IN-PACKAGE SWANK-REPL)
; compiling (DEFVAR *USE-DEDICATED-OUTPUT-STREAM* ...)
; compiling (DEFVAR *DEDICATED-OUTPUT-STREAM-PORT* ...)
; compiling (DEFVAR *DEDICATED-OUTPUT-STREAM-BUFFERING* ...)
; compiling (DEFVAR *GLOBALLY-REDIRECT-IO* ...)
; compiling (DEFUN OPEN-STREAMS ...)
; compiling (DEFUN MAKE-OUTPUT-FUNCTION ...)
; compiling (DEFUN MAKE-OUTPUT-FUNCTION-FOR-TARGET ...)
; compiling (DEFUN MAKE-OUTPUT-STREAM-FOR-TARGET ...)
; compiling (DEFUN OPEN-DEDICATED-OUTPUT-STREAM ...)
; compiling (DEFMETHOD THREAD-FOR-EVALUATION ...)
; compiling (DEFMETHOD THREAD-FOR-EVALUATION ...)
; compiling (DEFUN FIND-REPL-THREAD ...)
; compiling (DEFUN SPAWN-REPL-THREAD ...)
; compiling (DEFUN REPL-LOOP ...)
; compiling (DEFSLIMEFUN CREATE-REPL ...)
; compiling (DEFUN INITIALIZE-STREAMS-FOR-CONNECTION ...)
; compiling (DEFUN READ-USER-INPUT-FROM-EMACS ...)
; compiling (DEFVAR *LISTENER-EVAL-FUNCTION* ...)
; compiling (DEFVAR *LISTENER-SAVED-VALUE* ...)
; compiling (DEFSLIMEFUN LISTENER-SAVE-VALUE ...)
; compiling (DEFSLIMEFUN LISTENER-GET-VALUE ...)
; compiling (DEFSLIMEFUN LISTENER-EVAL ...)
; compiling (DEFSLIMEFUN CLEAR-REPL-VARIABLES ...)
; compiling (DEFVAR *SEND-REPL-RESULTS-FUNCTION* ...)
; compiling (DEFUN REPL-EVAL ...)
; compiling (DEFUN TRACK-PACKAGE ...)
; compiling (DEFUN SEND-REPL-RESULTS-TO-EMACS ...)
; compiling (DEFSLIMEFUN REDIRECT-TRACE-OUTPUT ...)
; compiling (DEFVAR *SAVED-GLOBAL-STREAMS* ...)
; compiling (DEFUN SETUP-STREAM-INDIRECTION ...)
; compiling (DEFUN PREFIXED-VAR ...)
; compiling (DEFVAR *STANDARD-OUTPUT-STREAMS* ...)
; compiling (DEFVAR *STANDARD-INPUT-STREAMS* ...)
; compiling (DEFVAR *STANDARD-IO-STREAMS* ...)
; compiling (DEFUN INIT-GLOBAL-STREAM-REDIRECTION ...)
; compiling (DEFUN GLOBALLY-REDIRECT-IO-TO-CONNECTION ...)
; compiling (DEFUN REVERT-GLOBAL-IO-REDIRECTION ...)
; compiling (DEFVAR *GLOBAL-STDIO-CONNECTION* ...)
; compiling (DEFUN MAYBE-REDIRECT-GLOBAL-IO ...)
; compiling (DEFUN UPDATE-REDIRECTION-AFTER-CLOSE ...)
; compiling (PROVIDE :SWANK-REPL)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-repl-tmpK2ZAJT4I.fasl written
; compilation finished in 0:00:00.093
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-macrostep.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (DEFPACKAGE SWANK-MACROSTEP ...)
; compiling (IN-PACKAGE #:SWANK-MACROSTEP)
; compiling (DEFSLIMEFUN MACROSTEP-EXPAND-1 ...)
; compiling (DEFUN EXPAND-FORM-ONCE ...)
; compiling (DEFSLIMEFUN MACRO-FORM-P ...)
; compiling (DEFUN MACRO-FORM-TYPE ...)
; compiling (DEFPARAMETER *MACROSTEP-TAG* ...)
; compiling (DEFPARAMETER *MACROSTEP-PLACEHOLDER* ...)
; compiling (DEFINE-CONDITION EXPANSION-IN-CONTEXT-FAILED ...)
; compiling (DEFMACRO THROW-EXPANSION ...)
; compiling (DEFMACRO THROW-COLLECTED-MACRO-FORMS ...)
; compiling (DEFUN MACROEXPAND-1-IN-CONTEXT ...)
; compiling (DEFUN COLLECT-MACRO-FORMS-IN-CONTEXT ...)
; compiling (DEFUN MACROEXPAND-AND-CATCH ...)
; compiling (DEFUN ENCLOSE-FORM-IN-CONTEXT ...)
; compiling (DEFUN MARKER-CHAR-P ...)
; compiling (DEFUN MAKE-MARKER-CHAR ...)
; compiling (DEFUN MARKER-CHAR-ID ...)
; compiling (DEFPARAMETER +WHITESPACE+ ...)
; compiling (DEFUN WHITESPACEP ...)
; compiling (DEFUN PPRINT-TO-STRING ...)
; compiling (DEFUN COLLECT-FORM-POSITIONS ...)
; compiling (DEFUN MAKE-TRACKING-PPRINT-DISPATCH ...)
; compiling (DEFUN COLLECT-MARKER-POSITIONS ...)
; compiling (DEFUN FIND-NON-WHITESPACE-POSITION ...)
; compiling (PROVIDE :SWANK-MACROSTEP)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-macrostep-tmpUX5S4ADN.fasl written
; compilation finished in 0:00:00.046
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-mrepl.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (LET (#) ...)
; compiling (DEFPACKAGE :SWANK-MREPL ...)
; compiling (IN-PACKAGE :SWANK-MREPL)
; compiling (DEFCLASS LISTENER-CHANNEL ...)
; compiling (DEFUN PACKAGE-PROMPT ...)
; compiling (DEFSLIMEFUN CREATE-MREPL ...)
; compiling (DEFUN INITIAL-LISTENER-ENV ...)
; compiling (DEFUN SPAWN-LISTENER-THREAD ...)
; compiling (DEFUN DROP-UNPROCESSED-EVENTS ...)
; compiling (DEFINE-CHANNEL-METHOD :PROCESS ...)
; compiling (DEFUN MREPL-EVAL ...)
; compiling (DEFUN SEND-PROMPT ...)
; compiling (DEFUN MREPL-READ ...)
; compiling (DEFUN READ-EVAL-PRINT ...)
; compiling (DEFUN MAKE-LISTENER-OUTPUT-STREAM ...)
; compiling (DEFUN MAKE-LISTENER-INPUT-STREAM ...)
; compiling (DEFUN SET-MODE ...)
; compiling (DEFUN READ-INPUT ...)
; compiling (PROVIDE :SWANK-MREPL)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-mrepl-tmp10401X32.fasl written
; compilation finished in 0:00:00.039
; compiling file "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-listener-hooks.lisp" (written 28 AUG 2018 07:14:51 PM):
; compiling (IN-PACKAGE :SWANK)
; compiling (SWANK-REQUIRE :SWANK-REPL)
; file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-listener-hooks.lisp
; in: EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
;     (SWANK:SWANK-REQUIRE :SWANK-REPL)
; 
; caught WARNING:
;   SWANK-REPL also exports the following symbols:
;     (SWANK-REPL:LISTENER-SAVE-VALUE SWANK-REPL:REDIRECT-TRACE-OUTPUT
;      SWANK-REPL:CLEAR-REPL-VARIABLES SWANK-REPL:CREATE-REPL
;      SWANK-REPL:LISTENER-GET-VALUE SWANK-REPL:LISTENER-EVAL)
;   See also:
;     The ANSI Standard, Macro DEFPACKAGE
;     The SBCL Manual, Variable SB-EXT:*ON-PACKAGE-VARIANCE*
; 
; caught STYLE-WARNING:
;   redefining THREAD-FOR-EVALUATION (#<STRUCTURE-CLASS SWANK::MULTITHREADED-CONNECTION>
;                                     #<SB-MOP:EQL-SPECIALIZER :FIND-EXISTING>) in DEFMETHOD

; compiling (DEFVAR *SLIME-REPL-ADVANCE-HISTORY* ...)
; compiling (DEFVAR *SLIME-REPL-SUPPRESS-OUTPUT* ...)
; compiling (DEFVAR *SLIME-REPL-EVAL-HOOK-PASS* ...)
; compiling (DEFVAR *SLIME-REPL-EVAL-HOOKS* ...)
; compiling (EXPORT (QUOTE *SLIME-REPL-EVAL-HOOKS*))
; compiling (DEFSLIMEFUN REPL-EVAL-HOOK-PASS ...)
; compiling (DEFSLIMEFUN REPL-SUPPRESS-OUTPUT ...)
; compiling (DEFSLIMEFUN REPL-SUPPRESS-ADVANCE-HISTORY ...)
; compiling (DEFUN %EVAL-REGION ...)
; compiling (DEFUN RUN-REPL-EVAL-HOOKS ...)
; compiling (DEFUN %LISTENER-EVAL ...)
; compiling (SETQ SWANK-REPL::*LISTENER-EVAL-FUNCTION* ...)
; compiling (PROVIDE :SWANK-LISTENER-HOOKS)

; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-listener-hooks-tmpZ7CBRM0G.fasl written
; compilation finished in 0:00:00.013
Unhandled UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
                                                          {10005585B3}>:
  COMPILE-FILE-ERROR while
  compiling #<NO-LOAD-FILE "swank" "contrib" "swank-listener-hooks">

Backtrace for: #<SB-THREAD:THREAD "main thread" RUNNING {10005585B3}>
0: (SB-DEBUG::DEBUGGER-DISABLED-HOOK #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10067DFBF3}> #<unused argument> :QUIT T)
1: (SB-DEBUG::RUN-HOOK *INVOKE-DEBUGGER-HOOK* #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10067DFBF3}>)
2: (INVOKE-DEBUGGER #<UIOP/LISP-BUILD:COMPILE-FILE-ERROR {10067DFBF3}>)
3: (ERROR UIOP/LISP-BUILD:COMPILE-FILE-ERROR :CONTEXT-FORMAT "~/asdf-action::format-action/" :CONTEXT-ARGUMENTS ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<SWANK-LOADER::NO-LOAD-FILE "swank" "contrib" "swank-listener-hooks">)))
4: (UIOP/LISP-BUILD:CHECK-LISP-COMPILE-RESULTS NIL T T "~/asdf-action::format-action/" ((#<ASDF/LISP-ACTION:COMPILE-OP > . #<SWANK-LOADER::NO-LOAD-FILE "swank" "contrib" "swank-listener-hooks">)))
5: ((SB-PCL::EMF ASDF/ACTION:PERFORM) #<unused argument> #<unused argument> #<ASDF/LISP-ACTION:COMPILE-OP > #<SWANK-LOADER::NO-LOAD-FILE "swank" "contrib" "swank-listener-hooks">)
6: ((LAMBDA NIL :IN ASDF/ACTION:CALL-WHILE-VISITING-ACTION))
7: ((:METHOD ASDF/ACTION:PERFORM-WITH-RESTARTS :AROUND (T T)) #<ASDF/LISP-ACTION:COMPILE-OP > #<SWANK-LOADER::NO-LOAD-FILE "swank" "contrib" "swank-listener-hooks">) [fast-method]
8: ((:METHOD ASDF/PLAN:PERFORM-PLAN (T)) #<ASDF/PLAN:SEQUENTIAL-PLAN {10024E9433}>) [fast-method]
9: ((FLET SB-C::WITH-IT :IN SB-C::%WITH-COMPILATION-UNIT))
10: ((:METHOD ASDF/PLAN:PERFORM-PLAN :AROUND (T)) #<ASDF/PLAN:SEQUENTIAL-PLAN {10024E9433}>) [fast-method]
11: ((:METHOD ASDF/OPERATE:OPERATE (ASDF/OPERATION:OPERATION ASDF/COMPONENT:COMPONENT)) #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "swank"> :PLAN-CLASS NIL :PLAN-OPTIONS NIL) [fast-method]
12: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "swank">)
13: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
14: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) #<ASDF/BUNDLE:COMPILE-BUNDLE-OP > #<ASDF/SYSTEM:SYSTEM "swank">) [fast-method]
15: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> ASDF/BUNDLE:COMPILE-BUNDLE-OP "swank")
16: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
17: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) ASDF/BUNDLE:COMPILE-BUNDLE-OP "swank") [fast-method]
18: (ASDF/SESSION:CALL-WITH-ASDF-SESSION #<CLOSURE (LAMBDA NIL :IN ASDF/OPERATE:OPERATE) {100216D1CB}> :OVERRIDE T :KEY NIL :OVERRIDE-CACHE T :OVERRIDE-FORCING NIL)
19: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
20: (ASDF/SESSION:CALL-WITH-ASDF-SESSION #<CLOSURE (LAMBDA NIL :IN ASDF/OPERATE:OPERATE) {10040D2A6B}> :OVERRIDE NIL :KEY NIL :OVERRIDE-CACHE NIL :OVERRIDE-FORCING NIL)
21: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) ASDF/BUNDLE:COMPILE-BUNDLE-OP "swank") [fast-method]
22: (SB-INT:SIMPLE-EVAL-IN-LEXENV (ASDF/OPERATE:OPERATE (QUOTE ASDF/BUNDLE:COMPILE-BUNDLE-OP) "swank") #<NULL-LEXENV>)
23: (EVAL (ASDF/OPERATE:OPERATE (QUOTE ASDF/BUNDLE:COMPILE-BUNDLE-OP) "swank"))
24: (SB-IMPL::PROCESS-EVAL/LOAD-OPTIONS ((:EVAL . "(require :asdf)") (:EVAL . "(let ((*package* (find-package :asdf))) (load \"/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd\"))") (:EVAL . "(asdf:operate (quote asdf:compile-bundle-op) \"swank\")") (:QUIT)))
25: (SB-IMPL::TOPLEVEL-INIT)
26: ((FLET SB-UNIX::BODY :IN SAVE-LISP-AND-DIE))
27: ((FLET "WITHOUT-INTERRUPTS-BODY-27" :IN SAVE-LISP-AND-DIE))
28: ((LABELS SB-IMPL::RESTART-LISP :IN SAVE-LISP-AND-DIE))

unhandled condition in --disable-debugger mode, quitting
; 
; compilation unit aborted
;   caught 1 fatal ERROR condition
;   caught 1 WARNING condition
;   caught 9 STYLE-WARNING conditions
;   printed 2 notes
Backtrace:
           7 (primitive-load "/gnu/store/kc09sdlmi6pz0skn6fq3k87firp…")
In ice-9/eval.scm:
   191:35  6 (_ _)
In ice-9/boot-9.scm:
    152:2  5 (with-fluid* _ _ _)
    152:2  4 (with-fluid* _ _ _)
In srfi/srfi-1.scm:
    640:9  3 (for-each #<procedure 982ba0 at /gnu/store/ig46c9fafvf…> …)
In /gnu/store/ig46c9fafvfv0czlpgh7l4w1xmwzsvaj-module-import/guix/build/gnu-build-system.scm:
   799:31  2 (_ _)
In /gnu/store/ig46c9fafvfv0czlpgh7l4w1xmwzsvaj-module-import/guix/build/asdf-build-system.scm:
    124:4  1 (build #:outputs _ #:inputs _ #:asd-file _ # _)
In unknown file:
           0 (scm-error misc-error #f "~A ~S ~S" ("lisp-eval-pro…" …) …)

ERROR: In procedure scm-error:
lisp-eval-program failed! "/gnu/store/rdvy6q3nskb0r01rwjrxj3935d850r2d-sbcl-1.4.4/bin/sbcl" ((require :asdf) (let ((*package* (find-package :asdf))) (load "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/swank.asd")) (asdf:operate (quote asdf:compile-bundle-op) "swank"))
note: keeping build directory `/tmp/guix-build-sbcl-slime-swank-2.22.drv-1'
builder for `/gnu/store/p4g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv' failed with exit code 1
@ build-failed /gnu/store/p4g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv - 1 builder for `/gnu/store/p4g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv' failed with exit code 1
guix build: error: build failed: build of `/gnu/store/p4g18f13gj0wasxkrnh1hiz4x69xipjd-sbcl-slime-swank-2.22.drv' failed
--8<---------------cut here---------------end--------------->8---

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-28 19:18         ` Pierre Neidhardt
@ 2018-08-29  6:18           ` Andy Patterson
  2018-09-02 16:59             ` Pierre Neidhardt
  0 siblings, 1 reply; 14+ messages in thread
From: Andy Patterson @ 2018-08-29  6:18 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Hey Pierre,

On Tue, 28 Aug 2018 21:18:39 +0200
Pierre Neidhardt <mail@ambrevar.xyz> wrote:

> Thanks for the details.
> 
> Here is the full backtrace when I attempt to build sbcl-slime-swank
> with PR #433 (https://github.com/slime/slime/pull/433):
> 

[...]

> ; /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/lib/sbcl/contrib/swank-mrepl-tmp10401X32.fasl
> written ; compilation finished in 0:00:00.039
> ; compiling file
> "/gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-listener-hooks.lisp" (written
> 28 AUG 2018 07:14:51 PM): ; compiling (IN-PACKAGE :SWANK) ; compiling
> (SWANK-REQUIRE :SWANK-REPL) ;
> file: /gnu/store/223af099vkzml89z1y8m654clsja8xph-sbcl-slime-swank-2.22/share/common-lisp/sbcl-source/swank/contrib/swank-listener-hooks.lisp ;
> in: EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE) ;
> (SWANK:SWANK-REQUIRE :SWANK-REPL) ; 
> ; caught WARNING:
> ;   SWANK-REPL also exports the following symbols:
> ;     (SWANK-REPL:LISTENER-SAVE-VALUE SWANK-REPL:REDIRECT-TRACE-OUTPUT
> ;      SWANK-REPL:CLEAR-REPL-VARIABLES SWANK-REPL:CREATE-REPL
> ;      SWANK-REPL:LISTENER-GET-VALUE SWANK-REPL:LISTENER-EVAL)
> ;   See also:
> ;     The ANSI Standard, Macro DEFPACKAGE
> ;     The SBCL Manual, Variable SB-EXT:*ON-PACKAGE-VARIANCE*

This is definitely the most suspicious block for me; it looks just like
the problem that's causing our slynk package to fail building.  I don't
know much about the various eval-when options, but
removing :compile-toplevel and :load-toplevel in a snippet fixes the
problem in slynk - and the require wasn't needed because asdf already
sets up that kind of dependency loading.  I'm not sure if that'll also
be the case here but it's probably worth giving a try.

Hoping that helps,

--
Andy

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-08-29  6:18           ` Andy Patterson
@ 2018-09-02 16:59             ` Pierre Neidhardt
  2018-09-08 21:49               ` Andy Patterson
  0 siblings, 1 reply; 14+ messages in thread
From: Pierre Neidhardt @ 2018-09-02 16:59 UTC (permalink / raw)
  To: Andy Patterson; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1018 bytes --]

I tried your suggestion.

--8<---------------cut here---------------start------------->8---
(snippet
        '(begin
           (substitute* "contrib/swank-listener-hooks.lisp"
             ((":compile-toplevel :load-toplevel ") ""))
           (substitute* "contrib/swank-presentations.lisp"
             ((":compile-toplevel :load-toplevel ") ""))
           #t))
--8<---------------cut here---------------end--------------->8---

SWANK builds, but when I try to build mgl-pax, I get the following error:

--8<---------------cut here---------------start------------->8---
Unhandled SB-KERNEL:SIMPLE-PACKAGE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
                                                      {10005585B3}>:
  Error finding package for symbol "*SOURCE-DIRECTORY*":
 The name "SWANK-LOADER" does not designate any package.
--8<---------------cut here---------------end--------------->8---

I guess the ASDF is incomplete.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-09-02 16:59             ` Pierre Neidhardt
@ 2018-09-08 21:49               ` Andy Patterson
  2018-09-11 21:01                 ` Pierre Neidhardt
  0 siblings, 1 reply; 14+ messages in thread
From: Andy Patterson @ 2018-09-08 21:49 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Hi Pierre,

On Sun, 02 Sep 2018 18:59:12 +0200
Pierre Neidhardt <mail@ambrevar.xyz> wrote:

> I tried your suggestion.
> 
> --8<---------------cut here---------------start------------->8---
> (snippet
>         '(begin
>            (substitute* "contrib/swank-listener-hooks.lisp"
>              ((":compile-toplevel :load-toplevel ") ""))
>            (substitute* "contrib/swank-presentations.lisp"
>              ((":compile-toplevel :load-toplevel ") ""))
>            #t))
> --8<---------------cut here---------------end--------------->8---
> 
> SWANK builds, but when I try to build mgl-pax, I get the following
> error:

Glad that helped.

> 
> --8<---------------cut here---------------start------------->8---
> Unhandled SB-KERNEL:SIMPLE-PACKAGE-ERROR in thread #<SB-THREAD:THREAD
> "main thread" RUNNING {10005585B3}>:  
>   Error finding package for symbol "*SOURCE-DIRECTORY*":
>  The name "SWANK-LOADER" does not designate any package.
> --8<---------------cut here---------------end--------------->8---
> 
> I guess the ASDF is incomplete.
> 

Yeah, could be. If you update your branch with the swank package
definition and your mgl-pax package, I'll take a look and see if I can
find out how to fix the issue.

Thanks,

--
Andy

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-09-08 21:49               ` Andy Patterson
@ 2018-09-11 21:01                 ` Pierre Neidhardt
  2018-09-11 21:17                   ` Leo Famulari
  0 siblings, 1 reply; 14+ messages in thread
From: Pierre Neidhardt @ 2018-09-11 21:01 UTC (permalink / raw)
  To: Andy Patterson; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

Done.

By the way, I could not rebase+push, upstream complains that I cannot push
non-fast-forward commits and that I should pull first.  How am I supposed to
rebase my branch?

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-09-11 21:01                 ` Pierre Neidhardt
@ 2018-09-11 21:17                   ` Leo Famulari
  2018-09-12  8:10                     ` Pierre Neidhardt
  0 siblings, 1 reply; 14+ messages in thread
From: Leo Famulari @ 2018-09-11 21:17 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 641 bytes --]

On Tue, Sep 11, 2018 at 11:01:08PM +0200, Pierre Neidhardt wrote:
> By the way, I could not rebase+push, upstream complains that I cannot push
> non-fast-forward commits and that I should pull first.  How am I supposed to
> rebase my branch?

For wip-* branches [0], please delete the branch remotely and then push
it again. This is effectively the same thing as force-pushing, but with
an extra step ;) We disabled all forced pushes in our repo on Savannah.

For example:

$ git push origin :branch && git push origin branch

[0] We use the 'wip-' prefix to indicate that history may be rewritten.
Other branches should use merges instead.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist.
  2018-09-11 21:17                   ` Leo Famulari
@ 2018-09-12  8:10                     ` Pierre Neidhardt
  0 siblings, 0 replies; 14+ messages in thread
From: Pierre Neidhardt @ 2018-09-12  8:10 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 68 bytes --]

OK, will do later.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2018-09-12  8:10 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-23 16:24 [Next browser] Common Lisp: mgl-pax: Package SWANK-BACKEND does not exist Pierre Neidhardt
2018-08-24 10:32 ` Pierre Neidhardt
2018-08-24 12:56 ` Ludovic Courtès
2018-08-24 13:15   ` Pierre Neidhardt
2018-08-27  7:24   ` Andy Patterson
2018-08-27  7:42     ` Pierre Neidhardt
2018-08-28  7:36       ` Andy Patterson
2018-08-28 19:18         ` Pierre Neidhardt
2018-08-29  6:18           ` Andy Patterson
2018-09-02 16:59             ` Pierre Neidhardt
2018-09-08 21:49               ` Andy Patterson
2018-09-11 21:01                 ` Pierre Neidhardt
2018-09-11 21:17                   ` Leo Famulari
2018-09-12  8:10                     ` Pierre Neidhardt

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).