Skip to content

Commit

Permalink
Rename asd package
Browse files Browse the repository at this point in the history
  • Loading branch information
yitzchak committed Feb 14, 2019
1 parent e8b928b commit 715d0ef
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -34,7 +34,7 @@ env:
install:
- pip3 install --user jupyter jupyter_kernel_test
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh
- ros install ./cl-jupyter.asd
- ros install ./common-lisp-jupyter.asd

script:
- python3 tests/client.py
2 changes: 1 addition & 1 deletion AUTHORS.md
@@ -1,4 +1,4 @@
Common-Lisp-Jupyter Authors/Contributors
common-lisp-jupyter Authors/Contributors
===============================
- Tarn W. Burton -- creator and maintainer

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
@@ -1,6 +1,6 @@
FROM archlinux/base:latest

RUN pacman -Syu --noconfirm base-devel jupyter git readline
RUN pacman -Syu --noconfirm base-devel jupyter git readline

ARG NB_USER=jupyter
ARG NB_UID=1000
Expand Down Expand Up @@ -29,7 +29,7 @@ RUN chown -R ${NB_UID} ${HOME} && chgrp -R ${NB_USER} ${HOME}
USER ${NB_USER}

RUN ros install sbcl-bin
RUN ros install ./cl-jupyter.asd; exit 0
RUN ros install ./cl-jupyter.asd
RUN ros install ./common-lisp-jupyter.asd; exit 0
RUN ros install ./common-lisp-jupyter.asd

WORKDIR ${HOME}/common-lisp-jupyter/examples
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -20,7 +20,7 @@ install:
- set PATH=%CD%/roswell;%PATH%
- ros install %LISP%
- ps: ros run -e '(format t \"~a ~a~%\" (lisp-implementation-type) (lisp-implementation-version))' -q
- ros install cl-jupyter.asd
- ros install common-lisp-jupyter.asd

build: false

Expand Down
2 changes: 1 addition & 1 deletion cl-jupyter.asd → common-lisp-jupyter.asd
@@ -1,4 +1,4 @@
(asdf:defsystem #:cl-jupyter
(asdf:defsystem #:common-lisp-jupyter
:description "An Enhanced Interactive Shell for Common Lisp (based on the Jupyter protocol)."
:version "0.7"
:author "Tarn W. Burton"
Expand Down
4 changes: 2 additions & 2 deletions roswell/cl-jupyter.ros
Expand Up @@ -5,7 +5,7 @@ exec ros -Q -- $0 "$@"
|#
(progn ;;init forms
(ros:ensure-asdf)
#+quicklisp (ql:quickload :cl-jupyter :silent t))
#+quicklisp (ql:quickload :common-lisp-jupyter :silent t))

(defpackage :ros.script.cl-jupyter.3758812737
(:use :cl))
Expand All @@ -14,6 +14,6 @@ exec ros -Q -- $0 "$@"
(defun main (&optional connection-file &rest argv)
(declare (ignore argv))
(if connection-file
(jupyter:run-kernel 'cl-jupyter:kernel connection-file)
(jupyter:run-kernel 'common-lisp-jupyter:kernel connection-file)
(format *error-output* "give me connection file!~%")))
;;; vim: set ft=lisp lisp:
2 changes: 1 addition & 1 deletion src/cl-kernel.lisp
@@ -1,4 +1,4 @@
(in-package #:cl-jupyter)
(in-package #:common-lisp-jupyter)

(defclass kernel (jupyter:kernel)
()
Expand Down
3 changes: 2 additions & 1 deletion src/packages.lisp
Expand Up @@ -37,7 +37,8 @@
#:result
#:send-result))

(defpackage #:cl-jupyter
(defpackage #:common-lisp-jupyter
(:nicknames :cl-jupyter)
(:use #:cl #:iterate)
(:export
#:kernel))
Expand Down

0 comments on commit 715d0ef

Please sign in to comment.