Diff tcl-8.6.11 with a tcl-8.6.12-r1

/usr/portage/dev-lang/tcl/tcl-8.6.12-r1.ebuild 2023-10-09 14:52:29.480368350 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
# Please bump with dev-lang/tk!
7

  
6 8
inherit autotools flag-o-matic multilib-minimal multilib toolchain-funcs
7 9

  
8 10
MY_P="${PN}${PV}"
......
13 15

  
14 16
LICENSE="tcltk"
15 17
SLOT="0/8.6"
16
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
18
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
17 19
IUSE="debug +threads"
18 20

  
19 21
RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"
......
26 28
	"${FILESDIR}"/${PN}-8.6.10-multilib.patch
27 29
	"${FILESDIR}"/${PN}-8.6.8-conf.patch # Bug 125971
28 30
	"${FILESDIR}"/${PN}-8.6.9-include-spec.patch # Bug 731120
31
	"${FILESDIR}"/${P}-configure-clang16.patch
29 32
)
30 33

  
31 34
src_prepare() {
......
119 122
		dodoc "${SPARENT}"/{ChangeLog*,README.md,changes}
120 123
	fi
121 124
}
122

  
123
pkg_postinst() {
124
	for version in ${REPLACING_VERSIONS}; do
125
		if ver_test 8.6 -lt ${version}; then
126
			echo
127
			ewarn "You're upgrading from <${P}, you must recompile the other"
128
			ewarn "packages on your system that link with tcl after the upgrade"
129
			ewarn "completes. To perform this action, please run revdep-rebuild"
130
			ewarn "in package app-portage/gentoolkit."
131
			ewarn "If you have dev-lang/tk and dev-tcltk/tclx installed you should"
132
			ewarn "upgrade them before this recompilation, too,"
133
			echo
134
		fi
135
	done
136
}
Thank you!