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 E89EE138206 for ; Thu, 18 Jan 2018 23:01:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2619AE099C; Thu, 18 Jan 2018 23:01:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E2361E0997 for ; Thu, 18 Jan 2018 23:01:46 +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 AF8E4335C43 for ; Thu, 18 Jan 2018 23:01:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 064601BA for ; Thu, 18 Jan 2018 23:01:44 +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: <1516316488.309a923bde1cedc46f1b3a4a3158772233d81768.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kate/kate-17.12.1.ebuild X-VCS-Directories: kde-apps/kate/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 309a923bde1cedc46f1b3a4a3158772233d81768 X-VCS-Branch: master Date: Thu, 18 Jan 2018 23:01:44 +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-Archives-Salt: 58e3493a-f9c4-4b76-9ea1-6a8e8c4483b4 X-Archives-Hash: f5d59bf79b09db6332d416db56dd35ce commit: 309a923bde1cedc46f1b3a4a3158772233d81768 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 18 21:01:51 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 18 23:01:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=309a923b kde-apps/kate: Drop 17.12.1 (r0) Package-Manager: Portage-2.3.19, Repoman-2.3.6 kde-apps/kate/kate-17.12.1.ebuild | 75 --------------------------------------- 1 file changed, 75 deletions(-) diff --git a/kde-apps/kate/kate-17.12.1.ebuild b/kde-apps/kate/kate-17.12.1.ebuild deleted file mode 100644 index c1929deb4d5..00000000000 --- a/kde-apps/kate/kate-17.12.1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_HANDBOOK="optional" -KDE_TEST="true" -VIRTUALX_REQUIRED="test" -inherit kde5 - -DESCRIPTION="Kate is an advanced text editor" -HOMEPAGE="https://www.kde.org/applications/utilities/kate https://kate-editor.org/" -KEYWORDS="~amd64 ~x86" -IUSE="+addons" - -DEPEND=" - $(add_frameworks_dep kactivities) - $(add_frameworks_dep kcodecs) - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kcrash) - $(add_frameworks_dep kdbusaddons) - $(add_frameworks_dep kguiaddons) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kio) - $(add_frameworks_dep kitemmodels) - $(add_frameworks_dep kitemviews) - $(add_frameworks_dep kjobwidgets) - $(add_frameworks_dep kparts) - $(add_frameworks_dep kservice) - $(add_frameworks_dep ktexteditor) - $(add_frameworks_dep ktextwidgets) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kwindowsystem) - $(add_frameworks_dep kxmlgui) - $(add_qt_dep qtdbus) - $(add_qt_dep qtgui) - $(add_qt_dep qtscript) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtxml) - addons? ( - $(add_frameworks_dep kbookmarks) - $(add_frameworks_dep knewstuff) - $(add_frameworks_dep kwallet) - $(add_frameworks_dep plasma) - $(add_frameworks_dep threadweaver) - $(add_qt_dep qtsql) - ) -" -RDEPEND="${DEPEND} - !kde-misc/ktexteditorpreviewplugin -" - -src_prepare() { - kde5_src_prepare - # test hangs - sed -e "/session_manager_test/d" -i kate/autotests/CMakeLists.txt || die - # delete colliding kwrite translations - if [[ ${KDE_BUILD_TYPE} = release ]]; then - find po -type f -name "*po" -and -name "kwrite*" -delete || die - rm -rf po/*/docs/kwrite || die - fi -} - -src_configure() { - local mycmakeargs=( - -DBUILD_addons=$(usex addons) - -DBUILD_kwrite=FALSE - ) - - kde5_src_configure -}