From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 45719138334 for ; Mon, 25 Feb 2019 17:11:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C885E08DB; Mon, 25 Feb 2019 17:11:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A99DE08DB for ; Mon, 25 Feb 2019 17:11:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4FF58335D1F for ; Mon, 25 Feb 2019 17:11:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC1A5552 for ; Mon, 25 Feb 2019 17:11:31 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1551114262.d6b7fdafc46dde50a4e7fe240da206c697014806.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: sys-apps/xdg-desktop-portal/, profiles/ X-VCS-Repository: proj/kde X-VCS-Files: profiles/categories sys-apps/xdg-desktop-portal/metadata.xml sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild X-VCS-Directories: profiles/ sys-apps/xdg-desktop-portal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d6b7fdafc46dde50a4e7fe240da206c697014806 X-VCS-Branch: master Date: Mon, 25 Feb 2019 17:11:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 673058c5-2e78-4d45-a277-d2dcc239f984 X-Archives-Hash: c1c41a7ae70c40740adc902903cbb56b commit: d6b7fdafc46dde50a4e7fe240da206c697014806 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Feb 25 17:04:22 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 25 17:04:22 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d6b7fdaf sys-apps/xdg-desktop-portal: Drop package Moved to Gentoo ebuild repository. Signed-off-by: Andreas Sturmlechner gentoo.org> profiles/categories | 1 - sys-apps/xdg-desktop-portal/metadata.xml | 8 ---- .../xdg-desktop-portal-1.2.0.ebuild | 47 ---------------------- 3 files changed, 56 deletions(-) diff --git a/profiles/categories b/profiles/categories index 13e0185a3e..5ce4755b2a 100644 --- a/profiles/categories +++ b/profiles/categories @@ -29,7 +29,6 @@ net-p2p sci-astronomy sci-calculators sci-electronics -sys-apps sys-auth sys-block sys-libs diff --git a/sys-apps/xdg-desktop-portal/metadata.xml b/sys-apps/xdg-desktop-portal/metadata.xml deleted file mode 100644 index 2fdbf33d96..0000000000 --- a/sys-apps/xdg-desktop-portal/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - kde@gentoo.org - Gentoo KDE Project - - 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 deleted file mode 100644 index 90099e8c1c..0000000000 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools systemd - -DESCRIPTION="Desktop integration portal" -HOMEPAGE="https://flatpak.org/ https://github.com/flatpak/xdg-desktop-portal" -SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc geolocation" - -BDEPEND=" - dev-util/gdbus-codegen - sys-devel/gettext - virtual/pkgconfig - doc? ( - app-text/xmlto - app-text/docbook-xml-dtd:4.3 - ) -" -DEPEND=" - dev-libs/glib:2[dbus] - sys-fs/fuse:0 - geolocation? ( app-misc/geoclue:2.0 ) -" -RDEPEND="${DEPEND}" - -src_prepare() { - default - sed -e "/^PKG_CHECK_MODULES(FLATPAK/s/^/# DONT /" -i configure.ac || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - --disable-pipewire - --with-systemduserunitdir="$(systemd_get_userunitdir)" - $(use_enable doc docbook-docs) - $(use_enable geolocation geoclue) - ) - econf "${myeconfargs[@]}" -}