Skip to content
intend to be a lisp installer and launcher for major environment that just work.
Branch: master
Clone or download
Latest commit 3554afb Apr 29, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
debian new year. Jan 2, 2019
documents [ci skip] documents update Apr 11, 2019
lisp debug ros dump Apr 28, 2019
patch include patch files for compile sbcl. Nov 15, 2017
samples edit some for debian package May 3, 2015
scripts change version scheme from next version. Apr 10, 2019
src use correct lispworks command line argument -eval Apr 19, 2019
t clisp is not stable for test. Aug 14, 2018
.appveyor.yml Change .appveyor.yml for MSYS2 x86_64 Aug 15, 2018
.gitignore drop support for making homebrew recipe. Dec 15, 2016
.travis.yml try xenial Apr 11, 2019
AUTHORS first commit Jul 29, 2014
COPYING new year. Jan 2, 2019
ChangeLog bump version to 19.4.10.98 Apr 1, 2019
HACKING.md specified the common default output behavior Jan 16, 2016
INSTALL.md snmsts-> roswell Jan 1, 2016
ISSUE_TEMPLATE.md tag-based repeller Nov 30, 2017
Makefile.am configure.ac Add: define and set git_version, git_version_long, rosli… Mar 19, 2019
NEWS
README.md delete circle.yml Sep 16, 2018
bootstrap
configure.ac Merge pull request #360 from tomrake/issue-359 Apr 1, 2019
roswell-test.asd modernize asd files. May 30, 2017
roswell.asd bump version to 19.4.10.98 Apr 1, 2019

README.md

Roswell - Common Lisp environment setup Utility.

Build Status Build status Quicklisp

Roswell is a Lisp implementation installer/manager, launcher, and much more!

Roswell started out as a command-line tool with the aim to make installing and managing Common Lisp implementations really simple and easy.

Roswell has now evolved into a full-stack environment for Common Lisp development, and has many features that makes it easy to test, share, and distribute your Lisp applications. With Roswell, we aim to push the Common Lisp community to a whole new level of productivity.

Roswell is still in beta. Despite this, the basic interfaces are stable and not likely to change. Roswell currently works well on Unix-like platforms such as Linux, Mac OS X and FreeBSD. Roswell also works on other operating systems, but currently some parts or features might be missing or unstable.

Checkout issues list if you are interested in what's lacking.

Installation, Dependency & Usage

See our github wiki. We provide prebuilt binaries for homebrew on OSX, AUR on Arch and also on Windows.

Features

Feature comparison is available!

  • Implementation Manager
  • Scripting environment (similar to cl-launch)
  • Building utility (similar to buildapp)
  • Novel : Easier setup for initializing a script
  • Novel : Better integration to the command-line interface (Bash completion, etc)
  • Novel : Infrastructure for bundling/installing the scripts to/from a quicklisp system
  • Novel : Better support for Windows environment (tested exhaustively)
  • Novel : Better integration to CI environment (e.g. Travis-CI, CircleCI, Coveralls)

Usage

Roswell has git-like subcommands which resemble that of cl-launch, buildapp.

$ ros
Common Lisp environment setup Utility.

Usage:

   ros [options] Command [arguments...]
or
   ros [options] [[--] script-path arguments...]

commands:
   run       Run repl
   install   Install a given implementation or a system for roswell environment
   update    Update installed systems.
   build     Make executable from script.
   use       Change default implementation.
   init      Creates a new ros script, optionally based on a template.
   list      List Information
   delete    Delete installed implementations
   config    Get and set options
   version   Show the roswell version information

Use "ros help [command]" for more information about a command.

Additional help topics:

   options

Use "ros help [topic]" for more information about the topic.

Managing/Installing Several Lisp Installations

$ ros install               # displays a list of all installable implementations

$ ros install sbcl-bin      # default sbcl
$ ros install sbcl          # The newest released version of sbcl
$ ros install ccl-bin       # default prebuilt binary of ccl
$ ros install sbcl/1.2.0    # A specific version of sbcl

$ ros list installed sbcl   # Listing the installed implementations
$ ros run -- --version      # check which implementation is used
SBCL 1.2.15
$ ros use sbcl/1.2.3        # change the default implementation

To use an implementation that was not installed by roswell, use i.e. ros use sbcl/system.

The list of supported implementations continues to grow!

Installing scripts

It is also possible to install scripts using ros install:

$ ros install qlot            # will install a program from quicklisp
$ ros install fukamachi/qlot  # will install it from the GitHub

To add installable scripts into the system, you need to put roswell scripts (files having .ros extensions) into a roswell subdirectory. Take a look at qlot's roswell/qlot.ros.

Scripting with Roswell

$ ros init
Usage: ros init [template] name [options...]

$ ros init fact
Successfully generated: fact.ros

$ emacs fact.ros
## editing the fact.ros ...

$ cat fact.ros
#!/bin/sh
#|-*- mode:lisp -*-|#
#|
exec ros -Q -- $0 "$@"
|#

(defun fact (n)
  (if (zerop n)
      1
      (* n (fact (1- n)))))

(defun main (n &rest argv)
  (declare (ignore argv))
  (format t "~&Factorial ~D = ~D~%" n (fact (parse-integer n))))

$ ./fact.ros 10
Factorial 10 = 3628800

Chef recipe for roswell

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

Roswell with CircleCI

@fukamachi use Roswell with CircleCI.

Naming Origin '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

  • cl-launch : influenced by the project of command line parameters design.

Author

SANO Masatoshi (snmsts@gmail.com)

Contributors

Special Thanks to

Project

License

Licensed under the MIT License.

You can’t perform that action at this time.