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 206D0138334 for ; Mon, 12 Aug 2019 11:08:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0165EE0801; Mon, 12 Aug 2019 11:08:08 +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 D50E6E0801 for ; Mon, 12 Aug 2019 11:08:07 +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 4A389349979 for ; Mon, 12 Aug 2019 11:08:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C80886E8 for ; Mon, 12 Aug 2019 11:08:04 +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: <1565608068.3368d5e2fdca00d0dbfca1a10c7faa76d8221728.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kconfig/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kconfig/kconfig-5.60.0.ebuild X-VCS-Directories: kde-frameworks/kconfig/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3368d5e2fdca00d0dbfca1a10c7faa76d8221728 X-VCS-Branch: master Date: Mon, 12 Aug 2019 11:08:04 +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: 18a39319-b880-4bb0-be86-ff28b856351c X-Archives-Hash: 8b7d060ed5991f4ce5a0155b45a9faaa commit: 3368d5e2fdca00d0dbfca1a10c7faa76d8221728 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 12 11:07:41 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 12 11:07:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3368d5e2 kde-frameworks/kconfig: Security cleanup 5.60.0 (r0) Bug: https://bugs.gentoo.org/691858 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kconfig/kconfig-5.60.0.ebuild | 36 ---------------------------- 1 file changed, 36 deletions(-) diff --git a/kde-frameworks/kconfig/kconfig-5.60.0.ebuild b/kde-frameworks/kconfig/kconfig-5.60.0.ebuild deleted file mode 100644 index 113d6954350..00000000000 --- a/kde-frameworks/kconfig/kconfig-5.60.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -VIRTUALX_REQUIRED="test" -inherit kde5 - -DESCRIPTION="Framework for reading and writing configuration" -LICENSE="LGPL-2+" -KEYWORDS="amd64 ~arm arm64 x86" -IUSE="dbus nls" - -BDEPEND=" - nls? ( $(add_qt_dep linguist-tools) ) -" -RDEPEND=" - $(add_qt_dep qtgui) - $(add_qt_dep qtxml) - dbus? ( $(add_qt_dep qtdbus) ) -" -DEPEND="${RDEPEND} - test? ( $(add_qt_dep qtconcurrent) ) -" - -# bug 560086 -RESTRICT+=" test" - -DOCS=( DESIGN docs/DESIGN.kconfig docs/options.md ) - -src_configure() { - local mycmakeargs=( - -DKCONFIG_USE_DBUS=$(usex dbus) - ) - kde5_src_configure -}