Remove auto-generated Hooke docs.
authorW. Trevor King <wking@drexel.edu>
Fri, 17 Feb 2012 01:33:12 +0000 (20:33 -0500)
committerW. Trevor King <wking@drexel.edu>
Fri, 17 Feb 2012 01:33:12 +0000 (20:33 -0500)
It's easier for me to rsync the docs from my Gentoo ebuild [1] than
maintain this stacked ikiwiki build.

[1]: http://blog.tremily.us/posts/Gentoo_overlay/
     which puts the docs under
       /usr/share/doc/be-9999/html/
     when `dev-util/be` is installed with the `doc` USE flag.

Makefile
posts/Hooke.mdwn
posts/Hooke/Makefile [deleted file]

index c8dfcdb8f27dd2f1ec0f85a67948a32ff0de5fda..c734fa8995ace9105a346ab5aab1c596a5a5e1e0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 # Build everything necessary to compile the wiki.
 
-SUBDIRS = posts/drexel-thesis posts/Hooke posts/problempack \
+SUBDIRS = posts/drexel-thesis posts/problempack \
        posts/rel-vcs posts/sawsim posts/Thesis posts/yacc2dot posts/Xmodmap \
        posts/XSLT/chapter posts/XSLT/code
 TARGETS = all clean
index 7093595ed2a33f8839ec87b2c87691eb4b837f79..49b087852580afeda6fb271b0d080c5ef0f8cb05 100644 (file)
@@ -15,10 +15,10 @@ I've tested Hooke on Gentoo and Debian, and I've got an ebuild in my
 don't have easy access to Windows boxes with [[Python]], so I don't
 test it there as often.
 
-See the [[README]], [[manual|html/index.html]], and [PyPI page][pypi]
-for more details.
+See the [manual][] and [PyPI page][pypi] for more details.
 
 [Hooke]: http://code.google.com/p/hooke/
+[manual]: http://hooke.tremily.us/
 [pypi]: http://pypi.python.org/pypi/Hooke/
 
 [[!tag tags/hooke]]
diff --git a/posts/Hooke/Makefile b/posts/Hooke/Makefile
deleted file mode 100644 (file)
index 7a88c79..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-REPO = git://tremily.us/hooke.git
-PACKAGE = hooke
-
-.PHONY : all checkout clean
-
-all : README.rst html
-
-clean :
-       rm -rf $(PACKAGE) README.rst html
-
-$(PACKAGE) :
-       git clone $(REPO) $@
-
-checkout : $(PACKAGE)
-       (cd $(PACKAGE) && git checkout wtk && git pull)
-
-README.rst : checkout
-       cp $(PACKAGE:%=%/README) $@
-
-$(PACKAGE:%=%/hooke/version.py) : checkout
-       (cd $(PACKAGE) && update-copyright.py)
-
-.PHONY : $(PACKAGE:%=%/doc/build/html)
-$(PACKAGE:%=%/doc/build/html) : $(PACKAGE:%=%/hooke/version.py)
-       (cd $(PACKAGE:%=%/doc) && scons)
-
-.PHONY : html
-html : $(PACKAGE:%=%/doc/build/html)
-       rsync -avz "$</" "$@/"