Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Add asd file #31

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions repl.lisp
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
#!/usr/bin/env -S sbcl --script
(load "~/quicklisp/setup")

(let ((*standard-output* (make-broadcast-stream)))
(ql:quickload "alexandria")
(ql:quickload "cl-readline")
(ql:quickload "str"))

(require :sb-introspect)

(defpackage :sbcli
Expand Down
23 changes: 23 additions & 0 deletions sbcli.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(in-package asdf-user)

(defsystem sbcli
:description "REPL for my SBCL needs"
:long-description "A better REPL for SBCL.
sbcli handles errors gracefully, is not too verbose, has readline capabilities,
including multiline input and reset, and has optional syntax highlighting
capabilities using pygmentize."
:version "0.1.4"
:author "Veit Heller <[email protected]>"
:license "GPLv3"
:depends-on
("alexandria"
"cl-readline"
"str")
:components
((:module ""
:serial t
:components
((:file "repl"))))
:build-operation "program-op"
:entry-point "repl:sbcli"
:build-pathname #.(merge-pathnames #p"repl" (uiop:getcwd)))