Hello community,

here is the log from the commit of package gjs for openSUSE:Factory checked in 
at 2012-03-19 09:55:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gjs (Old)
 and      /work/SRC/openSUSE:Factory/.gjs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gjs", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/gjs/gjs.changes  2012-01-26 14:18:32.000000000 
+0100
+++ /work/SRC/openSUSE:Factory/.gjs.new/gjs.changes     2012-03-19 
09:55:54.000000000 +0100
@@ -1,0 +2,17 @@
+Mon Mar  5 15:44:07 UTC 2012 - vu...@opensuse.org
+
+- Update to version 1.31.20:
+  + Represent GTypes as a new boxed wrapper type
+  + Add "system" module
+  + Introduce meta classes
+  + object:
+    - Implement gobject inheritance
+    - Add support for glib properties
+    - Add support for signals
+    - Add support for interfaces
+  + Support callbacks that accept array arguments
+  + Various gjs_parse_args() improvements
+  + Several other code changes.
+- Add gjs-fix-build.patch: fix code that cannot build.
+
+-------------------------------------------------------------------

Old:
----
  gjs-1.31.10.tar.xz

New:
----
  gjs-1.31.20.tar.xz
  gjs-fix-build.patch

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

Other differences:
------------------
++++++ gjs.spec ++++++
--- /var/tmp/diff_new_pack.TAVNkm/_old  2012-03-19 09:55:55.000000000 +0100
+++ /var/tmp/diff_new_pack.TAVNkm/_new  2012-03-19 09:55:55.000000000 +0100
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           gjs
-Version:        1.31.10
+Version:        1.31.20
 Release:        0
 # FIXME: find out if tapsets should really be in devel package or in main 
package
 Summary:        JavaScript bindings based on gobject-introspection and Mozilla
@@ -24,6 +25,8 @@
 Group:          Development/Libraries/GNOME
 Url:            http://live.gnome.org/Gjs
 Source:         
http://download.gnome.org/sources/gjs/1.31/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gjs-fix-build.patch bgo#671390 vu...@opensuse.org -- Fix 
code that cannot build
+Patch0:         gjs-fix-build.patch
 BuildRequires:  gcc-c++
 BuildRequires:  python
 BuildRequires:  readline-devel
@@ -74,6 +77,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure \

++++++ gjs-fix-build.patch ++++++
commit 4eaaa63f4b325f2476f90de52fea44dccd3bbc76
Author: Vincent Untz <vu...@gnome.org>
Date:   Mon Mar 5 17:40:52 2012 +0100

    object: Fix build
    
    https://bugzilla.gnome.org/show_bug.cgi?id=671390

diff --git a/gi/object.c b/gi/object.c
index 17c70b4..825c61f 100644
--- a/gi/object.c
+++ b/gi/object.c
@@ -1027,7 +1027,7 @@ object_instance_finalize(JSContext *context,
 
     TRACE(GJS_OBJECT_PROXY_FINALIZE(priv, priv->gobj,
                                     priv->info ? g_base_info_get_namespace ( 
(GIBaseInfo*) priv->info) : "",
-                                    priv->info ? g_base_info_get_name ( 
(GIBaseInfo*) priv->info) ) : g_type_name(priv->gtype));
+                                    priv->info ? g_base_info_get_name ( 
(GIBaseInfo*) priv->info) : g_type_name(priv->gtype)));
 
     if (priv->gobj) {
         if (G_UNLIKELY (priv->gobj->ref_count <= 0)) {
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to