Accepting request 461316 from GNOME:Next
New unstable rel OBS-URL: https://build.opensuse.org/request/show/461316 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/tracker?expand=0&rev=118
This commit is contained in:
parent
4d58b8790b
commit
c5552961e2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:730fefc7a41997d83039ed7272b08e570b48ba58b73c92ba176532866914171a
|
||||
size 5054532
|
3
tracker-1.11.4.tar.xz
Normal file
3
tracker-1.11.4.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c26b387e0858f5f2a654558e3b062c124688c07a88d48c9306f12411adb8a17
|
||||
size 5060344
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 1 11:27:50 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 1.11.4:
|
||||
+ tracker-extract: More sandboxing stability fixes, more
|
||||
whitelisted inocuous syscalls. Compile fixes for any older
|
||||
kernel not providing any of the specified syscalls. Fixed dconf
|
||||
warnings when it accidentally hit the sandbox.
|
||||
+ libtracker-sparql: Fixed date format generated by
|
||||
TrackerResource.
|
||||
+ Drop libgee dependency.
|
||||
+ Coverity fixes all over the place.
|
||||
+ Updated translations.
|
||||
- Drop pkgconfig(gee-0.8) BuildRequires following upstream changes.
|
||||
- Drop tracker-fix-more-whitelists-sandbox.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 2 09:50:37 UTC 2017 - jengelh@inai.de
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
# Do not edit this auto generated file! Edit tracker.spec.
|
||||
Name: tracker-extras
|
||||
%define _name tracker
|
||||
Version: 1.11.3
|
||||
Version: 1.11.4
|
||||
Release: 0
|
||||
%define TrackerAPI 1.0
|
||||
%define RPMTrackerAPI 1_0
|
||||
@ -54,8 +54,6 @@ Source0: http://download.gnome.org/sources/tracker/1.11/%{_name}-%{versio
|
||||
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-fix-more-whitelists-sandbox.patch bgo#776117 zaitor@opensuse.org -- Whitelist more syscalls
|
||||
Patch1: tracker-fix-more-whitelists-sandbox.patch
|
||||
BuildRequires: enca-devel
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
@ -77,7 +75,6 @@ BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: vala >= 0.12.0
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: pkgconfig(gee-0.8)
|
||||
BuildRequires: pkgconfig(json-glib-1.0) >= 1.0
|
||||
BuildRequires: pkgconfig(libavcodec) >= 0.8.4
|
||||
BuildRequires: pkgconfig(libavformat) >= 0.8.4
|
||||
@ -428,7 +425,6 @@ This package contains an nautilus plugin to tag files with Tracker.
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%if !0%{?is_opensuse}
|
||||
translation-update-upstream
|
||||
%endif
|
||||
|
@ -1,27 +0,0 @@
|
||||
From 163aea34323d932d6bad6e14ca7d5e19ff2c766a Mon Sep 17 00:00:00 2001
|
||||
From: Carlos Garnacho <carlosg@gnome.org>
|
||||
Date: Thu, 19 Jan 2017 13:07:40 +0100
|
||||
Subject: libtracker-common: Whitelist waitid/waitpid/wait4
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=776117
|
||||
---
|
||||
src/libtracker-common/tracker-seccomp.c | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/src/libtracker-common/tracker-seccomp.c b/src/libtracker-common/tracker-seccomp.c
|
||||
index c46dfa6..0c75895 100644
|
||||
--- a/src/libtracker-common/tracker-seccomp.c
|
||||
+++ b/src/libtracker-common/tracker-seccomp.c
|
||||
@@ -103,6 +103,9 @@ tracker_seccomp_init (void)
|
||||
ALLOW_RULE (sched_yield);
|
||||
ALLOW_RULE (sched_getaffinity);
|
||||
ALLOW_RULE (nanosleep);
|
||||
+ ALLOW_RULE (waitid);
|
||||
+ ALLOW_RULE (waitpid);
|
||||
+ ALLOW_RULE (wait4);
|
||||
/* Main loops */
|
||||
ALLOW_RULE (poll);
|
||||
ALLOW_RULE (ppoll);
|
||||
--
|
||||
cgit v0.12
|
||||
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 1 11:27:50 UTC 2017 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 1.11.4:
|
||||
+ tracker-extract: More sandboxing stability fixes, more
|
||||
whitelisted inocuous syscalls. Compile fixes for any older
|
||||
kernel not providing any of the specified syscalls. Fixed dconf
|
||||
warnings when it accidentally hit the sandbox.
|
||||
+ libtracker-sparql: Fixed date format generated by
|
||||
TrackerResource.
|
||||
+ Drop libgee dependency.
|
||||
+ Coverity fixes all over the place.
|
||||
+ Updated translations.
|
||||
- Drop pkgconfig(gee-0.8) BuildRequires following upstream changes.
|
||||
- Drop tracker-fix-more-whitelists-sandbox.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 2 09:50:37 UTC 2017 - jengelh@inai.de
|
||||
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
Name: tracker
|
||||
%define _name tracker
|
||||
Version: 1.11.3
|
||||
Version: 1.11.4
|
||||
Release: 0
|
||||
%define TrackerAPI 1.0
|
||||
%define RPMTrackerAPI 1_0
|
||||
@ -53,8 +53,6 @@ Source0: http://download.gnome.org/sources/tracker/1.11/%{_name}-%{versio
|
||||
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-fix-more-whitelists-sandbox.patch bgo#776117 zaitor@opensuse.org -- Whitelist more syscalls
|
||||
Patch1: tracker-fix-more-whitelists-sandbox.patch
|
||||
BuildRequires: enca-devel
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
@ -76,7 +74,6 @@ BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: vala >= 0.12.0
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: pkgconfig(gee-0.8)
|
||||
BuildRequires: pkgconfig(json-glib-1.0) >= 1.0
|
||||
BuildRequires: pkgconfig(libavcodec) >= 0.8.4
|
||||
BuildRequires: pkgconfig(libavformat) >= 0.8.4
|
||||
@ -427,7 +424,6 @@ This package contains an nautilus plugin to tag files with Tracker.
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%if !0%{?is_opensuse}
|
||||
translation-update-upstream
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user