Mercurial > moin > 1.9
view Makefile @ 3774:6879f85a6faa
fixed path for check_i18n
author | Reimar Bauer <rb.proj AT googlemail DOT com> |
---|---|
date | Sun, 22 Jun 2008 16:35:00 +0200 |
parents | c19b7a3d7539 |
children | 532865ba8334 |
line wrap: on
line source
# # Makefile for MoinMoin # # location for the wikiconfig.py we use for testing: export PYTHONPATH=$(PWD)/tests:$(PWD) testwiki := ./tests/wiki share := ./wiki all: python setup.py build install-docs: -mkdir build wget -U MoinMoin/Makefile -O build/INSTALL.html "http://master17.moinmo.in/MoinMoin/InstallDocs?action=print" sed \ -e 's#href="/#href="http://master17.moinmo.in/#g' \ -e 's#http://[a-z\.]*/wiki/classic/#/wiki/classic/#g' \ -e 's#http://[a-z\.]*/wiki/modern/#/wiki/modern/#g' \ -e 's#http://[a-z\.]*/wiki/rightsidebar/#/wiki/rightsidebar/#g' \ -e 's#/wiki/classic/#wiki/htdocs/classic/#g' \ -e 's#/wiki/modern/#wiki/htdocs/modern/#g' \ -e 's#/wiki/rightsidebar/#wiki/htdocs/rightsidebar/#g' \ build/INSTALL.html >docs/INSTALL.html -rm build/INSTALL.html wget -U MoinMoin/Makefile -O build/UPDATE.html "http://master17.moinmo.in/HelpOnUpdating?action=print" sed \ -e 's#href="/#href="http://master17.moinmo.in/#g' \ -e 's#http://[a-z\.]*/wiki/classic/#/wiki/classic/#g' \ -e 's#http://[a-z\.]*/wiki/modern/#/wiki/modern/#g' \ -e 's#http://[a-z\.]*/wiki/rightsidebar/#/wiki/rightsidebar/#g' \ -e 's#/wiki/classic/#wiki/htdocs/classic/#g' \ -e 's#/wiki/modern/#wiki/htdocs/modern/#g' \ -e 's#/wiki/rightsidebar/#wiki/htdocs/rightsidebar/#g' \ build/UPDATE.html >docs/UPDATE.html -rm build/UPDATE.html -rmdir build interwiki: wget -U MoinMoin/Makefile -O $(share)/data/intermap.txt "http://master17.moinmo.in/InterWikiMap?action=raw" chmod 664 $(share)/data/intermap.txt check-tabs: @python -c 'import tabnanny ; tabnanny.check("MoinMoin")' # Create documentation epydoc: patchlevel @epydoc -o ../html-1.7 --name=MoinMoin --url=http://moinmo.in/ --graph=all --graph-font=Arial MoinMoin # Create new underlay directory from MoinMaster # Should be used only on TW machine underlay: rm -rf $(share)/underlay MoinMoin/script/moin.py --config-dir=/srv/moin/cfg/1.7 --wiki-url=master17.moinmo.in/ maint globaledit MoinMoin/script/moin.py --config-dir=/srv/moin/cfg/1.7 --wiki-url=master17.moinmo.in/ maint reducewiki --target-dir=$(share)/underlay rm -rf $(share)/underlay/pages/InterWikiMap rm -rf $(share)/underlay/pages/MoinPagesEditorGroup cd $(share); rm -f underlay.tar; tar cf underlay.tar underlay pagepacks: @python MoinMoin/_tests/maketestwiki.py @MoinMoin/script/moin.py --config-dir=$(testwiki)/.. maint mkpagepacks cd $(share) ; rm -rf underlay cp -a $(testwiki)/underlay $(share)/ dist: -rm MANIFEST python setup.py sdist # Create patchlevel module patchlevel: @echo -e patchlevel = "\"`hg identify`\"\n" >MoinMoin/patchlevel.py @MoinMoin/version.py update # Report translations status check-i18n: MoinMoin/i18n/tools/check_i18n.py # Update the workdir from the default pull repo update: hg pull -u $(MAKE) patchlevel # Update underlay directory from the tarball update-underlay: cd $(share); rm -rf underlay; tar xf underlay.tar test: @echo Testing is now done using \`py.test\`. py.test can be installed by downloading from http://codespeak.net/py/dist/download.html @echo Writing tests is explained on http://codespeak.net/py/dist/test.html coverage: @python MoinMoin/_tests/maketestwiki.py @python -u -m trace --count --coverdir=cover --missing tests/runtests.py pylint: @pylint --disable-msg=W0142,W0511,W0612,W0613,C0103,C0111,C0302,C0321,C0322 --disable-msg-cat=R MoinMoin clean: clean-testwiki clean-pyc rm -rf build clean-testwiki: rm -rf $(testwiki)/* clean-pyc: find . -name "*.pyc" -exec rm -rf "{}" \; .PHONY: all dist install-docs check-tabs epydoc underlay patchlevel \ check-i18n update update-underlay test testwiki clean \ clean-testwiki clean-pyc