source: BLFS/xsl/scripts.xsl@ 951d334

ablfs-more trunk
Last change on this file since 951d334 was 0f4df7c, checked in by Pierre Labastie <pierre.labastie@…>, 22 months ago

BLFS tools: don't generate duplicate download code

For additional downloads, the normal book layout is a <bridgehead>
containing "Additional Downloads" followed by one or more
<itemizedlist>, one for each file to download. But on some pages,
there are several <bridgehead>, each followed by one or more
<itemizedlist>. So we have to check that only the <itemizedlist>
correponding to the current <bridgehead> are treated. Otherwise,
the download code may be generated more than once. This imposes
that no other bridgehead is inserted between the one containing
"Additional" (or in some case "Recommended/Optional Download") and
the <itemizedlist>.

  • Property mode set to 100644
File size: 39.1 KB
Line 
1<?xml version="1.0"?>
2
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:exsl="http://exslt.org/common"
5 extension-element-prefixes="exsl"
6 version="1.0">
7
8<!-- XSLT stylesheet to create shell scripts from "linear build" BLFS books. -->
9
10<!-- parameters and global variables -->
11 <!-- Check whether the book is sysv or systemd -->
12 <xsl:variable name="rev">
13 <xsl:choose>
14 <xsl:when test="//bookinfo/title/phrase[@revision='systemd']">
15 systemd
16 </xsl:when>
17 <xsl:otherwise>
18 sysv
19 </xsl:otherwise>
20 </xsl:choose>
21 </xsl:variable>
22
23 <!-- Wrap "root" commands inside a wrapper function, allowing
24 "porg style" package management -->
25 <xsl:param name="wrap-install" select="'n'"/>
26 <xsl:param name="pack-install" select="'$HOME/blfs_root/packInstall.sh'"/>
27
28 <!-- list of packages needing stats -->
29 <xsl:param name="list-stat" select="''"/>
30
31 <!-- Remove libtool .la files -->
32 <xsl:param name="del-la-files" select="'y'"/>
33
34 <!-- Build as user (y) or as root (n)? -->
35 <xsl:param name="sudo" select="'y'"/>
36
37 <!-- Root of sources directory -->
38 <xsl:param name="src-archive" select="'/sources'"/>
39
40 <!-- Download and archive tarballs to subdirs. Can be 'y' or '',
41 not 'n' -->
42 <xsl:param name="src-subdirs" select="''"/>
43
44 <!-- Root of build directory -->
45 <xsl:param name="build-root" select="'/sources'"/>
46
47 <!-- extract sources and build into subdirs. Can be 'y' or '',
48 not 'n' -->
49 <xsl:param name="build-subdirs" select="''"/>
50
51 <!-- Keep files in the build directory after building. Can be 'y' or '',
52 not 'n' -->
53 <xsl:param name="keep-files" select="''"/>
54
55 <!-- Number of parallel jobs; type integer, not string -->
56 <xsl:param name="jobs" select="0"/>
57<!-- simple instructions for removing .la files. -->
58<!-- We'll use the rule that any text output begins with a linefeed if needed
59 so that we do not need to output one at the end-->
60 <xsl:variable name="la-files-instr">
61
62for libdir in /lib /usr/lib $(find /opt -name lib); do
63 find $libdir -name \*.la \
64 ! -path \*ImageMagick\* \
65 -delete
66done</xsl:variable>
67
68 <xsl:variable name="list-stat-norm"
69 select="concat(' ', normalize-space($list-stat),' ')"/>
70
71<!-- To be able to use the single quote in tests -->
72 <xsl:variable name="APOS">'</xsl:variable>
73
74<!-- end parameters and global variables -->
75
76<!-- include the template for processing screen children of
77 role="install" sect2 -->
78 <xsl:include href="process-install.xsl"/>
79
80<!-- include the template for replaceable tags -->
81 <xsl:include href="process-replaceable.xsl"/>
82
83<!--=================== Begin processing ========================-->
84
85 <xsl:template match="/">
86 <xsl:apply-templates select="//sect1[@id != 'bootscripts' and
87 @id != 'systemd-units']"/>
88 </xsl:template>
89
90<!--=================== Master chunks code ======================-->
91
92 <xsl:template match="sect1">
93
94 <!-- Are stat requested for this page? -->
95 <xsl:variable name="want-stats"
96 select="contains($list-stat-norm,
97 concat(' ',@id,' '))"/>
98
99 <!-- The file names -->
100 <xsl:variable name="filename" select="@id"/>
101
102 <!-- The build order -->
103 <xsl:variable name="position" select="position()"/>
104 <xsl:variable name="order">
105 <xsl:choose>
106 <xsl:when test="string-length($position) = 1">
107 <xsl:text>00</xsl:text>
108 <xsl:value-of select="$position"/>
109 </xsl:when>
110 <xsl:when test="string-length($position) = 2">
111 <xsl:text>0</xsl:text>
112 <xsl:value-of select="$position"/>
113 </xsl:when>
114 <xsl:otherwise>
115 <xsl:value-of select="$position"/>
116 </xsl:otherwise>
117 </xsl:choose>
118 </xsl:variable>
119
120 <!-- Depuration code -->
121 <xsl:message>
122 <xsl:text>SCRIPT is </xsl:text>
123 <xsl:value-of select="concat($order,'-z-',$filename)"/>
124 <xsl:text>&#xA; FTPDIR is </xsl:text>
125 <xsl:value-of select="$filename"/>
126 <xsl:text>&#xA;&#xA;</xsl:text>
127 </xsl:message>
128
129 <!-- Creating the scripts -->
130 <exsl:document href="{$order}-z-{$filename}" method="text">
131 <xsl:text>#!/bin/bash
132set -e
133# Variables coming from configuration
134export JH_PACK_INSTALL="</xsl:text>
135 <xsl:copy-of select="$pack-install"/>
136 <xsl:text>"
137export JH_SRC_ARCHIVE="</xsl:text>
138 <xsl:copy-of select="$src-archive"/>
139 <xsl:text>"
140export JH_SRC_SUBDIRS="</xsl:text>
141 <xsl:copy-of select="$src-subdirs"/>
142 <xsl:text>"
143export JH_BUILD_ROOT="</xsl:text>
144 <xsl:copy-of select="$build-root"/>
145 <xsl:text>"
146export JH_BUILD_SUBDIRS="</xsl:text>
147 <xsl:copy-of select="$build-subdirs"/>
148 <xsl:text>"
149export JH_KEEP_FILES="</xsl:text>
150 <xsl:copy-of select="$keep-files"/>
151 <xsl:text>"
152</xsl:text>
153 <xsl:choose>
154 <xsl:when test="$cfg-cflags = 'EMPTY'">
155 <xsl:text>unset CFLAGS
156</xsl:text>
157 </xsl:when>
158 <xsl:otherwise>
159 <xsl:text>export CFLAGS="</xsl:text>
160 <xsl:copy-of select="$cfg-cflags"/>
161 <xsl:text>"
162</xsl:text>
163 </xsl:otherwise>
164 </xsl:choose>
165 <xsl:choose>
166 <xsl:when test="$cfg-cxxflags = 'EMPTY'">
167 <xsl:text>unset CXXFLAGS
168</xsl:text>
169 </xsl:when>
170 <xsl:otherwise>
171 <xsl:text>export CXXFLAGS="</xsl:text>
172 <xsl:copy-of select="$cfg-cxxflags"/>
173 <xsl:text>"
174</xsl:text>
175 </xsl:otherwise>
176 </xsl:choose>
177 <xsl:choose>
178 <xsl:when test="$cfg-ldflags = 'EMPTY'">
179 <xsl:text>unset LDFLAGS
180</xsl:text>
181 </xsl:when>
182 <xsl:otherwise>
183 <xsl:text>export LDFLAGS="</xsl:text>
184 <xsl:copy-of select="$cfg-ldflags"/>
185 <xsl:text>"
186</xsl:text>
187 </xsl:otherwise>
188 </xsl:choose>
189<!-- We use MAKEFLAGS and NINJAJOBS for setting the number of
190 parallel jobs. This supposes that ninja has been build with
191 support for NINJAJOBS in lfs. We'll have to change that code
192 if lfs changes its policy for ninja. -->
193 <xsl:text>export MAKEFLAGS="-j</xsl:text>
194 <xsl:choose>
195 <xsl:when test="$jobs = 0">
196 <xsl:text>$(nproc)"
197</xsl:text>
198 </xsl:when>
199 <xsl:otherwise>
200 <xsl:value-of select="$jobs"/>
201 <xsl:text>"
202</xsl:text>
203 </xsl:otherwise>
204 </xsl:choose>
205 <xsl:choose>
206 <xsl:when test="$jobs = 0">
207 <xsl:text>unset NINJAJOBS
208</xsl:text>
209 </xsl:when>
210 <xsl:otherwise>
211 <xsl:text>export NINJAJOBS="</xsl:text>
212 <xsl:value-of select="$jobs"/>
213 <xsl:text>"
214</xsl:text>
215 </xsl:otherwise>
216 </xsl:choose>
217<!-- Unsetting MAKELEVEL is needed for some packages which assume that
218 their top level Makefile is at level zero.
219 Some packages (cmake) use MAKE_TERMOUT and MAKE_TERMERR to determine
220 whether they are talking to a terminal.
221 In our case, stdout/stderr are always redirected, so unset them.-->
222 <xsl:text>unset MAKELEVEL
223unset MAKE_TERMOUT
224unset MAKE_TERMERR
225<!-- When installing several packages, and profile or profile.d
226 has been modified by a previous package, we need to ensure that
227 the updated profile is used.
228-->if [ -r /etc/profile ]; then source /etc/profile; fi
229# End of environment</xsl:text>
230
231 <xsl:choose>
232 <!-- Package page -->
233 <xsl:when test="sect2[@role='package']">
234 <!-- We build in a subdirectory, whose name may be needed
235 if using package management, so
236 "export" it -->
237 <xsl:text>
238export JH_PKG_DIR=</xsl:text>
239 <xsl:value-of select="$filename"/>
240 <xsl:text>
241SRC_DIR=${JH_SRC_ARCHIVE}${JH_SRC_SUBDIRS:+/${JH_PKG_DIR}}
242BUILD_DIR=${JH_BUILD_ROOT}${JH_BUILD_SUBDIRS:+/${JH_PKG_DIR}}
243mkdir -p $SRC_DIR
244mkdir -p $BUILD_DIR
245</xsl:text>
246
247<!-- If stats are requested, include some definitions and initializations -->
248 <xsl:if test="$want-stats">
249 <xsl:text>
250INFOLOG=$(pwd)/info-${JH_PKG_DIR}
251TESTLOG=$(pwd)/test-${JH_PKG_DIR}
252echo MAKEFLAGS: $MAKEFLAGS > $INFOLOG
253echo NINJAJOBS: $NINJAJOBS >> $INFOLOG
254: > $TESTLOG
255PKG_DEST=${BUILD_DIR}/dest
256</xsl:text>
257<!-- in some cases, DESTDIR may have been populated by root -->
258 <xsl:if test="$sudo = 'y'">
259 <xsl:text>sudo </xsl:text>
260 </xsl:if>
261 <xsl:text>rm -rf $PKG_DEST
262</xsl:text>
263 </xsl:if><!-- want-stats -->
264 <!-- Download code and build commands -->
265 <xsl:apply-templates select="sect2">
266 <xsl:with-param name="want-stats" select="$want-stats"/>
267 </xsl:apply-templates>
268 <!-- Clean-up -->
269 <xsl:text>
270
271cd $BUILD_DIR
272[[ -n "$JH_KEEP_FILES" ]] || </xsl:text>
273 <!-- In some case, some files in the build tree are owned
274 by root -->
275 <xsl:if test="$sudo='y'">
276 <xsl:text>sudo </xsl:text>
277 </xsl:if>
278 <xsl:text>rm -rf $JH_UNPACKDIR unpacked
279</xsl:text>
280 </xsl:when>
281 <!-- Non-package page -->
282 <xsl:otherwise>
283 <xsl:apply-templates select=".//screen" mode="not-pack"/>
284 </xsl:otherwise>
285 </xsl:choose>
286 <xsl:text>
287exit
288</xsl:text><!-- include a \n at the end of document-->
289 </exsl:document>
290 </xsl:template>
291
292<!--======================= Sub-sections code =======================-->
293
294 <xsl:template match="sect2">
295 <xsl:param name="want-stats" select="false"/>
296 <xsl:choose>
297
298 <xsl:when test="@role = 'package'">
299 <xsl:text>
300cd $SRC_DIR</xsl:text>
301 <!-- Download information is in bridgehead tags -->
302 <xsl:apply-templates select="bridgehead[@renderas='sect3']"/>
303 </xsl:when><!-- @role="package" -->
304
305 <xsl:when test="@role = 'qt4-prefix' or @role = 'qt5-prefix'">
306 <xsl:apply-templates select=".//screen[./userinput]"/>
307 </xsl:when>
308
309 <xsl:when test="@role = 'installation' and
310 not(preceding-sibling::sect2[@role = 'installation'])">
311 <xsl:text>
312cd $BUILD_DIR
313find . -maxdepth 1 -mindepth 1 -type d | xargs </xsl:text>
314 <xsl:if test="$sudo='y'">
315 <xsl:text>sudo </xsl:text>
316 </xsl:if>
317 <xsl:text>rm -rf
318</xsl:text>
319 <!-- If stats are requested, insert the start size -->
320 <xsl:if test="$want-stats">
321 <xsl:text>
322echo Start Size: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG
323</xsl:text>
324 </xsl:if>
325
326 <xsl:text>
327case $PACKAGE in
328 *.tar.gz|*.tar.bz2|*.tar.xz|*.tgz|*.tar.lzma)
329 tar -xvf $SRC_DIR/$PACKAGE &gt; unpacked
330 JH_UNPACKDIR=`grep '[^./]\+' unpacked | head -n1 | sed 's@^\./@@;s@/.*@@'`
331 ;;
332 *.tar.lz)
333 bsdtar -xvf $SRC_DIR/$PACKAGE 2&gt; unpacked
334 JH_UNPACKDIR=`head -n1 unpacked | cut -d" " -f2 | sed 's@^\./@@;s@/.*@@'`
335 ;;
336 *.zip)
337 zipinfo -1 $SRC_DIR/$PACKAGE &gt; unpacked
338 JH_UNPACKDIR="$(sed 's@/.*@@' unpacked | uniq )"
339 if test $(wc -w &lt;&lt;&lt; $JH_UNPACKDIR) -eq 1; then
340 unzip $SRC_DIR/$PACKAGE
341 else
342 JH_UNPACKDIR=${PACKAGE%.zip}
343 unzip -d $JH_UNPACKDIR $SRC_DIR/$PACKAGE
344 fi
345 ;;
346 *)
347 JH_UNPACKDIR=$JH_PKG_DIR-build
348 mkdir $JH_UNPACKDIR
349 cp $SRC_DIR/$PACKAGE $JH_UNPACKDIR
350 ADDITIONAL="$(find . -mindepth 1 -maxdepth 1 -type l)"
351 if [ -n "$ADDITIONAL" ]; then
352 cp $ADDITIONAL $JH_UNPACKDIR
353 fi
354 ;;
355esac
356export JH_UNPACKDIR
357cd $JH_UNPACKDIR
358</xsl:text>
359 <!-- If stats are requested, insert the start time -->
360 <xsl:if test="$want-stats">
361 <xsl:text>
362echo Start Time: ${SECONDS} >> $INFOLOG
363</xsl:text>
364 </xsl:if>
365
366 <xsl:call-template name="process-install">
367 <xsl:with-param
368 name="instruction-tree"
369 select=".//screen[not(@role = 'nodump') and ./userinput] |
370 .//para/command[contains(text(),'check') or
371 contains(text(),'test')]"/>
372 <xsl:with-param name="want-stats" select="$want-stats"/>
373 <xsl:with-param name="root-seen" select="boolean(0)"/>
374 <xsl:with-param name="install-seen" select="boolean(0)"/>
375 <xsl:with-param name="test-seen" select="boolean(0)"/>
376 <xsl:with-param name="doc-seen" select="boolean(0)"/>
377 </xsl:call-template>
378 <xsl:text>
379</xsl:text>
380 <xsl:if test="$sudo = 'y'">
381 <xsl:text>sudo /sbin/</xsl:text>
382 </xsl:if>
383 <xsl:text>ldconfig</xsl:text>
384 </xsl:when><!-- @role="installation" -->
385
386 <xsl:when test="@role = 'configuration'">
387 <xsl:text>&#xA;</xsl:text>
388 <xsl:apply-templates mode="config"
389 select=".//screen[not(@role = 'nodump') and ./userinput]"/>
390 </xsl:when><!-- @role="configuration" -->
391
392 </xsl:choose>
393 </xsl:template>
394
395<!--==================== Download code =======================-->
396
397 <!-- template for extracting the filename from an url in the form:
398 proto://internet.name/dir1/.../dirn/filename?condition.
399 Needed, because substring-after(...,'/') returns only the
400 substring after the first '/'. -->
401 <xsl:template name="package_name">
402 <xsl:param name="url" select="foo"/>
403 <xsl:param name="sub-url" select="substring-after($url,'/')"/>
404 <xsl:choose>
405 <xsl:when test="contains($sub-url,'/')">
406 <xsl:call-template name="package_name">
407 <xsl:with-param name="url" select="$sub-url"/>
408 </xsl:call-template>
409 </xsl:when>
410 <xsl:otherwise>
411 <xsl:choose>
412 <xsl:when test="contains($sub-url,'?')">
413 <xsl:value-of select="substring-before($sub-url,'?')"/>
414 </xsl:when>
415 <xsl:otherwise>
416 <xsl:value-of select="$sub-url"/>
417 </xsl:otherwise>
418 </xsl:choose>
419 </xsl:otherwise>
420 </xsl:choose>
421 </xsl:template>
422
423 <!-- Generates the code to download a package, an additional package or
424 a patch. -->
425 <xsl:template name="download-file">
426 <xsl:param name="httpurl" select="''"/>
427 <xsl:param name="ftpurl" select="''"/>
428 <xsl:param name="md5" select="''"/>
429 <xsl:param name="varname" select="''"/>
430 <xsl:variable name="package">
431 <xsl:call-template name="package_name">
432 <xsl:with-param name="url">
433 <xsl:choose>
434 <xsl:when test="string-length($httpurl) &gt; 10">
435 <xsl:value-of select="$httpurl"/>
436 </xsl:when>
437 <xsl:otherwise>
438 <xsl:value-of select="$ftpurl"/>
439 </xsl:otherwise>
440 </xsl:choose>
441 </xsl:with-param>
442 </xsl:call-template>
443 </xsl:variable>
444 <xsl:variable name="first_letter"
445 select="translate(substring($package,1,1),
446 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
447 'abcdefghijklmnopqrstuvwxyz')"/>
448 <xsl:text>&#xA;</xsl:text>
449 <xsl:value-of select="$varname"/>
450 <xsl:text>=</xsl:text>
451 <xsl:value-of select="$package"/>
452 <xsl:text>&#xA;if [[ ! -f $</xsl:text>
453 <xsl:value-of select="$varname"/>
454 <xsl:text> ]] ; then
455 if [ -f "$JH_SRC_ARCHIVE/$</xsl:text>
456 <xsl:value-of select="$varname"/>
457 <xsl:text>" ] ; then&#xA;</xsl:text>
458 <xsl:text> cp "$JH_SRC_ARCHIVE/$</xsl:text>
459 <xsl:value-of select="$varname"/>
460 <xsl:text>" "$</xsl:text>
461 <xsl:value-of select="$varname"/>
462 <xsl:text>"
463 else&#xA;</xsl:text>
464 <!-- Download from upstream http -->
465 <xsl:if test="string-length($httpurl) &gt; 10">
466 <xsl:text> wget -T 30 -t 5 "</xsl:text>
467 <xsl:value-of select="$httpurl"/>
468 <xsl:text>" ||&#xA;</xsl:text>
469 </xsl:if>
470 <!-- Download from upstream ftp -->
471 <xsl:if test="string-length($ftpurl) &gt; 10">
472 <xsl:text> wget -T 30 -t 5 "</xsl:text>
473 <xsl:value-of select="$ftpurl"/>
474 <xsl:text>" ||&#xA;</xsl:text>
475 </xsl:if>
476 <!-- The FTP_SERVER mirror as a last resort -->
477 <xsl:text> wget -T 30 -t 5 "${JH_FTP_SERVER}svn/</xsl:text>
478 <xsl:value-of select="$first_letter"/>
479 <xsl:text>/$</xsl:text>
480 <xsl:value-of select="$varname"/>
481 <xsl:text>"
482 fi
483fi</xsl:text>
484 <xsl:if test="string-length($md5) &gt; 10">
485 <xsl:text>
486echo "</xsl:text>
487 <xsl:value-of select="$md5"/>
488 <xsl:text>&#x20;&#x20;$</xsl:text>
489 <xsl:value-of select="$varname"/>
490 <xsl:text>" | md5sum -c -</xsl:text>
491 </xsl:if>
492<!-- link additional packages into $BUILD_DIR, because they are supposed to
493 be there-->
494 <xsl:if test="string($varname) != 'PACKAGE'">
495 <xsl:text>
496[ "$SRC_DIR" != "$BUILD_DIR" ] &amp;&amp; ln -sf "$SRC_DIR/$</xsl:text>
497 <xsl:value-of select="$varname"/>
498 <xsl:text>" "$BUILD_DIR"</xsl:text>
499 </xsl:if>
500 <xsl:text>&#xA;</xsl:text>
501 </xsl:template>
502
503 <!-- Extract the MD5 sum information -->
504 <xsl:template match="para" mode="md5">
505 <xsl:choose>
506 <xsl:when test="contains(substring-after(string(),'sum: '),'&#xA;')">
507 <xsl:value-of select="substring-before(substring-after(string(),'sum: '),'&#xA;')"/>
508 </xsl:when>
509 <xsl:otherwise>
510 <xsl:value-of select="substring-after(string(),'sum: ')"/>
511 </xsl:otherwise>
512 </xsl:choose>
513 </xsl:template>
514
515 <!-- We have several templates itemizedlist, depending on whether we
516 expect the package information, or additional package(s) or patch(es)
517 information. Select the appropriate mode here. -->
518 <xsl:template match="bridgehead">
519 <xsl:choose>
520 <!-- Special case for Openjdk -->
521 <xsl:when test="contains(string(),'Source Package Information')">
522 <xsl:apply-templates
523 select="following-sibling::itemizedlist[1]//simplelist">
524 <xsl:with-param name="varname" select="'PACKAGE'"/>
525 </xsl:apply-templates>
526 <xsl:apply-templates select="following-sibling::itemizedlist
527 [preceding-sibling::bridgehead[1]=current()
528 and position() &gt;1]//simplelist">
529 <xsl:with-param name="varname" select="'PACKAGE1'"/>
530 </xsl:apply-templates>
531 </xsl:when>
532 <!-- Package information -->
533 <xsl:when test="contains(string(),'Package Information')">
534 <xsl:apply-templates select="following-sibling::itemizedlist
535 [preceding-sibling::bridgehead[1]=current()]"
536 mode="package"/>
537 </xsl:when>
538 <!-- Additional package information -->
539 <!-- special cases for llvm -->
540 <xsl:when test="contains(string(),'Recommended Download')">
541 <xsl:apply-templates select="following-sibling::itemizedlist
542 [preceding-sibling::bridgehead[1]=current()]"
543 mode="additional"/>
544 </xsl:when>
545 <xsl:when test="contains(string(),'Optional Download')">
546 <xsl:apply-templates select="following-sibling::itemizedlist
547 [preceding-sibling::bridgehead[1]=current()]"
548 mode="additional"/>
549 </xsl:when>
550 <!-- All other additional packages have "Additional" -->
551 <xsl:when test="contains(string(),'Additional')">
552 <xsl:apply-templates select="following-sibling::itemizedlist
553 [preceding-sibling::bridgehead[1]=current()]"
554 mode="additional"/>
555 </xsl:when>
556 <!-- Do not do anything if the dev has created another type of
557 bridgehead. -->
558 <xsl:otherwise/>
559 </xsl:choose>
560 </xsl:template>
561
562 <!-- Call the download code template with appropriate parameters -->
563 <xsl:template match="itemizedlist" mode="package">
564 <xsl:call-template name="download-file">
565 <xsl:with-param name="httpurl">
566 <xsl:value-of select="./listitem[1]/para/ulink/@url"/>
567 </xsl:with-param>
568 <xsl:with-param name="ftpurl">
569 <xsl:value-of select="./listitem/para[contains(string(),'FTP')]/ulink/@url"/>
570 </xsl:with-param>
571 <xsl:with-param name="md5">
572 <xsl:apply-templates select="./listitem/para[contains(string(),'MD5')]"
573 mode="md5"/>
574 </xsl:with-param>
575 <xsl:with-param name="varname" select="'PACKAGE'"/>
576 </xsl:call-template>
577 </xsl:template>
578
579 <xsl:template match="itemizedlist" mode="additional">
580 <!-- The normal layout is "one listitem"<->"one url", but some devs
581 find amusing to have FTP and/or MD5sum listitems, or to
582 enclose the download information inside a simplelist tag... -->
583 <xsl:for-each select="listitem[.//ulink]">
584 <xsl:choose>
585 <!-- hopefully, there was a HTTP line before -->
586 <xsl:when test="contains(string(./para),'FTP')"/>
587 <xsl:when test=".//simplelist">
588 <xsl:apply-templates select=".//simplelist">
589 <xsl:with-param name="varname" select="'PACKAGE1'"/>
590 </xsl:apply-templates>
591 </xsl:when>
592 <xsl:otherwise>
593 <xsl:call-template name="download-file">
594 <xsl:with-param name="httpurl">
595 <xsl:value-of select="./para/ulink/@url"/>
596 </xsl:with-param>
597 <xsl:with-param name="ftpurl">
598 <xsl:value-of
599 select="following-sibling::listitem[1]/
600 para[contains(string(),'FTP')]/ulink/@url"/>
601 </xsl:with-param>
602 <xsl:with-param name="md5">
603 <xsl:apply-templates
604 select="following-sibling::listitem[position()&lt;3]/
605 para[contains(string(),'MD5')]"
606 mode="md5"/>
607 </xsl:with-param>
608 <xsl:with-param name="varname">
609 <xsl:choose>
610 <xsl:when test="contains(./para/ulink/@url,'.patch')">
611 <xsl:text>PATCH</xsl:text>
612 </xsl:when>
613 <xsl:otherwise>
614 <xsl:text>PACKAGE1</xsl:text>
615 </xsl:otherwise>
616 </xsl:choose>
617 </xsl:with-param>
618 </xsl:call-template>
619 </xsl:otherwise>
620 </xsl:choose>
621 </xsl:for-each>
622 </xsl:template>
623
624 <!-- the simplelist case. Hopefully, the layout is one member for
625 url, one for md5 and others for various information, that we do not
626 use -->
627 <xsl:template match="simplelist">
628 <xsl:param name="varname" select="'PACKAGE1'"/>
629 <xsl:call-template name="download-file">
630 <xsl:with-param name="httpurl" select=".//ulink/@url"/>
631 <xsl:with-param name="md5">
632 <xsl:value-of select="substring-after(member[contains(string(),'MD5')],'sum: ')"/>
633 </xsl:with-param>
634 <xsl:with-param name="varname" select="$varname"/>
635 </xsl:call-template>
636 </xsl:template>
637
638<!--====================== Non package code =========================-->
639
640 <xsl:template match="screen" mode="not-pack">
641 <xsl:choose>
642 <xsl:when test="@role='nodump'"/>
643 <xsl:when test="ancestor::sect1[@id='postlfs-config-vimrc']">
644 <xsl:text>
645cat > ~/.vimrc &lt;&lt;EOF
646</xsl:text>
647 <xsl:apply-templates/>
648 <xsl:text>
649EOF
650</xsl:text>
651 </xsl:when>
652 <xsl:otherwise>
653 <xsl:apply-templates select="." mode="config"/>
654 </xsl:otherwise>
655 </xsl:choose>
656 </xsl:template>
657<!--======================== Commands code ==========================-->
658<!-- Code for installation instructions is in gen-install.xsl -->
659
660 <xsl:template match="screen">
661 <xsl:choose>
662<!-- instructions run as root (configuration mainly) -->
663 <xsl:when test="@role = 'root'">
664<!-- templates begin/end-root are in gen-install.xsl -->
665 <xsl:if test="not(preceding-sibling::screen[1][@role='root'])">
666 <xsl:call-template name="begin-root"/>
667 </xsl:if>
668 <xsl:apply-templates mode="root"/>
669 <xsl:if test="not(following-sibling::screen[1][@role='root'])">
670 <xsl:call-template name="end-root"/>
671 </xsl:if>
672 </xsl:when>
673<!-- then all the instructions run as user -->
674 <xsl:otherwise>
675 <xsl:apply-templates select="userinput"/>
676 </xsl:otherwise>
677 </xsl:choose>
678 </xsl:template>
679
680<!-- Templates for bootscripts/units installation -->
681 <xsl:template name="set-bootpkg-dir">
682 <xsl:param name="bootpkg" select="'bootscripts'"/>
683 <xsl:param name="url" select="''"/>
684 <xsl:text>
685BOOTPKG_DIR=blfs-</xsl:text>
686 <xsl:copy-of select="$bootpkg"/>
687 <xsl:text>
688
689BOOTSRC_DIR=${JH_SRC_ARCHIVE}${JH_SRC_SUBDIRS:+/${BOOTPKG_DIR}}
690BOOTBUILD_DIR=${JH_BUILD_ROOT}${JH_BUILD_SUBDIRS:+/${BOOTPKG_DIR}}
691mkdir -p $BOOTSRC_DIR
692mkdir -p $BOOTBUILD_DIR
693
694pushd $BOOTSRC_DIR
695URL=</xsl:text>
696 <xsl:value-of select="$url"/>
697 <xsl:text>
698BOOTPACKG=$(basename $URL)
699if [[ ! -f $BOOTPACKG ]] ; then
700 if [[ -f $JH_SRC_ARCHIVE/$BOOTPACKG ]] ; then
701 cp $JH_SRC_ARCHIVE/$BOOTPACKG $BOOTPACKG
702 else
703 wget -T 30 -t 5 $URL
704 fi
705 rm -f $BOOTBUILD_DIR/unpacked
706fi
707
708cd $BOOTBUILD_DIR
709if [[ -e unpacked ]] ; then
710 BOOTUNPACKDIR=`head -n1 unpacked | sed 's@^./@@;s@/.*@@'`
711 if ! [[ -d $BOOTUNPACKDIR ]]; then
712 tar -xvf $BOOTSRC_DIR/$BOOTPACKG > unpacked
713 BOOTUNPACKDIR=`head -n1 unpacked | sed 's@^./@@;s@/.*@@'`
714 fi
715else
716 tar -xvf $BOOTSRC_DIR/$BOOTPACKG > unpacked
717 BOOTUNPACKDIR=`head -n1 unpacked | sed 's@^./@@;s@/.*@@'`
718fi
719cd $BOOTUNPACKDIR</xsl:text>
720 </xsl:template>
721
722 <xsl:template match="screen" mode="config">
723 <xsl:if test="preceding-sibling::para[1]/xref[@linkend='bootscripts']">
724<!-- if the preceding "screen" tag is role="root", and we are role="root"
725 the end-root has not been called. So do it -->
726 <xsl:if
727 test="preceding-sibling::screen[1][@role='root'] and @role='root'">
728 <xsl:call-template name="end-root"/>
729 </xsl:if>
730 <xsl:call-template name="set-bootpkg-dir">
731 <xsl:with-param name="bootpkg" select="'bootscripts'"/>
732 <xsl:with-param name="url"
733 select="id('bootscripts')//itemizedlist//ulink/@url"/>
734 </xsl:call-template>
735<!-- if the preceding "screen" tag is role="root", and we are role="root"
736 the begin-root will not be called. So do it -->
737 <xsl:if
738 test="preceding-sibling::screen[1][@role='root'] and @role='root'">
739 <xsl:call-template name="begin-root"/>
740 </xsl:if>
741 </xsl:if>
742 <xsl:if test="preceding-sibling::para[1]/xref[@linkend='systemd-units']">
743<!-- if the preceding "screen" tag is role="root", and we are role="root"
744 the end-root has not been called. So do it -->
745 <xsl:if
746 test="preceding-sibling::screen[1][@role='root'] and @role='root'">
747 <xsl:call-template name="end-root"/>
748 </xsl:if>
749 <xsl:call-template name="set-bootpkg-dir">
750 <xsl:with-param name="bootpkg" select="'systemd-units'"/>
751 <xsl:with-param name="url"
752 select="id('systemd-units')//itemizedlist//ulink/@url"/>
753 </xsl:call-template>
754<!-- if the preceding "screen" tag is role="root", and we are role="root"
755 the begin-root will not be called. So do it -->
756 <xsl:if
757 test="preceding-sibling::screen[1][@role='root'] and @role='root'">
758 <xsl:call-template name="begin-root"/>
759 </xsl:if>
760 </xsl:if>
761 <xsl:apply-templates select='.'/>
762 <xsl:if test="preceding-sibling::para[1]/xref[@linkend='bootscripts' or
763 @linkend='systemd-units']">
764<!-- if the next "screen" tag is role="root", and we are role="root"
765 the end-root has not been called. So do it -->
766 <xsl:if
767 test="following-sibling::screen[1][@role='root'] and @role='root'">
768 <xsl:call-template name="end-root"/>
769 </xsl:if>
770 <xsl:text>
771popd</xsl:text>
772<!-- if the next "screen" tag is role="root", and we are role="root"
773 the begin-root will not be called. So do it -->
774 <xsl:if
775 test="following-sibling::screen[1][@role='root'] and @role='root'">
776 <xsl:call-template name="begin-root"/>
777 </xsl:if>
778 </xsl:if>
779 </xsl:template>
780
781 <xsl:template match="command" mode="installation">
782 <xsl:param name="want-stats" select="false"/>
783 <xsl:variable name="ns" select="normalize-space(string())"/>
784 <xsl:variable name="first"
785 select="not(
786 boolean(
787 preceding-sibling::command[contains(text(),'check') or
788 contains(text(),'test')]))"/>
789 <xsl:variable name="last"
790 select="not(
791 boolean(
792 following-sibling::command[contains(text(),'check') or
793 contains(text(),'test')]))"/>
794 <xsl:choose>
795 <xsl:when test="$want-stats">
796 <xsl:if test="$first">
797 <xsl:text>
798
799echo Time after make: ${SECONDS} >> $INFOLOG
800echo Size after make: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG
801echo Time before test: ${SECONDS} >> $INFOLOG
802
803</xsl:text>
804 </xsl:if>
805 </xsl:when>
806 <xsl:otherwise>
807 <xsl:text>
808#</xsl:text>
809 </xsl:otherwise>
810 </xsl:choose>
811 <xsl:choose>
812 <xsl:when test="contains($ns,'make')">
813 <xsl:value-of select="substring-before($ns,'make ')"/>
814 <xsl:text>make </xsl:text>
815 <xsl:if test="not(contains($ns,'-k'))">
816 <xsl:text>-k </xsl:text>
817 </xsl:if>
818 <xsl:value-of select="substring-after($ns,'make ')"/>
819 </xsl:when>
820 <xsl:otherwise>
821 <xsl:copy-of select="$ns"/>
822 </xsl:otherwise>
823 </xsl:choose>
824 <xsl:if test="$want-stats">
825 <xsl:text> &gt;&gt; $TESTLOG 2&gt;&amp;1</xsl:text>
826 </xsl:if>
827 <xsl:text> || true</xsl:text>
828 <xsl:if test="$want-stats">
829 <xsl:text>
830
831echo Time after test: ${SECONDS} >> $INFOLOG
832echo Size after test: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG
833echo Time before install: ${SECONDS} >> $INFOLOG
834</xsl:text>
835 </xsl:if>
836 </xsl:template>
837
838 <xsl:template match="userinput|command">
839 <xsl:text>
840</xsl:text>
841 <xsl:apply-templates/>
842 </xsl:template>
843
844 <xsl:template match="userinput" mode="root">
845 <xsl:text>
846</xsl:text>
847 <xsl:apply-templates mode="root"/>
848 </xsl:template>
849
850 <xsl:template match="text()">
851 <xsl:call-template name="remove-ampersand">
852 <xsl:with-param name="out-string" select="string()"/>
853 </xsl:call-template>
854 </xsl:template>
855
856 <xsl:template match="text()" mode="root">
857 <xsl:call-template name="output-root">
858 <xsl:with-param name="out-string" select="string()"/>
859 </xsl:call-template>
860 </xsl:template>
861
862 <xsl:template name="output-root">
863 <xsl:param name="out-string" select="''"/>
864 <xsl:choose>
865 <xsl:when test="contains($out-string,'$') and $sudo = 'y'">
866 <xsl:call-template name="output-root">
867 <xsl:with-param name="out-string"
868 select="substring-before($out-string,'$')"/>
869 </xsl:call-template>
870 <xsl:text>\$</xsl:text>
871 <xsl:call-template name="output-root">
872 <xsl:with-param name="out-string"
873 select="substring-after($out-string,'$')"/>
874 </xsl:call-template>
875 </xsl:when>
876 <xsl:when test="contains($out-string,'`') and $sudo = 'y'">
877 <xsl:call-template name="output-root">
878 <xsl:with-param name="out-string"
879 select="substring-before($out-string,'`')"/>
880 </xsl:call-template>
881 <xsl:text>\`</xsl:text>
882 <xsl:call-template name="output-root">
883 <xsl:with-param name="out-string"
884 select="substring-after($out-string,'`')"/>
885 </xsl:call-template>
886 </xsl:when>
887 <xsl:when test="contains($out-string,'\') and $sudo = 'y'">
888 <xsl:call-template name="output-root">
889 <xsl:with-param name="out-string"
890 select="substring-before($out-string,'\')"/>
891 </xsl:call-template>
892 <xsl:text>\\</xsl:text>
893 <xsl:call-template name="output-root">
894 <xsl:with-param name="out-string"
895 select="substring-after($out-string,'\')"/>
896 </xsl:call-template>
897 </xsl:when>
898 <xsl:otherwise>
899 <xsl:call-template name="remove-ampersand">
900 <xsl:with-param name="out-string" select="$out-string"/>
901 </xsl:call-template>
902<!-- <xsl:value-of select="$out-string"/> -->
903 </xsl:otherwise>
904 </xsl:choose>
905 </xsl:template>
906
907 <xsl:template name="output-destdir">
908 <xsl:apply-templates
909 select="userinput|following-sibling::screen[@role='root']/userinput"
910 mode="destdir"/>
911 <xsl:text>
912
913echo Time after install: ${SECONDS} >> $INFOLOG
914echo Size after install: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG
915</xsl:text>
916 </xsl:template>
917
918 <xsl:template match="userinput" mode="destdir">
919 <xsl:text>
920</xsl:text>
921 <xsl:choose>
922 <xsl:when test="./literal">
923 <xsl:call-template name="outputpkgdest">
924 <xsl:with-param name="outputstring" select="text()[1]"/>
925 </xsl:call-template>
926 <xsl:apply-templates select="literal"/>
927 <xsl:call-template name="outputpkgdest">
928 <xsl:with-param name="outputstring" select="text()[2]"/>
929 </xsl:call-template>
930 </xsl:when>
931 <xsl:otherwise>
932 <xsl:call-template name="outputpkgdest">
933 <xsl:with-param name="outputstring" select="string()"/>
934 </xsl:call-template>
935 </xsl:otherwise>
936 </xsl:choose>
937 </xsl:template>
938
939 <xsl:template name="outputpkgdest">
940 <xsl:param name="outputstring" select="'foo'"/>
941 <xsl:choose>
942 <xsl:when test="contains($outputstring,'make ')">
943 <xsl:choose>
944 <xsl:when test="not(starts-with($outputstring,'make'))">
945 <xsl:call-template name="outputpkgdest">
946 <xsl:with-param name="outputstring"
947 select="substring-before($outputstring,'make')"/>
948 </xsl:call-template>
949 <xsl:call-template name="outputpkgdest">
950 <xsl:with-param
951 name="outputstring"
952 select="substring-after($outputstring,
953 substring-before($outputstring,'make'))"/>
954 </xsl:call-template>
955 </xsl:when>
956 <xsl:otherwise>
957 <xsl:text>
958make DESTDIR=$PKG_DEST</xsl:text>
959 <xsl:call-template name="outputpkgdest">
960 <xsl:with-param
961 name="outputstring"
962 select="substring-after($outputstring,'make')"/>
963 </xsl:call-template>
964 </xsl:otherwise>
965 </xsl:choose>
966 </xsl:when>
967 <xsl:when test="contains($outputstring,'ninja install')">
968 <xsl:choose>
969 <xsl:when test="not(starts-with($outputstring,'ninja install'))">
970 <xsl:call-template name="outputpkgdest">
971 <xsl:with-param name="outputstring"
972 select="substring-before($outputstring,'ninja install')"/>
973 </xsl:call-template>
974 <xsl:call-template name="outputpkgdest">
975 <xsl:with-param
976 name="outputstring"
977 select="substring-after($outputstring,
978 substring-before($outputstring,'ninja install'))"/>
979 </xsl:call-template>
980 </xsl:when>
981 <xsl:otherwise>
982 <xsl:text>
983DESTDIR=$PKG_DEST ninja</xsl:text>
984 <xsl:call-template name="outputpkgdest">
985 <xsl:with-param
986 name="outputstring"
987 select="substring-after($outputstring,'ninja')"/>
988 </xsl:call-template>
989 </xsl:otherwise>
990 </xsl:choose>
991 </xsl:when>
992 <xsl:otherwise> <!-- no make nor ninja in this string -->
993 <xsl:choose>
994 <xsl:when test="contains($outputstring,'&gt;/') and
995 not(contains(substring-before($outputstring,'&gt;/'),' /'))">
996 <xsl:call-template name="remove-ampersand">
997 <xsl:with-param name="out-string"
998 select="substring-before($outputstring,'&gt;/')"/>
999 </xsl:call-template>
1000<!-- <xsl:value-of select="substring-before($outputstring,'&gt;/')"/>-->
1001 <xsl:text>&gt;$PKG_DEST/</xsl:text>
1002 <xsl:call-template name="outputpkgdest">
1003 <xsl:with-param name="outputstring" select="substring-after($outputstring,'&gt;/')"/>
1004 </xsl:call-template>
1005 </xsl:when>
1006 <xsl:when test="contains($outputstring,' /')">
1007 <xsl:call-template name="remove-ampersand">
1008 <xsl:with-param name="out-string"
1009 select="substring-before($outputstring,' /')"/>
1010 </xsl:call-template>
1011<!-- <xsl:value-of select="substring-before($outputstring,' /')"/>-->
1012 <xsl:text> $PKG_DEST/</xsl:text>
1013 <xsl:call-template name="outputpkgdest">
1014 <xsl:with-param name="outputstring" select="substring-after($outputstring,' /')"/>
1015 </xsl:call-template>
1016 </xsl:when>
1017 <xsl:otherwise>
1018 <xsl:call-template name="remove-ampersand">
1019 <xsl:with-param name="out-string" select="$outputstring"/>
1020 </xsl:call-template>
1021<!-- <xsl:value-of select="$outputstring"/>-->
1022 </xsl:otherwise>
1023 </xsl:choose>
1024 </xsl:otherwise>
1025 </xsl:choose>
1026 </xsl:template>
1027
1028 <xsl:template name="remove-ampersand">
1029 <xsl:param name="out-string" select="''"/>
1030 <xsl:choose>
1031 <xsl:when test="contains($out-string,'&amp;&amp;&#xA;')">
1032 <xsl:variable name="instruction-before">
1033 <xsl:call-template name="last-line">
1034 <xsl:with-param
1035 name="instructions"
1036 select="substring-before($out-string,'&amp;&amp;&#xA;')"/>
1037 </xsl:call-template>
1038 </xsl:variable>
1039 <xsl:call-template name="remove-end-space">
1040 <xsl:with-param
1041 name="instructions"
1042 select="substring-before($out-string,'&amp;&amp;&#xA;')"/>
1043 </xsl:call-template>
1044 <xsl:if test="contains($instruction-before,' ]') or
1045 contains($instruction-before,'test ') or
1046 contains($instruction-before,'pgrep -l')">
1047 <xsl:text> &amp;&amp;</xsl:text>
1048 </xsl:if>
1049 <xsl:text>
1050</xsl:text>
1051 <xsl:call-template name="remove-ampersand">
1052 <xsl:with-param name="out-string"
1053 select="substring-after($out-string,
1054 '&amp;&amp;&#xA;')"/>
1055 </xsl:call-template>
1056 </xsl:when>
1057 <xsl:otherwise>
1058 <xsl:copy-of select="$out-string"/>
1059 </xsl:otherwise>
1060 </xsl:choose>
1061 </xsl:template>
1062
1063 <xsl:template name="last-line">
1064 <xsl:param name="instructions" select="''"/>
1065 <xsl:choose>
1066 <xsl:when test="contains($instructions,'&#xA;')">
1067 <xsl:call-template name="last-line">
1068 <xsl:with-param
1069 name="instructions"
1070 select="substring-after($instructions,'&#xA;')"/>
1071 </xsl:call-template>
1072 </xsl:when>
1073 <xsl:otherwise>
1074 <xsl:copy-of select="normalize-space($instructions)"/>
1075 </xsl:otherwise>
1076 </xsl:choose>
1077 </xsl:template>
1078
1079 <xsl:template name="remove-end-space">
1080 <xsl:param name="instructions" select="''"/>
1081 <xsl:choose>
1082 <xsl:when
1083 test="substring($instructions,string-length($instructions))=' '">
1084 <xsl:call-template name="remove-end-space">
1085 <xsl:with-param
1086 name="instructions"
1087 select="substring($instructions,
1088 1,
1089 string-length($instructions)-1)"/>
1090 </xsl:call-template>
1091 </xsl:when>
1092 <xsl:otherwise>
1093 <xsl:copy-of select="$instructions"/>
1094 </xsl:otherwise>
1095 </xsl:choose>
1096 </xsl:template>
1097
1098</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.