Hello community,

here is the log from the commit of package yast2-packager for openSUSE:Factory 
checked in at 2015-02-01 12:28:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-packager.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-packager"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes    
2015-01-30 10:59:53.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-packager.new/yast2-packager.changes       
2015-02-01 12:28:32.000000000 +0100
@@ -1,0 +2,6 @@
+Thu Jan 29 14:45:40 UTC 2015 - [email protected]
+
+- remove obsolete legacy patch callbacks
+- 3.1.57 
+
+-------------------------------------------------------------------

Old:
----
  yast2-packager-3.1.56.tar.bz2

New:
----
  yast2-packager-3.1.57.tar.bz2

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

Other differences:
------------------
++++++ yast2-packager.spec ++++++
--- /var/tmp/diff_new_pack.nLkUx9/_old  2015-02-01 12:28:33.000000000 +0100
+++ /var/tmp/diff_new_pack.nLkUx9/_new  2015-02-01 12:28:33.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        3.1.56
+Version:        3.1.57
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-packager-3.1.56.tar.bz2 -> yast2-packager-3.1.57.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-3.1.56/package/yast2-packager.changes 
new/yast2-packager-3.1.57/package/yast2-packager.changes
--- old/yast2-packager-3.1.56/package/yast2-packager.changes    2015-01-26 
14:33:10.000000000 +0100
+++ new/yast2-packager-3.1.57/package/yast2-packager.changes    2015-01-30 
17:33:13.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Jan 29 14:45:40 UTC 2015 - [email protected]
+
+- remove obsolete legacy patch callbacks
+- 3.1.57 
+
+-------------------------------------------------------------------
 Mon Jan 26 13:06:17 UTC 2015 - [email protected]
 
 - fixed \r and \b  characters lost during conversion to Ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-3.1.56/package/yast2-packager.spec 
new/yast2-packager-3.1.57/package/yast2-packager.spec
--- old/yast2-packager-3.1.56/package/yast2-packager.spec       2015-01-26 
14:33:10.000000000 +0100
+++ new/yast2-packager-3.1.57/package/yast2-packager.spec       2015-01-30 
17:33:13.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        3.1.56
+Version:        3.1.57
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-packager-3.1.56/src/modules/SlideShowCallbacks.rb 
new/yast2-packager-3.1.57/src/modules/SlideShowCallbacks.rb
--- old/yast2-packager-3.1.56/src/modules/SlideShowCallbacks.rb 2015-01-26 
14:33:10.000000000 +0100
+++ new/yast2-packager-3.1.57/src/modules/SlideShowCallbacks.rb 2015-01-30 
17:33:13.000000000 +0100
@@ -453,17 +453,6 @@
 
       nil
     end
-    #  at start of file providal
-    def StartPatchProvide(name, archivesize)
-      PackageSlideShow.SlideGenericProvideStart(
-        name, #remote
-        archivesize,
-        _("Downloading patch RPM %1 (download size %2)"),
-        true
-      )
-
-      nil
-    end
 
     # during file providal
     def ProgressDeltaApply(percent)
@@ -473,7 +462,7 @@
     end
 
     #  at end of file providal
-    def FinishPatchDeltaProvide
+    def FinishDeltaProvide
       nil
     end
 
@@ -495,15 +484,6 @@
       nil
     end
 
-    def ProblemPatchDownload(descr)
-      # error in installation log, %1 is detail error description
-      SlideShow.AppendMessageToInstLog(
-        Builtins.sformat(_("Failed to download patch RPM: %1"), descr)
-      )
-
-      nil
-    end
-
     # change of repository
     # source: 0 .. n-1
     # media:  1 .. n
@@ -604,7 +584,7 @@
         fun_ref(method(:ProblemDeltaDownload), "void (string)")
       )
       Pkg.CallbackFinishDeltaDownload(
-        fun_ref(method(:FinishPatchDeltaProvide), "void ()")
+        fun_ref(method(:FinishDeltaProvide), "void ()")
       )
 
       Pkg.CallbackStartDeltaApply(
@@ -617,20 +597,7 @@
         fun_ref(method(:ProblemDeltaApply), "void (string)")
       )
       Pkg.CallbackFinishDeltaApply(
-        fun_ref(method(:FinishPatchDeltaProvide), "void ()")
-      )
-
-      Pkg.CallbackStartPatchDownload(
-        fun_ref(method(:StartPatchProvide), "void (string, integer)")
-      )
-      Pkg.CallbackProgressPatchDownload(
-        fun_ref(method(:ProgressProvide), "boolean (integer)")
-      )
-      Pkg.CallbackProblemPatchDownload(
-        fun_ref(method(:ProblemPatchDownload), "void (string)")
-      )
-      Pkg.CallbackFinishPatchDownload(
-        fun_ref(method(:FinishPatchDeltaProvide), "void ()")
+        fun_ref(method(:FinishDeltaProvide), "void ()")
       )
 
       Pkg.CallbackScriptStart(
@@ -716,12 +683,9 @@
     publish :function => :DonePackage, :type => "string (integer, string)"
     publish :function => :StartDeltaProvide, :type => "void (string, integer)"
     publish :function => :StartDeltaApply, :type => "void (string)"
-    publish :function => :StartPatchProvide, :type => "void (string, integer)"
     publish :function => :ProgressDeltaApply, :type => "void (integer)"
-    publish :function => :FinishPatchDeltaProvide, :type => "void ()"
     publish :function => :ProblemDeltaDownload, :type => "void (string)"
     publish :function => :ProblemDeltaApply, :type => "void (string)"
-    publish :function => :ProblemPatchDownload, :type => "void (string)"
     publish :function => :CallbackSourceChange, :type => "void (integer, 
integer)"
     publish :function => :MediaChange, :type => "string (string, string, 
string, string, integer, string, integer, string, boolean, list <string>, 
integer)"
     publish :function => :InstallSlideShowCallbacks, :type => "void ()"

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to