| 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 |
|
|---|
| 83 | if [ $ddir = "fedora" ]; then
|
|---|
| 84 | $TOOLHOME/mkchangelog.pl fc $p $MONDOTMP/$p-fc.spec
|
|---|
| 85 | m4 $MONDOTMP/mondorescue.mc $inc $dest/distributions/rpm/$p.spec $MONDOTMP/$p-fc.spec > $dest/distributions/${ddir}-$dver/$p-fc.spec
|
|---|
| 86 | fi
|
|---|
| 87 | $TOOLHOME/mkchangelog.pl $dtype $p $MONDOTMP/$p.spec
|
|---|
| 88 | if [ $? -ne 0 ]; then
|
|---|
| 89 | echo "Unable to create changelog for ${ddir}-$dver/$p.spec"
|
|---|
| 90 | exit -1
|
|---|
| 91 | fi
|
|---|
| 92 | m4 $MONDOTMP/mondorescue.mc $inc $dest/distributions/rpm/$p.spec $MONDOTMP/$p.spec > $dest/distributions/${ddir}-$dver/$p.spec
|
|---|
| 93 | if [ _"`/bin/arch`" = _"x86_64" ] && [ $ddir = "rhel" ]; then
|
|---|
| 94 | # Bug on x86_64 on _sysconfdir on rhel4 at least
|
|---|
| 95 | perl -pi -e 's~^export CONFDIR=.*~export CONFDIR=/etc~' $dest/distributions/${ddir}-$dver/$p.spec
|
|---|
| 96 | fi
|
|---|
| 97 |
|
|---|
| 98 | rm -f $MONDOTMP/$p.spec
|
|---|
| 99 | elif [ "$dtype" = "ebuild" ]; then
|
|---|
| 100 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/$p.ebuild > $dest/distributions/${ddir}-$dver/$p-$v.ebuild
|
|---|
| 101 | elif [ "$dtype" = "tgz" ]; then
|
|---|
| 102 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/slack-desc > $dest/distributions/${ddir}-$dver/slack-desc
|
|---|
| 103 | elif [ "$dtype" = "port" ]; then
|
|---|
| 104 | m4 $MONDOTMP/mondorescue.mc $dest/distributions/$dfam/Makefile > $dest/distributions/${ddir}-$dver/Makefile
|
|---|
| 105 | elif [ "$dtype" = "deb" ]; then
|
|---|
| 106 | if [ -f $dest/distributions/$ddir/rules ]; then
|
|---|
| 107 | cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver
|
|---|
| 108 | inc=$dest/distributions/$ddir/rules
|
|---|
| 109 | elif [ -f $dest/distributions/$dfam/rules ]; then
|
|---|
| 110 | cp -a $dest/distributions/$dfam/* $dest/distributions/${ddir}-$dver
|
|---|
| 111 | inc=$dest/distributions/$dfam/rules
|
|---|
| 112 | else
|
|---|
| 113 | echo "Unable to build the .deb build files for this distro. Please report to authors"
|
|---|
| 114 | exit -1
|
|---|
| 115 | fi
|
|---|
| 116 | m4 $MONDOTMP/mondorescue.mc $inc > $dest/distributions/${ddir}-$dver/rules
|
|---|
| 117 | $TOOLHOME/mkchangelog.pl $dtype $p $dest/distributions/${ddir}-$dver/changelog
|
|---|
| 118 | if [ $? -ne 0 ]; then
|
|---|
| 119 | echo "Unable to create changelog for ${ddir}-$dver/changelog"
|
|---|
| 120 | exit -1
|
|---|
| 121 | fi
|
|---|
| 122 | else
|
|---|
| 123 | echo "Unknown Build"
|
|---|
| 124 | fi
|
|---|
| 125 | done
|
|---|
| 126 |
|
|---|
| 127 | # The rest is done there
|
|---|
| 128 | cd $DEST
|
|---|
| 129 | if [ _"`echo $p | grep mondo-doc`" != _"" ]; then
|
|---|
| 130 | cd $dest
|
|---|
| 131 | for f in mondorescue-howto.sgml *8; do
|
|---|
| 132 | m4 $MONDOTMP/mondorescue.mc $f > ${f}.new
|
|---|
| 133 | mv ${f}.new $f
|
|---|
| 134 | done
|
|---|
| 135 | make -f Makefile.howto
|
|---|
| 136 | if [ $? != 0 ]; then
|
|---|
| 137 | exit -1
|
|---|
| 138 | fi
|
|---|
| 139 | make -f Makefile.man
|
|---|
| 140 | if [ $? != 0 ]; then
|
|---|
| 141 | exit -1
|
|---|
| 142 | fi
|
|---|
| 143 | cd ..
|
|---|
| 144 | fi
|
|---|
| 145 | if [ _"`echo $p | grep 'busybox'`" != _"" ]; then
|
|---|
| 146 | cd $dest
|
|---|
| 147 | mv Rules.mak Rules.mak.orig
|
|---|
| 148 | cat Rules.mak.orig | sed "s/^EXTRAVERSION\([\t ]*\):=/EXTRAVERSION\1:=-$tag-r$REVISION/" > Rules.mak
|
|---|
| 149 | cd ..
|
|---|
| 150 | fi
|
|---|
| 151 |
|
|---|
| 152 | if [ _"`echo $p | grep -vE 'kernel|busybox' | grep mindi`" != _"" ]; then
|
|---|
| 153 | v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
|
|---|
| 154 | if [ ! -d mondo-doc-$v1 ]; then
|
|---|
| 155 | echo "mondo-doc should be created before $p"
|
|---|
| 156 | exit -1
|
|---|
| 157 | fi
|
|---|
| 158 | (cd mondo-doc-$v1 ; make -f Makefile.man install-$p INSTALLDIR=../$p-$v)
|
|---|
| 159 | rm -f $dest/rootfs/sbin/parted2fdisk-ia64
|
|---|
| 160 | fi
|
|---|
| 161 | if [ "`echo $p | grep -v doc | grep mondo`" != "" ]; then
|
|---|
| 162 | v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
|
|---|
| 163 | if [ ! -d mondo-doc-$v1 ]; then
|
|---|
| 164 | echo "mondo-doc should be created before $p"
|
|---|
| 165 | exit -1
|
|---|
| 166 | fi
|
|---|
| 167 | (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)
|
|---|
| 168 | (cd $dest ; echo "Bootstraping mondo ... " ; ./bootstrap)
|
|---|
| 169 | fi
|
|---|
| 170 |
|
|---|
| 171 | # Finally creates the tar files
|
|---|
| 172 | echo -n "Creating $p tar files (gzip... "
|
|---|
| 173 | tar cfphz ${DEST}/$p-$v.tar.gz $p-$v
|
|---|
| 174 | if [ $TEST = "false" ]; then
|
|---|
| 175 | echo -n " bzip2..."
|
|---|
| 176 | tar cfphj ${DEST}/$p-$v.tar.bz2 $p-$v
|
|---|
| 177 | fi
|
|---|
| 178 | echo " )"
|
|---|
| 179 | if [ $TEST = "true" ]; then
|
|---|
| 180 | echo "Use source under $DEST/$p-$v"
|
|---|
| 181 | fi
|
|---|
| 182 | done
|
|---|
| 183 |
|
|---|
| 184 | rm -rf $MONDOTMP
|
|---|
| 185 |
|
|---|
| 186 | echo "Version delivered :"
|
|---|
| 187 | echo "-------------------"
|
|---|
| 188 | echo "${VER}-$TAG"
|
|---|
| 189 | echo "-------------------"
|
|---|
| 190 | echo "${VER}-$TAG" > ${TOPDIR}/LAST
|
|---|
| 191 | exit 0
|
|---|
| 192 | ) 2>&1 | tee /tmp/svn2build.log
|
|---|