source: stylesheets/patcheslist.xsl@ 7a8a136

11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 7a8a136 was 7a8a136, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Tweak mail address for missing patches

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[ded6ddd]1<?xml version='1.0' encoding='ISO-8859-1'?>
[afa7fb1]2<!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[ded6ddd]6
7<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8 version="1.0">
9
[a9e89d0]10 <xsl:output method="text"/>
[ded6ddd]11
[dcb91d8]12 <!-- Allow select the dest dir at runtime -->
13 <xsl:param name="dest.dir">
[0f7d4cb]14 <xsl:value-of select="concat('/srv/www/', substring-after('&patches-root;', 'https://'))"/>
[afa7fb1]15 </xsl:param>
[07f719a]16
17 <xsl:template match="/">
[3bf7cb6]18 <xsl:text>#! /bin/bash
19
20function copy
21{
22 cp $1 $2 >>copyerrs 2>&amp;1
23}
24
25umask 002 &#x0a;&#x0a;</xsl:text>
[2159d60]26
[dcb91d8]27 <!-- Create dest.dir if it don't exist -->
[3bf7cb6]28 <xsl:text>install -d -m 775 -g lfswww </xsl:text>
[dcb91d8]29 <xsl:value-of select="$dest.dir"/>
30 <xsl:text> &amp;&amp;&#x0a;</xsl:text>
[3bf7cb6]31 <xsl:text>cd </xsl:text>
[dcb91d8]32 <xsl:value-of select="$dest.dir"/>
[07f719a]33 <xsl:text> &amp;&amp;&#x0a;&#x0a;</xsl:text>
[3bf7cb6]34 <!-- Remove old patches -->
35 <xsl:text>rm -f *.patch copyerrs &amp;&amp; &#x0a;&#x0a;</xsl:text>
[07f719a]36 <xsl:apply-templates/>
[dcb91d8]37 <!-- Ensure correct owneship -->
[3bf7cb6]38 <xsl:text>&#x0a;chgrp lfswww *.patch &amp;&amp;&#x0a;</xsl:text>
39 <xsl:text>
40if [ `wc -l copyerrs | sed 's/ *//' | cut -f1 -d' '` -gt 0 ]; then
[7a8a136]41 mail -s "Missing LFS patches" lfs-book@lists.linuxfromscratch.org &lt; copyerrs
[3bf7cb6]42fi&#x0a;&#x0a;</xsl:text>
[2159d60]43
[3bf7cb6]44 <xsl:text>exit&#x0a;</xsl:text>
[07f719a]45 </xsl:template>
46
[dcb91d8]47 <xsl:template match="//text()"/>
[ded6ddd]48
[a9e89d0]49 <xsl:template match="//ulink">
[dcb91d8]50 <!-- Match only local patches links and skip duplicated URLs splitted for PDF output-->
[2159d60]51 <xsl:if test="contains(@url, '.patch') and contains(@url, '&patches-root;')
[dcb91d8]52 and not(ancestor-or-self::*/@condition = 'pdf')">
53 <xsl:variable name="patch.name" select="substring-after(@url, '&patches-root;')"/>
[2159d60]54 <xsl:variable name="cut"
[dcb91d8]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>
[2159d60]61 <xsl:text>copy /srv/www/www.linuxfromscratch.org/patches/downloads/</xsl:text>
[dcb91d8]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> . &#x0a;</xsl:text>
[a9e89d0]66 </xsl:if>
67 </xsl:template>
[ded6ddd]68
69</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.