Hello community,

here is the log from the commit of package osm-gps-map for openSUSE:Factory 
checked in at 2014-07-31 07:41:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/osm-gps-map (Old)
 and      /work/SRC/openSUSE:Factory/.osm-gps-map.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "osm-gps-map"

Changes:
--------
--- /work/SRC/openSUSE:Factory/osm-gps-map/osm-gps-map.changes  2014-07-29 
21:22:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.osm-gps-map.new/osm-gps-map.changes     
2014-07-31 07:42:10.000000000 +0200
@@ -1,0 +2,8 @@
+Wed Jul 30 15:20:16 UTC 2014 - [email protected]
+
+- Update to version 1.0.2: 
+  + Fix build with new giscanner.
+  + Build fixes.
+  + Fix open-street-maps.
+
+-------------------------------------------------------------------

Old:
----
  1.0.1.tar.gz

New:
----
  1.0.2.tar.gz

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

Other differences:
------------------
++++++ osm-gps-map.spec ++++++
--- /var/tmp/diff_new_pack.EuKN7G/_old  2014-07-31 07:42:11.000000000 +0200
+++ /var/tmp/diff_new_pack.EuKN7G/_new  2014-07-31 07:42:11.000000000 +0200
@@ -1,6 +1,7 @@
 #
 # spec file for package osm-gps-map
 #
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 Dominique Leuenberger, Amsterdam, The Netherlands
 #
 # All modifications and additions to the file contributed by third parties
@@ -15,14 +16,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           osm-gps-map
-Version:        1.0.1
+Version:        1.0.2
 Release:        0
-License:        GPL-2.0+
 Summary:        A Gtk+ Widget for Displaying OpenStreetMap tiles
-Url:            http://nzjrs.github.io/osm-gps-map/
+License:        GPL-2.0+
 Group:          Productivity/Other
-Source:         https://github.com/nzjrs/osm-gps-map/archive/1.0.1.tar.gz
+Url:            http://nzjrs.github.io/osm-gps-map/
+Source:         https://github.com/nzjrs/osm-gps-map/archive/%{version}.tar.gz
 BuildRequires:  gnome-common
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0

++++++ 1.0.1.tar.gz -> 1.0.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osm-gps-map-1.0.1/NEWS new/osm-gps-map-1.0.2/NEWS
--- old/osm-gps-map-1.0.1/NEWS  2013-06-19 10:59:12.000000000 +0200
+++ new/osm-gps-map-1.0.2/NEWS  2014-04-08 22:31:11.000000000 +0200
@@ -1,3 +1,9 @@
+Changes in 1.0.2
+======================
+  * Fix build with new giscanner
+  * Build fixes guillomovitch <[email protected]>
+  * Fix open-street-maps Andrew Gee <[email protected]>
+
 Changes in 1.0.1
 ======================
   * Build fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osm-gps-map-1.0.1/configure.ac 
new/osm-gps-map-1.0.2/configure.ac
--- old/osm-gps-map-1.0.1/configure.ac  2013-06-19 10:59:12.000000000 +0200
+++ new/osm-gps-map-1.0.2/configure.ac  2014-04-08 22:31:11.000000000 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.63])
 AC_INIT([osm-gps-map],
-        [1.0.1],
+        [1.0.2],
         [http://github.com/nzjrs/osm-gps-map/issues],
         [osm-gps-map])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osm-gps-map-1.0.1/src/Makefile.am 
new/osm-gps-map-1.0.2/src/Makefile.am
--- old/osm-gps-map-1.0.1/src/Makefile.am       2013-06-19 10:59:12.000000000 
+0200
+++ new/osm-gps-map-1.0.2/src/Makefile.am       2014-04-08 22:31:11.000000000 
+0200
@@ -29,7 +29,8 @@
        $(no_undefined)
 
 libosmgpsmap_1_0_la_LIBADD =    \
-    $(OSMGPSMAP_LIBS)
+    $(OSMGPSMAP_LIBS) \
+    -lm
 
 sources_private_h =         \
        converter.h             \
@@ -73,18 +74,18 @@
 ## GObject Introspection Support
 -include $(INTROSPECTION_MAKEFILE)
 INTROSPECTION_GIRS =
-INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) 
--add-include-path=$(builddir) --warn-all
-INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
+INTROSPECTION_SCANNER_ARGS = $(INTROSPECTION_FLAGS) 
--add-include-path=$(srcdir) --add-include-path=$(builddir) --warn-all
+INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) --includedir=$(builddir)
 
 if HAVE_INTROSPECTION
 introspection_sources = $(sources_c) $(sources_public_h)
 
 OsmGpsMap-1.0.gir: libosmgpsmap-1.0.la
 OsmGpsMap_1_0_gir_INCLUDES = GObject-2.0 Gtk-3.0
