Accepting request 374517 from GNOME:Next

Scripted push of project GNOME:Next

OBS-URL: https://build.opensuse.org/request/show/374517
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/tracker?expand=0&rev=90
This commit is contained in:
Dominique Leuenberger 2016-03-18 10:09:12 +00:00 committed by Git OBS Bridge
parent 39e265da34
commit ebbbfeef1c
7 changed files with 73 additions and 39 deletions

View File

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

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

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

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Tue Mar 15 09:52:54 UTC 2016 - dimstar@opensuse.org
- Update to version 1.7.5:
+ Add back .trackerignore match to
ignored-directories-with-content.
+ libtracker-data: Handle inserts where the subproperty
cardinality is larger than the parents'.
+ tracker-extract:
- Fix gstreamer module cuesheet handling.
- Protect all single-valued properties in abiword extractor.
- Protect all single-valued properties in EPUB extractor.
- Protect all single-valued properties in ooxml extractor.
- Protect all single-valued properties in oasis extractor.
- Protect all single-valued properties in HTML extractor.
- Check string length before parsing XMP in PDF extractor.
- Add missing application/msword mimetype.
- Remove old dbus interface xml.
- propagate urn to the TrackerExtractInfo.
- Use safer method to insert tags in PDF module.
- Use safer method to insert tags in GIF module.
- Use safer method to insert tags in JPEG module.
- Use safer method to insert tags in TIFF module.
- Use safer method to insert tags in PNG module.
+ libtracker-extract: Delete TrackerExtractClient.
+ libtracker-miner:
- Avoid querying file type in crawling queries.
- Cut some slack on the reentry counter.
- Avoid changing order of elements in processing queue.
- Initialize all NodeData memory.
- Ensure the directory root is removed when its indexing root
is.
- Drop tracker-trackerignore.patch: fixed upstream.
-------------------------------------------------------------------
Tue Mar 8 20:00:38 UTC 2016 - dimstar@opensuse.org

View File

@ -41,7 +41,7 @@
# Do not edit this auto generated file! Edit tracker.spec.
Name: tracker-extras
%define _name tracker
Version: 1.7.4
Version: 1.7.5
Release: 0
%define TrackerAPI 1.0
%define RPMTrackerAPI 1_0
@ -54,8 +54,6 @@ Source0: http://download.gnome.org/sources/tracker/1.7/%{_name}-%{version
Source2: README.SUSE.rss
# 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
# PATCH-FIX-UPSTREAM tracker-trackerignore.patch dimstar@opensuse.org -- Add back .trackerignore as file to track directories to ignore
Patch1: tracker-trackerignore.patch
BuildRequires: NetworkManager-devel >= 0.8
BuildRequires: enca-devel
BuildRequires: fdupes
@ -471,7 +469,6 @@ This package contains an nautilus plugin to tag files with Tracker.
%prep
%setup -q -n %{_name}-%{version}
%patch0 -p1
%patch1 -p1
translation-update-upstream
cp %{S:2} src/miners/rss/README.SUSE

View File

@ -1,28 +0,0 @@
From cdc6053c03f85c498e8bf48fd313e467ece7f3e3 Mon Sep 17 00:00:00 2001
From: Carlos Garnacho <carlosg@gnome.org>
Date: Tue, 1 Mar 2016 23:55:37 +0100
Subject: tracker-miner-fs: Add back .trackerignore to
ignored-directories-with-content
It is not the antique I thought it was, actually it's actively used around.
---
src/miners/fs/org.freedesktop.Tracker.Miner.Files.gschema.xml.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/miners/fs/org.freedesktop.Tracker.Miner.Files.gschema.xml.in b/src/miners/fs/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
index 193caea..f24ed2c 100644
--- a/src/miners/fs/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
+++ b/src/miners/fs/org.freedesktop.Tracker.Miner.Files.gschema.xml.in
@@ -156,7 +156,7 @@ Boston, MA 02110-1301, USA.
<key name="ignored-directories-with-content" type="as">
<_summary>Ignored directories with content</_summary>
<_description>Avoid any directory containing a file blacklisted here</_description>
- <default>[ '.git' ]</default>
+ <default>[ '.trackerignore', '.git' ]</default>
</key>
</schema>
</schemalist>
--
cgit v0.12

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Tue Mar 15 09:52:54 UTC 2016 - dimstar@opensuse.org
- Update to version 1.7.5:
+ Add back .trackerignore match to
ignored-directories-with-content.
+ libtracker-data: Handle inserts where the subproperty
cardinality is larger than the parents'.
+ tracker-extract:
- Fix gstreamer module cuesheet handling.
- Protect all single-valued properties in abiword extractor.
- Protect all single-valued properties in EPUB extractor.
- Protect all single-valued properties in ooxml extractor.
- Protect all single-valued properties in oasis extractor.
- Protect all single-valued properties in HTML extractor.
- Check string length before parsing XMP in PDF extractor.
- Add missing application/msword mimetype.
- Remove old dbus interface xml.
- propagate urn to the TrackerExtractInfo.
- Use safer method to insert tags in PDF module.
- Use safer method to insert tags in GIF module.
- Use safer method to insert tags in JPEG module.
- Use safer method to insert tags in TIFF module.
- Use safer method to insert tags in PNG module.
+ libtracker-extract: Delete TrackerExtractClient.
+ libtracker-miner:
- Avoid querying file type in crawling queries.
- Cut some slack on the reentry counter.
- Avoid changing order of elements in processing queue.
- Initialize all NodeData memory.
- Ensure the directory root is removed when its indexing root
is.
- Drop tracker-trackerignore.patch: fixed upstream.
-------------------------------------------------------------------
Tue Mar 8 20:00:38 UTC 2016 - dimstar@opensuse.org

View File

@ -40,7 +40,7 @@
Name: tracker
%define _name tracker
Version: 1.7.4
Version: 1.7.5
Release: 0
%define TrackerAPI 1.0
%define RPMTrackerAPI 1_0
@ -53,8 +53,6 @@ Source0: http://download.gnome.org/sources/tracker/1.7/%{_name}-%{version
Source2: README.SUSE.rss
# 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
# PATCH-FIX-UPSTREAM tracker-trackerignore.patch dimstar@opensuse.org -- Add back .trackerignore as file to track directories to ignore
Patch1: tracker-trackerignore.patch
BuildRequires: NetworkManager-devel >= 0.8
BuildRequires: enca-devel
BuildRequires: fdupes
@ -470,7 +468,6 @@ This package contains an nautilus plugin to tag files with Tracker.
%prep
%setup -q -n %{_name}-%{version}
%patch0 -p1
%patch1 -p1
translation-update-upstream
cp %{S:2} src/miners/rss/README.SUSE