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 1CB6A13933E for ; Thu, 15 Jul 2021 09:52:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7589AE0AB9; Thu, 15 Jul 2021 09:52:16 +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 6044AE0AB9 for ; Thu, 15 Jul 2021 09:52:16 +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 8027D340952 for ; Thu, 15 Jul 2021 09:52:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 113967B3 for ; Thu, 15 Jul 2021 09:52:07 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1626342695.c9440264ac4fa235058656115e9230d387ef489b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/samba/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/samba/samba-4.15.0_rc1.ebuild X-VCS-Directories: net-fs/samba/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c9440264ac4fa235058656115e9230d387ef489b X-VCS-Branch: master Date: Thu, 15 Jul 2021 09:52:07 +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: 722bc50d-3f07-4bce-af40-3fb23fc2268d X-Archives-Hash: a4312d135e8303984742900c74969944 commit: c9440264ac4fa235058656115e9230d387ef489b Author: Lars Wendler gentoo org> AuthorDate: Thu Jul 15 09:51:35 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jul 15 09:51:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9440264 net-fs/samba: Adjusted a postinst message Signed-off-by: Lars Wendler gentoo.org> net-fs/samba/samba-4.15.0_rc1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/net-fs/samba/samba-4.15.0_rc1.ebuild b/net-fs/samba/samba-4.15.0_rc1.ebuild index fb899933a3c..bac64c86588 100644 --- a/net-fs/samba/samba-4.15.0_rc1.ebuild +++ b/net-fs/samba/samba-4.15.0_rc1.ebuild @@ -327,7 +327,9 @@ pkg_postinst() { elog "controller work previously known as 'samba4'." elog fi - elog "For further information and migration steps make sure to read " - elog "https://samba.org/samba/history/${P}.html " - elog "https://wiki.samba.org/index.php/Samba4/HOWTO " + if [[ "${PV}" != *_rc* ]] ; then + elog "For further information and migration steps make sure to read " + elog "https://samba.org/samba/history/${P}.html " + elog "https://wiki.samba.org/index.php/Samba4/HOWTO " + fi }