1 | #!/bin/bash
|
---|
2 | #
|
---|
3 | # Creates build environment and files for packages creation from SVN repository
|
---|
4 | #
|
---|
5 | # $Id$
|
---|
6 | #
|
---|
7 |
|
---|
8 | (
|
---|
9 | dname=`dirname $0`
|
---|
10 | prem=`echo $dname |cut -c1`
|
---|
11 | if [ _${prem} = _"/" ]; then
|
---|
12 | export TOOLHOME=$dname
|
---|
13 | else
|
---|
14 | export TOOLHOME=${PWD}/$dname
|
---|
15 | fi
|
---|
16 |
|
---|
17 | cd $TOOLHOME
|
---|
18 | . ./common-env
|
---|
19 | . ./svn-env
|
---|
20 |
|
---|
21 | VER=`cat ${TOOLHOME}/../mondo/VERSION`
|
---|
22 | TAG=`cat ${TOOLHOME}/../mondo/TAG`
|
---|
23 | DEST=${TOPDIR}/${VER}-$TAG
|
---|
24 | TEST="false"
|
---|
25 | OPT=""
|
---|
26 | mkdir -p $DEST
|
---|
27 |
|
---|
28 | if [ "$1" = "--test" ]; then
|
---|
29 | TEST="true"
|
---|
30 | OPT="-r BASE"
|
---|
31 | shift
|
---|
32 | fi
|
---|
33 |
|
---|
34 | if [ "$1" = "" ]; then
|
---|
35 | c="mondo-doc mindi mindi-busybox mondo"
|
---|
36 | else
|
---|
37 | if [ "$1" = "all" ]; then
|
---|
38 | c="mindi-kernel mondo-doc mindi mindi-busybox mondo"
|
---|
39 | else
|
---|
40 | c="$*"
|
---|
41 | fi
|
---|
42 | fi
|
---|
43 |
|
---|
44 | # Make it safe for SVN commands
|
---|
45 | cd ${TOOLHOME}/..
|
---|
46 |
|
---|
47 | for p in $c; do
|
---|
48 | v=`cat ${TOOLHOME}/../$p/VERSION`
|
---|
49 | tag=`cat ${TOOLHOME}/../$p/TAG`
|
---|
50 | echo "Management of $p $v-$tag (rev $REVISION)"
|
---|
51 | dest="$DEST/$p-$v"
|
---|
52 | rm -fr $dest
|
---|
53 | svn $OPT export ${TOOLHOME}/../$p $dest
|
---|
54 | echo "$REVISION" > $dest/REVISION
|
---|
55 | echo "Generating SVN log file ..."
|
---|
56 | svn $OPT log -v ${TOOLHOME}/../$p > $dest/svn.log
|
---|
57 |
|
---|
58 | for d in `cat ${TOOLHOME}/DISTROS`; do
|
---|
59 | export ddir=`echo $d | cut -d_ -f1`
|
---|
60 | export dver=`echo $d | cut -d_ -f2`
|
---|
61 | echo "Generating build files for $ddir ($dver)"
|
---|
62 | . $TOOLHOME/distro-env
|
---|
63 |
|
---|
64 | ddd=`LANG=C ; date '+%Y-%m-%d'`
|
---|
65 | cat > $MONDOTMP/mondorescue.mc << EOF
|
---|
66 | define(\`TTT', ${tag})dnl
|
---|
67 | define(\`RRR', ${tag}${suf})dnl
|
---|
68 | define(\`VVV', ${v})dnl
|
---|
69 | define(\`DDD', ${ddd})dnl
|
---|
70 | EOF
|
---|
71 |
|
---|
72 | mkdir -p $dest/distributions/$ddir $dest/distributions/${ddir}-$dver
|
---|
73 | if [ "$dtype" = "rpm" ]; then
|
---|
74 | if [ -f $dest/distributions/$ddir/spec.m4 ]; then
|
---|
75 | inc=$dest/distributions/$ddir/spec.m4
|
---|
76 | elif [ -f $dest/distributions/$dfam/spec.m4 ]; then
|
---|
77 | inc=$dest/distributions/$dfam/spec.m4
|
---|
78 | else
|
---|
79 | echo "Unable to build the RPM specfile for this distro. Please report to authors"
|
---|
80 | exit -1
|
---|
81 | fi
|
---|
82 | echo "Using $inc customization to build SPEC file"
|
---|
83 |
|
---|
84 | $TOOLHOME/mkchangelog.pl $dtype $p $MONDOTMP/$p.spec
|
---|
85 | if [ $? -ne 0 ]; then
|
---|
86 | echo "Unable to create changelog for ${ddir}-$dver/$p.spec"
|
---|
87 | exit -1
|
---|
88 | fi
|
---|
89 | m4 $MONDOTMP/mondorescue.mc $inc $dest/distributions/rpm/$p.spec $MONDOTMP/$p.spec > $dest/distributions/${ddir}-$dver/$p.spec
|
---|
90 |
|
---|
91 | rm -f $MONDOTMP/$p.spec
|
---|
92 | elif [ "$dtype" = "ebuild" ]; then
|
---|
93 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/$p.ebuild > $dest/distributions/${ddir}-$dver/$p-$v.ebuild
|
---|
94 | elif [ "$dtype" = "tgz" ]; then
|
---|
95 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/slack-desc > $dest/distributions/${ddir}-$dver/slack-desc
|
---|
96 | elif [ "$dtype" = "port" ]; then
|
---|
97 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/Makefile > $dest/distributions/${ddir}-$dver/Makefile
|
---|
98 | elif [ "$dtype" = "deb" ]; then
|
---|
99 | cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver
|
---|
100 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$ddir/rules > $dest/distributions/${ddir}-$dver/rules
|
---|
101 | $TOOLHOME/mkchangelog.pl $dtype $p $dest/distributions/${ddir}-$dver/changelog
|
---|
102 | if [ $? -ne 0 ]; then
|
---|
103 | echo "Unable to create changelog for ${ddir}-$dver/changelog"
|
---|
104 | exit -1
|
---|
105 | fi
|
---|
106 | else
|
---|
107 | echo "Unknown Build"
|
---|
108 | fi
|
---|
109 | done
|
---|
110 |
|
---|
111 | # The rest is done there
|
---|
112 | cd $DEST
|
---|
113 | if [ _"`echo $p | grep mondo-doc`" != _"" ]; then
|
---|
114 | cd $dest
|
---|
115 | for f in mondorescue-howto.sgml *8; do
|
---|
116 | m4 $MONDOTMP/mondorescue.mc $f > ${f}.new
|
---|
117 | mv ${f}.new $f
|
---|
118 | done
|
---|
119 | make -f Makefile.howto
|
---|
120 | if [ $? != 0 ]; then
|
---|
121 | exit -1
|
---|
122 | fi
|
---|
123 | make -f Makefile.man
|
---|
124 | if [ $? != 0 ]; then
|
---|
125 | exit -1
|
---|
126 | fi
|
---|
127 | cd ..
|
---|
128 | fi
|
---|
129 | if [ _"`echo $p | grep 'busybox'`" != _"" ]; then
|
---|
130 | cd $dest
|
---|
131 | mv Rules.mak Rules.mak.orig
|
---|
132 | cat Rules.mak.orig | sed "s/^EXTRAVERSION\([\t ]*\):=/EXTRAVERSION\1:=-$tag-r$REVISION/" > Rules.mak
|
---|
133 | cd ..
|
---|
134 | fi
|
---|
135 |
|
---|
136 | if [ _"`echo $p | grep -vE 'kernel|busybox' | grep mindi`" != _"" ]; then
|
---|
137 | v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
|
---|
138 | if [ ! -d mondo-doc-$v1 ]; then
|
---|
139 | echo "mondo-doc should be created before $p"
|
---|
140 | exit -1
|
---|
141 | fi
|
---|
142 | (cd mondo-doc-$v1 ; make -f Makefile.man install-$p INSTALLDIR=../$p-$v)
|
---|
143 | rm -f $dest/rootfs/sbin/parted2fdisk-ia64
|
---|
144 | fi
|
---|
145 | if [ "`echo $p | grep -v doc | grep mondo`" != "" ]; then
|
---|
146 | v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
|
---|
147 | if [ ! -d mondo-doc-$v1 ]; then
|
---|
148 | echo "mondo-doc should be created before $p"
|
---|
149 | exit -1
|
---|
150 | fi
|
---|
151 | (cd mondo-doc-$v1 ; make -f Makefile.howto install INSTALLDIR=../$p-$v/docs/en ; make -f Makefile.man install-$p INSTALLDIR=../$p-$v/docs/man)
|
---|
152 | (cd $dest ; echo "Bootstraping mondo ... " ; ./bootstrap)
|
---|
153 | fi
|
---|
154 |
|
---|
155 | # Finally creates the tar files
|
---|
156 | echo -n "Creating $p tar files (gzip... "
|
---|
157 | tar cfphz ${DEST}/$p-$v.tar.gz $p-$v
|
---|
158 | if [ $TEST = "false" ]; then
|
---|
159 | echo -n " bzip2..."
|
---|
160 | tar cfphj ${DEST}/$p-$v.tar.bz2 $p-$v
|
---|
161 | fi
|
---|
162 | echo " )"
|
---|
163 | if [ $TEST = "true" ]; then
|
---|
164 | echo "Use source under $DEST/$p-$v"
|
---|
165 | fi
|
---|
166 | done
|
---|
167 |
|
---|
168 | rm -rf $MONDOTMP
|
---|
169 |
|
---|
170 | echo "Version delivered :"
|
---|
171 | echo "-------------------"
|
---|
172 | echo "${VER}-$TAG"
|
---|
173 | echo "-------------------"
|
---|
174 | echo "${VER}-$TAG" > ${TOPDIR}/LAST
|
---|
175 | exit 0
|
---|
176 | ) 2>&1 | tee /tmp/svn2build.log
|
---|