Accepting request 1031453 from GNOME:Factory
New stable release (forwarded request 1031353 from iznogood) OBS-URL: https://build.opensuse.org/request/show/1031453 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tracker?expand=0&rev=153
This commit is contained in:
commit
ffbec7c8d3
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b3b380c9571d7c7423b5f401e4a2f2d78de47143b035eb2c1281e2423c59218b
|
||||
size 1876476
|
3
tracker-3.4.1.tar.xz
Normal file
3
tracker-3.4.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ea9d41a9fb9c2b42ad80fc2c82327b5c713d594c969b09e1a49be63fb74f4fae
|
||||
size 1865584
|
@ -1,21 +0,0 @@
|
||||
diff -Nur orig-tracker-3.4.0/src/tracker/bash-completion/tracker tracker-3.4.0/src/tracker/bash-completion/tracker
|
||||
--- orig-tracker-3.4.0/src/tracker/bash-completion/tracker 2022-09-17 23:23:06.000000000 +0200
|
||||
+++ tracker-3.4.0/src/tracker/bash-completion/tracker 2022-09-23 15:37:54.149593212 +0200
|
||||
@@ -8,7 +8,7 @@
|
||||
cur=${COMP_WORDS[COMP_CWORD]}
|
||||
|
||||
if [[ $cword == 1 ]]; then
|
||||
- possible=`tracker3 | egrep " [a-z].* " | awk '{ print ($1) }' | sort | uniq`
|
||||
+ possible=`tracker3 | grep -E " [a-z].* " | awk '{ print ($1) }' | sort | uniq`
|
||||
COMPREPLY=( $(compgen -W "$possible" -- $cur) )
|
||||
return 0;
|
||||
fi
|
||||
@@ -37,7 +37,7 @@
|
||||
fi
|
||||
|
||||
if [[ -z $cur ]] || [[ $cur == -* ]]; then
|
||||
- possible=`${words[0]} ${words[1]} -h | egrep "^ *-" | sed "s/^ *//" | sed "s/ [^-].*//" | sed "s/,/\n/g" | sed "s/=.*//"`
|
||||
+ possible=`${words[0]} ${words[1]} -h | grep -E "^ *-" | sed "s/^ *//" | sed "s/ [^-].*//" | sed "s/,/\n/g" | sed "s/=.*//"`
|
||||
COMPREPLY=( $(compgen -W "$possible" -- $cur) )
|
||||
fi
|
||||
}
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 26 13:18:30 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 3.4.1:
|
||||
+ Fixes to VAPI file.
|
||||
+ Fixes to IRI escaping checks in TrackerResource.
|
||||
+ Move fts: prefix definition to base ontology.
|
||||
+ Improve memory usage of already executed TrackerBatch objects
|
||||
for GC languages.
|
||||
+ Replace deprecated egrep tool usage in bash completion script.
|
||||
+ Fixes for memory leaks and invalid memory access.
|
||||
+ Fix endpoint-side cancellation of client-side D-Bus cancelled
|
||||
queries.
|
||||
+ Updated translations.
|
||||
- Drop tracker-no-egrep.patch: Fixed upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 23 13:40:16 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
|
@ -21,15 +21,13 @@
|
||||
%define RPMTrackerAPI 3_0
|
||||
|
||||
Name: tracker
|
||||
Version: 3.4.0
|
||||
Version: 3.4.1
|
||||
Release: 0
|
||||
Summary: Object database, tag/metadata database, search tool and indexer
|
||||
License: GPL-2.0-or-later
|
||||
Group: Productivity/Other
|
||||
URL: https://wiki.gnome.org/Projects/Tracker
|
||||
Source0: https://download.gnome.org/sources/tracker/3.4/%{name}-%{version}.tar.xz
|
||||
# PATCH-FIX-UPSTREAM tracker-no-egrep.patch -- Replace usage of egrep with grep -E
|
||||
Patch0: tracker-no-egrep.patch
|
||||
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: fdupes
|
||||
|
Loading…
Reference in New Issue
Block a user