[c048987] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
[3930460] | 2 | <!DOCTYPE stylesheet [
|
---|
[0974c32] | 3 | <!ENTITY detect-config
|
---|
| 4 | "contains(string($current-instr),'useradd') or
|
---|
| 5 | contains(string($current-instr),'groupadd') or
|
---|
| 6 | contains(string($current-instr),'usermod') or
|
---|
| 7 | contains(string($current-instr),'icon-cache') or
|
---|
| 8 | contains(string($current-instr),'desktop-database') or
|
---|
| 9 | contains(string($current-instr),'compile-schemas') or
|
---|
| 10 | contains(string($current-instr),'query-loaders') or
|
---|
| 11 | contains(string($current-instr),'pam.d') or
|
---|
| 12 | contains(string($current-instr),'/opt/rustc') or
|
---|
| 13 | contains(string($current-instr),'libQt5WebEngine') or
|
---|
[426e40b] | 14 | contains(string($current-instr),'desktop-file-edit') or
|
---|
[22abf37] | 15 | contains(string($current-instr),'.old') or
|
---|
[d5413a9] | 16 | contains(string($current-instr),'tracker-miner') or
|
---|
[59a1e1a] | 17 | contains(string($current-instr),'gtweak') or
|
---|
[82ddba9] | 18 | contains(string($current-instr),'query-immodules') or
|
---|
| 19 | contains(string($current-instr),'gnome-control-center')">
|
---|
[3930460] | 20 | ]>
|
---|
[c048987] | 21 |
|
---|
| 22 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
| 23 | version="1.0">
|
---|
| 24 |
|
---|
[7933ed7] | 25 | <xsl:template name="process-install">
|
---|
| 26 | <xsl:param name="instruction-tree"/>
|
---|
| 27 | <xsl:param name="want-stats"/>
|
---|
| 28 | <xsl:param name="root-seen"/>
|
---|
| 29 | <xsl:param name="install-seen"/>
|
---|
| 30 | <xsl:param name="test-seen"/>
|
---|
| 31 | <xsl:param name="doc-seen"/>
|
---|
[c048987] | 32 |
|
---|
[8fc6a47] | 33 | <!-- Isolate the current instruction -->
|
---|
| 34 | <xsl:variable name="current-instr" select="$instruction-tree[1]"/>
|
---|
[c048987] | 35 |
|
---|
| 36 | <xsl:choose>
|
---|
[0a0b609] | 37 | <!--============================================================-->
|
---|
[8fc6a47] | 38 | <!-- First, if we have an empty tree, close everything and exit -->
|
---|
| 39 | <xsl:when test="not($current-instr)">
|
---|
| 40 | <xsl:if test="$install-seen">
|
---|
[c048987] | 41 | <xsl:call-template name="end-install"/>
|
---|
[8fc6a47] | 42 | </xsl:if>
|
---|
| 43 | <xsl:if test="$root-seen">
|
---|
[c048987] | 44 | <xsl:call-template name="end-root"/>
|
---|
| 45 | </xsl:if>
|
---|
[8fc6a47] | 46 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 47 | <xsl:call-template name="end-doc">
|
---|
| 48 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 49 | </xsl:call-template>
|
---|
| 50 | </xsl:if>
|
---|
| 51 | <xsl:if test="$test-seen">
|
---|
| 52 | <xsl:call-template name="end-test">
|
---|
| 53 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 54 | </xsl:call-template>
|
---|
| 55 | </xsl:if>
|
---|
[0a0b609] | 56 | </xsl:when><!-- end empty tree -->
|
---|
| 57 | <!--============================================================-->
|
---|
[8fc6a47] | 58 | <xsl:when test="$current-instr[@role='root' and @remap='test']">
|
---|
| 59 | <xsl:if test="$install-seen">
|
---|
| 60 | <xsl:call-template name="end-install"/>
|
---|
| 61 | </xsl:if>
|
---|
| 62 | <xsl:if test="$root-seen">
|
---|
[c048987] | 63 | <xsl:call-template name="end-root"/>
|
---|
| 64 | </xsl:if>
|
---|
[8fc6a47] | 65 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 66 | <xsl:call-template name="end-doc">
|
---|
| 67 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 68 | </xsl:call-template>
|
---|
| 69 | </xsl:if>
|
---|
| 70 | <xsl:if test="not($test-seen)">
|
---|
| 71 | <xsl:call-template name="begin-test">
|
---|
| 72 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 73 | </xsl:call-template>
|
---|
| 74 | </xsl:if>
|
---|
| 75 | <xsl:call-template name="begin-root"/>
|
---|
[0a0b609] | 76 | <!-- We first apply mode="root" templates, and save the result in a variable -->
|
---|
| 77 | <xsl:variable name="processed-instr">
|
---|
| 78 | <xsl:apply-templates select="$current-instr" mode="root"/>
|
---|
| 79 | </xsl:variable>
|
---|
| 80 | <!-- We then process as a test instruction -->
|
---|
| 81 | <xsl:call-template name="process-test">
|
---|
| 82 | <xsl:with-param name="test-instr" select="$processed-instr"/>
|
---|
| 83 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 84 | </xsl:call-template>
|
---|
[8fc6a47] | 85 | <xsl:call-template name="process-install">
|
---|
| 86 | <xsl:with-param
|
---|
| 87 | name="instruction-tree"
|
---|
| 88 | select="$instruction-tree[position()>1]"/>
|
---|
| 89 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 90 | <xsl:with-param name="root-seen" select="boolean(1)"/>
|
---|
| 91 | <xsl:with-param name="install-seen" select="boolean(0)"/>
|
---|
| 92 | <xsl:with-param name="test-seen" select="boolean(1)"/>
|
---|
| 93 | <xsl:with-param name="doc-seen" select="boolean(0)"/>
|
---|
| 94 | </xsl:call-template>
|
---|
[0a0b609] | 95 | </xsl:when><!-- end role="root" and remap="test" -->
|
---|
| 96 | <!--============================================================-->
|
---|
[8fc6a47] | 97 | <xsl:when test="$current-instr[@role='root' and @remap='doc']">
|
---|
| 98 | <xsl:if test="$test-seen">
|
---|
| 99 | <xsl:call-template name="end-test">
|
---|
| 100 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 101 | </xsl:call-template>
|
---|
| 102 | </xsl:if>
|
---|
| 103 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 104 | <xsl:call-template name="end-doc">
|
---|
| 105 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 106 | </xsl:call-template>
|
---|
| 107 | </xsl:if>
|
---|
| 108 | <xsl:if test="not($root-seen)">
|
---|
[c048987] | 109 | <xsl:call-template name="begin-root"/>
|
---|
| 110 | </xsl:if>
|
---|
[8fc6a47] | 111 | <xsl:if test="not($install-seen)">
|
---|
| 112 | <xsl:call-template name="begin-install"/>
|
---|
| 113 | </xsl:if>
|
---|
[0a0b609] | 114 | <!-- We first apply mode="install" templates, and save the result in a
|
---|
| 115 | variable -->
|
---|
| 116 | <xsl:variable name="processed-instr">
|
---|
| 117 | <xsl:apply-templates select="$current-instr" mode="install"/>
|
---|
| 118 | </xsl:variable>
|
---|
| 119 | <!-- Then comment it out -->
|
---|
| 120 | <xsl:call-template name="output-comment-out">
|
---|
| 121 | <xsl:with-param name="out-string" select="$processed-instr"/>
|
---|
| 122 | </xsl:call-template>
|
---|
[8fc6a47] | 123 | <!-- The above template ends with a commented line, so that if end-install
|
---|
| 124 | adds a closing single quote, it will not be seen. Add a CR to prevent
|
---|
| 125 | that -->
|
---|
| 126 | <xsl:text>
|
---|
| 127 | </xsl:text>
|
---|
| 128 | <xsl:call-template name="process-install">
|
---|
| 129 | <xsl:with-param
|
---|
| 130 | name="instruction-tree"
|
---|
| 131 | select="$instruction-tree[position()>1]"/>
|
---|
| 132 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 133 | <xsl:with-param name="root-seen" select="boolean(1)"/>
|
---|
| 134 | <xsl:with-param name="install-seen" select="boolean(1)"/>
|
---|
| 135 | <xsl:with-param name="test-seen" select="boolean(0)"/>
|
---|
| 136 | <xsl:with-param name="doc-seen" select="boolean(1)"/>
|
---|
| 137 | </xsl:call-template>
|
---|
[0a0b609] | 138 | </xsl:when><!-- end role="root" and remap="doc" -->
|
---|
| 139 | <!--============================================================-->
|
---|
[8fc6a47] | 140 | <xsl:when test="$current-instr[@role='root']">
|
---|
[0a0b609] | 141 | <!-- We have two cases, depending on the content: either a config instruction,
|
---|
[3930460] | 142 | that we do not record with porg (first case below), or a true install
|
---|
[0a0b609] | 143 | instruction (otherwise below) -->
|
---|
[8fc6a47] | 144 | <xsl:choose>
|
---|
[0a0b609] | 145 | <!--____________________________________________________________ -->
|
---|
[3930460] | 146 | <xsl:when test="&detect-config;">
|
---|
[8fc6a47] | 147 | <xsl:if test="$install-seen">
|
---|
| 148 | <xsl:call-template name="end-install"/>
|
---|
| 149 | </xsl:if>
|
---|
| 150 | <xsl:if test="$test-seen">
|
---|
| 151 | <xsl:call-template name="end-test">
|
---|
| 152 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 153 | </xsl:call-template>
|
---|
| 154 | </xsl:if>
|
---|
| 155 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 156 | <xsl:call-template name="end-doc">
|
---|
| 157 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 158 | </xsl:call-template>
|
---|
| 159 | </xsl:if>
|
---|
| 160 | <xsl:if test="not($root-seen)">
|
---|
| 161 | <xsl:call-template name="begin-root"/>
|
---|
| 162 | </xsl:if>
|
---|
| 163 | <xsl:apply-templates select="$current-instr" mode="root"/>
|
---|
| 164 | <xsl:call-template name="process-install">
|
---|
| 165 | <xsl:with-param
|
---|
| 166 | name="instruction-tree"
|
---|
| 167 | select="$instruction-tree[position()>1]"/>
|
---|
| 168 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 169 | <xsl:with-param name="root-seen" select="boolean(1)"/>
|
---|
| 170 | <xsl:with-param name="install-seen" select="boolean(0)"/>
|
---|
| 171 | <xsl:with-param name="test-seen" select="boolean(0)"/>
|
---|
| 172 | <xsl:with-param name="doc-seen" select="boolean(0)"/>
|
---|
| 173 | </xsl:call-template>
|
---|
| 174 | </xsl:when><!-- end config as root -->
|
---|
[0a0b609] | 175 | <!--____________________________________________________________ -->
|
---|
[8fc6a47] | 176 | <xsl:otherwise><!-- we have a true install instruction -->
|
---|
| 177 | <xsl:if test="$test-seen">
|
---|
| 178 | <xsl:call-template name="end-test">
|
---|
| 179 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 180 | </xsl:call-template>
|
---|
| 181 | </xsl:if>
|
---|
| 182 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 183 | <xsl:call-template name="end-doc">
|
---|
| 184 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 185 | </xsl:call-template>
|
---|
| 186 | </xsl:if>
|
---|
| 187 | <xsl:if test="$want-stats and not($install-seen)">
|
---|
| 188 | <xsl:if test="$root-seen">
|
---|
| 189 | <xsl:call-template name="end-root"/>
|
---|
| 190 | </xsl:if>
|
---|
| 191 | <xsl:text>
|
---|
| 192 | echo Time before install: ${SECONDS} >> $INFOLOG</xsl:text>
|
---|
| 193 | <xsl:apply-templates
|
---|
| 194 | select="$instruction-tree[@role='root']/userinput"
|
---|
| 195 | mode="destdir"/>
|
---|
| 196 | <xsl:text>
|
---|
| 197 |
|
---|
| 198 | echo Time after install: ${SECONDS} >> $INFOLOG
|
---|
[59c4761] | 199 | echo Size after install: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG
|
---|
[8fc6a47] | 200 | </xsl:text>
|
---|
| 201 | <xsl:if test="$root-seen">
|
---|
| 202 | <xsl:call-template name="begin-root"/>
|
---|
| 203 | </xsl:if>
|
---|
| 204 | </xsl:if>
|
---|
| 205 | <xsl:if test="not($root-seen)">
|
---|
| 206 | <xsl:call-template name="begin-root"/>
|
---|
| 207 | </xsl:if>
|
---|
| 208 | <xsl:if test="not($install-seen)">
|
---|
| 209 | <xsl:call-template name="begin-install"/>
|
---|
| 210 | </xsl:if>
|
---|
| 211 | <xsl:apply-templates select="$current-instr" mode="install"/>
|
---|
| 212 | <xsl:call-template name="process-install">
|
---|
| 213 | <xsl:with-param
|
---|
| 214 | name="instruction-tree"
|
---|
| 215 | select="$instruction-tree[position()>1]"/>
|
---|
| 216 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 217 | <xsl:with-param name="root-seen" select="boolean(1)"/>
|
---|
| 218 | <xsl:with-param name="install-seen" select="boolean(1)"/>
|
---|
| 219 | <xsl:with-param name="test-seen" select="boolean(0)"/>
|
---|
| 220 | <xsl:with-param name="doc-seen" select="boolean(0)"/>
|
---|
| 221 | </xsl:call-template>
|
---|
| 222 | </xsl:otherwise><!-- end true install instruction -->
|
---|
[0a0b609] | 223 | <!--____________________________________________________________ -->
|
---|
[8fc6a47] | 224 | </xsl:choose>
|
---|
| 225 | </xsl:when><!-- role="root" and no remap -->
|
---|
[0a0b609] | 226 | <!--============================================================-->
|
---|
[8fc6a47] | 227 | <xsl:when test="$current-instr[@remap='test'] or
|
---|
| 228 | $current-instr/self::command">
|
---|
| 229 | <xsl:if test="$install-seen">
|
---|
[c048987] | 230 | <xsl:call-template name="end-install"/>
|
---|
| 231 | </xsl:if>
|
---|
[8fc6a47] | 232 | <xsl:if test="$root-seen">
|
---|
[c048987] | 233 | <xsl:call-template name="end-root"/>
|
---|
| 234 | </xsl:if>
|
---|
[8fc6a47] | 235 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 236 | <xsl:call-template name="end-doc">
|
---|
| 237 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 238 | </xsl:call-template>
|
---|
| 239 | </xsl:if>
|
---|
| 240 | <xsl:if test="not($test-seen)">
|
---|
| 241 | <xsl:if test="not($doc-seen)">
|
---|
| 242 | <xsl:call-template name="end-make">
|
---|
| 243 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 244 | </xsl:call-template>
|
---|
[c048987] | 245 | </xsl:if>
|
---|
[8fc6a47] | 246 | <xsl:call-template name="begin-test">
|
---|
| 247 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 248 | </xsl:call-template>
|
---|
[c048987] | 249 | </xsl:if>
|
---|
[0a0b609] | 250 | <!-- We first apply normal templates, and save the result in a variable -->
|
---|
| 251 | <xsl:variable name="processed-instr">
|
---|
| 252 | <xsl:apply-templates select="$current-instr"/>
|
---|
| 253 | </xsl:variable>
|
---|
| 254 | <!-- We then process as a test instruction -->
|
---|
| 255 | <xsl:call-template name="process-test">
|
---|
| 256 | <xsl:with-param name="test-instr" select="$processed-instr"/>
|
---|
| 257 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 258 | </xsl:call-template>
|
---|
[8fc6a47] | 259 | <xsl:call-template name="process-install">
|
---|
| 260 | <xsl:with-param
|
---|
| 261 | name="instruction-tree"
|
---|
| 262 | select="$instruction-tree[position()>1]"/>
|
---|
| 263 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 264 | <xsl:with-param name="root-seen" select="boolean(0)"/>
|
---|
| 265 | <xsl:with-param name="install-seen" select="boolean(0)"/>
|
---|
| 266 | <xsl:with-param name="test-seen" select="boolean(1)"/>
|
---|
| 267 | <xsl:with-param name="doc-seen" select="boolean(0)"/>
|
---|
| 268 | </xsl:call-template>
|
---|
[0a0b609] | 269 | </xsl:when><!-- end no role, remap=test -->
|
---|
| 270 | <!--============================================================-->
|
---|
[8fc6a47] | 271 | <xsl:when test="$current-instr[@remap='doc']">
|
---|
| 272 | <xsl:if test="$install-seen">
|
---|
| 273 | <xsl:call-template name="end-install"/>
|
---|
| 274 | </xsl:if>
|
---|
| 275 | <xsl:if test="$root-seen">
|
---|
| 276 | <xsl:call-template name="end-root"/>
|
---|
| 277 | </xsl:if>
|
---|
| 278 | <xsl:if test="$test-seen">
|
---|
| 279 | <xsl:call-template name="end-test">
|
---|
| 280 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 281 | </xsl:call-template>
|
---|
| 282 | </xsl:if>
|
---|
| 283 | <xsl:if test="not($doc-seen) or $root-seen">
|
---|
| 284 | <xsl:if test="not($test-seen) and not($root-seen)">
|
---|
| 285 | <xsl:call-template name="end-make">
|
---|
| 286 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 287 | </xsl:call-template>
|
---|
[c048987] | 288 | </xsl:if>
|
---|
[8fc6a47] | 289 | <xsl:call-template name="begin-doc">
|
---|
| 290 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 291 | </xsl:call-template>
|
---|
[c048987] | 292 | </xsl:if>
|
---|
[0a0b609] | 293 | <!-- We first apply normal templates, and save the result in a variable -->
|
---|
| 294 | <xsl:variable name="processed-instr">
|
---|
| 295 | <xsl:apply-templates select="$current-instr"/>
|
---|
| 296 | </xsl:variable>
|
---|
| 297 | <!-- We then process as a doc instruction -->
|
---|
| 298 | <xsl:call-template name="process-doc">
|
---|
| 299 | <xsl:with-param name="doc-instr" select="$processed-instr"/>
|
---|
| 300 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 301 | </xsl:call-template>
|
---|
[8fc6a47] | 302 | <xsl:call-template name="process-install">
|
---|
| 303 | <xsl:with-param
|
---|
| 304 | name="instruction-tree"
|
---|
| 305 | select="$instruction-tree[position()>1]"/>
|
---|
| 306 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 307 | <xsl:with-param name="root-seen" select="boolean(0)"/>
|
---|
| 308 | <xsl:with-param name="install-seen" select="boolean(0)"/>
|
---|
| 309 | <xsl:with-param name="test-seen" select="boolean(0)"/>
|
---|
| 310 | <xsl:with-param name="doc-seen" select="boolean(1)"/>
|
---|
| 311 | </xsl:call-template>
|
---|
| 312 | </xsl:when><!-- no role, remap="doc" -->
|
---|
[0a0b609] | 313 | <!--============================================================-->
|
---|
[8fc6a47] | 314 | <xsl:otherwise><!-- no role no remap -->
|
---|
| 315 | <xsl:if test="$install-seen">
|
---|
[c048987] | 316 | <xsl:call-template name="end-install"/>
|
---|
[8fc6a47] | 317 | </xsl:if>
|
---|
| 318 | <xsl:if test="$root-seen">
|
---|
[c048987] | 319 | <xsl:call-template name="end-root"/>
|
---|
| 320 | </xsl:if>
|
---|
[8fc6a47] | 321 | <xsl:if test="$doc-seen and not($root-seen)">
|
---|
| 322 | <xsl:call-template name="end-doc">
|
---|
| 323 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 324 | </xsl:call-template>
|
---|
| 325 | </xsl:if>
|
---|
| 326 | <xsl:if test="$test-seen">
|
---|
| 327 | <xsl:call-template name="end-test">
|
---|
| 328 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 329 | </xsl:call-template>
|
---|
| 330 | </xsl:if>
|
---|
| 331 | <xsl:apply-templates select="$current-instr"/>
|
---|
| 332 | <xsl:call-template name="process-install">
|
---|
| 333 | <xsl:with-param
|
---|
| 334 | name="instruction-tree"
|
---|
| 335 | select="$instruction-tree[position()>1]"/>
|
---|
| 336 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 337 | <xsl:with-param name="root-seen" select="boolean(0)"/>
|
---|
| 338 | <xsl:with-param name="install-seen" select="boolean(0)"/>
|
---|
| 339 | <xsl:with-param name="test-seen" select="boolean(0)"/>
|
---|
| 340 | <xsl:with-param name="doc-seen" select="boolean(0)"/>
|
---|
| 341 | </xsl:call-template>
|
---|
| 342 | </xsl:otherwise><!-- no role, no remap -->
|
---|
[0a0b609] | 343 | <!--============================================================-->
|
---|
[8fc6a47] | 344 | </xsl:choose>
|
---|
| 345 | </xsl:template>
|
---|
| 346 |
|
---|
[0a0b609] | 347 | <xsl:template match="userinput" mode="install">
|
---|
[8fc6a47] | 348 | <xsl:text>
|
---|
| 349 | </xsl:text>
|
---|
[0a0b609] | 350 | <xsl:call-template name="output-install">
|
---|
[8fc6a47] | 351 | <xsl:with-param name="out-string" select="string()"/>
|
---|
| 352 | </xsl:call-template>
|
---|
| 353 | </xsl:template>
|
---|
| 354 |
|
---|
[0a0b609] | 355 | <!-- userinput templates for mode="root" and normal are in scripts.xsl -->
|
---|
[8fc6a47] | 356 |
|
---|
[0a0b609] | 357 | <xsl:template name="process-test">
|
---|
| 358 | <xsl:param name="test-instr"/>
|
---|
| 359 | <xsl:param name="want-stats"/>
|
---|
| 360 | <xsl:choose>
|
---|
| 361 | <!-- the string may begin with a linefeed -->
|
---|
| 362 | <xsl:when test="substring($test-instr,1,1)='
'">
|
---|
| 363 | <xsl:text>
|
---|
[8fc6a47] | 364 | </xsl:text>
|
---|
[0a0b609] | 365 | <xsl:call-template name="process-test">
|
---|
| 366 | <xsl:with-param name="test-instr"
|
---|
| 367 | select="substring-after($test-instr,'
')"/>
|
---|
| 368 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 369 | </xsl:call-template>
|
---|
| 370 | </xsl:when>
|
---|
| 371 | <xsl:when test="contains($test-instr,'
')">
|
---|
| 372 | <xsl:call-template name="process-test">
|
---|
| 373 | <xsl:with-param name="test-instr"
|
---|
| 374 | select="substring-before($test-instr,'
')"/>
|
---|
| 375 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 376 | </xsl:call-template>
|
---|
| 377 | <xsl:text>
|
---|
| 378 | </xsl:text>
|
---|
| 379 | <xsl:call-template name="process-test">
|
---|
| 380 | <xsl:with-param name="test-instr"
|
---|
| 381 | select="substring-after($test-instr,'
')"/>
|
---|
| 382 | <xsl:with-param name="want-stats" select="$want-stats"/>
|
---|
| 383 | </xsl:call-template>
|
---|
| 384 | </xsl:when>
|
---|
| 385 | <xsl:otherwise>
|
---|
| 386 | <xsl:if test="not($want-stats)">
|
---|
| 387 | <xsl:text>#</xsl:text>
|
---|
| 388 | </xsl:if>
|
---|
| 389 | <xsl:choose>
|
---|
| 390 | <xsl:when test="contains($test-instr,'make')
|
---|
| 391 | and not(contains($test-instr,'make -k'))">
|
---|
| 392 | <xsl:copy-of select="substring-before($test-instr,'make')"/>
|
---|
| 393 | <xsl:text>make -k</xsl:text>
|
---|
| 394 | <xsl:copy-of select="substring-after($test-instr,'make')"/>
|
---|
| 395 | </xsl:when>
|
---|
| 396 | <xsl:otherwise>
|
---|
| 397 | <xsl:copy-of select="$test-instr"/>
|
---|
| 398 | </xsl:otherwise>
|
---|
| 399 | </xsl:choose>
|
---|
| 400 | <xsl:if test="substring($test-instr,
|
---|
| 401 | string-length($test-instr),
|
---|
| 402 | 1)!='\'">
|
---|
| 403 | <xsl:if test="$want-stats">
|
---|
| 404 | <xsl:text> >> $TESTLOG 2>&1</xsl:text>
|
---|
| 405 | </xsl:if>
|
---|
| 406 | <xsl:text> || true</xsl:text>
|
---|
| 407 | </xsl:if>
|
---|
| 408 | </xsl:otherwise>
|
---|
| 409 | </xsl:choose>
|
---|
[8fc6a47] | 410 | </xsl:template>
|
---|
| 411 |
|
---|
[0a0b609] | 412 | <xsl:template name="process-doc">
|
---|
| 413 | <xsl:param name="doc-instr"/>
|
---|
| 414 | <xsl:param name="want-stats"/>
|
---|
| 415 | <xsl:choose>
|
---|
| 416 | <xsl:when test="$want-stats">
|
---|
| 417 | <xsl:copy-of select="$doc-instr"/>
|
---|
| 418 | </xsl:when>
|
---|
| 419 | <xsl:otherwise>
|
---|
| 420 | <xsl:call-template name="output-comment-out">
|
---|
| 421 | <xsl:with-param name="out-string" select="$doc-instr"/>
|
---|
| 422 | </xsl:call-template>
|
---|
| 423 | </xsl:otherwise>
|
---|
| 424 | </xsl:choose>
|
---|
[8fc6a47] | 425 | </xsl:template>
|
---|
[c048987] | 426 |
|
---|
[8fc6a47] | 427 | <xsl:template name="output-comment-out">
|
---|
[0a0b609] | 428 | <!-- Output instructions with each line commented out. -->
|
---|
[8fc6a47] | 429 | <xsl:param name="out-string"/>
|
---|
| 430 | <xsl:choose>
|
---|
[0a0b609] | 431 | <!-- the string may begin with a linefeed -->
|
---|
| 432 | <xsl:when test="substring($out-string,1,1)='
'">
|
---|
| 433 | <xsl:text>
|
---|
| 434 | </xsl:text>
|
---|
| 435 | <xsl:call-template name="output-comment-out">
|
---|
| 436 | <xsl:with-param name="out-string"
|
---|
| 437 | select="substring-after($out-string,'
')"/>
|
---|
| 438 | </xsl:call-template>
|
---|
| 439 | </xsl:when>
|
---|
[8fc6a47] | 440 | <xsl:when test="contains($out-string,'
')">
|
---|
[0a0b609] | 441 | <xsl:text>#</xsl:text>
|
---|
| 442 | <xsl:copy-of select="substring-before($out-string,'
')"/>
|
---|
[8fc6a47] | 443 | <xsl:text>
|
---|
| 444 | </xsl:text>
|
---|
| 445 | <xsl:call-template name="output-comment-out">
|
---|
[0a0b609] | 446 | <xsl:with-param name="out-string"
|
---|
| 447 | select="substring-after($out-string,'
')"/>
|
---|
[8fc6a47] | 448 | </xsl:call-template>
|
---|
| 449 | </xsl:when>
|
---|
| 450 | <xsl:otherwise>
|
---|
[0a0b609] | 451 | <xsl:text>#</xsl:text>
|
---|
| 452 | <xsl:copy-of select="$out-string"/>
|
---|
[8fc6a47] | 453 | </xsl:otherwise>
|
---|
[c048987] | 454 | </xsl:choose>
|
---|
| 455 | </xsl:template>
|
---|
| 456 |
|
---|
[8fc6a47] | 457 | <xsl:template name="end-make">
|
---|
| 458 | <xsl:param name="want-stats"/>
|
---|
| 459 | <xsl:if test="$want-stats">
|
---|
| 460 | <xsl:text>
|
---|
| 461 |
|
---|
| 462 | echo Time after make: ${SECONDS} >> $INFOLOG
|
---|
[59c4761] | 463 | echo Size after make: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG</xsl:text>
|
---|
[8fc6a47] | 464 | </xsl:if>
|
---|
| 465 | </xsl:template>
|
---|
| 466 |
|
---|
| 467 | <xsl:template name="begin-doc">
|
---|
| 468 | <xsl:param name="want-stats"/>
|
---|
| 469 | <xsl:if test="$want-stats">
|
---|
| 470 | <xsl:text>
|
---|
| 471 | echo Time before doc: ${SECONDS} >> $INFOLOG
|
---|
| 472 | </xsl:text>
|
---|
| 473 | </xsl:if>
|
---|
| 474 | </xsl:template>
|
---|
| 475 |
|
---|
| 476 | <xsl:template name="begin-test">
|
---|
| 477 | <xsl:param name="want-stats"/>
|
---|
| 478 | <xsl:if test="$want-stats">
|
---|
| 479 | <xsl:text>
|
---|
| 480 | echo Time before test: ${SECONDS} >> $INFOLOG
|
---|
| 481 | </xsl:text>
|
---|
| 482 | </xsl:if>
|
---|
| 483 | </xsl:template>
|
---|
| 484 |
|
---|
[c048987] | 485 | <xsl:template name="begin-root">
|
---|
| 486 | <xsl:if test="$sudo='y'">
|
---|
[619b313] | 487 | <xsl:text>
|
---|
[610a5c4] | 488 | sudo -E sh -e << ROOT_EOF
|
---|
| 489 | PATH=$PATH:/usr/sbin</xsl:text>
|
---|
[c048987] | 490 | </xsl:if>
|
---|
| 491 | </xsl:template>
|
---|
| 492 |
|
---|
| 493 | <xsl:template name="begin-install">
|
---|
| 494 | <xsl:if test="$wrap-install = 'y'">
|
---|
[619b313] | 495 | <xsl:text>
|
---|
| 496 | if [ -r "$JH_PACK_INSTALL" ]; then
|
---|
[c048987] | 497 | source $JH_PACK_INSTALL
|
---|
| 498 | export -f wrapInstall
|
---|
| 499 | export -f packInstall
|
---|
| 500 | fi
|
---|
[619b313] | 501 | wrapInstall '</xsl:text>
|
---|
[c048987] | 502 | </xsl:if>
|
---|
| 503 | </xsl:template>
|
---|
| 504 |
|
---|
[8fc6a47] | 505 | <xsl:template name="end-doc">
|
---|
| 506 | <xsl:param name="want-stats"/>
|
---|
| 507 | <xsl:if test="$want-stats">
|
---|
| 508 | <xsl:text>
|
---|
| 509 |
|
---|
| 510 | echo Time after doc: ${SECONDS} >> $INFOLOG
|
---|
[59c4761] | 511 | echo Size after doc: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG</xsl:text>
|
---|
[8fc6a47] | 512 | </xsl:if>
|
---|
| 513 | </xsl:template>
|
---|
| 514 |
|
---|
| 515 | <xsl:template name="end-test">
|
---|
| 516 | <xsl:param name="want-stats"/>
|
---|
| 517 | <xsl:if test="$want-stats">
|
---|
| 518 | <xsl:text>
|
---|
| 519 |
|
---|
| 520 | echo Time after test: ${SECONDS} >> $INFOLOG
|
---|
[59c4761] | 521 | echo Size after test: $(sudo du -skx --exclude home $BUILD_DIR) >> $INFOLOG</xsl:text>
|
---|
[8fc6a47] | 522 | </xsl:if>
|
---|
| 523 | </xsl:template>
|
---|
| 524 |
|
---|
[c048987] | 525 | <xsl:template name="end-root">
|
---|
| 526 | <xsl:if test="$sudo='y'">
|
---|
[619b313] | 527 | <xsl:text>
|
---|
| 528 | ROOT_EOF</xsl:text>
|
---|
[c048987] | 529 | </xsl:if>
|
---|
| 530 | </xsl:template>
|
---|
| 531 |
|
---|
| 532 | <xsl:template name="end-install">
|
---|
| 533 | <xsl:if test="$del-la-files = 'y'">
|
---|
| 534 | <xsl:call-template name="output-root">
|
---|
| 535 | <xsl:with-param name="out-string" select="$la-files-instr"/>
|
---|
| 536 | </xsl:call-template>
|
---|
| 537 | </xsl:if>
|
---|
| 538 | <xsl:if test="$wrap-install = 'y'">
|
---|
[619b313] | 539 | <xsl:text>'
packInstall</xsl:text>
|
---|
[c048987] | 540 | </xsl:if>
|
---|
| 541 | </xsl:template>
|
---|
| 542 |
|
---|
| 543 | <xsl:template name="output-install">
|
---|
| 544 | <xsl:param name="out-string" select="''"/>
|
---|
| 545 | <xsl:choose>
|
---|
[619b313] | 546 | <xsl:when test="starts-with($out-string, 'make ') or
|
---|
| 547 | contains($out-string,' make ') or
|
---|
| 548 | contains($out-string,'
make')">
|
---|
| 549 | <xsl:call-template name="output-install">
|
---|
| 550 | <xsl:with-param
|
---|
| 551 | name="out-string"
|
---|
| 552 | select="substring-before($out-string,'make ')"/>
|
---|
| 553 | </xsl:call-template>
|
---|
| 554 | <xsl:text>make -j1 </xsl:text>
|
---|
| 555 | <xsl:call-template name="output-install">
|
---|
| 556 | <xsl:with-param
|
---|
| 557 | name="out-string"
|
---|
| 558 | select="substring-after($out-string,'make ')"/>
|
---|
| 559 | </xsl:call-template>
|
---|
| 560 | </xsl:when>
|
---|
[c048987] | 561 | <xsl:when test="contains($out-string,string($APOS))
|
---|
| 562 | and $wrap-install = 'y'">
|
---|
| 563 | <xsl:call-template name="output-root">
|
---|
| 564 | <xsl:with-param
|
---|
| 565 | name="out-string"
|
---|
| 566 | select="substring-before($out-string,string($APOS))"/>
|
---|
| 567 | </xsl:call-template>
|
---|
| 568 | <xsl:text>'\''</xsl:text>
|
---|
| 569 | <xsl:call-template name="output-install">
|
---|
| 570 | <xsl:with-param name="out-string"
|
---|
| 571 | select="substring-after($out-string,string($APOS))"/>
|
---|
| 572 | </xsl:call-template>
|
---|
| 573 | </xsl:when>
|
---|
| 574 | <xsl:otherwise>
|
---|
| 575 | <xsl:call-template name="output-root">
|
---|
[aeb8539] | 576 | <xsl:with-param name="out-string" select="$out-string"/>
|
---|
[c048987] | 577 | </xsl:call-template>
|
---|
| 578 | </xsl:otherwise>
|
---|
| 579 | </xsl:choose>
|
---|
| 580 | </xsl:template>
|
---|
| 581 |
|
---|
| 582 | </xsl:stylesheet>
|
---|