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 62FBC138334 for ; Tue, 16 Oct 2018 14:10:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11A70E089A; Tue, 16 Oct 2018 14:10:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DAC12E089A for ; Tue, 16 Oct 2018 14:10:43 +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 1057C335C9F for ; Tue, 16 Oct 2018 14:10:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86A3343C for ; Tue, 16 Oct 2018 14:10:40 +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: <1539698976.cbe83060bf443b3c04c1cc8f91affc44a5ea12e7.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/discover/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/discover/discover-5.14.1.ebuild X-VCS-Directories: kde-plasma/discover/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cbe83060bf443b3c04c1cc8f91affc44a5ea12e7 X-VCS-Branch: master Date: Tue, 16 Oct 2018 14:10:40 +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-Archives-Salt: 2ed60755-d016-4b49-8647-789f160315ef X-Archives-Hash: 05a3e75b2d9712c64d70385ea27b512d commit: cbe83060bf443b3c04c1cc8f91affc44a5ea12e7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Oct 16 13:33:57 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Oct 16 14:09:36 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=cbe83060 kde-plasma/discover: 5.14.1 version bump Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 kde-plasma/discover/discover-5.14.1.ebuild | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/kde-plasma/discover/discover-5.14.1.ebuild b/kde-plasma/discover/discover-5.14.1.ebuild new file mode 100644 index 0000000000..6d93a8e15d --- /dev/null +++ b/kde-plasma/discover/discover-5.14.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_TEST="forceoptional" +inherit kde5 + +DESCRIPTION="KDE Plasma resources management GUI" +HOMEPAGE="https://userbase.kde.org/Discover" +KEYWORDS="~amd64 ~x86" +IUSE="firmware" + +DEPEND=" + $(add_frameworks_dep attica) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kirigami) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtconcurrent) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + firmware? ( sys-apps/fwupd ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + kde5_src_prepare + # we don't need it with PackageKitBackend off + punt_bogus_dep KF5 Archive +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_packagekitqt5=OFF + -DCMAKE_DISABLE_FIND_PACKAGE_AppStreamQt=OFF + $(cmake-utils_use_find_package firmware LIBFWUPD) + ) + + kde5_src_configure +}