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 5263E1383CD for ; Thu, 16 Jan 2020 17:29:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F2DBE0880; Thu, 16 Jan 2020 17:29:03 +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 75722E0880 for ; Thu, 16 Jan 2020 17:29:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 70C4634E139 for ; Thu, 16 Jan 2020 17:29:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CC8FB1 for ; Thu, 16 Jan 2020 17:29:01 +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: <1579195712.ca7604468ddcc7162aa0cb44a706845751ab44ad.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libalkimia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libalkimia/libalkimia-7.0.2-r1.ebuild X-VCS-Directories: app-office/libalkimia/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ca7604468ddcc7162aa0cb44a706845751ab44ad X-VCS-Branch: master Date: Thu, 16 Jan 2020 17:29:01 +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: bd5bbaec-6152-4e43-a684-9c317d058f79 X-Archives-Hash: 82af5dc30b719bd314a3c5a0ed814363 commit: ca7604468ddcc7162aa0cb44a706845751ab44ad Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 16 17:19:54 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 16 17:28:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca760446 app-office/libalkimia: Port to ecm.eclass and kde.org.eclass Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libalkimia/libalkimia-7.0.2-r1.ebuild | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild b/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild index 4a61fccbf5c..eab11cea7ef 100644 --- a/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild +++ b/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild @@ -1,19 +1,21 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -KDE_TEST="forceoptional" -KMNAME="alkimia" -inherit kde5 +ECM_TEST="forceoptional" +KDE_ORG_NAME="alkimia" +QTMIN=5.12.3 +inherit ecm kde.org if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/${KMNAME}/${PV}/${KMNAME}-${PV}.tar.xz" + SRC_URI="mirror://kde/stable/${KDE_ORG_NAME}/${PV}/${KDE_ORG_NAME}-${PV}.tar.xz" KEYWORDS="amd64 x86" fi DESCRIPTION="Library with common classes and functionality used by KDE finance applications" HOMEPAGE="https://www.linux-apps.com/content/show.php/libalkimia?content=137323" + LICENSE="LGPL-2.1" SLOT="0/7" IUSE="doc gmp" @@ -23,7 +25,7 @@ BDEPEND=" doc? ( app-doc/doxygen ) " DEPEND=" - $(add_qt_dep qtdbus) + >=dev-qt/qtdbus-${QTMIN}:5 !gmp? ( sci-libs/mpir:=[cxx] ) gmp? ( dev-libs/gmp:0=[cxx] ) " @@ -34,5 +36,5 @@ src_configure() { $(cmake_use_find_package doc Doxygen) $(cmake_use_find_package !gmp MPIR) ) - kde5_src_configure + ecm_src_configure }