commit geocode-glib for openSUSE:Factory

2020-03-14 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2020-03-14 09:54:19

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new.3160 (New)


Package is "geocode-glib"

Sat Mar 14 09:54:19 2020 rev:32 rq:784034 version:3.26.2

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2019-03-19 11:08:37.586091171 +0100
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new.3160/geocode-glib.changes  
2020-03-14 09:54:20.279065988 +0100
@@ -1,0 +2,8 @@
+Wed Mar 11 00:40:33 UTC 2020 - mgo...@suse.com
+
+- Update to version 3.26.2:
+  + Fix build exporting all the symbols.
+  + Allow GIR generation when cross-compiling.
+  + Allow unknown parameters inside geo: URL.
+
+---

Old:

  geocode-glib-3.26.1.tar.xz

New:

  geocode-glib-3.26.2.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.glqUFu/_old  2020-03-14 09:54:20.891066437 +0100
+++ /var/tmp/diff_new_pack.glqUFu/_new  2020-03-14 09:54:20.895066440 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.26.1
+Version:3.26.2
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0-or-later

++ geocode-glib-3.26.1.tar.xz -> geocode-glib-3.26.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.26.1/.ci/check-abi 
new/geocode-glib-3.26.2/.ci/check-abi
--- old/geocode-glib-3.26.1/.ci/check-abi   1970-01-01 01:00:00.0 
+0100
+++ new/geocode-glib-3.26.2/.ci/check-abi   2020-03-09 13:58:40.409887600 
+0100
@@ -0,0 +1,113 @@
+#!/usr/bin/python3
+
+
+import argparse
+import contextlib
+import os
+import shutil
+import subprocess
+import sys
+
+
+def format_title(title):
+box = {
+'tl': '╔', 'tr': '╗', 'bl': '╚', 'br': '╝', 'h': '═', 'v': '║',
+}
+hline = box['h'] * (len(title) + 2)
+
+return '\n'.join([
+f"{box['tl']}{hline}{box['tr']}",
+f"{box['v']} {title} {box['v']}",
+f"{box['bl']}{hline}{box['br']}",
+])
+
+
+def rm_rf(path):
+try:
+shutil.rmtree(path)
+except FileNotFoundError:
+pass
+
+
+def sanitize_path(name):
+return name.replace('/', '-')
+
+
+def get_current_revision():
+revision = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 
'HEAD'],
+   encoding='utf-8').strip()
+
+if revision == 'HEAD':
+# This is a detached HEAD, get the commit hash
+revision = subprocess.check_output(['git', 'rev-parse', 
'HEAD']).strip().decode('utf-8')
+
+return revision
+
+
+@contextlib.contextmanager
+def checkout_git_revision(revision):
+current_revision = get_current_revision()
+subprocess.check_call(['git', 'checkout', '-q', revision])
+
+try:
+yield
+finally:
+subprocess.check_call(['git', 'checkout', '-q', current_revision])
+
+
+def build_install(revision):
+build_dir = '_build'
+dest_dir = os.path.abspath(sanitize_path(revision))
+print(format_title(f'# Building and installing {revision} in {dest_dir}'),
+  end='\n\n', flush=True)
+
+with checkout_git_revision(revision):
+rm_rf(build_dir)
+rm_rf(revision)
+
+subprocess.check_call(['meson', build_dir,
+   '--prefix=/usr', '--libdir=lib',
+   '-Db_coverage=false', '-Denable-gtk-doc=false'])
+subprocess.check_call(['ninja', '-v', '-C', build_dir])
+subprocess.check_call(['ninja', '-v', '-C', build_dir, 'install'],
+  env={'DESTDIR': dest_dir})
+
+return dest_dir
+
+
+def compare(old_tree, new_tree):
+print(format_title(f'# Comparing the two ABIs'), end='\n\n', flush=True)
+
+old_headers = os.path.join(old_tree, 'usr', 'include')
+old_lib = os.path.join(old_tree, 'usr', 'lib', 'libgeocode-glib.so.0')
+
+new_headers = os.path.join(new_tree, 'usr', 'include')
+new_lib = os.path.join(new_tree, 'usr', 'lib', 'libgeocode-glib.so.0')
+
+subprocess.check_call([
+'abidiff', '--headers-dir1', old_headers, '--headers-dir2', 
new_headers,
+'--drop-private-types', '--fail-no-debug-info', 

commit geocode-glib for openSUSE:Factory

2019-03-19 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2019-03-19 11:08:32

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new.28833 (New)


Package is "geocode-glib"

Tue Mar 19 11:08:32 2019 rev:31 rq:685070 version:3.26.1

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2018-06-13 15:13:39.293236012 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new.28833/geocode-glib.changes 
2019-03-19 11:08:37.586091171 +0100
@@ -1,0 +2,7 @@
+Thu Mar 14 13:53:55 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.26.1:
+  + Fix crashes caused by Nominatim server changes.
+  + Fix warnings when building the API documentation.
+
+---

Old:

  geocode-glib-3.26.0.tar.xz

New:

  geocode-glib-3.26.1.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.X11Uqc/_old  2019-03-19 11:08:37.946091086 +0100
+++ /var/tmp/diff_new_pack.X11Uqc/_new  2019-03-19 11:08:37.946091086 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   geocode-glib
-Version:3.26.0
+Version:3.26.1
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0-or-later

++ geocode-glib-3.26.0.tar.xz -> geocode-glib-3.26.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.26.0/NEWS new/geocode-glib-3.26.1/NEWS
--- old/geocode-glib-3.26.0/NEWS2018-06-05 13:03:42.0 +0200
+++ new/geocode-glib-3.26.1/NEWS2019-03-14 14:42:07.0 +0100
@@ -1,3 +1,9 @@
+3.26.1
+--
+
+- Fix crashes caused by Nominatim server changes
+- Fix warnings when building the API documentation
+
 3.26.0
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.26.0/docs/geocode-glib-docs.xml 
new/geocode-glib-3.26.1/docs/geocode-glib-docs.xml
--- old/geocode-glib-3.26.0/docs/geocode-glib-docs.xml  2018-06-05 
13:03:42.0 +0200
+++ new/geocode-glib-3.26.1/docs/geocode-glib-docs.xml  2019-03-14 
14:42:07.0 +0100
@@ -3,6 +3,7 @@
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd;
 [
   http://www.w3.org/2003/XInclude'">
+  
 ]>
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.26.0/docs/meson.build 
new/geocode-glib-3.26.1/docs/meson.build
--- old/geocode-glib-3.26.0/docs/meson.build2018-06-05 13:03:42.0 
+0200
+++ new/geocode-glib-3.26.1/docs/meson.build2019-03-14 14:42:07.0 
+0100
@@ -17,6 +17,12 @@
   'geocode-nominatim-test.h',
 ]
 
+version_xml_conf = configuration_data()
+version_xml_conf.set('VERSION', meson.project_version())
+configure_file(input: 'version.xml.in',
+   output: 'version.xml',
+   configuration: version_xml_conf)
+
 glib_prefix = dependency('glib-2.0').get_pkgconfig_variable('prefix')
 glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
 docpath = join_paths(datadir, 'gtk-doc', 'html')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.26.0/geocode-glib/geocode-nominatim.c 
new/geocode-glib-3.26.1/geocode-glib/geocode-nominatim.c
--- old/geocode-glib-3.26.0/geocode-glib/geocode-nominatim.c2018-06-05 
13:03:42.0 +0200
+++ new/geocode-glib-3.26.1/geocode-glib/geocode-nominatim.c2019-03-14 
14:42:07.0 +0100
@@ -390,9 +390,11 @@
 place_type =  GEOCODE_PLACE_TYPE_DRAINAGE;
 } else if (g_strcmp0 (category, "boundary") == 0) {
 if (g_strcmp0 (type, "administrative") == 0) {
+const char *place_rank;
 int rank;
 
-rank = atoi (g_hash_table_lookup (ht, "place_rank"));
+place_rank = g_hash_table_lookup (ht, "place_rank");
+rank = place_rank ? atoi (place_rank) : 0;

commit geocode-glib for openSUSE:Factory

2018-06-13 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2018-06-13 15:13:31

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Wed Jun 13 15:13:31 2018 rev:30 rq:614895 version:3.26.0

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2018-03-30 11:56:45.156884328 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2018-06-13 15:13:39.293236012 +0200
@@ -1,0 +2,9 @@
+Wed Jun  6 13:31:02 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.26.0:
+  + Remove full build path from public headers so as to make the
+build more easily reproduceable.
+- Drop geocode-glib-make-reproducible.patch: Fixed upstream.
+- Drop hicolor-icon-theme BuildRequires: No longer needed.
+
+---

Old:

  geocode-glib-3.25.4.1.tar.xz
  geocode-glib-make-reproducible.patch

New:

  geocode-glib-3.26.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.f93CUc/_old  2018-06-13 15:13:39.917213247 +0200
+++ /var/tmp/diff_new_pack.f93CUc/_new  2018-06-13 15:13:39.917213247 +0200
@@ -17,20 +17,17 @@
 
 
 Name:   geocode-glib
-Version:3.25.4.1
+Version:3.26.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0-or-later
 Group:  Development/Libraries/GNOME
 URL:http://www.gnome.org/
-Source0:
https://download.gnome.org/sources/geocode-glib/3.25/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/geocode-glib/3.26/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM geocode-glib-make-reproducible.patch bjorn@gmail.com 
-- Make build more reproducible
-Patch0: geocode-glib-make-reproducible.patch
+
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
-# Needed for post/postun scripts
-BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  meson
 BuildRequires:  pkgconfig
@@ -95,7 +92,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 # FIXME Please investigate if we should package installed-tests

++ geocode-glib-3.25.4.1.tar.xz -> geocode-glib-3.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.25.4.1/NEWS 
new/geocode-glib-3.26.0/NEWS
--- old/geocode-glib-3.25.4.1/NEWS  2017-07-20 13:26:46.0 +0200
+++ new/geocode-glib-3.26.0/NEWS2018-06-05 13:03:42.0 +0200
@@ -1,3 +1,9 @@
+3.26.0
+--
+
+- Remove full build path from public headers so as to make the
+  build more easily reproduceable.
+
 3.25.4.1
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.25.4.1/geocode-glib/geocode-backend.c 
new/geocode-glib-3.26.0/geocode-glib/geocode-backend.c
--- old/geocode-glib-3.25.4.1/geocode-glib/geocode-backend.c2017-07-20 
13:26:46.0 +0200
+++ new/geocode-glib-3.26.0/geocode-glib/geocode-backend.c  2018-06-05 
13:03:42.0 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Collabora Ltd.
+ * Copyright 2016 Collabora Ltd.
  *
  * The geocode-glib library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public License as
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.25.4.1/geocode-glib/geocode-backend.h 
new/geocode-glib-3.26.0/geocode-glib/geocode-backend.h
--- old/geocode-glib-3.25.4.1/geocode-glib/geocode-backend.h2017-07-20 
13:26:46.0 +0200
+++ new/geocode-glib-3.26.0/geocode-glib/geocode-backend.h  2018-06-05 
13:03:42.0 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Collabora Ltd.
+ * Copyright 2016 Collabora Ltd.
  *
  * The geocode-glib library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public License as
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/geocode-glib-3.25.4.1/geocode-glib/geocode-bounding-box.c 
new/geocode-glib-3.26.0/geocode-glib/geocode-bounding-box.c
--- old/geocode-glib-3.25.4.1/geocode-glib/geocode-bounding-box.c   
2017-07-20 13:26:46.0 +0200
+++ new/geocode-glib-3.26.0/geocode-glib/geocode-bounding-box.c 2018-06-05 
13:03:42.0 +0200
@@ -1,5 +1,5 @@
 /*
-   Copyright (C) 2013 Jonas Danielsson
+   Copyright 2013 Jonas Danielsson
 
The Gnome Library is free software; you can 

commit geocode-glib for openSUSE:Factory

2018-03-30 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2018-03-30 11:56:38

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Fri Mar 30 11:56:38 2018 rev:29 rq:592264 version:3.25.4.1

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2018-03-08 10:43:21.291890590 +0100
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2018-03-30 11:56:45.156884328 +0200
@@ -1,0 +2,7 @@
+Sat Mar 17 23:09:04 UTC 2018 - bjorn@gmail.com
+
+- Add geocode-glib-make-reproducible.patch: lib: Remove full build
+  path from public headers. So as to make the build more easily
+  reproducible.
+
+---

New:

  geocode-glib-make-reproducible.patch



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.tI7oHK/_old  2018-03-30 11:56:46.252844692 +0200
+++ /var/tmp/diff_new_pack.tI7oHK/_new  2018-03-30 11:56:46.256844548 +0200
@@ -23,8 +23,10 @@
 License:LGPL-2.0-or-later
 Group:  Development/Libraries/GNOME
 URL:http://www.gnome.org/
-Source: 
https://download.gnome.org/sources/geocode-glib/3.25/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/geocode-glib/3.25/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+# PATCH-FIX-UPSTREAM geocode-glib-make-reproducible.patch bjorn@gmail.com 
-- Make build more reproducible
+Patch0: geocode-glib-make-reproducible.patch
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
 # Needed for post/postun scripts
@@ -93,6 +95,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 # FIXME Please investigate if we should package installed-tests

++ geocode-glib-make-reproducible.patch ++
>From 09eae7cb2234db575534a60ce47c5b970f4348a3 Mon Sep 17 00:00:00 2001
From: Bastien Nocera 
Date: Wed, 15 Nov 2017 14:36:56 +0100
Subject: lib: Remove full build path from public headers

So as to make the build more easily reproduceable.

https://bugzilla.gnome.org/show_bug.cgi?id=790338
---
 geocode-glib/geocode-enum-types.c.in | 2 +-
 geocode-glib/geocode-enum-types.h.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/geocode-glib/geocode-enum-types.c.in 
b/geocode-glib/geocode-enum-types.c.in
index 50b09f7..1491ef3 100644
--- a/geocode-glib/geocode-enum-types.c.in
+++ b/geocode-glib/geocode-enum-types.c.in
@@ -8,7 +8,7 @@
 /*** END file-header ***/
 
 /*** BEGIN file-production ***/
-/* enumerations from "@filename@" */
+/* enumerations from "@basename@" */
 /*** END file-production ***/
 
 /*** BEGIN value-header ***/
diff --git a/geocode-glib/geocode-enum-types.h.in 
b/geocode-glib/geocode-enum-types.h.in
index ce603f6..47346db 100644
--- a/geocode-glib/geocode-enum-types.h.in
+++ b/geocode-glib/geocode-enum-types.h.in
@@ -9,7 +9,7 @@ G_BEGIN_DECLS
 
 /*** BEGIN file-production ***/
 
-/* enumerations from "@filename@" */
+/* enumerations from "@basename@" */
 /*** END file-production ***/
 
 /*** BEGIN value-header ***/
-- 
cgit v0.12




commit geocode-glib for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2018-03-08 10:43:20

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Thu Mar  8 10:43:20 2018 rev:28 rq:582714 version:3.25.4.1

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2017-09-13 21:44:04.938142288 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2018-03-08 10:43:21.291890590 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:26:24 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.65O2I4/_old  2018-03-08 10:43:21.783872876 +0100
+++ /var/tmp/diff_new_pack.65O2I4/_new  2018-03-08 10:43:21.787872732 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,9 +20,9 @@
 Version:3.25.4.1
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
-License:LGPL-2.0+
+License:LGPL-2.0-or-later
 Group:  Development/Libraries/GNOME
-Url:http://www.gnome.org/
+URL:http://www.gnome.org/
 Source: 
https://download.gnome.org/sources/geocode-glib/3.25/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gobject-introspection-devel
@@ -31,10 +31,10 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  meson
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(gio-2.0) >= 2.34
 BuildRequires:  pkgconfig(json-glib-1.0) >= 0.99.2
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.42
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The geocode-glib library is a convenience library for the Yahoo! Place
@@ -104,27 +104,23 @@
 
 %install
 %meson_install
-find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n libgeocode-glib0 -p /sbin/ldconfig
-
 %postun -n libgeocode-glib0 -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %{_datadir}/icons/gnome/
 
 %files -n libgeocode-glib0
-%defattr(-,root,root)
-%doc AUTHORS COPYING.LIB NEWS README
+%license COPYING.LIB
+%doc AUTHORS NEWS README
 %{_libdir}/*.so.*
 
 %files -n typelib-1_0-GeocodeGlib-1_0
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GeocodeGlib-1.0.typelib
 
 %files devel
-%defattr(-,root,root)
 %doc %{_datadir}/gtk-doc/html/geocode-glib/
 %{_datadir}/gir-1.0/*.gir
 %{_includedir}/geocode-glib-1.0/




commit geocode-glib for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2017-09-13 21:44:02

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Wed Sep 13 21:44:02 2017 rev:27 rq:522337 version:3.25.4.1

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2017-08-18 14:59:00.295758838 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2017-09-13 21:44:04.938142288 +0200
@@ -1,0 +2,23 @@
+Fri Sep  8 13:25:36 UTC 2017 - jeng...@inai.de
+
+- Update descriptions and RPM groups.
+
+---
+Wed Aug  9 13:25:41 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.25.4.1:
+  + Brown paperbag release to add news entry for 3.25.4.
+- Changes from version 3.25.4:
+  + Port to meson build system.
+  + Drop autotools.
+  + Provide a configure script for backwards compatibility.
+  + Fix a warning from gcc 7.1.1.
+- Add meson BuildRequires and switch autotools macros configure,
+  make and makeinstall to meson, meson_build and meson_install
+  following upstream switch to Meson build system.
+- Replace gnome-doc-utils-devel with gtk-doc BuildRequires and pass
+  enable-gtk-doc=true to meson.
+- Pass enable-installed-tests=false to meson, unsure if we should
+  package these or not, default upstream is yes.
+
+---

Old:

  geocode-glib-3.24.0.tar.xz

New:

  geocode-glib-3.25.4.1.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.4soYTk/_old  2017-09-13 21:44:05.446070827 +0200
+++ /var/tmp/diff_new_pack.4soYTk/_new  2017-09-13 21:44:05.450070264 +0200
@@ -17,19 +17,20 @@
 
 
 Name:   geocode-glib
-Version:3.24.0
+Version:3.25.4.1
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
-Group:  System/Libraries
+Group:  Development/Libraries/GNOME
 Url:http://www.gnome.org/
-Source: 
https://download.gnome.org/sources/geocode-glib/3.24/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/geocode-glib/3.25/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
-BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
+BuildRequires:  gtk-doc
 # Needed for post/postun scripts
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
+BuildRequires:  meson
 BuildRequires:  pkgconfig(gio-2.0) >= 2.34
 BuildRequires:  pkgconfig(json-glib-1.0) >= 0.99.2
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.42
@@ -59,7 +60,7 @@
 from coordinates).
 
 %package -n typelib-1_0-GeocodeGlib-1_0
-Summary:Convenience library for the Yahoo! Place Finder APIs -- 
Introspection bindings
+Summary:Introspection bindings for geocode-glib
 Group:  System/Libraries
 
 %description -n typelib-1_0-GeocodeGlib-1_0
@@ -74,7 +75,7 @@
 geocode-glib library.
 
 %package devel
-Summary:Convenience library for the Yahoo! Place Finder APIs -- 
Development Files
+Summary:Development files for geocode-glib, a library for the Yahoo 
Place Finder APIs
 Group:  Development/Libraries/C and C++
 Requires:   libgeocode-glib0 = %{version}
 Requires:   typelib-1_0-GeocodeGlib-1_0 = %{version}
@@ -94,22 +95,17 @@
 %setup -q
 
 %build
-%configure
-make %{?_smp_mflags}
+# FIXME Please investigate if we should package installed-tests
+%meson \
+   -Denable-gtk-doc=true \
+   -Denable-installed-tests=false \
+   %{nil}
+%meson_build
 
 %install
-%make_install
+%meson_install
 find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
 
-%clean
-rm -rf %{buildroot}
-
-%post
-%icon_theme_cache_post gnome
-
-%postun
-%icon_theme_cache_postun gnome
-
 %post -n libgeocode-glib0 -p /sbin/ldconfig
 
 %postun -n libgeocode-glib0 -p /sbin/ldconfig
@@ -129,7 +125,7 @@
 
 %files devel
 %defattr(-,root,root)
-%doc %{_datadir}/gtk-doc/html/geocode-glib-1.0/
+%doc %{_datadir}/gtk-doc/html/geocode-glib/
 %{_datadir}/gir-1.0/*.gir
 %{_includedir}/geocode-glib-1.0/
 %{_libdir}/pkgconfig/geocode-glib-1.0.pc

++ geocode-glib-3.24.0.tar.xz -> geocode-glib-3.25.4.1.tar.xz ++
 77622 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2017-08-18 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2017-08-18 14:58:59

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Fri Aug 18 14:58:59 2017 rev:26 rq:516867 version:3.24.0

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2017-03-22 22:58:33.031524994 +0100
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2017-08-18 14:59:00.295758838 +0200
@@ -1,0 +2,6 @@
+Wed Aug  9 09:42:45 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.24.0:
+  + Stable bump only.
+
+---

Old:

  geocode-glib-3.23.90.tar.xz

New:

  geocode-glib-3.24.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.8D8uPK/_old  2017-08-18 14:59:01.639569665 +0200
+++ /var/tmp/diff_new_pack.8D8uPK/_new  2017-08-18 14:59:01.643569102 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.23.90
+Version:3.24.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.23/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/geocode-glib/3.24/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel

++ geocode-glib-3.23.90.tar.xz -> geocode-glib-3.24.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.23.90/ChangeLog 
new/geocode-glib-3.24.0/ChangeLog
--- old/geocode-glib-3.23.90/ChangeLog  2017-02-06 19:10:02.0 +0100
+++ new/geocode-glib-3.24.0/ChangeLog   2017-08-08 20:19:52.0 +0200
@@ -1,6 +1,15 @@
+commit aa513ab2a33039382023f3dbffea2604ad5af0f3
+Author: Jonas Danielsson 
+Date:   Tue Aug 8 20:18:07 2017 +0200
+
+Release 3.24.0
+
+M  NEWS
+M  configure.ac
+
 commit 537eb30d0479588053cde1336e1a93c1d66b7493
 Author: Jonas Danielsson 
-Date:   Mon Feb 6 19:06:53 2017 +0100
+Date:  Mon Feb 6 19:06:53 2017 +0100
 
 Release 3.23.90
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.23.90/NEWS 
new/geocode-glib-3.24.0/NEWS
--- old/geocode-glib-3.23.90/NEWS   2017-02-06 19:06:34.0 +0100
+++ new/geocode-glib-3.24.0/NEWS2017-08-08 20:17:50.0 +0200
@@ -1,3 +1,10 @@
+3.24.0
+---
+
+A cosmetic release to make sure we have a nice branch point for the
+3.24 stable branch.
+
+
 3.23.90
 ---
 Many thanks to Bastian Nocera and Zeeshan Ali for picking up review
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.23.90/configure 
new/geocode-glib-3.24.0/configure
--- old/geocode-glib-3.23.90/configure  2017-02-06 19:09:37.0 +0100
+++ new/geocode-glib-3.24.0/configure   2017-08-08 20:19:23.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for geocode-glib 3.23.90.
+# Generated by GNU Autoconf 2.69 for geocode-glib 3.24.0.
 #
 # Report bugs to 
.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='geocode-glib'
 PACKAGE_TARNAME='geocode-glib'
-PACKAGE_VERSION='3.23.90'
-PACKAGE_STRING='geocode-glib 3.23.90'
+PACKAGE_VERSION='3.24.0'
+PACKAGE_STRING='geocode-glib 3.24.0'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=geocode-glib'
 PACKAGE_URL=''
 
@@ -1407,7 +1407,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures geocode-glib 3.23.90 to adapt to many kinds of systems.
+\`configure' configures geocode-glib 3.24.0 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1477,7 +1477,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of geocode-glib 3.23.90:";;
+ short | recursive ) echo "Configuration of geocode-glib 3.24.0:";;
esac
   cat <<\_ACEOF
 
@@ -1625,7 +1625,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-geocode-glib configure 3.23.90
+geocode-glib configure 3.24.0
 generated by GNU 

commit geocode-glib for openSUSE:Factory

2017-03-22 Thread root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2017-03-22 22:58:31

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Wed Mar 22 22:58:31 2017 rev:25 rq:461086 version:3.23.90

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2016-06-03 16:29:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2017-03-22 22:58:33.031524994 +0100
@@ -1,0 +2,13 @@
+Tue Feb  7 13:40:08 UTC 2017 - dims...@opensuse.org
+
+- Update to version 3.23.90:
+  + Add g_autoptr cleanup functions.
+  + Make code base const-correct.
+  + Add backend abstraction.
+  + Make unit-test base on offline mock backend.
+  + Add support for multiple reverse results.
+  + Add a user-agent property to override default user-agent.
+  + Add equality functions to bbox/location/place.
+  + Updated translations.
+
+---

Old:

  geocode-glib-3.20.1.tar.xz

New:

  geocode-glib-3.23.90.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.OXgPa9/_old  2017-03-22 22:58:34.067378145 +0100
+++ /var/tmp/diff_new_pack.OXgPa9/_new  2017-03-22 22:58:34.067378145 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.20.1
+Version:3.23.90
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.20/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.23/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
@@ -45,9 +45,9 @@
 
 %package -n libgeocode-glib0
 Summary:Convenience library for the Yahoo! Place Finder APIs
-Group:  System/Libraries
 # We require the icon set, which is shipped in the main package (in order
 # to keep the library parallel installable, we require at least current 
version).
+Group:  System/Libraries
 Requires:   %{name} >= %{version}
 
 %description -n libgeocode-glib0

++ geocode-glib-3.20.1.tar.xz -> geocode-glib-3.23.90.tar.xz ++
 65622 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2016-06-03 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2016-06-03 16:29:00

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2016-04-15 19:00:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2016-06-03 16:29:01.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 15 17:17:01 UTC 2016 - mgo...@suse.com
+
+- Update to GNOME 3.20  Fate#318572
+
+---



Other differences:
--



commit geocode-glib for openSUSE:Factory

2016-04-15 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2016-04-15 19:00:44

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2016-03-29 14:38:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2016-04-15 19:00:45.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 12 11:27:58 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.1:
+  + Fix build for uClibc.
+
+---

Old:

  geocode-glib-3.20.0.tar.xz

New:

  geocode-glib-3.20.1.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.kKumbK/_old  2016-04-15 19:00:46.0 +0200
+++ /var/tmp/diff_new_pack.kKumbK/_new  2016-04-15 19:00:46.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.20.0
+Version:3.20.1
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-3.20.0.tar.xz -> geocode-glib-3.20.1.tar.xz ++
 1861 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2016-03-29 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2016-03-29 14:38:51

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2016-02-16 09:27:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2016-03-29 14:38:52.0 +0200
@@ -1,0 +2,14 @@
+Mon Mar 21 20:14:30 UTC 2016 - dims...@opensuse.org
+
+- Update to version 3.20.0:
+  + Add icons to EXTRA_DIST.
+  + Fix memleaks in query cache.
+
+---
+Sun Feb 14 23:12:46 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.19.90:
+  + Add simple train stops and tram stops to place types.
+  + Fix timestamp documentation.
+
+---

Old:

  geocode-glib-3.18.1.tar.xz

New:

  geocode-glib-3.20.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.iWQOzI/_old  2016-03-29 14:38:53.0 +0200
+++ /var/tmp/diff_new_pack.iWQOzI/_new  2016-03-29 14:38:53.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.18.1
+Version:3.20.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.18/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.20/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
@@ -32,7 +32,7 @@
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) >= 2.34
 BuildRequires:  pkgconfig(json-glib-1.0) >= 0.99.2
-BuildRequires:  pkgconfig(libsoup-2.4)
+BuildRequires:  pkgconfig(libsoup-2.4) >= 2.42
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ geocode-glib-3.18.1.tar.xz -> geocode-glib-3.20.0.tar.xz ++
 2952 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2016-02-16 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2016-02-16 09:27:22

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2015-10-06 16:14:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2016-02-16 09:27:24.0 +0100
@@ -1,0 +2,8 @@
+Sun Jan 31 14:39:52 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Added a default User-Agent, based on GApplication ID if
+available. Nominatim’s usage policy requires a User-Agent, so
+we add one.
+
+---

Old:

  geocode-glib-3.18.0.tar.xz

New:

  geocode-glib-3.18.1.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.p5gyuW/_old  2016-02-16 09:27:24.0 +0100
+++ /var/tmp/diff_new_pack.p5gyuW/_new  2016-02-16 09:27:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-3.18.0.tar.xz -> geocode-glib-3.18.1.tar.xz ++
 21963 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2015-10-06 16:14:02

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is "geocode-glib"

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2015-05-18 22:00:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2015-10-06 16:14:04.0 +0200
@@ -1,0 +2,28 @@
+Sun Sep 20 14:39:20 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.0:
+  + No changes, version bump only.
+
+---
+Wed Sep 16 08:44:58 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.17.92:
+  + Fix compilation under MacOS X.
+  + Make location timestamp writable on construction.
+
+---
+Sun Aug 16 14:34:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.17.90:
+  + Update unit tests.
+  + Add workaround for Nominatim boundingbox bug (bgo#749963).
+  + Update project description.
+  + Prettify Geo URI generation.
+
+---
+Tue May 12 20:05:49 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.17.1:
+  + Make error handling of reverse geocode more robust.
+
+---

Old:

  geocode-glib-3.16.2.tar.xz

New:

  geocode-glib-3.18.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.tu5UoE/_old  2015-10-06 16:14:05.0 +0200
+++ /var/tmp/diff_new_pack.tu5UoE/_new  2015-10-06 16:14:05.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.16.2
+Version:3.18.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.16/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.18/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel

++ geocode-glib-3.16.2.tar.xz -> geocode-glib-3.18.0.tar.xz ++
 2453 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/geocode-glib-3.16.2/ChangeLog new/geocode-glib-3.18.0/ChangeLog
--- old/geocode-glib-3.16.2/ChangeLog   2015-05-12 20:23:39.0 +0200
+++ new/geocode-glib-3.18.0/ChangeLog   2015-09-20 14:51:33.0 +0200
@@ -1,12 +1,233 @@
-commit f626de7bf9b650a387e074d33b72ae33440e6c4f
+commit a3e183e40053b4bd0fd0b25a070f60597270397a
 Author: Jonas Danielsson 
-Date:   Tue May 12 20:22:56 2015 +0200
+Date:   Sun Sep 20 14:50:31 2015 +0200
 
-Release 3.16.2
+Release 3.18.0
 
- NEWS | 13 +
+ NEWS | 4 
+ configure.ac | 4 ++--
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+commit dd806bdebe5e6290f9028b82c19411f435539747
+Author: Jonas Danielsson 
+Date:   Mon Sep 14 18:19:25 2015 +0200
+
+Release 3.17.92
+
+ NEWS | 12 
  configure.ac |  2 +-
- 2 files changed, 14 insertions(+), 1 deletion(-)
+ 2 files changed, 13 insertions(+), 1 deletion(-)
+
+commit 942cb075b12994949a6096060285b98602529b1a
+Author: Jonas Danielsson 
+Date:   Mon Sep 14 18:27:56 2015 +0200
+
+test-gcglib: Fixup Sata Maria Del Rio
+
+ geocode-glib/test-gcglib.c | 8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+commit 11d6c40e48630bb73077e861daabdaa7adab077c
+Author: Zeeshan Ali (Khattak) 
+Date:   Fri Sep 4 21:14:43 2015 +0100
+
+location: Make timestamp prop writable on construction
+
+While this isn't exactly (nor is it likely to be) needed by geocode-glib
+itself but is needed in geoclue, where we need to set the timestamps on the
+derived GClueLocation object from GPS.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=754797
+
+ geocode-glib/geocode-location.c | 37 -
+ 1 file changed, 32 insertions(+), 5 deletions(-)
+
+commit 27345fc689484fd171b6390d2e489c8d3fc5da52
+Author: Tom Schoonjans 

commit geocode-glib for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2015-05-18 22:00:05

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2015-03-30 19:23:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2015-05-18 22:00:06.0 +0200
@@ -1,0 +2,6 @@
+Tue May 12 19:36:08 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.16.2:
+  + Fix bugs in reverse geocode.
+
+---

Old:

  geocode-glib-3.16.0.tar.xz

New:

  geocode-glib-3.16.2.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.B7wjsp/_old  2015-05-18 22:00:07.0 +0200
+++ /var/tmp/diff_new_pack.B7wjsp/_new  2015-05-18 22:00:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.16.0
+Version:3.16.2
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-3.16.0.tar.xz - geocode-glib-3.16.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/ChangeLog 
new/geocode-glib-3.16.2/ChangeLog
--- old/geocode-glib-3.16.0/ChangeLog   2015-03-22 20:05:01.0 +0100
+++ new/geocode-glib-3.16.2/ChangeLog   2015-05-12 20:23:39.0 +0200
@@ -1,3 +1,55 @@
+commit f626de7bf9b650a387e074d33b72ae33440e6c4f
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Tue May 12 20:22:56 2015 +0200
+
+Release 3.16.2
+
+ NEWS | 13 +
+ configure.ac |  2 +-
+ 2 files changed, 14 insertions(+), 1 deletion(-)
+
+commit 8877b11ad4cdb172323ca5c229a74d4284c1b7e7
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Mon Apr 6 20:04:16 2015 +0200
+
+reverse: Check for NULL from json_reader_list_members()
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/geocode-reverse.c | 4 
+ 1 file changed, 4 insertions(+)
+
+commit a7d4ffc80a33efcd3262b462ce8e66cc71f1e2c9
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Mon Apr 6 20:01:54 2015 +0200
+
+reverse: Check for NULL result in reverse_resolve()
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/geocode-reverse.c | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+commit 31729af20f96c834932d8b65dfcab37dd7cd1c56
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Sun Apr 12 21:03:48 2015 +0200
+
+test-gcglib: Add test for unsuccessful reverse
+
+https://bugzilla.gnome.org/show_bug.cgi?id=747397
+
+ geocode-glib/test-gcglib.c | 20 
+ 1 file changed, 20 insertions(+)
+
+commit bd00b896658abd8e314a63da0414d8578053ed13
+Author: Bastien Nocera had...@hadess.net
+Date:   Mon Mar 30 15:28:44 2015 +0200
+
+forward: Move variable init in an inner block
+
+ geocode-glib/geocode-forward.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
 commit c7e81417ab0faee26ff353a63ab76dc153321524
 Author: Jonas Danielsson jo...@threetimestwo.org
 Date:   Sun Mar 22 19:58:42 2015 +0100
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/NEWS new/geocode-glib-3.16.2/NEWS
--- old/geocode-glib-3.16.0/NEWS2015-03-22 19:58:32.0 +0100
+++ new/geocode-glib-3.16.2/NEWS2015-05-12 20:22:43.0 +0200
@@ -1,3 +1,16 @@
+3.16.2
+--
+
+Changes since 3.16.0:
+
+- Fix bugs in reverse geocode
+
+All contributors to this release:
+Bastien Nocera had...@hadess.net
+Jonas Danielsson jo...@threetimestwo.org
+
+No changes
+
 3.16.0
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.16.0/configure 
new/geocode-glib-3.16.2/configure
--- old/geocode-glib-3.16.0/configure   2015-03-22 19:59:57.0 +0100
+++ new/geocode-glib-3.16.2/configure   2015-05-12 20:23:34.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for geocode-glib 3.16.0.
+# Generated by GNU Autoconf 2.69 for geocode-glib 3.16.2.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=geocode-glib.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='geocode-glib'
 PACKAGE_TARNAME='geocode-glib'
-PACKAGE_VERSION='3.16.0'
-PACKAGE_STRING='geocode-glib 3.16.0'
+PACKAGE_VERSION='3.16.2'
+PACKAGE_STRING='geocode-glib 3.16.2'
 

commit geocode-glib for openSUSE:Factory

2015-03-30 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2015-03-30 19:23:58

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2014-10-19 19:27:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2015-03-30 19:23:59.0 +0200
@@ -1,0 +2,29 @@
+Mon Mar 23 08:17:01 UTC 2015 - dims...@opensuse.org
+
+- Update to version 3.16.0:
+  + No changes.
+
+---
+Tue Jan 13 00:45:47 UTC 2015 - badshah...@gmail.com
+
+- Update to version 3.15.4:
+  + Derive the order of street name and street number from locale
+(GLIBC only).
+
+---
+Wed Dec 17 19:53:27 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.15.3.1:
+  + Switch to https:// and fix the geocode cache.
+  + Fix gtkdoc-check errors.
+- Changes from version 3.15.3:
+  + Add osm_type property to geocode place.
+
+---
+Fri Nov 28 19:18:17 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.15.2:
+  + Fix error handling in parsing of URIs.
+  + Allow escape characters in URIs.
+
+---

Old:

  geocode-glib-3.14.0.tar.xz

New:

  geocode-glib-3.16.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.hWH2gP/_old  2015-03-30 19:23:59.0 +0200
+++ /var/tmp/diff_new_pack.hWH2gP/_new  2015-03-30 19:23:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package geocode-glib
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.14.0
+Version:3.16.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.14/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.16/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel

++ geocode-glib-3.14.0.tar.xz - geocode-glib-3.16.0.tar.xz ++
 7222 lines of diff (skipped)




commit geocode-glib for openSUSE:Factory

2014-10-19 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2014-10-19 19:27:31

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2014-09-30 19:40:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2014-10-19 19:27:33.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 16 19:53:02 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Add baselibs.conf: provide multi-arch packages.
+
+---

New:

  baselibs.conf



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.Zr0TCn/_old  2014-10-19 19:27:34.0 +0200
+++ /var/tmp/diff_new_pack.Zr0TCn/_new  2014-10-19 19:27:34.0 +0200
@@ -24,6 +24,7 @@
 Group:  System/Libraries
 Url:http://www.gnome.org/
 Source: 
http://download.gnome.org/sources/geocode-glib/3.14/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
 # Needed for post/postun scripts

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



commit geocode-glib for openSUSE:Factory

2014-09-30 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2014-09-30 19:39:13

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2014-05-20 14:27:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2014-09-30 19:40:44.0 +0200
@@ -1,0 +2,15 @@
+Tue Sep 23 15:28:52 UTC 2014 - dims...@opensuse.org
+
+- Update to version 3.14.0:
+  + Add category and programming language to doap file.
+
+---
+Sat Jul 12 21:51:36 UTC 2014 - dims...@opensuse.org
+
+- Update to version 3.13.3:
+  + Add types and icons for more amenity place types.
+  + Fix memory leaks in geo uri handling.
+  + Add description extension to geo uri.
+  + Add cancellable check to all GSimpleAsyncResult.
+
+---

Old:

  geocode-glib-3.12.2.tar.xz

New:

  geocode-glib-3.14.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.uTMUMr/_old  2014-09-30 19:40:44.0 +0200
+++ /var/tmp/diff_new_pack.uTMUMr/_new  2014-09-30 19:40:44.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   geocode-glib
-Version:3.12.2
+Version:3.14.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/3.12/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.14/%{name}-%{version}.tar.xz
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
 # Needed for post/postun scripts

++ geocode-glib-3.12.2.tar.xz - geocode-glib-3.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-3.12.2/ChangeLog 
new/geocode-glib-3.14.0/ChangeLog
--- old/geocode-glib-3.12.2/ChangeLog   2014-05-13 07:13:37.0 +0200
+++ new/geocode-glib-3.14.0/ChangeLog   2014-09-23 17:07:20.0 +0200
@@ -1,14 +1,68 @@
-commit 093fb65e387f5429d2a417ca81a285cceccf211b
+commit ae38d319a9c1a85ae3c33bb68ad91d04ee50047c
 Author: Jonas Danielsson jo...@threetimestwo.org
-Date:   Tue May 13 07:12:47 2014 +0200
+Date:   Tue Sep 23 17:05:19 2014 +0200
 
-Release 3.12.2
+Release 3.14.0
 
- NEWS | 11 +++
+ NEWS | 12 
+ configure.ac |  4 ++--
+ 2 files changed, 14 insertions(+), 2 deletions(-)
+
+commit f27719627334c2d79039641394e092e2c5ca1a52
+Author: Andre Klapper a9016...@gmx.de
+Date:   Fri Aug 1 11:55:28 2014 +0200
+
+doap: add programming-language
+
+ geocode-glib.doap | 1 +
+ 1 file changed, 1 insertion(+)
+
+commit 410668f49dc51769c4aaab3f00e100d436e705cf
+Author: Olav Vitters o...@vitters.nl
+Date:   Wed Jul 30 19:46:02 2014 +0200
+
+doap category core
+
+ geocode-glib.doap | 1 +
+ 1 file changed, 1 insertion(+)
+
+commit ed1a162a781baa106e0e72ca6374d89e58b86819
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Wed Jun 25 00:37:17 2014 +0200
+
+Release 3.13.3
+
+ NEWS | 16 
  configure.ac |  2 +-
- 2 files changed, 12 insertions(+), 1 deletion(-)
+ 2 files changed, 17 insertions(+), 1 deletion(-)
+
+commit 6fa239b5aba73d135432410250449bd351993eb6
+Author: Giovanni Campagna gcampa...@src.gnome.org
+Date:   Wed Jun 18 21:59:31 2014 +0200
+
+Set the cancellable to check on each GSimpleAsyncResult
+
+This provides the expected semantics that cancelling an async call
+trumps on any successful result or previous error.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=731880
+
+ geocode-glib/geocode-forward.c | 1 +
+ geocode-glib/geocode-reverse.c | 1 +
+ 2 files changed, 2 insertions(+)
 
-commit 12c116d619eea25c6f779a91b51b289ca6b6d0ff
+commit 538e625aac0fae7ea65c0187920cd03a807ecddd
+Author: Jonas Danielsson jo...@threetimestwo.org
+Date:   Tue Apr 8 22:24:44 2014 +0200
+
+forward: Document geo URI scheme usage
+
+https://bugzilla.gnome.org/show_bug.cgi?id=727861
+
+ geocode-glib/geocode-location.c | 11 +++
+ 1 file changed, 11 insertions(+)
+
+commit a7fb78ec5b506e0bfd600529e672a13b81a22f64
 Author: Jonas Danielsson jo...@threetimestwo.org
 Date:   Thu May 8 12:15:02 2014 +0200
 
@@ -19,7 +73,7 @@
  geocode-glib/geocode-location.c | 14 +-
  1 file changed, 9 insertions(+), 5 deletions(-)
 
-commit 

commit geocode-glib for openSUSE:Factory

2014-05-20 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2014-05-20 14:25:39

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2014-05-05 21:15:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2014-05-20 14:27:10.0 +0200
@@ -1,0 +2,6 @@
+Sat May 17 07:49:06 UTC 2014 - zai...@opensuse.org
+
+- Update to version 3.12.2:
+  + Fix memory leaks in 'geo' URI parsing and testing.
+
+---

Old:

  geocode-glib-3.12.0.tar.xz

New:

  geocode-glib-3.12.2.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.2FzyDq/_old  2014-05-20 14:27:11.0 +0200
+++ /var/tmp/diff_new_pack.2FzyDq/_new  2014-05-20 14:27:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:3.12.0
+Version:3.12.2
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-3.12.0.tar.xz - geocode-glib-3.12.2.tar.xz ++
 2372 lines of diff (skipped)

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



commit geocode-glib for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2013-09-27 17:11:04

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2013-09-23 12:08:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2013-09-27 17:11:05.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 23 17:09:28 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.10.0:
+  + Depend on json-glib = 0.16.2 to avoid conflict w/ json-c.
+  + Remove a now redundant workaround from a testcase.
+  + Fix `make distcheck` against latest gtk-doc.
+
+---

Old:

  geocode-glib-0.99.4.tar.xz

New:

  geocode-glib-3.10.0.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.Ko9kJq/_old  2013-09-27 17:11:05.0 +0200
+++ /var/tmp/diff_new_pack.Ko9kJq/_new  2013-09-27 17:11:05.0 +0200
@@ -17,18 +17,18 @@
 
 
 Name:   geocode-glib
-Version:0.99.4
+Version:3.10.0
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/geocode-glib/0.99/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/geocode-glib/3.10/%{name}-%{version}.tar.xz
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(gio-2.0) = 2.34
-BuildRequires:  pkgconfig(json-glib-1.0) = 0.14
+BuildRequires:  pkgconfig(json-glib-1.0) = 0.16.2
 BuildRequires:  pkgconfig(libsoup-2.4)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ geocode-glib-0.99.4.tar.xz - geocode-glib-3.10.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-0.99.4/ChangeLog 
new/geocode-glib-3.10.0/ChangeLog
--- old/geocode-glib-0.99.4/ChangeLog   2013-09-17 16:51:19.0 +0200
+++ new/geocode-glib-3.10.0/ChangeLog   2013-09-23 17:31:47.0 +0200
@@ -1,3 +1,54 @@
+commit: fb5269a fb5269aeabdcdf5ba8530f9eeafff73eef9266ed
+Author: Zeeshan Ali (Khattak) zeesha...@gnome.org
+Date:   Mon Sep 23 17:48:13 2013 +0300
+
+Release 3.10.0
+
+
+ NEWS | 14 ++
+ configure.ac |  6 +++---
+ 2 files changed, 17 insertions(+), 3 deletions(-)
+commit: 566b8d5 566b8d54ca2ce08776050aaa1e110783f04e8dc2
+Author: Zeeshan Ali (Khattak) zeesha...@gnome.org
+Date:   Mon Sep 23 18:24:04 2013 +0300
+
+Fix docs build
+
+For details: https://bugzilla.gnome.org/show_bug.cgi?id=701638#c15
+
+
+ docs/Makefile.am | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+commit: 8488e33 8488e337a85ef01563ca078a073ffc98724e5f8d
+Author: Kalev Lember kalevlem...@gmail.com
+Date:   Mon Sep 23 15:18:55 2013 +0200
+
+build: Depend on json-glib 0.16.2
+
+Even though we don't need any new symbols from json-glib  0.14, bump
+the required version to 0.16.2 to make sure we are building against the
+version of json-glib that's built with the -Bsymbolic linker flag.
+
+Fixes a possible crash in gnome-settings-daemon.
+
+
http://blogs.gnome.org/ebassi/2013/09/16/do-not-link-against-pulseaudio-and-json-glib-0-16/
+
+
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+commit: 326f208 326f20829da92c39a1d623f53e06cbc0f049069a
+Author: Zeeshan Ali (Khattak) zeesha...@gnome.org
+Date:   Tue Sep 17 21:25:45 2013 +0300
+
+test-gcglib: Remove a now redundant workaround
+
+This ticket has been resolved so we don't need to workaround it:
+
+https://trac.openstreetmap.org/ticket/4918
+
+
+ geocode-glib/test-gcglib.c | 5 +
+ 1 file changed, 1 insertion(+), 4 deletions(-)
 commit: ca37952 ca379525bc0ea75fc7d78f7810e155063874a989
 Author: Zeeshan Ali (Khattak) zeesha...@gnome.org
 Date:   Tue Sep 17 17:43:09 2013 +0300
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geocode-glib-0.99.4/Makefile.in 
new/geocode-glib-3.10.0/Makefile.in
--- old/geocode-glib-0.99.4/Makefile.in 2013-09-17 16:51:09.0 +0200
+++ new/geocode-glib-3.10.0/Makefile.in 2013-09-23 17:31:37.0 +0200
@@ -268,6 +268,7 @@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
 GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
 GTKDOC_DEPS_CFLAGS = 

commit geocode-glib for openSUSE:Factory

2013-09-23 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2013-09-23 12:08:36

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2013-09-11 11:36:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2013-09-23 12:08:37.0 +0200
@@ -1,0 +2,13 @@
+Tue Sep 17 17:01:31 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.99.4:
+  + Fixes to gobject-introspection.
+  + Version documentation installation directory.
+  + Documentation build fixes.
+  + Explicitly link to libm.
+  + Fix a leak.
+  + Sync GeocodeLocation with its copy in Geoclue.
+  + Ensure country codes are always in upper-case.
+  + Some cleanups.
+
+---

Old:

  geocode-glib-0.99.3.tar.xz

New:

  geocode-glib-0.99.4.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.fwW4tQ/_old  2013-09-23 12:08:38.0 +0200
+++ /var/tmp/diff_new_pack.fwW4tQ/_new  2013-09-23 12:08:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:0.99.3
+Version:0.99.4
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
@@ -113,7 +113,7 @@
 
 %files devel
 %defattr(-,root,root)
-%doc %{_datadir}/gtk-doc/html/geocode-glib/
+%doc %{_datadir}/gtk-doc/html/geocode-glib-1.0/
 %{_datadir}/gir-1.0/*.gir
 %{_includedir}/geocode-glib-1.0/
 %{_libdir}/pkgconfig/geocode-glib-1.0.pc

++ geocode-glib-0.99.3.tar.xz - geocode-glib-0.99.4.tar.xz ++
 7304 lines of diff (skipped)

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



commit geocode-glib for openSUSE:Factory

2013-09-11 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2013-09-11 11:36:11

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2013-08-30 16:21:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2013-09-11 11:36:12.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  3 06:39:28 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.99.3:
+  + Fix a crash in reverse geocoding API.
+  + Expose place icons when available from Nominatim.
+  + Make GeocodeReverse locale safe.
+  + Fix build against latest gnome-common.
+
+---

Old:

  geocode-glib-0.99.2.tar.xz

New:

  geocode-glib-0.99.3.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.S3fg7I/_old  2013-09-11 11:36:14.0 +0200
+++ /var/tmp/diff_new_pack.S3fg7I/_new  2013-09-11 11:36:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:0.99.2
+Version:0.99.3
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+

++ geocode-glib-0.99.2.tar.xz - geocode-glib-0.99.3.tar.xz ++
 15700 lines of diff (skipped)

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



commit geocode-glib for openSUSE:Factory

2013-08-30 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2013-08-30 16:21:31

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2013-08-16 12:25:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2013-08-30 16:21:33.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 21 06:46:26 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.99.2:
+  + Make use of our new proxy to Nominatim at nominatim.gnome.org.
+  + Better name/description for street numbers.
+  + Fixes to build.
+  + Drop all geoip code, which has been moved to Geoclue where it
+belongs.
+  + Fix failing testcases.
+- Drop pkgconfig(geoip) BuildRequires: no longer needed.
+
+---

Old:

  geocode-glib-0.99.1.tar.xz

New:

  geocode-glib-0.99.2.tar.xz



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.Qwo55P/_old  2013-08-30 16:21:36.0 +0200
+++ /var/tmp/diff_new_pack.Qwo55P/_new  2013-08-30 16:21:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   geocode-glib
-Version:0.99.1
+Version:0.99.2
 Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
@@ -27,7 +27,6 @@
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  intltool
-BuildRequires:  pkgconfig(geoip)
 BuildRequires:  pkgconfig(gio-2.0) = 2.34
 BuildRequires:  pkgconfig(json-glib-1.0) = 0.14
 BuildRequires:  pkgconfig(libsoup-2.4)
@@ -103,10 +102,6 @@
 
 %postun -n libgeocode-glib0 -p /sbin/ldconfig
 
-%files
-%defattr(-,root,root)
-%{_bindir}/geoip-update
-
 %files -n libgeocode-glib0
 %defattr(-,root,root)
 %doc AUTHORS COPYING.LIB NEWS README

++ geocode-glib-0.99.1.tar.xz - geocode-glib-0.99.2.tar.xz ++
 10749 lines of diff (skipped)

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



commit geocode-glib for openSUSE:Factory

2012-01-09 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2012-01-09 12:04:24

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/geocode-glib/geocode-glib.changes
2011-09-23 01:59:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.geocode-glib.new/geocode-glib.changes   
2012-01-09 12:04:26.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec  9 09:27:41 UTC 2011 - dims...@opensuse.org
+
+- Split typelib file into typelib-1_0-GeocodeGlib-1_0 subpackage.
+- Add typelib-1_0-GeocodeGlib-1_0 Requires to devel subpackage.
+
+---



Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.vWuBL6/_old  2012-01-09 12:04:27.0 +0100
+++ /var/tmp/diff_new_pack.vWuBL6/_new  2012-01-09 12:04:27.0 +0100
@@ -15,11 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   geocode-glib
 Version:0.99.0
-Release:1
+Release:0
 Summary:Convenience library for the Yahoo! Place Finder APIs
 License:LGPL-2.0+
 Group:  System/Libraries
@@ -42,7 +40,6 @@
 from coordinates).
 
 %package -n libgeocode-glib0
-License:LGPL-2.0+
 Summary:Convenience library for the Yahoo! Place Finder APIs
 Group:  System/Libraries
 
@@ -54,11 +51,26 @@
 and latitude from an address), and reverse geocoding (finding an address
 from coordinates).
 
+%package -n typelib-1_0-GeocodeGlib-1_0
+Summary:Convenience library for the Yahoo! Place Finder APIs -- 
Introspection bindings
+Group:  System/Libraries
+
+%description -n typelib-1_0-GeocodeGlib-1_0
+The geocode-glib library is a convenience library for the Yahoo! Place
+Finder APIs, as described at http://developer.yahoo.com/geo/placefinder/
+
+The Place Finder web service allows to do geocoding (finding longitude
+and latitude from an address), and reverse geocoding (finding an address
+from coordinates).
+
+This package provides the GObject Introspection bindings for the
+geocode-glib library.
+
 %package devel
-License:LGPL-2.0+
 Summary:Convenience library for the Yahoo! Place Finder APIs -- 
Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libgeocode-glib0 = %{version}
+Requires:   typelib-1_0-GeocodeGlib-1_0 = %{version}
 
 %description devel
 The geocode-glib library is a convenience library for the Yahoo! Place
@@ -93,6 +105,9 @@
 %defattr(-,root,root)
 %doc AUTHORS COPYING.LIB NEWS README
 %{_libdir}/*.so.*
+
+%files -n typelib-1_0-GeocodeGlib-1_0
+%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GeocodeGlib-1.0.typelib
 
 %files devel

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



commit geocode-glib for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package geocode-glib for openSUSE:Factory 
checked in at 2011-12-06 18:12:09

Comparing /work/SRC/openSUSE:Factory/geocode-glib (Old)
 and  /work/SRC/openSUSE:Factory/.geocode-glib.new (New)


Package is geocode-glib, Maintainer is 

Changes:




Other differences:
--
++ geocode-glib.spec ++
--- /var/tmp/diff_new_pack.VgxJJJ/_old  2011-12-06 18:17:27.0 +0100
+++ /var/tmp/diff_new_pack.VgxJJJ/_new  2011-12-06 18:17:27.0 +0100
@@ -21,7 +21,7 @@
 Version:0.99.0
 Release:1
 Summary:Convenience library for the Yahoo! Place Finder APIs
-License:LGPLv2.0+
+License:LGPL-2.0+
 Group:  System/Libraries
 Url:http://www.gnome.org/
 Source: 
http://download.gnome.org/sources/geocode-glib/0.99/%{name}-%{version}.tar.bz2
@@ -42,7 +42,7 @@
 from coordinates).
 
 %package -n libgeocode-glib0
-License:LGPLv2.0+
+License:LGPL-2.0+
 Summary:Convenience library for the Yahoo! Place Finder APIs
 Group:  System/Libraries
 
@@ -55,7 +55,7 @@
 from coordinates).
 
 %package devel
-License:LGPLv2.0+
+License:LGPL-2.0+
 Summary:Convenience library for the Yahoo! Place Finder APIs -- 
Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libgeocode-glib0 = %{version}

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