Hello community,
here is the log from the commit of package live-add-yast-repos for
openSUSE:Factory checked in at 2018-08-03 12:37:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/live-add-yast-repos (Old)
and /work/SRC/openSUSE:Factory/.live-add-yast-repos.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "live-add-yast-repos"
Fri Aug 3 12:37:47 2018 rev:2 rq:627025 version:1.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/live-add-yast-repos/live-add-yast-repos.changes
2018-03-29 11:57:41.833854796 +0200
+++
/work/SRC/openSUSE:Factory/.live-add-yast-repos.new/live-add-yast-repos.changes
2018-08-03 12:37:51.375618982 +0200
@@ -1,0 +2,5 @@
+Thu Aug 2 08:18:32 UTC 2018 - [email protected]
+
+- Also apply prod_dir and autorefresh
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ live-add-yast-repos.spec ++++++
--- /var/tmp/diff_new_pack.2fF4ZA/_old 2018-08-03 12:37:51.711619482 +0200
+++ /var/tmp/diff_new_pack.2fF4ZA/_new 2018-08-03 12:37:51.711619482 +0200
@@ -20,7 +20,7 @@
Version: 1.0
Release: 0
Summary: A script to add the repos from control.xml to the system
-License: GPL-2.0
+License: GPL-2.0-only
Group: System/YaST
Url:
https://build.opensuse.org/package/show/system:install:head/live-add-yast-repos
Source1: geturls.xsl
++++++ geturls.xsl ++++++
--- /var/tmp/diff_new_pack.2fF4ZA/_old 2018-08-03 12:37:51.731619512 +0200
+++ /var/tmp/diff_new_pack.2fF4ZA/_new 2018-08-03 12:37:51.731619512 +0200
@@ -7,16 +7,21 @@
</xsl:text>
<xsl:for-each
select="y:productDefines/y:software/y:extra_urls/y:extra_url">
- <xsl:text>zypper addrepo --refresh </xsl:text>
+ <xsl:text>zypper addrepo</xsl:text>
<xsl:if test="y:enabled != 'true'">
- <xsl:text>--disable </xsl:text>
+ <xsl:text> --disable</xsl:text>
</xsl:if>
- <xsl:text>--name '</xsl:text>
+ <xsl:if test="y:autorefresh = 'true'">
+ <xsl:text> --refresh</xsl:text>
+ </xsl:if>
+ <xsl:text> -p </xsl:text><xsl:value-of select="y:priority"/>
+ <xsl:text> --name '</xsl:text>
<xsl:value-of select="y:name"/>
<xsl:text>' '</xsl:text>
<xsl:value-of select="y:baseurl"/>
- <xsl:text>' </xsl:text><xsl:value-of select="y:alias"/>
- <xsl:text>
+ <xsl:if test="y:prod_dir != '/'"><xsl:value-of
select="y:prod_dir"/></xsl:if>
+ <xsl:text>' '</xsl:text><xsl:value-of select="y:alias"/>
+ <xsl:text>';
</xsl:text>
</xsl:for-each>
</xsl:template>