Update of /cvsroot/phpweather/phpweather
In directory usw-pr-cvs1:/tmp/cvs-serv5033
Modified Files:
make-release.sh
Log Message:
Make some scripts quiet.
Index: make-release.sh
===================================================================
RCS file: /cvsroot/phpweather/phpweather/make-release.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- make-release.sh 26 Aug 2002 13:04:46 -0000 1.6
+++ make-release.sh 26 Aug 2002 15:56:49 -0000 1.7
@@ -9,49 +9,57 @@
#
# The files are placed in the current directory.
-echo -n "Retrieving snapshot... "
+echo -n "Retrieving snapshot from SourceForge CVS... "
cvs -Q -z3 -d:pserver:ano...@cv...:/cvsroot/phpweather export -kv -r HEAD -d phpweather.$$ phpweather
echo "done."
-echo -n "Cleaning... "
+echo -n "Inserting version number and timestamp into files... "
cd phpweather.$$ || exit
VERSION=$(cat VERSION)
DATE=$(date -uI)
-rm README-CVS VERSION make-release.sh usermap $(find . -name '.cvsignore')
+rm README-CVS VERSION make-release.sh
+rm usermap $(find . -name '.cvsignore')
for file in README INSTALL base_object.php doc/src/phpweather.texi; do
sed -e "s/#VERSION#/$VERSION/g" -e "s/#DATE#/$DATE/g" $file > tmp
mv -f tmp $file
done
+echo "done."
+
cd doc || exit
-texi2dvi src/phpweather.texi
+echo -n "Generating phpweather.dvi... "
+texi2dvi -q -c src/phpweather.texi
+echo "done."
-texi2pdf src/phpweather.texi
+echo -n "Generating phpweather.pdf... "
+texi2pdf -q -c src/phpweather.texi
+echo "done."
+echo -n "Generating phpweather.html... "
texi2html src/phpweather.texi
+echo "done."
-dvips phpweather.dvi -o
+echo -n "Generating phpweather.ps... "
+dvips -q phpweather.dvi -o phpweather.ps
+echo "done."
+echo -n "Generating phpweather.info... "
makeinfo src/phpweather.texi
+echo "done."
+echo -n "Generating phpweather.txt... "
makeinfo --no-headers src/phpweather.texi -o phpweather.txt
-
-for extension in aux cp cps fn ky log pg ps toc tp vr; do
- rm phpweather.$extension
-done
+echo "done."
cd ../..
mv phpweather.$$ phpweather-$VERSION
-echo "done."
-
-
echo -n "Creating phpweather-$VERSION.tar.gz... "
tar -cz phpweather-$VERSION -f phpweather-$VERSION.tar.gz
echo "done."
@@ -74,8 +82,10 @@
phpweather-$VERSION.tar.bz2 \
phpweather-$VERSION.zip
echo "done."
+
+ echo -n "Removing phpweather-$VERSION... "
+ rm -R phpweather-$VERSION
+ echo "done."
+
fi
-echo -n "Removing phpweather-$VERSION... "
-rm -R phpweather-$VERSION
-echo "done."
|