Changeset e0fff61


Ignore:
Timestamp:
01/14/2023 04:51:56 PM (16 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/xf86-video-removal
Children:
f56d2e7
Parents:
fc82888
git-author:
Pierre Labastie <pierre.labastie@…> (01/14/2023 04:49:31 PM)
git-committer:
Pierre Labastie <pierre.labastie@…> (01/14/2023 04:51:56 PM)
Message:

pythonhosted.xml: remove files not on pythonhosted

Even commented out, a user could uncomment them and fail to
download them with the pythonhosted.xml instructions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/pythonhosted.xsl

    rfc82888 re0fff61  
    157157    <xsl:choose>
    158158      <xsl:when test="contains($list,' ')">
    159         <xsl:call-template name="make-md5">
    160           <xsl:with-param name="list" select="substring-before($list,' ')"/>
    161         </xsl:call-template>
    162         <xsl:text>
    163 </xsl:text>
     159        <xsl:variable name="dep" select="substring-before($list,' ')"/>
     160        <xsl:choose>
     161      <!-- requests, docutils, and sphinx are not taken from pythonhosted:
     162           don't have them in the .md5 file, even commented out -->
     163          <xsl:when test="$dep='requests' or $dep='docutils' or $dep='sphinx'"/>
     164          <xsl:otherwise>
     165            <xsl:call-template name="make-md5">
     166              <xsl:with-param name="list" select="$dep"/>
     167            </xsl:call-template>
     168            <xsl:text>
     169</xsl:text>
     170          </xsl:otherwise>
     171        </xsl:choose>
    164172        <xsl:call-template name="make-md5">
    165173          <xsl:with-param name="list" select="substring-after($list,' ')"/>
Note: See TracChangeset for help on using the changeset viewer.