Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-contacts/
Date: Fri, 16 Apr 2021 22:26:57
Message-Id: 1618611999.3d9b45920813ff875c7b0b6389f274a35690cd09.mattst88@gentoo
1 commit: 3d9b45920813ff875c7b0b6389f274a35690cd09
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 22:20:00 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 22:26:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9b4592
7
8 gnome-extra/gnome-contacts: Version bump to 40.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gnome-extra/gnome-contacts/Manifest | 1 +
13 .../gnome-contacts/gnome-contacts-40.0.ebuild | 76 ++++++++++++++++++++++
14 2 files changed, 77 insertions(+)
15
16 diff --git a/gnome-extra/gnome-contacts/Manifest b/gnome-extra/gnome-contacts/Manifest
17 index c25b1a2a69e..3f067e88da4 100644
18 --- a/gnome-extra/gnome-contacts/Manifest
19 +++ b/gnome-extra/gnome-contacts/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-contacts-3.38.1.tar.xz 657376 BLAKE2B 5c042566ad99be1bda454466dcc2a42d6494cfbfb5a9f60eb0fa718a8d9bcbb986798ec48a87d5d322989b22d0fac2eee69df852ae39ba8a228ad91f50247c30 SHA512 bc2ed06d491c4773b9cedb2c51dc390a95d0271cf22d54864f5da4d892f80efece3cbdc1b90b4497f730039c8c83065b2a0ca590cecec579f011dd324ff8f134
22 +DIST gnome-contacts-40.0.tar.xz 270412 BLAKE2B 4d7970ac5417dfbd9b0acf51efd8ce1310cee51f90de8d8afa0239d918269642869e35befb64cbfb5acf1bde17ac738192d5ef802d27df47936165b03ed20b51 SHA512 5f9bb7e805cc67a379fd1ab5945774f5067be64d6577bc9cf0514c4ca6b53937555dc96591244d8be418b2b07f7c5401e8186dca5baff3a2b6c5a2ae459a676f
23
24 diff --git a/gnome-extra/gnome-contacts/gnome-contacts-40.0.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-40.0.ebuild
25 new file mode 100644
26 index 00000000000..7cf6f2b6d3a
27 --- /dev/null
28 +++ b/gnome-extra/gnome-contacts/gnome-contacts-40.0.ebuild
29 @@ -0,0 +1,76 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +PYTHON_COMPAT=( python3_{7..9} )
35 +VALA_MIN_API_VERSION="0.40"
36 +
37 +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
38 +
39 +DESCRIPTION="GNOME contact management application"
40 +HOMEPAGE="https://wiki.gnome.org/Design/Apps/Contacts"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +IUSE="telepathy v4l"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86"
46 +
47 +VALA_DEPEND="
48 + $(vala_depend)
49 + >=dev-libs/gobject-introspection-1.54
50 + dev-libs/folks[vala(+)]
51 + net-libs/gnome-online-accounts[vala]
52 + gnome-extra/evolution-data-server[gtk,vala]
53 + telepathy? ( net-libs/telepathy-glib[vala] )
54 + >=gui-libs/libhandy-1.1.0:1[vala]
55 +"
56 +# Configure is wrong; it needs cheese-3.5.91, not 3.3.91
57 +RDEPEND="
58 + >=gnome-extra/evolution-data-server-3.30:=[gnome-online-accounts]
59 + >=dev-libs/folks-0.11.4:=[eds,telepathy?]
60 + >=dev-libs/glib-2.58:2
61 + >=dev-libs/libgee-0.10:0.8
62 + >=gnome-base/gnome-desktop-3.0:3=
63 + net-libs/gnome-online-accounts:=
64 + >=x11-libs/gtk+-3.23.1:3
65 + v4l? ( >=media-video/cheese-3.5.91:= )
66 + telepathy? ( >=net-libs/telepathy-glib-0.22 )
67 + >=gui-libs/libhandy-1.0.0:1
68 +"
69 +DEPEND="${RDEPEND}"
70 +BDEPEND="
71 + ${PYTHON_DEPS}
72 + ${VALA_DEPEND}
73 + app-text/docbook-xml-dtd:4.2
74 + app-text/docbook-xsl-stylesheets
75 + dev-libs/appstream-glib
76 + dev-libs/libxml2:2
77 + dev-libs/libxslt
78 + >=sys-devel/gettext-0.19.8
79 + virtual/pkgconfig
80 +"
81 +
82 +src_prepare() {
83 + xdg_src_prepare
84 + vala_src_prepare
85 +}
86 +
87 +src_configure() {
88 + local emesonargs=(
89 + $(meson_feature v4l cheese)
90 + $(meson_use telepathy)
91 + -Dmanpage=true
92 + -Ddocs=false
93 + )
94 + meson_src_configure
95 +}
96 +
97 +pkg_postinst() {
98 + xdg_pkg_postinst
99 + gnome2_schemas_update
100 +}
101 +
102 +pkg_postrm() {
103 + xdg_pkg_postrm
104 + gnome2_schemas_update
105 +}