-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc/: start generating API documentation from docstrings
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
- Loading branch information
Showing
24 changed files
with
277 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
/doc/_build/ | ||
/emacs/put-forms.el | ||
/emacs/consfigurator.el | ||
|
||
/doc/connection.rst | ||
/doc/property.rst | ||
/doc/propspec.rst | ||
/doc/host.rst | ||
/doc/combinator.rst | ||
/doc/deployment.rst | ||
/doc/data.rst | ||
/doc/image.rst | ||
/doc/property/*.rst | ||
/doc/util.rst | ||
/doc/util/*.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SBCL = sbcl --disable-debugger --eval '(require "asdf")' --eval \ | ||
'(let ((asdf:*user-cache* "/tmp") \ | ||
(asdf:*central-registry* (list (truename "..")))) \ | ||
(asdf:load-system "consfigurator"))' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
include ../consfigurator.mk | ||
|
||
LISP = $(wildcard ../src/property/*.lisp ../src/util/*.lisp) \ | ||
../src/connection.lisp ../src/property.lisp ../src/propspec.lisp \ | ||
../src/host.lisp ../src/combinator.lisp ../src/deployment.lisp \ | ||
../src/data.lisp ../src/image.lisp ../src/util.lisp | ||
PAGES = $(patsubst ../src/%,%,$(LISP:lisp=rst)) | ||
|
||
.PHONY: all | ||
all: html info | ||
|
||
.PHONY: html info | ||
html info: $(PAGES) conf.py $(wildcard *.rst */*.rst) | ||
sphinx-build -M $@ . _build | ||
|
||
$(PAGES) &: $(wildcard *.rst.in */*.rst.in) $(LISP) | ||
$(SBCL) --eval "(mapc #'consfigurator::build-manual-rst \ | ||
uiop:*command-line-arguments*)" --quit $(PAGES) | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -rf _build | ||
rm -f $(PAGES) | ||
|
||
# property.lisp contains the definition of BUILD-MANUAL-RST. | ||
.SECONDEXPANSION: | ||
%.rst: $$(wildcard $$*.rst.in) ../src/$$(*D)/$$(*F).lisp ../src/property.lisp | ||
$(SBCL) --eval '(consfigurator::build-manual-rst "$@")' --quit |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Property combinators | ||
==================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Deployments | ||
=========== |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Remote Lisp images | ||
================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
``CONSFIGURATOR`` exported utilities | ||
==================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
LOAD = '(let ((asdf:*user-cache* "/tmp") \ | ||
(asdf:*central-registry* (list (truename "..")))) \ | ||
(asdf:load-system "consfigurator"))' | ||
include ../consfigurator.mk | ||
|
||
consfigurator.el: consfigurator.el.in | ||
sbcl --disable-debugger --eval '(require "asdf")' --eval $(LOAD) \ | ||
--eval '(consfigurator::dump-properties-for-emacs "$<" "$@")' --quit | ||
$(SBCL) --eval '(consfigurator::dump-properties-for-emacs "$<" "$@")'\ | ||
--quit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.