From f51794b6335ff7825b9a2fdb2776aa8dcf263fd613d9ff9cec286a15978412e2 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 6 Oct 2010 14:22:25 +0000 Subject: [PATCH] Accepting request 49766 from home:vuntz:branches:GNOME:Factory Thanks OBS-URL: https://build.opensuse.org/request/show/49766 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gjs?expand=0&rev=20 --- gjs-0.7.2.tar.bz2 | 3 --- gjs-0.7.4.tar.bz2 | 3 +++ gjs.changes | 14 ++++++++++++++ gjs.spec | 11 ++--------- gjs.stp.in | 18 ------------------ gjs_gi_probes.d | 4 ---- 6 files changed, 19 insertions(+), 34 deletions(-) delete mode 100644 gjs-0.7.2.tar.bz2 create mode 100644 gjs-0.7.4.tar.bz2 delete mode 100644 gjs.stp.in delete mode 100644 gjs_gi_probes.d diff --git a/gjs-0.7.2.tar.bz2 b/gjs-0.7.2.tar.bz2 deleted file mode 100644 index 1aae994..0000000 --- a/gjs-0.7.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f10d87930b2f47f8728d8760f9bc2f1f2eb4519b04877496583aa3cc579c3126 -size 475082 diff --git a/gjs-0.7.4.tar.bz2 b/gjs-0.7.4.tar.bz2 new file mode 100644 index 0000000..76639ad --- /dev/null +++ b/gjs-0.7.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff38b380c64a463c98a65bee4612c8a08f8939ce09c2645c4f727c4a2b8b743b +size 480891 diff --git a/gjs.changes b/gjs.changes index ad4fdba..347f292 100644 --- a/gjs.changes +++ b/gjs.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Tue Oct 5 10:35:52 CEST 2010 - vuntz@opensuse.org + +- Update to version 0.7.4: + + Require single include use of headers. + + Support xulrunner 1.9.3. + + Make gjs_profiler_reset public. + + Remove "debugger" module. + + Replace call context with a concept of "current context". + + Replace "load context" with a "import global". + + Various other fixes. +- Drop gjs_gi_probes.d, gjs.stp.in source files: they are now + included in tarball. + ------------------------------------------------------------------- Thu Sep 16 09:50:52 CEST 2010 - vuntz@opensuse.org diff --git a/gjs.spec b/gjs.spec index 825d1bf..8ea92b4 100644 --- a/gjs.spec +++ b/gjs.spec @@ -1,5 +1,5 @@ # -# spec file for package gjs (Version 0.7.2) +# spec file for package gjs (Version 0.7.4) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -27,16 +27,13 @@ %endif Name: gjs -Version: 0.7.2 +Version: 0.7.4 Release: 1 # FIXME: find out if tapsets should really be in devel package or in main package License: MIT License (or similar) Summary: JavaScript bindings based on gobject-introspection and Mozilla Group: Development/Libraries/GNOME Source: %{name}-%{version}.tar.bz2 -# Files missing from tarball, see bgo#625090 -Source1: gjs_gi_probes.d -Source2: gjs.stp.in BuildRequires: cairo-devel BuildRequires: dbus-1-glib-devel BuildRequires: gcc-c++ @@ -78,10 +75,6 @@ Mozilla SpiderMonkey JavaScript engine. %prep %setup -q -test ! -f gi/gjs_gi_probes.d -cp %{S:1} gi/gjs_gi_probes.d -test ! -f gjs/gjs.stp.in -cp %{S:2} gjs/gjs.stp.in %build %configure \ diff --git a/gjs.stp.in b/gjs.stp.in deleted file mode 100644 index a4db831..0000000 --- a/gjs.stp.in +++ /dev/null @@ -1,18 +0,0 @@ - -probe gjs.object_proxy_new = process("@EXPANDED_LIBDIR@/libgjs-gi.so.0.0.0").mark("object__proxy__new") -{ - proxy_address = $arg1; - gobject_address = $arg2; - gi_namespace = user_string($arg3); - gi_name = user_string($arg4); - probestr = sprintf("gjs.object_proxy_new(%p, %s, %s)", proxy_address, gi_namespace, gi_name); -} - -probe gjs.object_proxy_finalize = process("@EXPANDED_LIBDIR@/libgjs-gi.so.0.0.0").mark("object__proxy__finalize") -{ - proxy_address = $arg1; - gobject_address = $arg2; - gi_namespace = user_string($arg3); - gi_name = user_string($arg4); - probestr = sprintf("gjs.object_proxy_finalize(%p, %s, %s)", proxy_address, gi_namespace, gi_name); -} diff --git a/gjs_gi_probes.d b/gjs_gi_probes.d deleted file mode 100644 index a8bcec7..0000000 --- a/gjs_gi_probes.d +++ /dev/null @@ -1,4 +0,0 @@ -provider gjs { - probe object__proxy__new(void*, void*, char *, char *); - probe object__proxy__finalize(void*, void*, char *, char *); -};