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