diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2023-05-24 09:52:40 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-24 07:23:55 -0700 |
commit | 2146922ab9f5388b3fa726b68e394d3ad9225e9a (patch) | |
tree | 86033f47da2942cfd959c662dc777384db4b0532 /meta-gnome | |
parent | c49c254fd13d7dce9c23b770e34d8211d9ba544c (diff) | |
download | meta-openembedded-2146922ab9f5388b3fa726b68e394d3ad9225e9a.tar.gz |
geary: remove unused patch files
* they were removed from SRC_URI in:
https://git.openembedded.org/meta-openembedded/commit/?id=3bb4ee4ba1161cff3b8c22dc07aa130ac2de9789
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
2 files changed, 0 insertions, 69 deletions
diff --git a/meta-gnome/recipes-connectivity/geary/geary/0001-Util.Cache.Lru-Workaround-missing-generic-type-argum.patch b/meta-gnome/recipes-connectivity/geary/geary/0001-Util.Cache.Lru-Workaround-missing-generic-type-argum.patch deleted file mode 100644 index 22af4f5bea..0000000000 --- a/meta-gnome/recipes-connectivity/geary/geary/0001-Util.Cache.Lru-Workaround-missing-generic-type-argum.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | From 166198735e9f4fbe91557df1351b3481bcf79e78 Mon Sep 17 00:00:00 2001 | ||
2 | From: Rico Tzschichholz <ricotz@ubuntu.com> | ||
3 | Date: Sun, 30 Jan 2022 19:54:11 +0100 | ||
4 | Subject: [PATCH 1/2] Util.Cache.Lru: Workaround missing generic type argument | ||
5 | |||
6 | Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/geary/-/commit/0f75e7a84a39492d0748cec2ba6028e08cae3644] | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | src/client/util/util-cache.vala | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/src/client/util/util-cache.vala b/src/client/util/util-cache.vala | ||
13 | index f054e32e..ecc275e8 100644 | ||
14 | --- a/src/client/util/util-cache.vala | ||
15 | +++ b/src/client/util/util-cache.vala | ||
16 | @@ -12,7 +12,7 @@ public class Util.Cache.Lru<T> : Geary.BaseObject { | ||
17 | private class CacheEntry<T> { | ||
18 | |||
19 | |||
20 | - public static int lru_compare(CacheEntry<T> a, CacheEntry<T> b) { | ||
21 | + public static int lru_compare(CacheEntry a, CacheEntry b) { | ||
22 | if (a.key == b.key) { | ||
23 | return 0; | ||
24 | } | ||
25 | -- | ||
26 | 2.35.1 | ||
27 | |||
diff --git a/meta-gnome/recipes-connectivity/geary/geary/0002-Fix-accessibility-issues-with-initializer-of-constan.patch b/meta-gnome/recipes-connectivity/geary/geary/0002-Fix-accessibility-issues-with-initializer-of-constan.patch deleted file mode 100644 index 76315f3a0e..0000000000 --- a/meta-gnome/recipes-connectivity/geary/geary/0002-Fix-accessibility-issues-with-initializer-of-constan.patch +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | From 64b56e75a54a9fa3f37c7686be97a5c8818413a4 Mon Sep 17 00:00:00 2001 | ||
2 | From: Rico Tzschichholz <ricotz@ubuntu.com> | ||
3 | Date: Tue, 30 Nov 2021 15:31:31 +0100 | ||
4 | Subject: [PATCH 2/2] Fix accessibility issues with initializer of constants | ||
5 | |||
6 | Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/geary/-/commit/9bd4c82952a0a2c3308c5cc86c0b85650c1fb484] | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | src/client/application/application-client.vala | 14 +++++++------- | ||
10 | 1 file changed, 7 insertions(+), 7 deletions(-) | ||
11 | |||
12 | diff --git a/src/client/application/application-client.vala b/src/client/application/application-client.vala | ||
13 | index 6ce19ce2..e6ba8533 100644 | ||
14 | --- a/src/client/application/application-client.vala | ||
15 | +++ b/src/client/application/application-client.vala | ||
16 | @@ -8,16 +8,16 @@ | ||
17 | |||
18 | // Defined by CMake build script. | ||
19 | extern const string GETTEXT_PACKAGE; | ||
20 | -extern const string _APP_ID; | ||
21 | -extern const string _BUILD_ROOT_DIR; | ||
22 | -extern const string _GSETTINGS_DIR; | ||
23 | -extern const string _INSTALL_PREFIX; | ||
24 | -extern const string _NAME_SUFFIX; | ||
25 | +public extern const string _APP_ID; | ||
26 | +public extern const string _BUILD_ROOT_DIR; | ||
27 | +public extern const string _GSETTINGS_DIR; | ||
28 | +public extern const string _INSTALL_PREFIX; | ||
29 | +public extern const string _NAME_SUFFIX; | ||
30 | extern const string _PLUGINS_DIR; | ||
31 | extern const string _PROFILE; | ||
32 | extern const string _REVNO; | ||
33 | -extern const string _SOURCE_ROOT_DIR; | ||
34 | -extern const string _VERSION; | ||
35 | +public extern const string _SOURCE_ROOT_DIR; | ||
36 | +public extern const string _VERSION; | ||
37 | extern const string _WEB_EXTENSIONS_DIR; | ||
38 | |||
39 | |||
40 | -- | ||
41 | 2.35.1 | ||
42 | |||