Home

Awesome

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-40README-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

cl-brewer - Homebrew formula builder for Common Lisp applications.

<a id="cl-brewer-asdf-system-details"></a>

CL-BREWER ASDF System Details

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40ABOUT-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

About

Currently there is no easy way to distribute common lisp applications. One promising way is to use roswell project however it might be to complicated for the users how just want to install an application and are not really interested in having one more package manager for that.

In Mac OS X world the most popular solution is to use brew package manager and all we need is to be able to generate formula that will handle installation proccess. Since homebrew guidelines are not really fond of using third-party managers to get dependencies, we need to generate list manually and feed it to brew.

cl-brewer uses SBCL and targets command line applications written in Common Lisp. GUI applications haven't been tested and might require additional changes.

This application is based on the awesome quicklisp-homebrew-roundup but has a purpose to make a process simplier by:

At the moment several assumptions were made:

Here is an example formula

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40INSTALLATION-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Installation

brew tap 40ants/soft
brew install cl-brewer

Or you can install it using Roswell:

# install roswell and sbcl before
$ ros install 40ants/cl-brewer

If you want to install it to use from the REPL, then you can install this library from Quicklisp, but you want to receive updates quickly, then install it from Ultralisp.org:

(ql-dist:install-dist "http://dist.ultralisp.org/"
                      :prompt nil)
(ql:quickload :cl-brewer)

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40USAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Usage

Just run:

cl-brewer <your-system-name>

This will emit <your-system-name>.rb file in current folder.

To run cl-brewer under Qlot, you'll need set SBCL_HOME variable. Otherwise sb-sys::*sbcl-homedir-pathname* variable will be reinitialized and this can cause some incompatibilities if Qlot and cl-brewer were built with different SBCL implementations.

Thus, in this case call cl-brewer like this:

qlot exec bash -c "SBCL_HOME='' cl-brewer <your-system-name>"

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40BUILDING-CL-BREWER-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Building a formula for cl-brewer

To kickstart a cl-brewer and to create a formula for itself, load it in the REPL and do like that:

CL-USER> (cl-brewer:create-formula :cl-brewer)
#<BUILDAPP-FORMULA "cl-brewer" depends on 23 systems>

CL-USER> (cl-brewer:save-formula * "cl-brewer"
                                 :preload (list "quicklisp-starter"))
Downloading "https://github.com/40ants/cl-brewer/archive/v0.5.5.tar.gz" (Unknown size)
NIL

However, in most cases you can just install cl-brewer from the Homebrew. In this case, you can update cl-brewer's formula with this command:

qlot exec cl-brewer 
          --preload quicklisp-starter 
          cl-brewer

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40LOCAL-INSTALL-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Installing From Local Formula

How to install cl-brewer (or any other project) from a local formula?

Replace url line in a formula:

url "https://github.com/40ants/cl-brewer/archive/v0.5.6.tar.gz"

with two lines like this:

url File.dirname(__FILE__), :using => :git
version "0.5.6-rc1"

Next, do this in the shell:

