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, 08 May 2020 07:22:19
Message-Id: 1588922520.e8c3fccce2907d02bff924b3831437d0cb44ce25.leio@gentoo
1 commit: e8c3fccce2907d02bff924b3831437d0cb44ce25
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 6 17:00:35 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri May 8 07:22:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8c3fccc
7
8 gnome-extra/evolution-ews: Bump to 3.36.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/evolution-ews/Manifest | 1 +
14 .../evolution-ews/evolution-ews-3.36.2.ebuild | 65 ++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/gnome-extra/evolution-ews/Manifest b/gnome-extra/evolution-ews/Manifest
18 index c8f26213e3b..0fa3d4c5660 100644
19 --- a/gnome-extra/evolution-ews/Manifest
20 +++ b/gnome-extra/evolution-ews/Manifest
21 @@ -1 +1,2 @@
22 DIST evolution-ews-3.34.4.tar.xz 538964 BLAKE2B 3b23dee72b13bd7da0efdacc13bf16052b52287dfbdeb913100244cfbdc726fdd6dc526fa38eb3da849ea5e9c95e9bb59fedadbe0238c37698cedefdda05f82d SHA512 397dd89c81c986501aaf5c0460735577ebe2aa0bfe549359073e211e912e3622c7ba61eb90898ec00a06bb1c4d02a565446a3b0620ff8515088d706d5c246c91
23 +DIST evolution-ews-3.36.2.tar.xz 552680 BLAKE2B de7b0d9155de895401d52ad4b82126f048c23ffe63d13e97505c9767f89d850d9e58e84ba26940835a066af4c53f78c465e015f6a473f052bdd6a7ffe18c9a10 SHA512 662828afa7eefec720016ec2d7c70fddd376c4a3ae974287516f7ce063c293665172fdbffa8a25333a0564b74632d8409140cac60f35cd3f169d063cecc337c8
24
25 diff --git a/gnome-extra/evolution-ews/evolution-ews-3.36.2.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.36.2.ebuild
26 new file mode 100644
27 index 00000000000..b3b87637eb3
28 --- /dev/null
29 +++ b/gnome-extra/evolution-ews/evolution-ews-3.36.2.ebuild
30 @@ -0,0 +1,65 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
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 +# libical-glib currently (2020-02-29) oddly behind USE=introspection
47 +RDEPEND="
48 + dev-db/sqlite:3
49 + >=dev-libs/glib-2.46:2
50 + >=dev-libs/libical-3.0.5:0=[introspection(-)]
51 + >=dev-libs/libmspack-0.4
52 + dev-libs/libxml2:2
53 + >=gnome-extra/evolution-data-server-${PV}:0=
54 + >=mail-client/evolution-${PV}:2.0
55 + >=net-libs/libsoup-2.58:2.4
56 + >=x11-libs/gtk+-3.10:3
57 +"
58 +DEPEND="${RDEPEND}
59 + dev-util/gdbus-codegen
60 + dev-util/glib-utils
61 + >=dev-util/intltool-0.35.5
62 + >=sys-devel/gettext-0.18.3
63 + virtual/pkgconfig
64 + test? ( net-libs/uhttpmock )
65 +"
66 +
67 +# Unittests fail to find libevolution-ews.so
68 +RESTRICT="test !test? ( test )"
69 +
70 +# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare
71 +# call; if needed, set them after cmake-utils_src_prepare call, if that works
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 +}