source: BLFS/gen_pkg_book.sh@ b8e5cad

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

Pass tracking file to gen_pkg_book

This is needed for managing -pass1 packages, since their version
can only be found in the tracking file (thanks to previous commit).

  • Property mode set to 100755
File size: 7.6 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=/var/lib/jhalfs/BLFS/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 p=${p%-pass1}
211 versions=$(xsltproc --stringparam package "$p" $GetVersion $PackFile)
212 if [ "$versions" != "$(sort -V <<<$versions)" ]; then
213 LIST="$LIST $p"
214 fi
215done <<<$FULL_LIST
216#echo \""$LIST"\"
217#echo -e \\n provisional end...
218#exit
219rm -f ${BookXml}
220echo Making XML book
221xsltproc --stringparam list "$LIST" \
222 --stringparam MTA "$MAIL_SERVER" \
223 --stringparam lfsbook "$LFS_FULL" \
224 -o ${BookXml} \
225 ${MakeBook} \
226 $BLFS_FULL
227echo "making HTML book (may take some time...)"
228xsltproc -o ${BookHtml}/ \
229 -stringparam chunk.quietly 1 \
230 ${BLFS_XML}/stylesheets/blfs-chunked.xsl \
231 ${BookXml}
232if [ ! -d ${BookHtml}/stylesheets ]
233 then mkdir -p ${BookHtml}/stylesheets
234 cp ${BLFS_XML}/stylesheets/lfs-xsl/*.css ${BookHtml}/stylesheets
235fi
236if [ ! -d ${BookHtml}/images ]
237 then mkdir -p ${BookHtml}/images
238 cp ${BLFS_XML}/images/*.png ${BookHtml}/images
239fi
240for ht in ${BookHtml}/*.html
241 do sed -i 's@\.\./stylesheets@stylesheets@' $ht
242 sed -i 's@\.\./images@images@' $ht
243done
244echo -en "\n\tGenerating the build scripts ...\n"
245rm -rf scripts
246if test $STATS = y; then
247 LIST_STAT="${TARGET[*]}"
248else
249 LIST_STAT=""
250fi
251xsltproc --xinclude --nonet \
252 --stringparam language "$LANGUAGE" \
253 --stringparam sudo "$SUDO" \
254 --stringparam wrap-install "$WRAP_INSTALL" \
255 --stringparam pack-install "$PACK_INSTALL" \
256 --stringparam del-la-files "$DEL_LA_FILES" \
257 --stringparam list-stat "$LIST_STAT" \
258 --stringparam src-archive "$SRC_ARCHIVE" \
259 --stringparam src-subdirs "$SRC_SUBDIRS" \
260 --stringparam build-root "$BUILD_ROOT" \
261 --stringparam build-subdirs "$BUILD_SUBDIRS" \
262 --stringparam keep-files "$KEEP_FILES" \
263 --param jobs "$JOBS" \
264 --stringparam cfg-cflags "$CFG_CFLAGS" \
265 --stringparam cfg-cxxflags "$CFG_CXXFLAGS" \
266 --stringparam cfg-ldflags "$CFG_LDFLAGS" \
267 --stringparam fqdn "$(hostname -f)" \
268 --output ./scripts/ \
269 ${MakeScripts} \
270 ${BookXml}
271# Make the scripts executable.
272chmod -R +x scripts
273echo -e "done\n"
274
275#clean_configuration
Note: See TracBrowser for help on using the repository browser.