[557fe91] | 1 | <?xml version="1.0"?>
|
---|
[db181c47] | 2 | <!DOCTYPE xsl:stylesheet [
|
---|
| 3 | <!ENTITY % general-entities SYSTEM "FAKEDIR/general.ent">
|
---|
| 4 | %general-entities;
|
---|
| 5 | ]>
|
---|
| 6 |
|
---|
[557fe91] | 7 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 8 | xmlns:exsl="http://exslt.org/common"
|
---|
| 9 | extension-element-prefixes="exsl"
|
---|
| 10 | version="1.0">
|
---|
| 11 |
|
---|
[63b2859] | 12 | <!-- XSLT stylesheet to create shell scripts from LFS books. -->
|
---|
[557fe91] | 13 |
|
---|
[01e51a1] | 14 | <!-- Run optional test suites? -->
|
---|
[db9cec6] | 15 | <xsl:param name="testsuite" select="0"/>
|
---|
| 16 |
|
---|
[01e51a1] | 17 | <!-- Run toolchain test suites? -->
|
---|
| 18 | <xsl:param name="toolchaintest" select="1"/>
|
---|
| 19 |
|
---|
[db181c47] | 20 | <!-- Install vim-lang package? -->
|
---|
| 21 | <xsl:param name="vim-lang" select="1"/>
|
---|
| 22 |
|
---|
[557fe91] | 23 | <xsl:template match="/">
|
---|
| 24 | <xsl:apply-templates select="//sect1"/>
|
---|
| 25 | </xsl:template>
|
---|
| 26 |
|
---|
| 27 | <xsl:template match="sect1">
|
---|
[c4cf6de] | 28 | <xsl:if test="count(descendant::screen/userinput) > 0 and
|
---|
| 29 | count(descendant::screen/userinput) > count(descendant::screen[@role='nodump'])">
|
---|
| 30 | <!-- The dirs names -->
|
---|
| 31 | <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
---|
| 32 | <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
---|
| 33 | <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
---|
| 34 | <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
---|
| 35 | <!-- The file names -->
|
---|
| 36 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
| 37 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
| 38 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
| 39 | <!-- The build order -->
|
---|
| 40 | <xsl:variable name="position" select="position()"/>
|
---|
| 41 | <xsl:variable name="order">
|
---|
| 42 | <xsl:choose>
|
---|
| 43 | <xsl:when test="string-length($position) = 1">
|
---|
| 44 | <xsl:text>00</xsl:text>
|
---|
| 45 | <xsl:value-of select="$position"/>
|
---|
| 46 | </xsl:when>
|
---|
| 47 | <xsl:when test="string-length($position) = 2">
|
---|
| 48 | <xsl:text>0</xsl:text>
|
---|
| 49 | <xsl:value-of select="$position"/>
|
---|
| 50 | </xsl:when>
|
---|
| 51 | <xsl:otherwise>
|
---|
| 52 | <xsl:value-of select="$position"/>
|
---|
| 53 | </xsl:otherwise>
|
---|
| 54 | </xsl:choose>
|
---|
| 55 | </xsl:variable>
|
---|
| 56 | <!-- Creating dirs and files -->
|
---|
| 57 | <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
---|
[76fad58] | 58 | <xsl:choose>
|
---|
| 59 | <xsl:when test="@id='ch-system-changingowner' or
|
---|
| 60 | @id='ch-system-creatingdirs' or
|
---|
| 61 | @id='ch-system-createfiles'">
|
---|
[fd691b4] | 62 | <xsl:text>#!/tools/bin/bash
set -e

</xsl:text>
|
---|
| 63 | </xsl:when>
|
---|
| 64 | <xsl:when test="@id='ch-tools-stripping' or
|
---|
| 65 | @id='ch-system-strippingagain'">
|
---|
| 66 | <xsl:text>#!/bin/sh
</xsl:text>
|
---|
[76fad58] | 67 | </xsl:when>
|
---|
| 68 | <xsl:otherwise>
|
---|
[fd691b4] | 69 | <xsl:text>#!/bin/sh
set -e

