The branch, master has been updated via aec732be15218d546ad2df7f60638f04e8e071b5 (commit) from db68b62fdbb22a9c031acc84f3fd37272161d5b3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit aec732be15218d546ad2df7f60638f04e8e071b5 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jul 26 13:45:54 2011 +0200 add helper Makefile.docupload to export html man pages to code.x2go.org ----------------------------------------------------------------------- Summary of changes: Makefile.docupload | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) create mode 100644 Makefile.docupload The diff of changes is: diff --git a/Makefile.docupload b/Makefile.docupload new file mode 100644 index 0000000..0607a61 --- /dev/null +++ b/Makefile.docupload @@ -0,0 +1,20 @@ +#!/usr/bin/make -f +# Makefile.docupload file - for pyhoca-gui +# Copyright 2010-2011 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, GPLv3 applies to this file + +VERSION=`head -n1 debian/changelog | sed 's,.*(\(.*\)).*,\1,' | cut -d"-" -f1` +DOC_HOST=code.x2go.org +DOC_PATH=/srv/sites/x2go.org/packages/doc/pyhoca-gui/man/ +DOC_USER=x2go-admin + +doc: docbuild docupload + +docbuild: + make -f Makefile.man2html build_man2html + +docupload: + + ssh -l${DOC_USER} ${DOC_HOST} "{ mkdir -p ${DOC_PATH}; rm -Rfv ${DOC_PATH}/*; }" + scp -r .build_man2html/html/* ${DOC_USER}@${DOC_HOST}:${DOC_PATH}/ + + hooks/post-receive -- pyhoca-gui.git (Python X2go Client (wxPython GUI)) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "pyhoca-gui.git" (Python X2go Client (wxPython GUI)).