Magellan Linux

Contents of /trunk/mage-buildserver/buildserver-setup-mage-tree.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2788 - (show annotations) (download) (as text)
Thu Aug 28 09:32:02 2014 UTC (9 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 1343 byte(s)
-respect all possible arches
1 #!/bin/bash
2
3 # get configuration
4 BUILDSERVER_CONFIG_DIR="/etc/mage-buildserver"
5 source ${BUILDSERVER_CONFIG_DIR}/buildserver.conf
6
7 source ${BUILDSERVER_LIB_DIR}/buildserver-functions.sh
8
9 FORCE=0
10 if [[ $1 = --force ]]
11 then
12 FORCE=1
13 fi
14
15 if [ ! -f ${BUILDROOT}/.stamps/mage_svn-checkout-ok ]
16 then
17 die "svn checkout of mage required. run buildserver-svn first."
18 fi
19 if [ ! -f ${BUILDROOT}/.stamps/smage_svn-checkout-ok ]
20 then
21 die "svn checkout of smage required. run buildserver-svn first."
22 fi
23
24 for arch in $(enum-all-arch-types)
25 do
26 if [ ! -f ${BUILDROOT}/.stamps/${arch}_initial-mage-tree-ok ] || [[ ${FORCE} = 1 ]]
27 then
28 [[ ${FORCE} = 1 ]] && echo "Warning: mage-tree regen was enforced for arch '${arch}'."
29
30 # create buildroot layout
31 if [ -d ${BUILDROOT}/mage-tree/${arch} ]
32 then
33 rm -r ${BUILDROOT}/mage-tree/${arch} || die "cleaning global mage tree tmp"
34 install -d ${BUILDROOT}/mage-tree/${arch} || die "creating global mage tree tmp dir"
35 fi
36
37 if [ -d ${BUILDROOT}/${arch}/usr/mage ]
38 then
39 rm -r ${BUILDROOT}/${arch}/usr/mage || die "${arch} cleaning mage tree"
40 fi
41
42 runarch "${arch}" mage regen-mage-tree || die "${arch} regen mage tree"
43 touch ${BUILDROOT}/.stamps/${arch}_initial-mage-tree-ok
44 else
45 echo "Warning: mage-tree already generated for arch '${arch}'. Run with --force switch to overwrite."
46 fi
47 done

Properties

Name Value
svn:executable *