Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions fix-build-wtih-eds-3.59.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
From df67e0112c102a2227f6f515091a81eb24a02e69 Mon Sep 17 00:00:00 2001
From: Bobby Rong <rjl931189261@126.com>
Date: Fri, 20 Feb 2026 23:10:36 +0800
Subject: [PATCH] build: Fix building with eds 3.59 and -Ddocs=true

Completes: 21b9642e82d95a18e7f73655d0ed78e6c70c11f8.
---
docs/meson.build | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/docs/meson.build b/docs/meson.build
index 67c66451..83a011f3 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -39,6 +39,10 @@ if eds_backend_enabled
docs_common_valadoc_flags += ['-D', 'HAS_EDS_3_41']
endif

+ if eds_dep.version().version_compare('>=3.59.1')
+ docs_common_valadoc_flags += ['-D', 'HAS_EDS_3_60']
+ endif
+
valadoc_targets += {
'name': 'folks-eds',
'source_files': eds_backendlib_sources,
--
GitLab

23 changes: 15 additions & 8 deletions io.elementary.mail.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/evolution-data-server.git",
"tag": "3.56.2"
"tag": "3.62.0",
"commit": "99edc087f1207979d951295f1a01f9b010e176ca"
}
],
"modules": [
Expand All @@ -78,18 +79,19 @@
"config-opts": [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo",
"-DCMAKE_INSTALL_LIBDIR=/app/lib",
"-DWITH_CXX_BINDINGS=false",
"-DSHARED_ONLY=true",
"-DGOBJECT_INTROSPECTION=true",
"-DICAL_BUILD_DOCS=false",
"-DICAL_GLIB_VAPI=true",
"-DLIBICAL_CXX_BINDINGS=false",
"-DLIBICAL_JAVA_BINDINGS=false",
"-DLIBICAL_GOBJECT_INTROSPECTION=true",
"-DLIBICAL_BUILD_DOCS=false",
"-DLIBICAL_GLIB_VAPI=true",
"-DLIBICAL_BUILD_TESTING=false"
],
"sources": [
{
"type": "git",
"url": "https://github.com/libical/libical.git",
"tag": "v3.0.9"
"tag": "v4.0.5",
"commit": "205efeb62fcc6503769bd6d1aca3ff4435d32449"
}
]
}
Expand All @@ -112,7 +114,12 @@
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/folks.git",
"tag": "0.15.9"
"tag": "0.15.12",
"commit": "b13bf053157213749b8ff6444255a7a71cb5ade4"
},
{
"type": "patch",
"path": "fix-build-wtih-eds-3.59.patch"
}
]
},
Expand Down
Loading