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 06A55158089 for ; Fri, 15 Sep 2023 08:02:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B2DC2BC017; Fri, 15 Sep 2023 08:01:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3555B2BC017 for ; Fri, 15 Sep 2023 08:01:59 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E466335D16 for ; Fri, 15 Sep 2023 08:01:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E04CC1190 for ; Fri, 15 Sep 2023 08:01:56 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1694764775.8fc807b994980f4c85d31710f3eff010dbc5b31c.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/nextcloud-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild X-VCS-Directories: net-misc/nextcloud-client/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 8fc807b994980f4c85d31710f3eff010dbc5b31c X-VCS-Branch: master Date: Fri, 15 Sep 2023 08:01:56 +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: 8c6a6322-fc46-4f77-a516-bdb25ca9bb9c X-Archives-Hash: a5f6d7afe28db564f5bd40775cadeb9d commit: 8fc807b994980f4c85d31710f3eff010dbc5b31c Author: Florian Schmaus gentoo org> AuthorDate: Fri Sep 15 07:58:09 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Sep 15 07:59:35 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fc807b9 net-misc/nextcloud-client: info if qtkeychain is not installed with USE=keyring Also drop the USE=doc info message. Closes: https://bugs.gentoo.org/912844 Signed-off-by: Florian Schmaus gentoo.org> net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild | 8 +++++--- net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild | 8 +++++--- net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild | 8 +++++--- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild index 982596d05a8f..23b5a83aabf2 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.8.2-r1.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi } diff --git a/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild index 982596d05a8f..23b5a83aabf2 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.9.1.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi } diff --git a/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild index 78bd99d7580a..94cff32e49fb 100644 --- a/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild +++ b/net-misc/nextcloud-client/nextcloud-client-3.9.4.ebuild @@ -106,8 +106,10 @@ src_compile() { pkg_postinst() { xdg_pkg_postinst - if ! use doc ; then - elog "Documentation and man pages not installed" - elog "Enable doc USE-flag to generate them" + if ! has_version -r "dev-libs/qtkeychain[keyring]"; then + elog "dev-libs/qtkeychain has not been build with the 'keyring' USE flag." + elog "Please consider enabling the 'keyring' USE flag. Otherwise you may" + elog "have to authenticate manually every time you start the nextlcoud client." + elog "See https://bugs.gentoo.org/912844 for more information." fi }