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: Sat, 24 Sep 2022 16:46:56
Message-Id: 1664037827.1cb7eb5c4059f53aad88fb1e826f496a3c37d5d2.mattst88@gentoo
1 commit: 1cb7eb5c4059f53aad88fb1e826f496a3c37d5d2
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 16:00:29 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 16:43:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb7eb5c
7
8 sys-apps/xdg-desktop-portal-gnome: Version bump to 43.0
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-43.0.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 7970daea9ad6..6e6f4ae1636d 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.3.tar.xz 119228 BLAKE2B 1cafeda9e9ad5431eb52520db19350e9ee4c9f65e0923f6f320561893a29e32fc5033f3da540dd492c3341a8cb6bf29687cbf04b027e68ee388d102ac7023cac SHA512 0704eb29af5464fa0598cb4a05451866c8bacc20ad0638f7e799e7abdb4bbd86c41efbad963c493767190ae55f9d9c5d28360ee5fbbe1c42881969d03c7e84f5
22 +DIST xdg-desktop-portal-gnome-43.0.tar.xz 123836 BLAKE2B 304655c999cf938de6cff23e190835d3a902dce81e64b041dfd2ceed817ec239cb67479dc3fca979659dc15d31acb12e36f38499408c6a063e412760f28266ac SHA512 57dc455b19fc0c22aac9fb9fab375964999e99d96d2c6452ffecde3081e3a5a860eaf04dbada5ed87d43ae35119d1ab4d4fdfce3d1a9dc54b20862166984c2b3
23
24 diff --git a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-43.0.ebuild b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-43.0.ebuild
25 new file mode 100644
26 index 000000000000..a29af51cf559
27 --- /dev/null
28 +++ b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-43.0.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 ~arm64 ~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.15.0
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 +}