basebuilder_pel7x64builder0
6 years ago
6 changed files with 1601 additions and 0 deletions
@ -0,0 +1,54 @@ |
|||||||
|
From 5b4d18d3f8b69773be59ccc45bd09e5fa84d5f1b Mon Sep 17 00:00:00 2001 |
||||||
|
From: David King <amigadave@amigadave.com> |
||||||
|
Date: Fri, 28 Nov 2014 14:21:37 +0000 |
||||||
|
Subject: [PATCH] Only autostart in GNOME (#771601) |
||||||
|
|
||||||
|
https://bugzilla.redhat.com/show_bug.cgi?id=771601 |
||||||
|
--- |
||||||
|
src/miners/fs/tracker-miner-fs.desktop.in.in | 2 +- |
||||||
|
src/miners/rss/tracker-miner-rss.desktop.in.in | 2 +- |
||||||
|
src/tracker-store/tracker-store.desktop.in.in | 2 +- |
||||||
|
3 files changed, 3 insertions(+), 3 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/miners/fs/tracker-miner-fs.desktop.in.in b/src/miners/fs/tracker-miner-fs.desktop.in.in |
||||||
|
index a1620f6..75dba52 100644 |
||||||
|
--- a/src/miners/fs/tracker-miner-fs.desktop.in.in |
||||||
|
+++ b/src/miners/fs/tracker-miner-fs.desktop.in.in |
||||||
|
@@ -12,7 +12,7 @@ X-KDE-autostart-after=panel |
||||||
|
X-KDE-StartupNotify=false |
||||||
|
X-KDE-UniqueApplet=true |
||||||
|
NoDisplay=true |
||||||
|
-OnlyShowIn=GNOME;KDE;XFCE;X-MEEGO-HS;X-MEEGO-NB;X-IVI;Unity; |
||||||
|
+OnlyShowIn=GNOME; |
||||||
|
X-GNOME-Bugzilla-Bugzilla=GNOME |
||||||
|
X-GNOME-Bugzilla-Product=tracker |
||||||
|
X-GNOME-Bugzilla-Component=Miners |
||||||
|
diff --git a/src/miners/rss/tracker-miner-rss.desktop.in.in b/src/miners/rss/tracker-miner-rss.desktop.in.in |
||||||
|
index 49be401..505aec7 100644 |
||||||
|
--- a/src/miners/rss/tracker-miner-rss.desktop.in.in |
||||||
|
+++ b/src/miners/rss/tracker-miner-rss.desktop.in.in |
||||||
|
@@ -11,7 +11,7 @@ X-KDE-autostart-after=panel |
||||||
|
X-KDE-StartupNotify=false |
||||||
|
X-KDE-UniqueApplet=true |
||||||
|
NoDisplay=true |
||||||
|
-OnlyShowIn=GNOME;KDE;XFCE;Unity; |
||||||
|
+OnlyShowIn=GNOME; |
||||||
|
X-GNOME-Bugzilla-Bugzilla=GNOME |
||||||
|
X-GNOME-Bugzilla-Product=tracker |
||||||
|
X-GNOME-Bugzilla-Component=Miners |
||||||
|
diff --git a/src/tracker-store/tracker-store.desktop.in.in b/src/tracker-store/tracker-store.desktop.in.in |
||||||
|
index 78e855d..aff4c16 100644 |
||||||
|
--- a/src/tracker-store/tracker-store.desktop.in.in |
||||||
|
+++ b/src/tracker-store/tracker-store.desktop.in.in |
||||||
|
@@ -11,7 +11,7 @@ X-KDE-autostart-after=panel |
||||||
|
X-KDE-StartupNotify=false |
||||||
|
X-KDE-UniqueApplet=true |
||||||
|
NoDisplay=true |
||||||
|
-OnlyShowIn=GNOME;KDE;XFCE;X-MEEGO-HS;X-MEEGO-NB;X-IVI;Unity; |
||||||
|
+OnlyShowIn=GNOME; |
||||||
|
X-GNOME-Bugzilla-Bugzilla=GNOME |
||||||
|
X-GNOME-Bugzilla-Product=tracker |
||||||
|
X-GNOME-Bugzilla-Component=Store |
||||||
|
-- |
||||||
|
2.1.0 |
||||||
|
|
@ -0,0 +1,41 @@ |
|||||||
|
From 40824c2d6fed7435da2d79d3b4260f97e781748f Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Mon, 3 Apr 2017 15:15:41 +0200 |
||||||
|
Subject: libtracker-sparql: Add osinfo ontology to the default |
||||||
|
TrackerNamespace |
||||||
|
|
||||||
|
Otherwise namespace lookups will come out NULL. |
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=780968 |
||||||
|
--- |
||||||
|
src/libtracker-sparql/tracker-namespace-manager.c | 1 + |
||||||
|
src/libtracker-sparql/tracker-ontologies.h | 1 + |
||||||
|
2 files changed, 2 insertions(+) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-sparql/tracker-namespace-manager.c b/src/libtracker-sparql/tracker-namespace-manager.c |
||||||
|
index 21a5a48..d287c39 100644 |
||||||
|
--- a/src/libtracker-sparql/tracker-namespace-manager.c |
||||||
|
+++ b/src/libtracker-sparql/tracker-namespace-manager.c |
||||||
|
@@ -152,6 +152,7 @@ tracker_namespace_manager_get_default () |
||||||
|
tracker_namespace_manager_add_prefix (manager, "nmm", TRACKER_PREFIX_NMM); |
||||||
|
tracker_namespace_manager_add_prefix (manager, "mlo", TRACKER_PREFIX_MLO); |
||||||
|
tracker_namespace_manager_add_prefix (manager, "mfo", TRACKER_PREFIX_MFO); |
||||||
|
+ tracker_namespace_manager_add_prefix (manager, "osinfo", TRACKER_PREFIX_OSINFO); |
||||||
|
|
||||||
|
g_once_init_leave (&default_namespace_manager__volatile, manager); |
||||||
|
} |
||||||
|
diff --git a/src/libtracker-sparql/tracker-ontologies.h b/src/libtracker-sparql/tracker-ontologies.h |
||||||
|
index 124ffd8..24e1efe 100644 |
||||||
|
--- a/src/libtracker-sparql/tracker-ontologies.h |
||||||
|
+++ b/src/libtracker-sparql/tracker-ontologies.h |
||||||
|
@@ -42,6 +42,7 @@ G_BEGIN_DECLS |
||||||
|
#define TRACKER_PREFIX_NAO "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#" |
||||||
|
#define TRACKER_PREFIX_NID3 "http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#" |
||||||
|
#define TRACKER_PREFIX_NFO "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#" |
||||||
|
+#define TRACKER_PREFIX_OSINFO "http://www.tracker-project.org/ontologies/osinfo#" |
||||||
|
|
||||||
|
/* Temporary */ |
||||||
|
#define TRACKER_PREFIX_SLO "http://www.tracker-project.org/temp/slo#" |
||||||
|
-- |
||||||
|
cgit v0.12 |
||||||
|
|
@ -0,0 +1,27 @@ |
|||||||
|
From f2a784e2fc28b169b2c70ed9dd72d9aaa9dec68a Mon Sep 17 00:00:00 2001 |
||||||
|
From: Felipe Borges <felipeborges@gnome.org> |
||||||
|
Date: Tue, 9 May 2017 15:17:27 +0200 |
||||||
|
Subject: [PATCH] libtracker-common: Whitelist openat() |
||||||
|
|
||||||
|
tracker-extract-iso depends on libosinfo, which needs the |
||||||
|
openat system call. |
||||||
|
--- |
||||||
|
src/libtracker-common/tracker-seccomp.c | 2 ++ |
||||||
|
1 file changed, 2 insertions(+) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-common/tracker-seccomp.c b/src/libtracker-common/tracker-seccomp.c |
||||||
|
index 1af380c93..e02dc2fd9 100644 |
||||||
|
--- a/src/libtracker-common/tracker-seccomp.c |
||||||
|
+++ b/src/libtracker-common/tracker-seccomp.c |
||||||
|
@@ -159,6 +159,8 @@ tracker_seccomp_init (void) |
||||||
|
ALLOW_RULE (getsockname); |
||||||
|
ALLOW_RULE (getpeername); |
||||||
|
ALLOW_RULE (shutdown); |
||||||
|
+ /* Needed by libosinfo (tracker-extract-iso) */ |
||||||
|
+ ALLOW_RULE (openat); |
||||||
|
|
||||||
|
/* Special requirements for socket/socketpair, only on AF_UNIX/AF_LOCAL */ |
||||||
|
if (seccomp_rule_add (ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), 1, |
||||||
|
-- |
||||||
|
2.12.2 |
||||||
|
|
@ -0,0 +1,45 @@ |
|||||||
|
From c8aaeabc221d2f91b9e96d4a33be7dce0eba9769 Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Thu, 8 Jun 2017 12:27:46 +0200 |
||||||
|
Subject: [PATCH] libtracker-fts: Retain compat with sqlite 3.7.x by not using |
||||||
|
WITHOUT ROWID |
||||||
|
|
||||||
|
According to https://sqlite.org/withoutrowid.html, section 2: |
||||||
|
"The WITHOUT ROWID syntax is an optimization. It provides no new |
||||||
|
capabilities. Anything that can be done using a WITHOUT ROWID table can |
||||||
|
also be done in exactly the same way, and exactly the same syntax, using |
||||||
|
an ordinary rowid table. The only advantage of a WITHOUT ROWID table is |
||||||
|
that it can sometimes use less disk space and/or perform a little faster |
||||||
|
than an ordinary rowid table." |
||||||
|
|
||||||
|
This feature was added on 3.8.2, so it seems we can do without it, at |
||||||
|
the expense of an almost negligible space/performance loss. |
||||||
|
--- |
||||||
|
src/libtracker-fts/fts5.c | 4 ++-- |
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-fts/fts5.c b/src/libtracker-fts/fts5.c |
||||||
|
index 5e2fb1471..7b3708db1 100644 |
||||||
|
--- a/src/libtracker-fts/fts5.c |
||||||
|
+++ b/src/libtracker-fts/fts5.c |
||||||
|
@@ -12666,7 +12666,7 @@ static int sqlite3Fts5IndexOpen( |
||||||
|
if( rc==SQLITE_OK ){ |
||||||
|
rc = sqlite3Fts5CreateTable(pConfig, "idx", |
||||||
|
"segid, term, pgno, PRIMARY KEY(segid, term)", |
||||||
|
- 1, pzErr |
||||||
|
+ 0, pzErr |
||||||
|
); |
||||||
|
} |
||||||
|
if( rc==SQLITE_OK ){ |
||||||
|
@@ -16991,7 +16991,7 @@ static int sqlite3Fts5StorageOpen( |
||||||
|
} |
||||||
|
if( rc==SQLITE_OK ){ |
||||||
|
rc = sqlite3Fts5CreateTable( |
||||||
|
- pConfig, "config", "k PRIMARY KEY, v", 1, pzErr |
||||||
|
+ pConfig, "config", "k PRIMARY KEY, v", 0, pzErr |
||||||
|
); |
||||||
|
} |
||||||
|
if( rc==SQLITE_OK ){ |
||||||
|
-- |
||||||
|
2.13.0 |
||||||
|
|
@ -0,0 +1,507 @@ |
|||||||
|
From df26e2e0c3e36ed02f87e249bee788d54886e9dd Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Mon, 26 Dec 2016 21:49:44 +0100 |
||||||
|
Subject: [PATCH 1/8] libtracker-miner: Fully stop TrackerFileNotifier |
||||||
|
operations on errors |
||||||
|
|
||||||
|
It oddly tried to just keep going, which may result in spurious deletes |
||||||
|
or partial inserts. Sounds better to just drop the ball on the directory |
||||||
|
at hand, it should be correctly indexed eventually. |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-file-notifier.c | 22 +++++++++++++--------- |
||||||
|
1 file changed, 13 insertions(+), 9 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-file-notifier.c b/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
index 4d3ec2467..5b1abe095 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
+++ b/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
@@ -779,9 +779,11 @@ sparql_contents_query_cb (GObject *object, |
||||||
|
cursor = tracker_sparql_connection_query_finish (TRACKER_SPARQL_CONNECTION (object), |
||||||
|
result, &error); |
||||||
|
if (error) { |
||||||
|
- if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) |
||||||
|
- goto out; |
||||||
|
- g_warning ("Could not query directory contents: %s\n", error->message); |
||||||
|
+ if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { |
||||||
|
+ g_warning ("Could not query directory contents: %s\n", error->message); |
||||||
|
+ finish_current_directory (notifier, TRUE); |
||||||
|
+ } |
||||||
|
+ goto out; |
||||||
|
} |
||||||
|
|
||||||
|
notifier = user_data; |
||||||
|
@@ -865,17 +867,19 @@ sparql_files_query_cb (GObject *object, |
||||||
|
GFile *directory; |
||||||
|
guint flags; |
||||||
|
|
||||||
|
+ notifier = data->notifier; |
||||||
|
+ priv = notifier->priv; |
||||||
|
+ |
||||||
|
cursor = tracker_sparql_connection_query_finish (TRACKER_SPARQL_CONNECTION (object), |
||||||
|
result, &error); |
||||||
|
if (error) { |
||||||
|
- if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) |
||||||
|
- goto out; |
||||||
|
- g_warning ("Could not query indexed files: %s\n", error->message); |
||||||
|
+ if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { |
||||||
|
+ g_warning ("Could not query indexed files: %s\n", error->message); |
||||||
|
+ finish_current_directory (notifier, TRUE); |
||||||
|
+ } |
||||||
|
+ goto out; |
||||||
|
} |
||||||
|
|
||||||
|
- notifier = data->notifier; |
||||||
|
- priv = notifier->priv; |
||||||
|
- |
||||||
|
if (cursor) { |
||||||
|
sparql_files_query_populate (notifier, cursor, TRUE); |
||||||
|
g_object_unref (cursor); |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From 1f5ac7a8c3db62d23c0148429905eeaf5c45b36d Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Sun, 16 Apr 2017 11:58:00 -0300 |
||||||
|
Subject: [PATCH 2/8] libtracker-miner: Shuffle refcount handling when queueing |
||||||
|
back a file |
||||||
|
|
||||||
|
The file might or might not be inserted to the queue, which meant that |
||||||
|
the extra ref created outside the call might never dropped if the file |
||||||
|
didn't end up inserted again. Fix this by doing the refcount increase |
||||||
|
when actually inserting the file back in the queue. |
||||||
|
|
||||||
|
Reported by Jose M. Arroyo <jose.m.arroyo.se@gmail.com>. |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-miner-fs.c | 24 +++++++----------------- |
||||||
|
1 file changed, 7 insertions(+), 17 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-miner-fs.c b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
index 02b4a4755..15ac82f4d 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
+++ b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
@@ -2109,11 +2109,10 @@ should_wait (TrackerMinerFS *fs, |
||||||
|
} |
||||||
|
|
||||||
|
static gboolean |
||||||
|
-item_reenqueue_full (TrackerMinerFS *fs, |
||||||
|
- TrackerPriorityQueue *item_queue, |
||||||
|
- GFile *queue_file, |
||||||
|
- gpointer queue_data, |
||||||
|
- gint priority) |
||||||
|
+item_enqueue_again (TrackerMinerFS *fs, |
||||||
|
+ TrackerPriorityQueue *item_queue, |
||||||
|
+ GFile *queue_file, |
||||||
|
+ gint priority) |
||||||
|
{ |
||||||
|
gint reentry_counter; |
||||||
|
gchar *uri; |
||||||
|
@@ -2126,7 +2125,7 @@ item_reenqueue_full (TrackerMinerFS *fs, |
||||||
|
g_object_set_qdata (G_OBJECT (queue_file), |
||||||
|
fs->priv->quark_reentry_counter, |
||||||
|
GINT_TO_POINTER (reentry_counter + 1)); |
||||||
|
- tracker_priority_queue_add (item_queue, queue_data, priority); |
||||||
|
+ tracker_priority_queue_add (item_queue, g_object_ref (queue_file), priority); |
||||||
|
|
||||||
|
should_wait = TRUE; |
||||||
|
} else { |
||||||
|
@@ -2147,15 +2146,6 @@ item_reenqueue_full (TrackerMinerFS *fs, |
||||||
|
return should_wait; |
||||||
|
} |
||||||
|
|
||||||
|
-static gboolean |
||||||
|
-item_reenqueue (TrackerMinerFS *fs, |
||||||
|
- TrackerPriorityQueue *item_queue, |
||||||
|
- GFile *queue_file, |
||||||
|
- gint priority) |
||||||
|
-{ |
||||||
|
- return item_reenqueue_full (fs, item_queue, queue_file, queue_file, priority); |
||||||
|
-} |
||||||
|
- |
||||||
|
static QueueState |
||||||
|
item_queue_get_next_file (TrackerMinerFS *fs, |
||||||
|
GFile **file, |
||||||
|
@@ -2601,8 +2591,8 @@ item_queue_handlers_cb (gpointer user_data) |
||||||
|
* ensured, tasks are inserted at a higher priority so they |
||||||
|
* are processed promptly anyway. |
||||||
|
*/ |
||||||
|
- item_reenqueue (fs, item_queue, g_object_ref (parent), priority - 1); |
||||||
|
- item_reenqueue (fs, item_queue, g_object_ref (file), priority); |
||||||
|
+ item_enqueue_again (fs, item_queue, parent, priority - 1); |
||||||
|
+ item_enqueue_again (fs, item_queue, file, priority); |
||||||
|
|
||||||
|
keep_processing = TRUE; |
||||||
|
} |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From cc917a0c029ebc46a1fbca5d73a9bd67b27e2e57 Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Thu, 6 Jul 2017 11:19:17 +0200 |
||||||
|
Subject: [PATCH 3/8] libtracker-miner: Fix warnings if move ops happened |
||||||
|
during initial crawling |
||||||
|
|
||||||
|
The checks to notify about indexing having finished on TrackerIndexingTree |
||||||
|
roots were mistaking ItemMovedData* with GFile*, which lead to warnings. |
||||||
|
This should be harmless, the signal might be possibly emitted before the |
||||||
|
move op is dispatched, that's all. |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-miner-fs.c | 11 ++++++++++- |
||||||
|
1 file changed, 10 insertions(+), 1 deletion(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-miner-fs.c b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
index 15ac82f4d..baa2c9a7a 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
+++ b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
@@ -1110,6 +1110,15 @@ miner_resumed (TrackerMiner *miner) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
+static gboolean |
||||||
|
+item_moved_data_has_prefix (gpointer data, |
||||||
|
+ gpointer user_data) |
||||||
|
+{ |
||||||
|
+ ItemMovedData *moved_item = data; |
||||||
|
+ GFile *prefix = user_data; |
||||||
|
+ |
||||||
|
+ return g_file_has_prefix (moved_item->file, prefix); |
||||||
|
+} |
||||||
|
|
||||||
|
static void |
||||||
|
miner_ignore_next_update (TrackerMiner *miner, const GStrv urls) |
||||||
|
@@ -1165,7 +1174,7 @@ notify_roots_finished (TrackerMinerFS *fs, |
||||||
|
(tracker_priority_queue_find (fs->priv->items_created, NULL, (GEqualFunc) g_file_has_prefix, root) || |
||||||
|
tracker_priority_queue_find (fs->priv->items_updated, NULL, (GEqualFunc) g_file_has_prefix, root) || |
||||||
|
tracker_priority_queue_find (fs->priv->items_deleted, NULL, (GEqualFunc) g_file_has_prefix, root) || |
||||||
|
- tracker_priority_queue_find (fs->priv->items_moved, NULL, (GEqualFunc) g_file_has_prefix, root) || |
||||||
|
+ tracker_priority_queue_find (fs->priv->items_moved, NULL, (GEqualFunc) item_moved_data_has_prefix, root) || |
||||||
|
tracker_priority_queue_find (fs->priv->items_writeback, NULL, (GEqualFunc) g_file_has_prefix, root))) { |
||||||
|
continue; |
||||||
|
} |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From 74ad92e34d8f58e9c8f015bf9f3173e3f738a23c Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Sun, 9 Jul 2017 19:08:54 +0200 |
||||||
|
Subject: [PATCH 4/8] libtracker-miner: Ensure sparql buffer keeps flushing |
||||||
|
|
||||||
|
The sparql buffer might get full again with new tasks before the |
||||||
|
update_array operation for the current batch returned. In this case |
||||||
|
nothing will kick the TrackerMinerFS again, nor the SPARQL buffer |
||||||
|
from flushing again. Fix this by just flushing again, the miner |
||||||
|
will follow as soon as the SPARQL buffer is below limits. |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-sparql-buffer.c | 8 +++++++- |
||||||
|
1 file changed, 7 insertions(+), 1 deletion(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-sparql-buffer.c b/src/libtracker-miner/tracker-sparql-buffer.c |
||||||
|
index 5d0be93a4..95f9c8ede 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-sparql-buffer.c |
||||||
|
+++ b/src/libtracker-miner/tracker-sparql-buffer.c |
||||||
|
@@ -246,6 +246,7 @@ tracker_sparql_buffer_update_array_cb (GObject *object, |
||||||
|
gpointer user_data) |
||||||
|
{ |
||||||
|
TrackerSparqlBufferPrivate *priv; |
||||||
|
+ TrackerSparqlBuffer *buffer; |
||||||
|
GError *global_error = NULL; |
||||||
|
GPtrArray *sparql_array_errors; |
||||||
|
UpdateArrayData *update_data; |
||||||
|
@@ -253,7 +254,8 @@ tracker_sparql_buffer_update_array_cb (GObject *object, |
||||||
|
|
||||||
|
/* Get arrays of errors and queries */ |
||||||
|
update_data = user_data; |
||||||
|
- priv = TRACKER_SPARQL_BUFFER (update_data->buffer)->priv; |
||||||
|
+ buffer = TRACKER_SPARQL_BUFFER (update_data->buffer); |
||||||
|
+ priv = buffer->priv; |
||||||
|
priv->n_updates--; |
||||||
|
|
||||||
|
g_debug ("(Sparql buffer) Finished array-update with %u tasks", |
||||||
|
@@ -338,6 +340,10 @@ tracker_sparql_buffer_update_array_cb (GObject *object, |
||||||
|
if (global_error) { |
||||||
|
g_error_free (global_error); |
||||||
|
} |
||||||
|
+ |
||||||
|
+ if (tracker_task_pool_limit_reached (TRACKER_TASK_POOL (buffer))) { |
||||||
|
+ tracker_sparql_buffer_flush (buffer, "SPARQL buffer limit reached (after flush)"); |
||||||
|
+ } |
||||||
|
} |
||||||
|
|
||||||
|
static gchar * |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From 534a1839a0f6e5bb71af7bc51b79f9d9e215266b Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Mon, 25 Sep 2017 12:26:33 +0200 |
||||||
|
Subject: [PATCH 5/8] libtracker-miner: Check directory updates before dropping |
||||||
|
mtime info |
||||||
|
|
||||||
|
file_notifier_traverse_tree() has the side effect of deleting mtime data, |
||||||
|
as it's presumably not needed anymore, except here. Check whether the |
||||||
|
directory was updated before notifying of the files inside, so we can |
||||||
|
thoroughly check for deleted content. |
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=786132 |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-file-notifier.c | 7 +++++-- |
||||||
|
1 file changed, 5 insertions(+), 2 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-file-notifier.c b/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
index 5b1abe095..433f79524 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
+++ b/src/libtracker-miner/tracker-file-notifier.c |
||||||
|
@@ -863,6 +863,7 @@ sparql_files_query_cb (GObject *object, |
||||||
|
TrackerFileNotifierPrivate *priv; |
||||||
|
TrackerFileNotifier *notifier; |
||||||
|
TrackerSparqlCursor *cursor; |
||||||
|
+ gboolean directory_modified; |
||||||
|
GError *error = NULL; |
||||||
|
GFile *directory; |
||||||
|
guint flags; |
||||||
|
@@ -885,13 +886,15 @@ sparql_files_query_cb (GObject *object, |
||||||
|
g_object_unref (cursor); |
||||||
|
} |
||||||
|
|
||||||
|
- file_notifier_traverse_tree (notifier, data->max_depth); |
||||||
|
directory = priv->current_index_root->current_dir; |
||||||
|
flags = priv->current_index_root->flags; |
||||||
|
+ directory_modified = file_notifier_is_directory_modified (notifier, directory); |
||||||
|
+ |
||||||
|
+ file_notifier_traverse_tree (notifier, data->max_depth); |
||||||
|
|
||||||
|
if ((flags & TRACKER_DIRECTORY_FLAG_CHECK_DELETED) != 0 || |
||||||
|
priv->current_index_root->current_dir_content_filtered || |
||||||
|
- file_notifier_is_directory_modified (notifier, directory)) { |
||||||
|
+ directory_modified) { |
||||||
|
/* The directory has updated its mtime, this means something |
||||||
|
* was either added or removed in the mean time. Crawling |
||||||
|
* will always find all newly added files. But still, we |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From c48c677e3a5ba0045868049e28a52c5e5e49b980 Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Mon, 25 Sep 2017 12:12:47 +0200 |
||||||
|
Subject: [PATCH 6/8] libtracker-miner: Always fallback to URN query when |
||||||
|
queueing file |
||||||
|
|
||||||
|
Tracker may end up with nfo:FileDataObject prior to handling monitor |
||||||
|
events. Be it leftover data from previous bugs, explicit "tracker index" |
||||||
|
calls, or data from some other application. |
||||||
|
|
||||||
|
As we can't be really sure of the data consistence, always fallback to |
||||||
|
a URN query so we don't break nie:url UNIQUE constraint (inverse functional |
||||||
|
property in SPARQL parlance). |
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=786132 |
||||||
|
--- |
||||||
|
src/libtracker-miner/tracker-miner-fs.c | 17 ++++++++--------- |
||||||
|
1 file changed, 8 insertions(+), 9 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/libtracker-miner/tracker-miner-fs.c b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
index baa2c9a7a..1a4af1c12 100644 |
||||||
|
--- a/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
+++ b/src/libtracker-miner/tracker-miner-fs.c |
||||||
|
@@ -2821,12 +2821,11 @@ miner_fs_cache_file_urn (TrackerMinerFS *fs, |
||||||
|
static void |
||||||
|
miner_fs_queue_file (TrackerMinerFS *fs, |
||||||
|
TrackerPriorityQueue *item_queue, |
||||||
|
- GFile *file, |
||||||
|
- gboolean query_urn) |
||||||
|
+ GFile *file) |
||||||
|
{ |
||||||
|
gint priority; |
||||||
|
|
||||||
|
- miner_fs_cache_file_urn (fs, file, query_urn); |
||||||
|
+ miner_fs_cache_file_urn (fs, file, TRUE); |
||||||
|
priority = miner_fs_get_queue_priority (fs, file); |
||||||
|
tracker_priority_queue_add (item_queue, g_object_ref (file), priority); |
||||||
|
} |
||||||
|
@@ -2981,7 +2980,7 @@ check_item_queues (TrackerMinerFS *fs, |
||||||
|
*/ |
||||||
|
g_debug (" Found matching unhandled CREATED event " |
||||||
|
"for source file, merging both events together"); |
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_created, other_file, FALSE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_created, other_file); |
||||||
|
|
||||||
|
return FALSE; |
||||||
|
} |
||||||
|
@@ -3016,7 +3015,7 @@ file_notifier_file_created (TrackerFileNotifier *notifier, |
||||||
|
TrackerMinerFS *fs = user_data; |
||||||
|
|
||||||
|
if (check_item_queues (fs, QUEUE_CREATED, file, NULL)) { |
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_created, file, FALSE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_created, file); |
||||||
|
item_queue_handlers_set_up (fs); |
||||||
|
} |
||||||
|
} |
||||||
|
@@ -3039,7 +3038,7 @@ file_notifier_file_deleted (TrackerFileNotifier *notifier, |
||||||
|
} |
||||||
|
|
||||||
|
if (check_item_queues (fs, QUEUE_DELETED, file, NULL)) { |
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_deleted, file, FALSE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_deleted, file); |
||||||
|
item_queue_handlers_set_up (fs); |
||||||
|
} |
||||||
|
} |
||||||
|
@@ -3070,7 +3069,7 @@ file_notifier_file_updated (TrackerFileNotifier *notifier, |
||||||
|
GINT_TO_POINTER (TRUE)); |
||||||
|
} |
||||||
|
|
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_updated, file, TRUE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_updated, file); |
||||||
|
item_queue_handlers_set_up (fs); |
||||||
|
} |
||||||
|
} |
||||||
|
@@ -3416,7 +3415,7 @@ tracker_miner_fs_directory_remove_full (TrackerMinerFS *fs, |
||||||
|
* to preserve remove_full() semantics. |
||||||
|
*/ |
||||||
|
trace_eq_push_tail ("DELETED", file, "on remove full"); |
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_deleted, file, FALSE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_deleted, file); |
||||||
|
item_queue_handlers_set_up (fs); |
||||||
|
} |
||||||
|
|
||||||
|
@@ -3460,7 +3459,7 @@ check_file_parents (TrackerMinerFS *fs, |
||||||
|
|
||||||
|
for (p = parents; p; p = p->next) { |
||||||
|
trace_eq_push_tail ("UPDATED", p->data, "checking file parents"); |
||||||
|
- miner_fs_queue_file (fs, fs->priv->items_updated, p->data, TRUE); |
||||||
|
+ miner_fs_queue_file (fs, fs->priv->items_updated, p->data); |
||||||
|
g_object_unref (p->data); |
||||||
|
} |
||||||
|
|
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From 9df5d3cae1c79bdb3c5f930bf665fe5d1f442547 Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Sun, 24 Sep 2017 12:04:22 +0200 |
||||||
|
Subject: [PATCH 7/8] tracker-miner-fs: Explicitly ignore non-native mounts |
||||||
|
|
||||||
|
tracker-miner-fs does rely in a few places to index local content |
||||||
|
exclusively. Make it explicitly ignore non-native mounts, they won't |
||||||
|
be indexed anyway, but we can spare trying to create the tracker:Volume |
||||||
|
and mount root's nfo:FileDataObject for these. |
||||||
|
|
||||||
|
Fixes nie:url constraint errors and other warnings when trying to deal |
||||||
|
with those. |
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=786132 |
||||||
|
--- |
||||||
|
src/miners/fs/tracker-storage.c | 10 +++++++++- |
||||||
|
1 file changed, 9 insertions(+), 1 deletion(-) |
||||||
|
|
||||||
|
diff --git a/src/miners/fs/tracker-storage.c b/src/miners/fs/tracker-storage.c |
||||||
|
index 9ec59dbfd..6114a6fd6 100644 |
||||||
|
--- a/src/miners/fs/tracker-storage.c |
||||||
|
+++ b/src/miners/fs/tracker-storage.c |
||||||
|
@@ -550,8 +550,16 @@ mount_add (TrackerStorage *storage, |
||||||
|
|
||||||
|
/* Get root path of the mount */ |
||||||
|
root = g_mount_get_root (mount); |
||||||
|
- mount_path = g_file_get_path (root); |
||||||
|
+ if (!g_file_is_native (root)) { |
||||||
|
+ gchar *uri = g_file_get_uri (root); |
||||||
|
|
||||||
|
+ g_debug ("Ignoring mount '%s', URI '%s' is not native", |
||||||
|
+ mount_name, uri); |
||||||
|
+ g_free (uri); |
||||||
|
+ return; |
||||||
|
+ } |
||||||
|
+ |
||||||
|
+ mount_path = g_file_get_path (root); |
||||||
|
g_debug ("Found '%s' mounted on path '%s'", |
||||||
|
mount_name, |
||||||
|
mount_path); |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
||||||
|
|
||||||
|
From 907a867cd72827d5b24d6d8474d9e76d6ff095aa Mon Sep 17 00:00:00 2001 |
||||||
|
From: Carlos Garnacho <carlosg@gnome.org> |
||||||
|
Date: Sun, 10 Sep 2017 17:01:26 +0200 |
||||||
|
Subject: [PATCH 8/8] applications: Ignore broken symlinks |
||||||
|
|
||||||
|
We still do need to query mtime from the symlink itself in order to keep |
||||||
|
filesystem accounting happy, so wait for ENOENT while doing |
||||||
|
g_key_file_load_from_file() in order to figure out we are dealing with |
||||||
|
a broken link (or a no longer existing file, which is also possible). This |
||||||
|
avoids spewing any warnings with those. |
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=786132 |
||||||
|
--- |
||||||
|
src/miners/apps/tracker-miner-applications.c | 34 ++++++++++++++++------------ |
||||||
|
1 file changed, 20 insertions(+), 14 deletions(-) |
||||||
|
|
||||||
|
diff --git a/src/miners/apps/tracker-miner-applications.c b/src/miners/apps/tracker-miner-applications.c |
||||||
|
index 749d3e4d2..a2d1f78d8 100644 |
||||||
|
--- a/src/miners/apps/tracker-miner-applications.c |
||||||
|
+++ b/src/miners/apps/tracker-miner-applications.c |
||||||
|
@@ -430,8 +430,7 @@ get_desktop_key_file (GFile *file, |
||||||
|
key_file = g_key_file_new (); |
||||||
|
*type = NULL; |
||||||
|
|
||||||
|
- if (!g_key_file_load_from_file (key_file, path, G_KEY_FILE_NONE, NULL)) { |
||||||
|
- g_set_error (error, miner_applications_error_quark, 0, "Couldn't load desktop file:'%s'", path); |
||||||
|
+ if (!g_key_file_load_from_file (key_file, path, G_KEY_FILE_NONE, error)) { |
||||||
|
g_key_file_free (key_file); |
||||||
|
g_free (path); |
||||||
|
return NULL; |
||||||
|
@@ -943,6 +942,7 @@ process_file_cb (GObject *object, |
||||||
|
ProcessApplicationData *data; |
||||||
|
GFileInfo *file_info; |
||||||
|
GError *error = NULL; |
||||||
|
+ GFileType file_type; |
||||||
|
GFile *file; |
||||||
|
|
||||||
|
data = user_data; |
||||||
|
@@ -956,21 +956,27 @@ process_file_cb (GObject *object, |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
- if (g_file_info_get_file_type (file_info) == G_FILE_TYPE_DIRECTORY) { |
||||||
|
+ file_type = g_file_info_get_file_type (file_info); |
||||||
|
+ |
||||||
|
+ if (file_type == G_FILE_TYPE_DIRECTORY) { |
||||||
|
process_directory (data, file_info, &error); |
||||||
|
- } else { |
||||||
|
+ } else if (file_type == G_FILE_TYPE_REGULAR || |
||||||
|
+ file_type == G_FILE_TYPE_SYMBOLIC_LINK) { |
||||||
|
data->key_file = get_desktop_key_file (file, &data->type, &error); |
||||||
|
if (!data->key_file) { |
||||||
|
- gchar *uri; |
||||||
|
- |
||||||
|
- uri = g_file_get_uri (file); |
||||||
|
- g_warning ("Couldn't properly parse desktop file '%s': '%s'", |
||||||
|
- uri, |
||||||
|
- error ? error->message : "unknown error"); |
||||||
|
- g_free (uri); |
||||||
|
- g_clear_error (&error); |
||||||
|
- |
||||||
|
- error = g_error_new_literal (miner_applications_error_quark, 0, "File is not a key file"); |
||||||
|
+ /* Ignore broken symlinks */ |
||||||
|
+ if (!g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { |
||||||
|
+ gchar *uri; |
||||||
|
+ |
||||||
|
+ uri = g_file_get_uri (file); |
||||||
|
+ g_warning ("Couldn't properly parse desktop file '%s': '%s'", |
||||||
|
+ uri, |
||||||
|
+ error ? error->message : "unknown error"); |
||||||
|
+ g_free (uri); |
||||||
|
+ g_clear_error (&error); |
||||||
|
+ |
||||||
|
+ error = g_error_new_literal (miner_applications_error_quark, 0, "File is not a key file"); |
||||||
|
+ } |
||||||
|
} else if (g_key_file_get_boolean (data->key_file, GROUP_DESKTOP_ENTRY, "Hidden", NULL)) { |
||||||
|
error = g_error_new_literal (miner_applications_error_quark, 0, "Desktop file is 'hidden', not gathering metadata for it"); |
||||||
|
} else { |
||||||
|
-- |
||||||
|
2.14.2 |
||||||
|
|
@ -0,0 +1,927 @@ |
|||||||
|
%global _changelog_trimtime %(date +%s -d "1 year ago") |
||||||
|
|
||||||
|
%global with_nautilus 0 |
||||||
|
|
||||||
|
%if 0%{?rhel} |
||||||
|
%global with_enca 0 |
||||||
|
%global with_libcue 0 |
||||||
|
%global with_thunderbird 0 |
||||||
|
%global with_rss 0 |
||||||
|
%else |
||||||
|
%global with_enca 1 |
||||||
|
%global with_libcue 1 |
||||||
|
%global with_thunderbird 1 |
||||||
|
%global with_rss 1 |
||||||
|
%endif |
||||||
|
|
||||||
|
%global systemd_units tracker-extract.service tracker-miner-apps.service tracker-miner-fs.service tracker-miner-rss.service tracker-miner-user-guides.service tracker-store.service tracker-writeback.service |
||||||
|
|
||||||
|
Name: tracker |
||||||
|
Version: 1.10.5 |
||||||
|
Release: 6%{?dist} |
||||||
|
Summary: Desktop-neutral search tool and indexer |
||||||
|
|
||||||
|
License: GPLv2+ |
||||||
|
URL: https://wiki.gnome.org/Projects/Tracker |
||||||
|
Source0: https://download.gnome.org/sources/%{name}/1.10/%{name}-%{version}.tar.xz |
||||||
|
|
||||||
|
# only autostart in Gnome, see also |
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=771601 |
||||||
|
Patch0: 0001-Only-autostart-in-GNOME-771601.patch |
||||||
|
Patch1: 0001-add-osinfo-to-trackernamespace.patch |
||||||
|
Patch2: 0001-libtracker-common-whitelist-openat.patch |
||||||
|
Patch3: 0001-libtracker-fts-Retain-compat-with-sqlite-3.7.x-by-no.patch |
||||||
|
Patch4: 0001-nie-url-UNIQUE-constraint-fixes.patch |
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils |
||||||
|
BuildRequires: giflib-devel |
||||||
|
BuildRequires: graphviz |
||||||
|
BuildRequires: gtk-doc |
||||||
|
BuildRequires: intltool |
||||||
|
BuildRequires: libjpeg-devel |
||||||
|
BuildRequires: libtiff-devel |
||||||
|
BuildRequires: libappstream-glib |
||||||
|
BuildRequires: systemd |
||||||
|
%if 0%{?with_thunderbird} |
||||||
|
BuildRequires: thunderbird |
||||||
|
%endif |
||||||
|
BuildRequires: vala-devel |
||||||
|
%if 0%{?with_enca} |
||||||
|
BuildRequires: pkgconfig(enca) |
||||||
|
%endif |
||||||
|
BuildRequires: pkgconfig(exempi-2.0) |
||||||
|
BuildRequires: pkgconfig(flac) |
||||||
|
BuildRequires: pkgconfig(gee-0.8) |
||||||
|
BuildRequires: pkgconfig(gobject-introspection-1.0) |
||||||
|
BuildRequires: pkgconfig(gstreamer-1.0) |
||||||
|
BuildRequires: pkgconfig(gstreamer-pbutils-1.0) |
||||||
|
BuildRequires: pkgconfig(gstreamer-tag-1.0) |
||||||
|
BuildRequires: pkgconfig(gtk+-3.0) |
||||||
|
BuildRequires: pkgconfig(icu-i18n) |
||||||
|
BuildRequires: pkgconfig(icu-uc) |
||||||
|
%if 0%{?with_libcue} |
||||||
|
BuildRequires: pkgconfig(libcue) |
||||||
|
%endif |
||||||
|
BuildRequires: pkgconfig(libexif) |
||||||
|
%if 0%{?with_rss} |
||||||
|
BuildRequires: pkgconfig(libgrss) |
||||||
|
%endif |
||||||
|
BuildRequires: pkgconfig(libgsf-1) |
||||||
|
BuildRequires: pkgconfig(libgxps) |
||||||
|
BuildRequires: pkgconfig(libiptcdata) |
||||||
|
BuildRequires: pkgconfig(libmediaart-2.0) |
||||||
|
%if 0%{?with_nautilus} |
||||||
|
BuildRequires: pkgconfig(libnautilus-extension) |
||||||
|
%endif |
||||||
|
BuildRequires: pkgconfig(libnm-glib) |
||||||
|
BuildRequires: pkgconfig(libosinfo-1.0) |
||||||
|
BuildRequires: pkgconfig(libpng) |
||||||
|
BuildRequires: pkgconfig(libseccomp) |
||||||
|
BuildRequires: pkgconfig(libxml-2.0) |
||||||
|
BuildRequires: pkgconfig(poppler-glib) |
||||||
|
BuildRequires: pkgconfig(sqlite3) |
||||||
|
BuildRequires: pkgconfig(taglib_c) |
||||||
|
BuildRequires: pkgconfig(totem-plparser) |
||||||
|
BuildRequires: pkgconfig(upower-glib) |
||||||
|
BuildRequires: pkgconfig(uuid) |
||||||
|
BuildRequires: pkgconfig(vorbisfile) |
||||||
|
|
||||||
|
%{?systemd_requires} |
||||||
|
Obsoletes: compat-tracker018 < 0.17.2-2 |
||||||
|
Obsoletes: tracker-firefox-plugin < 1.10.4-2 |
||||||
|
Obsoletes: tracker-miner-flickr < 0.16.0 |
||||||
|
Obsoletes: tracker-nautilus-plugin < 0.17.2-2 |
||||||
|
|
||||||
|
%if 0%{?fedora} |
||||||
|
# From rhughes-f20-gnome-3-12 copr |
||||||
|
Obsoletes: compat-tracker016 < 0.18 |
||||||
|
%endif |
||||||
|
|
||||||
|
%description |
||||||
|
Tracker is a powerful desktop-neutral first class object database, |
||||||
|
tag/metadata database, search tool and indexer. |
||||||
|
|
||||||
|
It consists of a common object database that allows entities to have an |
||||||
|
almost infinite number of properties, metadata (both embedded/harvested as |
||||||
|
well as user definable), a comprehensive database of keywords/tags and |
||||||
|
links to other entities. |
||||||
|
|
||||||
|
It provides additional features for file based objects including context |
||||||
|
linking and audit trails for a file object. |
||||||
|
|
||||||
|
It has the ability to index, store, harvest metadata. retrieve and search |
||||||
|
all types of files and other first class objects |
||||||
|
|
||||||
|
%package devel |
||||||
|
Summary: Headers for developing programs that will use %{name} |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
|
||||||
|
%description devel |
||||||
|
This package contains the static libraries and header files needed for |
||||||
|
developing with tracker |
||||||
|
|
||||||
|
%package needle |
||||||
|
Summary: Tracker search tool |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
Obsoletes: paperbox <= 0.4.4 |
||||||
|
Obsoletes: tracker-ui-tools < 1.1.4 |
||||||
|
Obsoletes: tracker-search-tool <= 0.12.0 |
||||||
|
|
||||||
|
%description needle |
||||||
|
Graphical frontend to tracker search. |
||||||
|
|
||||||
|
%package preferences |
||||||
|
Summary: Tracker preferences |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
Obsoletes: tracker-ui-tools < 1.1.4 |
||||||
|
|
||||||
|
%description preferences |
||||||
|
Graphical frontend to tracker configuration. |
||||||
|
|
||||||
|
%if 0%{?with_nautilus} |
||||||
|
%package nautilus-plugin |
||||||
|
Summary: Tracker's nautilus plugin |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
|
||||||
|
%description nautilus-plugin |
||||||
|
Tracker's nautilus plugin, provides 'tagging' functionality. Ability to perform |
||||||
|
search in nautilus using tracker is built-in directly in the nautilus package. |
||||||
|
%endif |
||||||
|
|
||||||
|
%if 0%{?with_thunderbird} |
||||||
|
%package thunderbird-plugin |
||||||
|
Summary: Thunderbird extension to export mails to Tracker |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
|
||||||
|
%description thunderbird-plugin |
||||||
|
A simple Thunderbird extension to export mails to Tracker. |
||||||
|
%endif |
||||||
|
|
||||||
|
%package docs |
||||||
|
Summary: Documentations for tracker |
||||||
|
BuildArch: noarch |
||||||
|
|
||||||
|
%description docs |
||||||
|
This package contains the documentation for tracker |
||||||
|
|
||||||
|
|
||||||
|
%prep |
||||||
|
%setup -q |
||||||
|
|
||||||
|
%patch0 -p1 -b .autostart-gnome |
||||||
|
%patch1 -p1 -b .add-osinfo-to-trackernamespace |
||||||
|
%patch2 -p1 -b .libtracker-common-whitelist-openat |
||||||
|
%patch3 -p1 -b .remove-without-rowid-optimization |
||||||
|
%patch4 -p1 -b .nie-url-unique-constraint-fixes |
||||||
|
|
||||||
|
%if 0%{?rhel} |
||||||
|
# Fix the build with sqlite 3.7 that doesn't support SQLITE_DETERMINISTIC |
||||||
|
sed -i -e 's/ | SQLITE_DETERMINISTIC//' src/libtracker-data/tracker-db-interface-sqlite.c |
||||||
|
%endif |
||||||
|
|
||||||
|
## nuke unwanted rpaths, see also |
||||||
|
## https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath |
||||||
|
sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure |
||||||
|
|
||||||
|
|
||||||
|
%build |
||||||
|
%configure --disable-static \ |
||||||
|
--enable-gtk-doc \ |
||||||
|
--enable-libflac \ |
||||||
|
--enable-libvorbis \ |
||||||
|
--enable-miner-evolution=no \ |
||||||
|
--enable-miner-firefox=no \ |
||||||
|
--disable-mp3 \ |
||||||
|
%if %{with_nautilus} |
||||||
|
--enable-nautilus-extension \ |
||||||
|
%else |
||||||
|
--disable-nautilus-extension \ |
||||||
|
%endif |
||||||
|
--enable-libmediaart \ |
||||||
|
%if 0%{?with_thunderbird} |
||||||
|
--with-thunderbird-plugin-dir=%{_libdir}/thunderbird/extensions \ |
||||||
|
%else |
||||||
|
--disable-miner-thunderbird \ |
||||||
|
%endif |
||||||
|
--with-unicode-support=libicu \ |
||||||
|
--disable-functional-tests |
||||||
|
# Disable the functional tests for now, they use python bytecodes. |
||||||
|
|
||||||
|
make V=1 %{?_smp_mflags} |
||||||
|
|
||||||
|
|
||||||
|
%install |
||||||
|
%make_install |
||||||
|
|
||||||
|
# Update the screenshot shown in the software center |
||||||
|
# |
||||||
|
# NOTE: It would be *awesome* if this file was pushed upstream. |
||||||
|
# |
||||||
|
# See http://people.freedesktop.org/~hughsient/appdata/#screenshots for more details. |
||||||
|
# |
||||||
|
appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/appdata/tracker-needle.appdata.xml \ |
||||||
|
https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/tracker-needle/a.png |
||||||
|
|
||||||
|
find %{buildroot} -type f -name "*.la" -delete |
||||||
|
rm -rf %{buildroot}%{_datadir}/tracker-tests |
||||||
|
|
||||||
|
# Remove .so symlinks for private libraries -- no external users are supposed |
||||||
|
# to link with them. |
||||||
|
rm -f %{buildroot}%{_libdir}/tracker-1.0/*.so |
||||||
|
|
||||||
|
%find_lang %{name} |
||||||
|
|
||||||
|
|
||||||
|
%check |
||||||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/tracker-*.desktop |
||||||
|
|
||||||
|
|
||||||
|
%post |
||||||
|
/sbin/ldconfig |
||||||
|
%systemd_user_post %{systemd_units} |
||||||
|
|
||||||
|
|
||||||
|
%post preferences |
||||||
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : |
||||||
|
|
||||||
|
%preun |
||||||
|
%systemd_user_preun %{systemd_units} |
||||||
|
|
||||||
|
|
||||||
|
%postun |
||||||
|
/sbin/ldconfig |
||||||
|
if [ $1 -eq 0 ]; then |
||||||
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || : |
||||||
|
fi |
||||||
|
%systemd_user_postun_with_restart %{systemd_units} |
||||||
|
|
||||||
|
%postun preferences |
||||||
|
if [ $1 -eq 0 ] ; then |
||||||
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null |
||||||
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : |
||||||
|
fi |
||||||
|
|
||||||
|
%posttrans |
||||||
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || : |
||||||
|
|
||||||
|
%posttrans preferences |
||||||
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : |
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang |
||||||
|
%license COPYING |
||||||
|
%doc AUTHORS NEWS README |
||||||
|
%{_bindir}/tracker* |
||||||
|
%{_libexecdir}/tracker* |
||||||
|
%{_datadir}/tracker/ |
||||||
|
%{_datadir}/dbus-1/services/org.freedesktop.Tracker* |
||||||
|
%{_libdir}/libtracker*-1.0.so.* |
||||||
|
%{_libdir}/tracker-1.0/ |
||||||
|
%{_libdir}/girepository-1.0/Tracker-1.0.typelib |
||||||
|
%{_libdir}/girepository-1.0/TrackerControl-1.0.typelib |
||||||
|
%{_libdir}/girepository-1.0/TrackerMiner-1.0.typelib |
||||||
|
%{_mandir}/*/tracker*.gz |
||||||
|
%config(noreplace) %{_sysconfdir}/xdg/autostart/tracker*.desktop |
||||||
|
%dir %{_datadir}/bash-completion |
||||||
|
%dir %{_datadir}/bash-completion/completions |
||||||
|
%{_datadir}/bash-completion/completions/tracker |
||||||
|
%{_datadir}/glib-2.0/schemas/* |
||||||
|
%{_userunitdir}/tracker-*.service |
||||||
|
%exclude %{_bindir}/tracker-needle |
||||||
|
%exclude %{_bindir}/tracker-preferences |
||||||
|
%exclude %{_datadir}/tracker/tracker-needle.ui |
||||||
|
%exclude %{_datadir}/tracker/tracker-preferences.ui |
||||||
|
%exclude %{_mandir}/man1/tracker-preferences.1* |
||||||
|
%exclude %{_mandir}/man1/tracker-needle.1* |
||||||
|
|
||||||
|
%files devel |
||||||
|
%{_includedir}/tracker-1.0/ |
||||||
|
%{_libdir}/*.so |
||||||
|
%{_libdir}/pkgconfig/*.pc |
||||||
|
%{_datadir}/vala/vapi/tracker*.* |
||||||
|
%{_datadir}/gir-1.0/Tracker-1.0.gir |
||||||
|
%{_datadir}/gir-1.0/TrackerControl-1.0.gir |
||||||
|
%{_datadir}/gir-1.0/TrackerMiner-1.0.gir |
||||||
|
|
||||||
|
%files needle |
||||||
|
%{_bindir}/tracker-needle |
||||||
|
%{_datadir}/appdata/tracker-needle.appdata.xml |
||||||
|
%{_datadir}/applications/tracker-needle.desktop |
||||||
|
%{_datadir}/tracker/tracker-needle.ui |
||||||
|
%{_mandir}/man1/tracker-needle.1* |
||||||
|
|
||||||
|
%files preferences |
||||||
|
%{_bindir}/tracker-preferences |
||||||
|
%{_datadir}/appdata/tracker-preferences.appdata.xml |
||||||
|
%{_datadir}/applications/tracker-preferences.desktop |
||||||
|
%{_datadir}/icons/*/*/apps/tracker.* |
||||||
|
%{_datadir}/tracker/tracker-preferences.ui |
||||||
|
%{_mandir}/man1/tracker-preferences.1* |
||||||
|
|
||||||
|
%if 0%{?with_nautilus} |
||||||
|
%files nautilus-plugin |
||||||
|
%{_libdir}/nautilus/extensions-3.0/libnautilus-tracker-tags.so |
||||||
|
%endif |
||||||
|
|
||||||
|
%if 0%{?with_thunderbird} |
||||||
|
%files thunderbird-plugin |
||||||
|
%{_datadir}/xul-ext/trackerbird/ |
||||||
|
%{_libdir}/thunderbird/extensions/trackerbird@bustany.org |
||||||
|
%{_datadir}/applications/trackerbird-launcher.desktop |
||||||
|
%endif |
||||||
|
|
||||||
|
%files docs |
||||||
|
%license docs/reference/COPYING |
||||||
|
%{_datadir}/gtk-doc/html/libtracker-control/ |
||||||
|
%{_datadir}/gtk-doc/html/libtracker-miner/ |
||||||
|
%{_datadir}/gtk-doc/html/libtracker-sparql/ |
||||||
|
%{_datadir}/gtk-doc/html/ontology/ |
||||||
|
|
||||||
|
|
||||||
|
%changelog |
||||||
|
* Mon Oct 02 2017 Carlos Garnacho <cgarnach@redhat.com> - 1.10.5-6 |
||||||
|
- Backport 1.10.6 nie:url UNIQUE constraint fixes to 1.10.5 |
||||||
|
- Fix the previous changelog entry |
||||||
|
- Resolves: #1430769 |
||||||
|
|
||||||
|
* Fri Sep 29 2017 Carlos Garnacho <cgarnach@redhat.com> - 1.10.5-5 |
||||||
|
- Update to upstream 1.10.6, backporting all fixes as of yet for UNIQUE constraint nie:url errors |
||||||
|
- Resolves: #1430769 |
||||||
|
|
||||||
|
* Mon Jun 12 2017 Carlos Garnacho <cgarnach@redhat.com> - 1.10.5-4 |
||||||
|
- Remove WITHOUT ROWID optimizations from fts5 to preserve compat with sqlite 3.7.x |
||||||
|
- Resolves: #1451669 |
||||||
|
|
||||||
|
* Tue May 09 2017 Felipe Borges <feborges@redhat.com> -1.10.5-3 |
||||||
|
- Add osinfo ontology to the default TrackerNamespace |
||||||
|
- Whitelist "openat" sys call in seccomp |
||||||
|
- Resolves: #1435340 |
||||||
|
|
||||||
|
* Wed Apr 26 2017 Tomas Popela <tpopela@redhat.com> - 1.10.5-2 |
||||||
|
- Rebuild for newer webkitgtk4 (removal of icu57) |
||||||
|
- Resolves: #1414413 |
||||||
|
|
||||||
|
* Thu Feb 23 2017 Kalev Lember <klember@redhat.com> - 1.10.5-1 |
||||||
|
- Update to 1.10.5 |
||||||
|
- Resolves: #1387050 |
||||||
|
|
||||||
|
* Thu Jan 19 2017 Kalev Lember <klember@redhat.com> - 1.10.4-1 |
||||||
|
- Update to 1.10.4 |
||||||
|
- Resolves: #1387050 |
||||||
|
|
||||||
|
* Mon Jun 27 2016 Debarshi Ray <rishi@fedoraproject.org> - 1.2.7-2 |
||||||
|
- Revert an adjustment to the test suite to accommodate older sqlite |
||||||
|
- Resolves: #1349508 |
||||||
|
|
||||||
|
* Fri Jun 24 2016 Debarshi Ray <rishi@fedoraproject.org> - 1.2.7-1 |
||||||
|
- Update to 1.2.7 |
||||||
|
- Resolves: #1349508 |
||||||
|
|
||||||
|
* Tue Apr 12 2016 Debarshi Ray <rishi@fedoraproject.org> - 1.2.6-5 |
||||||
|
- Fix the previous changelog entry |
||||||
|
- Resolves: #1132114 |
||||||
|
|
||||||
|
* Tue Apr 12 2016 Debarshi Ray <rishi@fedoraproject.org> - 1.2.6-4 |
||||||
|
- Handle failure to get a TrackerSparqlConnection |
||||||
|
- Resolves: #1132114 |
||||||
|
|
||||||
|
* Tue May 12 2015 Matthias Clasen <mclasen@redhat.com> - 1.2.6-3 |
||||||
|
- Rebuild against new totem-pl-parser |
||||||
|
- Related: #1174534 |
||||||
|
|
||||||
|
* Wed May 6 2015 Matthias Clasen <mclasen@redhat.com> - 1.2.6-2 |
||||||
|
- Rebuild against new upower |
||||||
|
- Related: #1174534 |
||||||
|
|
||||||
|
* Thu Apr 30 2015 David King <dking@redhat.com> - 1.2.6-1 |
||||||
|
- Split desktop-file-validate invocation |
||||||
|
- Related: #1174534 |
||||||
|
|
||||||
|
* Fri Apr 10 2015 Debarshi Ray <rishi@fedoraproject.org> - 1.2.6-1 |
||||||
|
- Update to 1.2.6 |
||||||
|
- Resolves: #1174534 |
||||||
|
|
||||||
|
* Thu Mar 19 2015 Richard Hughes <rhughes@redhat.com> - 1.2.5-1 |
||||||
|
- Update to 1.2.5 |
||||||
|
- Resolves: #1174534 |
||||||
|
|
||||||
|
* Mon Oct 13 2014 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-11 |
||||||
|
- Fix a tracker-store crash |
||||||
|
- Resolves: #1083199 |
||||||
|
|
||||||
|
* Mon Oct 13 2014 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-10 |
||||||
|
- Update the tracker-miner-fs patch to cover another crash site |
||||||
|
- Resolves: #1096307 |
||||||
|
|
||||||
|
* Thu Oct 02 2014 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-9 |
||||||
|
- Fix a couple of tracker-miner-fs crashes |
||||||
|
- Resolves: #1096307 |
||||||
|
|
||||||
|
* Fri Feb 28 2014 Matthias Clasen <mclasen@redhat.com> - 0.16.2-8 |
||||||
|
- Rebuild |
||||||
|
- Resolves: #1070803 |
||||||
|
|
||||||
|
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.16.2-7 |
||||||
|
- Mass rebuild 2014-01-24 |
||||||
|
|
||||||
|
* Fri Jan 10 2014 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-6 |
||||||
|
- Strengthen against sqlite failures in FTS functions |
||||||
|
- Resolves: #1026283 |
||||||
|
|
||||||
|
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.16.2-5 |
||||||
|
- Mass rebuild 2013-12-27 |
||||||
|
|
||||||
|
* Tue Nov 12 2013 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-4 |
||||||
|
- Bump the minimum memory requirement to 768M (Red Hat #1028194) |
||||||
|
|
||||||
|
* Mon Nov 04 2013 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-3 |
||||||
|
- The rules files should be architecture-neutral (Red Hat #884197) |
||||||
|
|
||||||
|
* Mon Aug 19 2013 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-2 |
||||||
|
- Try removing the dia BuildRequires |
||||||
|
|
||||||
|
* Sun Aug 04 2013 Debarshi Ray <rishi@fedoraproject.org> - 0.16.2-1 |
||||||
|
- Update to 0.16.2 |
||||||
|
|
||||||
|
* Mon Jul 22 2013 Bastien Nocera <bnocera@redhat.com> 0.16.1-5 |
||||||
|
- Use GStreamer 1.0 BRs |
||||||
|
|
||||||
|
* Wed Jun 26 2013 Matthias Clasen <mclasen@redhat.com> 0.16.1-4 |
||||||
|
- Fix typos in man page |
||||||
|
- Trim %%changelog |
||||||
|
- Re-dethunderbirdize |
||||||
|
|
||||||
|
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> 0.16.1-3 |
||||||
|
- Don't install a (humongous) ChangeLog file |
||||||
|
|
||||||
|
* Wed May 8 2013 Matthias Clasen <mclasen@redhat.com> 0.16.1-2 |
||||||
|
- Make enca and libcue dependencies conditional |
||||||
|
|
||||||
|
* Sat May 04 2013 Kalev Lember <kalevlember@gmail.com> 0.16.1-1 |
||||||
|
- Update to 0.16.1 |
||||||
|
|
||||||
|
* Thu Mar 21 2013 Kalev Lember <kalevlember@gmail.com> 0.16.0-1 |
||||||
|
- Update to 0.16.0 |
||||||
|
- Remove and obsolete the tracker-miner-flickr subpackage |
||||||
|
|
||||||
|
* Wed Feb 20 2013 Ville Skyttä <ville.skytta@iki.fi> 0.15.2-2 |
||||||
|
- Build with XPS support, fix building with GNOME keyring support. |
||||||
|
- Be explicit about unicode=libunistring and disabling Qt. |
||||||
|
- Description spelling fixes (BZ #902549). |
||||||
|
|
||||||
|
* Wed Feb 20 2013 Deji Akingunola <dakingun@gmail.com> 0.15.2-1 |
||||||
|
- Update to 0.15.2 devel release |
||||||
|
|
||||||
|
* Sat Jan 26 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.15.1-1 |
||||||
|
- Update to 0.15.1 devel release |
||||||
|
- Fix up changelog dates, minor spec cleanups |
||||||
|
|
||||||
|
* Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 0.14.4-2 |
||||||
|
- rebuild due to "jpeg8-ABI" feature drop |
||||||
|
|
||||||
|
* Fri Nov 02 2012 Deji Akingunola <dakingun@gmail.com> - 0.14.4-1 |
||||||
|
- Update to 0.14.4 (http://download.gnome.org/sources/tracker/0.14/tracker-0.14.4.changes) |
||||||
|
|
||||||
|
* Thu Sep 20 2012 Deji Akingunola <dakingun@gmail.com> - 0.14.2-4 |
||||||
|
- Mark autostart desktop files as config (Gerd v. Egidy & Rex Dieter, #842318) |
||||||
|
- Move all the files related to the Flickr miner in the '-miner-flicker' subpackage (Mathieu Bridon, #850900) |
||||||
|
|
||||||
|
* Tue Aug 21 2012 Matthias Clasen <mclasen@redhat.com> - 0.14.2-3 |
||||||
|
- Drop obsolete BR on id3lib-devel |
||||||
|
|
||||||
|
* Wed Aug 15 2012 Rex Dieter <rdieter@fedoraproject.org> - 0.14.2-2 |
||||||
|
- tighten subpkg deps |
||||||
|
- fix icon scriptlet |
||||||
|
- -devel: drop extraneous dep on pkgconfig |
||||||
|
- drop .desktop vendor (f18+) |
||||||
|
- tracker should not auto-start in KDE/XFCE (#771601) |
||||||
|
|
||||||
|
* Mon Jul 30 2012 Deji Akingunola <dakingun@gmail.com> - 0.14.2-1 |
||||||
|
- Update to 0.14.2 (http://download.gnome.org/sources/tracker/0.14/tracker-0.14.2.changes) |
||||||
|
- Temporarily disable the evolution plugin, fails to build with evo-3.5 |
||||||
|
|
||||||
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue Jul 10 2012 Matthias Clasen <mclasen@redhat.com> - 0.14.1-2 |
||||||
|
- Drop the raptor-devel BR |
||||||
|
|
||||||
|
* Sun May 20 2012 Deji Akingunola <dakingun@gmail.com> - 0.14.1-1 |
||||||
|
- Update to 0.14.1 (http://download.gnome.org/sources/tracker/0.14/tracker-0.14.1.changes) |
||||||
|
|
||||||
|
* Wed May 16 2012 Marek Kasik <mkasik@redhat.com> - 0.14.0-4 |
||||||
|
- Rebuild (poppler-0.20.0) |
||||||
|
|
||||||
|
* Wed May 02 2012 Milan Crha <mcrha@redhat.com> - 0.14.0-3 |
||||||
|
- Rebuild against newer evolution-data-server |
||||||
|
|
||||||
|
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 0.14.0-2 |
||||||
|
- Silence glib-compile-schemas output in rpm scripts |
||||||
|
|
||||||
|
* Thu Mar 08 2012 Deji Akingunola <dakingun@gmail.com> - 0.14.0-1 |
||||||
|
- Update to 0.14.0 |
||||||
|
|
||||||
|
* Mon Mar 05 2012 Dan Horák <dan[at]danny.cz> - 0.13.1-3 |
||||||
|
- Must call autoreconf because configure.ac is patched |
||||||
|
|
||||||
|
* Mon Feb 27 2012 Deji Akingunola <dakingun@gmail.com> - 0.13.1-2 |
||||||
|
- Enable Firefox and thunderbird plugins. |
||||||
|
- Split flickr data miner into its subpackage. |
||||||
|
|
||||||
|
* Mon Feb 27 2012 Deji Akingunola <dakingun@gmail.com> - 0.13.1-1 |
||||||
|
- Update to 0.13.1 |
||||||
|
|
||||||
|
* Wed Feb 22 2012 Milan Crha <mcrha@redhat.com> - 0.12.10-1 |
||||||
|
- Update to 0.12.10 |
||||||
|
- Remove patch to remove g_thread_init() calls (fixed upstream) |
||||||
|
|
||||||
|
* Wed Feb 08 2012 Milan Crha <mcrha@redhat.com> - 0.12.9-2 |
||||||
|
- Rebuild against newer evolution-data-server |
||||||
|
- Add patch to build with evolution-3.3.5's libemail |
||||||
|
- Add patch to remove g_thread_init() calls |
||||||
|
|
||||||
|
* Fri Jan 27 2012 Deji Akingunola <dakingun@gmail.com> - 0.12.9-1 |
||||||
|
- Update to 0.12.9 |
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.8-4 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue Dec 20 2011 Milan Crha <mcrha@redhat.com> - 0.12.8-3 |
||||||
|
- Rebuild against newer evolution-data-server |
||||||
|
|
||||||
|
* Tue Dec 13 2011 Deji Akingunola <dakingun@gmail.com> - 0.12.8-2 |
||||||
|
- Apply patch to fix crash in indexing pdf (Fix by Marek Kašík; Bug #751922) |
||||||
|
|
||||||
|
* Sun Nov 27 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 0.12.8-1 |
||||||
|
- 0.12.8 Release |
||||||
|
- http://ftp.gnome.org/pub/GNOME/sources/tracker/0.12/tracker-0.12.8.news |
||||||
|
|
||||||
|
* Tue Nov 22 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 0.12.7-2 |
||||||
|
- Rebuild for new e-d-s |
||||||
|
|
||||||
|
* Mon Oct 31 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 0.12.7-1 |
||||||
|
- Update to 0.12.7 |
||||||
|
- http://ftp.gnome.org/pub/GNOME/sources/tracker/0.12/tracker-0.12.6.news |
||||||
|
- http://ftp.gnome.org/pub/GNOME/sources/tracker/0.12/tracker-0.12.7.news |
||||||
|
|
||||||
|
* Fri Oct 28 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.12.5-2 |
||||||
|
- rebuild(poppler) |
||||||
|
|
||||||
|
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 0.12.5-1 |
||||||
|
- Update to 0.12.5 |
||||||
|
|
||||||
|
* Tue Oct 11 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 0.12.4-2 |
||||||
|
- Rebuild for new poppler 0.18 |
||||||
|
|
||||||
|
* Sun Oct 09 2011 Deji Akingunola <dakingun@gmail.com> - 0.12.4-1 |
||||||
|
- Update to 0.12.4 stable release |
||||||
|
- http://download.gnome.org/sources/tracker/0.12/tracker-0.12.4.changes |
||||||
|
|
||||||
|
* Fri Sep 30 2011 Tomas Bzatek <tbzatek@redhat.com> - 0.12.3-2 |
||||||
|
- Rebuilt for new 0.18 poppler |
||||||
|
|
||||||
|
* Tue Sep 27 2011 Deji Akingunola <dakingun@gmail.com> - 0.12.3-1 |
||||||
|
- Update to 0.12.3 stable release |
||||||
|
|
||||||
|
* Fri Sep 23 2011 Deji Akingunola <dakingun@gmail.com> - 0.12.2-1 |
||||||
|
- Update to 0.12.2 stable release |
||||||
|
- Replace the search-tool sub-package with more appropriately named ui-tools |
||||||
|
- Disable the search-bar until upstream redo it for GNOME 3 |
||||||
|
|
||||||
|
* Fri Sep 23 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 0.12.0-3 |
||||||
|
- Rebuild (poppler-0.17.3) |
||||||
|
- Readd --enable-miner-evolution as forgotten in 0.12.0-1 |
||||||
|
- Conditionally BR libgee06-devel instead of libgee-devel for Fedora > 16 |
||||||
|
|
||||||
|
* Mon Sep 19 2011 Marek Kasik <mkasik@redhat.com> - 0.12.0-2 |
||||||
|
- Rebuild (poppler-0.17.3) |
||||||
|
|
||||||
|
* Fri Sep 09 2011 Deji Akingunola <dakingun@gmail.com> - 0.12.0-1 |
||||||
|
- Update to 0.12.0 stable release |
||||||
|
- Re-enable the evolution plugin |
||||||
|
|
||||||
|
* Thu Sep 1 2011 Matthias Clasen <mclasen@redhat.com> - 0.11.2-1 |
||||||
|
- Update to 0.11.2 |
||||||
|
- Drop the evolution miner temporarily |
||||||
|
|
||||||
|
* Tue Aug 30 2011 Milan Crha <mcrha@redhat.com> - 0.10.24-2 |
||||||
|
- Rebuild against newer evolution-data-server |
||||||
|
|
||||||
|
* Thu Aug 25 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.24-1 |
||||||
|
- Update to 0.10.24 |
||||||
|
- Re-enable the evolution plugin |
||||||
|
|
||||||
|
* Thu Aug 04 2011 Adam Williamson <awilliam@redhat.com> - 0.10.21-2 |
||||||
|
- obsolete the evo plugin as well so upgrades work |
||||||
|
|
||||||
|
* Wed Aug 03 2011 Adam Williamson <awilliam@redhat.com> - 0.10.21-1 |
||||||
|
- complete disabling the evolution plugin |
||||||
|
|
||||||
|
* Tue Jul 26 2011 Deji Akingunola <dakingun@gmail.com> |
||||||
|
- Update to 0.10.21 |
||||||
|
- Temporarily disable the evolution plugin |
||||||
|
|
||||||
|
* Fri Jul 15 2011 Marek Kasik <mkasik@redhat.com> - 0.10.15-2 |
||||||
|
- Rebuild (poppler-0.17.0) |
||||||
|
|
||||||
|
* Tue May 31 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.15-1 |
||||||
|
- Update to 0.10.15 |
||||||
|
|
||||||
|
* Fri May 13 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.13-1 |
||||||
|
- Update to 0.10.13 |
||||||
|
|
||||||
|
* Tue Apr 26 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.10-1 |
||||||
|
- Update to 0.10.10 |
||||||
|
|
||||||
|
* Thu Apr 14 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.9-1 |
||||||
|
- Update to 0.10.9 |
||||||
|
|
||||||
|
* Tue Apr 12 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 0.10.8-2 |
||||||
|
- Rebuild against new gupnp-dlna, build introspection support |
||||||
|
|
||||||
|
* Sat Apr 09 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.8-1 |
||||||
|
- Update to 0.10.8 |
||||||
|
|
||||||
|
* Sat Mar 26 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.5-1 |
||||||
|
- Update to 0.10.5 |
||||||
|
|
||||||
|
* Sun Mar 13 2011 Marek Kasik <mkasik@redhat.com> - 0.10.3-2 |
||||||
|
- Rebuild (poppler-0.16.3) |
||||||
|
|
||||||
|
* Fri Mar 11 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.3-1 |
||||||
|
- Update to 0.10.3 |
||||||
|
|
||||||
|
* Thu Mar 10 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.2-1 |
||||||
|
- Update to 0.10.2 |
||||||
|
|
||||||
|
* Thu Feb 17 2011 Deji Akingunola <dakingun@gmail.com> - 0.10.0-1 |
||||||
|
- Update to 0.10.0 |
||||||
|
- Re-enable tracker-search-bar |
||||||
|
|
||||||
|
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 0.9.37-3 |
||||||
|
- Rebuild against newer gtk |
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.37-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Feb 04 2011 Deji Akingunola <dakingun@gmail.com> - 0.9.37-1 |
||||||
|
- Update to 0.9.37 |
||||||
|
- Disable tracker-search-bar - building it is currently failing with gtk3 |
||||||
|
|
||||||
|
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 0.9.36-2 |
||||||
|
- Rebuild against newer gtk |
||||||
|
|
||||||
|
* Tue Feb 01 2011 Deji Akingunola <dakingun@gmail.com> - 0.9.36-1 |
||||||
|
- Update to 0.9.36 |
||||||
|
- Temporarily disable the docs subpackage |
||||||
|
|
||||||
|
* Tue Jan 25 2011 Deji Akingunola <dakingun@gmail.com> - 0.9.35-1 |
||||||
|
- Update to 0.9.35 |
||||||
|
- Re-enable gupnp-dlna support |
||||||
|
|
||||||
|
* Tue Jan 11 2011 Deji Akingunola <dakingun@gmail.com> - 0.9.33-3 |
||||||
|
- Temporarily disable gupnp-dlna. |
||||||
|
- Update nautilus extensions directory for nautilus-3.x. |
||||||
|
|
||||||
|
* Sun Jan 9 2011 Matthias Clasen <mclasen@redhat.com> - 0.9.33-2 |
||||||
|
- Rebuild against newer gtk |
||||||
|
|
||||||
|
* Tue Jan 04 2011 Deji Akingunola <dakingun@gmail.com> - 0.9.33-1 |
||||||
|
- Update to 0.9.33 |
||||||
|
- Substitute gdk-pixbuf for qt4 as music album extractor |
||||||
|
- Split off nautilus-plugin into a sub-package |
||||||
|
|
||||||
|
* Sat Jan 01 2011 Rex Dieter <rdieter@fedoraproject.org> - 0.9.30-3 |
||||||
|
- rebuild (poppler) |
||||||
|
|
||||||
|
* Wed Dec 15 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.9.30-2 |
||||||
|
- rebuild (poppler) |
||||||
|
|
||||||
|
* Sat Dec 04 2010 Deji Akingunola <dakingun@gmail.com> - 0.9.28-1 |
||||||
|
- Update to 0.9.30 |
||||||
|
|
||||||
|
* Sun Nov 07 2010 Deji Akingunola <dakingun@gmail.com> - 0.9.27-1 |
||||||
|
- Update to 0.9.27 |
||||||
|
|
||||||
|
* Tue Oct 12 2010 Deji Akingunola <dakingun@gmail.com> - 0.9.24-2 |
||||||
|
- Rebuild for evolution-data-server-2.91.0. |
||||||
|
|
||||||
|
* Fri Oct 08 2010 Deji Akingunola <dakingun@gmail.com> - 0.9.24-1 |
||||||
|
- First update to 0.9.x series |
||||||
|
- Re-word the package summary (conformant to upstream wording). |
||||||
|
|
||||||
|
* Tue Sep 28 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.17-3 |
||||||
|
- Rebuild for poppler-0.15. |
||||||
|
|
||||||
|
* Tue Sep 28 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.17-2 |
||||||
|
- Rebuild for evolution (camel) update. |
||||||
|
- Apply patch to build with gtk >= 2.90.7 |
||||||
|
|
||||||
|
* Thu Sep 02 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.17-1 |
||||||
|
- Update to 0.8.17 release |
||||||
|
|
||||||
|
* Fri Aug 20 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.16-1 |
||||||
|
- Update to 0.8.16 release |
||||||
|
|
||||||
|
* Thu Aug 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.8.15-2 |
||||||
|
- rebuild (poppler) |
||||||
|
|
||||||
|
* Fri Jul 16 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.15-1 |
||||||
|
- Update to 0.8.15 release |
||||||
|
- Package the docs licensing file |
||||||
|
- Patch for EDS API changes (Migrate from CamelException to GError) |
||||||
|
- Backport a memory leak fix |
||||||
|
|
||||||
|
* Mon Jun 28 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.13-1 |
||||||
|
- Update to 0.8.13 release |
||||||
|
|
||||||
|
* Tue Jun 22 2010 Matthias Clasen <mclasen@redhat.com> - 0.8.11-2 |
||||||
|
- Rebuild against new poppler |
||||||
|
|
||||||
|
* Tue Jun 15 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.11-1 |
||||||
|
- Update to 0.8.11 release |
||||||
|
- Adapt to EDS Camel API changes (Convert CamelObject events to GObject signals), patch not tested yet. |
||||||
|
|
||||||
|
* Thu May 27 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.9-1 |
||||||
|
- Update to 0.8.9 release |
||||||
|
|
||||||
|
* Thu May 06 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.5-1 |
||||||
|
- Update to 0.8.5 release |
||||||
|
- Provide an upgrade path for paperbox (make ~-search-tool obsolete it) on F-13. |
||||||
|
- Patch to build with eds-2.31.1 (Camel headers locked down) |
||||||
|
|
||||||
|
* Thu Apr 29 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.4-1 |
||||||
|
- Update to 0.8.4 release |
||||||
|
|
||||||
|
* Mon Apr 19 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.2-1 |
||||||
|
- Update to 0.8.2 release |
||||||
|
|
||||||
|
* Thu Apr 01 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.0-1 |
||||||
|
- Update to 0.8.0 release |
||||||
|
|
||||||
|
* Thu Mar 25 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.28-1 |
||||||
|
- Update to 0.7.28 release |
||||||
|
|
||||||
|
* Thu Mar 11 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.25-1 |
||||||
|
- Update to 0.7.25 release |
||||||
|
|
||||||
|
* Tue Mar 02 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.23-1 |
||||||
|
- Update to 0.7.23 release |
||||||
|
|
||||||
|
* Sat Aug 29 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-4 |
||||||
|
- Explicitly require apps needed in the text filters of common documents (Fedora bug #517930) |
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.95-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Jun 04 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-2 |
||||||
|
- Ship the manpages in the appropriate sub-packages (Fedora bug #479278) |
||||||
|
|
||||||
|
* Fri May 22 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-1 |
||||||
|
- Update to 0.6.95 release |
||||||
|
|
||||||
|
* Fri May 01 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.94-1 |
||||||
|
- Update to 0.6.94 release |
||||||
|
|
||||||
|
* Thu Apr 09 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.93-1 |
||||||
|
- Update to 0.6.93 release |
||||||
|
|
||||||
|
* Sat Mar 28 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.92-1 |
||||||
|
- Update to 0.6.92 release |
||||||
|
|
||||||
|
* Fri Mar 13 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.91-1 |
||||||
|
- Update to 0.6.91 release |
||||||
|
|
||||||
|
* Mon Feb 09 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.90-1 |
||||||
|
- New release, with tons of changes |
||||||
|
|
||||||
|
* Tue Dec 23 2008 - Caolán McNamara <caolanm@redhat.com> - 0.6.6-10 |
||||||
|
- make build |
||||||
|
|
||||||
|
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-9 |
||||||
|
- Add libtool BR |
||||||
|
|
||||||
|
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-8 |
||||||
|
- Update patch to actually apply, way to do releases often |
||||||
|
|
||||||
|
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-7 |
||||||
|
- Add patch to port to GMime 2.4 |
||||||
|
|
||||||
|
* Wed Dec 10 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-6 |
||||||
|
- Rebuild for gmime dependency |
||||||
|
|
||||||
|
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.6-5 |
||||||
|
- Rebuild for Python 2.6 |
||||||
|
|
||||||
|
* Fri Nov 28 2008 Caolán McNamara <caolanm@redhat.com> - 0.6.6-4 |
||||||
|
- rebuild for dependancies |
||||||
|
|
||||||
|
* Thu Jun 05 2008 Caolán McNamara <caolanm@redhat.com> - 0.6.6-3 |
||||||
|
- rebuild for dependancies |
||||||
|
|
||||||
|
* Fri Mar 14 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.6-2 |
||||||
|
- BR poppler-glib-devel instead of poppler-devel for pdf extract module (Thanks to Karsten Hopp mass rebuild work for bringing this to light) |
||||||
|
|
||||||
|
* Sun Mar 02 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.6-1 |
||||||
|
- New release 0.6.6 |
||||||
|
|
||||||
|
* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.5-1 |
||||||
|
- New release 0.6.5 |
||||||
|
|
||||||
|
* Fri Feb 22 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-7 |
||||||
|
- Ship the tracker-applet program in the tracker-search-tool subpackage |
||||||
|
(Bug #434551) |
||||||
|
|
||||||
|
* Sun Feb 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-6 |
||||||
|
- Rebuild for gcc43 |
||||||
|
|
||||||
|
* Thu Jan 24 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-5 |
||||||
|
- Backport assorted fixes from upstream svn (Fix Fedora bug 426060) |
||||||
|
|
||||||
|
* Mon Jan 21 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-4 |
||||||
|
- Now require the externally packaged o3read to provide o3totxt |
||||||
|
|
||||||
|
* Fri Dec 14 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-3 |
||||||
|
- Undo the patch, seems to be issues (bug #426060) |
||||||
|
|
||||||
|
* Fri Dec 14 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-2 |
||||||
|
- Backport crasher fixes from upstream svn trunk |
||||||
|
|
||||||
|
* Tue Dec 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-1 |
||||||
|
- Version 0.6.4 |
||||||
|
|
||||||
|
* Tue Dec 04 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.3-3 |
||||||
|
- Rebuild for exempi-1.99.5 |
||||||
|
|
||||||
|
* Sun Nov 25 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.6.3-2 |
||||||
|
- Add missing gtk+ icon cache scriptlets. |
||||||
|
|
||||||
|
* Tue Sep 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.3-1 |
||||||
|
- Version 0.6.3 |
||||||
|
|
||||||
|
* Tue Sep 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.2-2 |
||||||
|
- Make trackerd start on x86_64 (Bug #286361, fix by Will Woods) |
||||||
|
|
||||||
|
* Wed Sep 05 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.2-1 |
||||||
|
- Version 0.6.2 |
||||||
|
|
||||||
|
* Sat Aug 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.1-2 |
||||||
|
- Rebuild |
||||||
|
|
||||||
|
* Wed Aug 08 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.1-1 |
||||||
|
- Update to 0.6.1 |
||||||
|
|
||||||
|
* Fri Aug 03 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.0-3 |
||||||
|
- License tag update |
||||||
|
|
||||||
|
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 0.6.0-2.1 |
||||||
|
- rebuild for toolchain bug |
||||||
|
|
||||||
|
* Mon Jul 23 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.0-1 |
||||||
|
- Update to 0.6.0 |
||||||
|
- Manually specify path to deskbar-applet handler directory, koji can't find it |
||||||
|
|
||||||
|
* Mon Jan 29 2007 Deji Akingunola <dakingun@gmail.com> - 0.5.4-2 |
||||||
|
- Split out tracker-search-tool sub-packages, for the GUI facility |
||||||
|
- Add proper requires for the -devel subpackage |
||||||
|
- Deal with the rpmlint complaints on rpath |
||||||
|
|
||||||
|
* Sat Jan 27 2007 Deji Akingunola <dakingun@gmail.com> - 0.5.4-1 |
||||||
|
- Update to 0.5.4 |
||||||
|
|
||||||
|
* Tue Dec 26 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.3-1 |
||||||
|
- Update to 0.5.3 |
||||||
|
|
||||||
|
* Mon Nov 27 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.2-2 |
||||||
|
- Apply patch on Makefile.am instead of Makefile.in |
||||||
|
- Add libtool to BR |
||||||
|
|
||||||
|
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.2-1 |
||||||
|
- Update to 0.5.2 |
||||||
|
|
||||||
|
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.1-1 |
||||||
|
- Update to new version |
||||||
|
|
||||||
|
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-7 |
||||||
|
- Have the devel subpackage require pkgconfig |
||||||
|
- Make the description field not have more than 76 characters on a line |
||||||
|
- Fix up the RPM group |
||||||
|
|
||||||
|
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-6 |
||||||
|
- Explicitly require dbus-devel and dbus-glib (needed for FC < 6) |
||||||
|
|
||||||
|
* Sun Nov 05 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-5 |
||||||
|
- Remove unneeded BRs (gnome-utils-devel and openssl-devel) |
||||||
|
|
||||||
|
* Sun Nov 05 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-4 |
||||||
|
- Add autostart desktop file. |
||||||
|
- Edit the package description as suggested in review |
||||||
|
|
||||||
|
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-3 |
||||||
|
- More cleaups to the spec file. |
||||||
|
|
||||||
|
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-2 |
||||||
|
- Add needed BRs |
||||||
|
|
||||||
|
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-1 |
||||||
|
- Initial packaging for Fedora Extras |
Loading…
Reference in new issue