1 | <?xml version="1.0" encoding="ISO-8859-1"?>
|
---|
2 |
|
---|
3 | <!-- Extracts minimal versions from LFS book host requirements,
|
---|
4 | and generates a script containing statements of the
|
---|
5 | form MIN_prog_VERSION=xx.yy.zz.
|
---|
6 | -->
|
---|
7 |
|
---|
8 | <xsl:stylesheet
|
---|
9 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
10 | version="1.0">
|
---|
11 |
|
---|
12 | <xsl:output method="text"/>
|
---|
13 |
|
---|
14 | <xsl:template match="/sect1">
|
---|
15 | <xsl:apply-templates select=".//listitem//emphasis"/>
|
---|
16 | </xsl:template>
|
---|
17 |
|
---|
18 | <xsl:template match="emphasis">
|
---|
19 | <!-- We assume that what is emphasized is in the form:
|
---|
20 | aa...aa-dccsaaa (a anything except @, - "dash", d digit,
|
---|
21 | c anything except space, s space)
|
---|
22 | or
|
---|
23 | aa...aasdccsaaa
|
---|
24 | This means we have to replace digits with @, and look for '-@'
|
---|
25 | or ' @' -->
|
---|
26 | <xsl:variable name="normalized-string"
|
---|
27 | select="translate(normalize-space(string()),
|
---|
28 | '0123456789',
|
---|
29 | '@@@@@@@@@@')"/>
|
---|
30 | <xsl:variable name="begin-ver">
|
---|
31 | <xsl:choose>
|
---|
32 | <xsl:when test="contains($normalized-string,' @')">
|
---|
33 | <xsl:value-of select="string-length(substring-before($normalized-string,' @'))+1"/>
|
---|
34 | </xsl:when>
|
---|
35 | <xsl:otherwise>
|
---|
36 | <xsl:value-of select="string-length(substring-before($normalized-string,'-@'))+1"/>
|
---|
37 | </xsl:otherwise>
|
---|
38 | </xsl:choose>
|
---|
39 | </xsl:variable>
|
---|
40 |
|
---|
41 | <xsl:variable name="remaining-part"
|
---|
42 | select="substring($normalized-string,number($begin-ver)+1)"/>
|
---|
43 |
|
---|
44 | <xsl:variable name="end-ver">
|
---|
45 | <xsl:choose>
|
---|
46 | <xsl:when test="contains($remaining-part,' ')">
|
---|
47 | <xsl:value-of
|
---|
48 | select="string-length(substring-before($remaining-part,' '))"/>
|
---|
49 | </xsl:when>
|
---|
50 | <xsl:otherwise>
|
---|
51 | <xsl:value-of
|
---|
52 | select="string-length($remaining-part)"/>
|
---|
53 | </xsl:otherwise>
|
---|
54 | </xsl:choose>
|
---|
55 | </xsl:variable>
|
---|
56 |
|
---|
57 | <xsl:text>local MIN_</xsl:text>
|
---|
58 | <xsl:choose>
|
---|
59 | <xsl:when test="contains(string(),'Kernel')">
|
---|
60 | <xsl:text>Linux</xsl:text>
|
---|
61 | </xsl:when>
|
---|
62 | <xsl:when test="contains(string(),'GLIBC')">
|
---|
63 | <xsl:text>Glibc</xsl:text>
|
---|
64 | </xsl:when>
|
---|
65 | <xsl:when test="contains(string(),'XZ')">
|
---|
66 | <xsl:text>Xz</xsl:text>
|
---|
67 | </xsl:when>
|
---|
68 | <xsl:otherwise>
|
---|
69 | <!-- We assume that there are no dash nor space in other names -->
|
---|
70 | <xsl:value-of select="substring(string(),1,number($begin-ver)-1)"/>
|
---|
71 | </xsl:otherwise>
|
---|
72 | </xsl:choose>
|
---|
73 | <xsl:text>_VER=</xsl:text>
|
---|
74 | <xsl:value-of select="substring(string(),number($begin-ver)+1,$end-ver)"/>
|
---|
75 | <xsl:text>
|
---|
76 | </xsl:text>
|
---|
77 | </xsl:template>
|
---|
78 | </xsl:stylesheet>
|
---|