diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-11-06 14:30:17 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-11-05 22:45:16 -0800 |
commit | 72474c3de427131a2292b5d99ee56f3eeecf9ba6 (patch) | |
tree | 4878d64657e1be710e37452819c4f319a4fc1637 | |
parent | 4b8d5db7ab8ba9a20c260de9c570329c0c574366 (diff) | |
download | meta-openembedded-72474c3de427131a2292b5d99ee56f3eeecf9ba6.tar.gz |
evolution-data-server: upgrade 3.54.0 -> 3.54.1
0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch
0001-cmake-Do-not-export-CC-into-gir-compiler.patch
0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch
0004-call-native-helpers.patch
Bug Fixes:
==========
- Pass GError instead of CamelException to camel_movemail_solaris
- Fix argument types in ENABLE_BROKEN_SPOOL code
- Use GIConv instead of iconv_t with iconv wrappers
- ESoupSession: Sometimes accesses server without OAuth2 token
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
5 files changed, 24 insertions, 24 deletions
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc index 340c639986..516f94a665 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc | |||
@@ -10,5 +10,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6a6e689d19255cf0557f3fe7d7068212 \ | |||
10 | GNOMEBASEBUILDCLASS = "cmake" | 10 | GNOMEBASEBUILDCLASS = "cmake" |
11 | inherit gnomebase upstream-version-is-even | 11 | inherit gnomebase upstream-version-is-even |
12 | 12 | ||
13 | SRC_URI[archive.sha256sum] = "a54b47b977a97030f738a412f4f5d5b2efbef5e0ebe8929b7cce00ac54681084" | 13 | SRC_URI[archive.sha256sum] = "25b336c48a6babc36321d88094b382aeaf18abcbab4a9438b3fff90c29e105ae" |
14 | PV = "3.54.0" | 14 | PV = "3.54.1" |
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch index e8c6d6a763..9a00d01678 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 131b88a81aba3d72d566bc8a9d968941a98e0007 Mon Sep 17 00:00:00 2001 | 1 | From ab25af06d6eed4dfb785b4593e38112f8f376230 Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> | 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> |
3 | Date: Sun, 31 Mar 2019 18:11:55 +0200 | 3 | Date: Sun, 31 Mar 2019 18:11:55 +0200 |
4 | Subject: [PATCH] CMakeLists.txt: Remove TRY_RUN for iconv | 4 | Subject: [PATCH] CMakeLists.txt: Remove TRY_RUN for iconv |
@@ -17,10 +17,10 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> | |||
17 | 1 file changed, 11 deletions(-) | 17 | 1 file changed, 11 deletions(-) |
18 | 18 | ||
19 | diff --git a/CMakeLists.txt b/CMakeLists.txt | 19 | diff --git a/CMakeLists.txt b/CMakeLists.txt |
20 | index 1672daf..0b3e4e0 100644 | 20 | index 5ccbf9c..5dfe9ee 100644 |
21 | --- a/CMakeLists.txt | 21 | --- a/CMakeLists.txt |
22 | +++ b/CMakeLists.txt | 22 | +++ b/CMakeLists.txt |
23 | @@ -524,17 +524,6 @@ if(NOT HAVE_ICONV) | 23 | @@ -569,17 +569,6 @@ if(NOT HAVE_ICONV) |
24 | message(FATAL_ERROR "You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv") | 24 | message(FATAL_ERROR "You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv") |
25 | endif(NOT HAVE_ICONV) | 25 | endif(NOT HAVE_ICONV) |
26 | 26 | ||
@@ -38,6 +38,3 @@ index 1672daf..0b3e4e0 100644 | |||
38 | # ****************************** | 38 | # ****************************** |
39 | # Backtraces for debugging | 39 | # Backtraces for debugging |
40 | # ****************************** | 40 | # ****************************** |
41 | -- | ||
42 | 2.20.1 | ||
43 | |||
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-cmake-Do-not-export-CC-into-gir-compiler.patch b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-cmake-Do-not-export-CC-into-gir-compiler.patch index 118d93a72a..b89d5f25c3 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-cmake-Do-not-export-CC-into-gir-compiler.patch +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0001-cmake-Do-not-export-CC-into-gir-compiler.patch | |||
@@ -1,7 +1,16 @@ | |||
1 | Use G_IR_SCANNER without passing additional environment | 1 | From 0f9763c77dcf44b1061517539287c79a59a6aede Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 6 Mar 2022 18:16:31 +0100 | ||
4 | Subject: [PATCH] Use G_IR_SCANNER without passing additional environment | ||
2 | 5 | ||
3 | Upstream-Status: Inappropriate [OE-specific] | 6 | Upstream-Status: Inappropriate [OE-specific] |
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
8 | --- | ||
9 | cmake/modules/GObjectIntrospection.cmake | 5 +---- | ||
10 | 1 file changed, 1 insertion(+), 4 deletions(-) | ||
11 | |||
12 | diff --git a/cmake/modules/GObjectIntrospection.cmake b/cmake/modules/GObjectIntrospection.cmake | ||
13 | index 9d2e6e7..3d8bb8c 100644 | ||
5 | --- a/cmake/modules/GObjectIntrospection.cmake | 14 | --- a/cmake/modules/GObjectIntrospection.cmake |
6 | +++ b/cmake/modules/GObjectIntrospection.cmake | 15 | +++ b/cmake/modules/GObjectIntrospection.cmake |
7 | @@ -122,9 +122,7 @@ macro(gir_add_introspection gir) | 16 | @@ -122,9 +122,7 @@ macro(gir_add_introspection gir) |
@@ -15,7 +24,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
15 | ${INTROSPECTION_SCANNER_ARGS} | 24 | ${INTROSPECTION_SCANNER_ARGS} |
16 | --namespace=${_gir_namespace} | 25 | --namespace=${_gir_namespace} |
17 | --nsversion=${_gir_version} | 26 | --nsversion=${_gir_version} |
18 | @@ -240,7 +238,6 @@ macro(gir_add_introspection_simple gir_l | 27 | @@ -240,7 +238,6 @@ macro(gir_add_introspection_simple gir_library pkg_export_prefix gir_library_ver |
19 | ${_gir_identifies_prefixes} | 28 | ${_gir_identifies_prefixes} |
20 | ${_gir_deps} | 29 | ${_gir_deps} |
21 | --add-include-path=${SHARE_INSTALL_PREFIX}/gir-1.0 | 30 | --add-include-path=${SHARE_INSTALL_PREFIX}/gir-1.0 |
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch index 51eaf7cfef..b26d8f3b20 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 20bd8946a5c73290d961df151e82033171639c0d Mon Sep 17 00:00:00 2001 | 1 | From 57dcb88745bea5e14a8d8d2d0e3d0d3876ee8c8a Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> | 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> |
3 | Date: Tue, 19 Dec 2017 16:55:13 +0100 | 3 | Date: Tue, 19 Dec 2017 16:55:13 +0100 |
4 | Subject: [PATCH 2/7] CMakeLists.txt: remove CHECK_C_SOURCE_RUNS check | 4 | Subject: [PATCH] CMakeLists.txt: remove CHECK_C_SOURCE_RUNS check |
5 | MIME-Version: 1.0 | 5 | MIME-Version: 1.0 |
6 | Content-Type: text/plain; charset=UTF-8 | 6 | Content-Type: text/plain; charset=UTF-8 |
7 | Content-Transfer-Encoding: 8bit | 7 | Content-Transfer-Encoding: 8bit |
@@ -16,10 +16,10 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> | |||
16 | 1 file changed, 23 deletions(-) | 16 | 1 file changed, 23 deletions(-) |
17 | 17 | ||
18 | diff --git a/CMakeLists.txt b/CMakeLists.txt | 18 | diff --git a/CMakeLists.txt b/CMakeLists.txt |
19 | index ed99904..9a2e99f 100644 | 19 | index 5dfe9ee..42721b3 100644 |
20 | --- a/CMakeLists.txt | 20 | --- a/CMakeLists.txt |
21 | +++ b/CMakeLists.txt | 21 | +++ b/CMakeLists.txt |
22 | @@ -579,29 +579,6 @@ CHECK_C_SOURCE_COMPILES("#include <langinfo.h> | 22 | @@ -619,29 +619,6 @@ CHECK_C_SOURCE_COMPILES("#include <langinfo.h> |
23 | CHECK_C_SOURCE_COMPILES("#include <langinfo.h> | 23 | CHECK_C_SOURCE_COMPILES("#include <langinfo.h> |
24 | int main(void) { char *detail = nl_langinfo (_NL_ADDRESS_COUNTRY_AB2); return 0; }" HAVE__NL_ADDRESS_COUNTRY_AB2) | 24 | int main(void) { char *detail = nl_langinfo (_NL_ADDRESS_COUNTRY_AB2); return 0; }" HAVE__NL_ADDRESS_COUNTRY_AB2) |
25 | 25 | ||
@@ -49,6 +49,3 @@ index ed99904..9a2e99f 100644 | |||
49 | # ****************************** | 49 | # ****************************** |
50 | # system mail stuff | 50 | # system mail stuff |
51 | # ****************************** | 51 | # ****************************** |
52 | -- | ||
53 | 2.21.0 | ||
54 | |||
diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0004-call-native-helpers.patch b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0004-call-native-helpers.patch index 82f6972501..c1d38bd0af 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0004-call-native-helpers.patch +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server/0004-call-native-helpers.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 9c375e3fcf8ff778a5010a07a7da4b6a58adec7c Mon Sep 17 00:00:00 2001 | 1 | From 621c3fe47376fe3bb28625114613eb4f636cdba7 Mon Sep 17 00:00:00 2001 |
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> | 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> |
3 | Date: Sun, 31 Mar 2019 19:11:31 +0200 | 3 | Date: Sun, 31 Mar 2019 19:11:31 +0200 |
4 | Subject: [PATCH] call native helpers | 4 | Subject: [PATCH] call native helpers |
@@ -15,7 +15,7 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> | |||
15 | 2 files changed, 2 insertions(+), 2 deletions(-) | 15 | 2 files changed, 2 insertions(+), 2 deletions(-) |
16 | 16 | ||
17 | diff --git a/src/addressbook/libebook-contacts/CMakeLists.txt b/src/addressbook/libebook-contacts/CMakeLists.txt | 17 | diff --git a/src/addressbook/libebook-contacts/CMakeLists.txt b/src/addressbook/libebook-contacts/CMakeLists.txt |
18 | index e9e3259..e749d1b 100644 | 18 | index 480e3f6..fc40b20 100644 |
19 | --- a/src/addressbook/libebook-contacts/CMakeLists.txt | 19 | --- a/src/addressbook/libebook-contacts/CMakeLists.txt |
20 | +++ b/src/addressbook/libebook-contacts/CMakeLists.txt | 20 | +++ b/src/addressbook/libebook-contacts/CMakeLists.txt |
21 | @@ -25,7 +25,7 @@ target_link_libraries(gen-western-table | 21 | @@ -25,7 +25,7 @@ target_link_libraries(gen-western-table |
@@ -28,10 +28,10 @@ index e9e3259..e749d1b 100644 | |||
28 | ) | 28 | ) |
29 | 29 | ||
30 | diff --git a/src/camel/CMakeLists.txt b/src/camel/CMakeLists.txt | 30 | diff --git a/src/camel/CMakeLists.txt b/src/camel/CMakeLists.txt |
31 | index be626a8..14ac8b8 100644 | 31 | index 59bc77a..c5da19c 100644 |
32 | --- a/src/camel/CMakeLists.txt | 32 | --- a/src/camel/CMakeLists.txt |
33 | +++ b/src/camel/CMakeLists.txt | 33 | +++ b/src/camel/CMakeLists.txt |
34 | @@ -10,7 +10,7 @@ target_include_directories(camel-gen-tables PUBLIC | 34 | @@ -20,7 +20,7 @@ target_include_directories(camel-gen-tables PUBLIC |
35 | 35 | ||
36 | add_custom_command( | 36 | add_custom_command( |
37 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c | 37 | OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/camel-mime-tables.c |
@@ -40,6 +40,3 @@ index be626a8..14ac8b8 100644 | |||
40 | DEPENDS camel-gen-tables | 40 | DEPENDS camel-gen-tables |
41 | ) | 41 | ) |
42 | 42 | ||
43 | -- | ||
44 | 2.20.1 | ||
45 | |||