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 54654138359 for ; Fri, 18 Sep 2020 02:10:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 411CCE080E; Fri, 18 Sep 2020 02:10:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 BDD1EE080E for ; Fri, 18 Sep 2020 02:10:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 573B5340B63 for ; Fri, 18 Sep 2020 02:10:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6B0F33A for ; Fri, 18 Sep 2020 02:10:23 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600395015.ccf04e1c61e2591d928ac93870a164d25dcd7882.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pambase/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/pambase/pambase-20200917.ebuild X-VCS-Directories: sys-auth/pambase/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ccf04e1c61e2591d928ac93870a164d25dcd7882 X-VCS-Branch: master Date: Fri, 18 Sep 2020 02:10:23 +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: a353a8a2-ce3e-4ba8-99dd-dfa73fa08b34 X-Archives-Hash: 2340cb5dcd04a3af8d0dfc8f314e5481 commit: ccf04e1c61e2591d928ac93870a164d25dcd7882 Author: Sam James gentoo org> AuthorDate: Fri Sep 18 02:10:15 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 18 02:10:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf04e1c sys-auth/pambase: change README call Closes: https://bugs.gentoo.org/743202 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> sys-auth/pambase/pambase-20200917.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-auth/pambase/pambase-20200917.ebuild b/sys-auth/pambase/pambase-20200917.ebuild index 65f65bd0776..e27b18aff52 100644 --- a/sys-auth/pambase/pambase-20200917.ebuild +++ b/sys-auth/pambase/pambase-20200917.ebuild @@ -77,7 +77,7 @@ src_configure() { src_test() { :; } src_install() { - local DOC_CONTENTS + DOC_CONTENTS= if use passwdqc; then DOC_CONTENTS="To amend the existing password policy please see the man 5 passwdqc.conf @@ -89,11 +89,11 @@ src_install() { page and then edit the /etc/security/pwquality.conf file" fi - readme.gentoo_create_doc + ! [[ -z "${DOC_CONTENTS}" ]] && readme.gentoo_create_doc dopamd -r stack/. } pkg_postinst() { - readme.gentoo_print_elog + ! [[ -z "${DOC_CONTENTS}" ]] && readme.gentoo_print_elog }