source: BLFS/gen_pkg_book.sh@ b734bfb

ablfs-more legacy trunk
Last change on this file since b734bfb was b734bfb, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

install_blfs: update trackdir also in gen_pkg_book.sh

Now gen_pkf_book.sh depends on trackfile. This can be passed
as an argument, but to ease calling it standalone, we need to
set the default to the actual file used.

  • Property mode set to 100755
File size: 8.5 KB
Line 
1#!/bin/bash
2#
3# Read and parse the configuration parameters..
4#
5set -e
6
7TRACKFILE=$1
8if test -z "$TRACKFILE"; then
9 TRACKFILE=tracking-dir/instpkg.xml
10fi
11TOPDIR=$2
12if test -z "$TOPDIR"; then
13 TOPDIR=$(pwd)
14fi
15BLFS_FULL=$3
16if test -z "$BLFS_FULL"; then
17 BLFS_FULL=${TOPDIR}/blfs-xml/tmp/blfs-full.xml
18fi
19LFS_FULL=$4
20if test -z "$LFS_FULL"; then
21 LFS_FULL=${TOPDIR}/lfs-xml/tmp/lfs-full.xml
22fi
23declare -r ConfigFile="${TOPDIR}/configuration"
24declare DepDir="${TOPDIR}/dependencies"
25declare LibDir="${TOPDIR}/libs"
26declare PackFile="${TOPDIR}/packages.xml"
27declare BookXml="${TOPDIR}/book.xml"
28declare MakeBook="${TOPDIR}/xsl/make_book.xsl"
29declare GetVersion="${TOPDIR}/xsl/get_version.xsl"
30declare MakeScripts="${TOPDIR}/xsl/scripts.xsl"
31declare BookHtml="${TOPDIR}/book-html"
32declare BLFS_XML="${TOPDIR}/blfs-xml"
33declare -a TARGET
34declare DEP_LEVEL
35declare SUDO
36declare LANGUAGE
37declare WRAP_INSTALL
38declare PACK_INSTALL
39declare DEL_LA_FILES
40declare STATS
41declare SRC_ARCHIVE
42declare SRC_SUBDIRS
43declare BUILD_ROOT
44declare BUILD_SUBDIRS
45declare KEEP_FILES
46declare -i JOBS
47declare CFG_CFLAGS
48declare CFG_CXXFLAGS
49declare CFG_LDFLAGS
50
51#--------------------------#
52parse_configuration() { #
53#--------------------------#
54 local -i cntr=0
55 local -a optTARGET
56
57 while read; do
58
59 # Garbage collection
60 case ${REPLY} in
61 \#* | '') continue ;;
62 esac
63
64 case "${REPLY}" in
65 # Create global variables for these parameters.
66 optDependency=* | \
67 MAIL_SERVER=* | \
68 WRAP_INSTALL=* | \
69 PACK_INSTALL=* | \
70 DEL_LA_FILES=* | \
71 STATS=* | \
72 LANGUAGE=* | \
73 SUDO=* | \
74 SRC_ARCHIVE=* | \
75 SRC_SUBDIRS=* | \
76 BUILD_ROOT=* | \
77 BUILD_SUBDIRS=* | \
78 KEEP_FILES=* | \
79 JOBS=* | \
80 CFG_CFLAGS=* | \
81 CFG_CXXFLAGS=* | \
82 CFG_LDFLAGS=* ) eval ${REPLY} # Define/set a global variable..
83 continue ;;
84 esac
85
86 if [[ "${REPLY}" =~ ^CONFIG_ ]]; then
87 echo "$REPLY"
88 optTARGET[$((cntr++))]=$( echo $REPLY | sed -e 's@CONFIG_@@' -e 's@=y@@' )
89 fi
90 done < $ConfigFile
91
92 if (( $cntr == 0 )); then
93 echo -e "\n>>> NO TARGET SELECTED.. application terminated"
94 echo -e " Run <make> again and select (a) package(s) to build\n"
95 exit 0
96 fi
97 TARGET=(${optTARGET[*]})
98 DEP_LEVEL=$optDependency
99 SUDO=${SUDO:-n}
100 WRAP_INSTALL=${WRAP_INSTALL:-n}
101 DEL_LA_FILES=${DEL_LA_FILES:-n}
102 STATS=${STATS:-n}
103# Other boolean variables are supposed to be either set or unset. Their values
104# are not relevant
105}
106
107#--------------------------#
108validate_configuration() { #
109#--------------------------#
110 local -r dotSTR=".................."
111 local -r PARAM_LIST="DEP_LEVEL SUDO LANGUAGE MAIL_SERVER WRAP_INSTALL PACK_INSTALL DEL_LA_FILES STATS SRC_ARCHIVE SRC_SUBDIRS BUILD_ROOT BUILD_SUBDIRS KEEP_FILES JOBS CFG_CFLAGS CFG_CXXFLAGS CFG_LDFLAGS"
112 local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
113 local config_param
114 local -i index
115
116 for config_param in ${PARAM_LIST}; do
117 echo -e "`eval echo $PARAM_VALS`"
118 done
119 for (( index=0 ; index < ${#TARGET[*]} ; index ++ )); do
120 echo -e "TARGET${index}${dotSTR:6} ${L_arrow}${BOLD}${TARGET[${index}]}${OFF}${R_arrow}"
121 done
122}
123
124#
125# Generates the root of the dependency tree
126#
127#--------------------------#
128generate_deps() { #
129#--------------------------#
130
131 local -i index
132 local DepDir=$1
133 rm -f $DepDir/*.{tree,dep}
134 for (( index=0 ; index < ${#TARGET[*]} ; index ++ )); do
135 echo 1 b ${TARGET[${index}]} >> $DepDir/root.dep
136 done
137}
138
139#
140# Clean configuration file keeping only global default settings.
141# That prevent "trying to assign nonexistent symbol" messages
142# and assures that there is no TARGET selected from a previous run
143#
144#--------------------------#
145clean_configuration() { #
146#--------------------------#
147
148tail -n 15 ${ConfigFile} > ${ConfigFile}.tmp
149mv ${ConfigFile}.tmp ${ConfigFile}
150
151}
152
153#---------------------
154# Constants
155source ${LibDir}/constants.inc
156[[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit
157
158#---------------------
159# Dependencies module
160source ${LibDir}/func_dependencies
161[[ $? > 0 ]] && echo -e "\n\tERROR: func_dependencies did not load..\n" && exit
162
163#------- MAIN --------
164if [[ ! -f ${PackFile} ]] ; then
165 echo -e "\tNo packages file has been found.\n"
166 echo -e "\tExecution aborted.\n"
167 exit 1
168fi
169
170
171parse_configuration
172validate_configuration
173echo "${SD_BORDER}${nl_}"
174echo -n "Are you happy with these settings? yes/no (no): "
175read ANSWER
176if [ x$ANSWER != "xyes" ] ; then
177 echo "${nl_}Rerun make and fix your settings.${nl_}"
178 exit 1
179fi
180echo "${nl_}${SD_BORDER}${nl_}"
181
182rm -rf $DepDir
183mkdir $DepDir
184generate_deps $DepDir
185pushd $DepDir > /dev/null
186set +e
187generate_subgraph root.dep 1 1 b
188echo -e "\n${SD_BORDER}"
189echo Graph contains $(ls |wc -l) nodes
190echo -e "${SD_BORDER}"
191echo Cleaning subgraph...
192clean_subgraph
193echo done
194echo Generating the tree
195echo 1 > root.tree
196echo 1 >> root.tree
197cat root.dep >> root.tree
198generate_dependency_tree root.tree 1
199echo -e "\n${SD_BORDER}"
200echo Generating the ordered full dependency list
201FULL_LIST="$(tree_browse root.tree)"
202set -e
203popd > /dev/null
204#echo "$FULL_LIST"
205#echo -e \\n provisional end...
206#exit
207echo Generating the ordered package list
208LIST=
209while read p; do
210 if [ "$p" != "${p%-pass1}" ]; then
211# If the pass2 is installed, no need for pass1. We get its
212# installed version from TRACKFILE; We could use PackFile, but
213# the test would be slightly more complicated.
214echo Treating $p
215 pass2_v=$(xsltproc --stringparam package "${p%-pass1}" \
216 $GetVersion $TRACKFILE | head -n1)
217echo Found pass2_v=$pass2_v
218 if [ -n "$pass2_v" ]; then continue; fi
219# We need to get the installed version from TRACKFILE
220 inst_v=$(xsltproc --stringparam package "$p" $GetVersion $TRACKFILE | \
221 head -n1)
222 if [ -z "$inst_v" ]; then inst_v=0; fi
223echo Found inst_v=$inst_v
224# The available version is taken from PackFile
225 avail_v=$(xsltproc --stringparam package "${p%-pass1}" \
226 $GetVersion $PackFile | head -n1)
227echo Found avail_v=$avail_v
228 versions="$avail_v
229$inst_v"
230 echo which gives versions=$versions
231 else
232 versions=$(xsltproc --stringparam package "$p" $GetVersion $PackFile)
233 fi
234 if [ "$versions" != "$(sort -V <<<$versions)" ]; then
235 LIST="$LIST $p"
236 fi
237done <<<$FULL_LIST
238#echo \""$LIST"\"
239#echo -e \\n provisional end...
240#exit
241rm -f ${BookXml}
242echo Making XML book
243xsltproc --stringparam list "$LIST" \
244 --stringparam MTA "$MAIL_SERVER" \
245 --stringparam lfsbook "$LFS_FULL" \
246 -o ${BookXml} \
247 ${MakeBook} \
248 $BLFS_FULL
249echo "making HTML book (may take some time...)"
250xsltproc -o ${BookHtml}/ \
251 -stringparam chunk.quietly 1 \
252 ${BLFS_XML}/stylesheets/blfs-chunked.xsl \
253 ${BookXml}
254if [ ! -d ${BookHtml}/stylesheets ]
255 then mkdir -p ${BookHtml}/stylesheets
256 cp ${BLFS_XML}/stylesheets/lfs-xsl/*.css ${BookHtml}/stylesheets
257fi
258if [ ! -d ${BookHtml}/images ]
259 then mkdir -p ${BookHtml}/images
260 cp ${BLFS_XML}/images/*.png ${BookHtml}/images
261fi
262for ht in ${BookHtml}/*.html
263 do sed -i 's@\.\./stylesheets@stylesheets@' $ht
264 sed -i 's@\.\./images@images@' $ht
265done
266echo -en "\n\tGenerating the build scripts ...\n"
267rm -rf scripts
268if test $STATS = y; then
269 LIST_STAT="${TARGET[*]}"
270else
271 LIST_STAT=""
272fi
273xsltproc --xinclude --nonet \
274 --stringparam language "$LANGUAGE" \
275 --stringparam sudo "$SUDO" \
276 --stringparam wrap-install "$WRAP_INSTALL" \
277 --stringparam pack-install "$PACK_INSTALL" \
278 --stringparam del-la-files "$DEL_LA_FILES" \
279 --stringparam list-stat "$LIST_STAT" \
280 --stringparam src-archive "$SRC_ARCHIVE" \
281 --stringparam src-subdirs "$SRC_SUBDIRS" \
282 --stringparam build-root "$BUILD_ROOT" \
283 --stringparam build-subdirs "$BUILD_SUBDIRS" \
284 --stringparam keep-files "$KEEP_FILES" \
285 --param jobs "$JOBS" \
286 --stringparam cfg-cflags "$CFG_CFLAGS" \
287 --stringparam cfg-cxxflags "$CFG_CXXFLAGS" \
288 --stringparam cfg-ldflags "$CFG_LDFLAGS" \
289 --stringparam fqdn "$(hostname -f)" \
290 --output ./scripts/ \
291 ${MakeScripts} \
292 ${BookXml}
293# Make the scripts executable.
294chmod -R +x scripts
295echo -e "done\n"
296
297#clean_configuration
Note: See TracBrowser for help on using the repository browser.