blob: 1648584f054164ff9c9b6c55f96e439d1f230b74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
HERE := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
SOURCE_URL := https://git.cryptech.is/
SOURCE_TRAC_DB := bikeshed.cryptech.is:/home/trac/db/trac.db
SOURCE_TRAC_ATTACHMENTS := bikeshed.cryptech.is:/home/trac/files/attachments
REPO_HOST := bikeshed.cryptech.is
REPO_PATH := /usr/local/git/repositories
all: trac-to-pelican-home.md
tools/extract.py --source-url ${SOURCE_URL}
ln -f trac-to-pelican-home.md pelican/content/trac-to-pelican-home.md
./kludge-cgit-urls.py
mv pelican/content/DNSSEC/Requirements.md pelican/content/DNSSEC-Requirements.md
rmdir pelican/content/DNSSEC
cd pelican; pelican --output website --settings pelicanconf.py --fatal errors content
trac-to-pelican-home.md: tools/trac-to-pelican-home.md
(date '+Date: %Y-%m-%d %H:%M'; cat $<) > $@
fetch:
rsync -aP --delete ${SOURCE_TRAC_DB} ${SOURCE_TRAC_ATTACHMENTS} .
ssh -n ${REPO_HOST} 'sudo find ${REPO_PATH} -name "*.git"' | \
sed s=${REPO_PATH}/== | sort | jq -Rn '[inputs]' >repositories.json
clean:
rm -rf wiki pelican
distclean: clean
rm -rf trac.db attachments
webfsd:
@echo http://$$(hostname):8000/
webfsd -r pelican/website -4 -L - -F -f index.html
.PHONY: all clean fetch distclean webfsd
|