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 31EE3138335 for ; Sun, 5 Aug 2018 19:45:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4117AE07DB; Sun, 5 Aug 2018 19:45:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 EE2C1E07DB for ; Sun, 5 Aug 2018 19:45:09 +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 E2171335CC1 for ; Sun, 5 Aug 2018 19:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 248AD393 for ; Sun, 5 Aug 2018 19:45:06 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1533498001.2fa32bf30ba7747bb8ca5fe7f4032aed8248af0e.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/repoman/repoman-2.3.10.ebuild app-portage/repoman/repoman-2.3.9.ebuild app-portage/repoman/repoman-9999.ebuild X-VCS-Directories: app-portage/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2fa32bf30ba7747bb8ca5fe7f4032aed8248af0e X-VCS-Branch: master Date: Sun, 5 Aug 2018 19:45:06 +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-Archives-Salt: 049cbcde-b66a-481f-b8ce-bb0772c0a763 X-Archives-Hash: 2e856347653f897099726791bb420976 commit: 2fa32bf30ba7747bb8ca5fe7f4032aed8248af0e Author: Zac Medico gentoo org> AuthorDate: Sun Aug 5 19:26:44 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Aug 5 19:40:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fa32bf3 app-portage/repoman: pkg_postinst REPLACING_VERSIONS Package-Manager: Portage-2.3.44, Repoman-2.3.10 app-portage/repoman/repoman-2.3.10.ebuild | 20 +++++++++++--------- app-portage/repoman/repoman-2.3.9.ebuild | 20 +++++++++++--------- app-portage/repoman/repoman-9999.ebuild | 20 +++++++++++--------- 3 files changed, 33 insertions(+), 27 deletions(-) diff --git a/app-portage/repoman/repoman-2.3.10.ebuild b/app-portage/repoman/repoman-2.3.10.ebuild index 24786452de2..e071382f3c3 100644 --- a/app-portage/repoman/repoman-2.3.10.ebuild +++ b/app-portage/repoman/repoman-2.3.10.ebuild @@ -49,13 +49,15 @@ python_install() { } pkg_postinst() { - elog "" - elog "This release of repoman is from the new portage/repoman split" - elog "release code base." - elog "This new repoman code base is still being developed. So its API's" - elog "are not to be considered stable and are subject to change." - elog "The code released has been tested and considered ready for use." - elog "This however does not guarantee it to be completely bug free." - elog "Please report any bugs you may encounter." - elog "" + if [[ -z {REPLACING_VERSIONS} ]]; then + elog "" + elog "This release of repoman is from the new portage/repoman split" + elog "release code base." + elog "This new repoman code base is still being developed. So its API's" + elog "are not to be considered stable and are subject to change." + elog "The code released has been tested and considered ready for use." + elog "This however does not guarantee it to be completely bug free." + elog "Please report any bugs you may encounter." + elog "" + fi } diff --git a/app-portage/repoman/repoman-2.3.9.ebuild b/app-portage/repoman/repoman-2.3.9.ebuild index c96092fb486..c6113c7c5f0 100644 --- a/app-portage/repoman/repoman-2.3.9.ebuild +++ b/app-portage/repoman/repoman-2.3.9.ebuild @@ -55,13 +55,15 @@ python_install() { } pkg_postinst() { - elog "" - elog "This release of repoman is from the new portage/repoman split" - elog "release code base." - elog "This new repoman code base is still being developed. So its API's" - elog "are not to be considered stable and are subject to change." - elog "The code released has been tested and considered ready for use." - elog "This however does not guarantee it to be completely bug free." - elog "Please report any bugs you may encounter." - elog "" + if [[ -z {REPLACING_VERSIONS} ]]; then + elog "" + elog "This release of repoman is from the new portage/repoman split" + elog "release code base." + elog "This new repoman code base is still being developed. So its API's" + elog "are not to be considered stable and are subject to change." + elog "The code released has been tested and considered ready for use." + elog "This however does not guarantee it to be completely bug free." + elog "Please report any bugs you may encounter." + elog "" + fi } diff --git a/app-portage/repoman/repoman-9999.ebuild b/app-portage/repoman/repoman-9999.ebuild index a0770535b52..8063252c048 100644 --- a/app-portage/repoman/repoman-9999.ebuild +++ b/app-portage/repoman/repoman-9999.ebuild @@ -49,13 +49,15 @@ python_install() { } pkg_postinst() { - elog "" - elog "This release of repoman is from the new portage/repoman split" - elog "release code base." - elog "This new repoman code base is still being developed. So its API's" - elog "are not to be considered stable and are subject to change." - elog "The code released has been tested and considered ready for use." - elog "This however does not guarantee it to be completely bug free." - elog "Please report any bugs you may encounter." - elog "" + if [[ -z {REPLACING_VERSIONS} ]]; then + elog "" + elog "This release of repoman is from the new portage/repoman split" + elog "release code base." + elog "This new repoman code base is still being developed. So its API's" + elog "are not to be considered stable and are subject to change." + elog "The code released has been tested and considered ready for use." + elog "This however does not guarantee it to be completely bug free." + elog "Please report any bugs you may encounter." + elog "" + fi }