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 ADE0D158086 for ; Thu, 23 Dec 2021 09:09:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E44792BC01A; Thu, 23 Dec 2021 09:09:06 +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 552922BC01A for ; Thu, 23 Dec 2021 09:09:06 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF51C34310E for ; Thu, 23 Dec 2021 09:09:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 762E6239 for ; Thu, 23 Dec 2021 09:09:02 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1640250538.e2679a1b5c4b44b171cb9f5f6c4168bfc8a33e0e.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/tcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/tcl/tcl-8.6.12.ebuild X-VCS-Directories: dev-lang/tcl/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: e2679a1b5c4b44b171cb9f5f6c4168bfc8a33e0e X-VCS-Branch: master Date: Thu, 23 Dec 2021 09:09:02 +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: 9167cfc1-3c9d-43b3-9939-b22dc204e39d X-Archives-Hash: 98e9148df3a9ee422d1dc4ccf38cadbb commit: e2679a1b5c4b44b171cb9f5f6c4168bfc8a33e0e Author: Pacho Ramos gentoo org> AuthorDate: Thu Dec 23 09:08:49 2021 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Dec 23 09:08:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2679a1b dev-lang/tcl: Drop obsolete warning Closes: https://bugs.gentoo.org/813480 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Pacho Ramos gentoo.org> dev-lang/tcl/tcl-8.6.12.ebuild | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/dev-lang/tcl/tcl-8.6.12.ebuild b/dev-lang/tcl/tcl-8.6.12.ebuild index 5a44ad9fa048..12ec6c9aac3d 100644 --- a/dev-lang/tcl/tcl-8.6.12.ebuild +++ b/dev-lang/tcl/tcl-8.6.12.ebuild @@ -119,18 +119,3 @@ multilib_src_install() { dodoc "${SPARENT}"/{ChangeLog*,README.md,changes} fi } - -pkg_postinst() { - for version in ${REPLACING_VERSIONS}; do - if ver_test 8.6 -lt ${version}; then - echo - ewarn "You're upgrading from <${P}, you must recompile the other" - ewarn "packages on your system that link with tcl after the upgrade" - ewarn "completes. To perform this action, please run revdep-rebuild" - ewarn "in package app-portage/gentoolkit." - ewarn "If you have dev-lang/tk and dev-tcltk/tclx installed you should" - ewarn "upgrade them before this recompilation, too," - echo - fi - done -}