From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87AFD158090 for ; Sat, 7 May 2022 03:01:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F4F5E0823; Sat, 7 May 2022 03:01:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EC13E081B for ; Sat, 7 May 2022 03:01:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F18C1341945 for ; Sat, 7 May 2022 03:01:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A1D8450 for ; Sat, 7 May 2022 03:01:27 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1651892469.79664f921b9359bf12864341b8136727c8a563cd.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild X-VCS-Directories: gnome-extra/evolution-ews/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 79664f921b9359bf12864341b8136727c8a563cd X-VCS-Branch: master Date: Sat, 7 May 2022 03:01:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e74fe7df-e313-41a9-a85b-8418306aef3c X-Archives-Hash: 7a67f4280afd72efcb07bd44d4ce0786 commit: 79664f921b9359bf12864341b8136727c8a563cd Author: Jay Faulkner jvf cc> AuthorDate: Sat May 7 01:51:40 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat May 7 03:01:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79664f92 gnome-extra/evolution-ews: add optfeature for oauth Support for oauth is needed for an extremely common use case (office365) and is currently an undocumented optional dependency. Closes: https://github.com/gentoo/gentoo/pull/25362 Signed-off-by: Jay Faulkner jvf.cc> Signed-off-by: Matt Turner gentoo.org> gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild index 4f5c552f73d3..478c6401b9f3 100644 --- a/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild +++ b/gnome-extra/evolution-ews/evolution-ews-3.44.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake gnome2 +inherit cmake gnome2 optfeature DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services" HOMEPAGE="https://wiki.gnome.org/Apps/Evolution" @@ -66,3 +66,7 @@ src_test() { src_install() { cmake_src_install } + +pkg_postinst() { + optfeature "oauth support" gnome-extra/evolution-data-server[oauth] +}