Magellan Linux

Contents of /trunk/mage-buildserver/helper/buildserver-build.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2767 - (show annotations) (download) (as text)
Thu Aug 28 08:22:31 2014 UTC (9 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 5122 byte(s)
-remove existing failed status file after a successfull build
1 #!/bin/bash
2
3 BUILDSERVER_CACHE_DIR="/var/cache/mage-buildserver"
4 SMAGEFILE="$1"
5 LINT_CHECKS=1
6
7 if [ -f /etc/rc.d/init.d/functions ]
8 then
9 source /etc/rc.d/init.d/functions
10 else
11 die "/etc/rc.d/init.d/functions not found"
12 fi
13 if [ -f /etc/mage.rc.global ]
14 then
15 source /etc/mage.rc.global
16 else
17 die "/etc/mage.rc.global not found"
18 fi
19 if [ -f /etc/mage.rc ]
20 then
21 source /etc/mage.rc
22 else
23 die "/etc/mage.rc not found"
24 fi
25 if [ -f ${MLIBDIR}/mage4.functions.sh ]
26 then
27 source ${MLIBDIR}/mage4.functions.sh
28 else
29 die "${MLIBDIR}/mage4.functions.sh not found"
30 fi
31 if [ -f ${MLIBDIR}/smage2.functions.sh ]
32 then
33 source ${MLIBDIR}/smage2.functions.sh
34 else
35 die "${MLIBDIR}/smage2.functions.sh not found"
36 fi
37
38 # do this at least of all includes to prevent path overwrites
39 env-rebuild
40 source /etc/profile
41
42 # export default path
43 export PATH="${PATH}:${MLIBDIR}"
44
45 die()
46 {
47 echo "ERROR: $@"
48 exit 1
49 }
50
51 is_split_target_magefile()
52 {
53 local mage="$1"
54
55 for target_mage in ${MY_SPLIT_TARGET_MAGEFILES}
56 do
57 if [[ ${mage} = ${target_mage} ]]
58 then
59 return 0
60 fi
61 done
62
63 return 1
64 }
65
66 load_mage_features
67 mage_setup
68
69 if [[ -z ${SMAGEFILE} ]]
70 then
71 die "no smage file given. call '$(basename $0) with/relative/path/from/buildroot/svn/smage/to/smagefile'"
72 fi
73
74 if [ -f ${SMAGESCRIPTSDIR}/${SMAGEFILE} ]
75 then
76 # be silent
77 FVERBOSE=off \
78 SILENT=1 \
79 smagesource ${SMAGESCRIPTSDIR}/${SMAGEFILE}
80 else
81 die "smagefile '${SMAGESCRIPTSDIR}/${SMAGEFILE}' not found."
82 fi
83
84 # save STATE, gets deleted by regen_mage_tree
85 BUILDSERVER_SAVED_STATE="${STATE}"
86
87 #regen_mage_tree # do this after dep install
88 TARGET_MAGEFILE="${MAGEDIR}/${PCAT}/${PNAME}/${PNAME}-${PVER}-${PBUILD}.${MAGESUFFIX}"
89 TARGET_SRC_TARBALL="/var/cache/mage/src-packages/${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX}"
90
91 # create build info dir
92 install -d ${BUILDSERVER_CACHE_DIR}/build
93
94 if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS ]
95 then
96 die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS missing. run 'buildserver-build-depends first"
97 fi
98
99 SRC_INSTALL_DEPS="$(< ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS)"
100
101 if [[ -z ${SRC_INSTALL_DEPS} ]]
102 then
103 die "buildserver-build: SRC_INSTALL_DEPS are empty, aborting."
104 fi
105
106 # save STATE, gets deleted by regen_mage_tree
107 BUILDSERVER_SAVED_STATE="${STATE}"
108
109 #regen_mage_tree # do this after dep install
110 TARGET_MAGEFILE="${MAGEDIR}/${PCAT}/${PNAME}/${PNAME}-${PVER}-${PBUILD}.${MAGESUFFIX}"
111 TARGET_SRC_TARBALL="/var/cache/mage/src-packages/${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX}"
112
113 if [ ! -f ${TARGET_SRC_TARBALL} ]
114 then
115 die "${TARGET_SRC_TARBALL} is missing"
116 fi
117
118 if is_installed ${PCAT}/${PNAME}-${PVER}-${PBUILD}
119 then
120 echo -en "Package "
121 echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
122 echo -e " already installed. try a revup."
123 exit 3
124 fi
125
126 if [ -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_OK ]
127 then
128 echo -en "Package "
129 echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
130 echo -e " already build successfully. try a revup."
131 exit 3
132 fi
133
134 #if [ -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_FAILED ]
135 #then
136 # echo -en "Package "
137 # echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
138 # echo -e " build has failed already. try to fix build and revup or enforce rebuild."
139 # exit 3
140 #fi
141
142 # create build info dir
143 install -d ${BUILDSERVER_CACHE_DIR}/build
144
145 echo
146 echo "---- environment -----"
147 echo "MROOT: ${FAKE_MROOT}"
148 echo "PKGDIR: ${PKGDIR}"
149 echo "BUILDDIR: ${BUILDDIR}"
150 echo "BINDIR: ${BINDIR}"
151 echo "$(mprintfeatures)"
152 echo "----------------------"
153 echo
154 #echo "DEBUG: paused"; read
155
156 if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALLED_PREREQUISITES ]
157 then
158 die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALLED_PREREQUISITES missing. run 'buildserver-build-prerequisites first"
159 fi
160
161 #### building target package from src-pkg tarball####
162 if smage2 --src-tarball ${TARGET_SRC_TARBALL}
163 then
164 build_retval=0
165 echo 0 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_OK
166 # remove maybe existing failed file
167 if [ -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_FAILED ]
168 then
169 rm ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_FAILED
170 fi
171 echo "Build successfull!"
172 regen_mage_tree
173 # restore STATE
174 STATE="${BUILDSERVER_SAVED_STATE}"
175 if [[ ${LINT_CHECKS} = 1 ]]
176 then
177 /usr/lib/mage-buildserver/buildserver-lint.sh ${SMAGEFILE}
178 fi
179 if install_packages ${SRC_INSTALL_DEPS} || die "installing packages"
180 then
181 install_retval=0
182 echo 0 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALL_OK
183 echo "Install successfull!"
184 else
185 install_retval=1
186 echo 1 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALL_FAILED
187 echo "Installation *not* successfull!"
188 fi
189 else
190 build_retval=1
191 echo 1 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/BUILD_FAILED
192 echo "Build failed"
193 echo "DEBUG: read"
194 read
195 fi
196
197 ## always run auto etc-update
198 echo "running etc-update"
199 echo "-5" | etc-update
200
201 exit ${build_retval}

Properties

Name Value
svn:executable *