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/, profiles/
Date: Sat, 09 Oct 2021 11:23:13
Message-Id: 1633778579.981d396535559ecaa218933d45fad58a2f1002fb.leio@gentoo
1 commit: 981d396535559ecaa218933d45fad58a2f1002fb
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 11:10:43 2021 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 11:22:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981d3965
7
8 gnome-extra/gnome-contacts: bump to 41.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/gnome-contacts/Manifest | 1 +
14 .../gnome-contacts/gnome-contacts-41.0.ebuild | 76 ++++++++++++++++++++++
15 profiles/package.mask | 1 +
16 3 files changed, 78 insertions(+)
17
18 diff --git a/gnome-extra/gnome-contacts/Manifest b/gnome-extra/gnome-contacts/Manifest
19 index 86e636ebca2..016f9fc6e45 100644
20 --- a/gnome-extra/gnome-contacts/Manifest
21 +++ b/gnome-extra/gnome-contacts/Manifest
22 @@ -1 +1,2 @@
23 DIST gnome-contacts-40.0.tar.xz 270412 BLAKE2B 4d7970ac5417dfbd9b0acf51efd8ce1310cee51f90de8d8afa0239d918269642869e35befb64cbfb5acf1bde17ac738192d5ef802d27df47936165b03ed20b51 SHA512 5f9bb7e805cc67a379fd1ab5945774f5067be64d6577bc9cf0514c4ca6b53937555dc96591244d8be418b2b07f7c5401e8186dca5baff3a2b6c5a2ae459a676f
24 +DIST gnome-contacts-41.0.tar.xz 275248 BLAKE2B c0611a131ce1ebb74b96e96e2e1b9370526b56c49ee43876273fdf5b2f3b333ad2aad85c50ddcebaac85ee8c996037fec3209c6765cab7b37b49ced04a82a7a8 SHA512 310f333c0863d8e58c2280b994071b2655eee7224ab80a468ffc7acc61834d3f6dbb794bbdc5b8d4428226bab96f3ea65b8bed39df79d88704e38b51a8f4b05f
25
26 diff --git a/gnome-extra/gnome-contacts/gnome-contacts-41.0.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-41.0.ebuild
27 new file mode 100644
28 index 00000000000..7cf6f2b6d3a
29 --- /dev/null
30 +++ b/gnome-extra/gnome-contacts/gnome-contacts-41.0.ebuild
31 @@ -0,0 +1,76 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +VALA_MIN_API_VERSION="0.40"
38 +
39 +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
40 +
41 +DESCRIPTION="GNOME contact management application"
42 +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +IUSE="telepathy v4l"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86"
48 +
49 +VALA_DEPEND="
50 + $(vala_depend)
51 + >=dev-libs/gobject-introspection-1.54
52 + dev-libs/folks[vala(+)]
53 + net-libs/gnome-online-accounts[vala]
54 + gnome-extra/evolution-data-server[gtk,vala]
55 + telepathy? ( net-libs/telepathy-glib[vala] )
56 + >=gui-libs/libhandy-1.1.0:1[vala]
57 +"
58 +# Configure is wrong; it needs cheese-3.5.91, not 3.3.91
59 +RDEPEND="
60 + >=gnome-extra/evolution-data-server-3.30:=[gnome-online-accounts]
61 + >=dev-libs/folks-0.11.4:=[eds,telepathy?]
62 + >=dev-libs/glib-2.58:2
63 + >=dev-libs/libgee-0.10:0.8
64 + >=gnome-base/gnome-desktop-3.0:3=
65 + net-libs/gnome-online-accounts:=
66 + >=x11-libs/gtk+-3.23.1:3
67 + v4l? ( >=media-video/cheese-3.5.91:= )
68 + telepathy? ( >=net-libs/telepathy-glib-0.22 )
69 + >=gui-libs/libhandy-1.0.0:1
70 +"
71 +DEPEND="${RDEPEND}"
72 +BDEPEND="
73 + ${PYTHON_DEPS}
74 + ${VALA_DEPEND}
75 + app-text/docbook-xml-dtd:4.2
76 + app-text/docbook-xsl-stylesheets
77 + dev-libs/appstream-glib
78 + dev-libs/libxml2:2
79 + dev-libs/libxslt
80 + >=sys-devel/gettext-0.19.8
81 + virtual/pkgconfig
82 +"
83 +
84 +src_prepare() {
85 + xdg_src_prepare
86 + vala_src_prepare
87 +}
88 +
89 +src_configure() {
90 + local emesonargs=(
91 + $(meson_feature v4l cheese)
92 + $(meson_use telepathy)
93 + -Dmanpage=true
94 + -Ddocs=false
95 + )
96 + meson_src_configure
97 +}
98 +
99 +pkg_postinst() {
100 + xdg_pkg_postinst
101 + gnome2_schemas_update
102 +}
103 +
104 +pkg_postrm() {
105 + xdg_pkg_postrm
106 + gnome2_schemas_update
107 +}
108
109 diff --git a/profiles/package.mask b/profiles/package.mask
110 index d9d53c52483..e1024db8ade 100644
111 --- a/profiles/package.mask
112 +++ b/profiles/package.mask
113 @@ -39,6 +39,7 @@
114 >=mail-client/evolution-3.41
115 >=gnome-extra/evolution-ews-3.41
116 >=gnome-extra/gnome-calendar-41.0
117 +>=gnome-extra/gnome-contacts-41.0
118
119 # Fabian Groffen <grobian@g.o> (2021-10-03)
120 # Masked for erratic behaviour