Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal-gnome/
Date: Sun, 19 Mar 2023 23:38:33
Message-Id: 1679269100.5b55272cd4191a05b9786784483a143a93327a11.mattst88@gentoo
1 commit: 5b55272cd4191a05b9786784483a143a93327a11
2 Author: Guillermo Joandet <gjoandet <AT> gmail <DOT> com>
3 AuthorDate: Sun Mar 19 21:32:04 2023 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 23:38:20 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b55272c
7
8 sys-apps/xdg-desktop-portal-gnome: Version bump to 44.0
9
10 Signed-off-by: Guillermo Joandet <gjoandet <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/30250
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 sys-apps/xdg-desktop-portal-gnome/Manifest | 1 +
15 .../xdg-desktop-portal-gnome-44.0.ebuild | 43 ++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/sys-apps/xdg-desktop-portal-gnome/Manifest b/sys-apps/xdg-desktop-portal-gnome/Manifest
19 index e1a2d817b1de..44880863c2ce 100644
20 --- a/sys-apps/xdg-desktop-portal-gnome/Manifest
21 +++ b/sys-apps/xdg-desktop-portal-gnome/Manifest
22 @@ -1,2 +1,3 @@
23 DIST xdg-desktop-portal-gnome-43.1.tar.xz 125248 BLAKE2B 5290041b3b0d24c6d62c1433c492fa5b04af80493d192392d6b89839356c1a4f2c74aba5509476bd5df5383375889d50636216b52e2448de1b3c8360501cb16b SHA512 fc9b2a0bf5483194326308099be0cb76245644bfc26546a4e63679eb695400cf254aa9e85de1b168e07ba7f05eb4f9fe4fde31853bcee4bd8bfb94063933ebc3
24 +DIST xdg-desktop-portal-gnome-44.0.tar.xz 127076 BLAKE2B e8775fe8017b5112bba995cea830a64b5f77222e40f09bf5318bed720274a7516cd2178b6d132b71b9608aae2885b9f9cab679a5abce25cd099591633a8a51e7 SHA512 1aa8eae420f4bf00ea34b3ad665edad89f9444bd2d5baa84d1f96b303ab072c66c139eb760cfbfd796691bda745f3eb5455f8d805fb042c8037eb786a730eb95
25 DIST xdg-desktop-portal-gnome-44.rc.tar.xz 127040 BLAKE2B b762d1e29cad9ed9afa98cfd98793a2b27c1553beccdaf6bccceaf642cd35d9d28bcbc3b4be891d1fb54efe99a27d62cf190f317deb26ea837b73b0448272a58 SHA512 bb3be21cbb4cb0e1fb22ae70d4c47cbd8b8bc6e87d4495f967fb4f8494cdcb0f1b3d03c15d12ed9cec4fca31151e99a967b38b3eb46cfdcc791f399185ceeacc
26
27 diff --git a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild
28 new file mode 100644
29 index 000000000000..ef62dd2dfcc4
30 --- /dev/null
31 +++ b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-44.0.ebuild
32 @@ -0,0 +1,43 @@
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 meson systemd xdg
39 +
40 +DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME"
41 +HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome"
42 +
43 +LICENSE="LGPL-2.1"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
46 +IUSE="wayland X"
47 +
48 +DEPEND="
49 + dev-libs/glib:2
50 + gnome-base/gnome-desktop:4=
51 + gui-libs/libadwaita:1
52 + media-libs/fontconfig
53 + sys-apps/dbus
54 + >=sys-apps/xdg-desktop-portal-1.15.0
55 + >=sys-apps/xdg-desktop-portal-gtk-1.14.0
56 + gui-libs/gtk:4[wayland?,X?]
57 + X? ( x11-libs/libX11 )
58 + wayland? ( dev-libs/wayland )
59 +"
60 +RDEPEND="${DEPEND}"
61 +BDEPEND="
62 + dev-util/gdbus-codegen
63 + sys-devel/gettext
64 + virtual/pkgconfig
65 +
66 + wayland? ( dev-util/wayland-scanner )
67 +"
68 +
69 +src_configure() {
70 + local emesonargs=(
71 + -Dsystemduserunitdir="$(systemd_get_userunitdir)"
72 + )
73 +
74 + meson_src_configure
75 +}