Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/
Date: Sat, 07 May 2022 03:01:32
Message-Id: 1651892469.79664f921b9359bf12864341b8136727c8a563cd.mattst88@gentoo
1 commit: 79664f921b9359bf12864341b8136727c8a563cd
2 Author: Jay Faulkner <jay <AT> jvf <DOT> cc>
3 AuthorDate: Sat May 7 01:51:40 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 03:01:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79664f92
7
8 gnome-extra/evolution-ews: add optfeature for oauth
9
10 Support for oauth is needed for an extremely common use
11 case (office365) and is currently an undocumented
12 optional dependency.
13
14 Closes: https://github.com/gentoo/gentoo/pull/25362
15 Signed-off-by: Jay Faulkner <jay <AT> jvf.cc>
16 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
17
18 gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild | 6 +++++-
19 1 file changed, 5 insertions(+), 1 deletion(-)
20
21 diff --git a/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild
22 index 4f5c552f73d3..478c6401b9f3 100644
23 --- a/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild
24 +++ b/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild
25 @@ -3,7 +3,7 @@
26
27 EAPI=8
28
29 -inherit cmake gnome2
30 +inherit cmake gnome2 optfeature
31
32 DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services"
33 HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
34 @@ -66,3 +66,7 @@ src_test() {
35 src_install() {
36 cmake_src_install
37 }
38 +
39 +pkg_postinst() {
40 + optfeature "oauth support" gnome-extra/evolution-data-server[oauth]
41 +}