Skip to content

Commit 02d54c0

Browse files
authored
Add quantumlisp dist (provide up-to-date magicl) (rigetti#6)
* Add quantumlisp dist (provide up-to-date magicl) * Update quicklisp dist version to 2020-02-18
1 parent b3a5059 commit 02d54c0

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN curl -o /tmp/quicklisp.lisp 'https://beta.quicklisp.org/quicklisp.lisp' && \
5050
# quickload libraries
5151
ADD . /src/docker-lisp
5252
WORKDIR /src/docker-lisp
53-
RUN sbcl --eval '(ql:quickload (uiop:read-file-lines "quicklisp-libraries.txt"))' --quit
53+
RUN sbcl --load "quantumlisp.lisp" --eval '(ql:quickload (uiop:read-file-lines "quicklisp-libraries.txt"))' --quit
5454

5555
# enter into an SBCL REPL (requirements: rlwrap, sbcl)
5656
CMD sleep 0.05; rlwrap sbcl

VERSION-QUICKLISP.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2019-11-30
1+
2020-02-18

quantumlisp.lisp

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
(ql:quickload :drakma)
2+
3+
(defun https-fetch (url file &key (follow-redirects t) quietly
4+
(if-exists :rename-and-delete)
5+
(maximum-redirects ql-http:*maximum-redirects*))
6+
(declare (ignore follow-redirects quietly maximum-redirects if-exists))
7+
(let ((response (drakma:http-request url :force-binary t )))
8+
(with-open-file (s file :direction :output :if-exists :supersede :if-does-not-exist :create
9+
:element-type '(unsigned-byte 8))
10+
(write-sequence response s)))
11+
nil)
12+
13+
(setf ql-http:*fetch-scheme-functions*
14+
(append ql-http:*fetch-scheme-functions*
15+
'(("https" . https-fetch))))
16+
17+
(ql-dist:install-dist "https://quicklisp.infra.rigetti.com:443/quantumlisp.txt"
18+
:prompt nil)

0 commit comments

Comments
 (0)