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: Mon, 12 Aug 2019 06:16:41
Message-Id: 1565590585.e2ace1e4762f1d0d7c8b58730d6ebf57151867e4.asturm@gentoo
1 commit: e2ace1e4762f1d0d7c8b58730d6ebf57151867e4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 12 06:07:56 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 12 06:16:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ace1e4
7
8 sys-apps/xdg-desktop-portal: Drop 1.2.0
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sys-apps/xdg-desktop-portal/Manifest | 1 -
14 .../xdg-desktop-portal-1.2.0.ebuild | 48 ----------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/sys-apps/xdg-desktop-portal/Manifest b/sys-apps/xdg-desktop-portal/Manifest
18 index 7aecea5e798..c07ddc5f59f 100644
19 --- a/sys-apps/xdg-desktop-portal/Manifest
20 +++ b/sys-apps/xdg-desktop-portal/Manifest
21 @@ -1,2 +1 @@
22 -DIST xdg-desktop-portal-1.2.0.tar.xz 405856 BLAKE2B 8d198c7c18b829f531e34d6526b52776a1acffcb874a2ea93953314710aa18bcb1988ffe190bb7b7f7c0d1c4eb1bc3d39fd2f7da626754730bf64f349ae75d39 SHA512 7c7dff8f1f44b4f564f195a8f9ad2985f6085d16638d18941459cd14d76d8ae7cafaf72f461f2c0c1414a8bace9f3ab4a5416de06edb71df677fd7bdca47f61a
23 DIST xdg-desktop-portal-1.4.2.tar.xz 421660 BLAKE2B 5395218fa182947c589ff51cd43b838591e47442b23c4fe0719f0970bff3602e81c4f79ad93890bde97a529ca34a733032e85a1f21f41e9aa230d5c2d40e1136 SHA512 9a19dc8f6899a24f8827ce36447316ce74f293abed469be24adfaa16d18deac0b7c5d77f744eed9b540b54cd23145281dacb6811dc52b34180b21d6dc02efc5a
24
25 diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
26 deleted file mode 100644
27 index 65b6451ec6f..00000000000
28 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools 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 x86"
45 -IUSE="doc" # geolocation
46 -
47 -BDEPEND="
48 - dev-util/gdbus-codegen
49 - sys-devel/gettext
50 - virtual/pkgconfig
51 - doc? (
52 - app-text/xmlto
53 - app-text/docbook-xml-dtd:4.3
54 - )
55 -"
56 -DEPEND="
57 - dev-libs/glib:2[dbus]
58 - sys-fs/fuse:0
59 -"
60 -# geolocation? ( >=app-misc/geoclue-2.5.2:2.0 ) # bug 678802
61 -RDEPEND="${DEPEND}"
62 -
63 -src_prepare() {
64 - default
65 - sed -e "/^PKG_CHECK_MODULES(FLATPAK/s/^/# DONT /" -i configure.ac || die
66 - eautoreconf
67 -}
68 -
69 -src_configure() {
70 - local myeconfargs=(
71 - --disable-pipewire
72 - --with-systemduserunitdir="$(systemd_get_userunitdir)"
73 - $(use_enable doc docbook-docs)
74 - --disable-geoclue
75 - )
76 -# $(use_enable geolocation geoclue)
77 - econf "${myeconfargs[@]}"
78 -}