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 14EEE1581E7 for ; Thu, 25 Apr 2024 20:43:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5047EE29FD; Thu, 25 Apr 2024 20:43:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 320EAE2A04 for ; Thu, 25 Apr 2024 20:43:51 +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 07B0D34315E for ; Thu, 25 Apr 2024 20:43:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A93C21764 for ; Thu, 25 Apr 2024 20:43:47 +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: <1714077760.83f1ca506ece6040cfc937738bdbc928ba909372.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signond/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/signond/signond-8.61-r100.ebuild net-libs/signond/signond-8.61.ebuild X-VCS-Directories: net-libs/signond/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 83f1ca506ece6040cfc937738bdbc928ba909372 X-VCS-Branch: master Date: Thu, 25 Apr 2024 20:43:47 +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: 5b386757-c894-4e7e-86fd-d93b6cc8b728 X-Archives-Hash: 1c641a7f65f7dfa8eb1f226d0c8ebf35 commit: 83f1ca506ece6040cfc937738bdbc928ba909372 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Apr 22 19:37:09 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 25 20:42:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83f1ca50 net-libs/signond: Add pkg_postinst warning Closes: https://bugs.gentoo.org/642420 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/signond/signond-8.61-r100.ebuild | 8 ++++++++ net-libs/signond/signond-8.61.ebuild | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/net-libs/signond/signond-8.61-r100.ebuild b/net-libs/signond/signond-8.61-r100.ebuild index 3a6494c050a6..1c3cc37a6396 100644 --- a/net-libs/signond/signond-8.61-r100.ebuild +++ b/net-libs/signond/signond-8.61-r100.ebuild @@ -143,3 +143,11 @@ src_install() { multibuild_foreach_variant my_src_install } + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]] && \ + ! has_version "kde-apps/signon-kwallet-extension:*"; then + ewarn "Without kde-apps/signon-kwallet-extension installed, passwords" + ewarn "will be saved in plaintext!" + fi +} diff --git a/net-libs/signond/signond-8.61.ebuild b/net-libs/signond/signond-8.61.ebuild index e1079e2ed2f8..6f21b1bec048 100644 --- a/net-libs/signond/signond-8.61.ebuild +++ b/net-libs/signond/signond-8.61.ebuild @@ -70,3 +70,11 @@ src_configure() { src_install() { emake INSTALL_ROOT="${D}" install } + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]] && \ + ! has_version "kde-apps/signon-kwallet-extension:*"; then + ewarn "Without kde-apps/signon-kwallet-extension installed, passwords" + ewarn "will be saved in plaintext!" + fi +}