Hello community,

here is the log from the commit of package ruby-kde4 for openSUSE:Factory 
checked in at 2012-01-27 15:24:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ruby-kde4 (Old)
 and      /work/SRC/openSUSE:Factory/.ruby-kde4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ruby-kde4", Maintainer is "kde-maintain...@suse.de"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ruby-kde4/ruby-kde4.changes      2011-12-08 
12:14:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ruby-kde4.new/ruby-kde4.changes 2012-01-27 
15:24:10.000000000 +0100
@@ -1,0 +2,16 @@
+Wed Jan 18 20:58:50 CET 2012 - dmuel...@suse.de
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+-------------------------------------------------------------------
+Tue Jan 10 16:33:37 CET 2012 - dmuel...@suse.de
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+  
+
+-------------------------------------------------------------------

Old:
----
  korundum-4.7.4.tar.bz2

New:
----
  korundum-4.8.0.tar.bz2

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

Other differences:
------------------
++++++ ruby-kde4.spec ++++++
--- /var/tmp/diff_new_pack.yJ4jsw/_old  2012-01-27 15:24:11.000000000 +0100
+++ /var/tmp/diff_new_pack.yJ4jsw/_new  2012-01-27 15:24:11.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ruby-kde4
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,7 @@
 Summary:        Korundum Ruby-KDE library
 License:        LGPL-2.1+
 Group:          Development/Libraries/KDE
-Version:        4.7.4
+Version:        4.8.0
 Release:        0
 Source0:        korundum-%version.tar.bz2
 Url:            https://projects.kde.org/projects/kde/kdebindings/ruby/korundum

++++++ korundum-4.7.4.tar.bz2 -> korundum-4.8.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/korundum-4.7.4/ChangeLog new/korundum-4.8.0/ChangeLog
--- old/korundum-4.7.4/ChangeLog        2011-06-22 18:34:20.000000000 +0200
+++ new/korundum-4.8.0/ChangeLog        2011-07-27 20:37:29.000000000 +0200
@@ -1,3 +1,7 @@
+2011-05-30  Richard Dale  <richard.j.d...@gmail.com>
+    * Make embedded Ruby plugins, such as the plasma extension, work with 
+      Ruby 1.9.x
+
 2010-09-30  Richard Dale  <richard.j.d...@gmail.com>
     * Replace STR2CSTR macros with StringValuePtr so that the
       krubypluginfactory.cpp builds with Ruby 1.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/korundum-4.7.4/src/krubypluginfactory.cpp 
new/korundum-4.8.0/src/krubypluginfactory.cpp
--- old/korundum-4.7.4/src/krubypluginfactory.cpp       2011-06-22 
18:34:20.000000000 +0200
+++ new/korundum-4.8.0/src/krubypluginfactory.cpp       2011-07-27 
20:37:29.000000000 +0200
@@ -39,6 +39,7 @@
 extern "C" {
 extern VALUE rb_load_path;
 extern VALUE qt_internal_module;
+void Init_prelude(void);
 }
 
 //
@@ -161,6 +162,12 @@
         ruby_init_loadpath();
     }
 
+#if RUBY_VERSION >= 0x10900
+    VALUE gem = rb_define_module("Gem");
+    rb_const_set(gem, rb_intern("Enable"), Qtrue);
+    Init_prelude(); 
+#endif
+
     ruby_incpush(QFile::encodeName(program.path()));
 
     int state = 0;
@@ -331,6 +338,12 @@
     if (firstTime) {
         ruby_init_loadpath();
     }
+    
+#if RUBY_VERSION >= 0x10900
+    VALUE gem = rb_define_module("Gem");
+    rb_const_set(gem, rb_intern("Enable"), Qtrue);
+    Init_prelude();                                             
+#endif
 
     ruby_incpush(QFile::encodeName(program.path()));
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to