Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/
Date: Fri, 22 Feb 2019 18:03:59
Message-Id: 1550858557.d1b15af91072f4f0558b5d1ebf6018bd0b952f8f.leio@gentoo
1 commit: d1b15af91072f4f0558b5d1ebf6018bd0b952f8f
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 22 17:47:36 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 22 18:02:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b15af9
7
8 gnome-extra/evolution-ews: bump to 3.30.5; supports Office 365
9
10 Closes: https://bugs.gentoo.org/677882
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
13
14 gnome-extra/evolution-ews/Manifest | 1 +
15 .../evolution-ews/evolution-ews-3.30.5.ebuild | 65 ++++++++++++++++++++++
16 2 files changed, 66 insertions(+)
17
18 diff --git a/gnome-extra/evolution-ews/Manifest b/gnome-extra/evolution-ews/Manifest
19 index 6cf54081b0e..50b612b11a0 100644
20 --- a/gnome-extra/evolution-ews/Manifest
21 +++ b/gnome-extra/evolution-ews/Manifest
22 @@ -1,2 +1,3 @@
23 DIST evolution-ews-3.24.6.tar.xz 488668 BLAKE2B 3ec507b654042882158d2d8dfdbaae0372cc67d515501e45e327ef006cd8674f7b6e48de63f8930add9f29536d3428604f21666cfac98a764cb2eb0c20353ef3 SHA512 24bcaf9755b9d45d4848624b42f2b41bf1532aa836cdd26f8ab57b4dd5ac83d4375c340e0cac6f7f1b830c3ab998597893bce0fdd471ed7b0758a69367edfac1
24 DIST evolution-ews-3.26.6.tar.xz 485624 BLAKE2B 7e9b13fff05122a54fe502d0d4bd1f0ba895259b89d074d9f39ab4e56bdd2794e780c61023294ceea79adb94f80a42a232e4cc1743c41b062c1b03c9276a6253 SHA512 eeee228699989d0407ed65d2b8fa37f643890b40084484a125738dc9a10152de435cbc9e3109c1aa5ae90daeb4aba6e06da135c84d7f7e0fd330f5d8448383ee
25 +DIST evolution-ews-3.30.5.tar.xz 525252 BLAKE2B 510666cdf6bdb95e73799256daa9b4c753ed70de71798d3acb73eb55c30158a7b6b56fe7617150ec0a1f5ce20676da8a3ab4608fca06f009ea16fbc234770736 SHA512 6b17fd73b461e0ddd725ee87c854fca45fbc14f10922a60aff5a9a25b56728f1f16a0d3196b4bc3cba83e75655c15244c3bf2442fa17449c7466ab95371e93d7
26
27 diff --git a/gnome-extra/evolution-ews/evolution-ews-3.30.5.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.30.5.ebuild
28 new file mode 100644
29 index 00000000000..b309eac19dc
30 --- /dev/null
31 +++ b/gnome-extra/evolution-ews/evolution-ews-3.30.5.ebuild
32 @@ -0,0 +1,65 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit cmake-utils gnome2
39 +
40 +DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
42 +
43 +LICENSE="LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + dev-db/sqlite:3
50 + >=dev-libs/glib-2.46:2
51 + dev-libs/libical:0=
52 + >=dev-libs/libmspack-0.4
53 + dev-libs/libxml2:2
54 + >=gnome-extra/evolution-data-server-${PV}:0=
55 + >=mail-client/evolution-${PV}:2.0
56 + >=net-libs/libsoup-2.42:2.4
57 + >=x11-libs/gtk+-3.10:3
58 +"
59 +DEPEND="${RDEPEND}
60 + dev-util/gdbus-codegen
61 + dev-util/glib-utils
62 + >=dev-util/intltool-0.35.5
63 + >=sys-devel/gettext-0.18.3
64 + virtual/pkgconfig
65 + test? ( net-libs/uhttpmock )
66 +"
67 +
68 +# Unittests fail to find libevolution-ews.so
69 +RESTRICT="test !test? ( test )"
70 +
71 +# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare
72 +# call; if needed, set them after cmake-utils_src_prepare call, if that works
73 +
74 +src_prepare() {
75 + cmake-utils_src_prepare
76 + gnome2_src_prepare
77 +}
78 +
79 +src_configure() {
80 + local mycmakeargs=(
81 + -DWITH_MSPACK=ON
82 + -DENABLE_TESTS=$(usex test)
83 + )
84 + cmake-utils_src_configure
85 +}
86 +
87 +src_compile() {
88 + cmake-utils_src_compile
89 +}
90 +
91 +src_test() {
92 + cmake-utils_src_test
93 +}
94 +
95 +src_install() {
96 + cmake-utils_src_install
97 +}