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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AB30815864F for ; Sun, 26 Mar 2023 11:08:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 000D9E0823; Sun, 26 Mar 2023 11:08:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA0D8E0823 for ; Sun, 26 Mar 2023 11:08:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD3A73411F5 for ; Sun, 26 Mar 2023 11:08:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61D21959 for ; Sun, 26 Mar 2023 11:08:21 +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: <1679828891.6ca17060ef82d9ddea87c7240371c7c3e8b682bf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/drkonqi/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/drkonqi/drkonqi-5.27.3.ebuild X-VCS-Directories: kde-plasma/drkonqi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6ca17060ef82d9ddea87c7240371c7c3e8b682bf X-VCS-Branch: master Date: Sun, 26 Mar 2023 11:08:21 +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: 945a2f56-b618-41c8-b7c5-ff5a281d116b X-Archives-Hash: 4dc3d77d80ebe0c81562f4e5468af5a8 commit: 6ca17060ef82d9ddea87c7240371c7c3e8b682bf Author: Sam James gentoo org> AuthorDate: Sat Mar 25 04:28:15 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 26 11:08:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca17060 kde-plasma/drkonqi: add systemd-coredumpd integration instructions Closes: https://bugs.gentoo.org/896092 Signed-off-by: Sam James gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/30336 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/drkonqi/drkonqi-5.27.3.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/kde-plasma/drkonqi/drkonqi-5.27.3.ebuild b/kde-plasma/drkonqi/drkonqi-5.27.3.ebuild index aa84a15f2e78..6497607be1b8 100644 --- a/kde-plasma/drkonqi/drkonqi-5.27.3.ebuild +++ b/kde-plasma/drkonqi/drkonqi-5.27.3.ebuild @@ -6,7 +6,7 @@ EAPI=8 KFMIN=5.102.0 PVCUT=$(ver_cut 1-3) QTMIN=5.15.7 -inherit ecm plasma.kde.org +inherit ecm plasma.kde.org systemd DESCRIPTION="Plasma crash handler, gives the user feedback if a program crashed" SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PN}-5.27.1-revert-add-sentry-support.patch.xz" @@ -58,3 +58,12 @@ src_test() { ) ecm_src_test } + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]] && systemd_is_booted ; then + elog "For systemd, steps are needed for integration with systemd-coredumpd." + elog "As root, run the following:" + elog "1. systemctl enable drkonqi-coredump-processor@.service" + elog "2. systemctl --user enable --now --global drkonqi-coredump-launcher.socket" + fi +}