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
Line 
1#!/bin/bash
2#
3# Creates build environment and files for packages creation from SVN repository
4#
5# $Id$
6#
7
8(
9dname=`dirname $0`
10prem=`echo $dname |cut -c1`
11if [ ${prem} == "/" ]; then
12 export TOOLHOME=$dname
13else
14 export TOOLHOME=${PWD}/$dname
15fi
16
17cd $TOOLHOME
18. ./common-env
19. ./svn-env
20
21VER=`cat ${TOOLHOME}/../mondo/VERSION`
22TAG=`cat ${TOOLHOME}/../mondo/TAG`
23DEST=${TOPDIR}/${VER}-$TAG
24TEST="false"
25OPT=""
26mkdir -p $DEST
27
28if [ "$1" = "--test" ]; then
29 TEST="true"
30 OPT="-r BASE"
31 shift
32fi
33
34if [ "$1" = "" ]; then
35 c="mondo-doc mindi mindi-busybox mondo"
36else
37 if [ "$1" = "all" ]; then
38 c="mindi-kernel mondo-doc mindi mindi-busybox mondo"
39 else
40 c="$*"
41 fi
42fi
43
44# Make it safe for SVN commands
45cd ${TOOLHOME}/..
46
47for 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
66define(\`TTT', ${tag})dnl
67define(\`RRR', ${tag}${suf})dnl
68define(\`VVV', ${v})dnl
69define(\`DDD', ${ddd})dnl
70EOF
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" = "deb" ]; then
95 cp -a $dest/distributions/$ddir/* $dest/distributions/${ddir}-$dver
96 m4 $MONDOTMP/mondorescue.mc $dest/distributions/$ddir/rules > $dest/distributions/${ddir}-$dver/rules
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
102 else
103 echo "Unknown Build"
104 fi
105 done
106
107 # The rest is done there
108 cd $DEST
109 if [ _"`echo $p | grep mondo-doc`" != _"" ]; then
110 cd $dest
111 for f in mondorescue-howto.sgml *8; do
112 m4 $MONDOTMP/mondorescue.mc $f > ${f}.new
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
126 if [ _"`echo $p | grep -vE 'kernel|busybox' | grep mindi`" != _"" ]; then
127 v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
128 if [ ! -d mondo-doc-$v1 ]; then
129 echo "mondo-doc should be created before $p"
130 exit -1
131 fi
132 (cd mondo-doc-$v1 ; make -f Makefile.man install-$p INSTALLDIR=../$p-$v)
133 rm -f $dest/rootfs/sbin/parted2fdisk-ia64
134 fi
135 if [ "`echo $p | grep -v doc | grep mondo`" != "" ]; then
136 v1=`cat ${TOOLHOME}/../mondo-doc/VERSION`
137 if [ ! -d mondo-doc-$v1 ]; then
138 echo "mondo-doc should be created before $p"
139 exit -1
140 fi
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)
142 (cd $dest ; echo "Bootstraping mondo ... " ; ./bootstrap)
143 fi
144
145 # Finally creates the tar files
146 echo -n "Creating $p tar files (gzip... "
147 tar cfphz ${DEST}/$p-$v.tar.gz $p-$v
148 if [ $TEST = "false" ]; then
149 echo -n " bzip2..."
150 tar cfphj ${DEST}/$p-$v.tar.bz2 $p-$v
151 fi
152 echo " )"
153 if [ $TEST = "true" ]; then
154 echo "Use source under $DEST/$p-$v"
155 fi
156done
157
158rm -rf $MONDOTMP
159
160echo "Version delivered :"
161echo "-------------------"
162echo "${VER}-$TAG"
163echo "-------------------"
164echo "${VER}-$TAG" > ${TOPDIR}/LAST
165exit 0
166) 2>&1 | tee /tmp/svn2build.log
Note: See TracBrowser for help on using the repository browser.