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: Mon, 04 Jul 2022 01:48:52
Message-Id: 1656899310.d7224d230bb9df71e463e4384103e9b1bf99127e.mattst88@gentoo
1 commit: d7224d230bb9df71e463e4384103e9b1bf99127e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 01:44:31 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 01:48:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7224d23
7
8 sys-apps/xdg-desktop-portal-gnome: Version bump to 42.3
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 sys-apps/xdg-desktop-portal-gnome/Manifest | 1 +
13 .../xdg-desktop-portal-gnome-42.3.ebuild | 39 ++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/sys-apps/xdg-desktop-portal-gnome/Manifest b/sys-apps/xdg-desktop-portal-gnome/Manifest
17 index a8084aba273f..0ab8800747ad 100644
18 --- a/sys-apps/xdg-desktop-portal-gnome/Manifest
19 +++ b/sys-apps/xdg-desktop-portal-gnome/Manifest
20 @@ -1 +1,2 @@
21 DIST xdg-desktop-portal-gnome-42.1.tar.xz 117932 BLAKE2B c0c6dc7e4efbfda8996d63c191228ebf867e3fe11a0ae031b5bfd4298a33ab3b9cb9d9cecc36c1b41eeb33c54bd3bca17149e641c1131f0be7dcb2dbdf42eda8 SHA512 6843fd10e7e70f3d09c2a9b1397288f553fb44bcae30e7992790fddbc92d6c5cc966c27b7f294e2de1a139d3893c009f1480855d66c873a13861f3fe4abecee7
22 +DIST xdg-desktop-portal-gnome-42.3.tar.xz 119228 BLAKE2B 1cafeda9e9ad5431eb52520db19350e9ee4c9f65e0923f6f320561893a29e32fc5033f3da540dd492c3341a8cb6bf29687cbf04b027e68ee388d102ac7023cac SHA512 0704eb29af5464fa0598cb4a05451866c8bacc20ad0638f7e799e7abdb4bbd86c41efbad963c493767190ae55f9d9c5d28360ee5fbbe1c42881969d03c7e84f5
23
24 diff --git a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.3.ebuild b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.3.ebuild
25 new file mode 100644
26 index 000000000000..13493ee5f082
27 --- /dev/null
28 +++ b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.3.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit gnome.org meson systemd xdg
36 +
37 +DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME"
38 +HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome"
39 +
40 +LICENSE="LGPL-2.1"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~loong ~ppc ~ppc64 ~riscv ~x86"
43 +IUSE="wayland X"
44 +
45 +BDEPEND="
46 + dev-util/gdbus-codegen
47 + sys-devel/gettext
48 + virtual/pkgconfig
49 +"
50 +DEPEND="
51 + dev-libs/glib:2
52 + gnome-base/gnome-desktop:4=
53 + gui-libs/libadwaita:1
54 + media-libs/fontconfig
55 + sys-apps/dbus
56 + >=sys-apps/xdg-desktop-portal-1.7
57 + >=sys-apps/xdg-desktop-portal-gtk-1.14.0
58 + gui-libs/gtk:4[wayland?,X?]
59 +"
60 +RDEPEND="${DEPEND}"
61 +
62 +src_configure() {
63 + local emesonargs=(
64 + -Dsystemduserunitdir="$(systemd_get_userunitdir)"
65 + )
66 +
67 + meson_src_configure
68 +}