HOMEBREW_NO_AUTO_UPDATE=1 brew install --debug --verbose ./*.rb

it should build and install cl-brewer.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CONTRIBUTE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Contribute

If you are interested in using this project but your application has different requirements, please open an issue or make a pull request. Contributions are welcome!

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40LICENSE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

License

All code is public domain except parts that were taken from quicklisp-homebrew-roundup which is under MIT License.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40API-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

API

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

CL-BREWER

<a id="x-28-23A-28-289-29-20BASE-CHAR-20-2E-20-22CL-BREWER-22-29-20PACKAGE-29"></a>

package cl-brewer

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Classes

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-24FORMULA-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

FORMULA

<a id="x-28CL-BREWER-3AFORMULA-20CLASS-29"></a>

class cl-brewer:formula ()

Base class for Homebrew formula definition.

Readers

<a id="x-28CL-BREWER-2FFORMULA-3AINCLUDED-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-20CL-BREWER-3AFORMULA-29-29"></a>

reader cl-brewer/formula:included-systems (formula) (:included-systems)

<a id="x-28CL-BREWER-2FFORMULA-3AMISSING-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-20CL-BREWER-3AFORMULA-29-29"></a>

reader cl-brewer/formula:missing-systems (formula) (:missing-systems)

<a id="x-28CL-BREWER-2FFORMULA-3AROOT-SYSTEM-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-20CL-BREWER-3AFORMULA-29-29"></a>

reader cl-brewer/formula:root-system (formula) (:root-system)

Accessors

<a id="x-28CL-BREWER-2FFORMULA-3AINCLUDED-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AACCESSOR-20CL-BREWER-3AFORMULA-29-29"></a>

accessor cl-brewer/formula:included-systems (formula) (:included-systems)

<a id="x-28CL-BREWER-2FFORMULA-3AMISSING-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AACCESSOR-20CL-BREWER-3AFORMULA-29-29"></a>

accessor cl-brewer/formula:missing-systems (formula) (:missing-systems)

<a id="x-28CL-BREWER-2FFORMULA-3AROOT-SYSTEM-20-2840ANTS-DOC-2FLOCATIVES-3AACCESSOR-20CL-BREWER-3AFORMULA-29-29"></a>

accessor cl-brewer/formula:root-system (formula) (:root-system)

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-3FGenerics-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Generics

<a id="x-28CL-BREWER-3ACREATE-FORMULA-20GENERIC-FUNCTION-29"></a>

generic-function cl-brewer:create-formula system

Create <formula> object based on asdf:system with a list of all dependencies

<a id="x-28CL-BREWER-3AGET-IMPLICIT-DEPENDENCIES-20GENERIC-FUNCTION-29"></a>

generic-function cl-brewer:get-implicit-dependencies system-name

Some systems, like cl-unicode have implicit dependencies in their asdf methods: https://github.com/edicl/cl-unicode/blob/8073fc5634c9d4802888ac03abf11dfe383e16fa/cl-unicode.asd#L67-L70 use this method to provide information about such dependencies.

System name is a keyword and method should return a one keyword or a list of keywords with names of systems. Each returned system should be possible to find with ql-dist:find-system.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Functions

<a id="x-28CL-BREWER-3ASAVE-FORMULA-20FUNCTION-29"></a>

function cl-brewer:save-formula formula name &key entry-point preload

Saves Homebrew formula definition into the file with given NAME.

If ENTRY-POINT argument was given, then it might be used as entry-point, but some formula classes like cl-brewer/deploy/formula:deploy-formula might ignore this argument.

PRELOAD argument if given, should be a list of strings with ASDF system names to be preloaded before cl-brewer will build a binary.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-2FBUILDAPP-2FFORMULA-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

CL-BREWER/BUILDAPP/FORMULA

<a id="x-28-23A-28-2826-29-20BASE-CHAR-20-2E-20-22CL-BREWER-2FBUILDAPP-2FFORMULA-22-29-20PACKAGE-29"></a>

package cl-brewer/buildapp/formula

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-2FBUILDAPP-2FFORMULA-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Classes

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-2FBUILDAPP-2FFORMULA-24BUILDAPP-FORMULA-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

BUILDAPP-FORMULA

<a id="x-28CL-BREWER-2FBUILDAPP-2FFORMULA-3ABUILDAPP-FORMULA-20CLASS-29"></a>

class cl-brewer/buildapp/formula:buildapp-formula (formula)

This formula class uses Buildapp to build a binary.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-2FDEPLOY-2FFORMULA-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

CL-BREWER/DEPLOY/FORMULA

<a id="x-28-23A-28-2824-29-20BASE-CHAR-20-2E-20-22CL-BREWER-2FDEPLOY-2FFORMULA-22-29-20PACKAGE-29"></a>

package cl-brewer/deploy/formula

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-2FDEPLOY-2FFORMULA-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Classes

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-2FDEPLOY-2FFORMULA-24DEPLOY-FORMULA-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

DEPLOY-FORMULA

<a id="x-28CL-BREWER-2FDEPLOY-2FFORMULA-3ADEPLOY-FORMULA-20CLASS-29"></a>

class cl-brewer/deploy/formula:deploy-formula (formula)

This formula class uses Deploy to build a binary.

The core difference from cl-brewer/buildapp/formula:buildapp-formula is that this type of formula also builds and distributes all necessary dynamic libraries.

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-40CL-BREWER-2FFORMULA-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

CL-BREWER/FORMULA

<a id="x-28-23A-28-2817-29-20BASE-CHAR-20-2E-20-22CL-BREWER-2FFORMULA-22-29-20PACKAGE-29"></a>

package cl-brewer/formula

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-2FFORMULA-3FGenerics-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Generics

<a id="x-28CL-BREWER-2FFORMULA-3AGET-ADDITIONAL-DEPENDENCIES-20GENERIC-FUNCTION-29"></a>

generic-function cl-brewer/formula:get-additional-dependencies formula

Some formulas might add dependencies needed to build a binary. For example, Deploy formula adds cl-brewer because it uses it's cl-brewer/deploy/hooks subsystem.

<a id="x-28CL-BREWER-2FFORMULA-3AINCLUDED-SYSTEMS-20GENERIC-FUNCTION-29"></a>

[generic-function] cl-brewer/formula:included-systems object

<a id="x-28CL-BREWER-2FFORMULA-3AMISSING-SYSTEMS-20GENERIC-FUNCTION-29"></a>

[generic-function] cl-brewer/formula:missing-systems object

<a id="x-28CL-BREWER-2FFORMULA-3AROOT-SYSTEM-20GENERIC-FUNCTION-29"></a>

[generic-function] cl-brewer/formula:root-system object

<a id="x-28CL-BREWER-DOCS-2FINDEX-3A-3A-7C-40CL-BREWER-2FFORMULA-3FMacros-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

Macros

<a id="x-28CL-BREWER-2FFORMULA-3ADEFINE-QUESSER-20-2840ANTS-DOC-2FLOCATIVES-3AMACRO-29-29"></a>

macro cl-brewer/formula:define-quesser name (asdf-system) &body body

Use this macro to define a function to guess a formula class.

The function should accept a one argument - an ASDF system and return a symbol denoting a class derived from formula class.

If guesser does not know how to create a formula for the system, then it should return a NIL value.


[generated by 40ANTS-DOC]