intended to be a launcher for a major lisp environment that just works.
Go to file
2015-02-15 15:28:10 +09:00
debian samples/debian.ros to make debian package(not tested) 2015-02-07 16:58:39 +09:00
samples samples/debian.ros to make debian package(not tested) 2015-02-07 16:58:39 +09:00
src try compiling mingw64 2015-02-15 15:28:10 +09:00
t introduced ros.script into *features* 2014-12-11 04:32:41 +09:00
.gitignore Today I'd like to forget about my duty(1 commit/day) 2015-02-09 01:37:14 +09:00
.travis.yml check sbcl-bin version on .travis.yml 2015-01-25 20:55:08 +09:00
AUTHORS first commit 2014-07-30 03:09:01 +09:00
bootstrap add bootstrap for make it easier to use autotools. 2014-10-07 00:54:27 +09:00
ChangeLog first commit 2014-07-30 03:09:01 +09:00
configure.ac try compiling mingw64 2015-02-15 15:28:10 +09:00
COPYING renew COPYING and renew README.md 2015-01-10 22:46:55 +09:00
Makefile.am tidyup Makefile.am 2014-09-07 14:24:26 +09:00
NEWS first commit 2014-07-30 03:09:01 +09:00
README.md Reorganize README and correct some English errors. 2015-01-15 15:46:06 +09:00

Roswell - Common Lisp environment setup Utility.

Build Status

This software is still beta. Basic interfaces are fixed, we beleive it works well on Unix-like platforms like Linux, Mac OS X and FreeBSD, but some parts are not implemented, not stable on other OSes yet.

Description

Roswell is a command line tool to install and manage Common Lisp implementations damn easily.

Limitations

There's a lot of works should be done.

  • SBCL is the only one we supports currently (#9)
  • Not supports Windows (working on at #1)

Installation

Building

For Mac OS X users

If you're on Mac OS X and wanna use Homebrew, use the custom tap:

$ brew tap snmsts/roswell
$ brew install roswell

From source code

$ git clone -b release https://github.com/snmsts/roswell.git
$ cd roswell
$ sh bootstrap
$ ./configure
$ make
$ sudo make install

Setup

First of all, you have to install Lisp environment. You can install a binary version of SBCL and Quicklisp from internet by this command:

$ ros setup

After the installation, you can get sub-commands and command line options by this command:

$ ros

How to use

Installing Lisps

If you want to install the newest released version of sbcl you can do it by:

$ ros install sbcl

and if you have specific version like "1.2.0" to install then

$ ros install sbcl/1.2.0

will install that version.

You can get which version of SBCL are installed by this command:

$ ros list installed sbcl

Setting the default implementation used by ros

$ ros run -- --version

will show you which version are used. You can change implementation by

$ ros use sbcl/1.2.3

Using roswell with Emacs and SLIME

To setup slime with roswell, type like this

ros -Q -e '(ql:quickload :quicklisp-slime-helper)' -q

Add lines like below to init.el

(load (expand-file-name "~/.roswell/impls/ALL/ALL/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "ros -L sbcl -Q run")

to load with .sbclrc

(setq inferior-lisp-program "ros -L sbcl -Q -l ~/.sbclrc run")

Chef recipe for roswell

@Rudolph-Miller is providing a Chef recipe for setting roswell up.

Why we named it 'roswell'?

From made with secret alien technology.

I felt making it easier to use Lisp for people is a kind of making opportunity for humanbeings to mingle with alien technology. I recall roswell incident by the concept. I'm not sure what you feel.

See Also

  • keens/cim : similar project that is implemented in shellscript.I motivated to implement roswell by seeing this project.

Author

SANO Masatoshi (snmsts@gmail.com)

Contributors

Special Thanks to

Project

License

MIT