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 7F1DC138359 for ; Thu, 22 Oct 2020 22:04:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACF38E083E; Thu, 22 Oct 2020 22:04:29 +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 9503DE083E for ; Thu, 22 Oct 2020 22:04:29 +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 9ACE4340E8C for ; Thu, 22 Oct 2020 22:04:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C1B63B8 for ; Thu, 22 Oct 2020 22:04:25 +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: <1603403988.8c21c5403f361c4bde6ea248c5198d0328ef3108.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdevelop/kdevelop-5.6.0-r1.ebuild dev-util/kdevelop/kdevelop-5.6.0.ebuild X-VCS-Directories: dev-util/kdevelop/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8c21c5403f361c4bde6ea248c5198d0328ef3108 X-VCS-Branch: master Date: Thu, 22 Oct 2020 22:04:25 +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: bfe80c1a-4dac-4019-9e42-9167906c2383 X-Archives-Hash: 2520d4b9794fd8f38639318365ed390b commit: 8c21c5403f361c4bde6ea248c5198d0328ef3108 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Oct 22 21:39:00 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Oct 22 21:59:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c21c540 dev-util/kdevelop: Add missed subslot bump Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> ...velop-5.6.0.ebuild => kdevelop-5.6.0-r1.ebuild} | 38 ++++++++-------------- 1 file changed, 13 insertions(+), 25 deletions(-) diff --git a/dev-util/kdevelop/kdevelop-5.6.0.ebuild b/dev-util/kdevelop/kdevelop-5.6.0-r1.ebuild similarity index 82% rename from dev-util/kdevelop/kdevelop-5.6.0.ebuild rename to dev-util/kdevelop/kdevelop-5.6.0-r1.ebuild index 5a3edac39a3..262a77ad425 100644 --- a/dev-util/kdevelop/kdevelop-5.6.0.ebuild +++ b/dev-util/kdevelop/kdevelop-5.6.0-r1.ebuild @@ -6,21 +6,21 @@ EAPI=7 ECM_HANDBOOK="forceoptional" ECM_TEST="true" KDE_ORG_CATEGORY="kdevelop" -KFMIN=5.70.0 -QTMIN=5.12.3 +KFMIN=5.74.0 +QTMIN=5.15.1 VIRTUALDBUS_TEST="true" VIRTUALX_REQUIRED="test" -inherit ecm kde.org +inherit ecm kde.org optfeature DESCRIPTION="Integrated Development Environment, supporting KF5/Qt, C/C++ and much more" -HOMEPAGE="https://www.kdevelop.org/" +HOMEPAGE="https://kdevelop.org/" if [[ ${KDE_BUILD_TYPE} = release ]]; then KEYWORDS="~amd64 ~arm64 ~x86" fi LICENSE="GPL-2 LGPL-2" -SLOT="5/55" # look at KDEVELOP_SOVERSION inside CMakeLists.txt +SLOT="5/56" # look at KDEVELOP_SOVERSION inside CMakeLists.txt IUSE="+gdbui hex +plasma +qmake reviewboard subversion" COMMON_DEPEND=" @@ -121,25 +121,13 @@ src_configure() { } pkg_postinst() { - ecm_pkg_postinst - - if ! has_version "kde-apps/konsole" ; then - elog "For konsole view, please install kde-apps/konsole" - fi - - if ! has_version "dev-util/cppcheck" ; then - elog "For static C/C++ code analysis support, please install dev-util/cppcheck" - fi - - if ! has_version "dev-util/heaptrack[qt5]" ; then - elog "For heap memory profiling support, please install dev-util/heaptrack" - fi - - if ! has_version "dev-util/clazy" ; then - elog "For static C++ Qt code analysis support, please install dev-util/clazy" - fi - - if ! has_version ">=dev-util/meson-0.51" ; then - elog "For the Meson Project manager plugin, please install dev-util/meson" + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "Optional dependencies:" + optfeature "konsole view" kde-apps/konsole + optfeature "Static C++ Qt code analysis" dev-util/clazy + optfeature "Static C/C++ code analysis" dev-util/cppcheck + optfeature "Heap memory profiling" dev-util/heaptrack[qt5] + optfeature "Meson Project manager plugin" dev-util/meson fi + ecm_pkg_postinst }