Moved custom-tools and blfs-tool templates to saparate files.

This commit is contained in:
Manuel Canales Esparcia 2007-09-29 11:12:24 +00:00
parent 9ba7afebdd
commit bfcaaa074c
3 changed files with 379 additions and 364 deletions

View file

@ -11,6 +11,8 @@
<!-- Including common extensions templates -->
<xsl:include href="../XSL/user.xsl"/>
<xsl:include href="../XSL/custom-tools.xsl"/>
<xsl:include href="../XSL/blfs-tool.xsl"/>
<!-- ####################### PARAMETERS ################################### -->
@ -49,44 +51,305 @@
<!-- ####################################################################### -->
<!-- ########### NAMED USER TEMPLATES TO ALLOW CUSTOMIZATIONS ############## -->
<!-- ############ Maybe should be placed on a separate file ################ -->
<!-- ############################# MATCH TEMPLATES ########################## -->
<!-- Hock for creating a custom tools directory containing scripts
to be run after the system has been built
(to be moved to a separate file) -->
<xsl:template name="custom-tools">
<!-- Fixed directory and ch_order values -->
<xsl:variable name="basedir">custom-tools/20_</xsl:variable>
<!-- Add an exsl:document block for each script to be created.
This one is only a dummy example. You must replace "01" by
the proper build order and "dummy" by the script name -->
<exsl:document href="{$basedir}01-dummy" method="text">
<xsl:call-template name="header"/>
<xsl:text>
PKG_PHASE=dummy
PACKAGE=dummy
VERSION=0.0.0
TARBALL=dummy-0.0.0.tar.bz2
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="unpack"/>
<xsl:text>
cd $PKGDIR
./configure --prefix=/usr
make
make check
make install
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="clean_sources"/>
<xsl:call-template name="footer"/>
</exsl:document>
<!-- Root element -->
<xsl:template match="/">
<!-- Start processing at chapter level -->
<xsl:apply-templates select="//chapter"/>
<!-- Process custom tools scripts -->
<xsl:if test="$custom-tools = 'y'">
<xsl:call-template name="custom-tools"/>
</xsl:if>
<!-- Process blfs-tool scripts -->
<xsl:if test="$blfs-tool = 'y'">
<xsl:call-template name="blfs-tool"/>
</xsl:if>
</xsl:template>
<!-- ####################################################################### -->
<!-- chapter -->
<xsl:template match="chapter">
<xsl:if test="@id='chapter-temporary-tools' or @id='chapter-building-system'
or @id='chapter-bootscripts' or @id='chapter-bootable'">
<!-- The dir name -->
<xsl:variable name="dirname">
<xsl:call-template name="dirname"/>
</xsl:variable>
<!-- The chapter order position -->
<xsl:variable name="ch_position" select="position()"/>
<xsl:variable name="ch_order">
<xsl:choose>
<xsl:when test="string-length($ch_position) = 1">
<xsl:text>0</xsl:text>
<xsl:value-of select="$ch_position"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$ch_position"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- Process the childrens -->
<xsl:apply-templates select="sect1">
<xsl:with-param name="ch_order" select="$ch_order"/>
<xsl:with-param name="dirname" select="$dirname"/>
</xsl:apply-templates>
</xsl:if>
</xsl:template>
<!-- sect1 -->
<xsl:template match="sect1">
<!-- Inherited chapter order -->
<xsl:param name="ch_order" select="foo"/>
<!-- Inherited dir name -->
<xsl:param name="dirname" select="foo"/>
<!-- Process only files with actual build commands -->
<xsl:if test="count(descendant::screen/userinput) &gt; 0 and
count(descendant::screen/userinput) &gt;
count(descendant::screen[@role='nodump'])">
<!-- Base file name -->
<xsl:variable name="filename">
<xsl:call-template name="filename"/>
</xsl:variable>
<!-- Sect1 order position -->
<xsl:variable name="sect1_position" select="position()"/>
<xsl:variable name="sect1_order">
<xsl:choose>
<xsl:when test="string-length($sect1_position) = 1">
<xsl:text>0</xsl:text>
<xsl:value-of select="$sect1_position"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$sect1_position"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- Script build order -->
<xsl:variable name="order" select="concat($dirname,'/',$ch_order,'_',$sect1_order)"/>
<!-- Must the package test suite, if any, be run? -->
<xsl:variable name="run_this_test">
<xsl:call-template name="run_this_test"/>
</xsl:variable>
<!-- Hock to insert scripts before the current one -->
<xsl:call-template name="insert_script_before">
<xsl:with-param name="reference" select="@id"/>
<xsl:with-param name="order" select="$order"/>
</xsl:call-template>
<!-- Creating dirs and files -->
<exsl:document href="{$order}-{$filename}" method="text">
<xsl:call-template name="header"/>
<xsl:call-template name="user_header"/>
<xsl:apply-templates select="sect1info[@condition='script']">
<xsl:with-param name="phase" select="$filename"/>
<xsl:with-param name="run_this_test" select="$run_this_test"/>
<xsl:with-param name="testlogfile" select="concat($ch_order,'_',$sect1_order,'-',$filename)"/>
</xsl:apply-templates>
<xsl:call-template name="disk_usage"/>
<xsl:if test="sect2[@role='installation']">
<xsl:call-template name="unpack"/>
</xsl:if>
<xsl:call-template name="user_pre_commands"/>
<xsl:call-template name="pre_commands"/>
<xsl:apply-templates select=".//screen">
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
<xsl:call-template name="post_commands"/>
<xsl:call-template name="user_footer"/>
<xsl:call-template name="disk_usage"/>
<xsl:if test="sect2[@role='installation']">
<xsl:call-template name="clean_sources"/>
</xsl:if>
<xsl:call-template name="footer"/>
</exsl:document>
<!-- Hock to insert scripts after the current one -->
<xsl:call-template name="insert_script_after">
<xsl:with-param name="reference" select="@id"/>
<xsl:with-param name="order" select="$order"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- sect1info -->
<xsl:template match="sect1info">
<!-- Used to set and initialize the testuite log file -->
<xsl:param name="testlogfile" select="foo"/>
<xsl:param name="run_this_test" select="foo"/>
<!-- Build phase (base file name) to be used for PM -->
<xsl:param name="phase" select="foo"/>
<xsl:text>&#xA;PKG_PHASE=</xsl:text>
<xsl:value-of select="$phase"/>
<!-- Package name -->
<xsl:apply-templates select="productname"/>
<!-- Package version -->
<xsl:apply-templates select="productnumber"/>
<!-- Tarball name -->
<xsl:apply-templates select="address"/>
<xsl:if test="$run_this_test = '1'">
<xsl:text>&#xA;TEST_LOG=</xsl:text>
<xsl:if test="ancestor::chapter[@id='chapter-temporary-tools']">
<xsl:text>$LFS</xsl:text>
</xsl:if>
<xsl:text>/jhalfs/test-logs/</xsl:text>
<xsl:value-of select="$testlogfile"/>
<xsl:text>&#xA;echo -e "\n`date`\n" &gt; $TEST_LOG</xsl:text>
</xsl:if>
<xsl:text>&#xA;&#xA;</xsl:text>
</xsl:template>
<!-- productname -->
<xsl:template match="productname">
<xsl:text>&#xA;PACKAGE=</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- productnumber -->
<xsl:template match="productnumber">
<xsl:text>&#xA;VERSION=</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- address -->
<xsl:template match="address">
<xsl:text>&#xA;TARBALL=</xsl:text>
<xsl:call-template name="package_name">
<xsl:with-param name="url">
<xsl:apply-templates/>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select="otheraddr" mode="tarball"/>
</xsl:template>
<!-- otheraddr -->
<xsl:template match="otheraddr"/>
<xsl:template match="otheraddr" mode="tarball">
<xsl:text>&#xA;TARBALL_</xsl:text>
<xsl:value-of select="position()"/>
<xsl:text>=</xsl:text>
<xsl:call-template name="package_name">
<xsl:with-param name="url" select="."/>
</xsl:call-template>
</xsl:template>
<!-- screen -->
<xsl:template match="screen">
<xsl:param name="run_this_test" select="foo"/>
<xsl:if test="child::* = userinput and not(@role = 'nodump')">
<xsl:call-template name="top_screen_build_fixes"/>
<xsl:apply-templates>
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
<xsl:call-template name="bottom_screen_build_fixes"/>
<xsl:text>&#xA;</xsl:text>
</xsl:if>
</xsl:template>
<!-- userinput @remap='test' -->
<xsl:template match="userinput[@remap='test']">
<xsl:param name="run_this_test" select="foo"/>
<xsl:apply-templates select="." mode="test">
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
</xsl:template>
<!-- replaceable -->
<xsl:template match="replaceable">
<xsl:choose>
<!-- Configuring the Time Zone -->
<xsl:when test="ancestor::sect2[@id='conf-glibc'] and string()='&lt;xxx&gt;'">
<xsl:value-of select="$timezone"/>
</xsl:when>
<!-- Set paper size for Groff build -->
<xsl:when test="string()='&lt;paper_size&gt;'">
<xsl:value-of select="$page"/>
</xsl:when>
<!-- LANG setting in /etc/profile -->
<xsl:when test="contains(string(),'&lt;ll&gt;_&lt;CC&gt;')">
<xsl:value-of select="$lang"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>**EDITME</xsl:text>
<xsl:apply-templates/>
<xsl:text>EDITME**</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ######################################################################## -->
<!-- ############################# MODE TEMPLATES ########################### -->
<!-- mode test -->
<xsl:template match="userinput" mode="test">
<xsl:param name="run_this_test" select="foo"/>
<xsl:if test="$run_this_test = '1'">
<xsl:choose>
<!-- Final system Glibc -->
<xsl:when test="contains(string(),'glibc-check-log')">
<xsl:value-of select="substring-before(string(),'2&gt;&amp;1')"/>
<xsl:text>&gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Module-Init-Tools -->
<xsl:when test="ancestor::sect1[@id='ch-system-module-init-tools']
and contains(string(),'make check')">
<xsl:value-of select="substring-before(string(),' check')"/>
<xsl:if test="$bomb-testsuite = 'n'">
<xsl:text> -k</xsl:text>
</xsl:if>
<xsl:text> check &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
<xsl:if test="$bomb-testsuite = 'n'">
<xsl:text> || true</xsl:text>
</xsl:if>
<xsl:value-of select="substring-after(string(),' check')"/>
</xsl:when>
<!-- If the book uses -k, the testsuite should never bomb -->
<xsl:when test="contains(string(),'make -k ')">
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Extra commands in Binutils and GCC -->
<xsl:when test="contains(string(),'test_summary') or
contains(string(),'expect -c')">
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG</xsl:text>
</xsl:when>
<!-- Remaining extra testsuite commads that don't need be hacked -->
<xsl:when test="not(contains(string(),'make '))">
<xsl:apply-templates select="." mode="default"/>
</xsl:when>
<!-- Normal testsites run -->
<xsl:otherwise>
<xsl:choose>
<!-- No bomb on failures -->
<xsl:when test="$bomb-testsuite = 'n'">
<xsl:value-of select="substring-before(string(),'make ')"/>
<xsl:text>make -k </xsl:text>
<xsl:value-of select="substring-after(string(),'make ')"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Bomb at the first failure -->
<xsl:otherwise>
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
<!-- ######################################################################## -->
<!-- ########################### NAMED TEMPLATES ########################### -->
@ -292,334 +555,4 @@ exit
</xsl:choose>
</xsl:template>
<!-- Adds blfs-tool support scripts (to be moved to a separate file) -->
<xsl:template name="blfs-tool">
<!-- Fixed directory and ch_order values -->
<xsl:variable name="basedir">blfs-tool-deps/30_</xsl:variable>
<!-- One exsl:document block for each blfs-tool dependency
TO BE WRITTEN -->
<exsl:document href="{$basedir}01-dummy" method="text">
<xsl:call-template name="header"/>
<xsl:text>
PKG_PHASE=dummy
PACKAGE=dummy
VERSION=0.0.0
TARBALL=dummy-0.0.0.tar.bz2
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="unpack"/>
<xsl:text>
cd $PKGDIR
./configure --prefix=/usr
make
make check
make install
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="clean_sources"/>
<xsl:call-template name="footer"/>
</exsl:document>
</xsl:template>
<!-- ######################################################################## -->
<!-- ############################# MATCH TEMPLATES ########################## -->
<!-- Root element -->
<xsl:template match="/">
<!-- Start processing at chapter level -->
<xsl:apply-templates select="//chapter"/>
<!-- Process custom tools scripts -->
<xsl:if test="$custom-tools = 'y'">
<xsl:call-template name="custom-tools"/>
</xsl:if>
<!-- Process blfs-tool scripts -->
<xsl:if test="$blfs-tool = 'y'">
<xsl:call-template name="blfs-tool"/>
</xsl:if>
</xsl:template>
<!-- chapter -->
<xsl:template match="chapter">
<xsl:if test="@id='chapter-temporary-tools' or @id='chapter-building-system'
or @id='chapter-bootscripts' or @id='chapter-bootable'">
<!-- The dir name -->
<xsl:variable name="dirname">
<xsl:call-template name="dirname"/>
</xsl:variable>
<!-- The chapter order position -->
<xsl:variable name="ch_position" select="position()"/>
<xsl:variable name="ch_order">
<xsl:choose>
<xsl:when test="string-length($ch_position) = 1">
<xsl:text>0</xsl:text>
<xsl:value-of select="$ch_position"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$ch_position"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- Process the childrens -->
<xsl:apply-templates select="sect1">
<xsl:with-param name="ch_order" select="$ch_order"/>
<xsl:with-param name="dirname" select="$dirname"/>
</xsl:apply-templates>
</xsl:if>
</xsl:template>
<!-- sect1 -->
<xsl:template match="sect1">
<!-- Inherited chapter order -->
<xsl:param name="ch_order" select="foo"/>
<!-- Inherited dir name -->
<xsl:param name="dirname" select="foo"/>
<!-- Process only files with actual build commands -->
<xsl:if test="count(descendant::screen/userinput) &gt; 0 and
count(descendant::screen/userinput) &gt;
count(descendant::screen[@role='nodump'])">
<!-- Base file name -->
<xsl:variable name="filename">
<xsl:call-template name="filename"/>
</xsl:variable>
<!-- Sect1 order position -->
<xsl:variable name="sect1_position" select="position()"/>
<xsl:variable name="sect1_order">
<xsl:choose>
<xsl:when test="string-length($sect1_position) = 1">
<xsl:text>0</xsl:text>
<xsl:value-of select="$sect1_position"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$sect1_position"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- Script build order -->
<xsl:variable name="order" select="concat($dirname,'/',$ch_order,'_',$sect1_order)"/>
<!-- Must the package test suite, if any, be run? -->
<xsl:variable name="run_this_test">
<xsl:call-template name="run_this_test"/>
</xsl:variable>
<!-- Hock to insert scripts before the current one -->
<xsl:call-template name="insert_script_before">
<xsl:with-param name="reference" select="@id"/>
<xsl:with-param name="order" select="$order"/>
</xsl:call-template>
<!-- Creating dirs and files -->
<exsl:document href="{$order}-{$filename}" method="text">
<xsl:call-template name="header"/>
<xsl:call-template name="user_header"/>
<xsl:apply-templates select="sect1info[@condition='script']">
<xsl:with-param name="phase" select="$filename"/>
<xsl:with-param name="run_this_test" select="$run_this_test"/>
<xsl:with-param name="testlogfile" select="concat($ch_order,'_',$sect1_order,'-',$filename)"/>
</xsl:apply-templates>
<xsl:call-template name="disk_usage"/>
<xsl:if test="sect2[@role='installation']">
<xsl:call-template name="unpack"/>
</xsl:if>
<xsl:call-template name="user_pre_commands"/>
<xsl:call-template name="pre_commands"/>
<xsl:apply-templates select=".//screen">
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
<xsl:call-template name="post_commands"/>
<xsl:call-template name="user_footer"/>
<xsl:call-template name="disk_usage"/>
<xsl:if test="sect2[@role='installation']">
<xsl:call-template name="clean_sources"/>
</xsl:if>
<xsl:call-template name="footer"/>
</exsl:document>
<!-- Hock to insert scripts after the current one -->
<xsl:call-template name="insert_script_after">
<xsl:with-param name="reference" select="@id"/>
<xsl:with-param name="order" select="$order"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- sect1info -->
<xsl:template match="sect1info">
<!-- Used to set and initialize the testuite log file -->
<xsl:param name="testlogfile" select="foo"/>
<xsl:param name="run_this_test" select="foo"/>
<!-- Build phase (base file name) to be used for PM -->
<xsl:param name="phase" select="foo"/>
<xsl:text>&#xA;PKG_PHASE=</xsl:text>
<xsl:value-of select="$phase"/>
<!-- Package name -->
<xsl:apply-templates select="productname"/>
<!-- Package version -->
<xsl:apply-templates select="productnumber"/>
<!-- Tarball name -->
<xsl:apply-templates select="address"/>
<xsl:if test="$run_this_test = '1'">
<xsl:text>&#xA;TEST_LOG=</xsl:text>
<xsl:if test="ancestor::chapter[@id='chapter-temporary-tools']">
<xsl:text>$LFS</xsl:text>
</xsl:if>
<xsl:text>/jhalfs/test-logs/</xsl:text>
<xsl:value-of select="$testlogfile"/>
<xsl:text>&#xA;echo -e "\n`date`\n" > $TEST_LOG</xsl:text>
</xsl:if>
<xsl:text>&#xA;&#xA;</xsl:text>
</xsl:template>
<!-- productname -->
<xsl:template match="productname">
<xsl:text>&#xA;PACKAGE=</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- productnumber -->
<xsl:template match="productnumber">
<xsl:text>&#xA;VERSION=</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- address -->
<xsl:template match="address">
<xsl:text>&#xA;TARBALL=</xsl:text>
<xsl:call-template name="package_name">
<xsl:with-param name="url">
<xsl:apply-templates/>
</xsl:with-param>
</xsl:call-template>
<xsl:apply-templates select="otheraddr" mode="tarball"/>
</xsl:template>
<!-- otheraddr -->
<xsl:template match="otheraddr"/>
<xsl:template match="otheraddr" mode="tarball">
<xsl:text>&#xA;TARBALL_</xsl:text>
<xsl:value-of select="position()"/>
<xsl:text>=</xsl:text>
<xsl:call-template name="package_name">
<xsl:with-param name="url" select="."/>
</xsl:call-template>
</xsl:template>
<!-- screen -->
<xsl:template match="screen">
<xsl:param name="run_this_test" select="foo"/>
<xsl:if test="child::* = userinput and not(@role = 'nodump')">
<xsl:call-template name="top_screen_build_fixes"/>
<xsl:apply-templates>
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
<xsl:call-template name="bottom_screen_build_fixes"/>
<xsl:text>&#xA;</xsl:text>
</xsl:if>
</xsl:template>
<!-- userinput @remap='test' -->
<xsl:template match="userinput[@remap='test']">
<xsl:param name="run_this_test" select="foo"/>
<xsl:apply-templates select="." mode="test">
<xsl:with-param name="run_this_test" select="$run_this_test"/>
</xsl:apply-templates>
</xsl:template>
<!-- replaceable -->
<xsl:template match="replaceable">
<xsl:choose>
<!-- Configuring the Time Zone -->
<xsl:when test="ancestor::sect2[@id='conf-glibc'] and string()='&lt;xxx&gt;'">
<xsl:value-of select="$timezone"/>
</xsl:when>
<!-- Set paper size for Groff build -->
<xsl:when test="string()='&lt;paper_size&gt;'">
<xsl:value-of select="$page"/>
</xsl:when>
<!-- LANG setting in /etc/profile -->
<xsl:when test="contains(string(),'&lt;ll&gt;_&lt;CC&gt;')">
<xsl:value-of select="$lang"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>**EDITME</xsl:text>
<xsl:apply-templates/>
<xsl:text>EDITME**</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ######################################################################## -->
<!-- ############################# MODE TEMPLATES ########################### -->
<!-- mode test -->
<xsl:template match="userinput" mode="test">
<xsl:param name="run_this_test" select="foo"/>
<xsl:if test="$run_this_test = '1'">
<xsl:choose>
<!-- Final system Glibc -->
<xsl:when test="contains(string(),'glibc-check-log')">
<xsl:value-of select="substring-before(string(),'2&gt;&amp;1')"/>
<xsl:text>&gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Module-Init-Tools -->
<xsl:when test="ancestor::sect1[@id='ch-system-module-init-tools']
and contains(string(),'make check')">
<xsl:value-of select="substring-before(string(),' check')"/>
<xsl:if test="$bomb-testsuite = 'n'">
<xsl:text> -k</xsl:text>
</xsl:if>
<xsl:text> check &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
<xsl:if test="$bomb-testsuite = 'n'">
<xsl:text> || true</xsl:text>
</xsl:if>
<xsl:value-of select="substring-after(string(),' check')"/>
</xsl:when>
<!-- If the book uses -k, the testsuite should never bomb -->
<xsl:when test="contains(string(),'make -k ')">
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Extra commands in Binutils and GCC -->
<xsl:when test="contains(string(),'test_summary') or
contains(string(),'expect -c')">
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG</xsl:text>
</xsl:when>
<!-- Remaining extra testsuite commads that don't need be hacked -->
<xsl:when test="not(contains(string(),'make '))">
<xsl:apply-templates select="." mode="default"/>
</xsl:when>
<!-- Normal testsites run -->
<xsl:otherwise>
<xsl:choose>
<!-- No bomb on failures -->
<xsl:when test="$bomb-testsuite = 'n'">
<xsl:value-of select="substring-before(string(),'make ')"/>
<xsl:text>make -k </xsl:text>
<xsl:value-of select="substring-after(string(),'make ')"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true</xsl:text>
</xsl:when>
<!-- Bomb at the first failure -->
<xsl:otherwise>
<xsl:apply-templates select="." mode="default"/>
<xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
</xsl:stylesheet>

