mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
* python3.8: bulk removal of now obsolete "_python38" packages. Done via scripting. No functional change intended or expected. Some manual tweaks will follow. * python3.8: further manual tweaks after bulk-3.8-removal. Unlike the previous commit with automated changes, I've tested builds for *these* recipes in beta4 64 bits.
80 lines
2.8 KiB
Bash
80 lines
2.8 KiB
Bash
SUMMARY="Backported and experimental type hints for Python"
|
|
DESCRIPTION="The typing_extensions module serves two related purposes:
|
|
|
|
- Enable use of new type system features on older Python versions. For example,
|
|
typing.TypeGuard is new in Python 3.10, but typing_extensions allows
|
|
users on Python 3.6 through 3.9 to use it too.
|
|
- Enable experimentation with new type system PEPs before they are accepted and
|
|
added to the typing module.
|
|
|
|
New features may be added to typing_extensions as soon as they are specified in a PEP that has \
|
|
been added to the python/peps repository. If the PEP is accepted, the feature will then be added \
|
|
to typing for the next CPython release. No typing PEP has been rejected so far, so we haven't yet \
|
|
figured out how to deal with that possibility.
|
|
|
|
Starting with version 4.0.0, typing_extensions uses Semantic Versioning. The major version is \
|
|
incremented for all backwards-incompatible changes. Therefore, it's safe to depend on \
|
|
typing_extensions like this: typing_extensions >=x.y, <(x+1), where x.y is the first version that \
|
|
includes all features you need.
|
|
|
|
typing_extensions supports Python versions 3.7 and higher. In the future, support for older \
|
|
Python versions will be dropped some time after that version reaches end of life."
|
|
HOMEPAGE="https://github.com/python/typing_extensions"
|
|
COPYRIGHT="2022 Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee"
|
|
LICENSE="Python"
|
|
REVISION="4"
|
|
pypiVersion="ed/d6/2afc375a8d55b8be879d6b4986d4f69f01115e795e36827fd3a40166028b"
|
|
SOURCE_URI="https://files.pythonhosted.org/packages/$pypiVersion/typing_extensions-$portVersion-py3-none-any.whl#noarchive"
|
|
CHECKSUM_SHA256="25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
$portName = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
PYTHON_PACKAGES=(python39 python310)
|
|
PYTHON_VERSIONS=(3.9 3.10)
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
eval "PROVIDES_${pythonPackage}=\"\
|
|
${portName}_$pythonPackage = $portVersion\
|
|
\"; \
|
|
REQUIRES_$pythonPackage=\"\
|
|
haiku\n\
|
|
cmd:python$pythonVersion\n\
|
|
flit_core_$pythonPackage\
|
|
\""
|
|
BUILD_REQUIRES="$BUILD_REQUIRES
|
|
setuptools_$pythonPackage"
|
|
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
|
|
installer_$pythonPackage
|
|
cmd:python$pythonVersion"
|
|
done
|
|
|
|
INSTALL()
|
|
{
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
|
|
python=python$pythonVersion
|
|
installLocation=$prefix/lib/$python/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
rm -rf build
|
|
$python -m installer -p $prefix typing_extensions-$portVersion-py3-none-any.whl
|
|
|
|
packageEntries $pythonPackage \
|
|
$prefix/lib/python*
|
|
done
|
|
}
|