Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2021-10-11 15:30:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/linuxrc (Old)
 and      /work/SRC/openSUSE:Factory/.linuxrc.new.2443 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "linuxrc"

Mon Oct 11 15:30:48 2021 rev:302 rq:924251 version:8.05

Changes:
--------
--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2021-07-02 
13:27:11.412889482 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new.2443/linuxrc.changes        
2021-10-11 15:31:25.422826351 +0200
@@ -1,0 +2,27 @@
+Mon Sep 13 07:16:12 UTC 2021 - mvid...@suse.cz
+
+- merge gh#openSUSE/linuxrc#275
+- s390x: ask for the VLAN id by default (jsc#SLE-18631)
+- 8.05
+
+--------------------------------------------------------------------
+Mon Aug 30 09:14:45 UTC 2021 - wfe...@opensuse.org
+
+- merge gh#openSUSE/linuxrc#273
+- Add support for gz and zst compressed modules
+
+--------------------------------------------------------------------
+Mon Aug 30 07:31:11 UTC 2021 - wfe...@opensuse.org
+
+- merge gh#openSUSE/linuxrc#235
+- let curl figure out proper authentication method (jsc#PM-2272)
+- let curl figure out proper authentication method (jsc#SLE-17026)
+
+--------------------------------------------------------------------
+Tue Aug 17 07:56:11 UTC 2021 - wfe...@opensuse.org
+
+- merge gh#openSUSE/linuxrc#272
+- fix handling of query parameters (bsc#1169492, bsc#1188186)
+- 8.0.4
+
+--------------------------------------------------------------------

Old:
----
  linuxrc-8.0.3.tar.xz

New:
----
  linuxrc-8.05.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.5VwoGk/_old  2021-10-11 15:31:25.938827178 +0200
+++ /var/tmp/diff_new_pack.5VwoGk/_new  2021-10-11 15:31:25.942827184 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           linuxrc
-Version:        8.0.3
+Version:        8.05
 Release:        0
 Summary:        SUSE Installation Program
 License:        GPL-3.0+

++++++ linuxrc-8.0.3.tar.xz -> linuxrc-8.05.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-8.0.3/VERSION new/linuxrc-8.05/VERSION
--- old/linuxrc-8.0.3/VERSION   2021-06-29 09:31:16.000000000 +0200
+++ new/linuxrc-8.05/VERSION    2021-09-13 09:16:12.000000000 +0200
@@ -1 +1 @@
-8.0.3
+8.05
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-8.0.3/changelog new/linuxrc-8.05/changelog
--- old/linuxrc-8.0.3/changelog 2021-06-29 09:31:16.000000000 +0200
+++ new/linuxrc-8.05/changelog  2021-09-13 09:16:12.000000000 +0200
@@ -1,3 +1,15 @@
+2021-09-13:    8.05
+       - merge gh#openSUSE/linuxrc#235
+       - let curl figure out proper authentication method (jsc#PM-2272)
+       - merge gh#openSUSE/linuxrc#273
+       - Add support for gz and zst compressed modules
+       - merge gh#openSUSE/linuxrc#275
+       - s390x: ask for the VLAN id by default (jsc#SLE-18631)
+
+2021-08-17:    8.0.4
+       - merge gh#openSUSE/linuxrc#272
+       - fix handling of query parameters (bsc#1169492, bsc#1188186)
+
 2021-06-29:    8.0.3
        - merge gh#openSUSE/linuxrc#271
        - Removed .travis.yml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-8.0.3/global.h new/linuxrc-8.05/global.h
--- old/linuxrc-8.0.3/global.h  2021-06-29 09:31:16.000000000 +0200
+++ new/linuxrc-8.05/global.h   2021-09-13 09:16:12.000000000 +0200
@@ -365,7 +365,7 @@
 #define NS_NOW                 (1 << 9)
 
 #if defined(__s390__) || defined(__s390x__)
-#define NS_DEFAULT             (NS_DHCP | NS_HOSTIP | NS_GATEWAY | 
NS_NAMESERVER | NS_DISPLAY)
+#define NS_DEFAULT             (NS_DHCP | NS_HOSTIP | NS_GATEWAY | 
NS_NAMESERVER | NS_DISPLAY | NS_VLANID)
 #else
 #define NS_DEFAULT             (NS_DHCP | NS_HOSTIP | NS_GATEWAY | 
NS_NAMESERVER)
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-8.0.3/module.c new/linuxrc-8.05/module.c
--- old/linuxrc-8.0.3/module.c  2021-06-29 09:31:16.000000000 +0200
+++ new/linuxrc-8.05/module.c   2021-09-13 09:16:12.000000000 +0200
@@ -46,6 +46,8 @@
 // list ends with an empty entry
 const mod_extensions_t mod_extensions[] = {
   MOD_EXT(".ko.xz"),
+  MOD_EXT(".ko.gz"),
+  MOD_EXT(".ko.zst"),
   MOD_EXT(".ko"),
   { }
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-8.0.3/url.c new/linuxrc-8.05/url.c
--- old/linuxrc-8.0.3/url.c     2021-06-29 09:31:16.000000000 +0200
+++ new/linuxrc-8.05/url.c      2021-09-13 09:16:12.000000000 +0200
@@ -156,6 +156,7 @@
   curl_easy_setopt(c_handle, CURLOPT_MAXREDIRS, 10);
   curl_easy_setopt(c_handle, CURLOPT_SSL_VERIFYPEER, config.sslcerts ? 1 : 0);
   curl_easy_setopt(c_handle, CURLOPT_SSL_VERIFYHOST, config.sslcerts ? 2 : 0);
+  curl_easy_setopt(c_handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
 
   curl_easy_setopt(c_handle, CURLOPT_PROGRESSFUNCTION, url_progress_cb);
   curl_easy_setopt(c_handle, CURLOPT_PROGRESSDATA, url_data);
@@ -180,6 +181,7 @@
   if(proxy_url) {
     if(config.debug >= 2) log_debug("using proxy %s\n", proxy_url);
     curl_easy_setopt(c_handle, CURLOPT_PROXY, proxy_url);
+    curl_easy_setopt(c_handle, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
     if(config.debug >= 2) log_debug("proxy: %s\n", proxy_url);
   }
 
@@ -894,7 +896,7 @@
  *
  * format:
  *   0: for logging
- *   1: without query part
+ *   1: with non-standard query part
  *   2: with device
  *   3: like 2, but remove 'rel:' scheme
  *   4: in zypp format
@@ -957,6 +959,11 @@
     );
   }
 
+  if(format == 1) {
+    // add the non-standard query parameters
+    url_add_query_string(&buf, q, url);
+  }
+
   if(format == 0 || format == 2 || format == 3) {
     if((s = url->used.device) || (s = url->device)) {
       strprintf(&buf, "%s%cdevice=%s", buf, q++ ? '&' : '?', short_dev(s));

Reply via email to