Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-connections/
Date: Sat, 18 Mar 2023 17:50:49
Message-Id: 1679161830.1925103bae2ec4d4d908fac69cd98ce67ae8f852.mattst88@gentoo
1 commit: 1925103bae2ec4d4d908fac69cd98ce67ae8f852
2 Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
3 AuthorDate: Sat Mar 18 15:09:26 2023 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 18 17:50:30 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1925103b
7
8 net-misc/gnome-connections: Version bump to 44.0
9
10 Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/30208
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 net-misc/gnome-connections/Manifest | 1 +
15 .../gnome-connections-44.0.ebuild | 63 ++++++++++++++++++++++
16 2 files changed, 64 insertions(+)
17
18 diff --git a/net-misc/gnome-connections/Manifest b/net-misc/gnome-connections/Manifest
19 index a9ceef84cbab..ddd60768bfa8 100644
20 --- a/net-misc/gnome-connections/Manifest
21 +++ b/net-misc/gnome-connections/Manifest
22 @@ -1,2 +1,3 @@
23 DIST gnome-connections-43.0.tar.xz 3992760 BLAKE2B 16ff3cc5d587a6169fdf749ae6e743cd0fbec2b6e127c684ec42ba17da6e73d1d66ef4ef621d01452d21230dc8c99bc27678ec0364b9522b5685cec4b9c69445 SHA512 cd9d53f2e4b8e679992c5a65aa89554d1b840174ecf0f75f103265ebc2f07f63f210da4ef7e3c36af8b5fe761ec9ae4711eb92f5f40ae00225fcd9f2f8a9157b
24 +DIST gnome-connections-44.0.tar.xz 3998876 BLAKE2B 062769eafddb52da9962a59c11697205a0370d890425488a29d1bec2d4f2ba62041ff7d271d9bc7aae1a4fe108fa617864eea63755a6c02de07b340329dd2e5c SHA512 8193877175e5d553ada0b0c7985ee2029c85d0cb2fde16d5a47b9c6c0027deb22c4d1c8f4b2188ab430f3702318b2c1a229b0297a1e90aea45697e733733b3e9
25 DIST gnome-connections-44.rc.tar.xz 3998264 BLAKE2B a6d44c699e6698cba6b794cd0f36db971a8fc59bad4b4fe8f9b2a9b4c5be2eb66368c5dac0c4321195a1f3b30d1ac7196d76284ff01ab2806b8fad462f32a7e9 SHA512 8c23725340595fc0e3642a362e539e0f87b6908d0b35d4871a61984c40523f3c30dec1bdff7f68bc04c8d89fea742c91f5c5c3f2e389039e0c295cb33d661c23
26
27 diff --git a/net-misc/gnome-connections/gnome-connections-44.0.ebuild b/net-misc/gnome-connections/gnome-connections-44.0.ebuild
28 new file mode 100644
29 index 000000000000..325726aeadc2
30 --- /dev/null
31 +++ b/net-misc/gnome-connections/gnome-connections-44.0.ebuild
32 @@ -0,0 +1,63 @@
33 +# Copyright 1999-2023 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit gnome.org gnome2-utils meson vala xdg
39 +
40 +DESCRIPTION="A remote desktop client for the GNOME desktop environment"
41 +HOMEPAGE="https://gitlab.gnome.org/GNOME/connections"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +DEPEND="
50 + dev-libs/gobject-introspection
51 + >=dev-libs/glib-2.50:2
52 + >=x11-libs/gtk+-3.22:3[introspection]
53 + >=net-libs/gtk-vnc-0.4.4[pulseaudio,vala]
54 + >=gui-libs/libhandy-1.6.0:1[vala]
55 + >=dev-libs/libxml2-2.7.8
56 + app-crypt/libsecret[vala]
57 +
58 + >=net-misc/freerdp-2.0.0:0=
59 +"
60 +RDEPEND="${DEPEND}"
61 +BDEPEND="
62 + $(vala_depend)
63 + dev-libs/glib
64 + dev-util/glib-utils
65 + dev-util/itstool
66 + sys-devel/gettext
67 + virtual/pkgconfig
68 +
69 + test? (
70 + dev-libs/appstream-glib
71 + dev-util/desktop-file-utils
72 + )
73 +"
74 +
75 +src_prepare() {
76 + default
77 + vala_setup
78 +}
79 +
80 +src_configure() {
81 + local emesonargs=(
82 + -Dprofile=default
83 + )
84 + meson_src_configure
85 +}
86 +
87 +pkg_postinst() {
88 + xdg_pkg_postinst
89 + gnome2_schemas_update
90 +}
91 +
92 +pkg_postrm() {
93 + xdg_pkg_postrm
94 + gnome2_schemas_update
95 +}