mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-12 14:50:08 +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.
79 lines
2.2 KiB
Bash
79 lines
2.2 KiB
Bash
SUMMARY="HTTP library with thread-safe connection pooling, file post, and more"
|
|
DESCRIPTION="- Re-use the same socket connection for multiple requests \
|
|
(HTTPConnectionPool and HTTPSConnectionPool) with optional client-side \
|
|
certificate verification.
|
|
- File posting (encode_multipart_formdata).
|
|
- Built-in redirection and retries (optional).
|
|
- Supports gzip and deflate decoding.
|
|
- Thread-safe and sanity-safe.
|
|
- Works with AppEngine, gevent, and eventlib.
|
|
- Tested on Python 2.6+, Python 3.2+, and PyPy, with 100% unit test coverage.
|
|
- Small and easy to understand codebase perfect for extending and building \
|
|
upon.
|
|
|
|
For a more comprehensive solution, have a look at \
|
|
Requests <http://python-requests.org/> which is also powered by urllib3"
|
|
HOMEPAGE="https://urllib3.readthedocs.io/
|
|
https://pypi.org/project/urllib3/
|
|
https://github.com/urllib3/urllib3"
|
|
COPYRIGHT="2008-2018 Andrey Petrov and contributors"
|
|
LICENSE="MIT"
|
|
REVISION="3"
|
|
SOURCE_URI="https://github.com/shazow/urllib3/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="c7356205ca6c14df2f35d1d9cf18cd8a1981185b7dca13e1c3af91a214037c9d"
|
|
SOURCE_FILENAME="urllib3-$portVersion.tar.gz"
|
|
|
|
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\
|
|
\""
|
|
BUILD_REQUIRES="$BUILD_REQUIRES
|
|
setuptools_$pythonPackage"
|
|
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
|
|
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 setup.py build install \
|
|
--root=/ --prefix="$prefix"
|
|
|
|
install -m 755 -d "$docDir"
|
|
install -m 644 -t "$docDir" README.rst
|
|
|
|
packageEntries $pythonPackage \
|
|
"$prefix"/lib/$python \
|
|
"$docDir"
|
|
done
|
|
}
|