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 E0E64138334 for ; Wed, 16 Oct 2019 13:21:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67C08E0991; Wed, 16 Oct 2019 13:21:13 +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 4F42BE0991 for ; Wed, 16 Oct 2019 13:21:13 +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 59D6C34BDB2 for ; Wed, 16 Oct 2019 13:21:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FF3B88E for ; Wed, 16 Oct 2019 13:21:09 +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: <1571229435.4f25284c5913a59c5c40f43fa19ca52f6420c69d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/breeze-icons-rcc/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-9999.ebuild X-VCS-Directories: kde-frameworks/breeze-icons-rcc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4f25284c5913a59c5c40f43fa19ca52f6420c69d X-VCS-Branch: master Date: Wed, 16 Oct 2019 13:21:09 +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: ae297a72-4b49-44da-9c9a-3bbce9731e25 X-Archives-Hash: dcbb93f16bbafb4a84f532c064d7bdc9 commit: 4f25284c5913a59c5c40f43fa19ca52f6420c69d Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Oct 16 12:37:15 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Oct 16 12:37:15 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4f25284c kde-frameworks/breeze-icons-rcc: Port away from kde5.eclass Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> .../breeze-icons-rcc/breeze-icons-rcc-9999.ebuild | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-9999.ebuild b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-9999.ebuild index 79fffae97f..422d482082 100644 --- a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-9999.ebuild +++ b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-9999.ebuild @@ -3,28 +3,25 @@ EAPI=7 -KDE_AUTODEPS="false" -KDE_DEBUG="false" -KDE_QTHELP="false" -KMNAME="breeze-icons" -inherit kde5 +KDE_ORG_NAME="breeze-icons" +inherit cmake-utils kde.org DESCRIPTION="Breeze SVG icon theme binary resource" LICENSE="LGPL-3" KEYWORDS="" -IUSE="" +IUSE="test" BDEPEND=" - $(add_frameworks_dep extra-cmake-modules) - $(add_qt_dep qtcore) + kde-frameworks/extra-cmake-modules:5 + dev-qt/qtcore:5 test? ( app-misc/fdupes ) " -DEPEND="test? ( $(add_qt_dep qttest) )" +DEPEND="test? ( dev-qt/qttest:5 )" src_configure() { local mycmakeargs=( -DBINARY_ICONS_RESOURCE=ON -DSKIP_INSTALL_ICONS=ON ) - kde5_src_configure + cmake-utils_src_configure }