Add quicklisp

This commit is contained in:
Dorian Wood 2021-03-19 11:42:31 -04:00
parent 83775eb45f
commit 9c1dfb0742
9 changed files with 13035 additions and 0 deletions

0
dot_quicklisp/.keep Normal file
View File

12834
dot_quicklisp/asdf.lisp Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,28 @@
(:version "2021-02-13"
:client-info-format "1"
:subscription-url
"http://beta.quicklisp.org/client/quicklisp.sexp"
:canonical-client-info-url
"http://beta.quicklisp.org/client/2021-02-13/client-info.sexp"
:client-tar
(:url "http://beta.quicklisp.org/client/2021-02-13/quicklisp.tar"
:size 266240
:md5 "542cf39ce18d25b245976a5ea26e4b9b"
:sha256
"a8a3c8c91b51dd185175abad4d7c3999ebb4e2520be5a6cee2127035ac6c87be")
:setup
(:url "http://beta.quicklisp.org/client/2021-02-11/setup.lisp"
:size 5057
:md5 "76f4570ecee8066924f915cb882dba64"
:sha256
"549fe3e7e0f2669daede98437c99cd60e02c0b8536d3d135c9aa9d346ed951b6")
:asdf
(:url "http://beta.quicklisp.org/asdf/3.2.1/asdf.lisp"
:size 643253
:md5 "1765635a8b5c545b586cb33c2dcdec0d"
:sha256
"51912f3f7c2c62c204f515d97346d56011528399bbf0a76a123318343ebd8bf0"))

View File

View File

View File

135
dot_quicklisp/setup.lisp Normal file
View File

