Hello community,

here is the log from the commit of package yast2-ruby-bindings for 
openSUSE:12.2 checked in at 2012-06-28 17:23:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.2/yast2-ruby-bindings (Old)
 and      /work/SRC/openSUSE:12.2/.yast2-ruby-bindings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-ruby-bindings", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:12.2/yast2-ruby-bindings/yast2-ruby-bindings.changes     
2012-06-26 17:44:02.000000000 +0200
+++ 
/work/SRC/openSUSE:12.2/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes    
    2012-06-28 17:23:53.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Jun 27 08:02:14 UTC 2012 - [email protected]
+
+- adapt to changes in yast2-core
+- 0.3.13 
+
+-------------------------------------------------------------------

Old:
----
  yast2-ruby-bindings-0.3.12.tar.bz2

New:
----
  yast2-ruby-bindings-0.3.13.tar.bz2

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

Other differences:
------------------
++++++ yast2-ruby-bindings.spec ++++++
--- /var/tmp/diff_new_pack.RIpUTZ/_old  2012-06-28 17:23:53.000000000 +0200
+++ /var/tmp/diff_new_pack.RIpUTZ/_new  2012-06-28 17:23:53.000000000 +0200
@@ -20,7 +20,7 @@
 #
 
 Name:           yast2-ruby-bindings
-Version:        0.3.12
+Version:        0.3.13
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source0:        yast2-ruby-bindings-%{version}.tar.bz2
@@ -33,8 +33,8 @@
 BuildRequires:  yast2-devtools >= 2.16.3
 # libzypp-devel is missing .la requires
 BuildRequires:  ruby-devel
-Requires:       yast2-core >= 2.18.1
-BuildRequires:  yast2-core-devel >= 2.18.1
+Requires:       yast2-core >= 2.23.4
+BuildRequires:  yast2-core-devel >= 2.23.4
 Requires:       yast2-ycp-ui-bindings       >= 2.16.37
 BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
 Requires:       ruby

++++++ yast2-ruby-bindings-0.3.12.tar.bz2 -> yast2-ruby-bindings-0.3.13.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-0.3.12/VERSION.cmake 
new/yast2-ruby-bindings-0.3.13/VERSION.cmake
--- old/yast2-ruby-bindings-0.3.12/VERSION.cmake        2012-06-18 
09:41:26.000000000 +0200
+++ new/yast2-ruby-bindings-0.3.13/VERSION.cmake        2012-06-27 
10:03:40.000000000 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "0")
 SET(VERSION_MINOR "3")
-SET(VERSION_PATCH "12")
+SET(VERSION_PATCH "13")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ruby-bindings-0.3.12/package/yast2-ruby-bindings.changes 
new/yast2-ruby-bindings-0.3.13/package/yast2-ruby-bindings.changes
--- old/yast2-ruby-bindings-0.3.12/package/yast2-ruby-bindings.changes  
2012-06-18 09:41:26.000000000 +0200
+++ new/yast2-ruby-bindings-0.3.13/package/yast2-ruby-bindings.changes  
2012-06-27 10:03:40.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Wed Jun 27 08:02:14 UTC 2012 - [email protected]
+
+- adapt to changes in yast2-core
+- 0.3.13 
+
+-------------------------------------------------------------------
 Tue Jun 12 13:33:01 UTC 2012 - [email protected]
 
 - finish the ruby 1.9 port
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-0.3.12/src/ruby/RubyLogger.cc 
new/yast2-ruby-bindings-0.3.13/src/ruby/RubyLogger.cc
--- old/yast2-ruby-bindings-0.3.12/src/ruby/RubyLogger.cc       2012-06-18 
09:41:26.000000000 +0200
+++ new/yast2-ruby-bindings-0.3.13/src/ruby/RubyLogger.cc       2012-06-27 
10:03:40.000000000 +0200
@@ -22,21 +22,19 @@
 #include "RubyLogger.h"
 #include <ycp/ExecutionEnvironment.h>
 
-extern ExecutionEnvironment ee;
-
 void
 RubyLogger::error (string error_message)
 {
-  y2_logger (LOG_ERROR,"Ruby",ee.filename ().c_str ()
-             ,ee.linenumber (),"","%s", error_message.c_str ());
+  y2_logger (LOG_ERROR,"Ruby",YaST::ee.filename ().c_str ()
+             ,YaST::ee.linenumber (),"","%s", error_message.c_str ());
 }
 
 
 void
 RubyLogger::warning (string warning_message)
 {
-  y2_logger (LOG_ERROR,"Ruby",ee.filename ().c_str ()
-             ,ee.linenumber (),"","%s", warning_message.c_str ());
+  y2_logger (LOG_ERROR,"Ruby",YaST::ee.filename ().c_str ()
+             ,YaST::ee.linenumber (),"","%s", warning_message.c_str ());
 }
 
 RubyLogger*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ruby-bindings-0.3.12/yast2-ruby-bindings.spec.in 
new/yast2-ruby-bindings-0.3.13/yast2-ruby-bindings.spec.in
--- old/yast2-ruby-bindings-0.3.12/yast2-ruby-bindings.spec.in  2012-06-18 
09:41:26.000000000 +0200
+++ new/yast2-ruby-bindings-0.3.13/yast2-ruby-bindings.spec.in  2012-06-27 
10:03:40.000000000 +0200
@@ -18,8 +18,8 @@
 BuildRequires:  yast2-devtools >= 2.16.3
 # libzypp-devel is missing .la requires
 BuildRequires: ruby-devel
-Requires:      yast2-core >= 2.18.1
-BuildRequires:  yast2-core-devel >= 2.18.1
+Requires:      yast2-core >= 2.23.4
+BuildRequires:  yast2-core-devel >= 2.23.4
 Requires:       yast2-ycp-ui-bindings       >= 2.16.37
 BuildRequires:  yast2-ycp-ui-bindings-devel >= 2.16.37
 Requires:      ruby

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

Reply via email to