Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal/
Date: Wed, 22 Sep 2021 21:59:34
Message-Id: 1632347950.e45aaa1c1877ebb24f4ac0431e89ab448825d95d.asturm@gentoo
1 commit: e45aaa1c1877ebb24f4ac0431e89ab448825d95d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 21:32:42 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 21:59:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e45aaa1c
7
8 sys-apps/xdg-desktop-portal: 1.10.1 version bump
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sys-apps/xdg-desktop-portal/Manifest | 1 +
14 .../xdg-desktop-portal-1.10.1.ebuild | 42 ++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/sys-apps/xdg-desktop-portal/Manifest b/sys-apps/xdg-desktop-portal/Manifest
18 index 704e875657a..5fbb2d137f0 100644
19 --- a/sys-apps/xdg-desktop-portal/Manifest
20 +++ b/sys-apps/xdg-desktop-portal/Manifest
21 @@ -1 +1,2 @@
22 +DIST xdg-desktop-portal-1.10.1.tar.xz 479660 BLAKE2B 88a2b8ea890036bf0d4192fae4ae143e350d903a528e09a0bd7ffc7bda2a58b5c04ae80f1cec4357bb05cba8db417b6193fc6ef7f7dd65bf414f80a8ac2800c5 SHA512 5db0bd866674ff016d864646ea7f91f09a1b8fbc5ec735e4c97165af71770d2c7d3333e771062644dd522b32f67ead72bc7ef99186e3b069671c174d4d601fdc
23 DIST xdg-desktop-portal-1.8.1.tar.xz 473052 BLAKE2B a7d0aa2aa1e8220ced3e4abff8a8284c521b983ce807cd3e0d7b5d22f98f6428b6de9a193ae3aced9c13473617f453d13d0af83c677e3d077906b6cf8a138d45 SHA512 447d287d6627a1086d97dc5ebda20dfb1d0ca8643cbe54a7af5f6205a122a7be9d1643fded592f922c015561b7e2f4c6b6df555db3e0d3c02aad5bbe944077b6
24
25 diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.10.1.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.10.1.ebuild
26 new file mode 100644
27 index 00000000000..8f4d537d111
28 --- /dev/null
29 +++ b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.10.1.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit systemd
37 +
38 +DESCRIPTION="Desktop integration portal"
39 +HOMEPAGE="https://flatpak.org/ https://github.com/flatpak/xdg-desktop-portal"
40 +SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
45 +IUSE="geolocation screencast"
46 +
47 +BDEPEND="
48 + dev-util/gdbus-codegen
49 + sys-devel/gettext
50 + virtual/pkgconfig
51 +"
52 +DEPEND="
53 + dev-libs/glib:2
54 + dev-libs/json-glib
55 + sys-fs/fuse:0
56 + geolocation? ( >=app-misc/geoclue-2.5.3:2.0 )
57 + screencast? ( >=media-video/pipewire-0.3:= )
58 +"
59 +RDEPEND="${DEPEND}
60 + sys-apps/dbus
61 +"
62 +
63 +src_configure() {
64 + local myeconfargs=(
65 + --with-systemduserunitdir="$(systemd_get_userunitdir)"
66 + $(use_enable geolocation geoclue)
67 + $(use_enable screencast pipewire)
68 + --disable-docbook-docs # requires flatpak
69 + --disable-libportal # not packaged
70 + )
71 + econf "${myeconfargs[@]}"
72 +}