Magellan Linux

Annotation of /trunk/mage-buildserver/helper/buildserver-install.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2819 - (hide annotations) (download) (as text)
Mon Sep 8 15:02:40 2014 UTC (9 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 3945 byte(s)
-install_packages() unpacks the packages already, no need to do this twice
1 niro 2769 #!/bin/bash
2    
3     BUILDSERVER_CACHE_DIR="/var/cache/mage-buildserver"
4     SMAGEFILE="$1"
5     CLEANPACKAGES=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     if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS ]
85     then
86     die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS missing. run 'buildserver-build-depends first"
87     fi
88    
89     SRC_INSTALL_DEPS="$(< ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/SRC_INSTALL_DEPS)"
90    
91     if [[ -z ${SRC_INSTALL_DEPS} ]]
92     then
93     die "buildserver-build: SRC_INSTALL_DEPS are empty, aborting."
94     fi
95    
96     if [ -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALL_OK ]
97     then
98     echo -en "Package "
99     echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
100     echo -e " already installed successfully. try a revup."
101     exit 3
102     fi
103    
104     if [ ! -f ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALLED_PREREQUISITES ]
105     then
106     die "${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALLED_PREREQUISITES missing. run 'buildserver-build-prerequisites first"
107     fi
108    
109     TARGET_MAGEFILE="${MAGEDIR}/${PCAT}/${PNAME}/${PNAME}-${PVER}-${PBUILD}.${MAGESUFFIX}"
110    
111     #regen_mage_tree
112     # save STATE, gets deleted by regen_mage_tree
113     BUILDSERVER_SAVED_STATE="${STATE}"
114     regen_mage_tree
115     # restore STATE
116     STATE="${BUILDSERVER_SAVED_STATE}"
117    
118     # honor split packages
119     if [[ -n ${SPLIT_PACKAGES} ]]
120     then
121     split_save_variables
122     for subpackage in ${SPLIT_PACKAGES}
123     do
124     # get the right variables for the split
125     export PNAME="${subpackage}"
126     split_info_${PNAME}
127    
128     if [[ -z ${SRC_INSTALL_DEPS} ]]
129     then
130     SRC_INSTALL_DEPS="${MAGEDIR}/${PCAT}/${PNAME}/${PNAME}-${PVER}-${PBUILD}.${MAGESUFFIX}"
131     else
132     SRC_INSTALL_DEPS+=" ${MAGEDIR}/${PCAT}/${PNAME}/${PNAME}-${PVER}-${PBUILD}.${MAGESUFFIX}"
133     fi
134     # restore smage environment
135     split_restore_variables
136     done
137     # unset all saved smage variables
138     split_unset_variables
139     else
140     SRC_INSTALL_DEPS="${TARGET_MAGEFILE}"
141     fi
142    
143     # now install the packages (no srcinstall, when the user not explcitly want this)
144     fetch_packages ${SRC_INSTALL_DEPS} || die "fetching packages"
145     md5sum_packages ${SRC_INSTALL_DEPS} || die "md5 sum packages"
146     if install_packages ${SRC_INSTALL_DEPS} || die "installing packages"
147     then
148     install_retval=0
149     echo 0 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALL_OK
150     echo "Install successfull!"
151     else
152     install_retval=1
153     echo 1 > ${BUILDSERVER_CACHE_DIR}/build/${PNAME}-${PVER}-${PBUILD}/INSTALL_FAILED
154     echo "Installation *not* successfull!"
155     fi
156     if [[ ${CLEANPACKAGES} = 1 ]]
157     then
158     cleanpkg
159     fi
160    
161     ## always run auto etc-update
162     echo "running etc-update"
163     echo "-5" | etc-update
164    
165     exit ${install_retval}

Properties

Name Value
svn:executable *