SHA256
1
0
forked from pool/tracker

Accepting request 251961 from GNOME:Next

Push GNOME 3.14.0

OBS-URL: https://build.opensuse.org/request/show/251961
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/tracker?expand=0&rev=63
This commit is contained in:
Dominique Leuenberger 2014-09-25 07:43:13 +00:00 committed by Git OBS Bridge
parent a7bc43011a
commit e333abb4ee
7 changed files with 73 additions and 54 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6bf24fe9f51fdf5e02b2dcaf72567c923efe0fe7d560b0ec3be7ab4b045b8be6
size 6253820

3
tracker-1.2.2.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b2fe9e8bebef355dbe17711dbd95b96438717aa737787e683d5808f9d9dfc228
size 6118900

View File

@ -1,3 +1,36 @@
-------------------------------------------------------------------
Wed Sep 24 16:37:00 UTC 2014 - dimstar@opensuse.org
- Update to version 1.2.2:
+ Fix API break with tracker_indexing_tree_new() (bgo#737243).
+ libtracker-miner: Fixed missing Vala bindings for new
DirectoryFlags.{PRIORITY|NO_STAT} enums.
-------------------------------------------------------------------
Tue Sep 23 18:36:42 UTC 2014 - zaitor@opensuse.org
- Update to version 1.2.1:
+ ontology: Revert nfo:hasMediaStream max cardinality change.
-------------------------------------------------------------------
Mon Sep 22 17:17:31 UTC 2014 - zaitor@opensuse.org
- Update to version 1.2.0:
+ tests: Locale fix.
+ libtracker-miner:
- Removed APIs that were never released as stable API.
- Update vala binding.
+ libtracker-bus: Don't crash if query_async is cancelled.
+ libtracker-sparql: Add a test case.
+ tracker-extract-gif: add compatibility with GIFLib 5.1.0.
+ tracker-info: Describe why we use IRI and not URI for
translators.
+ tracker-needle: Fix the summary in the AppData file.
+ utils: Added script to clean up tracker prefixc,
clean-tracker-prefix.
+ Updated translations.
- Drop tracker-giflib-5.1.0.patch: Fixed upstream.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 9 13:14:59 UTC 2014 - jengelh@inai.de Tue Sep 9 13:14:59 UTC 2014 - jengelh@inai.de

View File

@ -45,7 +45,7 @@
# Do not edit this auto generated file! Edit tracker.spec. # Do not edit this auto generated file! Edit tracker.spec.
Name: tracker-extras Name: tracker-extras
%define _name tracker %define _name tracker
Version: 1.1.4 Version: 1.2.2
Release: 0 Release: 0
%define TrackerAPI 1.0 %define TrackerAPI 1.0
%define RPMTrackerAPI 1_0 %define RPMTrackerAPI 1_0
@ -53,13 +53,11 @@ Summary: Powerful object database, tag/metadata database, search tool and
License: GPL-2.0+ License: GPL-2.0+
Group: Productivity/Other Group: Productivity/Other
Url: http://projects.gnome.org/tracker/ Url: http://projects.gnome.org/tracker/
Source0: http://download.gnome.org/sources/tracker/1.1/%{_name}-%{version}.tar.xz Source0: http://download.gnome.org/sources/tracker/1.2/%{_name}-%{version}.tar.xz
# Needed for patch0: we need to bootstrap # Needed for patch0: we need to bootstrap
Source2: README.SUSE.rss Source2: README.SUSE.rss
# PATCH-FIX-UPSTREAM tracker-extract-private.patch bgo#725689 dimstar@opensuse.org -- Do not maintain LT versioning for private libs # PATCH-FIX-UPSTREAM tracker-extract-private.patch bgo#725689 dimstar@opensuse.org -- Do not maintain LT versioning for private libs
Patch0: tracker-extract-private.patch Patch0: tracker-extract-private.patch
# PATCH-FIX-UPSTREAM tracker-giflib-5.1.0.patch bgo#736328 dimstar@opensuse.org -- Support new GIFLib 5.1.0 API
Patch1: tracker-giflib-5.1.0.patch
BuildRequires: NetworkManager-devel >= 0.8 BuildRequires: NetworkManager-devel >= 0.8
BuildRequires: enca-devel BuildRequires: enca-devel
BuildRequires: fdupes BuildRequires: fdupes
@ -479,7 +477,6 @@ This package contains an nautilus plugin to tag files with Tracker.
%prep %prep
%setup -q -n %{_name}-%{version} %setup -q -n %{_name}-%{version}
%patch0 -p1 %patch0 -p1
%patch1 -p1
translation-update-upstream translation-update-upstream
cp %{S:2} src/miners/rss/README.SUSE cp %{S:2} src/miners/rss/README.SUSE

View File

@ -1,41 +0,0 @@
From 48f9d0153fd6bde9490ec821d73856a3924f2a25 Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de>
Date: Tue, 9 Sep 2014 15:09:28 +0200
Subject: [PATCH] tracker-extract-gif: add compatibility with GIFLib 5.1.0
Signed-off-by: Dominique Leuenberger <dimstar@opensuse.org>
https://bugzilla.gnome.org/show_bug.cgi?id=736328
---
src/tracker-extract/tracker-extract-gif.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/tracker-extract/tracker-extract-gif.c b/src/tracker-extract/tracker-extract-gif.c
index 43ba34a..10f87dc 100644
--- a/src/tracker-extract/tracker-extract-gif.c
+++ b/src/tracker-extract/tracker-extract-gif.c
@@ -96,6 +96,12 @@ static inline void print_gif_error()
}
#endif /* GIFLIB_MAJOR >= 5 */
+/* giflib 5.1 changed the API of DGifCloseFile to take two arguments */
+#if !defined(GIFLIB_MAJOR) || \
+ !(GIFLIB_MAJOR > 5 || (GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1))
+#define DGifCloseFile(a, b) DGifCloseFile(a)
+#endif
+
static void
read_metadata (TrackerSparqlBuilder *preupdate,
TrackerSparqlBuilder *metadata,
@@ -680,7 +686,7 @@ tracker_extract_get_metadata (TrackerExtractInfo *info)
g_free (uri);
- if (DGifCloseFile (gifFile) != GIF_OK) {
+ if (DGifCloseFile (gifFile, NULL) != GIF_OK) {
#if GIFLIB_MAJOR < 5
print_gif_error ();
#else /* GIFLIB_MAJOR < 5 */
--
2.0.4

View File

@ -1,3 +1,36 @@
-------------------------------------------------------------------
Wed Sep 24 16:37:00 UTC 2014 - dimstar@opensuse.org
- Update to version 1.2.2:
+ Fix API break with tracker_indexing_tree_new() (bgo#737243).
+ libtracker-miner: Fixed missing Vala bindings for new
DirectoryFlags.{PRIORITY|NO_STAT} enums.
-------------------------------------------------------------------
Tue Sep 23 18:36:42 UTC 2014 - zaitor@opensuse.org
- Update to version 1.2.1:
+ ontology: Revert nfo:hasMediaStream max cardinality change.
-------------------------------------------------------------------
Mon Sep 22 17:17:31 UTC 2014 - zaitor@opensuse.org
- Update to version 1.2.0:
+ tests: Locale fix.
+ libtracker-miner:
- Removed APIs that were never released as stable API.
- Update vala binding.
+ libtracker-bus: Don't crash if query_async is cancelled.
+ libtracker-sparql: Add a test case.
+ tracker-extract-gif: add compatibility with GIFLib 5.1.0.
+ tracker-info: Describe why we use IRI and not URI for
translators.
+ tracker-needle: Fix the summary in the AppData file.
+ utils: Added script to clean up tracker prefixc,
clean-tracker-prefix.
+ Updated translations.
- Drop tracker-giflib-5.1.0.patch: Fixed upstream.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 9 13:14:59 UTC 2014 - jengelh@inai.de Tue Sep 9 13:14:59 UTC 2014 - jengelh@inai.de

View File

@ -44,7 +44,7 @@
Name: tracker Name: tracker
%define _name tracker %define _name tracker
Version: 1.1.4 Version: 1.2.2
Release: 0 Release: 0
%define TrackerAPI 1.0 %define TrackerAPI 1.0
%define RPMTrackerAPI 1_0 %define RPMTrackerAPI 1_0
@ -52,13 +52,11 @@ Summary: Powerful object database, tag/metadata database, search tool and
License: GPL-2.0+ License: GPL-2.0+
Group: Productivity/Other Group: Productivity/Other
Url: http://projects.gnome.org/tracker/ Url: http://projects.gnome.org/tracker/
Source0: http://download.gnome.org/sources/tracker/1.1/%{_name}-%{version}.tar.xz Source0: http://download.gnome.org/sources/tracker/1.2/%{_name}-%{version}.tar.xz
# Needed for patch0: we need to bootstrap # Needed for patch0: we need to bootstrap
Source2: README.SUSE.rss Source2: README.SUSE.rss
# PATCH-FIX-UPSTREAM tracker-extract-private.patch bgo#725689 dimstar@opensuse.org -- Do not maintain LT versioning for private libs # PATCH-FIX-UPSTREAM tracker-extract-private.patch bgo#725689 dimstar@opensuse.org -- Do not maintain LT versioning for private libs
Patch0: tracker-extract-private.patch Patch0: tracker-extract-private.patch
# PATCH-FIX-UPSTREAM tracker-giflib-5.1.0.patch bgo#736328 dimstar@opensuse.org -- Support new GIFLib 5.1.0 API
Patch1: tracker-giflib-5.1.0.patch
BuildRequires: NetworkManager-devel >= 0.8 BuildRequires: NetworkManager-devel >= 0.8
BuildRequires: enca-devel BuildRequires: enca-devel
BuildRequires: fdupes BuildRequires: fdupes
@ -478,7 +476,6 @@ This package contains an nautilus plugin to tag files with Tracker.
%prep %prep
%setup -q -n %{_name}-%{version} %setup -q -n %{_name}-%{version}
%patch0 -p1 %patch0 -p1
%patch1 -p1
translation-update-upstream translation-update-upstream
cp %{S:2} src/miners/rss/README.SUSE cp %{S:2} src/miners/rss/README.SUSE