Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3113 - (show annotations) (download) (as text)
Tue Mar 19 16:12:08 2019 UTC (5 years, 1 month ago) by niro
File MIME type: application/x-sh
File size: 3835 byte(s)
-place build infos in a subdir named '${PNAME}'
1 #!/bin/bash
2
3 BUILDSERVER_CACHE_DIR="/var/cache/mage-buildserver"
4 SMAGEFILE="$1"
5 CLEANPACKAGES=0
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 # don't want to run any exported post/preinstall or post/preremove
85 # functions of the smage here because they will be exported globally
86 # and honored by every package which does not override these function.
87 # the final package (the smage itself) will not be installed via this script,
88 # so these functions can be safely ignored.
89 for func in {pre,post}{install,remove}
90 do
91 if [[ $(typeset -f ${func}) ]]
92 then
93 unset "${func}"
94 fi
95 done
96
97 # create build info dir
98 install -d ${BUILDSERVER_CACHE_DIR}/build/${PNAME}
99
100 if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/INSTALL_DEPS ]
101 then
102 die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/INSTALL_DEPS missing. run 'buildserver-build-depends first"
103 fi
104
105 if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS ]
106 then
107 die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS missing. run 'buildserver-build-depends first"
108 fi
109
110 INSTALL_DEPS="$(< ${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/INSTALL_DEPS)"
111 SRC_INSTALL_DEPS="$(< ${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS)"
112
113 if [[ -z ${SRC_INSTALL_DEPS} ]]
114 then
115 die "buildserver-build-uninstall-prerequisites: SRC_INSTALL_DEPS are empty, aborting."
116 fi
117
118 echo
119 echo "---- dependencies ----"
120 echo "INSTALL_DEPS:"
121 for i in ${INSTALL_DEPS}
122 do
123 echo " * ${i}"
124 done
125 echo "SRC_INSTALL_DEPS:"
126 for i in ${SRC_INSTALL_DEPS}
127 do
128 echo " * ${i}"
129 done
130 echo "----------------------"
131
132 #echo "DEBUG: paused"; read
133
134 # override packages path
135 SAVED_PKGDIR="${PKGDIR}"
136 PKGDIR="/var/cache/mage/tmp-packages"
137 install -d "${PKGDIR}"
138
139 # clean all tmp-packages if requested
140 if [[ ${CLEAN_TMP_PACKAGES} = 1 ]]
141 then
142 echo "Cleaning tmp-packages as requested"
143 cleanpkg
144 fi
145
146 # now install the packages (no srcinstall, when the user not explcitly want this)
147 fetch_packages ${INSTALL_DEPS} || die "fetching packages"
148 md5sum_packages ${INSTALL_DEPS} || die "md5 sum packages"
149 install_packages ${INSTALL_DEPS} || die "installing packages"
150 if [[ ${CLEANPACKAGES} = 1 ]]
151 then
152 cleanpkg
153 fi
154 # restore packages path
155 PKGDIR="${SAVED_PKGDIR}"
156
157 ## always run auto etc-update
158 echo "running etc-update"
159 echo "-5" | etc-update
160
161 # mark prerequisites as installed
162 touch ${BUILDSERVER_CACHE_DIR}/build/${PNAME}/${PNAME}-${PVER}-${PBUILD}/INSTALLED_PREREQUISITES

Properties

Name Value
svn:executable *