androidenv: fix convert files not quoting urls
This commit is contained in:
parent
cb79ab4813
commit
f13d952121
@ -36,13 +36,13 @@
|
|||||||
archives = {
|
archives = {
|
||||||
<xsl:for-each select="archives/archive[not(host-os)]">
|
<xsl:for-each select="archives/archive[not(host-os)]">
|
||||||
all = fetchurl {
|
all = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
||||||
<xsl:value-of select="host-os" /> = fetchurl {
|
<xsl:value-of select="host-os" /> = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
@ -60,13 +60,13 @@
|
|||||||
archives = {
|
archives = {
|
||||||
<xsl:for-each select="archives/archive[not(host-os)]">
|
<xsl:for-each select="archives/archive[not(host-os)]">
|
||||||
all = fetchurl {
|
all = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
||||||
<xsl:value-of select="host-os" /> = fetchurl {
|
<xsl:value-of select="host-os" /> = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
@ -108,13 +108,13 @@
|
|||||||
archives = {
|
archives = {
|
||||||
<xsl:for-each select="archives/archive[not(host-os)]">
|
<xsl:for-each select="archives/archive[not(host-os)]">
|
||||||
all = fetchurl {
|
all = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
||||||
<xsl:value-of select="host-os" /> = fetchurl {
|
<xsl:value-of select="host-os" /> = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
@ -98,13 +98,13 @@
|
|||||||
archives = {
|
archives = {
|
||||||
<xsl:for-each select="archives/archive[not(host-os)]">
|
<xsl:for-each select="archives/archive[not(host-os)]">
|
||||||
all = fetchurl {
|
all = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = !<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
<xsl:for-each select="archives/archive[host-os and not(host-os = 'windows')]">
|
||||||
<xsl:value-of select="host-os" /> = fetchurl {
|
<xsl:value-of select="host-os" /> = fetchurl {
|
||||||
url = <xsl:call-template name="repository-url"/>;
|
url = "<xsl:call-template name="repository-url"/>";
|
||||||
sha1 = "<xsl:value-of select="complete/checksum" />";
|
sha1 = "<xsl:value-of select="complete/checksum" />";
|
||||||
};
|
};
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
displayName = "</xsl:text><xsl:value-of select="display-name" /><xsl:text>";
|
displayName = "</xsl:text><xsl:value-of select="display-name" /><xsl:text>";
|
||||||
archives.all = fetchurl {</xsl:text>
|
archives.all = fetchurl {</xsl:text>
|
||||||
<xsl:for-each select="archives/archive"><xsl:text>
|
<xsl:for-each select="archives/archive"><xsl:text>
|
||||||
url = </xsl:text><xsl:call-template name="repository-url"/><xsl:text>;
|
url = "</xsl:text><xsl:call-template name="repository-url"/><xsl:text>";
|
||||||
sha1 = "</xsl:text><xsl:value-of select="complete/checksum" /><xsl:text>";</xsl:text>
|
sha1 = "</xsl:text><xsl:value-of select="complete/checksum" /><xsl:text>";</xsl:text>
|
||||||
</xsl:for-each><xsl:text>
|
</xsl:for-each><xsl:text>
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user