makesnapshot 1.81 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

report_failure ()
{
    echo "  **** failed to complete **** "
    exit 1
}


./testenv || report_failure

./makedocs snapshot || exit 1 

14
REVNUM_FILE=.logger_revnum
15
16


17
rm -rf release/* || report_failure
18
19


20
DLIB_REPOS=`svn info | grep URL | awk '{print $2}' | sed -e 's/\/docs$//'  `
21
22


23
24
25
26
27
28
29
REVISION=`svn info | grep Revision | awk '{ print $2 }'`

svn log -v -r $REVISION:`cat $REVNUM_FILE` $DLIB_REPOS/dlib > release/change_log.txt || report_failure




30
31

cd release || report_failure
32
33


34
35
36
37
38
39
40
RELDIR=`echo dlib_snapshot-rev$REVISION`
mkdir $RELDIR
cd $RELDIR || report_failure
cp -r ../../docs/cache/dlib . || report_failure
cp -r ../../docs/cache/examples . || report_failure

echo This copy of dlib C++ library is a developmental snapshot. >> dlib/README.txt
41
echo "Date:    `date`" >> dlib/README.txt
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
echo Subversion Revision Number: $REVISION >> dlib/README.txt


SOURCE_ZIP=`echo $RELDIR.zip`
SOURCE_TAR=`echo $RELDIR.tar`
tar -C ../../docs/chm -cf - docs/ documentation.html --exclude=".svn" | tar -xf -
cd .. || report_failure

tar -cf $SOURCE_TAR $RELDIR 
# flip everything to MS-DOS line endings 
find $RELDIR -name "*.cpp" -or -name "*.h" -or -name "*.txt" -or -name "*.html" | xargs flip -m
zip -r9 $SOURCE_ZIP $RELDIR > /dev/null
bzip2 $SOURCE_TAR

rm -rf $RELDIR

58
59

# make an index.html with links to the snapshot archives and chm file
60
61
62
63
64
#echo "<html><body>" > index.html
#echo "<a href='$SOURCE_ZIP'>$SOURCE_ZIP</a><br/>" >> index.html
#echo "<a href='$SOURCE_TAR.bz2'>$SOURCE_TAR.bz2</a><br/>" >> index.html
#echo "<a href='dlib_documentation_snapshot-rev$REVISION.chm'>dlib_documentation_snapshot-rev$REVISION.chm</a><br/>" >> index.html
#echo "</body></html>" >> index.html
65
66
67


# finally, generate the chm help file
68
69
70
71
wine ../docs/chm/htmlhelp/hhc.exe ../docs/chm/lib.hhp
mv ../docs/chm/help.chm dlib_documentation_snapshot-rev$REVISION.chm