r42765 - in /desktop/experimental/gnome-maps/debian: changelog control.in patches/ patches/gjs-readwrite-flags.patch patches/series

ah at users.alioth.debian.org ah at users.alioth.debian.org
Sun Sep 14 09:43:35 UTC 2014


Author: ah
Date: Sun Sep 14 09:43:35 2014
New Revision: 42765

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=42765
Log:
* New upstream development release.
* Bump dependencies to have new enough runtime versions:
  + gir1.2-geocodeglib-1.0 (>= 3.13),
  + gir1.2-glib-2.0 (>= 1.41),
  + gjs (>= 1.41),
* Add debian/patches/gjs-readwrite-flags.patch
  - Avoid GObject.ParamFlags.READWRITE flag for now.

Added:
    desktop/experimental/gnome-maps/debian/patches/
    desktop/experimental/gnome-maps/debian/patches/gjs-readwrite-flags.patch
    desktop/experimental/gnome-maps/debian/patches/series
Modified:
    desktop/experimental/gnome-maps/debian/changelog
    desktop/experimental/gnome-maps/debian/control.in

Modified: desktop/experimental/gnome-maps/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gnome-maps/debian/changelog?rev=42765&op=diff
==============================================================================
--- desktop/experimental/gnome-maps/debian/changelog	[utf-8] (original)
+++ desktop/experimental/gnome-maps/debian/changelog	[utf-8] Sun Sep 14 09:43:35 2014
@@ -1,8 +1,15 @@
-gnome-maps (3.12.2-2) UNRELEASED; urgency=medium
+gnome-maps (3.13.91-1) experimental; urgency=medium
 
   * debian/watch: only look for stable releases.
+  * New upstream development release.
+  * Bump dependencies to have new enough runtime versions:
+    + gir1.2-geocodeglib-1.0 (>= 3.13),
+    + gir1.2-glib-2.0 (>= 1.41),
+    + gjs (>= 1.41),
+  * Add debian/patches/gjs-readwrite-flags.patch
+    - Avoid GObject.ParamFlags.READWRITE flag for now.
 
- -- Andreas Henriksson <andreas at fatal.se>  Thu, 28 Aug 2014 16:11:53 -0700
+ -- Andreas Henriksson <andreas at fatal.se>  Sun, 14 Sep 2014 10:08:27 +0200
 
 gnome-maps (3.12.2-1) unstable; urgency=medium
 

Modified: desktop/experimental/gnome-maps/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gnome-maps/debian/control.in?rev=42765&op=diff
==============================================================================
--- desktop/experimental/gnome-maps/debian/control.in	[utf-8] (original)
+++ desktop/experimental/gnome-maps/debian/control.in	[utf-8] Sun Sep 14 09:43:35 2014
@@ -21,12 +21,12 @@
          gir1.2-clutter-1.0,
          gir1.2-cogl-1.0,
          gir1.2-gdkpixbuf-2.0,
-         gir1.2-geocodeglib-1.0,
-         gir1.2-glib-2.0,
+         gir1.2-geocodeglib-1.0 (>= 3.13),
+         gir1.2-glib-2.0 (>= 1.41),
          gir1.2-gtk-3.0 (>= 3.10),
          gir1.2-gtkchamplain-0.12,
          gir1.2-gtkclutter-1.0,
-         gjs,
+         gjs (>= 1.41),
          ${misc:Depends},
          ${shlibs:Depends}
 Description: map application for GNOME

Added: desktop/experimental/gnome-maps/debian/patches/gjs-readwrite-flags.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gnome-maps/debian/patches/gjs-readwrite-flags.patch?rev=42765&op=file
==============================================================================
--- desktop/experimental/gnome-maps/debian/patches/gjs-readwrite-flags.patch	(added)
+++ desktop/experimental/gnome-maps/debian/patches/gjs-readwrite-flags.patch	[utf-8] Sun Sep 14 09:43:35 2014
@@ -0,0 +1,56 @@
+From: Andreas Henriksson <andreas at fatal.se>
+Subject: Avoid using newly introduced GObject ParamFlags
+
+This avoids problems like:
+
+$ gnome-maps
+
+(process:30037): Gjs-WARNING **: JS ERROR: Error: Expected type flags for Argument 'flags' but got type 'undefined'
+ at resource:///org/gnome/gjs/modules/overrides/GObject.js:253
+ at resource:///org/gnome/maps/placeEntry.js:42
+ at resource:///org/gnome/maps/mainWindow.js:37
+ at resource:///org/gnome/maps/application.js:39
+ at resource:///org/gnome/maps/main.js:24
+@<main>:1
+
+
+** (process:30037): CRITICAL **: Failed to run: JS_EvaluateScript() failed
+
+
+--- a/src/placeEntry.js
++++ b/src/placeEntry.js
+@@ -38,7 +38,7 @@
+         'place': GObject.ParamSpec.object('place',
+                                           'Place',
+                                           'The selected place',
+-                                          GObject.ParamFlags.READWRITE,
++                                          GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE,
+                                           Geocode.Place)
+     },
+ 
+--- a/src/routeQuery.js
++++ b/src/routeQuery.js
+@@ -52,12 +52,12 @@
+         'points': GObject.ParamSpec.object('points',
+                                             '',
+                                             '',
+-                                            GObject.ParamFlags.READWRITE,
++                                            GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE,
+                                             GObject.Object),
+         'transportation': GObject.ParamSpec.int('transportation',
+                                                 '',
+                                                 '',
+-                                                GObject.ParamFlags.READWRITE,
++                                                GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE,
+                                                 Transportation.CAR,
+                                                 Transportation.PEDESTRIAN,
+                                                 Transportation.CAR)
+@@ -132,7 +132,7 @@
+         'place': GObject.ParamSpec.object('place',
+                                           '',
+                                           '',
+-                                          GObject.ParamFlags.READWRITE,
++                                          GObject.ParamFlags.READABLE | GObject.ParamFlags.WRITABLE,
+                                           Geocode.Place),
+     },
+ 

Added: desktop/experimental/gnome-maps/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gnome-maps/debian/patches/series?rev=42765&op=file
==============================================================================
--- desktop/experimental/gnome-maps/debian/patches/series	(added)
+++ desktop/experimental/gnome-maps/debian/patches/series	[utf-8] Sun Sep 14 09:43:35 2014
@@ -0,0 +1 @@
+gjs-readwrite-flags.patch




More information about the pkg-gnome-commits mailing list