# HG changeset patch # User Steve Losh # Date 1577132817 18000 # Node ID 9ddd1cab15a00b2b4ef289568acee3b232f5868c # Parent db8f927391c9e5aa64bf0d303e89b045babe46f3 Update URLs diff -r db8f927391c9 -r 9ddd1cab15a0 Makefile --- 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 diff -r db8f927391c9 -r 9ddd1cab15a0 README.markdown --- 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:** -* **Mercurial:** +* **Documentation:** +* **Mercurial:** * **Git:** + +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/ diff -r db8f927391c9 -r 9ddd1cab15a0 cl-netpbm.asd --- 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 " - :homepage "https://sjl.bitbucket.io/cl-netpbm/" + :homepage "https://docs.stevelosh.com/cl-netpbm/" :license "MIT/X11" :version "1.0.0" diff -r db8f927391c9 -r 9ddd1cab15a0 docs/api.lisp --- 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")