-OsmGpsMap_1_0_gir_CFLAGS = $(OSMGPSMAP_CFLAGS)
+OsmGpsMap_1_0_gir_CFLAGS = $(OSMGPSMAP_CFLAGS) -I$(srcdir) -I$(builddir)
 OsmGpsMap_1_0_gir_LIBS = libosmgpsmap-1.0.la
 OsmGpsMap_1_0_gir_FILES = $(introspection_sources)
-OsmGpsMap_1_0_gir_SCANNERFLAGS = --identifier-prefix=OsmGps
+OsmGpsMap_1_0_gir_SCANNERFLAGS = --identifier-prefix=OsmGps --c-include 
"osm-gps-map.h"
 INTROSPECTION_GIRS += OsmGpsMap-1.0.gir
 
 girdir = $(datadir)/gir-1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osm-gps-map-1.0.1/src/osm-gps-map-source.c 
new/osm-gps-map-1.0.2/src/osm-gps-map-source.c
--- old/osm-gps-map-1.0.1/src/osm-gps-map-source.c      2013-06-19 
10:59:12.000000000 +0200
+++ new/osm-gps-map-1.0.2/src/osm-gps-map-source.c      2014-04-08 
22:31:11.000000000 +0200
@@ -93,7 +93,8 @@
         case OSM_GPS_MAP_SOURCE_OSM_PUBLIC_TRANSPORT:
             return "http://tile.xn--pnvkarte-m4a.de/tilegen/#Z/#X/#Y.png";;
         case OSM_GPS_MAP_SOURCE_OSMC_TRAILS:
-            return "http://topo.geofabrik.de/trails/#Z/#X/#Y.png";;
+            // Appears to be shut down
+            return NULL;
         case OSM_GPS_MAP_SOURCE_MAPS_FOR_FREE:
             return 
"http://maps-for-free.com/layer/relief/z#Z/row#Y/#Z_#X-#Y.jpg";;
         case OSM_GPS_MAP_SOURCE_GOOGLE_STREET:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osm-gps-map-1.0.1/src/osm-gps-map-widget.c 
new/osm-gps-map-1.0.2/src/osm-gps-map-widget.c
--- old/osm-gps-map-1.0.1/src/osm-gps-map-widget.c      2013-06-19 
10:59:12.000000000 +0200
+++ new/osm-gps-map-1.0.2/src/osm-gps-map-widget.c      2014-04-08 
22:31:11.000000000 +0200
@@ -145,7 +145,7 @@
 #define ENABLE_DEBUG                (0)
 #define EXTRA_BORDER                (0)
 #define OSM_GPS_MAP_SCROLL_STEP     (10)
-#define USER_AGENT                  "Mozilla/5.0 (Windows; U; Windows NT 5.1; 
en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11"
+#define USER_AGENT                  "libosmgpsmap/1.0"
 #define DOWNLOAD_RETRIES            3
 #define MAX_DOWNLOAD_TILES          10000
 

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

Reply via email to