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/gnome-contacts/
Date: Sat, 07 Sep 2019 22:09:28
Message-Id: 1567894134.23b250e7fca0844fed467fa0a77e27fcc51835f5.leio@gentoo
1 commit: 23b250e7fca0844fed467fa0a77e27fcc51835f5
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 7 20:23:25 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 7 22:08:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b250e7
7
8 gnome-extra/gnome-contacts: bump to 3.32.1
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/gnome-contacts/Manifest | 1 +
14 .../gnome-contacts/gnome-contacts-3.32.1.ebuild | 72 ++++++++++++++++++++++
15 2 files changed, 73 insertions(+)
16
17 diff --git a/gnome-extra/gnome-contacts/Manifest b/gnome-extra/gnome-contacts/Manifest
18 index e50b19e4bad..5198f380b3f 100644
19 --- a/gnome-extra/gnome-contacts/Manifest
20 +++ b/gnome-extra/gnome-contacts/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-contacts-3.30.2.tar.xz 368476 BLAKE2B 502170e327eb63a6d026af94a09949f6b973dba0c59079a23c7f37dfde2a391ffa13d905452741c403ada8e6f1101f7a5620ad9b59eb4c5341e96d357d8fe99b SHA512 cf6ab33ef6147bceb5a4681b83830828fd4caa47d83fa9f71e01db3caf710f7f09fe60d2956565a2b9bd124356e100b31d6372ac4d4d231718230915a135e79d
23 +DIST gnome-contacts-3.32.1.tar.xz 358800 BLAKE2B a3cdc58948b994868a18e74dd2ab1a1ffea04b84da95347f19b79b49a7eb9363589e08e11e8fa2f588c5833592be3149ea435b6036a376d4c9e1477d0d308e96 SHA512 25fc4835c61bd5f195512fd304955058e1178cbafaff09a6bbfffc58840876f514ebc3119247925266a9c10f8fc452511a055d84aa1e815571188aba7212fe71
24
25 diff --git a/gnome-extra/gnome-contacts/gnome-contacts-3.32.1.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-3.32.1.ebuild
26 new file mode 100644
27 index 00000000000..297ca628309
28 --- /dev/null
29 +++ b/gnome-extra/gnome-contacts/gnome-contacts-3.32.1.ebuild
30 @@ -0,0 +1,72 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit gnome.org gnome2-utils meson vala xdg
37 +
38 +DESCRIPTION="GNOME contact management application"
39 +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +IUSE="telepathy v4l"
44 +KEYWORDS="~amd64 ~arm64"
45 +
46 +VALA_DEPEND="
47 + $(vala_depend)
48 + >=dev-libs/gobject-introspection-1.54
49 + dev-libs/folks[vala(+)]
50 + net-libs/gnome-online-accounts[vala]
51 + gnome-extra/evolution-data-server[vala]
52 + telepathy? ( net-libs/telepathy-glib[vala] )
53 + gui-libs/libhandy:0.0[vala]
54 +"
55 +# Configure is wrong; it needs cheese-3.5.91, not 3.3.91
56 +RDEPEND="
57 + >=gnome-extra/evolution-data-server-3.13.90:=[gnome-online-accounts]
58 + >=dev-libs/folks-0.11.4:=[eds,telepathy?]
59 + >=dev-libs/glib-2.44:2
60 + >=dev-libs/libgee-0.10:0.8
61 + >=gnome-base/gnome-desktop-3.0:3=
62 + net-libs/gnome-online-accounts:=
63 + >=x11-libs/gtk+-3.23.1:3
64 + v4l? ( >=media-video/cheese-3.5.91:= )
65 + telepathy? ( >=net-libs/telepathy-glib-0.22 )
66 + >=gui-libs/libhandy-0.0.9:0.0=
67 +"
68 +DEPEND="${RDEPEND}
69 + ${VALA_DEPEND}
70 + app-text/docbook-xml-dtd:4.2
71 + app-text/docbook-xsl-stylesheets
72 + dev-libs/appstream-glib
73 + dev-libs/libxml2:2
74 + dev-libs/libxslt
75 + >=sys-devel/gettext-0.19.8
76 + virtual/pkgconfig
77 +"
78 +
79 +src_prepare() {
80 + xdg_src_prepare
81 + vala_src_prepare
82 +}
83 +
84 +src_configure() {
85 + local emesonargs=(
86 + $(meson_use v4l cheese)
87 + $(meson_use telepathy)
88 + -Dmanpage=true
89 + -Ddocs=false
90 + )
91 + meson_src_configure
92 +}
93 +
94 +pkg_postinst() {
95 + xdg_pkg_postinst
96 + gnome2_schemas_update
97 +}
98 +
99 +pkg_postrm() {
100 + xdg_pkg_postrm
101 + gnome2_schemas_update
102 +}