</xsl:text>
|
---|
[76fad58] | 70 | </xsl:otherwise>
|
---|
| 71 | </xsl:choose>
|
---|
[56dd1e2] | 72 | <xsl:if test="sect2[@role='installation'] or
|
---|
| 73 | @id='ch-tools-adjusting' or
|
---|
| 74 | @id='ch-system-readjusting'">
|
---|
[fd691b4] | 75 | <xsl:text>cd $PKGDIR
</xsl:text>
|
---|
[db181c47] | 76 | <xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
|
---|
| 77 | <xsl:text>tar -xvf ../vim-&vim-version;-lang.*
</xsl:text>
|
---|
| 78 | </xsl:if>
|
---|
[44f88e3] | 79 | </xsl:if>
|
---|
[db9cec6] | 80 | <xsl:apply-templates select=".//para/userinput | .//screen"/>
|
---|
[816f3f43] | 81 | <xsl:text>exit</xsl:text>
|
---|
[c4cf6de] | 82 | </exsl:document>
|
---|
| 83 | </xsl:if>
|
---|
[557fe91] | 84 | </xsl:template>
|
---|
| 85 |
|
---|
| 86 | <xsl:template match="screen">
|
---|
| 87 | <xsl:if test="child::* = userinput">
|
---|
| 88 | <xsl:choose>
|
---|
| 89 | <xsl:when test="@role = 'nodump'"/>
|
---|
| 90 | <xsl:otherwise>
|
---|
[db9cec6] | 91 | <xsl:apply-templates select="userinput" mode="screen"/>
|
---|
[557fe91] | 92 | </xsl:otherwise>
|
---|
| 93 | </xsl:choose>
|
---|
| 94 | </xsl:if>
|
---|
| 95 | </xsl:template>
|
---|
| 96 |
|
---|
[db9cec6] | 97 | <xsl:template match="para/userinput">
|
---|
[56dd1e2] | 98 | <xsl:if test="$testsuite != '0' and
|
---|
| 99 | (contains(string(),'test') or
|
---|
| 100 | contains(string(),'check'))">
|
---|
[3eb60fa] | 101 | <xsl:value-of select="substring-before(string(),'make')"/>
|
---|
| 102 | <xsl:text>make -k</xsl:text>
|
---|
| 103 | <xsl:value-of select="substring-after(string(),'make')"/>
|
---|
[fd691b4] | 104 | <xsl:text> || true
</xsl:text>
|
---|
[db9cec6] | 105 | </xsl:if>
|
---|
| 106 | </xsl:template>
|
---|
| 107 |
|
---|
| 108 | <xsl:template match="userinput" mode="screen">
|
---|
[3eb60fa] | 109 | <xsl:choose>
|
---|
[fd691b4] | 110 | <!-- Estandarized package formats -->
|
---|
[92568bf] | 111 | <xsl:when test="contains(string(),'tar.gz')">
|
---|
| 112 | <xsl:value-of select="substring-before(string(),'tar.gz')"/>
|
---|
[be9970b] | 113 | <xsl:text>tar.*</xsl:text>
|
---|
[92568bf] | 114 | <xsl:value-of select="substring-after(string(),'tar.gz')"/>
|
---|
[fd691b4] | 115 | <xsl:text>
</xsl:text>
|
---|
| 116 | </xsl:when>
|
---|
| 117 | <!-- Avoiding a race condition in a patch -->
|
---|
| 118 | <xsl:when test="contains(string(),'debian_fixes')">
|
---|
| 119 | <xsl:value-of select="substring-before(string(),'patch')"/>
|
---|
| 120 | <xsl:text>patch -Z</xsl:text>
|
---|
| 121 | <xsl:value-of select="substring-after(string(),'patch')"/>
|
---|
| 122 | <xsl:text>
</xsl:text>
|
---|
| 123 | </xsl:when>
|
---|
| 124 | <!-- Copying the kernel config file -->
|
---|
| 125 | <xsl:when test="string() = 'make mrproper'">
|
---|
| 126 | <xsl:text>make mrproper
</xsl:text>
|
---|
| 127 | <xsl:text>cp -v ../kernel-config .config
</xsl:text>
|
---|
[92568bf] | 128 | </xsl:when>
|
---|
[4e9a3b3] | 129 | <!-- The Coreutils and Module-Init-Tools test suites are optional -->
|
---|
[79f7cf9] | 130 | <xsl:when test="$testsuite = '0' and
|
---|
[4e9a3b3] | 131 | (ancestor::sect1[@id='ch-system-coreutils'] or
|
---|
| 132 | ancestor::sect1[@id='ch-system-module-init-tools']) and
|
---|
[79f7cf9] | 133 | (contains(string(),'check') or
|
---|
| 134 | contains(string(),'dummy'))"/>
|
---|
[fd691b4] | 135 | <!-- Fixing toolchain test suites run -->
|
---|
[01e51a1] | 136 | <xsl:when test="string() = 'make check' or
|
---|
| 137 | string() = 'make -k check'">
|
---|
| 138 | <xsl:choose>
|
---|
| 139 | <xsl:when test="$toolchaintest = '0'"/>
|
---|
| 140 | <xsl:otherwise>
|
---|
[fd691b4] | 141 | <xsl:text>make -k check || true</xsl:text>
|
---|
| 142 | <xsl:text>
</xsl:text>
|
---|
| 143 | </xsl:otherwise>
|
---|
| 144 | </xsl:choose>
|
---|
| 145 | </xsl:when>
|
---|
| 146 | <xsl:when test="contains(string(),'glibc-check-log')">
|
---|
| 147 | <xsl:choose>
|
---|
| 148 | <xsl:when test="$toolchaintest = '0'"/>
|
---|
| 149 | <xsl:otherwise>
|
---|
| 150 | <xsl:value-of select="substring-before(string(),'
')"/>
|
---|
| 151 | <xsl:text> || true
</xsl:text>
|
---|
| 152 | <xsl:value-of select="substring-after(string(),'
')"/>
|
---|
[01e51a1] | 153 | <xsl:text>
</xsl:text>
|
---|
| 154 | </xsl:otherwise>
|
---|
| 155 | </xsl:choose>
|
---|
| 156 | </xsl:when>
|
---|
[fd691b4] | 157 | <xsl:when test="contains(string(),'test_summary') or
|
---|
[92568bf] | 158 | contains(string(),'expect -c')">
|
---|
[01e51a1] | 159 | <xsl:choose>
|
---|
| 160 | <xsl:when test="$toolchaintest = '0'"/>
|
---|
| 161 | <xsl:otherwise>
|
---|
| 162 | <xsl:apply-templates/>
|
---|
[fd691b4] | 163 | <xsl:text>
</xsl:text>
|
---|
[01e51a1] | 164 | </xsl:otherwise>
|
---|
| 165 | </xsl:choose>
|
---|
[3eb60fa] | 166 | </xsl:when>
|
---|
[fd691b4] | 167 | <!-- Don't stop on strip run -->
|
---|
| 168 | <xsl:when test="contains(string(),'strip ')">
|
---|
[3eb60fa] | 169 | <xsl:apply-templates/>
|
---|
[fd691b4] | 170 | <xsl:text> || true
</xsl:text>
|
---|
[1f025ca] | 171 | </xsl:when>
|
---|
[fd691b4] | 172 | <!-- The rest of commands -->
|
---|
[1f025ca] | 173 | <xsl:otherwise>
|
---|
| 174 | <xsl:apply-templates/>
|
---|
[fd691b4] | 175 | <xsl:text>
</xsl:text>
|
---|
[1f025ca] | 176 | </xsl:otherwise>
|
---|
| 177 | </xsl:choose>
|
---|
| 178 | </xsl:template>
|
---|
| 179 |
|
---|
[557fe91] | 180 | <xsl:template match="replaceable">
|
---|
[a41ce58] | 181 | <xsl:choose>
|
---|
[2a54650] | 182 | <xsl:when test="ancestor::sect1[@id='ch-system-glibc']">
|
---|
| 183 | <xsl:text>$TIMEZONE</xsl:text>
|
---|
| 184 | </xsl:when>
|
---|
[a41ce58] | 185 | <xsl:when test="ancestor::sect1[@id='ch-system-groff']">
|
---|
| 186 | <xsl:text>$PAGE</xsl:text>
|
---|
| 187 | </xsl:when>
|
---|
| 188 | <xsl:otherwise>
|
---|
| 189 | <xsl:text>**EDITME</xsl:text>
|
---|
| 190 | <xsl:apply-templates/>
|
---|
| 191 | <xsl:text>EDITME**</xsl:text>
|
---|
| 192 | </xsl:otherwise>
|
---|
| 193 | </xsl:choose>
|
---|
[557fe91] | 194 | </xsl:template>
|
---|
| 195 |
|
---|
| 196 | </xsl:stylesheet>
|
---|