]> git.donarmstrong.com Git - neurodebian.git/blob - Makefile
Prepare deploying on new server
[neurodebian.git] / Makefile
1 WWW_UPLOAD_URI = neurodebian@neurodebian.ovgu.de:/home/neurodebian/www
2 #WWW_UPLOAD_URI = ../www
3 WWW_DIR = build/html/
4
5 WWW_UPLOAD_URI_STATIC=$(WWW_UPLOAD_URI)/_static
6
7 BIGMESS_OPTS = -c neurodebian_repo.cfg
8 BIGMESS_CMD = PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess
9 BIGMESS = $(BIGMESS_CMD) $(BIGMESS_OPTS)
10
11 # Lentghy one due to updatedb
12 all: updatedb upload-website mirmon
13 # Quick one -- just rebuilds html if new changes and adjusts the status of the mirrors
14 refresh: upload-website-stamp mirmon
15
16
17 pics:
18         $(MAKE) -C artwork
19
20
21 html: pics source
22         rsync -rvlhpt sphinx/ build/src
23         cd artwork;     cp button_w200.png logo_tuned/fmri_w200.png ../build/src/_static; cd ..
24         cp 3rd/jquery.livetwitter/jquery.livetwitter.min.js build/src/_static
25         cd build/src && $(MAKE) html BUILDDIR=$(CURDIR)/build 2>&1
26         ln -fs /usr/share/javascript build/html/
27         mv $(WWW_DIR)/_static/robots.txt $(WWW_DIR)/
28         cp -r build/src/lists $(WWW_DIR)/
29         cp -r sphinx/survey/2011/figures/* $(WWW_DIR)/_images/
30         @echo "I: extracting header/trailer to be reused in non-sphinx pages"
31         sed -ne '1,/<!-- HEADNOTES -->/p' $(WWW_DIR)/index.html >| $(WWW_DIR)/_static/index-header.ihtml
32         sed -ne '/<h2>Comments<\/h2>/,$$p' $(WWW_DIR)/index.html >| $(WWW_DIR)/_static/index-trailer.ihtml
33
34 clean:
35         -rm html-stamp source-stamp upload-website-stamp
36         $(MAKE) -C artwork clean
37
38
39 distclean: clean
40         -rm -rf build
41
42
43 source: source-stamp
44 source-stamp: 
45         mkdir -p build/src/pkgs/
46         mkdir -p build/src/lists/
47         mkdir -p build/src/pkglists/
48         $(BIGMESS) mkpkgs  -d build/src/pkgs/
49         $(BIGMESS) mkaptcfgs -d build/src/lists/
50         $(BIGMESS) mkrepocfg > build/src/sources_lists
51         $(BIGMESS) mkpkgtocs -d build/src/pkglists > build/src/pkgs.rst
52         touch $@
53
54
55 updatedb:
56         $(BIGMESS) cachefiles
57         $(BIGMESS) updatedb
58
59 upload-website: html
60         rsync -rvzlhp --delete \
61         --exclude=debian --exclude=debian-local --exclude=_files \
62         --chmod=Dg+s,g+rw $(WWW_DIR) $(WWW_UPLOAD_URI)
63         : # Touch stamp here so we get it updated on every upload
64         touch $@-stamp
65
66 # call upload iff .git/index was modified, i.e. new changes got pulled in
67 upload-website-stamp: .git/index
68         $(MAKE) upload-website
69
70 mirmon:
71         # update and generate mirrors report
72         [ -x /usr/bin/mirmon ] && mirmon -q -get update -c mirmon-neurodebian.conf 2>&1 \
73         | grep -v 'date: invalid date.*DOCTYPE' || :
74         # [ -x $(WWW_UPLOAD_URI_STATIC)/mirrors-check.ihtml ] &&
75         # everything must be in place!
76         cat $(WWW_UPLOAD_URI_STATIC)/{index-header,mirrors-status,index-trailer}.ihtml \
77          >| $(WWW_UPLOAD_URI)/mirrors-status.html
78
79 .PHONY: removedb removecache updatedb upload-website clean distclean pics html mirmon
80