40
XSL/blfs-tool.xsl Normal file
View file

@ -0,0 +1,40 @@
<?xml version="1.0"?>
<!-- $Id$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl"
version="1.0">
<!-- Create blfs-tool dependencies scripts -->
<xsl:template name="blfs-tool">
<!-- Fixed directory and ch_order values -->
<xsl:variable name="basedir">blfs-tool-deps/30_</xsl:variable>
<!-- One exsl:document block for each blfs-tool dependency
TO BE WRITTEN -->
<exsl:document href="{$basedir}01-dummy" method="text">
<xsl:call-template name="header"/>
<xsl:text>
PKG_PHASE=dummy
PACKAGE=dummy
VERSION=0.0.0
TARBALL=dummy-0.0.0.tar.bz2
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="unpack"/>
<xsl:text>
cd $PKGDIR
./configure --prefix=/usr
make
make check
make install
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="clean_sources"/>
<xsl:call-template name="footer"/>
</exsl:document>
</xsl:template>
</xsl:stylesheet>

42
XSL/custom-tools.xsl Normal file
View file

@ -0,0 +1,42 @@
<?xml version="1.0"?>
<!-- $Id$ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl"
version="1.0">
<!-- Create a custom tools directory containing scripts
to be run after the base system has been built -->
<xsl:template name="custom-tools">
<!-- Fixed directory and ch_order values -->
<xsl:variable name="basedir">custom-tools/20_</xsl:variable>
<!-- Add an exsl:document block for each script to be created.
This one is only a dummy example. You must replace "01" by
the proper build order and "dummy" by the script name -->
<exsl:document href="{$basedir}01-dummy" method="text">
<xsl:call-template name="header"/>
<xsl:text>
PKG_PHASE=dummy
PACKAGE=dummy
VERSION=0.0.0
TARBALL=dummy-0.0.0.tar.bz2
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="unpack"/>
<xsl:text>
cd $PKGDIR
./configure --prefix=/usr
make
make check
make install
</xsl:text>
<xsl:call-template name="disk_usage"/>
<xsl:call-template name="clean_sources"/>
<xsl:call-template name="footer"/>
</exsl:document>
</xsl:template>
</xsl:stylesheet>