@ -0,0 +1,135 @@
(defpackage #:ql-setup
(:use #:cl)
(:export #:*quicklisp-home*
#:qmerge
#:qenough))
(in-package #:ql-setup)
(unless *load-truename*
(error "This file must be LOADed to set up quicklisp."))
(defvar *quicklisp-home*
(make-pathname :name nil :type nil
:defaults *load-truename*))
(defun qmerge (pathname)
"Return PATHNAME merged with the base Quicklisp directory."
(merge-pathnames pathname *quicklisp-home*))
(defun qenough (pathname)
(enough-namestring pathname *quicklisp-home*))
;;; ASDF is a hard requirement of quicklisp. Make sure it's either
;;; already loaded or load it from quicklisp's bundled version.
(defvar *required-asdf-version* "3.0")
;;; Put ASDF's fasls in a separate directory
(defun implementation-signature ()
"Return a string suitable for discriminating different
implementations, or similar implementations with possibly-incompatible
FASLs."
;; XXX Will this have problems with stuff like threads vs
;; non-threads fasls?
(let ((*print-pretty* nil))
(format nil "lisp-implementation-type: ~A~%~
lisp-implementation-version: ~A~%~
machine-type: ~A~%~
machine-version: ~A~%"
(lisp-implementation-type)
(lisp-implementation-version)
(machine-type)
(machine-version))))
(defun dumb-string-hash (string)
"Produce a six-character hash of STRING."
(let ((hash #xD13CCD13))
(loop for char across string
for value = (char-code char)
do
(setf hash (logand #xFFFFFFFF
(logxor (ash hash 5)
(ash hash -27)
value))))
(subseq (format nil "~(~36,6,'0R~)" (mod hash 88888901))
0 6)))
(defun asdf-fasl-pathname ()
"Return a pathname suitable for storing the ASDF FASL, separated
from ASDF FASLs from incompatible implementations. Also, save a file
in the directory with the implementation signature, if it doesn't
already exist."
(let* ((implementation-signature (implementation-signature))
(original-fasl (compile-file-pathname (qmerge "asdf.lisp")))
(fasl
(qmerge (make-pathname
:defaults original-fasl
:directory
(list :relative
"cache"
"asdf-fasls"
(dumb-string-hash implementation-signature)))))
(signature-file (merge-pathnames "signature.txt" fasl)))
(ensure-directories-exist fasl)
(unless (probe-file signature-file)
(with-open-file (stream signature-file :direction :output)
(write-string implementation-signature stream)))
fasl))
(defun ensure-asdf-loaded ()
"Try several methods to make sure that a sufficiently-new ASDF is
loaded: first try (require \"asdf\"), then loading the ASDF FASL, then
compiling asdf.lisp to a FASL and then loading it."
(let ((source (qmerge "asdf.lisp")))
(labels ((asdf-symbol (name)
(let ((asdf-package (find-package '#:asdf)))
(when asdf-package
(find-symbol (string name) asdf-package))))
(version-satisfies (version)
(let ((vs-fun (asdf-symbol '#:version-satisfies))
(vfun (asdf-symbol '#:asdf-version)))
(when (and vs-fun vfun
(fboundp vs-fun)
(fboundp vfun))
(funcall vs-fun (funcall vfun) version)))))
(block nil
(macrolet ((try (&body asdf-loading-forms)
`(progn
(handler-bind ((warning #'muffle-warning))
(ignore-errors
,@asdf-loading-forms))
(when (version-satisfies *required-asdf-version*)
(return t)))))
(try)
(try (require "asdf"))
(let ((fasl (asdf-fasl-pathname)))
(try (load fasl :verbose nil))
(try (load (compile-file source :verbose nil :output-file fasl))))
(error "Could not load ASDF ~S or newer" *required-asdf-version*))))))
(ensure-asdf-loaded)
;;;
;;; Quicklisp sometimes must upgrade ASDF. Ugrading ASDF will blow
;;; away existing ASDF methods, so e.g. FASL recompilation :around
;;; methods would be lost. This config file will make it possible to
;;; ensure ASDF can be configured before loading Quicklisp itself via
;;; ASDF. Thanks to Nikodemus Siivola for pointing out this issue.
;;;
(let ((asdf-init (probe-file (qmerge "asdf-config/init.lisp"))))
(when asdf-init
(with-simple-restart (skip "Skip loading ~S" asdf-init)
(load asdf-init :verbose nil :print nil))))
(push (qmerge "quicklisp/") asdf:*central-registry*)
(let ((*compile-print* nil)
(*compile-verbose* nil)
(*load-verbose* nil)
(*load-print* nil))
(asdf:oos 'asdf:load-op "quicklisp" :verbose nil))
(quicklisp:setup)

View File

@ -0,0 +1,38 @@
;;;; This file was created automatically by the Quicklisp library
;;;; "quicklisp-slime-helper" from the "quicklisp" dist.
(unless (boundp 'quicklisp-slime-helper-dist)
(setq quicklisp-slime-helper-dist "quicklisp"))
(setq quicklisp-slime-helper-base
(if load-file-name
(file-name-directory load-file-name)
(expand-file-name "~/quicklisp/")))
(defun quicklisp-slime-helper-file-contents (file)
(with-temp-buffer
(insert-file-contents file)
(buffer-string)))
(defun quicklisp-slime-helper-system-directory (system)
(let ((location-file (concat quicklisp-slime-helper-base
"dists/"
quicklisp-slime-helper-dist
"/installed/systems/"
system
".txt")))
(when (file-exists-p location-file)
(let ((relative (quicklisp-slime-helper-file-contents location-file)))
(file-name-directory (concat quicklisp-slime-helper-base
relative))))))
(defun quicklisp-slime-helper-slime-directory ()
(quicklisp-slime-helper-system-directory "swank"))
(let* ((quicklisp-slime-directory (quicklisp-slime-helper-slime-directory)))
(add-to-list 'load-path quicklisp-slime-directory)
(require 'slime-autoloads)
(setq slime-backend (expand-file-name "swank-loader.lisp"
quicklisp-slime-directory))
(setq slime-path quicklisp-slime-directory)
(slime-setup '(slime-fancy)))

0
dot_quicklisp/tmp/.keep Normal file
View File