#!/bin/sh software_version() { VERSION=`cat VERSION` } niouzes_compil() { DIR_SAVE=`pwd` cd /home/gilles/public_html/www.linux-france.org/html/ m4 niouzes.m4 > niouzes.xml python ./niouzes/getmynews.py --neuf niouzes.xml > niouzes-neuf.html python ./niouzes/getmynews.py --html niouzes.xml > niouzes-html.html cd $DIR_SAVE } lfo_announce() { software_version NEWS_FILE="/home/gilles/public_html/www.linux-france.org/html/niouzes/niouzes_imapsync.xml" if ! newer VERSION $NEWS_FILE; then echo "$VERSION already announced" else cat > $NEWS_FILE << EOF `LANG=fr date '+%A %d %B %Y'` : Synchronisez ou migrez vos boites aux lettres avec économie et l'outil imapsync $VERSION (Gilles LAMIRAL) EOF fi niouzes_compil } fm_announce() { software_version NEWS_FILE_FM="/home/gilles/public_html/imapsync/freshmeat_submition" if ! newer VERSION $NEWS_FILE_FM; then echo "$VERSION already announced" else cat > $NEWS_FILE_FM << EOF Project: imapsync Version: $VERSION Release-Focus: Major bugfixes Hide: Y Home-Page-URL: http://www.linux-france.org/prj/imapsync/ Gzipped-Tar-URL: http://www.linux-france.org/prj/imapsync/dist/ Code cleanup. EOF freshmeat-submit < $NEWS_FILE_FM fi }