From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1153660-garchives=archives.gentoo.org@lists.gentoo.org> 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 2F7EF138350 for <garchives@archives.gentoo.org>; Thu, 19 Mar 2020 09:21:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 434C0E0B54; Thu, 19 Mar 2020 09:21:53 +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 23F94E0B54 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Mar 2020 09:21:53 +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 AC49034F303 for <gentoo-commits@lists.gentoo.org>; Thu, 19 Mar 2020 09:21:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DF4F18E for <gentoo-commits@lists.gentoo.org>; Thu, 19 Mar 2020 09:21:49 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1584609674.cda34d9b825dfd6c91701dd38f5f6d443c03ed9d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/ecm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cda34d9b825dfd6c91701dd38f5f6d443c03ed9d X-VCS-Branch: master Date: Thu, 19 Mar 2020 09:21:49 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 22f44b21-b9b2-4b66-940d-e55b57fa061f X-Archives-Hash: 2cbdd7d68d8bcd63c5d65e49ff0e4a64 commit: cda34d9b825dfd6c91701dd38f5f6d443c03ed9d Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Wed Mar 11 15:32:29 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Mar 19 09:21:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda34d9b ecm.eclass: Drop KDE Applications 19.08.3 support Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/ecm.eclass | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index 2892b0e0e94..0e3c64b0a2a 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: ecm.eclass @@ -218,27 +218,6 @@ case ${ECM_DESIGNERPLUGIN} in ;; esac -# @ECLASS-VARIABLE: KDE_DESIGNERPLUGIN -# @DESCRIPTION: -# If set to "false", do nothing. -# Otherwise, add "designer" to IUSE to toggle build of designer plugins -# and add the necessary BDEPEND. -# TODO: drop after KDE Applications 19.08.3 removal -: ${KDE_DESIGNERPLUGIN:=false} -case ${KDE_DESIGNERPLUGIN} in - true) - IUSE+=" designer" - BDEPEND+=" - designer? ( >=kde-frameworks/kdesignerplugin-${KFMIN}:${KFSLOT} ) - " - ;; - false) ;; - *) - eerror "Unknown value for \${KDE_DESIGNERPLUGIN}" - die "Value ${KDE_DESIGNERPLUGIN} is not supported" - ;; -esac - case ${ECM_EXAMPLES} in true) IUSE+=" examples" @@ -545,11 +524,6 @@ ecm_src_configure() { cmakeargs+=( -DBUILD_DESIGNERPLUGIN=$(usex designer) ) fi - # TODO: drop after KDE Applications 19.08.3 removal - if in_iuse designer && [[ ${KDE_DESIGNERPLUGIN} != false ]] ; then - cmakeargs+=( $(cmake_use_find_package designer KF5DesignerPlugin) ) - fi - if [[ ${ECM_QTHELP} = true ]]; then cmakeargs+=( -DBUILD_QCH=$(usex doc) ) fi