Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: sys-apps/xdg-desktop-portal/, profiles/
Date: Mon, 25 Feb 2019 17:11:37
Message-Id: 1551114262.d6b7fdafc46dde50a4e7fe240da206c697014806.asturm@gentoo
1 commit: d6b7fdafc46dde50a4e7fe240da206c697014806
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 25 17:04:22 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 25 17:04:22 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d6b7fdaf
7
8 sys-apps/xdg-desktop-portal: Drop package
9
10 Moved to Gentoo ebuild repository.
11
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 profiles/categories | 1 -
15 sys-apps/xdg-desktop-portal/metadata.xml | 8 ----
16 .../xdg-desktop-portal-1.2.0.ebuild | 47 ----------------------
17 3 files changed, 56 deletions(-)
18
19 diff --git a/profiles/categories b/profiles/categories
20 index 13e0185a3e..5ce4755b2a 100644
21 --- a/profiles/categories
22 +++ b/profiles/categories
23 @@ -29,7 +29,6 @@ net-p2p
24 sci-astronomy
25 sci-calculators
26 sci-electronics
27 -sys-apps
28 sys-auth
29 sys-block
30 sys-libs
31
32 diff --git a/sys-apps/xdg-desktop-portal/metadata.xml b/sys-apps/xdg-desktop-portal/metadata.xml
33 deleted file mode 100644
34 index 2fdbf33d96..0000000000
35 --- a/sys-apps/xdg-desktop-portal/metadata.xml
36 +++ /dev/null
37 @@ -1,8 +0,0 @@
38 -<?xml version="1.0" encoding="UTF-8"?>
39 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
40 -<pkgmetadata>
41 - <maintainer type="project">
42 - <email>kde@g.o</email>
43 - <name>Gentoo KDE Project</name>
44 - </maintainer>
45 -</pkgmetadata>
46
47 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
48 deleted file mode 100644
49 index 90099e8c1c..0000000000
50 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
51 +++ /dev/null
52 @@ -1,47 +0,0 @@
53 -# Copyright 1999-2019 Gentoo Authors
54 -# Distributed under the terms of the GNU General Public License v2
55 -
56 -EAPI=7
57 -
58 -inherit autotools systemd
59 -
60 -DESCRIPTION="Desktop integration portal"
61 -HOMEPAGE="https://flatpak.org/ https://github.com/flatpak/xdg-desktop-portal"
62 -SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
63 -
64 -LICENSE="LGPL-2.1"
65 -SLOT="0"
66 -KEYWORDS="~amd64 ~x86"
67 -IUSE="doc geolocation"
68 -
69 -BDEPEND="
70 - dev-util/gdbus-codegen
71 - sys-devel/gettext
72 - virtual/pkgconfig
73 - doc? (
74 - app-text/xmlto
75 - app-text/docbook-xml-dtd:4.3
76 - )
77 -"
78 -DEPEND="
79 - dev-libs/glib:2[dbus]
80 - sys-fs/fuse:0
81 - geolocation? ( app-misc/geoclue:2.0 )
82 -"
83 -RDEPEND="${DEPEND}"
84 -
85 -src_prepare() {
86 - default
87 - sed -e "/^PKG_CHECK_MODULES(FLATPAK/s/^/# DONT /" -i configure.ac || die
88 - eautoreconf
89 -}
90 -
91 -src_configure() {
92 - local myeconfargs=(
93 - --disable-pipewire
94 - --with-systemduserunitdir="$(systemd_get_userunitdir)"
95 - $(use_enable doc docbook-docs)
96 - $(use_enable geolocation geoclue)
97 - )
98 - econf "${myeconfargs[@]}"
99 -}