typing_extensions: drop Python 3.9 support.

All on-tree users should already be targetting 3.10 only.
This commit is contained in:
Oscar Lesta
2025-09-20 02:23:05 -03:00
committed by OscarL
parent 5341b532c2
commit b9d4cac989

View File

@@ -17,7 +17,7 @@ you need."
HOMEPAGE="https://github.com/python/typing_extensions"
COPYRIGHT="2023 Guido van Rossum and others"
LICENSE="Python"
REVISION="1"
REVISION="2"
SOURCE_URI="https://files.pythonhosted.org/packages/py3/t/typing_extensions/typing_extensions-$portVersion-py3-none-any.whl#noarchive"
CHECKSUM_SHA256="04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"
@@ -34,13 +34,12 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_VERSIONS=(3.9 3.10)
PYTHON_VERSIONS=(3.10)
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
pythonPackage=python${pythonVersion//.}
eval "PROVIDES_${pythonPackage}=\"
eval "PROVIDES_$pythonPackage=\"
${portName}_$pythonPackage = $portVersion
\""
eval "REQUIRES_$pythonPackage=\"
@@ -57,8 +56,7 @@ done
INSTALL()
{
for i in "${!PYTHON_VERSIONS[@]}"; do
pythonVersion=${PYTHON_VERSIONS[$i]}
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
pythonPackage=python${pythonVersion//.}
python=python$pythonVersion