Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2021-09-08 21:36:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2" Wed Sep 8 21:36:24 2021 rev:516 rq:917053 version:4.4.17 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2021-07-20 15:40:04.405537768 +0200 +++ /work/SRC/openSUSE:Factory/.yast2.new.1899/yast2.changes 2021-09-08 21:36:29.909880291 +0200 @@ -1,0 +2,7 @@ +Mon Sep 6 07:42:09 UTC 2021 - Martin Vidner <[email protected]> + +- Mark systemd unit/service state "maintenance" as active + (bsc#1190163) +- 4.4.17 + +------------------------------------------------------------------- Old: ---- yast2-4.4.16.tar.bz2 New: ---- yast2-4.4.17.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.R2D3sG/_old 2021-09-08 21:36:30.481880956 +0200 +++ /var/tmp/diff_new_pack.R2D3sG/_new 2021-09-08 21:36:30.489880966 +0200 @@ -17,7 +17,7 @@ Name: yast2 -Version: 4.4.16 +Version: 4.4.17 Release: 0 Summary: YaST2 Main Package License: GPL-2.0-only ++++++ yast2-4.4.16.tar.bz2 -> yast2-4.4.17.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.4.16/library/systemd/src/lib/yast2/systemd/unit_properties.rb new/yast2-4.4.17/library/systemd/src/lib/yast2/systemd/unit_properties.rb --- old/yast2-4.4.16/library/systemd/src/lib/yast2/systemd/unit_properties.rb 2021-07-19 13:48:50.000000000 +0200 +++ new/yast2-4.4.17/library/systemd/src/lib/yast2/systemd/unit_properties.rb 2021-09-06 11:02:49.000000000 +0200 @@ -12,6 +12,10 @@ # # systemctl.c:check_unit_active uses (active, reloading) # For bsc#884756 we also consider "activating" to be active. + # + # "maintenance" means that the unit will automatically return + # to be "active" after a while. (`systemctl clean` was invoked) + # # (The remaining states are "deactivating", "inactive", "failed".) # # Yes, depending on systemd states that are NOT covered by their @@ -20,7 +24,7 @@ # (depending on hardware and software installed, VM or not) # is a 1 to 15 second delay (bsc#1045658). # That is why we try hard to avoid many systemctl calls. - ACTIVE_STATES = ["active", "activating", "reloading"].freeze + ACTIVE_STATES = ["active", "activating", "maintenance", "reloading"].freeze # @param systemd_unit [Yast2::Systemd::Unit] # @param property_text [String,nil] if provided, use it instead of calling `systemctl show` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.4.16/library/types/src/modules/URL.rb new/yast2-4.4.17/library/types/src/modules/URL.rb --- old/yast2-4.4.16/library/types/src/modules/URL.rb 2021-07-19 13:48:50.000000000 +0200 +++ new/yast2-4.4.17/library/types/src/modules/URL.rb 2021-09-06 11:02:49.000000000 +0200 @@ -30,6 +30,13 @@ require "yast" module Yast + # A module for dealing with URLs + # + # @note This is legacy code ported from the + # {https://news.opensuse.org/2007/08/29/yast-independence-of-ycp/ YCP} era. Its use is highly + # discouraged in favor of the {https://ruby-doc.org/stdlib-3.0.2/libdoc/uri/rdoc/URI.html URI} + # standard library or the new {Y2Packager::ZyppUrl} (available from SLE-15-SP3 on) when working + # with libzypp URLs. class URLClass < Module def main textdomain "base" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.4.16/library/types/src/modules/URLRecode.rb new/yast2-4.4.17/library/types/src/modules/URLRecode.rb --- old/yast2-4.4.16/library/types/src/modules/URLRecode.rb 2021-07-19 13:48:50.000000000 +0200 +++ new/yast2-4.4.17/library/types/src/modules/URLRecode.rb 2021-09-06 11:02:49.000000000 +0200 @@ -4,6 +4,12 @@ module Yast # A drop-in replacement of an earlier Perl implementation + # + # @note This is legacy code ported from the + # {https://news.opensuse.org/2007/08/29/yast-independence-of-ycp/ YCP} era. Its use is highly + # discouraged in favor of the {https://ruby-doc.org/stdlib-3.0.2/libdoc/uri/rdoc/URI.html URI} + # standard library or the new {Y2Packager::ZyppUrl} (available from SLE-15-SP3 on) when working + # with libzypp URLs. class URLRecodeClass < Module # these will be substituted to a regex character class USERNAME_PASSWORD_FRAGMENT_SAFE_CHARS = "-A-Za-z0-9_.!~*'()".freeze diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.4.16/package/yast2.changes new/yast2-4.4.17/package/yast2.changes --- old/yast2-4.4.16/package/yast2.changes 2021-07-19 13:48:50.000000000 +0200 +++ new/yast2-4.4.17/package/yast2.changes 2021-09-06 11:02:49.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Sep 6 07:42:09 UTC 2021 - Martin Vidner <[email protected]> + +- Mark systemd unit/service state "maintenance" as active + (bsc#1190163) +- 4.4.17 + +------------------------------------------------------------------- Thu Jul 15 11:04:50 UTC 2021 - David Diaz <[email protected]> - Do not escape "$" in URL paths (bsc#1187581). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-4.4.16/package/yast2.spec new/yast2-4.4.17/package/yast2.spec --- old/yast2-4.4.16/package/yast2.spec 2021-07-19 13:48:50.000000000 +0200 +++ new/yast2-4.4.17/package/yast2.spec 2021-09-06 11:02:49.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2 -Version: 4.4.16 +Version: 4.4.17 Release: 0 Summary: YaST2 Main Package License: GPL-2.0-only
