| 1 | <?xml version='1.0' encoding='ISO-8859-1'?>
 | 
|---|
| 2 | <!DOCTYPE xsl:stylesheet [
 | 
|---|
| 3 |  <!ENTITY % general-entities SYSTEM "../general.ent">
 | 
|---|
| 4 |   %general-entities;
 | 
|---|
| 5 | ]>
 | 
|---|
| 6 | 
 | 
|---|
| 7 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 | 
|---|
| 8 |                 version="1.0">
 | 
|---|
| 9 | 
 | 
|---|
| 10 |   <xsl:output method="text"/>
 | 
|---|
| 11 | 
 | 
|---|
| 12 |     <!-- Allow select the dest dir at runtime -->
 | 
|---|
| 13 |   <xsl:param name="dest.dir">
 | 
|---|
| 14 |     <xsl:value-of select="concat('/home/httpd/', substring-after('&patches-root;', 'http://'))"/>
 | 
|---|
| 15 |   </xsl:param>
 | 
|---|
| 16 | 
 | 
|---|
| 17 |   <xsl:template match="/">
 | 
|---|
| 18 |     <xsl:text>#! /bin/bash
 | 
|---|
| 19 | 
 | 
|---|
| 20 | function copy
 | 
|---|
| 21 | {
 | 
|---|
| 22 |   cp $1 $2 >>copyerrs 2>&1
 | 
|---|
| 23 | }
 | 
|---|
| 24 | 
 | 
|---|
| 25 | umask 002 

</xsl:text>
 | 
|---|
| 26 | 
 | 
|---|
| 27 |       <!-- Create dest.dir if it don't exist -->
 | 
|---|
| 28 |     <xsl:text>install -d -m 775 -g lfswww </xsl:text>
 | 
|---|
| 29 |     <xsl:value-of select="$dest.dir"/>
 | 
|---|
| 30 |     <xsl:text> &&
</xsl:text>
 | 
|---|
| 31 |     <xsl:text>cd </xsl:text>
 | 
|---|
| 32 |     <xsl:value-of select="$dest.dir"/>
 | 
|---|
| 33 |     <xsl:text> &&

</xsl:text>
 | 
|---|
| 34 |       <!-- Remove old patches -->
 | 
|---|
| 35 |     <xsl:text>rm -f *.patch copyerrs && 

</xsl:text>
 | 
|---|
| 36 |     <xsl:apply-templates/>
 | 
|---|
| 37 |       <!-- Ensure correct owneship -->
 | 
|---|
| 38 |     <xsl:text>
chgrp lfswww *.patch &&
</xsl:text>
 | 
|---|
| 39 |     <xsl:text>
 | 
|---|
| 40 | if [ `wc -l copyerrs | sed 's/ *//' | cut -f1 -d' '` -gt 0 ]; then
 | 
|---|
| 41 |   mail -s "Missing CLFS patches" cross-lfs-dev@linuxfromscratch.org < copyerrs
 | 
|---|
| 42 | fi

</xsl:text>
 | 
|---|
| 43 | 
 | 
|---|
| 44 |     <xsl:text>exit
</xsl:text>
 | 
|---|
| 45 |   </xsl:template>
 | 
|---|
| 46 | 
 | 
|---|
| 47 |   <xsl:template match="//text()"/>
 | 
|---|
| 48 | 
 | 
|---|
| 49 |   <xsl:template match="//ulink">
 | 
|---|
| 50 |       <!-- Match only local patches links and skip duplicated URLs splitted for PDF output-->
 | 
|---|
| 51 |     <xsl:if test="contains(@url, '.patch') and contains(@url, '&patches-root;')
 | 
|---|
| 52 |             and not(ancestor-or-self::*/@condition = 'pdf')">
 | 
|---|
| 53 |       <xsl:variable name="patch.name" select="substring-after(@url, '&patches-root;')"/>
 | 
|---|
| 54 |       <xsl:variable name="cut"
 | 
|---|
| 55 |               select="translate(substring-after($patch.name, '-'), '0123456789', '0000000000')"/>
 | 
|---|
| 56 |       <xsl:variable name="patch.name2">
 | 
|---|
| 57 |         <xsl:value-of select="substring-before($patch.name, '-')"/>
 | 
|---|
| 58 |         <xsl:text>-</xsl:text>
 | 
|---|
| 59 |         <xsl:value-of select="$cut"/>
 | 
|---|
| 60 |       </xsl:variable>
 | 
|---|
| 61 |       <xsl:text>copy /home/httpd/www.linuxfromscratch.org/patches/downloads/</xsl:text>
 | 
|---|
| 62 |           <xsl:value-of select="substring-before($patch.name2, '-0')"/>
 | 
|---|
| 63 |       <xsl:text>/</xsl:text>
 | 
|---|
| 64 |       <xsl:value-of select="$patch.name"/>
 | 
|---|
| 65 |       <xsl:text> . 
</xsl:text>
 | 
|---|
| 66 |     </xsl:if>
 | 
|---|
| 67 |   </xsl:template>
 | 
|---|
| 68 | 
 | 
|---|
| 69 | </xsl:stylesheet>
 | 
|---|