Accepting request 240653 from GNOME:Factory
1 OBS-URL: https://build.opensuse.org/request/show/240653 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tracker?expand=0&rev=67
This commit is contained in:
commit
50fffd958b
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:76e7918e62526a8209f9c9226f82abe592a6332826ac7c12e6e405063181e889
|
||||
size 6060276
|
3
tracker-1.0.2.tar.xz
Normal file
3
tracker-1.0.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:73491517006a58802630ff28243fc6fe07a24fe8bea563670da0ad28595468c4
|
||||
size 6046600
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 11 15:52:39 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 1.0.2:
|
||||
+ build: use pkg-config to look for which gdbus-codegen to use.
|
||||
+ all: Switch out GSettings "schema" property for "schema-id",
|
||||
was causing distcheck to fail.
|
||||
+ docs/reference: Use $(top_srcdir) for DOC_SOURCE_DIR instead of
|
||||
relative paths.
|
||||
+ libtracker-common: memory limits on systems with large amounts
|
||||
of RAM.
|
||||
+ libtracker-control:
|
||||
- Added CFLAGS/LIBS required for reference documentation to
|
||||
succeed.
|
||||
- Fix remnants of libtracker-miner in sources.
|
||||
+ tracker-extract: [ODT] Continue extracting if we find embedded
|
||||
tabs + line breaks.
|
||||
+ tracker-search: Don't show "(null)" for nie:InformationElements
|
||||
with no nie:url.
|
||||
+ Bugs fixed: bgo#728370, bgo#729968, bgo#732839.
|
||||
+ Updated translations.
|
||||
- Add tracker-missing-include.patch: Add mising include statement.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 10:01:07 UTC 2014 - fezhang@suse.com
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
||||
# Do not edit this auto generated file! Edit tracker.spec.
|
||||
Name: tracker-extras
|
||||
%define _name tracker
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
Release: 0
|
||||
%define TrackerAPI 1.0
|
||||
%define RPMTrackerAPI 1_0
|
||||
@ -59,6 +59,8 @@ Source1: autogen.sh
|
||||
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-missing-include.patch dimstar@opensuse.org -- Add missing includes, taken from git
|
||||
Patch1: tracker-missing-include.patch
|
||||
BuildRequires: NetworkManager-devel >= 0.8
|
||||
BuildRequires: enca-devel
|
||||
BuildRequires: fdupes
|
||||
@ -476,6 +478,7 @@ This package contains an nautilus plugin to tag files with Tracker.
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
cp %{S:1} .
|
||||
translation-update-upstream
|
||||
cp %{S:2} src/miners/rss/README.SUSE
|
||||
|
26
tracker-missing-include.patch
Normal file
26
tracker-missing-include.patch
Normal file
@ -0,0 +1,26 @@
|
||||
From 82245d1bae70e22d26187d584d2342036f1f43f3 Mon Sep 17 00:00:00 2001
|
||||
From: Dominique Leuenberger <dimstar@opensuse.org>
|
||||
Date: Fri, 11 Jul 2014 18:05:57 +0200
|
||||
Subject: [PATCH] libtracker-data: fix missing include
|
||||
|
||||
Since we make use of 'tracker_utf8_truncate', we must include
|
||||
libtracker-common/tracker-utils.h now.
|
||||
---
|
||||
src/libtracker-data/tracker-data-update.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/libtracker-data/tracker-data-update.c b/src/libtracker-data/tracker-data-update.c
|
||||
index 31f840f..ea0a6e8 100644
|
||||
--- a/src/libtracker-data/tracker-data-update.c
|
||||
+++ b/src/libtracker-data/tracker-data-update.c
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <libtracker-common/tracker-date-time.h>
|
||||
#include <libtracker-common/tracker-file-utils.h>
|
||||
#include <libtracker-common/tracker-ontologies.h>
|
||||
+#include <libtracker-common/tracker-utils.h>
|
||||
|
||||
#include <libtracker-miner/tracker-miner-common.h>
|
||||
|
||||
--
|
||||
1.9.2
|
||||
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 11 15:52:39 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 1.0.2:
|
||||
+ build: use pkg-config to look for which gdbus-codegen to use.
|
||||
+ all: Switch out GSettings "schema" property for "schema-id",
|
||||
was causing distcheck to fail.
|
||||
+ docs/reference: Use $(top_srcdir) for DOC_SOURCE_DIR instead of
|
||||
relative paths.
|
||||
+ libtracker-common: memory limits on systems with large amounts
|
||||
of RAM.
|
||||
+ libtracker-control:
|
||||
- Added CFLAGS/LIBS required for reference documentation to
|
||||
succeed.
|
||||
- Fix remnants of libtracker-miner in sources.
|
||||
+ tracker-extract: [ODT] Continue extracting if we find embedded
|
||||
tabs + line breaks.
|
||||
+ tracker-search: Don't show "(null)" for nie:InformationElements
|
||||
with no nie:url.
|
||||
+ Bugs fixed: bgo#728370, bgo#729968, bgo#732839.
|
||||
+ Updated translations.
|
||||
- Add tracker-missing-include.patch: Add mising include statement.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 10:01:07 UTC 2014 - fezhang@suse.com
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
|
||||
Name: tracker
|
||||
%define _name tracker
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
Release: 0
|
||||
%define TrackerAPI 1.0
|
||||
%define RPMTrackerAPI 1_0
|
||||
@ -58,6 +58,8 @@ Source1: autogen.sh
|
||||
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-missing-include.patch dimstar@opensuse.org -- Add missing includes, taken from git
|
||||
Patch1: tracker-missing-include.patch
|
||||
BuildRequires: NetworkManager-devel >= 0.8
|
||||
BuildRequires: enca-devel
|
||||
BuildRequires: fdupes
|
||||
@ -475,6 +477,7 @@ This package contains an nautilus plugin to tag files with Tracker.
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
cp %{S:1} .
|
||||
translation-update-upstream
|
||||
cp %{S:2} src/miners/rss/README.SUSE
|
||||
|
Loading…
Reference in New Issue
Block a user