forked from pool/tracker
Accepting request 252038 from GNOME:Factory
Push GNOME 3.14.0 (forwarded request 251961 from Zaitor) OBS-URL: https://build.opensuse.org/request/show/252038 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tracker?expand=0&rev=71
This commit is contained in:
commit
bd66c4ad10
55
autogen.sh
55
autogen.sh
@ -1,55 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# Run this to generate all the initial makefiles, etc.
|
|
||||||
#
|
|
||||||
# NOTE: compare_versions() is stolen from gnome-autogen.sh
|
|
||||||
|
|
||||||
REQUIRED_VALA_VERSION=0.18.0
|
|
||||||
|
|
||||||
# Usage:
|
|
||||||
# compare_versions MIN_VERSION ACTUAL_VERSION
|
|
||||||
# returns true if ACTUAL_VERSION >= MIN_VERSION
|
|
||||||
compare_versions() {
|
|
||||||
ch_min_version=$1
|
|
||||||
ch_actual_version=$2
|
|
||||||
ch_status=0
|
|
||||||
IFS="${IFS= }"; ch_save_IFS="$IFS"; IFS="."
|
|
||||||
set $ch_actual_version
|
|
||||||
for ch_min in $ch_min_version; do
|
|
||||||
ch_cur=`echo $1 | sed 's/[^0-9].*$//'`; shift # remove letter suffixes
|
|
||||||
if [ -z "$ch_min" ]; then break; fi
|
|
||||||
if [ -z "$ch_cur" ]; then ch_status=1; break; fi
|
|
||||||
if [ $ch_cur -gt $ch_min ]; then break; fi
|
|
||||||
if [ $ch_cur -lt $ch_min ]; then ch_status=1; break; fi
|
|
||||||
done
|
|
||||||
IFS="$ch_save_IFS"
|
|
||||||
return $ch_status
|
|
||||||
}
|
|
||||||
|
|
||||||
# Vala version check
|
|
||||||
test -z "$VALAC" && VALAC=valac
|
|
||||||
VALA_VERSION=`$VALAC --version | cut -d" " -f2`
|
|
||||||
|
|
||||||
if [ -z "$VALA_VERSION" ]; then
|
|
||||||
echo "**Error**: valac not installed or broken. You must have valac >= $REQUIRED_VALA_VERSION"
|
|
||||||
echo "installed to build."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Found Vala $VALA_VERSION"
|
|
||||||
|
|
||||||
if ! compare_versions $REQUIRED_VALA_VERSION $VALA_VERSION; then
|
|
||||||
echo "**Error**: You must have valac >= $REQUIRED_VALA_VERSION installed to build, you have $VALA_VERSION"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Generate required files
|
|
||||||
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
||||||
test -n "$srcdir" || srcdir=.
|
|
||||||
(
|
|
||||||
cd "$srcdir" &&
|
|
||||||
touch ChangeLog && # Automake requires that ChangeLog exist
|
|
||||||
gtkdocize --flavour no-tmpl &&
|
|
||||||
autopoint --force &&
|
|
||||||
AUTOPOINT='intltoolize --automake --copy' autoreconf --verbose --force --install
|
|
||||||
) || exit
|
|
||||||
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:73491517006a58802630ff28243fc6fe07a24fe8bea563670da0ad28595468c4
|
|
||||||
size 6046600
|
|
3
tracker-1.2.2.tar.xz
Normal file
3
tracker-1.2.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b2fe9e8bebef355dbe17711dbd95b96438717aa737787e683d5808f9d9dfc228
|
||||||
|
size 6118900
|
@ -1,3 +1,230 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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
|
||||||
|
|
||||||
|
- Add tracker-giflib-5.1.0.patch: Support GIFLib 5.1.0 API.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 8 08:42:34 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.4:
|
||||||
|
+ New Feature: Extractor now supports eBook and Comic book
|
||||||
|
formats.
|
||||||
|
+ ontology: Added new RDF type nfo:EBook for electronic books,
|
||||||
|
this is not in Nepomuk yet.
|
||||||
|
+ libtracker-fts: Fixed a memory leak for property_names
|
||||||
|
variable.
|
||||||
|
= libtracker-data: Fixed compiler warning with
|
||||||
|
tracker_db_interface_sqlite_fts_update_text().
|
||||||
|
+ libtracker-bus:
|
||||||
|
- Fixed a bug where tracker-stats showed no information with
|
||||||
|
Vala 0.24+.
|
||||||
|
- Fixed all TRACKER_DBUS* to Tracker.DBUS.
|
||||||
|
+ libtracker-sparql:
|
||||||
|
- All TrackerSparqlConnection APIs throw GLib.Error due to
|
||||||
|
GUnixFDList _append() API.
|
||||||
|
- Move TRACKER_ const definitions to Tracker namespace, i.e.
|
||||||
|
Tracker.DBUS_*.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- Generate Vala bindings from GIR.
|
||||||
|
- Improve GIR annotations for some nullable cases.
|
||||||
|
- Removed TrackerCrawlFlags and use TrackerDirectoryFlags
|
||||||
|
instead.
|
||||||
|
- Call tracker_data_provider_end_async() when dir has been
|
||||||
|
crawled.
|
||||||
|
- Fixed reference leak with TrackerTaskPool when using external
|
||||||
|
data miners.
|
||||||
|
+ libtracker-extract: Fixed broken EXIF GPS coordinate
|
||||||
|
extraction.
|
||||||
|
+ libtracker-control:
|
||||||
|
- Generate Vala bindings from GIR.
|
||||||
|
- Improve GIR annotations for some nullable cases.
|
||||||
|
+ tracker-stats:
|
||||||
|
- Now EXPRESSIONS can be used to filter stats shown.
|
||||||
|
- Now only common and fallback RDF types are shown by default,
|
||||||
|
--all can be used to old behaviour.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Improved error parsing and content extraction for EPub
|
||||||
|
contents.
|
||||||
|
- Now EPub files are marked as new RDF type nfo:EBook.
|
||||||
|
+ tracker-miner-fs: By default, ignore directories with
|
||||||
|
'.trackerignore' file inside.
|
||||||
|
+ tracker-preferences: Removed fixed column for indexed
|
||||||
|
locations, column header text was cut off.
|
||||||
|
+ Bugs fixed: bgo#735645, bgo#735636, bgo#735460, bgo#735610,
|
||||||
|
bgo#735567, bgo#735317, bgo#735339, bgo#733573, bgo#733317.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 16:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.3:
|
||||||
|
+ New Feature: Extractor is now 'crash-aware' that being, we have
|
||||||
|
a separate data source for content that can't be extracted to
|
||||||
|
avoid repeated failures from tracker-extract. This also
|
||||||
|
survives through crashes that may occur due to attempted
|
||||||
|
extractions.
|
||||||
|
+ build: Reduce vala generated source warnings from GCC.
|
||||||
|
+ libtracker-fts: Make private functions static
|
||||||
|
+ libtracker-miner: Make sure we return NULL on FileDataProvider
|
||||||
|
begin() errors
|
||||||
|
+ libtracker-miner: Add API tracker_decorator_fs_prepend_file()
|
||||||
|
as part of 'crash-aware' feature.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 15:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.2:
|
||||||
|
+ New Feature: Data Provider: Now there are TrackerDataProvider
|
||||||
|
and TrackerEnumerator interfaces to allow 3rd parties to supply
|
||||||
|
their own data to Tracker to be indexed, for example for an
|
||||||
|
online or proprietary service.
|
||||||
|
+ ontology: nfo:hasMediaStream no longer has a max cardinality
|
||||||
|
of 1, this may mean a reindex is needed.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- PkgConfig file now requires libmediaart (when dependent)
|
||||||
|
privately.
|
||||||
|
- Many documentation updates and fixes.
|
||||||
|
+ libtracker-extract: There is no longer an example in the
|
||||||
|
examples/ directory as this library is now private.
|
||||||
|
+ tracker-extract-mp3: Fixed mp3 parsing for ID3v24 or ID3v23
|
||||||
|
tags.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Fixed missing TRACKER_EXTRACTORS_DIR env var that was removed
|
||||||
|
at some stage.
|
||||||
|
- Cleaned up signal handling, SIGALRM and SIGABRT no longer
|
||||||
|
used.
|
||||||
|
- When built with libmediaart, requires version 0.5.0 or
|
||||||
|
higher.
|
||||||
|
+ tracker-preferences:
|
||||||
|
- Don't use Stock.* deprecated since Gtk+ 3.10.
|
||||||
|
- Added suggestion to reindex OR restart depending on
|
||||||
|
configuration changes applied.
|
||||||
|
+ functional-tests: Improved and updated in places.
|
||||||
|
+ Build fixes.
|
||||||
|
+ Bugs fixed: bgo#734464, bgo#733857, bgo#734089, bgo#734144,
|
||||||
|
bgo#733316, bgo#733948, bgo#733863, bgo#733536, bgo#733439.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 14:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.1:
|
||||||
|
+ build: Use major version only PkgConfig files. Previously, we
|
||||||
|
had $library-$major-$minor (e.g. tracker-sparql-1.2, when it
|
||||||
|
should be tracker-sparql-1.0) to avoid creating unnecessary
|
||||||
|
work for developers using Tracker. This release corrects this
|
||||||
|
and it was planned originally.
|
||||||
|
- Changes from versoin 1.1.0:
|
||||||
|
+ build: Added CC_CHECK_FLAGS_APPEND m4 macros from
|
||||||
|
xinelib/systemd projects to check GCC compiler flags we can
|
||||||
|
use.
|
||||||
|
+ tracker-miner-apps: New process to mine data about
|
||||||
|
applications, previously part of tracker-miner-fs. Can be
|
||||||
|
disabled with --disable-miner-apps.
|
||||||
|
+ tracker-miner-user-guides: New process to mine data about user
|
||||||
|
guides and help content, previously part of tracker-miner-fs.
|
||||||
|
Can be disabled with --disable-user-guides.
|
||||||
|
+ tracker-extract:
|
||||||
|
- [BMP] Added an new extractor.
|
||||||
|
- [ISO] Extract language, copyright and author information
|
||||||
|
about ISO images using new ontology.
|
||||||
|
- [ODT] Improved extraction of content so we don't stop on
|
||||||
|
embedded tabs and line breaks.
|
||||||
|
+ tracker-control:
|
||||||
|
- Added a lot of strings previsouly untranslated.
|
||||||
|
- Removed shorthand command line switches for less common
|
||||||
|
arguments (--list-*, --pause-details).
|
||||||
|
- Added --watch command line option to watch changes to the
|
||||||
|
database.
|
||||||
|
+ tracker-info:
|
||||||
|
- Add --resource-is-iri or -i to avoid filename to URN lookups.
|
||||||
|
- Don't show "(null)" for nie:InformationElements with no
|
||||||
|
nie:url.
|
||||||
|
+ tracker-preferences:
|
||||||
|
- General UI clean up and modernization fixing many
|
||||||
|
deprecations where old GTK+ widgets were used.
|
||||||
|
- Added 'control' tab to allow users to enable finer control of
|
||||||
|
what's indexed (e.g. numbers - which are normally disabled).
|
||||||
|
- Add AppData with screenshots for app stores.
|
||||||
|
+ tracker-needle: Add AppData with screenshots for app stores.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 13:35:32 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.0.3:
|
||||||
|
+ Clean up License files.
|
||||||
|
+ Buildsystem fixes.
|
||||||
|
+ libtracker-fts: Make private functions static.
|
||||||
|
+ libtracker-data:
|
||||||
|
- Fixed unit tests so files are not left around failing
|
||||||
|
distcheck.
|
||||||
|
- Fix tracker-backup unit test failures.
|
||||||
|
+ libtracker-common: Enable G_MESSAGES_DEBUG for verbosity > 1,
|
||||||
|
not 2.
|
||||||
|
+ libtracker-extract:
|
||||||
|
- Fixed TRACKER_EXTRACTORS_DIR env var.
|
||||||
|
- Remove from examples/ this library is now private.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- Chain parent constructed() in TrackerDecorator.
|
||||||
|
- Document TRACKER_MINER_DBUS_* defines.
|
||||||
|
- .pc Requires.priv libmediaart (if built with it).
|
||||||
|
+ libtracker-control:
|
||||||
|
- Added .gitignore for VAPI and other generated content.
|
||||||
|
- Added missing sections.txt for documentation.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Added rule for source code files to add nfo:SourceCode
|
||||||
|
rdf-type.
|
||||||
|
- MP3 id3v23, id3v24 functions documented and v23 fixed.
|
||||||
|
- Use default signal handler for SIGALRM and SIGABRT.
|
||||||
|
+ writeback: support saving metadata for GIFs.
|
||||||
|
+ tests: Use tap automake testing scripts, fixes output
|
||||||
|
summaries.
|
||||||
|
+ functional-tests: Rework 400-extractor.py test.
|
||||||
|
+ Bugs fixed: bgo#734464, bgo#733573, bgo#733317, bgo#733857,
|
||||||
|
bgo#734089, bgo#734144, bgo#733316, bgo#733439, bgo#733317.
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop tracker-thunderbird.patch and tracker-missing-include.patch:
|
||||||
|
fixed upstream.
|
||||||
|
- Replace autogen.sh call with gnome-autogen.sh: tracker switched
|
||||||
|
to using the default in git as well.
|
||||||
|
- Drop autogen.sh as source: no longer required after the switch to
|
||||||
|
gnome-autogen.sh.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 31 09:53:00 UTC 2014 - dimstar@opensuse.org
|
Thu Jul 31 09:53:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
@ -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.0.2
|
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,16 +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.0/%{_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
|
||||||
Source1: autogen.sh
|
|
||||||
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-missing-include.patch dimstar@opensuse.org -- Add missing includes, taken from git
|
|
||||||
Patch1: tracker-missing-include.patch
|
|
||||||
# PATCH-FIX-UPSTREAM tracker-thunderbird.patch dimstar@opensuse.org -- Accept that tracker might have some stderr output as well (glib slice)
|
|
||||||
Patch2: tracker-thunderbird.patch
|
|
||||||
BuildRequires: NetworkManager-devel >= 0.8
|
BuildRequires: NetworkManager-devel >= 0.8
|
||||||
BuildRequires: enca-devel
|
BuildRequires: enca-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@ -482,19 +477,17 @@ 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
|
|
||||||
%patch2 -p1
|
|
||||||
cp %{S:1} .
|
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
cp %{S:2} src/miners/rss/README.SUSE
|
cp %{S:2} src/miners/rss/README.SUSE
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Needed for patch0
|
#Needed for patch0 and patch2
|
||||||
NOCONFIGURE=1 sh ./autogen.sh
|
NOCONFIGURE=1 gnome-autogen.sh
|
||||||
%configure \
|
%configure \
|
||||||
|
--disable-static \
|
||||||
%if !%{build_extras}
|
%if !%{build_extras}
|
||||||
--enable-libvorbis \
|
--enable-libvorbis \
|
||||||
--enable-libflac \
|
--enable-libflac \
|
||||||
%endif
|
%endif
|
||||||
%if %{build_evo}
|
%if %{build_evo}
|
||||||
--enable-miner-evolution \
|
--enable-miner-evolution \
|
||||||
@ -531,7 +524,7 @@ NOCONFIGURE=1 sh ./autogen.sh
|
|||||||
--disable-miner-thunderbird \
|
--disable-miner-thunderbird \
|
||||||
%endif
|
%endif
|
||||||
--disable-functional-tests
|
--disable-functional-tests
|
||||||
%__make %{?_smp_mflags} V=1
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -702,10 +695,15 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
%files -n %{_name}-miner-files
|
%files -n %{_name}-miner-files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/xdg/autostart/tracker-miner-apps.desktop
|
||||||
%{_sysconfdir}/xdg/autostart/tracker-miner-fs.desktop
|
%{_sysconfdir}/xdg/autostart/tracker-miner-fs.desktop
|
||||||
|
%{_sysconfdir}/xdg/autostart/tracker-miner-user-guides.desktop
|
||||||
|
%{_libexecdir}/tracker-miner-apps
|
||||||
%{_libexecdir}/tracker-miner-fs
|
%{_libexecdir}/tracker-miner-fs
|
||||||
|
%{_libexecdir}/tracker-miner-user-guides
|
||||||
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Applications.service
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Applications.service
|
||||||
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service
|
||||||
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Userguides.service
|
||||||
%{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker.Miner.Files.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker.Miner.Files.gschema.xml
|
||||||
%{_datadir}/tracker/miners/tracker-miner-applications.desktop
|
%{_datadir}/tracker/miners/tracker-miner-applications.desktop
|
||||||
%{_datadir}/tracker/miners/tracker-miner-files.desktop
|
%{_datadir}/tracker/miners/tracker-miner-files.desktop
|
||||||
@ -746,9 +744,9 @@ rm -rf %{buildroot}
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
%{_includedir}/tracker-%{TrackerAPI}/
|
%{_includedir}/tracker-%{TrackerAPI}/
|
||||||
%{_libdir}/pkgconfig/tracker-control-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-control-1.0.pc
|
||||||
%{_libdir}/pkgconfig/tracker-miner-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-miner-1.0.pc
|
||||||
%{_libdir}/pkgconfig/tracker-sparql-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-sparql-1.0.pc
|
||||||
%{_datadir}/gir-1.0/*.gir
|
%{_datadir}/gir-1.0/*.gir
|
||||||
%{_datadir}/gtk-doc/html/libtracker-miner/
|
%{_datadir}/gtk-doc/html/libtracker-miner/
|
||||||
%{_datadir}/gtk-doc/html/libtracker-control/
|
%{_datadir}/gtk-doc/html/libtracker-control/
|
||||||
@ -809,6 +807,9 @@ rm -rf %{buildroot}
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
# preferences
|
# preferences
|
||||||
%{_bindir}/tracker-preferences
|
%{_bindir}/tracker-preferences
|
||||||
|
%dir %{_datadir}/appdata
|
||||||
|
%{_datadir}/appdata/tracker-needle.appdata.xml
|
||||||
|
%{_datadir}/appdata/tracker-preferences.appdata.xml
|
||||||
%{_datadir}/applications/tracker-preferences.desktop
|
%{_datadir}/applications/tracker-preferences.desktop
|
||||||
%{_datadir}/icons/hicolor/*/apps/tracker.*
|
%{_datadir}/icons/hicolor/*/apps/tracker.*
|
||||||
%{_datadir}/tracker/tracker-preferences.ui
|
%{_datadir}/tracker/tracker-preferences.ui
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
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,13 +0,0 @@
|
|||||||
Index: tracker-1.0.2/configure.ac
|
|
||||||
===================================================================
|
|
||||||
--- tracker-1.0.2.orig/configure.ac
|
|
||||||
+++ tracker-1.0.2/configure.ac
|
|
||||||
@@ -427,7 +427,7 @@ have_tracker_miner_thunderbird="no "
|
|
||||||
|
|
||||||
AC_PATH_PROG(THUNDERBIRD, thunderbird, thunderbird)
|
|
||||||
if test -n $THUNDERBIRD; then
|
|
||||||
- thunderbird_version=`$THUNDERBIRD --version | cut -d" " -f3`
|
|
||||||
+ thunderbird_version=`$THUNDERBIRD --version 2>/dev/null | awk '{print $NF}'`
|
|
||||||
|
|
||||||
AX_COMPARE_VERSION([$thunderbird_version], ge, [$TRACKER_MINER_THUNDERBIRD_REQUIRED],
|
|
||||||
have_tracker_miner_thunderbird="yes",
|
|
227
tracker.changes
227
tracker.changes
@ -1,3 +1,230 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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
|
||||||
|
|
||||||
|
- Add tracker-giflib-5.1.0.patch: Support GIFLib 5.1.0 API.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 8 08:42:34 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.4:
|
||||||
|
+ New Feature: Extractor now supports eBook and Comic book
|
||||||
|
formats.
|
||||||
|
+ ontology: Added new RDF type nfo:EBook for electronic books,
|
||||||
|
this is not in Nepomuk yet.
|
||||||
|
+ libtracker-fts: Fixed a memory leak for property_names
|
||||||
|
variable.
|
||||||
|
= libtracker-data: Fixed compiler warning with
|
||||||
|
tracker_db_interface_sqlite_fts_update_text().
|
||||||
|
+ libtracker-bus:
|
||||||
|
- Fixed a bug where tracker-stats showed no information with
|
||||||
|
Vala 0.24+.
|
||||||
|
- Fixed all TRACKER_DBUS* to Tracker.DBUS.
|
||||||
|
+ libtracker-sparql:
|
||||||
|
- All TrackerSparqlConnection APIs throw GLib.Error due to
|
||||||
|
GUnixFDList _append() API.
|
||||||
|
- Move TRACKER_ const definitions to Tracker namespace, i.e.
|
||||||
|
Tracker.DBUS_*.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- Generate Vala bindings from GIR.
|
||||||
|
- Improve GIR annotations for some nullable cases.
|
||||||
|
- Removed TrackerCrawlFlags and use TrackerDirectoryFlags
|
||||||
|
instead.
|
||||||
|
- Call tracker_data_provider_end_async() when dir has been
|
||||||
|
crawled.
|
||||||
|
- Fixed reference leak with TrackerTaskPool when using external
|
||||||
|
data miners.
|
||||||
|
+ libtracker-extract: Fixed broken EXIF GPS coordinate
|
||||||
|
extraction.
|
||||||
|
+ libtracker-control:
|
||||||
|
- Generate Vala bindings from GIR.
|
||||||
|
- Improve GIR annotations for some nullable cases.
|
||||||
|
+ tracker-stats:
|
||||||
|
- Now EXPRESSIONS can be used to filter stats shown.
|
||||||
|
- Now only common and fallback RDF types are shown by default,
|
||||||
|
--all can be used to old behaviour.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Improved error parsing and content extraction for EPub
|
||||||
|
contents.
|
||||||
|
- Now EPub files are marked as new RDF type nfo:EBook.
|
||||||
|
+ tracker-miner-fs: By default, ignore directories with
|
||||||
|
'.trackerignore' file inside.
|
||||||
|
+ tracker-preferences: Removed fixed column for indexed
|
||||||
|
locations, column header text was cut off.
|
||||||
|
+ Bugs fixed: bgo#735645, bgo#735636, bgo#735460, bgo#735610,
|
||||||
|
bgo#735567, bgo#735317, bgo#735339, bgo#733573, bgo#733317.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 16:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.3:
|
||||||
|
+ New Feature: Extractor is now 'crash-aware' that being, we have
|
||||||
|
a separate data source for content that can't be extracted to
|
||||||
|
avoid repeated failures from tracker-extract. This also
|
||||||
|
survives through crashes that may occur due to attempted
|
||||||
|
extractions.
|
||||||
|
+ build: Reduce vala generated source warnings from GCC.
|
||||||
|
+ libtracker-fts: Make private functions static
|
||||||
|
+ libtracker-miner: Make sure we return NULL on FileDataProvider
|
||||||
|
begin() errors
|
||||||
|
+ libtracker-miner: Add API tracker_decorator_fs_prepend_file()
|
||||||
|
as part of 'crash-aware' feature.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 15:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.2:
|
||||||
|
+ New Feature: Data Provider: Now there are TrackerDataProvider
|
||||||
|
and TrackerEnumerator interfaces to allow 3rd parties to supply
|
||||||
|
their own data to Tracker to be indexed, for example for an
|
||||||
|
online or proprietary service.
|
||||||
|
+ ontology: nfo:hasMediaStream no longer has a max cardinality
|
||||||
|
of 1, this may mean a reindex is needed.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- PkgConfig file now requires libmediaart (when dependent)
|
||||||
|
privately.
|
||||||
|
- Many documentation updates and fixes.
|
||||||
|
+ libtracker-extract: There is no longer an example in the
|
||||||
|
examples/ directory as this library is now private.
|
||||||
|
+ tracker-extract-mp3: Fixed mp3 parsing for ID3v24 or ID3v23
|
||||||
|
tags.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Fixed missing TRACKER_EXTRACTORS_DIR env var that was removed
|
||||||
|
at some stage.
|
||||||
|
- Cleaned up signal handling, SIGALRM and SIGABRT no longer
|
||||||
|
used.
|
||||||
|
- When built with libmediaart, requires version 0.5.0 or
|
||||||
|
higher.
|
||||||
|
+ tracker-preferences:
|
||||||
|
- Don't use Stock.* deprecated since Gtk+ 3.10.
|
||||||
|
- Added suggestion to reindex OR restart depending on
|
||||||
|
configuration changes applied.
|
||||||
|
+ functional-tests: Improved and updated in places.
|
||||||
|
+ Build fixes.
|
||||||
|
+ Bugs fixed: bgo#734464, bgo#733857, bgo#734089, bgo#734144,
|
||||||
|
bgo#733316, bgo#733948, bgo#733863, bgo#733536, bgo#733439.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 14:00:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.1.1:
|
||||||
|
+ build: Use major version only PkgConfig files. Previously, we
|
||||||
|
had $library-$major-$minor (e.g. tracker-sparql-1.2, when it
|
||||||
|
should be tracker-sparql-1.0) to avoid creating unnecessary
|
||||||
|
work for developers using Tracker. This release corrects this
|
||||||
|
and it was planned originally.
|
||||||
|
- Changes from versoin 1.1.0:
|
||||||
|
+ build: Added CC_CHECK_FLAGS_APPEND m4 macros from
|
||||||
|
xinelib/systemd projects to check GCC compiler flags we can
|
||||||
|
use.
|
||||||
|
+ tracker-miner-apps: New process to mine data about
|
||||||
|
applications, previously part of tracker-miner-fs. Can be
|
||||||
|
disabled with --disable-miner-apps.
|
||||||
|
+ tracker-miner-user-guides: New process to mine data about user
|
||||||
|
guides and help content, previously part of tracker-miner-fs.
|
||||||
|
Can be disabled with --disable-user-guides.
|
||||||
|
+ tracker-extract:
|
||||||
|
- [BMP] Added an new extractor.
|
||||||
|
- [ISO] Extract language, copyright and author information
|
||||||
|
about ISO images using new ontology.
|
||||||
|
- [ODT] Improved extraction of content so we don't stop on
|
||||||
|
embedded tabs and line breaks.
|
||||||
|
+ tracker-control:
|
||||||
|
- Added a lot of strings previsouly untranslated.
|
||||||
|
- Removed shorthand command line switches for less common
|
||||||
|
arguments (--list-*, --pause-details).
|
||||||
|
- Added --watch command line option to watch changes to the
|
||||||
|
database.
|
||||||
|
+ tracker-info:
|
||||||
|
- Add --resource-is-iri or -i to avoid filename to URN lookups.
|
||||||
|
- Don't show "(null)" for nie:InformationElements with no
|
||||||
|
nie:url.
|
||||||
|
+ tracker-preferences:
|
||||||
|
- General UI clean up and modernization fixing many
|
||||||
|
deprecations where old GTK+ widgets were used.
|
||||||
|
- Added 'control' tab to allow users to enable finer control of
|
||||||
|
what's indexed (e.g. numbers - which are normally disabled).
|
||||||
|
- Add AppData with screenshots for app stores.
|
||||||
|
+ tracker-needle: Add AppData with screenshots for app stores.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 22 13:35:32 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 1.0.3:
|
||||||
|
+ Clean up License files.
|
||||||
|
+ Buildsystem fixes.
|
||||||
|
+ libtracker-fts: Make private functions static.
|
||||||
|
+ libtracker-data:
|
||||||
|
- Fixed unit tests so files are not left around failing
|
||||||
|
distcheck.
|
||||||
|
- Fix tracker-backup unit test failures.
|
||||||
|
+ libtracker-common: Enable G_MESSAGES_DEBUG for verbosity > 1,
|
||||||
|
not 2.
|
||||||
|
+ libtracker-extract:
|
||||||
|
- Fixed TRACKER_EXTRACTORS_DIR env var.
|
||||||
|
- Remove from examples/ this library is now private.
|
||||||
|
+ libtracker-miner:
|
||||||
|
- Chain parent constructed() in TrackerDecorator.
|
||||||
|
- Document TRACKER_MINER_DBUS_* defines.
|
||||||
|
- .pc Requires.priv libmediaart (if built with it).
|
||||||
|
+ libtracker-control:
|
||||||
|
- Added .gitignore for VAPI and other generated content.
|
||||||
|
- Added missing sections.txt for documentation.
|
||||||
|
+ tracker-extract:
|
||||||
|
- Added rule for source code files to add nfo:SourceCode
|
||||||
|
rdf-type.
|
||||||
|
- MP3 id3v23, id3v24 functions documented and v23 fixed.
|
||||||
|
- Use default signal handler for SIGALRM and SIGABRT.
|
||||||
|
+ writeback: support saving metadata for GIFs.
|
||||||
|
+ tests: Use tap automake testing scripts, fixes output
|
||||||
|
summaries.
|
||||||
|
+ functional-tests: Rework 400-extractor.py test.
|
||||||
|
+ Bugs fixed: bgo#734464, bgo#733573, bgo#733317, bgo#733857,
|
||||||
|
bgo#734089, bgo#734144, bgo#733316, bgo#733439, bgo#733317.
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop tracker-thunderbird.patch and tracker-missing-include.patch:
|
||||||
|
fixed upstream.
|
||||||
|
- Replace autogen.sh call with gnome-autogen.sh: tracker switched
|
||||||
|
to using the default in git as well.
|
||||||
|
- Drop autogen.sh as source: no longer required after the switch to
|
||||||
|
gnome-autogen.sh.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 31 09:53:00 UTC 2014 - dimstar@opensuse.org
|
Thu Jul 31 09:53:00 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
37
tracker.spec
37
tracker.spec
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
Name: tracker
|
Name: tracker
|
||||||
%define _name tracker
|
%define _name tracker
|
||||||
Version: 1.0.2
|
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,16 +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.0/%{_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
|
||||||
Source1: autogen.sh
|
|
||||||
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-missing-include.patch dimstar@opensuse.org -- Add missing includes, taken from git
|
|
||||||
Patch1: tracker-missing-include.patch
|
|
||||||
# PATCH-FIX-UPSTREAM tracker-thunderbird.patch dimstar@opensuse.org -- Accept that tracker might have some stderr output as well (glib slice)
|
|
||||||
Patch2: tracker-thunderbird.patch
|
|
||||||
BuildRequires: NetworkManager-devel >= 0.8
|
BuildRequires: NetworkManager-devel >= 0.8
|
||||||
BuildRequires: enca-devel
|
BuildRequires: enca-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
@ -481,19 +476,17 @@ 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
|
|
||||||
%patch2 -p1
|
|
||||||
cp %{S:1} .
|
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
cp %{S:2} src/miners/rss/README.SUSE
|
cp %{S:2} src/miners/rss/README.SUSE
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Needed for patch0
|
#Needed for patch0 and patch2
|
||||||
NOCONFIGURE=1 sh ./autogen.sh
|
NOCONFIGURE=1 gnome-autogen.sh
|
||||||
%configure \
|
%configure \
|
||||||
|
--disable-static \
|
||||||
%if !%{build_extras}
|
%if !%{build_extras}
|
||||||
--enable-libvorbis \
|
--enable-libvorbis \
|
||||||
--enable-libflac \
|
--enable-libflac \
|
||||||
%endif
|
%endif
|
||||||
%if %{build_evo}
|
%if %{build_evo}
|
||||||
--enable-miner-evolution \
|
--enable-miner-evolution \
|
||||||
@ -530,7 +523,7 @@ NOCONFIGURE=1 sh ./autogen.sh
|
|||||||
--disable-miner-thunderbird \
|
--disable-miner-thunderbird \
|
||||||
%endif
|
%endif
|
||||||
--disable-functional-tests
|
--disable-functional-tests
|
||||||
%__make %{?_smp_mflags} V=1
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -701,10 +694,15 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
%files -n %{_name}-miner-files
|
%files -n %{_name}-miner-files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_sysconfdir}/xdg/autostart/tracker-miner-apps.desktop
|
||||||
%{_sysconfdir}/xdg/autostart/tracker-miner-fs.desktop
|
%{_sysconfdir}/xdg/autostart/tracker-miner-fs.desktop
|
||||||
|
%{_sysconfdir}/xdg/autostart/tracker-miner-user-guides.desktop
|
||||||
|
%{_libexecdir}/tracker-miner-apps
|
||||||
%{_libexecdir}/tracker-miner-fs
|
%{_libexecdir}/tracker-miner-fs
|
||||||
|
%{_libexecdir}/tracker-miner-user-guides
|
||||||
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Applications.service
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Applications.service
|
||||||
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service
|
||||||
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker1.Miner.Userguides.service
|
||||||
%{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker.Miner.Files.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.freedesktop.Tracker.Miner.Files.gschema.xml
|
||||||
%{_datadir}/tracker/miners/tracker-miner-applications.desktop
|
%{_datadir}/tracker/miners/tracker-miner-applications.desktop
|
||||||
%{_datadir}/tracker/miners/tracker-miner-files.desktop
|
%{_datadir}/tracker/miners/tracker-miner-files.desktop
|
||||||
@ -745,9 +743,9 @@ rm -rf %{buildroot}
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
%{_includedir}/tracker-%{TrackerAPI}/
|
%{_includedir}/tracker-%{TrackerAPI}/
|
||||||
%{_libdir}/pkgconfig/tracker-control-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-control-1.0.pc
|
||||||
%{_libdir}/pkgconfig/tracker-miner-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-miner-1.0.pc
|
||||||
%{_libdir}/pkgconfig/tracker-sparql-%{TrackerAPI}.pc
|
%{_libdir}/pkgconfig/tracker-sparql-1.0.pc
|
||||||
%{_datadir}/gir-1.0/*.gir
|
%{_datadir}/gir-1.0/*.gir
|
||||||
%{_datadir}/gtk-doc/html/libtracker-miner/
|
%{_datadir}/gtk-doc/html/libtracker-miner/
|
||||||
%{_datadir}/gtk-doc/html/libtracker-control/
|
%{_datadir}/gtk-doc/html/libtracker-control/
|
||||||
@ -808,6 +806,9 @@ rm -rf %{buildroot}
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
# preferences
|
# preferences
|
||||||
%{_bindir}/tracker-preferences
|
%{_bindir}/tracker-preferences
|
||||||
|
%dir %{_datadir}/appdata
|
||||||
|
%{_datadir}/appdata/tracker-needle.appdata.xml
|
||||||
|
%{_datadir}/appdata/tracker-preferences.appdata.xml
|
||||||
%{_datadir}/applications/tracker-preferences.desktop
|
%{_datadir}/applications/tracker-preferences.desktop
|
||||||
%{_datadir}/icons/hicolor/*/apps/tracker.*
|
%{_datadir}/icons/hicolor/*/apps/tracker.*
|
||||||
%{_datadir}/tracker/tracker-preferences.ui
|
%{_datadir}/tracker/tracker-preferences.ui
|
||||||
|
Loading…
x
Reference in New Issue
Block a user