Hello community,

here is the log from the commit of package yast2-registration for 
openSUSE:Factory checked in at 2019-04-02 09:18:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-registration (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-registration.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-registration"

Tue Apr  2 09:18:50 2019 rev:35 rq:690314 version:4.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-registration/yast2-registration.changes    
2019-03-21 09:51:33.410817145 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-registration.new.25356/yast2-registration.changes
 2019-04-02 09:18:51.568560178 +0200
@@ -1,0 +2,7 @@
+Fri Mar 29 14:34:42 UTC 2019 - David Diaz <dgonza...@suse.com>
+
+- Update the  label used for the option to register the system
+  via local server (bsc#1129206).
+- 4.2.0
+
+-------------------------------------------------------------------

Old:
----
  yast2-registration-4.1.21.tar.bz2

New:
----
  yast2-registration-4.2.0.tar.bz2

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

Other differences:
------------------
++++++ yast2-registration.spec ++++++
--- /var/tmp/diff_new_pack.obYYZx/_old  2019-04-02 09:18:52.464561000 +0200
+++ /var/tmp/diff_new_pack.obYYZx/_new  2019-04-02 09:18:52.496561030 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-registration
-Version:        4.1.21
+Version:        4.2.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-registration-4.1.21.tar.bz2 -> yast2-registration-4.2.0.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-registration-4.1.21/Dockerfile 
new/yast2-registration-4.2.0/Dockerfile
--- old/yast2-registration-4.1.21/Dockerfile    2019-03-18 10:12:22.000000000 
+0100
+++ new/yast2-registration-4.2.0/Dockerfile     2019-04-01 12:24:45.000000000 
+0200
@@ -1,3 +1,3 @@
-FROM yastdevel/ruby
+FROM registry.opensuse.org/yast/head/containers/yast-ruby:latest
 COPY . /usr/src/app
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-registration-4.1.21/devel/dump_ay_addons.rb 
new/yast2-registration-4.2.0/devel/dump_ay_addons.rb
--- old/yast2-registration-4.1.21/devel/dump_ay_addons.rb       2019-03-18 
10:12:22.000000000 +0100
+++ new/yast2-registration-4.2.0/devel/dump_ay_addons.rb        2019-04-01 
12:24:45.000000000 +0200
@@ -10,22 +10,27 @@
 
 require_relative "yaml_workaround"
 
-INDENT_WIDTH = 4
+INDENT_WIDTH = 2
 
 # convert addon data to an XML document snippet
 def dump_addon(a)
-  prefix = " " * INDENT_WIDTH
+  prefix = " " * INDENT_WIDTH * 2
+  prefix_outer = " " * INDENT_WIDTH
 
-  ret = prefix + "<!-- #{a.name} -->\n"
+  ret = prefix_outer + "<addon>\n"
+
+  ret += prefix + "<!-- #{a.name} -->\n"
 
   ret += prefix + "<!-- Depends on: #{a.depends_on.name} -->\n" if a.depends_on
 
-  ret += prefix + "<name>#{a.identifier}</name>\n" +
-    prefix + "<version>#{a.version}</version>\n" +
-    prefix + "<arch>#{a.arch}</arch>\n"
+  ret += prefix + "<name>#{a.identifier.encode(xml: :text)}</name>\n" +
+    prefix + "<version>#{a.version.encode(xml: :text)}</version>\n" +
+    prefix + "<arch>#{a.arch.encode(xml: :text)}</arch>\n"
 
   ret += prefix + "<reg_code>REG_CODE_REQUIRED</reg_code>\n" unless a.free
 
+  ret += prefix_outer + "</addon>\n"
+
   ret
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.1.21/package/yast2-registration.changes 
new/yast2-registration-4.2.0/package/yast2-registration.changes
--- old/yast2-registration-4.1.21/package/yast2-registration.changes    
2019-03-18 10:12:22.000000000 +0100
+++ new/yast2-registration-4.2.0/package/yast2-registration.changes     
2019-04-01 12:24:45.000000000 +0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Fri Mar 29 14:34:42 UTC 2019 - David Diaz <dgonza...@suse.com>
+
+- Update the  label used for the option to register the system
+  via local server (bsc#1129206).
+- 4.2.0
+
+-------------------------------------------------------------------
 Fri Mar 15 18:03:43 UTC 2019 - Ladislav Slezak <lsle...@suse.cz>
 
 - Run the solver to correctly initialize the product statuses
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.1.21/package/yast2-registration.spec 
new/yast2-registration-4.2.0/package/yast2-registration.spec
--- old/yast2-registration-4.1.21/package/yast2-registration.spec       
2019-03-18 10:12:22.000000000 +0100
+++ new/yast2-registration-4.2.0/package/yast2-registration.spec        
2019-04-01 12:24:45.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-registration
-Version:        4.1.21
+Version:        4.2.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-registration-4.1.21/src/lib/registration/ui/base_system_registration_dialog.rb
 
new/yast2-registration-4.2.0/src/lib/registration/ui/base_system_registration_dialog.rb
--- 
old/yast2-registration-4.1.21/src/lib/registration/ui/base_system_registration_dialog.rb
    2019-03-18 10:12:22.000000000 +0100
+++ 
new/yast2-registration-4.2.0/src/lib/registration/ui/base_system_registration_dialog.rb
     2019-04-01 12:24:45.000000000 +0200
@@ -142,7 +142,7 @@
         self.action = :register_scc
       end
 
-      # Handle selection the 'Register System via local SMT Server' option
+      # Handle selection the 'Register System via local SMT/RMT Server' option
       #
       # Set the dialog's action to :register_local
       def register_local_handler
@@ -294,7 +294,7 @@
               Id(:register_local),
               Opt(:notify),
               # TRANSLATORS: radio button
-              _("Register System via local SMT Server"),
+              _("Register System via local SMT/RMT Server"),
               action == :register_local
             )
           ),
@@ -608,7 +608,7 @@
 
       VALID_CUSTOM_URL_SCHEMES = ["http", "https"].freeze
 
-      # Determine whether an URL is valid and suitable to be used as local SMT 
server
+      # Determine whether an URL is valid and suitable to be used as local 
SMT/RMT server
       #
       # @return [Boolean] true if it's valid; false otherwise.
       def valid_custom_url?(custom_url)


Reply via email to