Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-proxy for openSUSE:Factory checked in at 2021-06-15 16:37:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-proxy (Old) and /work/SRC/openSUSE:Factory/.yast2-proxy.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-proxy" Tue Jun 15 16:37:04 2021 rev:24 rq:898977 version:4.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-proxy/yast2-proxy.changes 2021-05-02 18:36:25.264869817 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-proxy.new.32437/yast2-proxy.changes 2021-06-15 16:37:18.397690329 +0200 @@ -1,0 +2,9 @@ +Wed Jun 9 08:04:48 UTC 2021 - Knut Anderssen <kanders...@suse.com> + +- Added 'to_target' variable which will determine whether the + configuration should be written to the target system at the end + of the installation or not (bsc#1185016). +- Replace novell urls by SUSE ones (bsc#1100366) +- 4.4.1 + +------------------------------------------------------------------- Old: ---- yast2-proxy-4.4.0.tar.bz2 New: ---- yast2-proxy-4.4.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-proxy.spec ++++++ --- /var/tmp/diff_new_pack.PSVHwM/_old 2021-06-15 16:37:18.877691161 +0200 +++ /var/tmp/diff_new_pack.PSVHwM/_new 2021-06-15 16:37:18.881691167 +0200 @@ -17,7 +17,7 @@ Name: yast2-proxy -Version: 4.4.0 +Version: 4.4.1 Release: 0 Summary: YaST2 - Proxy Configuration License: GPL-2.0-or-later ++++++ yast2-proxy-4.4.0.tar.bz2 -> yast2-proxy-4.4.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-proxy-4.4.0/.rubocop.yml new/yast2-proxy-4.4.1/.rubocop.yml --- old/yast2-proxy-4.4.0/.rubocop.yml 2021-04-30 18:19:08.000000000 +0200 +++ new/yast2-proxy-4.4.1/.rubocop.yml 2021-06-10 10:09:31.000000000 +0200 @@ -30,7 +30,7 @@ # Offense count: 1 # Configuration parameters: CountComments. Metrics/ClassLength: - Max: 350 + Max: 355 # Offense count: 8 Metrics/CyclomaticComplexity: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-proxy-4.4.0/package/yast2-proxy.changes new/yast2-proxy-4.4.1/package/yast2-proxy.changes --- old/yast2-proxy-4.4.0/package/yast2-proxy.changes 2021-04-30 18:19:08.000000000 +0200 +++ new/yast2-proxy-4.4.1/package/yast2-proxy.changes 2021-06-10 10:09:31.000000000 +0200 @@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Wed Jun 9 08:04:48 UTC 2021 - Knut Anderssen <kanders...@suse.com> + +- Added 'to_target' variable which will determine whether the + configuration should be written to the target system at the end + of the installation or not (bsc#1185016). +- Replace novell urls by SUSE ones (bsc#1100366) +- 4.4.1 + +------------------------------------------------------------------- Tue Apr 20 13:51:55 UTC 2021 - Ladislav Slez??k <lsle...@suse.cz> - 4.4.0 (bsc#1185510) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-proxy-4.4.0/package/yast2-proxy.spec new/yast2-proxy-4.4.1/package/yast2-proxy.spec --- old/yast2-proxy-4.4.0/package/yast2-proxy.spec 2021-04-30 18:19:08.000000000 +0200 +++ new/yast2-proxy-4.4.1/package/yast2-proxy.spec 2021-06-10 10:09:31.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-proxy -Version: 4.4.0 +Version: 4.4.1 Release: 0 Summary: YaST2 - Proxy Configuration License: GPL-2.0-or-later diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-proxy-4.4.0/src/modules/Proxy.rb new/yast2-proxy-4.4.1/src/modules/Proxy.rb --- old/yast2-proxy-4.4.0/src/modules/Proxy.rb 2021-04-30 18:19:08.000000000 +0200 +++ new/yast2-proxy-4.4.1/src/modules/Proxy.rb 2021-06-10 10:09:31.000000000 +0200 @@ -5,12 +5,16 @@ # Configures FTP and HTTP proxies via sysconfig # and /root/.curlrc (for YOU) class ProxyClass < Module + # @return [Boolean] Whether the configuration should be copied to the target system + attr_accessor :to_target + def main textdomain "proxy" Yast.import "Summary" Yast.import "Progress" Yast.import "Mode" + Yast.import "Stage" Yast.import "Popup" @proposal_valid = false @@ -26,6 +30,7 @@ @no = "" @user = "" @pass = "" + @to_target = false end # domains that should not be proxied; reader @@ -209,6 +214,9 @@ # user can't relogin in installation and update, do not show the msg then (bnc#486037, bnc#543469) ProxyFinishPopup(true) if Mode.normal + # By now the configuration written to the inst-sys should be copied always to the target + # system, so it is set here in order to discharge others from establishing it. (bsc#1185016) + @to_target = true if Stage.initial @modified = false @@ -267,8 +275,8 @@ # /usr/bin/curl --verbose # --proxy http://server_name:port_number # --proxy-user user:password - # --url http://www.novell.com or ftp://ftp.novell.com | suggested for HTTP or FTP test - # --url https://secure-www.novell.com --insecure + # --url http://www.suse.com or ftp://ftp.suse.com | suggested for HTTP or FTP test + # --url https://www.suse.com --insecure ret = {} test_http = (http_proxy != "" && http_proxy != "http://") ? true : false @@ -292,7 +300,7 @@ http_proxy.shellescape, user_pass, timeout_sec, - "http://www.novell.com" + "http://www.suse.com" ) # adding option --insecure to accept the certificate without asking https_command = Builtins.sformat( @@ -300,14 +308,14 @@ https_proxy.shellescape, user_pass, timeout_sec, - "https://secure-www.novell.com --insecure" + "https://www.suse.com --insecure" ) ftp_command = Builtins.sformat( command, ftp_proxy.shellescape, user_pass, timeout_sec, - "ftp://ftp.novell.com" + "ftp://ftp.suse.com" ) Builtins.y2milestone("Running HTTP_PROXY test...")