2 |
mv_fox |
1 |
#!/bin/sh
|
11 |
mv_fox |
2 |
#
|
|
|
3 |
# This script generates indexes of Svarog386 repositories and builds the ISO
|
|
|
4 |
# CD images. It should be executed each time that a package file have been
|
|
|
5 |
# modified, added or removed from any of the repositories.
|
|
|
6 |
#
|
2 |
mv_fox |
7 |
|
11 |
mv_fox |
8 |
### parameters block starts here ############################################
|
|
|
9 |
|
2 |
mv_fox |
10 |
REPOROOT=/srv/www/svarog386.viste.fr/repos/
|
16 |
mv_fox |
11 |
REPOROOTNOSRC=/srv/www/svarog386.viste.fr/repos-nosrc/
|
2 |
mv_fox |
12 |
BUILDIDX=/root/fdnpkg-buildidx/buildidx
|
11 |
mv_fox |
13 |
CDISODIR='/srv/www/svarog386.viste.fr/'
|
|
|
14 |
CDROOT='/root/svarog386/cdroot'
|
16 |
mv_fox |
15 |
CDROOTNOSRC='/root/svarog386/cdrootnosrc'
|
24 |
mv_fox |
16 |
CDROOTMICRO='/root/svarog386/cdrootmicro'
|
2 |
mv_fox |
17 |
|
11 |
mv_fox |
18 |
### parameters block ends here ##############################################
|
|
|
19 |
|
|
|
20 |
# remember where we are, so we can return there once all is done
|
|
|
21 |
origdir=`pwd`
|
|
|
22 |
|
16 |
mv_fox |
23 |
# clone the repositories into future 'no source' versions
|
|
|
24 |
echo "cloning $REPOROOT to $REPOROOTNOSRC..."
|
|
|
25 |
rsync -a --delete $REPOROOT $REPOROOTNOSRC
|
2 |
mv_fox |
26 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
27 |
|
24 |
mv_fox |
28 |
# sync the boot.img file from full version to nosrc and micro
|
16 |
mv_fox |
29 |
cp $CDROOT/boot.img $CDROOTNOSRC/
|
2 |
mv_fox |
30 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
24 |
mv_fox |
31 |
cp $CDROOT/boot.img $CDROOTMICRO/
|
|
|
32 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
33 |
|
|
|
34 |
# now strip the sources from the 'no source' clone
|
|
|
35 |
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
|
|
|
36 |
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "source/*" ';'
|
|
|
37 |
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
|
|
|
38 |
|
|
|
39 |
# refresh all repositories
|
|
|
40 |
$BUILDIDX $REPOROOT/base && $BUILDIDX $REPOROOTNOSRC/base
|
2 |
mv_fox |
41 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
42 |
$BUILDIDX $REPOROOT/devel && $BUILDIDX $REPOROOTNOSRC/devel
|
2 |
mv_fox |
43 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
44 |
$BUILDIDX $REPOROOT/drivers && $BUILDIDX $REPOROOTNOSRC/drivers
|
2 |
mv_fox |
45 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
46 |
$BUILDIDX $REPOROOT/edit && $BUILDIDX $REPOROOTNOSRC/edit
|
2 |
mv_fox |
47 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
48 |
$BUILDIDX $REPOROOT/emulatrs && $BUILDIDX $REPOROOTNOSRC/emulatrs
|
2 |
mv_fox |
49 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
50 |
$BUILDIDX $REPOROOT/games && $BUILDIDX $REPOROOTNOSRC/games
|
2 |
mv_fox |
51 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
52 |
$BUILDIDX $REPOROOT/net && $BUILDIDX $REPOROOTNOSRC/net
|
2 |
mv_fox |
53 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
54 |
$BUILDIDX $REPOROOT/packers && $BUILDIDX $REPOROOTNOSRC/packers
|
|
|
55 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
|
|
56 |
$BUILDIDX $REPOROOT/sound && $BUILDIDX $REPOROOTNOSRC/sound
|
|
|
57 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
|
|
58 |
$BUILDIDX $REPOROOT/util && $BUILDIDX $REPOROOTNOSRC/util
|
|
|
59 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
2 |
mv_fox |
60 |
|
25 |
mv_fox |
61 |
# recompute the listing.txt file
|
|
|
62 |
rm $CDISODIR/listing.txt
|
|
|
63 |
cat $REPOROOT/base/listing.txt >> $CDISODIR/listing.txt
|
|
|
64 |
cat $REPOROOT/devel/listing.txt >> $CDISODIR/listing.txt
|
|
|
65 |
cat $REPOROOT/drivers/listing.txt >> $CDISODIR/listing.txt
|
|
|
66 |
cat $REPOROOT/edit/listing.txt >> $CDISODIR/listing.txt
|
|
|
67 |
cat $REPOROOT/emulatrs/listing.txt >> $CDISODIR/listing.txt
|
|
|
68 |
cat $REPOROOT/games/listing.txt >> $CDISODIR/listing.txt
|
|
|
69 |
cat $REPOROOT/net/listing.txt >> $CDISODIR/listing.txt
|
|
|
70 |
cat $REPOROOT/packers/listing.txt >> $CDISODIR/listing.txt
|
|
|
71 |
cat $REPOROOT/sound/listing.txt >> $CDISODIR/listing.txt
|
|
|
72 |
cat $REPOROOT/util/listing.txt >> $CDISODIR/listing.txt
|
|
|
73 |
|
16 |
mv_fox |
74 |
# compute a filename for the ISO files and build it
|
|
|
75 |
DATESTAMP=`date +%Y%m%d-%H%M`
|
|
|
76 |
CDISO="$CDISODIR/svarog386-full-$DATESTAMP.iso"
|
|
|
77 |
CDISONOSRC="$CDISODIR/svarog386-nosrc-$DATESTAMP.iso"
|
24 |
mv_fox |
78 |
CDISOMICRO="$CDISODIR/svarog386-micro-$DATESTAMP.iso"
|
11 |
mv_fox |
79 |
genisoimage -input-charset cp437 -b boot.img -iso-level 1 -f -o $CDISO.tmp $CDROOT
|
|
|
80 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
16 |
mv_fox |
81 |
genisoimage -input-charset cp437 -b boot.img -iso-level 1 -f -o $CDISONOSRC.tmp $CDROOTNOSRC
|
|
|
82 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
24 |
mv_fox |
83 |
genisoimage -input-charset cp437 -b boot.img -iso-level 1 -f -o $CDISOMICRO.tmp $CDROOTMICRO
|
|
|
84 |
if [ $? -ne 0 ] ; then exit 1 ; fi
|
11 |
mv_fox |
85 |
mv $CDISO.tmp $CDISO
|
16 |
mv_fox |
86 |
mv $CDISONOSRC.tmp $CDISONOSRC
|
24 |
mv_fox |
87 |
mv $CDISOMICRO.tmp $CDISOMICRO
|
2 |
mv_fox |
88 |
|
16 |
mv_fox |
89 |
# compute the MD5 of the ISO files, taking care to include only the filename in it
|
|
|
90 |
echo "computing md5 sums..."
|
11 |
mv_fox |
91 |
cd `dirname $CDISO`
|
|
|
92 |
md5sum `basename $CDISO` > $CDISO.md5
|
|
|
93 |
|
16 |
mv_fox |
94 |
cd `dirname $CDISONOSRC`
|
|
|
95 |
md5sum `basename $CDISONOSRC` > $CDISONOSRC.md5
|
|
|
96 |
|
24 |
mv_fox |
97 |
cd `dirname $CDISOMICRO`
|
|
|
98 |
md5sum `basename $CDISOMICRO` > $CDISOMICRO.md5
|
|
|
99 |
|
26 |
mv_fox |
100 |
# delete all *.iso and *.md5 files, leaving only the 16 most recent
|
|
|
101 |
echo "cleaning up old versions..."
|
|
|
102 |
ls -tp $CDISODIR/svarog386-*-*.iso* | tail -n +17 | xargs -I {} rm -- {}
|
|
|
103 |
|
11 |
mv_fox |
104 |
cd "$origdir"
|
|
|
105 |
|
16 |
mv_fox |
106 |
echo "all done!"
|
|
|
107 |
|
2 |
mv_fox |
108 |
exit 0
|