source: MondoRescue/trunk/tools/svn2build@ 1041

Last change on this file since 1041 was 977, checked in by Bruno Cornec, 17 years ago

Allow for local tests from local BASE svn content

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