File tree Expand file tree Collapse file tree 3 files changed +28
-27
lines changed Expand file tree Collapse file tree 3 files changed +28
-27
lines changed Original file line number Diff line number Diff line change 1+ 2017-04-17 Wu Yongwei <
[email protected] >
2+
3+ * misc/release.sh: Accommodate recent changes and generate both the
4+ Unix and Windows packages.
5+ (VER): Increase to 1.1.
6+ * misc/release.bat: Remove.
7+
182017-04-10 Wu Yongwei <
[email protected] >
29
310 * misc/doxit.sh: Eliminate an old workaround on new Doxygen
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
44# Shell script to create "nvwa-x.y.tar.gz"
55
6- VER=" 1.0 "
6+ VER=" 1.1 "
77RELEASE=" nvwa-$VER "
8+ RELEASE_DIR=" $PWD /$RELEASE "
9+ rm -f $RELEASE .tar.gz $RELEASE .zip
810rm -rf $RELEASE
911mkdir $RELEASE
10- cd $RELEASE
1112
12- export CVSROOT=:pserver:[email protected] :/cvsroot/nvwa 13- cvs -z9 co doc nvwa
13+ cd ..
14+ cp -p ChangeLog LICENCE README $RELEASE_DIR
1415
15- cp -pr ../../doc/latex/refman.pdf ../../doc/html doc/
16- ( cd doc/html ; rm -f * .dot * .map * .md5 . * )
16+ mkdir " $RELEASE_DIR /nvwa "
17+ ( cd " nvwa " ; cp -p * .cpp * .h " $RELEASE_DIR /nvwa " )
1718
18- cd ..
19+ mkdir " $RELEASE_DIR /test"
20+ ( cd " test" ; cp -p Makefile * .cpp " $RELEASE_DIR /test" )
21+
22+ mkdir " $RELEASE_DIR /doc"
23+ cp -pr doc/html " $RELEASE_DIR /doc/html"
24+ ( cd " $RELEASE_DIR /doc/html" ; rm -f * .map * .md5 )
25+
26+ cd misc
1927tar cvfz $RELEASE .tar.gz $RELEASE /
28+
29+ FILES=` find $RELEASE -type f`
30+ for FILE in $FILES ; do
31+ unix2dos -k -s $FILE
32+ done
33+ zip -r $RELEASE .zip $RELEASE /
You can’t perform that action at this time.
0 commit comments