--- a/Makefile Thu Mar 07 12:48:03 2019 -0500
+++ b/Makefile Mon Dec 23 15:26:57 2019 -0500
@@ -42,7 +42,7 @@
docs: docs/build/index.html
pubdocs: docs
- hg -R ~/src/sjl.bitbucket.org pull -u
- rsync --delete -a ./docs/build/ ~/src/sjl.bitbucket.org/cl-netpbm
- hg -R ~/src/sjl.bitbucket.org commit -Am 'cl-netpbm: Update site.'
- hg -R ~/src/sjl.bitbucket.org push
+ hg -R ~/src/docs.stevelosh.com pull -u
+ rsync --delete -a ./docs/build/ ~/src/docs.stevelosh.com/cl-netpbm
+ hg -R ~/src/docs.stevelosh.com commit -Am 'cl-netpbm: Update site.'
+ hg -R ~/src/docs.stevelosh.com push
--- a/README.markdown Thu Mar 07 12:48:03 2019 -0500
+++ b/README.markdown Mon Dec 23 15:26:57 2019 -0500
@@ -5,6 +5,16 @@
performance you should not use these formats (or this library).
* **License:** MIT/X11
-* **Documentation:** <https://sjl.bitbucket.io/cl-netpbm/>
-* **Mercurial:** <http://bitbucket.org/sjl/cl-netpbm/>
+* **Documentation:** <https://docs.stevelosh.com/cl-netpbm/>
+* **Mercurial:** <https://hg.sr.ht/~sjl/cl-netpbm/>
* **Git:** <http://github.com/sjl/cl-netpbm/>
+
+cl-netpbm can be installed with Quicklisp: `(ql:quickload :cl-netpbm)`.
+
+The `cl-netpbm` system provides all the functionality of the library. It has no
+dependencies.
+
+The `cl-netpbm/test` system provides the unit tests. It depends on `1am` and
+`external-program`, and also requires [ImageMagick][im] for its fuzz testing.
+
+[im]: https://www.imagemagick.org/
--- a/cl-netpbm.asd Thu Mar 07 12:48:03 2019 -0500
+++ b/cl-netpbm.asd Mon Dec 23 15:26:57 2019 -0500
@@ -3,7 +3,7 @@
"Common Lisp support for reading/writing the netpbm image formats (PPM, PGM, and PBM)."
:author "Steve Losh <steve@stevelosh.com>"
- :homepage "https://sjl.bitbucket.io/cl-netpbm/"
+ :homepage "https://docs.stevelosh.com/cl-netpbm/"
:license "MIT/X11"
:version "1.0.0"
--- a/docs/api.lisp Thu Mar 07 12:48:03 2019 -0500
+++ b/docs/api.lisp Mon Dec 23 15:26:57 2019 -0500
@@ -13,7 +13,7 @@
(d-api:generate-documentation
:cl-netpbm
- #p"docs/03-reference.markdown"
+ #p"docs/02-reference.markdown"
(list :netpbm)
*header*
:title "API Reference")