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 6F440138330 for ; Thu, 13 Oct 2016 12:57:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61AC4E0B84; Thu, 13 Oct 2016 12:57:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45D7BE0B84 for ; Thu, 13 Oct 2016 12:57:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C10534114F for ; Thu, 13 Oct 2016 12:57:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C41EC2F6 for ; Thu, 13 Oct 2016 12:57:06 +0000 (UTC) From: "Eray Aslan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eray Aslan" Message-ID: <1476363390.654a8ff1010160bab30bc64ca935ccb6158a0dd3.eras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/postfix/postfix-2.10.9.ebuild X-VCS-Directories: mail-mta/postfix/ X-VCS-Committer: eras X-VCS-Committer-Name: Eray Aslan X-VCS-Revision: 654a8ff1010160bab30bc64ca935ccb6158a0dd3 X-VCS-Branch: master Date: Thu, 13 Oct 2016 12:57: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: 5cca8437-886f-42f6-b791-d25478717922 X-Archives-Hash: d53fdc4754baeffcfe983c67f2137aae commit: 654a8ff1010160bab30bc64ca935ccb6158a0dd3 Author: Eray Aslan gentoo org> AuthorDate: Thu Oct 13 12:56:30 2016 +0000 Commit: Eray Aslan gentoo org> CommitDate: Thu Oct 13 12:56:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654a8ff1 mail-mta/postfix: removed old REPLACING_VERSIONS check Package-Manager: portage-2.3.2 mail-mta/postfix/postfix-2.10.9.ebuild | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/mail-mta/postfix/postfix-2.10.9.ebuild b/mail-mta/postfix/postfix-2.10.9.ebuild index a7d5a07..e82dd5c 100644 --- a/mail-mta/postfix/postfix-2.10.9.ebuild +++ b/mail-mta/postfix/postfix-2.10.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -296,20 +296,4 @@ pkg_postinst() { ewarn "work correctly without it." ewarn fi - - if [[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 9 ]]; then - elog "If you are using old style postfix instances by symlinking" - elog "startup scripts in ${ROOT}etc/init.d, please consider" - elog "upgrading your config for postmulti support. For more info:" - elog "http://www.postfix.org/MULTI_INSTANCE_README.html" - if ! use berkdb; then - ewarn "\nPostfix is installed without BerkeleyDB support." - ewarn "Please turn on berkdb USE flag if you need hash or" - ewarn "btree table lookups.\n" - fi - ewarn "Postfix daemons now live under /usr/libexec/postfix" - ewarn "Please adjust your main.cf accordingly by running" - ewarn "etc-update/dispatch-conf or similar and accepting the new" - ewarn "daemon_directory setting." - fi }