Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/nautilus/files/, gnome-base/nautilus/
Date: Sun, 27 May 2018 12:51:32
Message-Id: 1527425221.b97b01ed40764ab5782ced32aac956d881a3cb54.eva@gentoo
1 commit: b97b01ed40764ab5782ced32aac956d881a3cb54
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 12:44:47 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 12:47:01 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=b97b01ed
7
8 gnome-base/nautilus: 3.26.2 → 3.26.3.1
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Manifest-Sign-Key: 0x5A56C8CD0C13248A
12
13 ...tch => 3.26.3.1-tracker-support-optional.patch} | 32 ++++++++++------------
14 ...ilus-3.26.2.ebuild => nautilus-3.26.3.1.ebuild} | 0
15 2 files changed, 15 insertions(+), 17 deletions(-)
16
17 diff --git a/gnome-base/nautilus/files/3.26.2-tracker-support-optional.patch b/gnome-base/nautilus/files/3.26.3.1-tracker-support-optional.patch
18 similarity index 91%
19 rename from gnome-base/nautilus/files/3.26.2-tracker-support-optional.patch
20 rename to gnome-base/nautilus/files/3.26.3.1-tracker-support-optional.patch
21 index 4363cbbf..61eacc2a 100644
22 --- a/gnome-base/nautilus/files/3.26.2-tracker-support-optional.patch
23 +++ b/gnome-base/nautilus/files/3.26.3.1-tracker-support-optional.patch
24 @@ -1,4 +1,4 @@
25 -From 3e3d7621c6f8ec72e626701e3f55afc900a04a68 Mon Sep 17 00:00:00 2001
26 +From 664c66bd231c5d0ac20f6f4f14be461bfb206a1e Mon Sep 17 00:00:00 2001
27 From: Gilles Dartiguelongue <eva@g.o>
28 Date: Sun, 27 May 2018 13:54:38 +0200
29 Subject: [PATCH] Make tracker support optional
30 @@ -7,12 +7,12 @@ Subject: [PATCH] Make tracker support optional
31 config.h.meson | 1 +
32 meson.build | 15 ++++++++++++---
33 meson_options.txt | 5 +++++
34 - src/meson.build | 21 +++++++++++++--------
35 + src/meson.build | 19 ++++++++++++-------
36 src/nautilus-file-undo-operations.c | 4 ++++
37 src/nautilus-file.c | 2 ++
38 src/nautilus-files-view.c | 4 ++++
39 src/nautilus-search-engine.c | 14 ++++++++++++++
40 - 8 files changed, 55 insertions(+), 11 deletions(-)
41 + 8 files changed, 54 insertions(+), 10 deletions(-)
42
43 diff --git a/config.h.meson b/config.h.meson
44 index 4f5cb5848..58d71e96f 100644
45 @@ -27,7 +27,7 @@ index 4f5cb5848..58d71e96f 100644
46 #mesondefine ENABLE_PACKAGEKIT
47 #mesondefine LOCALEDIR
48 diff --git a/meson.build b/meson.build
49 -index 7b8f15cf5..b2f2ef438 100644
50 +index 6256193cc..776111f81 100644
51 --- a/meson.build
52 +++ b/meson.build
53 @@ -81,9 +81,18 @@ if get_option ('enable-selinux')
54 @@ -36,7 +36,7 @@ index 7b8f15cf5..b2f2ef438 100644
55
56 -tracker_sparql = dependency ('tracker-sparql-2.0', required: false)
57 -if not tracker_sparql.found()
58 -- tracker_sparql = dependency ('tracker-sparql-1.0')
59 +- tracker_sparql = dependency ('tracker-sparql-1.0')
60 +tracker_api = get_option ('tracker')
61 +if tracker_api == 'disabled'
62 + # pass
63 @@ -69,7 +69,7 @@ index c934dd8b1..d2ba885a2 100644
64 type: 'boolean',
65 value: false,
66 diff --git a/src/meson.build b/src/meson.build
67 -index 9f01f5ba2..c55f39c7d 100644
68 +index cc08345d8..40f337cde 100644
69 --- a/src/meson.build
70 +++ b/src/meson.build
71 @@ -254,12 +254,6 @@ libnautilus_sources = [
72 @@ -85,17 +85,15 @@ index 9f01f5ba2..c55f39c7d 100644
73 ]
74
75 nautilus_deps = [glib,
76 -@@ -273,8 +267,7 @@ nautilus_deps = [glib,
77 - eel_2,
78 +@@ -274,7 +268,6 @@ nautilus_deps = [glib,
79 nautilus_extension,
80 x11,
81 -- gmodule_no_export,
82 -- tracker_sparql]
83 -+ gmodule_no_export]
84 + gmodule_no_export,
85 +- tracker_sparql,
86 + gio_unix]
87
88 if get_option ('enable-exif')
89 - nautilus_deps += exif
90 -@@ -288,6 +281,18 @@ if get_option ('enable-xmp')
91 +@@ -289,6 +282,18 @@ if get_option ('enable-xmp')
92 nautilus_deps += exempi
93 endif
94
95 @@ -146,7 +144,7 @@ index e833d0578..d6e407ca5 100644
96 /* trash */
97 G_DEFINE_TYPE (NautilusFileUndoInfoTrash, nautilus_file_undo_info_trash, NAUTILUS_TYPE_FILE_UNDO_INFO)
98 diff --git a/src/nautilus-file.c b/src/nautilus-file.c
99 -index 536f83541..247334d5d 100644
100 +index d6ac35a44..752adc295 100644
101 --- a/src/nautilus-file.c
102 +++ b/src/nautilus-file.c
103 @@ -2392,6 +2392,7 @@ real_batch_rename (GList *files,
104 @@ -166,7 +164,7 @@ index 536f83541..247334d5d 100644
105 if (op->skipped_files == g_list_length (files))
106 {
107 diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
108 -index a79ecf20d..3b7bd4166 100644
109 +index 8784f63f8..af5605d68 100644
110 --- a/src/nautilus-files-view.c
111 +++ b/src/nautilus-files-view.c
112 @@ -28,8 +28,10 @@
113 @@ -180,7 +178,7 @@ index a79ecf20d..3b7bd4166 100644
114 #include "nautilus-error-reporting.h"
115 #include "nautilus-file-undo-manager.h"
116 #include "nautilus-floating-bar.h"
117 -@@ -6209,6 +6211,7 @@ real_action_rename (NautilusFilesView *view)
118 +@@ -6266,6 +6268,7 @@ real_action_rename (NautilusFilesView *view)
119 {
120 invoke_external_bulk_rename_utility (view, selection);
121 }
122 @@ -188,7 +186,7 @@ index a79ecf20d..3b7bd4166 100644
123 else
124 {
125 GdkCursor *cursor;
126 -@@ -6226,6 +6229,7 @@ real_action_rename (NautilusFilesView *view)
127 +@@ -6283,6 +6286,7 @@ real_action_rename (NautilusFilesView *view)
128
129 gtk_widget_show (GTK_WIDGET (dialog));
130 }
131
132 diff --git a/gnome-base/nautilus/nautilus-3.26.2.ebuild b/gnome-base/nautilus/nautilus-3.26.3.1.ebuild
133 similarity index 100%
134 rename from gnome-base/nautilus/nautilus-3.26.2.ebuild
135 rename to gnome-base/nautilus/nautilus-3.26.3.1.ebuild