public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/files/, kde-apps/kate/
Date: Sun, 13 Dec 2015 17:47:52 +0000 (UTC)	[thread overview]
Message-ID: <1450028859.91bff47110374a4300587d55c66ef9865afb015e.kensington@gentoo> (raw)

commit:     91bff47110374a4300587d55c66ef9865afb015e
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Dec 13 11:02:31 2015 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 17:47:39 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91bff471

kde-apps/kate: Fix major bug with kde-frameworks 5.17

Caused by a change in kxmlgui. Lingering kate processes in the background,
inability to open new files in kate, countless empty kate windows at login

Package-Manager: portage-2.2.24

 .../kate-15.08.3-fix-lingering-processes.patch     | 26 ++++++++
 kde-apps/kate/kate-15.08.3-r1.ebuild               | 72 ++++++++++++++++++++++
 2 files changed, 98 insertions(+)

diff --git a/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch b/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch
new file mode 100644
index 0000000..e7d982e
--- /dev/null
+++ b/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch
@@ -0,0 +1,26 @@
+From: Andreas Hartmetz <ahartmetz@gmail.com>
+Date: Sat, 05 Dec 2015 15:31:24 +0000
+Subject: setQuitOnLastWindowClosed(false) causes lingering processes. Remove.
+X-Git-Url: http://quickgit.kde.org/?p=kate.git&a=commitdiff&h=cd0163d7b956ace0e786a76d8211d06790a2c174
+---
+setQuitOnLastWindowClosed(false) causes lingering processes. Remove.
+
+Previously, it was set to true again later from
+KMainWindowPrivate::init(). I have changed that in KMainWindowPrivate
+so that applications have a better chance to set the property as they
+like - commit 155f524dd79add7d in kxmlgui.
+For Kate, true seems to be the correct setting.
+---
+
+
+--- a/kate/src/main.cpp
++++ b/kate/src/main.cpp
+@@ -133,7 +133,6 @@
+     app.setApplicationDisplayName(aboutData.displayName());
+     app.setOrganizationDomain(aboutData.organizationDomain());
+     app.setApplicationVersion(aboutData.version());
+-    app.setQuitOnLastWindowClosed(false);
+ 
+     /**
+      * set the program icon
+

diff --git a/kde-apps/kate/kate-15.08.3-r1.ebuild b/kde-apps/kate/kate-15.08.3-r1.ebuild
new file mode 100644
index 0000000..e2e4939
--- /dev/null
+++ b/kde-apps/kate/kate-15.08.3-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+KDE_TEST="true"
+inherit kde5
+
+DESCRIPTION="Kate is an advanced text editor"
+HOMEPAGE="https://www.kde.org/applications/utilities/kate http://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)
+	dev-qt/qtdbus:5
+	dev-qt/qtgui:5
+	dev-qt/qtscript:5
+	dev-qt/qtwidgets:5
+	dev-qt/qtxml:5
+	addons? (
+		$(add_frameworks_dep kbookmarks)
+		$(add_frameworks_dep knewstuff)
+		$(add_frameworks_dep knotifications)
+		$(add_frameworks_dep kwallet)
+		$(add_frameworks_dep plasma)
+		$(add_frameworks_dep threadweaver)
+		dev-qt/qtsql:5
+		>=dev-libs/libgit2-0.22.0:=
+	)
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-15.08.3-fix-lingering-processes.patch" )
+
+src_prepare() {
+	kde5_src_prepare
+
+	sed -i -e "/add_subdirectory( kwrite )/d" doc/CMakeLists.txt || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_ADDONS=$(usex addons)
+		-DBUILD_kwrite=FALSE
+	)
+
+	kde5_src_configure
+}


             reply	other threads:[~2015-12-13 17:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-13 17:47 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-04-24 17:42 [gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/files/, kde-apps/kate/ Andreas Sturmlechner
2021-04-24 16:52 Andreas Sturmlechner
2018-01-18 23:01 Andreas Sturmlechner
2015-09-24 17:56 Michael Palimaka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1450028859.91bff47110374a4300587d55c66ef9865afb015e.kensington@gentoo \
    --to=kensington@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox